1. 1997473 Drop 'const' by Devang Patel · 17 years ago
  2. 3e15bf3 Use 'static const char' instead of 'static const int'. by Devang Patel · 17 years ago
  3. c718288 Fix build error. by Lauro Ramos Venancio · 17 years ago
  4. 794fd75 Do not use typeinfo to identify pass in pass manager. by Devang Patel · 17 years ago
  5. e24c92a remove use of BasicBlock::getNext by Chris Lattner · 17 years ago
  6. a0e1b0e eliminate use of Instruction::getNext() by Chris Lattner · 17 years ago
  7. bed2946 Removed tabs everywhere except autogenerated & external files. Add make by Anton Korobeynikov · 17 years ago
  8. ec1f752 eliminate use of deprecated apis by Chris Lattner · 17 years ago
  9. 9133fe2 Apply the VISIBILITY_HIDDEN field to the remaining anonymous classes in by Reid Spencer · 18 years ago
  10. 5cbf985 For PR1136: Rename GlobalVariable::isExternal as isDeclaration to avoid by Reid Spencer · 18 years ago
  11. 579dca1 Implement review feedback for the ConstantBool->ConstantInt merge. Chris by Reid Spencer · 18 years ago
  12. 6b6b6ef For PR1043: by Zhou Sheng · 18 years ago
  13. febe5f1 relax some types by Chris Lattner · 18 years ago
  14. c5b206b For PR950: by Reid Spencer · 18 years ago
  15. e4d87aa For PR950: by Reid Spencer · 18 years ago
  16. 61bc8f8 remove dead statistic by Chris Lattner · 18 years ago
  17. ac0b6ae Detemplatize the Statistic class. The only type it is instantiated with by Chris Lattner · 18 years ago
  18. 62c804a Removed #include <iostream> and used the llvm_cerr/DOUT streams instead. by Bill Wendling · 18 years ago
  19. 3ed469c For PR786: by Reid Spencer · 18 years ago
  20. b83eb64 For PR950: by Reid Spencer · 18 years ago
  21. a537017 simplify AnalysisGroup registration, eliminating one typeid call. by Chris Lattner · 18 years ago
  22. 7f8897f eliminate RegisterOpt. It does the same thing as RegisterPass. by Chris Lattner · 18 years ago
  23. d74ea2b Patches to make the LLVM sources more -pedantic clean. Patch provided by Chris Lattner · 18 years ago
  24. 8dc2d50 a few more comments on the interfaces and functions by Andrew Lenharth · 19 years ago
  25. bb227c1 Added documented rsprofiler interface. Also remove new profiler passes, the by Andrew Lenharth · 19 years ago
  26. 3523f6e Fix VC++ warning. by Jeff Cohen · 19 years ago
  27. 701f5ac Random sampling (aka Arnold and Ryder) profiling. This is still preliminary, but it works on spec on x86 and alpha. The idea is to allow profiling passes to remember what profiling they inserted, then a random sampling framework is inserted which consists of duplicated basic blocks (without profiling), such that at each backedge in the program and entry into every function, the framework chooses whether to use the instrumented code or the instrumentation free code. The goal of such a framework is to make it reasonably cheap to do random sampling of very expensive profiling products (such as load-value profiling). by Andrew Lenharth · 19 years ago