prepare for adjustment to getOrInsertFunction method
[oota-llvm.git] / lib / Transforms / Utils / InlineFunction.cpp
2007-01-07 Chris Lattnerprepare for adjustment to getOrInsertFunction method
2006-12-31 Reid SpencerFor PR950:
2006-09-13 Chris LattnerImplement the first half of Transforms/Inline/inline_cl...
2006-07-18 Chris Lattnersilence warnings in a release build
2006-07-12 Chris LattnerHandle instructions in the map, but that map to a null...
2006-07-12 Chris LattnerIn addition to deleting calls, the inliner can constant...
2006-07-12 Chris LattnerChange the callgraph representation to store the callsi...
2006-05-27 Chris LattnerSwitch the inliner over to using CloneAndPruneFunctionI...
2006-01-14 Chris LattnerTeach the inliner to update the CallGraph itself, and...
2006-01-13 Chris LattnerIf inlining a call to a function that contains dynamic...
2006-01-13 Chris LattnerUse ClonedCodeInfo to avoid another walk over the inlin...
2006-01-13 Chris LattnerUse the ClonedCodeInfo object to avoid scans of the...
2006-01-13 Chris LattnerRefactor a bunch of invoke handling stuff out into...
2006-01-13 Chris LattnerFix a bug I noticed by inspection: if the first instruc...
2005-07-27 Jeff CohenEliminate all remaining tabs and trailing spaces.
2005-05-09 Chris Lattnerwrap long lines, preserve calling conventions when...
2005-05-06 Chris LattnerBAD typeo which caused many testsuite failures last...
2005-05-06 Chris LattnerImplement Transforms/Inline/inline-tail.ll
2005-04-21 Misha BrukmanRemove trailing whitespace
2005-03-15 Chris LattnerThis mega patch converts us from using Function::a...
2004-12-11 Chris LattnerThe split bb is really the exit of the old function
2004-10-17 Chris LattnerFix Regression/Transforms/Inline/2004-10-17-InlineFunct...
2004-09-15 Reid SpencerConvert code to compile with vc7.1.
2004-07-20 Chris LattnerFix a serious code pessimization problem. If an inline...
2004-04-16 Chris LattnerFix Inline/2004-04-15-InlineDeletesCall.ll
2004-02-13 Chris LattnerFix compilation of 126.gcc: intrinsic functions cannot...
2004-02-08 Chris Lattnerrename the "exceptional" destination of an invoke instr...
2004-02-04 Chris LattnerTwo changes:
2004-02-04 Chris LattnerOptimize the case where we are inlining a function...
2004-02-04 Chris LattnerMore refactoring. Move alloca instructions and handle...
2004-02-04 Chris LattnerMove the cloning of the function body much earlier...
2004-01-09 Chris LattnerFinegrainify namespacification
2003-11-20 Chris LattnerStart using the nicer terminator auto-insertion API
2003-11-11 Brian GaekePut all LLVM code into the llvm namespace, as per bug...
2003-10-27 Chris LattnerGet the list of PHI node values before the basic block...
2003-10-20 John CriswellAdded LLVM project notice to the top of every C++ sourc...
2003-10-14 Chris LattnerDo not move variable sized allocations to the top of...
2003-10-06 Chris LattnerAvoid doing pointless work. Amazingly, this makes...
2003-09-22 Chris LattnerFix bugs in the last change
2003-09-22 Chris LattnerFix bug: Inline/2003-09-22-PHINodesInNormalInvokeDest.ll
2003-09-22 Chris LattnerFix bug: Inline/2003-09-22-PHINodesInExceptionDest.ll
2003-09-15 Chris LattnerFix bug: Inline/2003-09-14-InlineValue.ll
2003-09-08 Chris LattnerEliminate support for the llvm.unwind intrinisic, using...
2003-09-08 Chris LattnerShould invokify is always true
2003-08-25 Chris LattnerRemove special casing
2003-08-24 Chris Lattnerrethrow is really the language independent primitive...
2003-08-24 Chris Lattner*** Implement inlining of Invoke instructions!
2003-08-24 Chris LattnerImplement: Inline/cfg_preserve_test.ll
2003-05-29 Chris Lattner* Separate all of the grunt work of inlining out into...