If a function is marked alwaysinline, it must be inlined (possibly for correctness...
[oota-llvm.git] / lib / Transforms / Utils / InlineCost.cpp
2009-03-10 Evan ChengIf a function is marked alwaysinline, it must be inline...
2009-03-07 Duncan SandsIntroduce new linkage types linkonce_odr, weak_odr...
2009-02-16 Nick LewyckyFix typo caused by too much surfing, dudes...
2009-01-24 Dale JohannesenRevert previous change; even this mild and clearly
2009-01-24 Dale JohannesenImprove the inlining cost function a bit.
2009-01-15 Rafael EspindolaAdd the private linkage.
2009-01-12 Dale JohannesenEnable recursive inlining. Reduce inlining threshold
2009-01-09 Dale JohannesenAdjustments to last patch based on review.
2009-01-08 Dale JohannesenDo not inline functions with (dynamic) alloca into
2008-11-05 Devang PatelCheck Attribute::NoInline.
2008-10-30 Daniel DunbarAdd InlineCost class for represent the estimated cost...
2008-09-29 Duncan SandsRename isWeakForLinker to mayBeOverridden. Use it
2008-09-26 Devang PatelImplement function notes as function attributes.
2008-09-25 Devang Patel Large mechanical patch.
2008-09-24 Devang PatelPut FN_NOTE_AlwaysInline and others in FnAttr namespace.
2008-09-23 Devang PatelMove FN_NOTE_AlwaysInline and other out of ParamAttrs...
2008-09-23 Devang PatelUse parameter attribute store (soon to be renamed) for
2008-09-22 Devang PatelAdd hasNote() to check note associated with a function.
2008-09-03 Devang PatelHandle "always inline" note during inline cost analysis.
2008-07-17 Evan ChengInliner tweak. Function calls should cost more than...
2008-07-14 Chris LattnerReapply r53540, now with the matching header!
2008-07-14 Duncan SandsRevert r53540 - it does not compile.
2008-07-14 Chris LattnerIf a function calls setjmp, never inline it into other...
2008-07-14 Chris Lattnersimplify some code, shuffle and insertelt always return...
2008-04-24 Evan ChengAdjust inline cost computation to be less aggressive.
2008-04-01 Evan Cheng1. Drop default inline threshold back down to 200.
2008-03-24 Evan ChengIncreasing the inline limit from (overly conservative...
2008-03-20 Evan Cheng80 col violation.
2007-12-29 Chris LattnerRemove attribution from file headers, per discussion...
2007-09-17 Devang PatelFix comment.
2007-07-27 Devang PatelUse SmallPtrSet.
2007-07-25 Devang PatelAdd BasicInliner interface.