1. 9a507cd Revert r66920. It was causing failures in the self-hosting buildbot (in release by Bill Wendling · 17 years ago
  2. ea9f4df add support for a few simple escape characters in tblgen strings. by Chris Lattner · 17 years ago
  3. 55a07b2 Add ENABLE_COVERAGE, for building a +Coverage (gcov) configuration. by Daniel Dunbar · 17 years ago
  4. 14ea1ec Fix FastISel's assumption that i1 values are always zero-extended by Dan Gohman · 17 years ago
  5. 7150371 remove a test that depends on -debug. by Chris Lattner · 17 years ago
  6. faad773 remove a testcase that depends on -debug existing. by Chris Lattner · 17 years ago
  7. 520ebe6 add 8 and 16 bit TLS moves. add a fixme note on how to remove code duplication. by Rafael Espindola · 17 years ago
  8. d1c135c One more place where debug info affects codegen. by Dale Johannesen · 17 years ago
  9. 17548b1 Test case for rev. 66925 by Devang Patel · 17 years ago
  10. 9b922aa Improve sext and zext of TLS variables. by Rafael Espindola · 17 years ago
  11. b14cda3 Second installment of "BasicBlock operands to the back" changes. by Gabor Greif · 17 years ago
  12. 6dc3a8f remove a buggy test, it is not ok to use -debug in RUN line. by Chris Lattner · 17 years ago
  13. 44ceb8a generalize this code so that fast isel handles integer truncates to i1, which by Chris Lattner · 17 years ago
  14. a14b1de add a new TGError class and use it to propagate location info with by Chris Lattner · 17 years ago
  15. 7b9ffe4 give each Record a location. by Chris Lattner · 17 years ago
  16. 1c8ae59 make "locations" a class instead of a typedef. by Chris Lattner · 17 years ago
  17. d9c9bf7 Update these for the 2.5 release. by Duncan Sands · 17 years ago
  18. 105be5a These instructions have special lowering that may lower them to SSE by Bill Wendling · 17 years ago
  19. 1d876b7 Unbreak build, bring in std::string for GCC 4.3 by Argyrios Kyrtzidis · 17 years ago
  20. 1606e8e Fix some significant problems with constant pools that resulted in unnecessary paddings between constant pool entries, larger than necessary alignments (e.g. 8 byte alignment for .literal4 sections), and potentially other issues. by Evan Cheng · 17 years ago
  21. 79a5cef Unbreak build. by Evan Cheng · 17 years ago
  22. aa739d2 split buffer management and diagnostic printing out of the tblgen by Chris Lattner · 17 years ago
  23. 49c8aa0 Convert VirtRegMap to a MachineFunctionPass. by Owen Anderson · 17 years ago
  24. cee56e7 generalize the previous code to use the full generality of LEA by Chris Lattner · 17 years ago
  25. 97a29a5 optimize the case of cond ? 42 : 41 and friends. This compiles the example to: by Chris Lattner · 17 years ago
  26. 0582ae9 Oops...I committed too much. by Bill Wendling · 17 years ago
  27. c7a09ab Temporarily XFAIL this test. by Bill Wendling · 17 years ago
  28. 77502c9 Enhance address-mode folding of ISD::ADD to handle cases where the by Dan Gohman · 17 years ago
  29. 990afed Fix one more place where debug info affected codegen (speculative execution). by Dale Johannesen · 17 years ago
  30. ee167a7 just initialize the first element, we don't need to set the rest to zeros. by Chris Lattner · 17 years ago
  31. 807926a Eliminate a 9640 byte static mutable initialized data item by moving it by Chris Lattner · 17 years ago
  32. e213f3f static functions don't need an anonymous namespace. by Chris Lattner · 17 years ago
  33. b398fca Fix a typo in a comment. by Dan Gohman · 17 years ago
  34. 8483e54 Previous debug info fix to this code wasn't quite by Dale Johannesen · 17 years ago
  35. 7e07c00 cosmetic change, in preparation of future change by Gabor Greif · 17 years ago
  36. 379e15e Add this test back. by Evan Cheng · 17 years ago
  37. bcf8ea9 raw_ostream: unbuffered streams weren't being immediately flushed on by Daniel Dunbar · 17 years ago
  38. 58256f8 Revert commit 66140 since it caused several failures by Duncan Sands · 17 years ago
  39. 87af5f0 Darwin 10.4.x: "-rpath" is unnecessary when linking shared libraries. by Scott Michel · 17 years ago
  40. c81f544 There already was a class to force deterministic by Dale Johannesen · 17 years ago
  41. 85cdfad Fix an inconsistent use of LLVMGCCDIR. In all other cases, this directory by Bob Wilson · 17 years ago
  42. ae5a20a Rearrange operands of the BranchInst, to be able to by Gabor Greif · 17 years ago
  43. a065200 Re-apply 66024 with fixes: 1. Fixed indirect call to immediate address assembly. 2. Fixed JIT encoding by making the address pc-relative. by Evan Cheng · 17 years ago
  44. 80b8a62 Another missing check for debug intrinsics. by Dale Johannesen · 17 years ago
  45. 40a07a4 Fully initialize all ivars, fixing PR3790, patch by Edwin Torok! by Chris Lattner · 17 years ago
  46. 826af20 Typo. by Evan Cheng · 17 years ago
  47. 0b220d0 Fix test after Chris' select changes. by Evan Cheng · 17 years ago
  48. 1aeac02 Adjust this test for recent sroa improvements. by Duncan Sands · 17 years ago
  49. 6a65f42 add some text to explain sentinels by Gabor Greif · 17 years ago
  50. 0cbcabe minor tweaks by Gabor Greif · 17 years ago
  51. 0ff4e21 Reorganize some #include's. by Owen Anderson · 17 years ago
  52. d1980a5 Move 3 "(add (select cc, 0, c), x) -> (select cc, x, (add, x, c))" by Chris Lattner · 17 years ago
  53. 2b9f434 improve comment. by Chris Lattner · 17 years ago
  54. 8042255 Enable Chris' value propagation change. It make available known sign, zero, one bits information for values that are live out of basic blocks. The goal is to eliminate unnecessary sext, zext, truncate of values that are live-in to blocks. This does not handle PHI nodes yet. by Evan Cheng · 17 years ago
  55. 536e667 On x86, if the only use of a i64 load is a i64 store, generate a pair of double load and store instead. by Evan Cheng · 17 years ago
  56. 1285295 add no-unwind, remove duplicate run line. by Chris Lattner · 17 years ago
  57. 7a15c8f add nounwinds by Chris Lattner · 17 years ago
  58. a083335 Revert r66765 and r66766. These were causing build failures on Darwin. by Bill Wendling · 17 years ago
  59. fb13881 Regenerate. by Nick Lewycky · 17 years ago
  60. 8bc0803 Set ARCH to x86 on mixed 32/64-bit Linux systems. by Nick Lewycky · 17 years ago
  61. 054401b Forgot to check-in this as part of 7761. by Sanjiv Gupta · 17 years ago
  62. d076570 Banksel optimization is now based on the section names of symbols, since the symbols in one section will always be put into one bank. by Sanjiv Gupta · 17 years ago
  63. 1379cad Allow for switch values bigger than 64 bits. by Dale Johannesen · 17 years ago
  64. e889d83 Add StringMap::lookup. by Daniel Dunbar · 17 years ago
  65. a9537cf Fix some nondeterministic behavior when forwarding by Dale Johannesen · 17 years ago
  66. fd82995 Also pass -gcc-tool-args when building a shared object. by Evan Cheng · 17 years ago
  67. 3014376 Revert r66024. The JIT encoding for CALLpcrel32 is wrong -- see PR3773, and the by Dan Gohman · 17 years ago
  68. c40d4f8 update by Gabor Greif · 17 years ago
  69. b316f90 optimize i8 and i16 tls values. by Rafael Espindola · 17 years ago
  70. 1ed5b71 Reorganization: Move the Spiller out of VirtRegMap.cpp into its own files. No (intended) functionality change. by Owen Anderson · 17 years ago
  71. f9abd7e Add a -no-implicit-float flag. This acts like -soft-float, but may generate by Bill Wendling · 17 years ago
  72. a891518 Skip interleaved debug info when fast-forwarding through by Dale Johannesen · 17 years ago
  73. a597a97 My last coalescer fix introduced a subtler one. It's aborting a commuting optimization too late and left the live intervals to be out of sync with instructions. This fixes 8b10b. by Evan Cheng · 17 years ago
  74. 497cb6f Debug intriniscs should be skipped when looking by Dale Johannesen · 17 years ago
  75. 773f57e Another bug :( by Anton Korobeynikov · 17 years ago
  76. 1d98870 Make Print callable from a pass's print method: add const qualifier. No by Torok Edwin · 17 years ago
  77. 26d6e21 I should definitely read make docs someday :( by Anton Korobeynikov · 17 years ago
  78. c540b1f do not pretend llvm/.../*.h being system headers by Gabor Greif · 17 years ago
  79. 317bc24 Unbreak the build. Dunno, why it did not fail on mingw :( by Anton Korobeynikov · 17 years ago
  80. 4dc2b39 It makes no sense to have a ODR version of common linkage, so remove it. by Duncan Sands · 17 years ago
  81. 94244f3 fix validator errors by Gabor Greif · 17 years ago
  82. d6c1ed0 Fix exaples using IRBuilder. Thanks, Quadrescence and Glip7 from IRC! by Gabor Greif · 17 years ago
  83. ad9d21a Disable plugins / shared stuff generation on windows targets. by Anton Korobeynikov · 17 years ago
  84. 6b3ef69 For yonah, fix a vector shuffle case for v16i8 where we didn't properly clear some bits. by Mon P Wang · 17 years ago
  85. d7a50cf implement support for C-style string literal concatenation in td files. by Chris Lattner · 17 years ago
  86. eda2ec3 fix PR3785, a valgrind error on test/CodeGen/ARM/pr3502.ll by Chris Lattner · 17 years ago
  87. 9e8bd0b Add parentheses to pacify gcc-4.3. by Duncan Sands · 17 years ago
  88. 5f4ee1f Remove the one-definition-rule version of extern_weak by Duncan Sands · 17 years ago
  89. 841c6a4 Allow cross-process JIT to handle MachineRelocations of the ExternalSymbol by Nate Begeman · 17 years ago
  90. 37b9a19 Fixed a v8i16 shuffle case that should generate a pshufb instead of a pshuflw/hw. by Mon P Wang · 17 years ago
  91. 47b4ce8 formatting change, reduce indentation. No functionality change. by Chris Lattner · 17 years ago
  92. 600fec3 reapply my previous patch (r66358) with a tweak to set the by Chris Lattner · 17 years ago
  93. 1362f97 Put the assignment back at the top of this method. by Bill Wendling · 17 years ago
  94. a2e6435 Two coalescer fixes in one. by Evan Cheng · 17 years ago
  95. dd44632 Make ivars private. Other cleanup. No functionality change. by Bill Wendling · 17 years ago
  96. 535f390 Changed Allocate to use size_t instead of unsigned. by Mon P Wang · 17 years ago
  97. 7f3030c Add an explicit keyword. by Dan Gohman · 17 years ago
  98. cabb383 Fixed rounding up EltSize by Mon P Wang · 17 years ago
  99. 20cb462 Give Op<N>() AppleScript-like semantics, i.e. for negative N it indexes relative to op_end. by Gabor Greif · 17 years ago
  100. 68edf5f Just make the Dwarf timer group static inside of the getter function. No need to alloc/dealloc. by Bill Wendling · 17 years ago