Added copyright header to all C++ source files.
[oota-llvm.git] / tools / gccas / gccas.cpp
2003-10-20 John CriswellAdded copyright header to all C++ source files.
2003-10-16 Chris LattnerUnfortunately, it looks like level raise is still needed :(
2003-10-15 Chris LattnerGive this file a proper header
2003-10-15 Chris LattnerThe levelraise pass is a broken old piece of crufty...
2003-10-10 Chris LattnerAdd a new -disable-inlining option
2003-10-10 Misha BrukmanFix grammar.
2003-09-20 Chris LattnerNow that the TCE pass passes all of the tests, add...
2003-09-15 Chris LattnerEnable the setjmp/longjmp lowering pass
2003-09-11 Chris Lattnerscalarrepl now includes mem2reg
2003-09-11 Chris LattnerMove the -indvars pass much later to where it is more...
2003-09-01 Chris Lattner#include is unnecessary
2003-08-31 Chris LattnerRemove the -stopAfterNPasses option, which has been...
2003-08-31 Chris Lattner* move the dead-type-eliminate passes to the end, where...
2003-08-07 Chris LattnerCompletely remove mention of the correlated branch...
2003-08-07 Misha Brukman* The possessive third-person singular has no apostroph...
2003-06-22 Chris LattnerAdd tail duplication pass to the pipeline, move the...
2003-05-30 Chris LattnerAdd SRoA pass to gccas
2003-05-30 Chris LattnerMove indvars pass after mem2reg pass where it is more...
2003-05-02 Chris LattnerAdd an instcombine pass before levelraise
2003-04-24 Chris LattnerMake sure to create a target data that matches the...
2003-04-24 Chris LattnerRemove support for "target data" pass ctors
2003-04-24 Chris LattnerLevelRaise now gets target data from passmanager
2003-04-23 Chris LattnerThe new CFrontend generates LOTs of basic blocks that...
2003-04-18 Chris LattnerEliminate some compatibility stuff no longer needed :P
2003-04-16 Chris LattnerImprove compatibility with system AS further by allowin...
2003-04-16 Chris Lattner* Get rid of using declaration
2003-04-16 Chris LattnerNamespacify command line options
2002-11-03 Vikram S. AdveDisable correlated expressions pass until it is reliable.
2002-10-31 Chris LattnerReassociate now works
2002-09-22 Chris Lattner* Remove the -stopraise option, which is no longer...
2002-09-06 Chris Lattner* No longer need to run die after instcombine
2002-08-30 Chris Lattner- Reformat comments
2002-08-30 Chris Lattner - GCCAS now uses load value #ing for GCSE
2002-08-17 Chris LattnerDo not leak memory for passes when using -stopAfterNPas...
2002-08-17 Chris LattnerRun GlobalDCE before deadtypeelim so that we do not...
2002-07-30 Chris LattnerPrint the tool name when an error comes from so that...
2002-07-25 Chris Lattner*** empty log message ***
2002-07-23 Chris Lattner*** empty log message ***
2002-07-23 Chris LattnerRaise pass requires an explicit TargetData member now.
2002-07-22 Chris Lattner*** empty log message ***
2002-07-09 Vikram S. AdveDisabling reassociate pass until it is fixed.
2002-06-30 Chris LattnerYes, we REALLY DO want to run the reassociate pass.
2002-06-25 Anand ShuklaChanges for 64bit gcc
2002-06-25 Chris LattnerSimplify the code that adds passes so compilation can...
2002-05-23 Chris LattnerNo need to run dce with adce right behind!
2002-05-22 Chris LattnerAdd the ADCE pass to gccas finally!
2002-05-21 Chris LattnerSimplify CFG after code generation is done
2002-05-14 Chris LattnerRun another local value numbering phase after redundanc...
2002-05-10 Chris LattnerAdd LICM pass to compiler
2002-05-08 Chris LattnerRun expression reassociation as part of gccas
2002-05-07 Chris LattnerMerge all include/llvm/Transforms/Scalar/* into a singl...
2002-05-06 Chris LattnerGCSE is faster than SCCP, and it makes SCCP's job easie...
2002-05-06 Chris LattnerInstruction Combination can create a ton of trivially...
2002-05-06 Chris LattnerRun DCE AFTER SCCP and GCSE!
2002-04-29 Chris LattnerMove constant merging pass earlier
2002-04-29 Chris LattnerEliminate duplicate or unneccesary #include's
2002-04-28 Chris LattnerRun GCSE as part of gccas.
2002-04-18 Chris LattnerMake sure that there is no case where a signal can...
2002-04-10 Chris LattnerThe cleangcc pass is brokeninto two pieces, execute...
2002-04-01 Chris LattnerMove the PromoteMemoryToRegister pass to be run _after_...
2002-03-27 Cameron BuschardtRename constructor function for mem2reg pass.
2002-03-21 Chris LattnerAdd a debugging option to gccas to cause it to not...
2002-02-26 Chris LattnerChange to use new pass accessor functions
2002-01-31 Chris LattnerPassManager is now in it's own header file
2002-01-22 Chris LattnerOnly run DeadInst elimination early, because it is...
2002-01-22 Chris LattnerMisc cleanups. Allocate ofstream statically, and use...
2002-01-22 Chris LattnerRename LowerAllocations.h to ChangeAllocations.h since...
2002-01-22 Chris LattnerPull RaiseAllocations stuff out of the CleanGCC pass...
2002-01-21 Chris LattnerMove stuff out of the Optimizations directories into...
2002-01-21 Chris LattnerImplement a more powerful, simpler, pass system. This...
2002-01-20 Chris LattnerChanges to build successfully with GCC 3.02
2001-12-14 Chris LattnerAdd more passes to run after raising
2001-12-07 Chris LattnerRun DCE before cleanupGCCoutput which will cause some...
2001-12-05 Chris LattnerSimplify induction variables before 'raising' the repre...
2001-11-27 Chris LattnerCreate a new #include "Support/..." directory structure...
2001-11-26 Chris Lattner-raise includes constprop and dce
2001-11-26 Chris LattnerRun constprop before -raise
2001-11-01 Chris LattnerMove the Raise xform from opt to transforms
2001-10-31 Chris Lattnercrunch the output of GCC a bit to make it nicer
2001-10-31 Chris LattnerFix dumb copy and paste typos
2001-10-31 Chris LattnerInitial checkin of GCCAS