index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
llvm
/
lib
/
IR
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fixed/added namespace ending comments using clang-tidy. NFC
Alexander Kornienko
2015-06-19
16
-21
/
+21
*
IRBuilder: Allow globals to be constructed in a specific address space
Tobias Grosser
2015-06-19
1
-3
/
+5
*
[CallGraph] Teach the CallGraph about non-leaf intrinsics.
Sanjoy Das
2015-06-18
1
-0
/
+12
*
Move the personality function from LandingPadInst to Function
David Majnemer
2015-06-17
6
-50
/
+67
*
Allow aliases to be unnamed.
Rafael Espindola
2015-06-17
2
-8
/
+8
*
Use a range loop. NFC.
Rafael Espindola
2015-06-17
1
-16
/
+11
*
Tweak wording of alignment static_assert messages.
James Y Knight
2015-06-17
3
-12
/
+14
*
Fix alignment issues in LLVM.
James Y Knight
2015-06-17
3
-7
/
+37
*
Silence an MSVC warning about not all control paths returning a value; NFC.
Aaron Ballman
2015-06-16
1
-0
/
+1
*
Debug Info IR: Switch DIObjCProperty to use DITypeRef.
Adrian Prantl
2015-06-15
2
-2
/
+3
*
Protection against stack-based memory corruption errors using SafeStack
Peter Collingbourne
2015-06-15
2
-0
/
+4
*
MIR Serialization: Connect the machine function analysis pass to the MIR parser.
Alex Lorenz
2015-06-15
3
-17
/
+31
*
De-duplicate common expression, NFC.
Yaron Keren
2015-06-15
1
-3
/
+3
*
C++11 Rangify loops in AssemblyWriter::printModule, NFC.
Yaron Keren
2015-06-13
1
-11
/
+8
*
Refix a use of explicit pointer types in GEP constant folding
David Blaikie
2015-06-12
1
-4
/
+4
*
Move OperandList to be allocated prior to User for hung off subclasses.
Pete Cooper
2015-06-12
1
-11
/
+22
*
Added a version of User::new for hung off uses.
Pete Cooper
2015-06-12
1
-4
/
+12
*
Rename NumOperands to make it clear its managed by the User. NFC.
Pete Cooper
2015-06-12
4
-24
/
+33
*
Replace all accesses to User::OperandList with getter and setter methods. NFC.
Pete Cooper
2015-06-12
3
-11
/
+19
*
Set proper debug location for branch added in BasicBlock::splitBasicBlock().
Alexey Samsonov
2015-06-11
1
-1
/
+4
*
Replace an instance of custom atomics with standard ones.
Benjamin Kramer
2015-06-11
1
-3
/
+3
*
Revert "Move dllimport name mangling to IR mangler."
Reid Kleckner
2015-06-11
1
-4
/
+0
*
Stop returning a Use* from allocHungOffUses.
Pete Cooper
2015-06-10
2
-17
/
+16
*
Add User::growHungoffUses and use it to grow the hung off uses. NFC.
Pete Cooper
2015-06-10
2
-30
/
+31
*
Delete User::dropHungOffUses and move it in to ~User which is the only caller...
Pete Cooper
2015-06-10
1
-16
/
+0
*
Make User track whether a class has 'hung off uses' and delete them in its de...
Pete Cooper
2015-06-10
1
-2
/
+7
*
Move the special Phi logic for hung off uses in to User::allocHungOffUses. NFC.
Pete Cooper
2015-06-10
2
-13
/
+4
*
ArgumentPromotion: Drop sret attribute on functions that are only called dire...
Peter Collingbourne
2015-06-10
1
-3
/
+1
*
Move dllimport name mangling to IR mangler.
Peter Collingbourne
2015-06-09
1
-0
/
+4
*
Prefer copy init over direct init. NFC.
Benjamin Kramer
2015-06-08
1
-1
/
+1
*
[AsmWriter] Rewrite module asm printing using StringRef::split.
Benjamin Kramer
2015-06-07
1
-16
/
+9
*
Rangify more for loops in LegacyPassManager.cpp.
Yaron Keren
2015-06-05
1
-39
/
+21
*
Rangify for loops in LegacyPassManager.cpp.
Yaron Keren
2015-06-05
1
-19
/
+10
*
[C API] Add LLVMStructGetTypeAtIndex.
Peter Zotov
2015-06-04
1
-0
/
+5
*
[ConstantFold] Don't skip the first gep index when folding geps
David Majnemer
2015-06-04
1
-3
/
+3
*
Int128 is also a built-in preconstructed type.
Nick Lewycky
2015-06-02
1
-6
/
+7
*
[IR/AsmWriter] Output escape sequences if the first character isdigit()
Filipe Cabecinhas
2015-06-02
2
-9
/
+11
*
clang-format a few functions. NFC
Filipe Cabecinhas
2015-06-02
2
-10
/
+8
*
Move the name pointer out of Value into a map that lives on the
Owen Anderson
2015-06-01
3
-10
/
+41
*
Add isConstant argument to MDBuilder::createTBAAStructTagNode
Artur Pilipenko
2015-06-01
1
-4
/
+11
*
[opaque pointer type] Explicitly store the pointee type of the result of a GEP
David Blaikie
2015-06-01
1
-1
/
+2
*
[IR] fptrunc-of-fptrunc isn't an EliminableCastPair.
Ahmed Bougacha
2015-05-29
1
-1
/
+1
*
Add initial support for the convergent attribute.
Owen Anderson
2015-05-26
2
-1
/
+5
*
[PlaceSafepoints] Cleanup InsertSafepointPoll function
Philip Reames
2015-05-26
2
-0
/
+9
*
This patch adds support for the vector quadword add/sub instructions introduced
Kit Barton
2015-05-25
1
-1
/
+5
*
Simplify and rename function overrideFunctionAttributes. NFC.
Akira Hatanaka
2015-05-23
1
-13
/
+0
*
Use Op<0> accessor instead of OperandList for Instructions. NFC
Pete Cooper
2015-05-21
2
-6
/
+6
*
Put GEPOperator member function definition in the appropriate .cpp file
David Blaikie
2015-05-21
2
-30
/
+31
*
[opaque pointer type] Allow gep_type_iterator to work with the pointee type f...
David Blaikie
2015-05-21
1
-0
/
+30
*
IR / debug info: Add a DWOId field to DICompileUnit,
Adrian Prantl
2015-05-21
4
-10
/
+14
[next]