1. 40114b7 Constants for profile info type changed names to match the C++ ones. by Brian Gaeke · 21 years ago
  2. 9eb9b8e Improve code generated for integer multiplications by 2,3,5,9 by Chris Lattner · 21 years ago
  3. 32ed46b Minor efficiency tweak, suggested by Patrick Meredith by Chris Lattner · 21 years ago
  4. 96e68f9 Fix typo by Brian Gaeke · 21 years ago
  5. ca1a697 Add initial implementation of basic block tracing runtime by Brian Gaeke · 21 years ago
  6. 86329b3 Add basic block tracing functions as exported symbols. by Brian Gaeke · 21 years ago
  7. 273595f Add basic block tracing information as a type of "profiling" information. by Brian Gaeke · 21 years ago
  8. ebbc0e9 In InsertProfilingInitCall(), make it legal to pass in a null array, in by Brian Gaeke · 21 years ago
  9. c03eb7b Add initial implementation of basic-block tracing instrumentation pass. by Brian Gaeke · 21 years ago
  10. 1570cb1 Initialize member out of paranoia by Chris Lattner · 21 years ago
  11. 7b11e33 Fix a problem with double freeing memory. For some reason, CallGraph is not by Chris Lattner · 21 years ago
  12. 224f7e6 Plug a minor memory leak by Chris Lattner · 21 years ago
  13. bdcc0b8 Do not clone arbitrary condition instructions. by Chris Lattner · 21 years ago
  14. 12fe2b1 Do not infinitely "unroll" single BB loops. by Chris Lattner · 21 years ago
  15. 6e1ef19 Add some stuff to the release notes. by Chris Lattner · 21 years ago
  16. 3ec4f26 Chris told me to take these assertions out a few days ago, but I forgot to by Brian Gaeke · 21 years ago
  17. a1f79fb Dont' merge terminators that are needed to select PHI node values. by Chris Lattner · 21 years ago
  18. e67fa05 Implement SimplifyCFG/branch-cond-merge.ll by Chris Lattner · 21 years ago
  19. 470221c New testcase: Turn "if (A < B && B < C)" into "if (A < B & B < C)" by Chris Lattner · 21 years ago
  20. 00d5131 Make sure to reprocess instructions used by deleted instructions to avoid by Chris Lattner · 21 years ago
  21. 216d4d8 Make sure the instruction combiner doesn't lose track of instructions by Chris Lattner · 21 years ago
  22. 951fdb9 Fix my missing parens by Chris Lattner · 21 years ago
  23. 92da2c2 Implement SimplifyCFG/branch-cond-prop.ll by Chris Lattner · 21 years ago
  24. be8d170 New testcase for case that simplifycfg should catch by Chris Lattner · 21 years ago
  25. 7799363 Remove unused #include by Chris Lattner · 21 years ago
  26. 2268684 Iterate over the Machine CFG that Brian added instead of the LLVM CFG. by Chris Lattner · 21 years ago
  27. 015959e Operate on the Machine CFG instead of on the LLVM CFG by Chris Lattner · 21 years ago
  28. f25fb4b Stop LiveVariables from using BasicBlocks as part of the mapping, instead by Chris Lattner · 21 years ago
  29. 96362e9 Stop LiveVariables from using BasicBlocks as part of the mapping, instead by Chris Lattner · 21 years ago
  30. 0aef12a Move the GraphTraits for MachineBasicBlocks to the MachineBasicBlock file. by Chris Lattner · 21 years ago
  31. a19a3db Add comment about optimizations by Chris Lattner · 21 years ago
  32. 55a4700 Add a constructor that got lost by Chris Lattner · 21 years ago
  33. 3c66c35 Generalize the strlen size_t hack, for the benefit of the other external by Brian Gaeke · 21 years ago
  34. 4b538b9 Fix broken link, again. by Chris Lattner · 21 years ago
  35. d11297f Sorry, now friend class name should be right!! by Tanya Lattner · 21 years ago
  36. c9bdf09 Fixed friend class name for ModuloScheduling. by Tanya Lattner · 21 years ago
  37. 32c182a Fixed friend class name for ModuloSched by Tanya Lattner · 21 years ago
  38. 0e1c48b Removing MachineResource class. by Tanya Lattner · 21 years ago
  39. eeddcdc Fix a broken link by Chris Lattner · 21 years ago
  40. c1526a9 Fix a major pessimization in the instcombiner. If an allocation instruction by Chris Lattner · 21 years ago
  41. 8c53472 Add machine-CFG graph traits specializations. by Brian Gaeke · 21 years ago
  42. 96a8bd7 Wrapped code and comments at 80 cols; doxygenified some comments. by Misha Brukman · 21 years ago
  43. bf94a1e Reorder #includes as per style guide. by Misha Brukman · 21 years ago
  44. 6cdff92 Added `zeroinitializer' keyword. by Misha Brukman · 21 years ago
  45. e5242de class AssemblyWriter: by Misha Brukman · 21 years ago
  46. df3d2e9 * Make contained ostream not public. by Misha Brukman · 21 years ago
  47. 8618e52 Send text and numbers directly to CachedWriter's contained ostream. by Misha Brukman · 21 years ago
  48. 500acf7 Squelch compile-time warning (profile build). by Misha Brukman · 21 years ago
  49. 5cf1acf * Add ability to print out type as symbolic by Misha Brukman · 21 years ago
  50. 3f98def * Add ability to get and set the output stream by Misha Brukman · 21 years ago
  51. 3707241 Add pred./succ. list size methods. by Brian Gaeke · 21 years ago
  52. 1afe773 Make RequiresFPRegKill() take a MachineBasicBlock arg. by Brian Gaeke · 21 years ago
  53. 235aa5e In InsertFPRegKills(), use the machine-CFG itself rather than the by Brian Gaeke · 21 years ago
  54. ea9ca67 Update the machine-CFG edges whenever we see a branch. by Brian Gaeke · 21 years ago
  55. 8560af4 Move private methods to end of class decl at Chris's request by Brian Gaeke · 21 years ago
  56. 61d3d5c Fix thinkos that Chris caught for me. Make pred mutators private. by Brian Gaeke · 21 years ago
  57. 76456bc Add machine-code CFG support: MachineBasicBlocks may now have their own by Brian Gaeke · 21 years ago
  58. 235d3b7 Integrate the rest of my random sparcv9 scribblings into this file by Brian Gaeke · 21 years ago
  59. 003d517 Fix warning building in optimized mode by Chris Lattner · 21 years ago
  60. 0ebf428 Fix warning by Chris Lattner · 21 years ago
  61. 6ffe551 Changes to fix up the inst_iterator to pass to boost iterator checks. This by Chris Lattner · 21 years ago
  62. 21e2325 Because I like being able to instantiate the cfgprinter from external projects, by Brian Gaeke · 21 years ago
  63. c6e2d8a Add functions that return instances of these printer passes by Brian Gaeke · 21 years ago
  64. e0baeec Fix a typo in a comment. by Brian Gaeke · 21 years ago
  65. bac7da8 If an object is not in the scalar map then it must be a global from another by Chris Lattner · 21 years ago
  66. 83a2e6e Instcombine X/-1 --> 0-X by Chris Lattner · 21 years ago
  67. db05858 Add a new testcase for X/-1, fix bug that prevented tests from running right by Chris Lattner · 21 years ago
  68. 3ca4fcc Fix file header comments and include guards -- many files have been moved or by Brian Gaeke · 21 years ago
  69. 27beae8 Add a getRegisterInfo() accessor just like on the X86 target. by Brian Gaeke · 21 years ago
  70. c991586b9 Regularize file header comment and include guard. by Brian Gaeke · 21 years ago
  71. 2363b4e Add MRegisterInfo subclass for the SparcV9 target (containing only stub by Brian Gaeke · 21 years ago
  72. 6d5ab86 Standardize header comments of top-level Makefiles. by Misha Brukman · 21 years ago
  73. de41aab Aggregating function arguments is now an option. Default is `no', as before. by Misha Brukman · 21 years ago
  74. 22108fa * Allow aggregating extracted function arguments (controlled by flag) by Misha Brukman · 21 years ago
  75. dd6d822 Fix a typo. by Brian Gaeke · 21 years ago
  76. 4a7553e Move the scev expansion code into this pass, where it belongs. There is by Chris Lattner · 21 years ago
  77. b06432c Eliminate all of the SCEV Expansion code which is really part of the by Chris Lattner · 21 years ago
  78. 2cdf0a7 Remove the SCEV::expandCodeFor method, add a new SCEVVisitor class. by Chris Lattner · 21 years ago
  79. f4789e6 Teach bugpoint to be a little bit smarter and avoid repeating work by Chris Lattner · 21 years ago
  80. a7e405c Merged this file into the SparcV9 target. by Brian Gaeke · 21 years ago
  81. 18f9f66 Merge TargetRegInfo.h into SparcV9RegInfo.h, which is its only subclass. by Brian Gaeke · 21 years ago
  82. 3b2e5e6 Include SparcV9RegInfo.h instead of TargetRegInfo.h. by Brian Gaeke · 21 years ago
  83. 35450d2 Include SparcV9RegInfo.h instead of TargetRegInfo.h. This serves as a bit of by Brian Gaeke · 21 years ago
  84. 4d529bc Get rid of the old byte-at-a-time emission code used when the Sparc JIT was by Brian Gaeke · 21 years ago
  85. b440dea Go back to the interpreter main loop after performing intrinsic lowering, by Brian Gaeke · 21 years ago
  86. 6893ead mmap of a zero length file returns null on some platforms, so hack around it. by Brian Gaeke · 21 years ago
  87. b61fc83 Use emitWordAt() to emit forward-branch fixups. by Brian Gaeke · 21 years ago
  88. 62c6f87 Emit SPARC machine code a word at a time instead of a byte at a time. by Brian Gaeke · 21 years ago
  89. aea1b58 Implement emitWordAt() for the JIT emitter. by Brian Gaeke · 21 years ago
  90. da8246b Implement emitWordAt() for the debug emitter and the file printer emitter. (I by Brian Gaeke · 21 years ago
  91. fd1bb8b Add emitWordAt() - a quick and dirty interface that the machine-dependent by Brian Gaeke · 21 years ago
  92. ca718e4 Add command-line option to select whether to isolate or delete function from by Misha Brukman · 21 years ago
  93. 7d24839 Clarify the logic: the flag is renamed to `deleteFn' to signify it will delete by Misha Brukman · 21 years ago
  94. 79906c9 Add a flag to choose between isolating a function or deleting the function from by Misha Brukman · 21 years ago
  95. 127a3e0 Add a boolean flag to delete this function from module, leaving the rest behind. by Misha Brukman · 21 years ago
  96. 123f8fe Add a space before result for readability on the command line. by Misha Brukman · 21 years ago
  97. b4782d1 Disable a previous patch that was causing indvars to loop infinitely :( by Chris Lattner · 21 years ago
  98. 7d221c5 Add an ugly cast by Chris Lattner · 21 years ago
  99. fcb81f5 Fix an extremely serious thinko I made in revision 1.60 of this file. by Chris Lattner · 21 years ago
  100. e1beb8f Add a method by Chris Lattner · 21 years ago