1. 329c1c6 Improve encapsulation in the Loop and LoopInfo classes by eliminating the by Chris Lattner · 22 years ago
  2. 7d629b5 Add a separate list of fixed intervals. This improves the running time by Alkis Evlogimenos · 22 years ago
  3. 1283d86 Minor cleanups. by Alkis Evlogimenos · 22 years ago
  4. 75ca6a3 Remove declared but undefined method. by Alkis Evlogimenos · 22 years ago
  5. 80b378c Change implementation of LiveIntervals::overlap(). This results in a by Alkis Evlogimenos · 22 years ago
  6. d2c39e9 Pass std::string to constructor as const reference to avoid multiple copies. by Alkis Evlogimenos · 22 years ago
  7. 90ab32f Add support for new intrinsic by Chris Lattner · 22 years ago
  8. c2376a0 Fix some typos and copy-and-paste-os in comments, and doxygenify. by Brian Gaeke · 22 years ago
  9. 63caedf Remove simple coalescing. by Alkis Evlogimenos · 22 years ago
  10. 60a5758 /me slaps forehead by Chris Lattner · 22 years ago
  11. 8c24036 fix warning by Chris Lattner · 22 years ago
  12. 77b1330 Add VMCore and code generator support for debugging intrinsics. By default by Chris Lattner · 22 years ago
  13. 6dddfff Add new dir by Chris Lattner · 22 years ago
  14. 2eacf26 Initial checkin of the LLVM source-level debugger. This is still not finished, by Chris Lattner · 22 years ago
  15. 271bd2d Currently we cannot handle two-address instructions of the form: by Alkis Evlogimenos · 22 years ago
  16. 50c047d Update description. by Alkis Evlogimenos · 22 years ago
  17. 2657aec Not all platforms supports sighandler_t, so I changed it to use the older by John Criswell · 22 years ago
  18. 55d8648 Add new ExecutionEngine::getGlobalValueAtAddress method, which can efficiently by Chris Lattner · 22 years ago
  19. 9e26027 * Add a new helper progress method by Chris Lattner · 22 years ago
  20. 6083782 Add some comments, add new getGlobalVariable method by Chris Lattner · 22 years ago
  21. 0a5f033 Add missing #include by Chris Lattner · 22 years ago
  22. 6d28a26 * Make Module::getTypeName const by Chris Lattner · 22 years ago
  23. 69284b0 Make the lookup method const. by Chris Lattner · 22 years ago
  24. 81a085a Add new function by Chris Lattner · 22 years ago
  25. a2e9363 New class, useful for command-line interactive programs. by Chris Lattner · 22 years ago
  26. 3b41e0e Fix PR198 by Chris Lattner · 22 years ago
  27. 4b1be10 Add comments by Chris Lattner · 22 years ago
  28. c7d3f6b Minor code cleanups. The only bugfix is to the UR_DEBUG stuff which didn't by Chris Lattner · 22 years ago
  29. f63aeec remove some useless #includes by Chris Lattner · 22 years ago
  30. b70abe1 Use new getFileSize function instead of sys/stat.h directly. by Chris Lattner · 22 years ago
  31. 316cb08 Add new method by Chris Lattner · 22 years ago
  32. 9899ae3 Further revisions of the FDHandle idea. In this version we use ownership by Chris Lattner · 22 years ago
  33. 9b448b7 Add trivial exception specs to produce better code since the methods cannot by Chris Lattner · 22 years ago
  34. 2d6481c Factor FDHandle out of the bytecode reader into the FileUtilities.h support by Chris Lattner · 22 years ago
  35. 872ccce implement new getToken function by Chris Lattner · 22 years ago
  36. f70e0c2 Clean up a lot of the code I added yesterday by exposing the IntrinsicLowering by Chris Lattner · 22 years ago
  37. 27490a6 Reserve ECX and EDI instead of EBX and EDI. Since EBX is a callee by Alkis Evlogimenos · 22 years ago
  38. 26bfc08 Add coalescing to register allocator. A hint is added to each interval by Alkis Evlogimenos · 22 years ago
  39. 5e30002 Add TargetInstrInfo::isMoveInstr() to support coalescing in register allocation. by Alkis Evlogimenos · 22 years ago
  40. aed386e Whoops, don't try to lower non intrinsic calls by Chris Lattner · 22 years ago
  41. 4482715 implement support for the intrinsic lowering functionality by Chris Lattner · 22 years ago
  42. 37b1826 Eliminate some code that is not needed now that we have the intrinsic lowering pass by Chris Lattner · 22 years ago
  43. 7301178 Pass around IntrinsicLowering instances as appropriate. by Chris Lattner · 22 years ago
  44. f8742b3 Use the intrinsic lowering functionality by Chris Lattner · 22 years ago
  45. 42450d8 Move into the VMCore library by Chris Lattner · 22 years ago
  46. 3b66ecb Implement the default implementation of the intrinsic lowering class by Chris Lattner · 22 years ago
  47. aa4c91f finegrainify namespacification minor cleanups by Chris Lattner · 22 years ago
  48. 0898c78 Merging constants can cause further room for improvement. Iterate until by Chris Lattner · 22 years ago
  49. 6cdc42b Add a note by Chris Lattner · 22 years ago
  50. 87f0310 Factor code out of LLI by Chris Lattner · 22 years ago
  51. ddceeb7 minor cleanups by Chris Lattner · 22 years ago
  52. ff0f1bb No longer run atExit functions from run() by Chris Lattner · 22 years ago
  53. 2cab55d No longer run atExit functions from run() rename run to runFunction by Chris Lattner · 22 years ago
  54. 843397c Improve debugging output when choosing a register to spill. by Alkis Evlogimenos · 22 years ago
  55. 7a40eaa Do a separate pass to compute spill weights because doing it inline by Alkis Evlogimenos · 22 years ago
  56. 9cd4257 Right, fix the problem with invoke instructions, not just call instructions by Chris Lattner · 22 years ago
  57. f64d57a Do not delete the type holder until after the call instruction has been by Chris Lattner · 22 years ago
  58. 368751f Modified the logic so that library objects with main() are only linked in by John Criswell · 22 years ago
  59. a989b23 Minor cleanups, plug a minor memory leak by Chris Lattner · 22 years ago
  60. 3bf564a Change the way free regusters are computed and perform better by Alkis Evlogimenos · 22 years ago
  61. 1715ce0 Modified the linker so that it always links in an object from an archive by John Criswell · 22 years ago
  62. 9a0a41f rename ClassifyExpression -> ClassifyExpr by Chris Lattner · 22 years ago
  63. 15cad75 More minor non-functional changes. This now computes the exit condition, though by Chris Lattner · 22 years ago
  64. e799902 Remove extraneous #include finegrainify namespacification by Chris Lattner · 22 years ago
  65. 790462c Finegrainify namespacification by Chris Lattner · 22 years ago
  66. b972380 Fix memory corruption bug PR193 by Chris Lattner · 22 years ago
  67. 9059158 Reverted back to revision 1.11. The previous fix doesn't really fix by John Criswell · 22 years ago
  68. 056063e Fix crash when compiling twolf. by Alkis Evlogimenos · 22 years ago
  69. 500597a Don't mind me, I'm just refactoring away. This patch makes room for LFTR, but by Chris Lattner · 22 years ago
  70. 4c307d4 finegrainify namespacification by Chris Lattner · 22 years ago
  71. 18b3c97 Implement IndVarsSimplify/pointer-indvars.ll, transforming pointer by Chris Lattner · 22 years ago
  72. f045328 finegrainify namespacification add new getIntPtrType() method by Chris Lattner · 22 years ago
  73. 3324e71 Fix PR194 by Chris Lattner · 22 years ago
  74. 3615845 Really release memory used by functions. Patch by Chris. by Misha Brukman · 22 years ago
  75. 4de1fef Remove verifyIntervals() since it doesn't actually work right now. by Alkis Evlogimenos · 22 years ago
  76. 6b4edba Change weight into a float so that we can take into account the by Alkis Evlogimenos · 22 years ago
  77. 0ef76ca Move FP_REG_KILL closer to the return instruction. by Alkis Evlogimenos · 22 years ago
  78. 169cfd0 Add support for inactive intervals. This effectively reuses registers by Alkis Evlogimenos · 22 years ago
  79. 1118d0f Fix PR#193. by John Criswell · 22 years ago
  80. 9abc817 Move FP_REG_KILL closer to the actual branch instruction. by Alkis Evlogimenos · 22 years ago
  81. e0bb3e7 Remove floating point killer pass. This is now implemented in the by Alkis Evlogimenos · 22 years ago
  82. 16c45e9 Add a new target-independent machine code freeing pass by Chris Lattner · 22 years ago
  83. 655239c Finally, _actually delete the machine code_ for a function, after it has by Chris Lattner · 22 years ago
  84. 028565b This should not be needed anymore by Chris Lattner · 22 years ago
  85. 9068574 Fix memory leak in the stackifier, due to the machinebasicblocks not holding by Chris Lattner · 22 years ago
  86. f2e49d4 Finegrainify namespacification Minor cleanups to killer pass by Chris Lattner · 22 years ago
  87. 583b9d8 Hoist some sparc specific code into the sparc target by Chris Lattner · 22 years ago
  88. 07f32d4 * Finegrainify namespacification by Chris Lattner · 22 years ago
  89. 6183882 Remove a horrible API by Chris Lattner · 22 years ago
  90. c07ed13 Implement PR135, lazy emission of global variables by Chris Lattner · 22 years ago
  91. 24b0a18 Simple refactorings to prepare for lazy global emission by Chris Lattner · 22 years ago
  92. 2828970 A minor cleanup for better encapsulation by Chris Lattner · 22 years ago
  93. 4d326fa Cleanup the JIT as per PR176. This renames the VM class to JIT, and merges the by Chris Lattner · 22 years ago
  94. 61612df Update for changes in the JIT by Chris Lattner · 22 years ago
  95. 1e60a91 Rip JIT specific stuff out of TargetMachine, as per PR176 by Chris Lattner · 22 years ago
  96. bd1a90e Fix ADCE/2003-12-19-MergeReturn.llx by Chris Lattner · 22 years ago
  97. a3df8a9 Remove the wierd "Operands" loop, by traversing basicblocks in reverse order by Chris Lattner · 22 years ago
  98. e4365b2 Implement LICM/sink_multiple.ll, by sinking all possible instructions in the by Chris Lattner · 22 years ago
  99. 0f98e75 Generalize a special case to fix PR187 by Chris Lattner · 22 years ago
  100. 60921c9 Factor code out into the Utils library by Chris Lattner · 22 years ago