1. 47b14a4 Fix #includes of i*.h => Instructions.h as per PR403. by Misha Brukman · 20 years ago
  2. 879313a Fix #includes of i*.h => Instructions.h as per PR403: by Chris Lattner · 20 years ago
  3. 4ab78e0 Header moved by Chris Lattner · 20 years ago
  4. 9670eec Fix #includes of i*.h => Instructions.h as per PR403: by Chris Lattner · 20 years ago
  5. d8e1eea Fix #includes of i*.h => Instructions.h as per PR403. by Misha Brukman · 20 years ago
  6. 4433629 Fix #includes of i*.h files => Instructions.h as per PR403 by Misha Brukman · 20 years ago
  7. 91366a8 Merge i*.cpp definitions into Instructions.cpp as part of bug403. by Alkis Evlogimenos · 20 years ago
  8. eb62bc7 Merge i*.h headers into Instructions.h as part of bug403. by Alkis Evlogimenos · 20 years ago
  9. 730b1ad Fix test/Regression/Analysis/BasicAA/2004-07-28-MustAliasbug.llx by Chris Lattner · 20 years ago
  10. 246b40a Get rid of a few dead method declarations. by Brian Gaeke · 20 years ago
  11. a308f80 Get rid of calls to void llvm::printSet(const ValueSet &). by Brian Gaeke · 20 years ago
  12. db7c40d Get rid of calls to void llvm::printSet(const ValueSet &). by Brian Gaeke · 20 years ago
  13. fb8f856 Don't derive from ValueSet to implement class LiveRange; instead, use a by Brian Gaeke · 20 years ago
  14. 988f5b5 Fix a few typoes and grammaroes in comments. by Brian Gaeke · 20 years ago
  15. 3638e99 Fix typo in comment. by Brian Gaeke · 20 years ago
  16. fc63adb Remove mustSaveAcrossCalls flag, which isn't ever read, and its mutator, by Brian Gaeke · 20 years ago
  17. acb7444 Move Transforms/BasicAA to Analysis/BasicAA by Chris Lattner · 20 years ago
  18. 08f998f Due to a bug in BasicAA, DSE is incorrectly deleting the first store in by Chris Lattner · 20 years ago
  19. 9bd2be2 Updates to reflect most recent changes to bytecode file format: by Reid Spencer · 20 years ago
  20. 69c5889 Fix grammar, eliminate double parenthesized sentence fragment. by Misha Brukman · 20 years ago
  21. a8c760a * Wrap code listings in <div class="doc_code"> by Misha Brukman · 20 years ago
  22. 294611a * Use the doc_code class for code listings to make it stand out from text by Misha Brukman · 20 years ago
  23. 08772da Put <tt> around verbatim code elements. by Misha Brukman · 20 years ago
  24. 83660c5 Minor corrections by Chris Lattner · 20 years ago
  25. b2f30a3 TargetInstrInfo::hasOperandInterlock() is always true, because it is by Brian Gaeke · 20 years ago
  26. 8b88d90 Add notes on bug involving casting ulong -> double, thanks to Nate Begeman. by Misha Brukman · 20 years ago
  27. a0af38c Simplify loading (un)signed constants to registers, patch by Nate Begeman. by Misha Brukman · 20 years ago
  28. b7697a6 Remove an extra 8 byte distance penalty. Patch by Nate Begeman. by Misha Brukman · 20 years ago
  29. f63bc19 Find longs by type, not by their primitive size being 64. Patch by Nate Begeman. by Misha Brukman · 20 years ago
  30. 8b29776 LI can only take signed values, so values > 32767 can only be loaded with ORI by Misha Brukman · 20 years ago
  31. b9b8ba5 Reorganize tests to place them in proper directories. by Misha Brukman · 20 years ago
  32. 56d38c6 UnitTests 2003-05-26-Shorts and 2003-07-09-LoadShorts have been fixed; by Misha Brukman · 20 years ago
  33. af313fb Fix printing of immediate operands by looking at their operand types in by Misha Brukman · 20 years ago
  34. 8c02c1c Renamed files: by Misha Brukman · 20 years ago
  35. de0ceb5 ConstantTypeMustBeLoaded has been incorporated into SparcV9PreSelection, its by Brian Gaeke · 20 years ago
  36. a770e00 This was the only user of TargetInstrInfo::ConstantTypeMustBeLoaded(). by Brian Gaeke · 20 years ago
  37. a2601e3 by Robert Bocchino · 20 years ago
  38. 7169828 by Robert Bocchino · 20 years ago
  39. 2311d71 *** empty log message *** by Robert Bocchino · 20 years ago
  40. eb6c29b Get rid of the (apparently non-working) filePrinterEmitter which is added in by Brian Gaeke · 20 years ago
  41. 4ce5ce2 Branch selection support implemented by Nate Begeman for long branches. by Misha Brukman · 20 years ago
  42. fe2597a Fix the nightly tester to default to using gnuplot in /usr/bin by Chris Lattner · 20 years ago
  43. ab96790 Correctly print out long branches, assert on finding pseudo instr COND_BRANCH by Misha Brukman · 20 years ago
  44. bd2c870 Run the branch selection pass right before the asm printer. by Misha Brukman · 20 years ago
  45. 596c231 Remove empty unused method processFunctionBeforeFrameFinalized() by Misha Brukman · 20 years ago
  46. f228fa0 Add COND_BRANCH pseudo instruction, patch by Nate Begeman. by Misha Brukman · 20 years ago
  47. fa20a6d Build COND_BRANCHes which may become long or short, decided by a later pass. by Misha Brukman · 20 years ago
  48. 8aebe9f Moved definition of invertPPCBranchOpcode() into PowerPCInstrInfo class. by Misha Brukman · 20 years ago
  49. 999d9cf Add PowerPCBranchSelector to discover which are `long' branches. by Misha Brukman · 20 years ago
  50. c998981 TargetInstrInfo::getNOPOpCode() has been replaced by a reference to V9::NOP. by Brian Gaeke · 20 years ago
  51. a376ee2 Convert many of the virtual TargetInstrInfo methods used as helper by Brian Gaeke · 20 years ago
  52. 1b4aeb5 As it happens, none of these TargetInstrInfo methods which are only by Brian Gaeke · 20 years ago
  53. 96d4bf7 Make the create...() functions for some of these passes return a FunctionPass *. by Brian Gaeke · 20 years ago
  54. c91bc30 Fixed saving/restoring LR unconditionally, only done as necessary. by Misha Brukman · 20 years ago
  55. 9a771d5 Save and restore LR just like any other register and ONLY if we actually modify by Misha Brukman · 20 years ago
  56. e862f30 LR is a 32-bit int reg by Misha Brukman · 20 years ago
  57. 53f5678 MovePCtoLR (which is `bl' in disguise) modifies LR implicitly by Misha Brukman · 20 years ago
  58. 08cc7b3 Register LR is callee-saved by Misha Brukman · 20 years ago
  59. 435c785 Add IMPLICIT_DEF of LR for branch-and-link instrs (calls and global accesses) by Misha Brukman · 20 years ago
  60. 892cdb3 Ugh, the upgrade of zion brought in GCC 3.3.2, our arch nemesis. by Chris Lattner · 20 years ago
  61. 2d26ffb Run DSE at link-time, and turn on an IP alias analysis by default in gccld! by Chris Lattner · 20 years ago
  62. b0015c5 nuke pointless -debug output by Chris Lattner · 20 years ago
  63. ccb354b New functionality by Chris Lattner · 20 years ago
  64. fdec1d5 Document new syntax by Chris Lattner · 20 years ago
  65. 105d26a Fix conservative assumption, which was quite broken. Also, notice that by Chris Lattner · 20 years ago
  66. eaa2430 Fix hoisting of void typed values, e.g. calls by Chris Lattner · 20 years ago
  67. 70c7d03 alloca void makes no sense by Chris Lattner · 20 years ago
  68. 63e9930 Remove a bogus assertion by Chris Lattner · 20 years ago
  69. fe98f27 Complete rewrite of this pass to be faster, use less memory, be easier to by Chris Lattner · 20 years ago
  70. a9db34f new testcase by Chris Lattner · 20 years ago
  71. 059f5a5 Have some testcases by Chris Lattner · 20 years ago
  72. 1c2b129 Add a note by Chris Lattner · 20 years ago
  73. 8a1478b Fix out of date comment by Chris Lattner · 20 years ago
  74. bcb11cf Simplify code and silence warning by Chris Lattner · 20 years ago
  75. efe30ef Use context-sensitive alias analysis to avoid pessimization in clients of by Chris Lattner · 20 years ago
  76. cbb4b57 New testcase. DSE should delete all of the DEAD instructions. by Chris Lattner · 20 years ago
  77. db5b80a Make basicaa a bit more aggressive by Chris Lattner · 20 years ago
  78. e181b94 basic-aa can actually provide simple mod/ref info by Chris Lattner · 20 years ago
  79. 05e4798 This was implemented back in march by Chris Lattner · 20 years ago
  80. 1dba7ab Implement test/Regression/TableGen/ListSlices.td by Chris Lattner · 20 years ago
  81. 3aa965f New testcase for list slicing by Chris Lattner · 20 years ago
  82. b0fef64 Add initial support for list slices. This currently allows you to do stuff by Chris Lattner · 20 years ago
  83. a60ff2e A utility to run an arbitrary program on each of the LLVM source files. by Reid Spencer · 20 years ago
  84. ab640a5 Do not store the stack pointer if the stack size is 0. by Misha Brukman · 20 years ago
  85. 3ada3e3 ADDI can take several forms, including: by Misha Brukman · 20 years ago
  86. 8790d47 assert() on MachineInstr properties instead of checking them dynamically by Misha Brukman · 20 years ago
  87. 774a297 * Recognize `addi r1, r2, 0' a move instruction by Misha Brukman · 20 years ago
  88. 1aab327 Remove dead section by Chris Lattner · 20 years ago
  89. 8606aea Fix indentation: should be 2 spaces. by Misha Brukman · 20 years ago
  90. 91b5ca8 Fix file header as it has been renamed. by Misha Brukman · 20 years ago
  91. c6d398a Renamed files to have the `X86' prefix for uniqueness purposes. by Misha Brukman · 20 years ago
  92. b097f21 * Rewrote casts by Misha Brukman · 20 years ago
  93. cf8d244 Increment the label number in runOnFunction() rather than while printing out by Misha Brukman · 20 years ago
  94. bb966a4 More notes on bugs, unimplemented features, and suggested code improvements. by Misha Brukman · 20 years ago
  95. 3c616b4 Fix subtracting values > 2^15 in the prologue/epilogue, by Nate Begeman. by Misha Brukman · 20 years ago
  96. 8f6c42b Added another test case for double FP constants as well. by Reid Spencer · 20 years ago
  97. a000279 Implement DeadStoreElim/alloca.llx by observing that allocas are dead at the by Chris Lattner · 20 years ago
  98. a00064a New testcase by Chris Lattner · 20 years ago
  99. 61d4627 Add some new methods by Chris Lattner · 20 years ago
  100. 558cb5f New methods by Chris Lattner · 20 years ago