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
/
Function.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
[IR] Fix some Clang-tidy modernize-use-using warnings; other minor fixes (NFC).
Eugene Zelenko
2017-05-10
1
-13
/
+40
*
[IR] Abstract away ArgNo+1 attribute indexing as much as possible
Reid Kleckner
2017-05-03
1
-6
/
+9
*
Support arbitrary address space pointers in masked gather/scatter intrinsics.
Elad Cohen
2017-05-03
1
-20
/
+24
*
Re-land r301697 "[IR] Make add/remove Attributes use AttrBuilder instead of A...
Reid Kleckner
2017-05-02
1
-2
/
+2
*
Revert r301697 "[IR] Make add/remove Attributes use AttrBuilder instead of At...
Hans Wennborg
2017-04-28
1
-2
/
+2
*
[IR] Make add/remove Attributes use AttrBuilder instead of AttributeList
Reid Kleckner
2017-04-28
1
-2
/
+2
*
Make getParamAlignment use argument numbers
Reid Kleckner
2017-04-28
1
-2
/
+1
*
[IR] Delete unused Argument::removeAttr overload
Reid Kleckner
2017-04-28
1
-9
/
+0
*
Prefer addAttr(Attribute::AttrKind) over the AttributeList overload
Reid Kleckner
2017-04-19
1
-7
/
+16
*
[IR] Make getParamAttributes take argument numbers, not ArgNo+1
Reid Kleckner
2017-04-13
1
-13
/
+9
*
Rename AttributeSet to AttributeList
Reid Kleckner
2017-03-21
1
-19
/
+19
*
Store Arguments in a flat array instead of an iplist
Reid Kleckner
2017-03-17
1
-14
/
+46
*
Remove dead F parameter from Argument constructor
Reid Kleckner
2017-03-16
1
-7
/
+3
*
Make Argument::getArgNo() constant time, not O(#args)
Reid Kleckner
2017-03-16
1
-15
/
+4
*
[IR] Inline some Function accessors
Reid Kleckner
2017-03-16
1
-29
/
+0
*
Add function importing info from samplepgo profile to the module summary.
Dehao Chen
2017-02-28
1
-2
/
+15
*
Implement intrinsic mangling for literal struct types.
Daniel Berlin
2017-02-15
1
-4
/
+12
*
fix documentation comments for Argument; NFC
Sanjay Patel
2017-02-14
1
-28
/
+0
*
Speed up Function::isIntrinsic() by adding a bit to GlobalValue. NFC
Justin Lebar
2016-12-28
1
-3
/
+6
*
Expandload and Compressstore intrinsics
Elena Demikhovsky
2016-11-03
1
-5
/
+29
*
IR: Deduplicate getParent() functions on derived classes of GlobalValue into ...
Peter Collingbourne
2016-10-25
1
-4
/
+0
*
Use profile info to set function section prefix to group hot/cold functions.
Dehao Chen
2016-10-18
1
-0
/
+17
*
Don't create a SymbolTable in Function when the LLVMContext discards value na...
Mehdi Amini
2016-09-17
1
-2
/
+4
*
Revert "Don't create a SymbolTable in Function when the LLVMContext discards ...
Mehdi Amini
2016-09-17
1
-4
/
+2
*
Don't create a SymbolTable in Function when the LLVMContext discards value na...
Mehdi Amini
2016-09-17
1
-2
/
+4
*
Add comments and an assert to follow-up on r279113. NFC.
Pete Cooper
2016-08-22
1
-0
/
+2
*
Add a version of Intrinsic::getName which is more efficient when there are no...
Pete Cooper
2016-08-18
1
-0
/
+5
*
Replace a few more "fall through" comments with LLVM_FALLTHROUGH
Justin Bogner
2016-08-17
1
-3
/
+3
*
[IR] Remove some unused #includes (NFC)
Vedant Kumar
2016-08-09
1
-4
/
+0
*
[AutoFDO] Fix handling of empty profiles
David Callahan
2016-08-05
1
-1
/
+4
*
CodeGen: add new "intrinsic" MachineOperand kind.
Tim Northover
2016-07-29
1
-4
/
+2
*
Revert "Don't invoke getName() from Function::isIntrinsic().", rL276942.
Justin Lebar
2016-07-28
1
-3
/
+6
*
Don't invoke getName() from Function::isIntrinsic().
Justin Lebar
2016-07-27
1
-6
/
+3
*
IR: Sort generic intrinsics before target specific ones
Justin Bogner
2016-07-15
1
-5
/
+33
*
Apply clang-tidy's modernize-loop-convert to most of lib/IR.
Benjamin Kramer
2016-06-26
1
-6
/
+4
*
Remangle intrinsics names when types are renamed
Artur Pilipenko
2016-06-24
1
-0
/
+34
*
NFC. Move verifyIntrinsicIsVarArg from verifier to Intrinsic::matchIntrinsicV...
Artur Pilipenko
2016-06-24
1
-0
/
+20
*
Revert r273568 "Remangle intrinsics names when types are renamed"
Hans Wennborg
2016-06-23
1
-31
/
+0
*
Remangle intrinsics names when types are renamed
Artur Pilipenko
2016-06-23
1
-0
/
+31
*
NFC. Move Verifier::verifyIntrinsicType to Intrinsics.h
Artur Pilipenko
2016-06-22
1
-0
/
+138
*
Add support for string attributes in the C API.
Amaury Sechet
2016-06-15
1
-0
/
+6
*
Make sure attribute kind and attributes are named respectively Kind and Attr ...
Amaury Sechet
2016-06-14
1
-8
/
+8
*
Make sure we have a Add/Remove/Has function for various thing that can have a...
Amaury Sechet
2016-06-12
1
-0
/
+6
*
Add support for metadata attachments for global variables.
Peter Collingbourne
2016-05-31
1
-2
/
+4
*
Remove some 'const' specifiers that do nothing but prevent moving the argument.
Benjamin Kramer
2016-05-29
1
-1
/
+1
*
[NFC] Header cleanup
Mehdi Amini
2016-04-18
1
-1
/
+0
*
IRMover: Steal arguments when moving functions, NFC
Duncan P. N. Exon Smith
2016-04-06
1
-0
/
+22
*
Swift Calling Convention: add swifterror attribute.
Manman Ren
2016-04-01
1
-0
/
+5
*
Swift Calling Convention: add swiftself attribute.
Manman Ren
2016-03-29
1
-0
/
+5
*
Move global ID computation from Function to GlobalValue (NFC)
Teresa Johnson
2016-03-15
1
-24
/
+0
[prev]
[next]