- Mar 22, 2008
-
-
Dan Gohman authored
adding <map> to many files that actually do need it. llvm-svn: 48667
-
- Feb 13, 2008
-
-
Chris Lattner authored
llvm-svn: 47066
-
- Dec 29, 2007
-
-
Chris Lattner authored
llvm-svn: 45418
-
- May 06, 2007
-
-
Nick Lewycky authored
llvm-svn: 36873
-
- May 03, 2007
-
-
Devang Patel authored
llvm-svn: 36662
-
- May 02, 2007
-
-
Devang Patel authored
Due to darwin gcc bug, one version of darwin linker coalesces static const int, which defauts PassID based pass identification. llvm-svn: 36652
-
- May 01, 2007
-
-
Devang Patel authored
llvm-svn: 36632
-
- Apr 14, 2007
-
-
Chris Lattner authored
llvm-svn: 36002
-
Jeff Cohen authored
llvm-svn: 35998
-
Jeff Cohen authored
llvm-svn: 35996
-
Chris Lattner authored
in order to clean up after simplifylibcalls. llvm-svn: 35982
-
- Feb 06, 2007
-
-
Reid Spencer authored
the Transforms library. This reduces debug library size by 132 KB, debug binary size by 376 KB, and reduces link time for llvm tools slightly. llvm-svn: 33939
-
- Dec 19, 2006
-
-
Chris Lattner authored
llvm-svn: 32693
-
- Dec 06, 2006
-
-
Chris Lattner authored
is 'unsigned'. llvm-svn: 32279
-
- Aug 28, 2006
-
-
Chris Lattner authored
llvm-svn: 29925
-
- Mar 07, 2006
-
-
Chris Lattner authored
hypotheticalized about, where we would incorrectly merge two globals in different sections. llvm-svn: 26597
-
- Apr 22, 2005
-
-
Misha Brukman authored
llvm-svn: 21427
-
- Mar 15, 2005
-
-
Chris Lattner authored
using Function::arg_{iterator|begin|end}. Likewise Module::g* -> Module::global_*. This patch is contributed by Gabor Greif, thanks! llvm-svn: 20597
-
- Sep 20, 2004
-
-
Chris Lattner authored
from ModulePass. Instead of implementing Pass::run, then should implement ModulePass::runOnModule. llvm-svn: 16436
-
- Sep 02, 2004
-
-
Reid Spencer authored
Move include/Config and include/Support into include/llvm/Config, include/llvm/ADT and include/llvm/Support. From here on out, all LLVM public header files must be under include/llvm/. llvm-svn: 16137
-
- Dec 28, 2003
-
-
Chris Lattner authored
we converge llvm-svn: 10618
-
- Dec 23, 2003
-
-
Chris Lattner authored
llvm-svn: 10586
-
- Nov 21, 2003
-
-
Chris Lattner authored
llvm-svn: 10138
-
- Nov 11, 2003
-
-
Brian Gaeke authored
llvm-svn: 9903
-
- Oct 29, 2003
-
-
Chris Lattner authored
llvm-svn: 9579
-
- Oct 20, 2003
-
-
John Criswell authored
Header files will be on the way. llvm-svn: 9298
-
- Sep 10, 2003
-
-
Chris Lattner authored
llvm-svn: 8431
-
- Apr 18, 2003
-
-
Chris Lattner authored
llvm-svn: 5808
-
- Oct 10, 2002
-
-
Chris Lattner authored
Value::replaceAllUsesWith works with constants correctly. llvm-svn: 4104
-
- Oct 02, 2002
-
-
Chris Lattner authored
* Renamed StatisticReporter.h/cpp to Statistic.h/cpp * Broke constructor to take two const char * arguments instead of one, so that indendation can be taken care of automatically. * Sort the list by pass name when printing * Make sure to print all statistics as a group, instead of randomly when the statistics dtors are called. * Updated ProgrammersManual with new semantics. llvm-svn: 4002
-
- Sep 24, 2002
-
-
Chris Lattner authored
Basically, this bug boiled down to calling replaceUsesOfWith on a constant, which changed it's shape in an illegal way. This pass now goes through all of the trouble neccesary to do the replacement on constants. llvm-svn: 3895
-
- Jul 26, 2002
-
-
Chris Lattner authored
* Add new RegisterOpt/RegisterAnalysis templates for registering passes that are to show up in opt or analyze * Register Analyses now * Change optimizations to use RegisterOpt instead of RegisterPass * Add support for different "PassType's" * Add new RegisterOpt/RegisterAnalysis templates for registering passes that are to show up in opt or analyze * Register Analyses now * Change optimizations to use RegisterOpt instead of RegisterPass * Remove getPassName implementations from various subclasses llvm-svn: 3112
-
- Jul 23, 2002
-
-
Chris Lattner authored
llvm-svn: 3035
-
Chris Lattner authored
* Register all Passes llvm-svn: 3015
-
- Jun 25, 2002
-
-
Chris Lattner authored
system correctly. llvm-svn: 2772
-
- May 10, 2002
-
-
Chris Lattner authored
the command line llvm-svn: 2601
-
- Apr 29, 2002
-
-
Chris Lattner authored
to make debugging output a lot nicer. llvm-svn: 2395
-
- Apr 28, 2002
-
-
Chris Lattner authored
Tighten up the AnalysisUsage of lots of passes, primarily to correctly indicate whether or not they invalidate the CFGA llvm-svn: 2386
-
- Apr 27, 2002
-
-
Chris Lattner authored
- Rename runOnMethod to runOnFunction * Transform getAnalysisUsageInfo into getAnalysisUsage - Method is now const - It now takes one AnalysisUsage object to fill in instead of 3 vectors to fill in - Pass's now specify which other passes they _preserve_ not which ones they modify (be conservative!) - A pass can specify that it preserves all analyses (because it never modifies the underlying program) * s/Method/Function/g in other random places as well llvm-svn: 2333
-
- Apr 07, 2002
-
-
Chris Lattner authored
class. The Method class is obsolete (renamed) and all references to it are being converted over to Function. llvm-svn: 2144
-