1. 9accb24 Bool alignment on MacOSX/PowerPC is 4 bytes. by Misha Brukman · 20 years ago
  2. 4c14f33 * Change class of BoolTy back to cInt * Fix indentation back to 2 spaces by Misha Brukman · 20 years ago
  3. c8e8764 * Add BoolAlignment to TargetData, default is 1 byte, size 1 byte by Misha Brukman · 20 years ago
  4. a7bfbba costmetic changes by Chris Lattner · 20 years ago
  5. e8850f4 Fix broken -debug printing by Chris Lattner · 20 years ago
  6. 4951d48 The default has not been 'simple' for AGES! by Chris Lattner · 20 years ago
  7. cc46c4f Remove some (LARGE) abandoned code for the release. If this is ever needed by Chris Lattner · 20 years ago
  8. 0bafa98 Make linear scan the default by Chris Lattner · 20 years ago
  9. 2ed17ca * Change bool from cInt to cByte (for now) by Misha Brukman · 20 years ago
  10. 77c4c4d Put variable name to a separate line. by Alkis Evlogimenos · 20 years ago
  11. 75fa4e4 Fix indentation and wrap code at 80 cols by Misha Brukman · 20 years ago
  12. d3014ed Sorting is now handled by both linearscan and iterative scan so live by Alkis Evlogimenos · 20 years ago
  13. 82c24fb Fit to 80 columns. by Alkis Evlogimenos · 20 years ago
  14. 53eb373 Some compile time improvements resulting in a 1sec speedup in the 5sec by Alkis Evlogimenos · 20 years ago
  15. 0fb56af This is a trivial dead store elimination pass. It very very simple and by Chris Lattner · 20 years ago
  16. b8a31ac Clean up reference counting to stop "leaking" alias sets by Chris Lattner · 20 years ago
  17. 199edde Remove extraneous punctuation by Chris Lattner · 20 years ago
  18. 93c9587 Update GC intrinsics to take a pointer to the object as well as a pointer by Chris Lattner · 20 years ago
  19. 9545a17 Updates to gc intrinsics, contributed by Tobias Nurmiranta by Chris Lattner · 20 years ago
  20. 10e169b Use reverse iterators when updating the vector, since scanning from by Alkis Evlogimenos · 20 years ago
  21. 6beef3e That funny 2-address lowering pass can also cause multiple definitions, by Chris Lattner · 20 years ago
  22. 1e31363 Minor cleanups by Chris Lattner · 20 years ago
  23. 3dbb504 Fix cases where we generated horrible code like this: by Chris Lattner · 20 years ago
  24. 7848e68 These files don't need to include <iostream> since they include "Support/Debug.h". by Brian Gaeke · 20 years ago
  25. a31f1f7 * Add the lost fix to define the second reg of a 2-reg representation of longs by Misha Brukman · 20 years ago
  26. 17a9000 * Speed up canUseAsImmediateForOpcode() by comparing Operand before by Misha Brukman · 20 years ago
  27. f0cacc0 * Further cleanup. by Chris Lattner · 20 years ago
  28. 97a296f * Fix printing of signed immediate values (Nate Begeman) by Misha Brukman · 20 years ago
  29. 1013ef5 * Fix printing of signed immediate values by Misha Brukman · 20 years ago
  30. 5eb9194 Make cast-cast code a bit more defensive by Chris Lattner · 20 years ago
  31. e0380e0 Use addSImm() instead of addImm() for stack offsets, which may be negative. by Misha Brukman · 20 years ago
  32. d03451e Fix analysis name. by Alkis Evlogimenos · 20 years ago
  33. 53d9a48 Add SUBI instruction by Misha Brukman · 20 years ago
  34. fc29e63 Clear spilled list at once. Remove unused vector. by Alkis Evlogimenos · 20 years ago
  35. 2d54705 Change std::list into a std::vector for IntervalSets. This reduces by Alkis Evlogimenos · 20 years ago
  36. 3b1af0b Improve file comment. by Alkis Evlogimenos · 20 years ago
  37. 910d0d6 Add Iterative scan register allocator. by Alkis Evlogimenos · 20 years ago
  38. c8dec2c Linearscan is no longer experimental. by Alkis Evlogimenos · 20 years ago
  39. 6d4b0d7 Add capability to remove aliasing aliassets from an AST by Chris Lattner · 20 years ago
  40. 12c1155 Make the AST interface a bit richer by returning whether an insertion caused by Chris Lattner · 20 years ago
  41. e8a7e59 Remove special casing of pointers and treat them generically as integers of by Chris Lattner · 20 years ago
  42. bb8f43c Do not ignore casts unless they are pointer-pointer casts. This caused us by Chris Lattner · 20 years ago
  43. 0d3ac4c Solaris hack for isinf() by Brian Gaeke · 20 years ago
  44. 043c0bb Emit NaNs and INFs bit-identically to the bytecode file, if the system has by Brian Gaeke · 20 years ago
  45. 418f73c Add platform-independent wrapper function for isinf(). by Brian Gaeke · 20 years ago
  46. cd2273f Shorts are aligned to 2 bytes, bools to 1 byte (in structs). by Misha Brukman · 20 years ago
  47. bf417a6 Treat external variables similarly to those with weak linkage: load indirect. by Misha Brukman · 20 years ago
  48. 86ddcf9 Differentiate between global and weak symbol loads by Misha Brukman · 20 years ago
  49. ec6319a * Differentiate between global and weak symbol loads by Misha Brukman · 20 years ago
  50. e48178e Differentiate between global and weak symbol loads by Misha Brukman · 20 years ago
  51. 5c45441 Double alignment in structs is 4 bytes, not 8. Patch by Nate Begeman. by Misha Brukman · 20 years ago
  52. a39fc0e Add function to clear all virtual->physical mappings but not assigned by Alkis Evlogimenos · 20 years ago
  53. 6bd23c0 Remove unneeded functor. LiveInterval has a < operator. by Alkis Evlogimenos · 20 years ago
  54. adfd32f Fix a serious code pessimization problem. If an inlined function has a single by Chris Lattner · 20 years ago
  55. 59a2077 Implement Transforms/InstCombine/IntPtrCast.ll by Chris Lattner · 20 years ago
  56. 9ce3000 Ignore instructions that are in trivially dead functions. This allows us by Chris Lattner · 20 years ago
  57. d43b9fd Fix stack frame layout in prologue/epilogue. Patch courtesy of Nate Begeman. by Misha Brukman · 20 years ago
  58. 67769e5 Implement InstCombine/GEPIdxCanon.ll by Chris Lattner · 20 years ago
  59. af17b1d Implement SimplifyCFG/BrUnwind.ll by Chris Lattner · 20 years ago
  60. ba1c1da Move handing of GlobalValues from getReg() to copyConstantToRegister(), this by Misha Brukman · 20 years ago
  61. bee7e76 Rewrite cast->cast elimination code completely based on the information we by Chris Lattner · 20 years ago
  62. 6111461 * Fn args passed in registers are now recorded as used by the call instruction by Misha Brukman · 20 years ago
  63. 7e898c3 * cFP class split into cFP32 and cFP64 by Misha Brukman · 20 years ago
  64. 4771288 While I'm at it, don't break codegen of mul by 3,5,9. by Chris Lattner · 20 years ago
  65. 596b97f Generate better code for multiplies by negative constants like -4, -1, -9, etc. by Chris Lattner · 20 years ago
  66. da77c44 Remove dead code. by Alkis Evlogimenos · 20 years ago
  67. 8640f4e Fix a bug that occurs when the last instruction in a range is dead by Chris Lattner · 20 years ago
  68. cc0d156 When joining intervals, join intervals in deeply nested loops first. This by Chris Lattner · 20 years ago
  69. 1c5c044 Split joinIntervals into two methods by Chris Lattner · 20 years ago
  70. 2a4cb68 bug 122: by Reid Spencer · 20 years ago
  71. f4fc36e Inline 4 methods by Chris Lattner · 20 years ago
  72. 74de8b1 There is no need to store the MBB along with the MI any more, we can now by Chris Lattner · 20 years ago
  73. 472405e Simplify the interface to LiveVariables::addVirtualRegister(Killed|Dead) by Chris Lattner · 20 years ago
  74. 73d4adf Remove the DefBlock element of VarInfo. DefBlock is always DefInst->getParent() by Chris Lattner · 20 years ago
  75. e312e15 Err, fix last checkin by Chris Lattner · 20 years ago
  76. 5fbf29c Fix bugpoint miscompilation support on OS/X by Chris Lattner · 20 years ago
  77. 8ea13c6 Two changes, both very significant: by Chris Lattner · 20 years ago
  78. 57eb15e See comments. The live intervals were not coming out of the spiller in sorted by Chris Lattner · 20 years ago
  79. 331cb7d Fix assertion to not dereference end! by Chris Lattner · 20 years ago
  80. 59073e0 Add some asserts that the list of intervals returned by addIntervalsForSpills by Chris Lattner · 20 years ago
  81. 6097d13 remove the mbbi2mbbMap_, which was just keeping track of mbb order anyway. by Chris Lattner · 20 years ago
  82. 6b92906 fill comment to 80 cols by Chris Lattner · 20 years ago
  83. ab4c19e classof implementations are now inlined by Chris Lattner · 20 years ago
  84. f8083b7 Method now returns null, dtor is inlined by Chris Lattner · 20 years ago
  85. 12e7b11 A description of what this library is about, reference to the documentation by Reid Spencer · 20 years ago
  86. 98b5a34 Initiali Makefile for this library. by Reid Spencer · 20 years ago
  87. f98cfc7 Add a workaround for a GCC 3.3.2 bug by Chris Lattner · 20 years ago
  88. 8919ccc Fix a performance regression from the CPR patch, simplify code by Chris Lattner · 20 years ago
  89. 96940cb Strip out and simplify some code. This also fixes the regression last by Chris Lattner · 20 years ago
  90. 9db07b9 Minor cleanup, no functionality change by Chris Lattner · 20 years ago
  91. a51e4f6 Fix infinite loop by Chris Lattner · 20 years ago
  92. e95ff9a Remove an if statement that would never be reached. by Reid Spencer · 20 years ago
  93. c88920d Delete a redundant if branch. by Reid Spencer · 20 years ago
  94. c3c2fdf Expand the coercion of constants to include the newly constant Globals. by Reid Spencer · 20 years ago
  95. 5f0eb64 Delete a no-op loop. by Reid Spencer · 20 years ago
  96. c3c92d8 Expand the scope to include global values because they are now constants too. by Reid Spencer · 20 years ago
  97. 3188cab Avoid an unnecessary isa<Constant>. by Reid Spencer · 20 years ago
  98. da6cdfa Fix infinite loop gccld'ing povray by Chris Lattner · 20 years ago
  99. 67910e1 CPR Fixes by Chris Lattner · 20 years ago
  100. 7330248 CPR fixes by Chris Lattner · 20 years ago