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
/
Transforms
/
IPO
/
FunctionAttrs.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
[FunctionAttrs] Extract a helper function for the core logic used to
Chandler Carruth
2015-09-21
1
-90
/
+117
*
[FunctionAttrs] Move the malloc-like test to a static helper function
Chandler Carruth
2015-09-13
1
-4
/
+3
*
[FunctionAttrs] Factor the logic to test for a known non-null return out
Chandler Carruth
2015-09-13
1
-7
/
+10
*
[FunctionAttrs] Make the per-function attribute inference a boring
Chandler Carruth
2015-09-13
1
-4
/
+3
*
[FunctionAttrs] Collect utility functions as static helpers rather than
Chandler Carruth
2015-09-13
1
-57
/
+52
*
Clean up doxygen comments in FunctionAttrs, promoting some non-doxygen
Chandler Carruth
2015-09-13
1
-34
/
+21
*
Do some spring cleaning on FunctionAttrs.cpp with clang-format prior to
Chandler Carruth
2015-09-13
1
-340
/
+299
*
[PM/AA] Rebuild LLVM's alias analysis infrastructure in a way compatible
Chandler Carruth
2015-09-09
1
-11
/
+20
*
Fix Windows build by including raw_ostream.h
Hans Wennborg
2015-08-31
1
-0
/
+1
*
[FunctionAttr] Infer nonnull attributes on returns
Philip Reames
2015-08-31
1
-0
/
+148
*
Remove unused variable. NFC.
Diego Novillo
2015-07-24
1
-1
/
+0
*
Remove the user-count threshold when analyzing read attributes
Jingyue Wu
2015-07-24
1
-3
/
+0
*
[PM/AA] Extract the ModRef enums from the AliasAnalysis class in
Chandler Carruth
2015-07-22
1
-7
/
+7
*
Revert r240137 (Fixed/added namespace ending comments using clang-tidy. NFC)
Alexander Kornienko
2015-06-23
1
-3
/
+3
*
Fixed/added namespace ending comments using clang-tidy. NFC
Alexander Kornienko
2015-06-19
1
-3
/
+3
*
[PM/AA] Remove the UnknownSize static member from AliasAnalysis.
Chandler Carruth
2015-06-17
1
-1
/
+1
*
[PM/AA] Remove the Location typedef from the AliasAnalysis class now
Chandler Carruth
2015-06-17
1
-5
/
+4
*
[PM/AA] Start refactoring AliasAnalysis to remove the analysis group and
Chandler Carruth
2015-06-04
1
-3
/
+3
*
Remove conflicting attributes before adding deduced readonly/readnone
Bjorn Steinbrink
2015-05-25
1
-1
/
+5
*
Convert PHI getIncomingValue() to foreach over incoming_values(). NFC.
Pete Cooper
2015-05-12
1
-2
/
+2
*
[PM] Separate the TargetLibraryInfo object from the immutable pass.
Chandler Carruth
2015-01-15
1
-3
/
+3
*
[PM] Move TargetLibraryInfo into the Analysis library.
Chandler Carruth
2015-01-15
1
-1
/
+1
*
Update SetVector to rely on the underlying set's insert to return a pair<iter...
David Blaikie
2014-11-19
1
-2
/
+2
*
[optnone] Make the optnone attribute effective at suppressing function
Chandler Carruth
2014-08-13
1
-7
/
+13
*
AA metadata refactoring (introduce AAMDNodes)
Hal Finkel
2014-07-24
1
-2
/
+4
*
When analyzing params/args for readnone/readonly, don't forget to consider th...
Nick Lewycky
2014-05-30
1
-1
/
+18
*
SCC: Change clients to use const, NFC
Duncan P. N. Exon Smith
2014-04-25
1
-7
/
+6
*
[C++] Use 'nullptr'. Transforms edition.
Craig Topper
2014-04-25
1
-6
/
+6
*
[Modules] Fix potential ODR violations by sinking the DEBUG_TYPE
Chandler Carruth
2014-04-22
1
-1
/
+2
*
Add a missing break.
Rafael Espindola
2014-03-30
1
-0
/
+1
*
[C++11] Add range based accessors for the Use-Def chain of a Value.
Chandler Carruth
2014-03-09
1
-11
/
+6
*
[C++11] Make this interface accept const Use pointers and use override
Chandler Carruth
2014-03-05
1
-1
/
+1
*
[C++11] Add 'override' keyword to virtual methods that override their base cl...
Craig Topper
2014-03-05
1
-4
/
+4
*
[Modules] Move InstIterator out of the Support library, where it had no
Chandler Carruth
2014-03-04
1
-1
/
+1
*
cleanup: scc_iterator consumers should use isAtEnd
Duncan P. N. Exon Smith
2014-02-04
1
-2
/
+1
*
Update optimization passes to handle inalloca arguments
Reid Kleckner
2014-01-28
1
-0
/
+4
*
Make nocapture analysis work with addrspacecast
Matt Arsenault
2014-01-14
1
-0
/
+2
*
[PM] Split the CallGraph out from the ModulePass which creates the
Chandler Carruth
2013-11-26
1
-1
/
+1
*
Merge CallGraph and BasicCallGraph.
Rafael Espindola
2013-10-31
1
-1
/
+1
*
Avoid a compiler warning about Found not being used when assertions are
Duncan Sands
2013-09-13
1
-0
/
+1
*
Declare missing dependency on AliasAnalysis. Patch by Liu Xin!
Nick Lewycky
2013-09-05
1
-0
/
+1
*
Fix annotation of unlink. Should fix builder.
Nick Lewycky
2013-07-06
1
-1
/
+1
*
Extend 'readonly' and 'readnone' to work on function arguments as well as
Nick Lewycky
2013-07-06
1
-37
/
+364
*
Tabs to spaces. No functionality change.
Nick Lewycky
2013-07-04
1
-10
/
+10
*
Added support in FunctionAttrs for adding relevant function/argument attribut...
Michael Gottesman
2013-07-03
1
-0
/
+10
*
Add missing break statements. Noticed by inspection.
Nick Lewycky
2013-07-02
1
-0
/
+2
*
Revert "FunctionAttrs: Merge attributes once instead of doing it for every ar...
Benjamin Kramer
2013-06-22
1
-46
/
+32
*
FunctionAttrs: Merge attributes once instead of doing it for every argument.
Benjamin Kramer
2013-06-22
1
-32
/
+46
*
Move library call prototype attribute inference to functionattrs
Meador Inge
2013-03-21
1
-2
/
+739
*
Remove the last of uses that use the Attribute object as a collection of attr...
Bill Wendling
2013-01-23
1
-4
/
+6
[prev]
[next]