1. 70aa89d Reuse the MO variable instead of recomputing it in RegAllocLocal. by Dan Gohman · 17 years ago
  2. d0a33a9 Give RegAllocSimple a TargetInstrInfo member to keep it consistent by Dan Gohman · 17 years ago
  3. 8a95073 Use find with std::map, when that's what's needed, instead of lower_bound by Dan Gohman · 17 years ago
  4. 9988569 Don't include <map> in Pass.h, which doesn't need it. This requires by Dan Gohman · 18 years ago
  5. 3a4be0f Rename MRegisterInfo to TargetRegisterInfo. by Dan Gohman · 18 years ago
  6. 03ad885 rename TargetInstrDescriptor -> TargetInstrDesc. by Chris Lattner · 18 years ago
  7. a98c679 Rename MachineInstr::getInstrDescriptor -> getDesc(), which reflects by Chris Lattner · 18 years ago
  8. eee1460 Move some more instruction creation methods from RegisterInfo into InstrInfo. by Owen Anderson · 18 years ago
  9. a10fff5 Rename SSARegMap -> MachineRegisterInfo in keeping with the idea by Chris Lattner · 18 years ago
  10. f3ebc3f Remove attribution from file headers, per discussion on llvmdev. by Chris Lattner · 18 years ago
  11. bb26301 Add a argument to storeRegToStackSlot and storeRegToAddr to specify whether by Evan Cheng · 18 years ago
  12. 8c78a0b Drop 'const' by Devang Patel · 19 years ago
  13. e95c6ad Use 'static const char' instead of 'static const int'. by Devang Patel · 19 years ago
  14. 09f162c Do not use typeinfo to identify pass in pass manager. by Devang Patel · 19 years ago
  15. 0ba1745 Match MachineFunction::UsedPhysRegs changes. by Evan Cheng · 19 years ago
  16. aee775a Eliminate static ctors from Statistics by Chris Lattner · 19 years ago
  17. 78cb08d Move findTiedToSrcOperand to TargetInstrDescriptor. by Evan Cheng · 19 years ago
  18. 4539418 findTiedToSrcOperand() changed. by Evan Cheng · 19 years ago
  19. 355fc5a Removed more <iostream> includes by Bill Wendling · 19 years ago
  20. 700b873 Detemplatize the Statistic class. The only type it is instantiated with by Chris Lattner · 19 years ago
  21. 787b773 Use llvm streams instead of <iostream> by Bill Wendling · 19 years ago
  22. 93cdd14 Rename by Evan Cheng · 19 years ago
  23. d8697de Two-address instructions no longer have to be A := A op C. Now any pair of dest / src operands can be tied together. by Evan Cheng · 19 years ago
  24. 13a5dcd Fix a long-standing wart in the code generator: two-address instruction lowering by Chris Lattner · 19 years ago
  25. 3d27be1 s|llvm/Support/Visibility.h|llvm/Support/Compiler.h| by Chris Lattner · 19 years ago
  26. 29e635d Final polish on machine pass registries. by Jim Laskey · 19 years ago
  27. 95eda5b Introducing plugable register allocators and instruction schedulers. by Jim Laskey · 19 years ago
  28. 4b49c23 Eliminate data relocations by using NULL instead of global empty list. by Jim Laskey · 19 years ago
  29. c496b41 Reduce number of exported symbols by Andrew Lenharth · 19 years ago
  30. e097e6f Shave another 27K off libllvmgcc.dylib with visibility hidden by Chris Lattner · 19 years ago
  31. 10d6341 Move some methods out of MachineInstr into MachineOperand by Chris Lattner · 20 years ago
  32. de02d77 Add explicit #includes of <iostream> by Chris Lattner · 20 years ago
  33. 5a6199f Change this code ot pass register classes into the stack slot spiller/reloader by Chris Lattner · 20 years ago
  34. 7745116 Convert tabs to spaces by Misha Brukman · 21 years ago
  35. 835702a Remove trailing whitespace by Misha Brukman · 21 years ago
  36. 3d527f7 Update physregsused info. by Chris Lattner · 21 years ago
  37. 7c16caa Changes For Bug 352 by Reid Spencer · 21 years ago
  38. c66f27f Stop using CreateStackObject(RegClass*) by Chris Lattner · 21 years ago
  39. 98de1d7 These methods no longer take a TargetRegisterClass* operand. by Chris Lattner · 21 years ago
  40. 902dcf0 These files don't need to include <iostream> since they include "Support/Debug.h". by Brian Gaeke · 21 years ago
  41. 23dbc81 Made a fix so that you can print out MachineInstrs that belong to a MachineBasicBlock that is not yet attached to a MachineFunction. This change includes changing the third operand (TargetMachine) to a pointer for the MachineInstr::print function. by Tanya Lattner · 21 years ago
  42. 2150542 Adjust to new TargetMachine interface by Chris Lattner · 21 years ago
  43. e0b4995 Fix PR294 by Chris Lattner · 22 years ago
  44. c31ff79 Simplify iterator usage now that we have next(). Also don't pass iterators by reference now that MachineInstr* are in an ilist by Alkis Evlogimenos · 22 years ago
  45. d0a60b7 Rename reloads/spills to loads/stores. by Alkis Evlogimenos · 22 years ago
  46. a8d97e4 Finegrainify namespacification by Chris Lattner · 22 years ago
  47. bbf5393 Make dense maps keyed on physical registers smallerusing by Alkis Evlogimenos · 22 years ago
  48. 8cdd021 Remove getAllocatedRegNum(). Use getReg() instead. by Alkis Evlogimenos · 22 years ago
  49. 80da865 Change MachineBasicBlock's vector of MachineInstr pointers into an by Alkis Evlogimenos · 22 years ago
  50. 5dd5be3 Do not use MachineOperand::isVirtualRegister either! by Chris Lattner · 22 years ago
  51. aaba463 Change interface of MachineOperand as follows: by Alkis Evlogimenos · 22 years ago
  52. 960707c Put all LLVM code into the llvm namespace, as per bug 109. by Brian Gaeke · 22 years ago
  53. 482202a Added LLVM project notice to the top of every C++ source file. by John Criswell · 22 years ago
  54. 5f1f337 Change MRegisterDesc::AliasSet, TargetInstrDescriptor::ImplicitDefs by Alkis Evlogimenos · 22 years ago
  55. 7eb05a1 Spell `necessary' correctly. by Misha Brukman · 22 years ago
  56. 8920794 Factory methods for FunctionPasses now return type FunctionPass *. by Brian Gaeke · 22 years ago
  57. 74e4e9b Set debug types by Chris Lattner · 22 years ago
  58. 1007f03 Move DEBUG to Debug.h by Chris Lattner · 22 years ago
  59. 7366fa1 (1) Added special register class containing (for now) %fsr. by Vikram S. Adve · 22 years ago
  60. b4d58d7 Rename MachineInstrInfo -> TargetInstrInfo by Chris Lattner · 23 years ago
  61. cbedb8b * Use the PHI Elimination pass by Chris Lattner · 23 years ago
  62. ca4362f Rename FunctionFrameInfo to MachineFrameInfo by Chris Lattner · 23 years ago
  63. bf9d12a * Convert to be a MachineFunctionPass instance by Chris Lattner · 23 years ago
  64. ee73450 Adjustments to work with the simpler spill interface by Chris Lattner · 23 years ago
  65. 095eac8 Fix compilation on GCC 2.96 by Chris Lattner · 23 years ago
  66. dc451c6 Implicit defs/uses list may be empty. by Chris Lattner · 23 years ago
  67. ac5f3b3 Use new reginfo interface by Chris Lattner · 23 years ago
  68. 1d84f0a Keep the stack frame aligned. by Chris Lattner · 23 years ago
  69. c63d63a Rename createSimpleX86RegisterAllocator to createSimpleRegisterAllocator. by Chris Lattner · 23 years ago
  70. bc1e670 Some simpliciations to the spill/reload interface by Chris Lattner · 23 years ago
  71. 4e560ee Simplify PHI node elimination significantly by doing it as a prepass to by Chris Lattner · 23 years ago
  72. 292083a Variety of small or trivial simplifications to the code, completely eliminated by Chris Lattner · 23 years ago
  73. 2af545d Remove unused savePhysRegToStack method by Chris Lattner · 23 years ago
  74. ed594b6 Localize a map, remove another by Chris Lattner · 23 years ago
  75. 1499e5a Give simple reg allocator a nice Pass Name by Chris Lattner · 23 years ago
  76. 2979a85 Add a big assert making sure 2 address instructions are formed right by Chris Lattner · 23 years ago
  77. 02e835b Fix a problem that occurs when PHI nodes have multiple entries for the same predecessor by Chris Lattner · 23 years ago
  78. dfa238f Grab bag of minor cleanups. Export some statistics about the number of by Chris Lattner · 23 years ago
  79. e253333 Simplify interfaces used by regalloc to insert code by Chris Lattner · 23 years ago
  80. c1c7cc2 * Simplify code a bit by breaking the PHI node handling stuff out into a seperate by Chris Lattner · 23 years ago
  81. f2acd84 * Remove some unneccesary instance variables by Chris Lattner · 23 years ago
  82. b772cd0 pull inverse reg class mapping into a class that is sharable and out of the by Chris Lattner · 23 years ago
  83. cf1955c Prune #includes by Chris Lattner · 23 years ago
  84. 1af3af4 Remove extraneous #includes, perform FIXME by Chris Lattner · 23 years ago
  85. 477af9d Fix borkness with not using MachineBasicBlocks in PHI nodes by Chris Lattner · 23 years ago
  86. a1aa29b Fixed a bug where moves due to phis were being neglected. by Misha Brukman · 23 years ago
  87. 86ca884 Need to insert all moves due to PHI nodes before *ALL* jumps in a predecessor by Misha Brukman · 23 years ago
  88. 35a358d This should be more correct: invalidates physical registers that are used in by Misha Brukman · 23 years ago
  89. 89ff3fb Fixed bug with running out of registers. Also, reinstated namespace which by Misha Brukman · 23 years ago
  90. a739167 This should handle register allocating PHI nodes. by Misha Brukman · 23 years ago
  91. 4ef74c8 Start allocating stack space at [ebp-4] to not overwrite the return address. by Misha Brukman · 23 years ago
  92. 260dbc7 Take advantage of our knowledge of 2-address X86 instructions and by Misha Brukman · 23 years ago
  93. 160a3da Added code generation for function prologues and epilogues. by Misha Brukman · 23 years ago
  94. dbb7b65 Fun arithmetic with iterators aimed at fixing a bug: inserting instructions by Misha Brukman · 23 years ago
  95. a8ad932 This should fix the bug seen with some registers not being allocated by Misha Brukman · 23 years ago
  96. 2e035d6 * Abstracted out stack space allocation into its own function by Misha Brukman · 23 years ago
  97. 60286d0 A simple (spilling) register allocator. by Misha Brukman · 23 years ago