Avoid counting InlineAsm as a call - it prevents loop unrolling.
[oota-llvm.git] / lib / Analysis / InlineCost.cpp
2010-05-26 Jakob Stoklund OlesenAvoid counting InlineAsm as a call - it prevents loop...
2010-05-12 Nick LewyckyClear CachedFunctionInfo upon Pass::releaseMemory....
2010-05-01 David ChisnallAdded a variant of InlineCostAnalyzer::getInlineCost...
2010-04-30 Chris LattnerDan recently disabled recursive inlining within a funct...
2010-04-21 Dan GohmanRevert r101471. For tight recursive functions which...
2010-04-17 Chris Lattnerfix PR6858: a dangling pointer use bug which was caused
2010-04-17 Chris Lattnera bunch of cleanups and tweaks, no functionality changes.
2010-04-16 Dan GohmanDisable inlining of recursive calls. It can complicate...
2010-04-16 Dan GohmanMake callIsSmall accessible as a utility function.
2010-04-14 Gabor Greifperformance: cache the dereferenced use_iterator
2010-03-25 Eric ChristopherReapply r99451 with a fix to move the NoInline check...
2010-03-15 Duncan SandsTreat copysignl like the other copysign functions.
2010-03-13 Devang PatelDo not ignore arg_size() impact while counting bb...
2010-03-13 Devang PatelRemove extra parameter.
2010-03-13 Devang PatelDo not overestimate code size reduction in presense...
2010-03-09 Jakob Stoklund OlesenTry to keep the cached inliner costs around for a bit...
2010-03-09 Jakob Stoklund OlesenRevert r98089, it was breaking a clang test.
2010-03-09 Jakob Stoklund OlesenTry to keep the cached inliner costs around for a bit...
2010-03-09 Jakob Stoklund OlesenPermit inlining into huge functions. This heuristic...
2010-02-16 Duncan SandsThere are two ways of checking for a given type, for...
2010-02-05 Jakob Stoklund OlesenUpdate CodeMetrics to count 'big' function calls explic...
2010-01-26 Jakob Stoklund OlesenFix inline cost predictions with SCIENCE.
2010-01-26 Jakob Stoklund OlesenRevert test polarity to match comment and desired outco...
2010-01-26 Jakob Stoklund OlesenRemove dead code.
2010-01-26 Jakob Stoklund OlesenSkip calculation of ArgumentWeights if it will never...
2010-01-14 Eric ChristopherPad my commit stats by reducing indentation in this...
2010-01-14 Eric ChristopherFew minor changes that were requested. No functional...
2010-01-14 Evan ChengSmall tweak to inline cost computation. Ext of i/fcmp...
2010-01-14 Eric ChristopherReduce the inlining cost of functions that contain...
2009-11-01 Duncan SandsAdd a missing closing parenthesis, and tweak to fit...
2009-11-01 Chris Lattneradd a comment about why we don't allow inlining indbr.
2009-11-01 Chris Lattnerpull check for return inst out of loop, never inline...
2009-10-28 Chris Lattnerrename indbr -> indirectbr to appease the residents...
2009-10-27 Chris LattnerRandom updates to passes for indbr, I need blockaddress...
2009-10-26 Victor HernandezRemove FreeInst.
2009-10-23 Victor HernandezRemove AllocationInst. Since MallocInst went away...
2009-10-17 Victor HernandezRemove MallocInst from LLVM Instructions.
2009-10-13 Dan GohmanCompute a full cost value even when a setjmp call is...
2009-10-13 Dan GohmanSplit code not specific to Function inlining out into...
2009-10-13 Dan GohmanMove the InlineCost code from Transforms/Utils to Analysis.