1. 60844d4 rename option by Chris Lattner · 19 years ago
  2. 4f501bf Document -mcpu -mattr -triple by Chris Lattner · 19 years ago
  3. 3015e60 provide an option to override the target triple in a module from the commandline. by Chris Lattner · 19 years ago
  4. f33b866 provide an option to override the target triple in a module from the command by Chris Lattner · 19 years ago
  5. a637c32 Update the darwin handling of linkonce & weak functions and GV stubs. This by Chris Lattner · 19 years ago
  6. 272f998 Don't globalize internal functions by Chris Lattner · 19 years ago
  7. cb17bac * Promote all 1 bit entities to 8 bit. by Evan Cheng · 19 years ago
  8. d0f6d18 Don't create SEXTLOAD/ZEXTLOAD instructions that the target doesn't support by Chris Lattner · 19 years ago
  9. 502c5bb Added frameindex, constpool, globaladdr, and externalsym as root nodes of by Evan Cheng · 19 years ago
  10. 543b458 Added constpool, frameindex, and externalsym nodes. by Evan Cheng · 19 years ago
  11. def941b Handling zero extension of 1 bit value. by Evan Cheng · 19 years ago
  12. f6036a3 Use MOV8rm to load 1 bit value. by Evan Cheng · 19 years ago
  13. b5f8e62 Remove a now unused statistic. by Nate Begeman · 19 years ago
  14. a07da92 Use the new predicate support that Evan Cheng added to remove some code by Nate Begeman · 19 years ago
  15. 1dae25e Add a case for float just to make sure the patterns for both precisions by Nate Begeman · 19 years ago
  16. 7416409 Fixed a typo: line 2323: MOVSX16rm8 -> MOVZX16rm8. This was the cause fo 12/14/2005 hbd failure. by Evan Cheng · 19 years ago
  17. 8c75ef9 Added predicate !NoExcessFPPrecision to FMADD, FMADDS, FMSUB, and FMSUBS. by Evan Cheng · 19 years ago
  18. 58e84a6 Added support to specify predicates. by Evan Cheng · 19 years ago
  19. 3bd5fac Fix printing of the instructions. by Chris Lattner · 19 years ago
  20. 2b52426 Fixed extload type profile. The 4th operand is a ValueType node with type by Evan Cheng · 19 years ago
  21. d477184 When folding loads into ops, immediately replace uses of the op with the by Chris Lattner · 19 years ago
  22. e4e4913 new testcase, each function should have one extension instr in it by Chris Lattner · 19 years ago
  23. f574494 Remove -start-group and -end-group no-op options, accidentally committed by Reid Spencer · 19 years ago
  24. ad25d4e Fix the (zext (zextload)) case to trigger, similarly for sign extends. by Chris Lattner · 19 years ago
  25. 6860f6a Fix Transforms/ScalarRepl/2005-12-14-UnionPromoteCrash.ll, a crash on undefined by Chris Lattner · 19 years ago
  26. fa1fb11 new (undefined) testcase, distilled from 126.gcc that scalarrepl crashes on by Chris Lattner · 19 years ago
  27. 00cb95c Fix a miscompilation in crafty due to a recent patch by Chris Lattner · 19 years ago
  28. 7a7e837 Added sext and zext patterns. by Evan Cheng · 19 years ago
  29. 01f318b Skip over srcvalue nodes when generating ISEL code. by Evan Cheng · 19 years ago
  30. 3d2331d Added sextld + zextld DAG nodes. by Evan Cheng · 19 years ago
  31. 110dec2 Fold (zext (load x) to (zextload x). by Evan Cheng · 19 years ago
  32. 3fb6877 Add support for fmul node of type v4f32. by Nate Begeman · 19 years ago
  33. 993aeb2 Prepare support for AltiVec multiply, divide, and sqrt. by Nate Begeman · 19 years ago
  34. 328ead9 Adjust the constructor to the Linker class to take an argument that names by Reid Spencer · 19 years ago
  35. 2f18907 Improve ResolveFunctions to: by Reid Spencer · 19 years ago
  36. 86cb643 Don't lump the filename and working dir together by Chris Lattner · 19 years ago
  37. 85dd889 Add load + store folding srl and sra patterns. by Evan Cheng · 19 years ago
  38. d1239b7 Use the shared asmprinter code for printing special llvm globals by Chris Lattner · 19 years ago
  39. ed13893 Add a couple more fields, move ctor init list to .cpp file, add support by Chris Lattner · 19 years ago
  40. a046e0d Add ELF and darwin support for static ctors and dtors by Chris Lattner · 19 years ago
  41. deea416 reindent a loop, unswitch a loop. No functionality changes by Chris Lattner · 19 years ago
  42. d7d746f Lowering constant pool entries on ppc exposed a bug in the recently added by Nate Begeman · 19 years ago
  43. c937ffa Beautify a few patterns. by Evan Cheng · 19 years ago
  44. 763b029 Some shl patterns which do load + store folding. by Evan Cheng · 19 years ago
  45. 605c415 A few helper fragments for loads. e.g. (i8 (load addr:$src)) -> (loadi8 addr:$src). Only to improve readibility. by Evan Cheng · 19 years ago
  46. 0ef3a77 Add and, or, and xor patterns which fold load + stores. by Evan Cheng · 19 years ago
  47. 6cad276 Add inc + dec patterns which fold load + stores. by Evan Cheng · 19 years ago
  48. 5ce4edb Add neg and not patterns which fold load + stores. by Evan Cheng · 19 years ago
  49. 5a38e02 Missed a couple redundant explicit type casts. by Evan Cheng · 19 years ago
  50. 9b6b642 Fix some bad choice of names: i16SExt8 ->i16immSExt8, etc. by Evan Cheng · 19 years ago
  51. b355854 * Split immSExt8 to i16SExt8 and i32SExt8 for i16 and i32 immediate operands. by Evan Cheng · 19 years ago
  52. f281e02 Add some integer mul patterns. by Evan Cheng · 19 years ago
  53. 0e65b27 Bug fix: CodeGenMap[N] = ... -> CodeGenMap[N.getValue(0)] = ... by Evan Cheng · 19 years ago
  54. 481c8e0 At top of generated isel SelectCode() is this: by Evan Cheng · 19 years ago
  55. ac22c83 Accept and ignore prefetches for now by Chris Lattner · 19 years ago
  56. 58f7963 Fix CodeGen/Generic/2005-12-12-ExpandSextInreg.ll by Chris Lattner · 19 years ago
  57. a92dabb Testcase for a problem that reid ran into by Chris Lattner · 19 years ago
  58. d160d48 Add some sub patterns. by Evan Cheng · 19 years ago
  59. e528053 When SelectLEAAddr() fails, it shouldn't cause the side effect of having the by Evan Cheng · 19 years ago
  60. cbd6ed4 For ISD::RET, if # of operands >= 2, try selection the real data dep. operand by Evan Cheng · 19 years ago
  61. 110f224 fix FP selects by Andrew Lenharth · 19 years ago
  62. a763969 remove some never-completed and now-obsolete code. by Chris Lattner · 19 years ago
  63. ee93f9d Add a few more add / store patterns. e.g. ADD32mi8. by Evan Cheng · 19 years ago
  64. 8621789 Bug fix: finding the correct incoming chain for pattern with nested src operand. And a minor change to make output code slightly more readible. by Evan Cheng · 19 years ago
  65. 361f45a restore a more restricted select by Andrew Lenharth · 19 years ago
  66. a188894 Implement a little hack for parity with GCC on crafty. This speeds up by Chris Lattner · 19 years ago
  67. fa8f80a new testcase: sra should be able to eliminate all of these alloca's, despite by Chris Lattner · 19 years ago
  68. 0831310 Send an indicator to llvm-testresults if the build failed by Chris Lattner · 19 years ago
  69. d2c339c Fix typo :( by Chris Lattner · 19 years ago
  70. 3802c25 Minor tweak to get isel opt by Chris Lattner · 19 years ago
  71. 3aed79e add selectcc by Chris Lattner · 19 years ago
  72. d717b19 Remove type casts that are no longer needed by Chris Lattner · 19 years ago
  73. 8438454 Realize the constant pool & global addrs must always be ptr type by Chris Lattner · 19 years ago
  74. e54645a Fix the JIT failures from last night. by Chris Lattner · 19 years ago
  75. e41419f FP select improvements (and likely breakage), oh and crazy people might want to *return* floating point values. Don't see why myself by Andrew Lenharth · 19 years ago
  76. 28a6b02 Add support for TargetConstantPool nodes to the dag isel emitter, and use by Nate Begeman · 19 years ago
  77. b612ff9 Use SDTCisPtrTy type property for store address. by Evan Cheng · 19 years ago
  78. ba7fa0b Stop emitting a redudant type check for complex pattern node. by Evan Cheng · 19 years ago
  79. b51a059 * Added X86 store patterns. * Added X86 dec patterns. by Evan Cheng · 19 years ago
  80. 7038daf Added new getNode and getTargetNode variants for X86 stores. by Evan Cheng · 19 years ago
  81. 1129e87 For instructions which produce no result, e.g. store, chain's Resno == 0. by Evan Cheng · 19 years ago
  82. 0976122 Add support patterns to many load and store instructions which will by Nate Begeman · 19 years ago
  83. d8fe3b3 Add SDTCisPtrTy and use it for loads, to indicate that the operand of a load by Chris Lattner · 19 years ago
  84. 5b21be7 Add a new SDTCisPtrTy constraint, which indicates that an operand must have by Chris Lattner · 19 years ago
  85. ab24ed2 Added patterns for ADD8rm, etc. These fold load operands. e.g. addb 4(%esp), %al by Evan Cheng · 19 years ago
  86. b915f31 * Do not allow nodes which produce chain results (e.g. loads) to be folded if by Evan Cheng · 19 years ago
  87. 42a80fe Avoid emitting two tabs when switching to a named section by Chris Lattner · 19 years ago
  88. 646f7af Teach the PPC backend about the ctor and dtor list when not using __main and by Chris Lattner · 19 years ago
  89. 5e3c5b4 Teach legalize how to promote sext_inreg to fix a problem Andrew pointed by Chris Lattner · 19 years ago
  90. cbc09c8 Prevent folding of instructions which produce chains that have more than 1 real use by Evan Cheng · 19 years ago
  91. c45146a * Make sure complex pattern operands are selected first since their select by Evan Cheng · 19 years ago
  92. dd3ccde it helps if your conditionals are not reversed by Andrew Lenharth · 19 years ago
  93. c78b0b7 improve code insertion in two ways: by Chris Lattner · 19 years ago
  94. 62c08dd Add another important case we miss by Chris Lattner · 19 years ago
  95. f20da7e Added support for ComplexPattern. by Evan Cheng · 19 years ago
  96. 670fd8f Added explicit type field to ComplexPattern. by Evan Cheng · 19 years ago
  97. 3aa39f4 * Added an explicit type field to ComplexPattern. by Evan Cheng · 19 years ago
  98. ec693f7 * Added intelligence to X86 LEA addressing mode matching routine so it returns by Evan Cheng · 19 years ago
  99. 0fc7198 Added support for ComplexPattern. These are patterns that require C++ pattern by Evan Cheng · 19 years ago
  100. cc827e6 Fix a crash where ConstantVec nodes were being generated with the wrong by Nate Begeman · 19 years ago