1. f41db21 Fix f80 UNDEF. by Dale Johannesen · 17 years ago
  2. 0869f4a X86 -> X86-32 in appropriate places. by Duncan Sands · 17 years ago
  3. c90d68b Various cleanups. Especially, EH is turned on by default! by Duncan Sands · 17 years ago
  4. 9412489 ok ok we get it. CBE and vectors don't like each other yet. by Chris Lattner · 17 years ago
  5. b323ca8 be less redundantly redundant. by Chris Lattner · 17 years ago
  6. 0d91645 Test the C front-end, not the C++ front-end. by Duncan Sands · 17 years ago
  7. 6b588d9 make old crappy browsers produce less crappy output :) by Chris Lattner · 17 years ago
  8. 8d5562b Typos: POPQ -> POPFQ, POPD -> POPFD. by Evan Cheng · 17 years ago
  9. 1efa169 move PR1160 here. by Chris Lattner · 17 years ago
  10. 9efce63 Allow copyRegToReg to emit cross register classes copies. by Evan Cheng · 17 years ago
  11. 61001b8 move PR1264 here. by Chris Lattner · 17 years ago
  12. 72e4633 noone uses etags. Connected to PR1601 by Chris Lattner · 17 years ago
  13. 11d120f we support attribute(noinline) now :) by Chris Lattner · 17 years ago
  14. 725a0d8 update bugs list by Chris Lattner · 17 years ago
  15. d429871 now with more prose. by Chris Lattner · 17 years ago
  16. ca9976d Test that local variables are aligned as the user requested. by Duncan Sands · 17 years ago
  17. 2f245ba Add pushf{d|q}, popf{d|q} to push and pop EFLAGS register. by Evan Cheng · 17 years ago
  18. 1a35edb translateX86CC updates the last two operands. by Evan Cheng · 17 years ago
  19. 29be848 Correctly restore stack pointer after realignment in main() on Cygwin/Mingw32 by Anton Korobeynikov · 17 years ago
  20. 9f71125 Fix small bug in operator== for iterators by Daniel Berlin · 17 years ago
  21. 350add8 Remove no-longer-used variable. by Dale Johannesen · 17 years ago
  22. 0edc47a Make APFloat->int conversions deterministic even in by Dale Johannesen · 17 years ago
  23. 7086ce7 explain why not vector<bool> by Chris Lattner · 17 years ago
  24. fdd0837 Missing load / store folding entries. by Evan Cheng · 17 years ago
  25. 2fe1259 Partly revert invalid r41774 by Anton Korobeynikov · 17 years ago
  26. ee143ad Grammar fix. by Bill Wendling · 17 years ago
  27. 677ccc6 More explicit keywords. by Dan Gohman · 17 years ago
  28. 2a3876d Add a newline to the end of this file. by Duncan Sands · 17 years ago
  29. b94fc1b Fix a typo in a comment. by Dan Gohman · 17 years ago
  30. 4e4d2d7 New style x87 cmp instructions. by Evan Cheng · 17 years ago
  31. a6dff2f Handle multiple induction variables. This fixes PR714. by Devang Patel · 17 years ago
  32. a37c9f7 When both x/y and x%y are needed (x and y both scalar integer), compute by Dan Gohman · 17 years ago
  33. 798b4af Do not reserve DOM check for GetElementPtrInst. by Devang Patel · 17 years ago
  34. 2246bb6 Some tests for APFloat conversions. by Dale Johannesen · 17 years ago
  35. 6ee23ad Forgot to check in the changes. Fix test case so it doesn't break with any scheduling changes. by Evan Cheng · 17 years ago
  36. 1c01350 by Devang Patel · 17 years ago
  37. 453a844 Add transformation to update loop interation space. Now, by Devang Patel · 17 years ago
  38. 902ff94 Fix long double<->shorter FP type conversions of zero, infinity, and NaNs. by Dale Johannesen · 17 years ago
  39. c3b0b5c Move the setOperationAction(ISD::DEBUG_LOC, MVT::Other, Expand) and by Dan Gohman · 17 years ago
  40. d98164e Fix spelling. by Duncan Sands · 17 years ago
  41. db1b3e0 Add missing end-of-file newlines. by Duncan Sands · 17 years ago
  42. 50fd000 Fill in the sections about my contributions. by Owen Anderson · 17 years ago
  43. 0488db9 Added support for new condition code modeling scheme (i.e. physical register dependency). These are a bunch of instructions that are duplicated so the x86 backend can support both the old and new schemes at the same time. They will be deleted after by Evan Cheng · 17 years ago
  44. a6fb1b6 Added major new capabilities to scheduler (only BURR for now) to support physical register dependency. The BURR scheduler can now backtrace and duplicate instructions in order to avoid "expensive / impossible to copy" values (e.g. status flag EFLAGS for x86) from being clobbered. by Evan Cheng · 17 years ago
  45. a360268 New temporary option -new-cc-modeling-scheme to test the new cc modeling scheme. by Evan Cheng · 17 years ago
  46. d23aa5a Rename keyword "modify" -> "implicit". by Evan Cheng · 17 years ago
  47. 48d1e45 When mixing SSE and x87 codegen, it's possible to by Dale Johannesen · 17 years ago
  48. cab5f5d Don't execute dump unless NDEBUG isn't defined. by Bill Wendling · 17 years ago
  49. e6f0479 Comment fixups by Daniel Berlin · 17 years ago
  50. a5a403d Add support on x86 for having Legalize lower ISD::LOCATION to ISD::DEBUG_LOC by Dan Gohman · 17 years ago
  51. 81a148b Don't emit .debug_line header data if there aren't any lines to put in it, by Dan Gohman · 17 years ago
  52. 44de926 Move the Asm->EOL() call for EmitDebugARanges outside the #ifdef for by Dan Gohman · 17 years ago
  53. 8549636 Add support for emitting .file directives to set up file numbers for by Dan Gohman · 17 years ago
  54. 7225273 Merge hasDotLoc and hasDotFile into hasDotLocAndDotFile since .loc and .file by Dan Gohman · 17 years ago
  55. 6b92942 float->int conversion rounds toward 0. Duh. Fixes PR1698. by Dale Johannesen · 17 years ago
  56. 189f80d Add a routine for emitting .file directives, for setting up by Dan Gohman · 17 years ago
  57. b42abeb Added "LoadEffective" pattern to handle stack locations. Fixed some comments by Bruno Cardoso Lopes · 17 years ago
  58. 128459b Do not promote null values because it may be unsafe to do so. by Devang Patel · 17 years ago
  59. d81ccc2 Implement offline variable substitution in order to reduce memory by Daniel Berlin · 17 years ago
  60. 6b5766e Fix the syntax for the .loc directive in preparation for using it. by Dan Gohman · 17 years ago
  61. 1939ace Add section on bit containers. by Daniel Berlin · 17 years ago
  62. 06611df XFAIL for llvm-gcc4.0 by Tanya Lattner · 17 years ago
  63. 5e6e93e The code that used the StartLabelId label was removed, so remove the by Dan Gohman · 17 years ago
  64. e40c7b0 Use the correct result value type instead of using getValueType(0) by Dan Gohman · 17 years ago
  65. ea81d09 Fix a typo in a comment. by Dan Gohman · 17 years ago
  66. 746767b explicit keywords. by Dan Gohman · 17 years ago
  67. 11a7dbf Remove an unnecessary static_cast. by Dan Gohman · 17 years ago
  68. 9b4baf1 claim that "st" is from the 80-bit register file. This causes x87-using inline by Chris Lattner · 17 years ago
  69. 9251f13 When emitting .set directives, make sure the EH and Debug labels can't conflict. by Chris Lattner · 17 years ago
  70. 1dcca6b Fix typo. by Owen Anderson · 17 years ago
  71. 68099d5 Merge significant portions of the DomTree and PostDomTree implementations. by Owen Anderson · 17 years ago
  72. 79653fc Just use APFloat for const / const. Fixes -1. / -0. by Dale Johannesen · 17 years ago
  73. 04fa569 Factor the calculation details for PostDomTree out of PostDominators.cpp and by Owen Anderson · 17 years ago
  74. eefb310 Move DFSPass back down into DominatorTree. I need to figure out what the difference is between it by Owen Anderson · 17 years ago
  75. 96d514d Fix header. by Owen Anderson · 17 years ago
  76. d20c824 Factor the dominator tree calculation details out into DominatorCalculation.h. This by Owen Anderson · 17 years ago
  77. c557a9c Implementation of +sse -sse2 has changed; add by Dale Johannesen · 17 years ago
  78. f1fc3a8 Fix PR 1681. When X86 target uses +sse -sse2, by Dale Johannesen · 17 years ago
  79. ab4456f Fix srcdir <> objdir builds with ocaml 2.10. Downrev versions don't care whether by Gordon Henriksen · 17 years ago
  80. e5024b7 fix syntax by Chris Lattner · 17 years ago
  81. 92f0dca Regenerate. by Gordon Henriksen · 17 years ago
  82. 28622d6 Fix for srcdir <> objdir builds. by Gordon Henriksen · 17 years ago
  83. 96b207c Fix PR1679, by printing GEP indices as signed values instead of unsigned. by Chris Lattner · 17 years ago
  84. d40bc4a Validation fixes by Bill Wendling · 17 years ago
  85. 7907005 Validation fixes by Bill Wendling · 17 years ago
  86. 068da27 Validation fixes by Bill Wendling · 17 years ago
  87. 96802d1 Validation fixes by Bill Wendling · 17 years ago
  88. 83f4900 Validation fixes by Bill Wendling · 17 years ago
  89. e9a6c35 Validation fixes by Bill Wendling · 17 years ago
  90. 03c993a Validation fixes by Bill Wendling · 17 years ago
  91. 03295ca Validation fixes by Bill Wendling · 17 years ago
  92. eb6aace Validation fixes by Bill Wendling · 17 years ago
  93. da51c4c Formatting changes. by Bill Wendling · 17 years ago
  94. b690a00 initialize isstore/isload fields in ctor, fixing PR1695 by Chris Lattner · 17 years ago
  95. 8851904 fix bugs in the manual by Chris Lattner · 17 years ago
  96. c8db43d Handle storage complications of float->float conversions. by Neil Booth · 17 years ago
  97. d3989a8 Correct names. by Tanya Lattner · 17 years ago
  98. 91d0b88 Fix typo. by Tanya Lattner · 17 years ago
  99. e1a8da0 One last fix to get name correct. by Tanya Lattner · 17 years ago
  100. 0f5dbfb Fix silly typo. by Tanya Lattner · 17 years ago