1. 9e46589 [Analysis] RemoveTotalMemInst counting in InstCount to avoid reading back other Statistic variables by Craig Topper · 8 years ago
  2. 6bda14b Sort the remaining #include lines in include/... and lib/.... by Chandler Carruth · 8 years ago
  3. f00654e Revert r240137 (Fixed/added namespace ending comments using clang-tidy. NFC) by Alexander Kornienko · 10 years ago
  4. 70bc5f1 Fixed/added namespace ending comments using clang-tidy. NFC by Alexander Kornienko · 10 years ago
  5. f1221bd [Modules] Fix potential ODR violations by sinking the DEBUG_TYPE by Chandler Carruth · 11 years ago
  6. 9f00886 [C++11] More 'nullptr' conversion. In some cases just using a boolean check instead of comparing to nullptr. by Craig Topper · 11 years ago
  7. 7da14f1 [Layering] Move InstVisitor.h into the IR library as it is pretty by Chandler Carruth · 12 years ago
  8. e9ba759 [C++11] Add 'override' keyword to virtual methods that override their base class. by Craig Topper · 12 years ago
  9. 9fb823b Move all of the header files which are involved in modelling the LLVM IR by Chandler Carruth · 13 years ago
  10. ed0881b Use the new script to sort the includes of every file under lib. by Chandler Carruth · 13 years ago
  11. dbd6958 Move the InstVisitor utility into VMCore where it belongs. It heavily by Chandler Carruth · 13 years ago
  12. 6c18d1a Get rid of static constructors for pass registration. Instead, every pass exposes an initializeMyPassFunction(), which by Owen Anderson · 15 years ago
  13. df7a4f2 Now with fewer extraneous semicolons! by Owen Anderson · 15 years ago
  14. d0fcc9a Revert r111082. No warnings for this common pattern. by Argyrios Kyrtzidis · 15 years ago
  15. 7c09ddf Add ATTRIBUTE_UNUSED to methods that are not supposed to be used. by Argyrios Kyrtzidis · 15 years ago
  16. a7aed18 Reapply r110396, with fixes to appease the Linux buildbot gods. by Owen Anderson · 15 years ago
  17. bda59bd Revert r110396 to fix buildbots. by Owen Anderson · 15 years ago
  18. 755aceb Don't use PassInfo* as a type identifier for passes. Instead, use the address of the static by Owen Anderson · 15 years ago
  19. a57b97e Fix batch of converting RegisterPass<> to INTIALIZE_PASS(). by Owen Anderson · 15 years ago
  20. 1495b5f by David Greene · 16 years ago
  21. a7b92ee by David Greene · 16 years ago
  22. de5ad42 Remove FreeInst. by Victor Hernandez · 16 years ago
  23. 974e12b Remove includes of Support/Compiler.h that are no longer needed after the by Nick Lewycky · 16 years ago
  24. 02d5f77 Remove VISIBILITY_HIDDEN from class/struct found inside anonymous namespaces. by Nick Lewycky · 16 years ago
  25. a3aaf85 Remove MallocInst from LLVM Instructions. by Victor Hernandez · 16 years ago
  26. 1362602 Change Pass::print to take a raw ostream instead of std::ostream, by Chris Lattner · 16 years ago
  27. b25de3f eliminate the "Value" printing methods that print to a std::ostream. by Chris Lattner · 16 years ago
  28. fbcc663 llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable. by Torok Edwin · 16 years ago
  29. ccb29cd Convert more assert(0)+abort() -> LLVM_UNREACHABLE, by Torok Edwin · 16 years ago
  30. d9ef48a Remove some unnecessary #includes. by Dan Gohman · 16 years ago
  31. a79db30 Tidy up several unbeseeming casts from pointer to intptr_t. by Dan Gohman · 17 years ago
  32. d78c400 Clean up the use of static and anonymous namespaces. This turned up by Dan Gohman · 17 years ago
  33. 80e43fa Restore isCFGOnly property of various analysis passes. by Devang Patel · 18 years ago
  34. 718da66 PassInfo keep tracks whether a pass is an analysis pass or not. by Devang Patel · 18 years ago
  35. af75ab8 Do not use virtual function to identify an analysis pass. by Devang Patel · 18 years ago
  36. 864970e Identify Analysis pass. by Devang Patel · 18 years ago
  37. f3ebc3f Remove attribution from file headers, per discussion on llvmdev. by Chris Lattner · 18 years ago
  38. e7da2d6 Fix typo in comment. by Nick Lewycky · 18 years ago
  39. 8c78a0b Drop 'const' by Devang Patel · 18 years ago
  40. e95c6ad Use 'static const char' instead of 'static const int'. by Devang Patel · 18 years ago
  41. 09f162c Do not use typeinfo to identify pass in pass manager. by Devang Patel · 18 years ago
  42. f75727a Make classes in anonymous namespaces use VISIBILITY_HIDDEN to help reduce by Reid Spencer · 19 years ago
  43. 57ef942 eliminate static ctors from Statistics by Chris Lattner · 19 years ago
  44. f3baad3 Changed llvm_ostream et all to OStream. llvm_cerr, llvm_cout, llvm_null, are by Bill Wendling · 19 years ago
  45. 700b873 Detemplatize the Statistic class. The only type it is instantiated with by Chris Lattner · 19 years ago
  46. 597d451 Removed some of the iostream #includes. Moved towards converting to using by Bill Wendling · 19 years ago
  47. 3c9b242 Eliminate RegisterAnalysis. RegisterPass now does all that is necessary. by Chris Lattner · 19 years ago
  48. 6806c02 Add explicit iostream #includes by Chris Lattner · 20 years ago
  49. ca014ad expose a ctor by Chris Lattner · 20 years ago
  50. 01808ca Remove trailing whitespace by Misha Brukman · 20 years ago
  51. f006840 Directly count the number of memory instructions. by Chris Lattner · 21 years ago
  52. f5e3cfe Standardize on 'class' instead of 'struct'. Gets rid of warnings in VC++ by Reid Spencer · 21 years ago
  53. 7dfc2d2 Convert 'struct' to 'class' in various places to adhere to the coding standards by Chris Lattner · 21 years ago
  54. 7c16caa Changes For Bug 352 by Reid Spencer · 21 years ago
  55. 960707c Put all LLVM code into the llvm namespace, as per bug 109. by Brian Gaeke · 22 years ago
  56. 482202a Added LLVM project notice to the top of every C++ source file. by John Criswell · 22 years ago
  57. 5f9be67 There is no reason for this to be a pass! by Chris Lattner · 22 years ago
  58. 3935d2b Add total instruction, bb, & function counts by Chris Lattner · 23 years ago
  59. 5e05817 Simplify code by Chris Lattner · 23 years ago
  60. 342f681 Count CallInsts correctly, remove unneccesary initializers by Chris Lattner · 23 years ago
  61. a7be9a7 Gives the count for various instructions. by Dinakar Dhurjati · 23 years ago