index
:
external_llvm.git
replicant-6.0
Unnamed repository; edit this file 'description' to name the repository.
git repository hosting
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
lib
/
Transforms
/
IPO
/
InlineSimple.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Make the inline cost a proper analysis pass. This remains essentially
Chandler Carruth
2013-01-21
1
-11
/
+14
*
Clean up the formatting and doxygen for the simple inliner a bit. No
Chandler Carruth
2013-01-21
1
-18
/
+29
*
Move all of the header files which are involved in modelling the LLVM IR
Chandler Carruth
2013-01-02
1
-6
/
+6
*
Add 'using' declarations to suppress -Woverloaded-virtual warnings.
Matt Beaumont-Gay
2012-12-04
1
-0
/
+1
*
Use the new script to sort the includes of every file under lib.
Chandler Carruth
2012-12-03
1
-5
/
+5
*
Move TargetData to DataLayout.
Micah Villmow
2012-10-08
1
-2
/
+2
*
Remove a bunch of empty, dead, and no-op methods from all of these
Chandler Carruth
2012-03-31
1
-9
/
+0
*
Initial commit for the rewrite of the inline cost analysis to operate
Chandler Carruth
2012-03-31
1
-4
/
+1
*
Rip out support for 'llvm.noinline'. This thing has a strange history...
Chandler Carruth
2012-03-16
1
-45
/
+0
*
Start removing the use of an ad-hoc 'never inline' set and instead
Chandler Carruth
2012-03-16
1
-6
/
+10
*
Add comment.
Chad Rosier
2012-02-25
1
-1
/
+2
*
Add support for disabling llvm.lifetime intrinsics in the AlwaysInliner. These
Chad Rosier
2012-02-25
1
-1
/
+1
*
Inlining and unrolling heuristics should be aware of free truncs.
Andrew Trick
2011-10-01
1
-0
/
+2
*
whitespace
Andrew Trick
2011-10-01
1
-12
/
+12
*
Get rid of static constructors for pass registration. Instead, every pass ex...
Owen Anderson
2010-10-19
1
-2
/
+6
*
CallGraphSCC passes implicity require CallGraph analysis.
Owen Anderson
2010-10-13
1
-1
/
+4
*
Now with fewer extraneous semicolons!
Owen Anderson
2010-10-07
1
-1
/
+1
*
Reapply r110396, with fixes to appease the Linux buildbot gods.
Owen Anderson
2010-08-06
1
-2
/
+2
*
Revert r110396 to fix buildbots.
Owen Anderson
2010-08-06
1
-2
/
+2
*
Don't use PassInfo* as a type identifier for passes. Instead, use the addres...
Owen Anderson
2010-08-05
1
-2
/
+2
*
Fix batch of converting RegisterPass<> to INTIALIZE_PASS().
Owen Anderson
2010-07-21
1
-2
/
+2
*
Clear CachedFunctionInfo upon Pass::releaseMemory. Because ValueMap will abort
Nick Lewycky
2010-05-12
1
-0
/
+3
*
Try to keep the cached inliner costs around for a bit longer for big functions.
Jakob Stoklund Olesen
2010-03-09
1
-0
/
+3
*
Revert r98089, it was breaking a clang test.
Jakob Stoklund Olesen
2010-03-09
1
-3
/
+0
*
Try to keep the cached inliner costs around for a bit longer for big functions.
Jakob Stoklund Olesen
2010-03-09
1
-0
/
+3
*
Remove includes of Support/Compiler.h that are no longer needed after the
Nick Lewycky
2009-10-25
1
-1
/
+0
*
Remove VISIBILITY_HIDDEN from class/struct found inside anonymous namespaces.
Nick Lewycky
2009-10-25
1
-1
/
+1
*
Move the InlineCost code from Transforms/Utils to Analysis.
Dan Gohman
2009-10-13
1
-1
/
+1
*
Use hasDefinitiveInitializer() instead of testing the same thing
Dan Gohman
2009-08-19
1
-1
/
+1
*
Adjustments to last patch based on review.
Dale Johannesen
2009-01-09
1
-0
/
+3
*
Add InlineCost class for represent the estimated cost of inlining a
Daniel Dunbar
2008-10-30
1
-1
/
+1
*
Implement function notes as function attributes.
Devang Patel
2008-09-26
1
-1
/
+1
*
Large mechanical patch.
Devang Patel
2008-09-25
1
-1
/
+1
*
Put FN_NOTE_AlwaysInline and others in FnAttr namespace.
Devang Patel
2008-09-24
1
-1
/
+1
*
Move FN_NOTE_AlwaysInline and other out of ParamAttrs namespace.
Devang Patel
2008-09-23
1
-1
/
+1
*
Use parameter attribute store (soon to be renamed) for
Devang Patel
2008-09-23
1
-1
/
+1
*
Add hasNote() to check note associated with a function.
Devang Patel
2008-09-22
1
-1
/
+1
*
Add parentheses to make code more readable.
Devang Patel
2008-09-03
1
-1
/
+1
*
Check noinline note and ignore other notes.
Devang Patel
2008-09-03
1
-1
/
+1
*
Handle "noinline" note inside the simple inliner.
Devang Patel
2008-09-03
1
-0
/
+5
*
Clean up the use of static and anonymous namespaces. This turned up
Dan Gohman
2008-05-13
1
-2
/
+4
*
Increasing the inline limit from (overly conservative) 200 to 300. Given each...
Evan Cheng
2008-03-24
1
-0
/
+3
*
Allow clients to specify the inline threshold when creating
Chris Lattner
2008-01-12
1
-0
/
+5
*
Remove attribution from file headers, per discussion on llvmdev.
Chris Lattner
2007-12-29
1
-2
/
+2
*
Don't crash on bogus llvm.noinline. This is first part of PR1817 (preventing ...
Anton Korobeynikov
2007-11-22
1
-0
/
+4
*
Use SmallPtrSet.
Devang Patel
2007-07-27
1
-2
/
+3
*
Add BasicInliner interface.
Devang Patel
2007-07-25
1
-246
/
+6
*
fix Transforms/Inline/2007-06-25-WeakInline.ll by not inlining functions
Chris Lattner
2007-06-25
1
-4
/
+8
*
Inliner pass header file was moved.
Tanya Lattner
2007-06-19
1
-1
/
+2
*
Formating fixes.
Tanya Lattner
2007-06-07
1
-4
/
+4
[next]