1. d41b30d Unbreak VC++ build. by Jeff Cohen · 18 years ago
  2. bcf8124 Fix a bug in the last patch and convert to && instead of & for logical expr. by Reid Spencer · 18 years ago
  3. 7c475c5 Implement the -enabled-cbe-printf-a feature. by Reid Spencer · 18 years ago
  4. 8b2989a Remove commented line from earlier debugging. by Nick Lewycky · 18 years ago
  5. 33dbedc Added pre-indexed store support. by Evan Cheng · 18 years ago
  6. 9109fb1 Added getIndexedStore. by Evan Cheng · 18 years ago
  7. 5cd496e Live local variables are being dropped because the begin or end labels marking by Jim Laskey · 18 years ago
  8. 95f6ede Changes to use operand constraints to process two-address instructions. by Evan Cheng · 18 years ago
  9. 6fc4007 encode BLR predicate info for the JIT by Chris Lattner · 18 years ago
  10. af53a87 Go through all kinds of trouble to mark 'blr' as having a predicate operand by Chris Lattner · 18 years ago
  11. e077ef6 Fixed some spiller bugs exposed by the recent two-address code changes. Now by Evan Cheng · 18 years ago
  12. 0638b26 Describe PPC predicates, which are a pair of CR# and condition. by Chris Lattner · 18 years ago
  13. 60a09a5 initial steps to getting the predicate on PPC::BLR right. by Chris Lattner · 18 years ago
  14. e69c436 remove dead var by Chris Lattner · 18 years ago
  15. 3751844 remove dead/redundant vars by Chris Lattner · 18 years ago
  16. 56fe527 remove redundant/dead vars by Chris Lattner · 18 years ago
  17. 7049540 remove dead vars by Chris Lattner · 18 years ago
  18. 8ed4c47 The wrong parameter was being tested to deturmine i32 vs i64 by Andrew Lenharth · 18 years ago
  19. d7c628d add a note by Chris Lattner · 18 years ago
  20. 7765d71 Fix BasicAA/2006-11-03-BasicAAVectorCrash.ll by handling out-of-range by Chris Lattner · 18 years ago
  21. 033b107 this will work better by Chris Lattner · 18 years ago
  22. 0709718 Fix the build on xcode < 2.4 by Chris Lattner · 18 years ago
  23. 118c094 Split the External and Intrinsic handling into seperate functions. This by Andrew Lenharth · 18 years ago
  24. e6e97e6 Fix comments. by Evan Cheng · 18 years ago
  25. 1a854be Rename by Evan Cheng · 18 years ago
  26. b8f4e0a Remove dead variable. Fix 80 column violations. by Reid Spencer · 18 years ago
  27. f05696c revert previous patch by Rafael Espindola · 18 years ago
  28. 7fc033a Added DAG combiner transformation to generate pre-indexed loads. by Evan Cheng · 18 years ago
  29. c5fc57d Added isPredecessor. by Evan Cheng · 18 years ago
  30. bf105c8 Proper check for two-addressness. by Evan Cheng · 18 years ago
  31. bdd371c Dead code. by Evan Cheng · 18 years ago
  32. e03f09c Remove some dead code. by Reid Spencer · 18 years ago
  33. 115bfcb add createCFGSimplificationPass to ARMTargetMachine::addInstSelector by Rafael Espindola · 18 years ago
  34. 39c6d3a assert.h -> cassert by Rafael Espindola · 18 years ago
  35. ffa0a9b remove dead code by Chris Lattner · 18 years ago
  36. 02cb49e silence warning by Chris Lattner · 18 years ago
  37. 6f51a77 silence warning by Chris Lattner · 18 years ago
  38. 1331dec silence warnings. by Chris Lattner · 18 years ago
  39. 1509254 silence warning by Chris Lattner · 18 years ago
  40. 9c5d4de silence warnings by Chris Lattner · 18 years ago
  41. 3a717d5 Make CBackend -pedantic clean. by Reid Spencer · 18 years ago
  42. 9782131 Make CodeGen libs -pedantic clean. by Reid Spencer · 18 years ago
  43. 2b8ba51 #include <assert.h> by Rafael Espindola · 18 years ago
  44. 4d5c001 fix a bug reid noticed by Chris Lattner · 18 years ago
  45. f673388 by Jim Laskey · 18 years ago
  46. 9bd6d65 Remove unused variable. by Reid Spencer · 18 years ago
  47. 3ed469c For PR786: by Reid Spencer · 18 years ago
  48. ef42a01 by Jim Laskey · 18 years ago
  49. e931a37 move ARMCondCodeToString to ARMAsmPrinter.cpp by Rafael Espindola · 18 years ago
  50. 1f67a99 Allow FoldingSet clients to pump up the initial hash size. by Jim Laskey · 18 years ago
  51. 4156239 Remove unused variable. by Reid Spencer · 18 years ago
  52. 4ab09d4 Remove unused variables. by Reid Spencer · 18 years ago
  53. 45430ac Remove a function prototype that is no longer needed (REM patch missed it) by Reid Spencer · 18 years ago
  54. 2b86b0e Get rid of unused variable. by Reid Spencer · 18 years ago
  55. d079cdb fix 2006-11-01-vastart.ll by Andrew Lenharth · 18 years ago
  56. 0a783f7 For PR950: Replace the REM instruction with UREM, SREM and FREM. by Reid Spencer · 18 years ago
  57. 331d1bc Implement the getRegForInlineAsmConstraint method for PPC. With recent by Chris Lattner · 18 years ago
  58. 2a82160 Allow the getRegForInlineAsmConstraint method to return a register class with by Chris Lattner · 18 years ago
  59. e6ae14e Rename by Evan Cheng · 18 years ago
  60. 360c2dd 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 · 18 years ago
  61. e0805a2 There can be more than one PHINode at the start of the block. by Devang Patel · 18 years ago
  62. 981b5bd Added getTiedToSrcOperand() to check for two-address'ness. by Evan Cheng · 18 years ago
  63. 1dabb68 Clean up. by Evan Cheng · 18 years ago
  64. 2c0565f Handle PHINode with only one incoming value. by Devang Patel · 18 years ago
  65. 93467e7 CopyFromReg starts a live range so its use should not be considered a floater. by Evan Cheng · 18 years ago
  66. 48d8a70 Make ScalarEvolution actually use a ZeroExtend expression instead of by Reid Spencer · 18 years ago
  67. d4bf3c2 give branch folding a simple heuristic to decide which block to split so that by Chris Lattner · 18 years ago
  68. 25de4e5 Fix GlobalOpt/2006-11-01-ShrinkGlobalPhiCrash.ll and McGill/chomp by Chris Lattner · 18 years ago
  69. 560a8d0 print null values in bss by Rafael Espindola · 18 years ago
  70. 9dca7ad implement zextload bool and truncstore bool by Rafael Espindola · 18 years ago
  71. 41349c1 Add a printSetLabel that takes two id's. by Evan Cheng · 18 years ago
  72. 9c08050 Factor gep instructions through phi nodes. by Chris Lattner · 18 years ago
  73. 76c7314 Turn a phi of many loads into a phi of the address and a single load of the by Chris Lattner · 18 years ago
  74. acf7f2e Fix ldmxcsr JIT encoding. by Evan Cheng · 18 years ago
  75. a90a24c Fix a bug in the previous patch by Chris Lattner · 18 years ago
  76. 7da52b2 Fold things like "phi [add (a,b), add(c,d)]" into two phi's and one add. by Chris Lattner · 18 years ago
  77. 6cc31ae Print jumptable index. by Evan Cheng · 18 years ago
  78. fa8a51e Remove unnecessary sign conversions made possible by last patch. by Reid Spencer · 18 years ago
  79. fe85526 Fix a bug in the interpreter where divides of unmatched signed operands by Reid Spencer · 18 years ago
  80. 1d08d83 make tail merging more aggressive. If two blocks share a common tail, but the by Chris Lattner · 18 years ago
  81. d8ccff0 enable branch folding with an option by Chris Lattner · 18 years ago
  82. 2f15c06 Add constraints to Instruction class. by Evan Cheng · 18 years ago
  83. 6bbf6b0 more shotenning by Andrew Lenharth · 18 years ago
  84. 0ccb500 Compile CodeGen/PowerPC/fp-branch.ll to: by Chris Lattner · 18 years ago
  85. df19f27 look through isunordered to inline it into branch blocks. by Chris Lattner · 18 years ago
  86. 63af319 Nuke dead code. by Evan Cheng · 18 years ago
  87. 22aaf1d allow the address of a global to be used with the "i" constraint when in by Chris Lattner · 18 years ago
  88. 0d92499 implement the 'c' inline asm modifier character by Chris Lattner · 18 years ago
  89. efa46ce handle global address constant sdnodes by Chris Lattner · 18 years ago
  90. 956a431 Let us play simplify the td file (and fix a few missed sub and mul patterns). by Andrew Lenharth · 18 years ago
  91. 1a60aa7 handle "st" as "st(0)" by Chris Lattner · 18 years ago
  92. 53069fb TargetLowering::isOperandValidForConstraint by Chris Lattner · 18 years ago
  93. dba1aee Change the prototype for TargetLowering::isOperandValidForConstraint by Chris Lattner · 18 years ago
  94. cbea67f generalize the fix for PR977 to also fix by Chris Lattner · 18 years ago
  95. 1753fae Fix PR977 and Transforms/LCSSA/2006-10-31-UnreachableBlock.ll by Chris Lattner · 18 years ago
  96. f81173f Add all that branch mangling niftiness by Andrew Lenharth · 18 years ago
  97. b191e0a add support for calling functions when the caller has variable sized objects by Rafael Espindola · 18 years ago
  98. ab4022f 1. Clean up code due to changes in SwitchTo*Section(2) by Anton Korobeynikov · 18 years ago
  99. d03f158 Turn an assert into an error message. This is commonly triggered when by Chris Lattner · 18 years ago
  100. b52cf1f Unbreaking static ctors patch. by Anton Korobeynikov · 18 years ago