Implement the optimizations for "pow" and "fputs" library calls.
[oota-llvm.git] / lib / Transforms / IPO /
2005-04-29 Reid SpencerImplement the optimizations for "pow" and "fputs" libra...
2005-04-29 Jeff CohenConsistently use 'class' to silence VC++
2005-04-28 Reid SpencerRemove from the TODO list those optimizations that...
2005-04-28 Reid SpencerDocument additional libcall transformations that need...
2005-04-27 Reid SpencerDoxygenate.
2005-04-27 Chris Lattnerremove 'statement with no effect' warning
2005-04-27 Reid SpencerMore Cleanup:
2005-04-27 Reid SpencerThis is a cleanup commit:
2005-04-27 Chris Lattnerdetect functions that never return, and turn the instr...
2005-04-27 Reid SpencerPrefix the debug statistics so they group together.
2005-04-27 Reid SpencerIn debug builds, make a statistic for each kind of...
2005-04-26 Chris LattnerThis analysis doesn't take 'throwing' into consideratio...
2005-04-26 Reid SpencerFix up the debug statement to actually use a newline...
2005-04-26 Reid SpencerUh, this isn't argpromotion.
2005-04-26 Reid SpencerAdd some debugging output so we can tell which calls...
2005-04-26 Reid SpencerNo, seriously folks, memcpy really does return void.
2005-04-26 Reid Spencermemcpy returns void!!!!!
2005-04-26 Reid SpencerFix some bugs found by running on llvm-test:
2005-04-26 Reid SpencerChanges From Review Feedback:
2005-04-26 Reid Spencer* Merge get_GVInitializer and getCharArrayLength into...
2005-04-26 Reid Spencer* Implement StrLenOptimization
2005-04-26 Reid SpencerIncorporate feedback from Chris:
2005-04-25 Reid SpencerChanges due to code review and new implementation:
2005-04-25 Reid SpencerLots of changes based on review and new functionality:
2005-04-25 Reid SpencerPost-Review Cleanup:
2005-04-25 Reid SpencerA new pass to provide specific optimizations for certai...
2005-04-21 Misha BrukmanRemove trailing whitespace
2005-04-21 Chris LattnerFix a bug where we would not promote calls to invokes...
2005-03-15 Chris Lattnerstop using method.
2005-03-15 Chris LattnerThis mega patch converts us from using Function::a...
2005-03-06 Chris LattnerMake this MUCH faster by avoiding a linear search in...
2005-02-27 Chris LattnerTeach globalopt how memset/cpy/move affect memory,...
2005-02-27 Chris LattnerFix spelling, patch contributed by Gabor Greif!
2005-02-23 Chris Lattnermake this more efficient. Scan up to 16 nodes, not...
2005-02-10 Alkis EvlogimenosLocalize globals if they are only used in main(). This...
2005-02-01 Chris LattnerAdjust to changes in APIs
2005-01-29 Chris LattnerSwitchinst takes a hint for the number of cases it...
2005-01-10 Jeff CohenApply feedback from Chris.
2005-01-08 Chris LattnerFix VS warnings.
2005-01-08 Jeff CohenAdd more missing createXxxPass functions.
2004-12-12 Chris LattnerProperly implement copying of a global, fixing the...
2004-12-12 Chris LattnerThough the previous xform applies to literally dozens...
2004-12-12 Chris LattnerIf a variable can only hold two values, and is not...
2004-12-11 Chris LattnerOnly cound if we actually made a change.
2004-12-03 Chris LattnerImplement stripping of debug symbols, making the -...
2004-12-02 Chris LattnerInitial reimplementation of the -strip pass, with a...
2004-12-02 Chris LattnerImplement a FIXME by checking to make sure that a mallo...
2004-12-02 Chris LattnerFix a minor bug where we set a var to initialized on...
2004-11-22 Chris LattnerIgnore debugger intrinsics when doing inlining size...
2004-11-14 Chris LattnerIf a global is just loaded and restored, realize that...
2004-11-14 Chris LattnerRemove note to self
2004-11-14 Chris LattnerIf a function always returns a constant, replace all...
2004-11-13 Chris LattnerRemove debugging code
2004-11-13 Chris LattnerArgument promotion transforms functions to unconditiona...
2004-11-11 Chris LattnerActually, leave the check in. This prevents us from...
2004-11-11 Chris LattnerFix bug: IPConstantProp/deadarg.ll
2004-11-10 Chris LattnerMake IP Constant prop more aggressive about handling...
2004-11-09 Chris LattnerDo not let dead constant expressions hanging off of...
2004-11-09 Chris LattnerChange this back so that I get stable numbers to reflec...
2004-11-09 Chris LattnerFix bug: 2004-11-08-FreeUseCrash.ll
2004-11-07 Chris LattnerVERY large functions that are only called from one...
2004-10-27 Reid SpencerChange Library Names Not To Conflict With Others When...
2004-10-22 Chris Lattner*** empty log message ***
2004-10-22 Reid SpencerWe won't use automake
2004-10-18 Reid SpencerInitial automake generated Makefile template
2004-10-18 Chris LattnerGet this file compiling with VC++, patch contributed...
2004-10-16 Chris LattnerAdd support for the undef value. Implement a new optim...
2004-10-14 Chris LattnerFix a bug John tracked down in libstdc++ where we were...
2004-10-13 Reid SpencerUpdate to reflect changes in Makefile rules.
2004-10-11 Chris LattnerThis patch implements two things (sorry).
2004-10-10 Chris LattnerJust because we cannot completely eliminate all uses...
2004-10-10 Reid SpencerInitial version of automake Makefile.am file.
2004-10-10 Chris LattnerFix 2004-10-10-CastStoreOnce.llx, by adjusting types...
2004-10-10 Chris LattnerImplement GlobalOpt/deadglobal-2.llx, deletion of globa...
2004-10-10 Chris LattnerAvoid calling use_size() which could (in theory) be...
2004-10-09 Chris LattnerEliminate global pointers that are only stored a single...
2004-10-09 Chris LattnerFix infinite loop due to iteration
2004-10-08 Chris LattnerIf we found a dead global, we should at least delete...
2004-10-08 Chris Lattner* Pull out the meat of runOnModule into another functio...
2004-10-08 Chris LattnerWe might as well delete the known-dead global sooner...
2004-10-08 Chris LattnerImplement SRA for global variables. This allows the...
2004-10-07 Chris LattnerImprove comments, no functionality changes
2004-10-07 Chris LattnerFix a bug in the safety analysis routine
2004-10-07 Chris LattnerComment cleanups
2004-10-07 Chris Lattner* Rename pass to globalopt, since we do more than just...
2004-10-06 Chris LattnerImplement GlobalConstifier/trivialstore.llx, and also...
2004-09-30 Chris LattnerDisable the 'WARNING: Found global types that are not...
2004-09-20 Chris Lattner'Pass' should now not be derived from by clients. ...
2004-09-19 Chris LattnerAdd comment
2004-09-18 Chris LattnerFix the inliner to always delete any edges from the...
2004-09-18 Chris LattnerConvert this pass to be a CallGraphSCCPass instead...
2004-09-17 Chris LattnerFix typo in comment
2004-09-01 Reid SpencerChanges For Bug 352
2004-08-20 Chris LattnerIf we are linking two global variables and they have...
2004-08-14 Chris LattnerImplement test/Regression/Transforms/GlobalConstifier...
2004-08-13 Chris Lattner"extract" the block extractor pass from bugpoint (haha)
2004-08-12 Chris LattnerThis patch makes the inliner refuse to inline functions...
2004-08-08 Chris LattnerFix another really nasty regression that Anshu pointed...
2004-07-29 Misha BrukmanFix #includes of i*.h => Instructions.h as per PR403.
2004-07-20 Chris LattnerIgnore instructions that are in trivially dead function...
next