1. 77e14ad AsmParser now depends on clients to verify that input is well formed by Chris Lattner · 22 years ago
  2. 9179148 Update comments by Chris Lattner · 22 years ago
  3. 70433de Fix comments. by Chris Lattner · 22 years ago
  4. c447b4b Merged into ValueNumbering.cpp by Chris Lattner · 22 years ago
  5. 3e813b3 Minor cleanups so I can remove BasicValueNumbering.h by Chris Lattner · 22 years ago
  6. d816bcf Add "written by" note by Chris Lattner · 22 years ago
  7. 26d933a Initial implementation of basic value numbering by Chris Lattner · 22 years ago
  8. 74542b6 initial implementation of ValueNumbering interface. by Chris Lattner · 22 years ago
  9. 71c7ec9 Initial implementation of value numbering for load instructions by Chris Lattner · 22 years ago
  10. d7f6725 Initial version of LoadValueNumbering interface by Chris Lattner · 22 years ago
  11. dcee11c Initial version of ValueNumbering interface by Chris Lattner · 22 years ago
  12. c619fa4 Link to analysis.o not analysis.a by Chris Lattner · 22 years ago
  13. 1b7fbef - GCCAS now uses load value #ing for GCSE by Chris Lattner · 22 years ago
  14. a3cd9de - Use Pass::AnalysisImpls instead of findAnalysisGroupMemeber by Chris Lattner · 22 years ago
  15. 1c28b42 - PassManager prints analysis sets nicer by Chris Lattner · 22 years ago
  16. 14987f1 - GCSE now no longer counts instructions not removed (due to no common by Chris Lattner · 22 years ago
  17. ada23c0 - PassInfo class keeps track of AnalysisGroups implemented by the Pass. by Chris Lattner · 22 years ago
  18. 76a8f7f - Pass now has AnalysisImpls class to implement getAnalysis() so that it is by Chris Lattner · 22 years ago
  19. 1a24282 Make sure to run these tests with load value #'ing by Chris Lattner · 22 years ago
  20. f9017b8 Eliminate hardcoded paths using LLVMGCCDIR variable. by Vikram S. Adve · 22 years ago
  21. bf587f3 Add LLVMGCCDIR variable to eliminate hardcoded paths from test/Makefile.tests. by Vikram S. Adve · 22 years ago
  22. c214e71 Simplified significantly by pulling out local configuration options by Vikram S. Adve · 22 years ago
  23. 049857e Local configuration options for a particular installation of LLVM. by Vikram S. Adve · 22 years ago
  24. e52e913 New datastructure analysis correctly uses TargetData by Chris Lattner · 22 years ago
  25. 04b9025 Remove unneeded #include by Chris Lattner · 22 years ago
  26. c46c04c Fix comments by Chris Lattner · 22 years ago
  27. 3f917b6 Make the getAnalyss<> members const. Using them does NOT modify the Pass object. by Chris Lattner · 22 years ago
  28. 764b46e Factor out /shared/... path to simplify changing it. by Vikram S. Adve · 22 years ago
  29. 690d99b Comment out broken link by Chris Lattner · 22 years ago
  30. b85d265 moved this file from lib/Reoptimizer/Mapping by Anand Shukla · 22 years ago
  31. 894e830 Makefile for new sub directory by Anand Shukla · 22 years ago
  32. 2caa920 Added Mapping subdir by Anand Shukla · 22 years ago
  33. a34c568 Implement ConstantPointerRef support, & ConstantExpr support for Cast, GEP & Add. by Chris Lattner · 22 years ago
  34. 2602202 added Reoptimizer in Makefile DIRS by Anand Shukla · 22 years ago
  35. ecbb51b Added mapping lib in llc makefile by Anand Shukla · 22 years ago
  36. 5993829 Added getFunctionInfo and MappingInfoForFunction pass, and fixed the earlier error in compiling by Anand Shukla · 22 years ago
  37. fabc880 Fix bug: test/Regression/CBackend/2002-08-26-IndirectCallTest.ll by Chris Lattner · 22 years ago
  38. aa250b8 New testcase by Chris Lattner · 22 years ago
  39. 93aeea3 Add support for turning an array of characters into a string. by Chris Lattner · 22 years ago
  40. e0b6b78 Changed so it gets linked properly by Anand Shukla · 22 years ago
  41. 2619905 Convert comments to Doxygen style by Chris Lattner · 22 years ago
  42. 969c4ad Fix the way parens are printed around "*ptrName" so that by Vikram S. Adve · 22 years ago
  43. df3fe55 Added function GetMemInstArgs and made FoldGetElemChain private. by Vikram S. Adve · 22 years ago
  44. 2730a38 Added support for type inquiry in subclasses of InstTreeNode. by Vikram S. Adve · 22 years ago
  45. 74c83e4 Use newly-added type inspection support in InstTreeNode subclasses. by Vikram S. Adve · 22 years ago
  46. 6851333 Moved code here to extract memory instruction indices and to check by Vikram S. Adve · 22 years ago
  47. f28d9d6 LoadIdx non-terminal no longer needed. by Vikram S. Adve · 22 years ago
  48. 8cfffd3 Sign-extend values used to index arrays (and Simplify by Vikram S. Adve · 22 years ago
  49. f519b99 Fix sign-extension: it needs to happen *after* multiplying by type size. by Vikram S. Adve · 22 years ago
  50. 42eb2ba Sign-extend array index expressions to work correctly on non-32 bit machines. by Vikram S. Adve · 22 years ago
  51. e6f9a91 - instcombine demorgan's law: and (not A), (not B) == not (or A, B) by Chris Lattner · 22 years ago
  52. 31901f8 Test that demorgan's law is instcombined successfully by Chris Lattner · 22 years ago
  53. 615cdb9 Implement classof for SetCondInst so that instcombine doesn't break on dyn_cast<SetCondInst> by Chris Lattner · 22 years ago
  54. ed0f1c5 Changed default value of 3rd parameter in function definition by Anand Shukla · 22 years ago
  55. 6656c43 Added #include <alloca.h> by Anand Shukla · 22 years ago
  56. cfa4f4a Simplify previous hack slightly. by Vikram S. Adve · 22 years ago
  57. 69f3b72 Force sign-extension for uint array indexes from 32-bit to 64-bits by Vikram S. Adve · 22 years ago
  58. 3bb8ad2 by Chris Lattner · 22 years ago
  59. cc63f1c Eliminated the MemAccessInst class, folding contents into GEP class. by Chris Lattner · 22 years ago
  60. d145c21 Load & Store Inst now no longer derive from MemAccessInst by Chris Lattner · 22 years ago
  61. 24ea74e Load & StoreInst no longer derive from MemAccessInst, so we don't have by Chris Lattner · 22 years ago
  62. 5dfe767 by Chris Lattner · 22 years ago
  63. 8e4fc25 *** empty log message *** by Chris Lattner · 22 years ago
  64. f150b9d Load and Store now no longer derive from MemAccessInst. Indexing a load or by Chris Lattner · 22 years ago
  65. f9355f6 doxygenize comments by Chris Lattner · 22 years ago
  66. ce325e4 doxygenize comments in header by Chris Lattner · 22 years ago
  67. 846f535 Make doxygen not exclude doxygenized comments from the source code listings by Chris Lattner · 22 years ago
  68. f5e84aa Add capability of using pointer analysis to LICM by Chris Lattner · 22 years ago
  69. b81258c Add new testcases for instcombine by Chris Lattner · 22 years ago
  70. 0712d55 Remove long obsolete comments by Chris Lattner · 22 years ago
  71. f12c2c2 Add doxygen comments to AliasAnalysis class by Chris Lattner · 22 years ago
  72. 80b7f8c by Chris Lattner · 22 years ago
  73. e6d2fdf Fix bug: test/Regression/Assembler/2002-08-22-DominanceProblem.ll by Chris Lattner · 22 years ago
  74. c642435 New testcase by Chris Lattner · 22 years ago
  75. 8673e44 Add a testcase that checks to make sure LICM uses basicaa correctly. by Chris Lattner · 22 years ago
  76. c20e245 Instcombine PHI's of the form %PN = phi PN, X into X and by Chris Lattner · 22 years ago
  77. 74d8dcc Add readme file describing directory by Chris Lattner · 22 years ago
  78. 7991070 Add documentation for AnalysisGroup functionality by Chris Lattner · 22 years ago
  79. 22d8cd6 Add missing #include by Chris Lattner · 22 years ago
  80. 53ad0ed Check-in new alias analysis infrastructure by Chris Lattner · 22 years ago
  81. 4df22c0 Checkin new alias analysis infrastructure by Chris Lattner · 22 years ago
  82. d456ec9 Convert GCSE pass to use new alias analysis infrastructure by Chris Lattner · 22 years ago
  83. ac39b4e Initial testcases for basicaa alias analysis by Chris Lattner · 22 years ago
  84. ff9a9e5 Do not generate load/store instructions with indexing. by Chris Lattner · 22 years ago
  85. 5a3e29c by Chris Lattner · 22 years ago
  86. 472e808 Convert testcases to not use indexed loads/stores by Chris Lattner · 22 years ago
  87. ac2cbb8 Covnert testcases to not use indexed loads/stores by Chris Lattner · 22 years ago
  88. 0fd5bfd by Chris Lattner · 22 years ago
  89. b933529 Remove obsolete test by Chris Lattner · 22 years ago
  90. 317a47f Remove ancient test by Chris Lattner · 22 years ago
  91. 6458c31 Covnert tests to not use indexed load/stores by Chris Lattner · 22 years ago
  92. abfb0b5 Change code to not use the copyOperands method added to User. It's now by Chris Lattner · 22 years ago
  93. dc58535 Remove unneccesary method by Chris Lattner · 22 years ago
  94. f8d630a Fix clean command to clean in /shared when that is used. by Vikram S. Adve · 22 years ago
  95. ddd5751 Add functions castbool and boolexpr. by Vikram S. Adve · 22 years ago
  96. 397f58b *** empty log message *** by Vikram S. Adve · 22 years ago
  97. 4afd6c3 Just some extra comments. by Vikram S. Adve · 22 years ago
  98. cab1a52 Add method copyOperands(). by Vikram S. Adve · 22 years ago
  99. da920aa dumpNode() does not need to print MachineInstrs. by Vikram S. Adve · 22 years ago
  100. 10472ce Fix two resource names. by Vikram S. Adve · 22 years ago