1. 23dbf66 use the optimized debug info apis in sdisel. by Chris Lattner · 15 years ago
  2. 870cfcf add new apis for getting/setting !dbg metadata on by Chris Lattner · 15 years ago
  3. 100f090 Revert Mon Ping's change 99928, since it broke all the llvm-gcc buildbots. by Bob Wilson · 15 years ago
  4. 808bab0 Added support for address spaces and added a isVolatile field to memcpy, memmove, and memset, by Mon P Wang · 15 years ago
  5. 87bd191 Funky indentation. by Evan Cheng · 15 years ago
  6. 8e36a5c Fix PR4975. Avoid referencing empty vector. by Evan Cheng · 15 years ago
  7. 31441b7 Pool allocate SDDbgValue nodes. by Evan Cheng · 15 years ago
  8. bed993d add a statistic for the # times isel has to backtrack. by Chris Lattner · 15 years ago
  9. caa8870 finally remove the immAllOnesV_bc/immAllZerosV_bc patterns by Chris Lattner · 15 years ago
  10. 5d9a1bc comply with the wishes of a fixme. by Chris Lattner · 15 years ago
  11. b0e483e now that (parallel) is gone and a variety of bugs in targets by Chris Lattner · 15 years ago
  12. aa4e339 add an optimized form of OPC_EmitMergeInputChains for the 1, 0 and by Chris Lattner · 15 years ago
  13. 856fb39 don't add nodes to the now-dead nodes list multiple times, this by Chris Lattner · 15 years ago
  14. 19e37cb don't add flag nodes with chain results to the NowDeadNodes by Chris Lattner · 15 years ago
  15. a6f8693 improve -debug-only=isel comments for cases when we don't enter a by Chris Lattner · 15 years ago
  16. e6b293b Forgot the part where we handle the ".llvm.eh.catch.all.value". by Bill Wendling · 15 years ago
  17. de0118c Add few missed libcalls and correct names for others. by Anton Korobeynikov · 15 years ago
  18. d05e805 LiveVariables should clear kill / dead markers first. This allows us to remove a hack in the scheduler. by Evan Cheng · 15 years ago
  19. 7bf198f fix a valgrind error on copy-constructor-synthesis.cpp, which is caused when by Chris Lattner · 15 years ago
  20. 4ec9bd9 Scheduler assumes SDDbgValue nodes are in source order. That's true currently. But add an assertion to verify it. by Evan Cheng · 15 years ago
  21. d5d5a3d Change tblgen to emit FOOISD opcode names as two by Chris Lattner · 15 years ago
  22. 167bda4 Remove a fixme that doesn't make sense any more. by Evan Cheng · 15 years ago
  23. c388ace Make sure SDDbgValue.Invalid is initialized to false by all the constructors. by Evan Cheng · 15 years ago
  24. 47cdf4a Make the NDEBUG assertion stronger and more clear what is happening. by Chris Lattner · 15 years ago
  25. 3d7d07e reapply 99444/99445, which I speculatively reverted in r99453. by Chris Lattner · 15 years ago
  26. bfcb305 Change how dbg_value sdnodes are converted into machine instructions. Their placement should be determined by the relative order of incoming llvm instructions. The scheduler will now use the SDNode ordering information to determine where to insert them. A dbg_value instruction is inserted after the instruction with the last highest source order and before the instruction with the next highest source order. It will optimize the placement by inserting right after the instruction that produces the value if they have consecutive order numbers. by Evan Cheng · 15 years ago
  27. d41952d revert 99444/99445. This doesn't cause the failure of by Chris Lattner · 15 years ago
  28. 4020670 remove dead argument. by Chris Lattner · 15 years ago
  29. c243dea split EmitNode in half to reduce indentation. by Chris Lattner · 15 years ago
  30. 0f920e5 Remove the ConvertActions table and associated code, which is unused. by Dan Gohman · 15 years ago
  31. bc7a902 Revert 99335. getTypeToExpandTo's iterative behavior is actually needed here. by Dan Gohman · 15 years ago
  32. 3490748 Remove getTypeToExpandTo, since it isn't adding much value by Dan Gohman · 15 years ago
  33. c1e5d49 Fixed a widening bug where we were not using the correct size for the load by Mon P Wang · 15 years ago
  34. f0d5007 Get rid of target-specific nodes for fp16 <-> fp32 conversion. by Anton Korobeynikov · 15 years ago
  35. 9553188 Define placement new wrappers for BumpPtrAllocator and by Dan Gohman · 15 years ago
  36. d1ec31d Fix pr6543: svn r88806 changed MachineJumpTableInfo::getJumpTableIndex() to by Bob Wilson · 15 years ago
  37. 1ac2429 Fix comment. by Devang Patel · 15 years ago
  38. c3188ce Debug info intrinsic does not intefer during tail call optimization. by Devang Patel · 15 years ago
  39. 93b122d reapply r98656 unmodified, which exposed the asmprinter not by Chris Lattner · 15 years ago
  40. b85c710 Revert r98656, its breaking all over the place. by Daniel Dunbar · 15 years ago
  41. 8b3b34f improve support for uniontype and ConstantUnion, patch by Tim Northover! by Chris Lattner · 15 years ago
  42. 0019034 Create SDDbgValue for dbg_value intrinsics and remember its connections with DAG nodes. by Devang Patel · 15 years ago
  43. 90a48ad Emit dwarf variable info communicated by code generator through DBG_VALUE machine instructions. by Devang Patel · 15 years ago
  44. ed7d10e SIGN_EXTEND from the same type as the dest is valid. by Chris Lattner · 15 years ago
  45. 7fb5c2d sink the call to VT.getSizeInBits() down into its uses, by Chris Lattner · 15 years ago
  46. d2c817e Turn calls to copysignl into an FCOPYSIGN node. Handle FCOPYSIGN nodes by Duncan Sands · 15 years ago
  47. a8efe28 Rename SDDbgValue.h to SDNodeDbgValue.h for consistency. by Evan Cheng · 15 years ago
  48. c4a3f23 fix ShrinkDemandedOps to not leave dead nodes around, fixing PR6607 by Chris Lattner · 15 years ago
  49. 25e0ab9 rewrite ShrinkDemandedOps to be faster and indent less, no functionality change. by Chris Lattner · 15 years ago
  50. 552186d make -view-isel-dags print after the 'ShrinkDemandedOps' pass. by Chris Lattner · 15 years ago
  51. 927411b Make default expansion for FP16 <-> FP32 nodes into libcalls by Anton Korobeynikov · 15 years ago
  52. be5b032 Add DAG nodes to represent FP16 <-> FP32 intrinsics by Anton Korobeynikov · 15 years ago
  53. 3b9d621 fix AsmPrinter::GetBlockAddressSymbol to always return a unique by Chris Lattner · 15 years ago
  54. 63d7836 get MMI out of the label uniquing business, just go to MCContext by Chris Lattner · 15 years ago
  55. 7561d48 change the LabelSDNode to be EHLabelSDNode and make it hold by Chris Lattner · 15 years ago
  56. 1611273 change EH related stuff (other than EH_LABEL) to use MCSymbol by Chris Lattner · 15 years ago
  57. 0ac5d2d Revert turning copysignl into a COPYSIGN node for the moment: by Duncan Sands · 15 years ago
  58. bb2f0c5 Now that it's supported, turn copysignl into a COPYSIGN node. by Duncan Sands · 15 years ago
  59. 5d54b41 Fix PR6522: implement copysign expansion for x86 long double by Duncan Sands · 15 years ago
  60. b3e87b2 fix PR6577, a bug in sdbuilder lowering select instructions by Chris Lattner · 15 years ago
  61. a257095 Remove getWidenVectorType, which is no longer used. by Dan Gohman · 15 years ago
  62. af1871f In case of tail call size of Ins and InVals may not match. by Evan Cheng · 15 years ago
  63. 0193c09 Remove dead include. by Daniel Dunbar · 15 years ago
  64. f2f64e9 fix PR6533 by updating the br(xor) code to remember the case by Chris Lattner · 15 years ago
  65. e3b8533 Cosmetic: lengthen names and improve comments. by Dale Johannesen · 15 years ago
  66. bfdf7f3 Progress towards shepherding debug info through SelectionDAG. by Dale Johannesen · 15 years ago
  67. 8f78e3c Fix another bitwidth calculation to handle vector types; based on a by Dan Gohman · 15 years ago
  68. 19b3826 Attempt to make this debug output meaningful, both in the case of by Dan Gohman · 15 years ago
  69. 8f03d75 Print the correct index in the "match failed at index" message. by Dan Gohman · 15 years ago
  70. fab4a25 Add Order to SDDbgValue by Dale Johannesen · 15 years ago
  71. acee647 Use Other as a sentinel instead of iAny. by Chris Lattner · 15 years ago
  72. 06a2663 Add some new bits of debug info handling. No functional change yet. by Dale Johannesen · 15 years ago
  73. 0fa9d1d Reapply r97778 and r97779, enabled only for unsigned i64 to f64 conversions. by Dan Gohman · 15 years ago
  74. 580bba2 Avoid creating bad PHI instructions when BR is being const-folded. by Jakob Stoklund Olesen · 15 years ago
  75. 18fdaba Fix PR6497, a bug where we'd fold a load into an addc by Chris Lattner · 15 years ago
  76. 9bbcd5e inline a small function with one call site. by Chris Lattner · 15 years ago
  77. b6b343d Revert r97778 and r97779. They're somehow breaking llvm-gcc builds. by Dan Gohman · 15 years ago
  78. 808ab34 Fix these constants to be more portable. by Dan Gohman · 15 years ago
  79. cfa7ca1 Rewrite i64-to-f64 conversion using an algorithm which handles by Dan Gohman · 15 years ago
  80. c19ae9d add a statistic for # times fastisel fails. by Chris Lattner · 15 years ago
  81. ba72b0c Fix a typo Duncan noticed. by Dan Gohman · 15 years ago
  82. 57bf8a4 change the new isel matcher to emit ComplexPattern matches by Chris Lattner · 15 years ago
  83. 6900a39 Fix more code to work properly with vector operands. Based on by Dan Gohman · 15 years ago
  84. 2c4afd1 inline CannotYetSelectIntrinsic into CannotYetSelect and simplify. by Chris Lattner · 15 years ago
  85. a72d2a2 Fix a bug in SelectionDAG's ReplaceAllUsesWith in the case where by Dan Gohman · 15 years ago
  86. da828e3 add some of the more obscure predicate types to the Scope accelerator. by Chris Lattner · 15 years ago
  87. f1b7c7d speed up scope node processing: if the first element of a scope by Chris Lattner · 15 years ago
  88. cfe2eab introduce a new SwitchTypeMatcher node (which is analogous to by Chris Lattner · 15 years ago
  89. 32f9eb2 Use APInt instead of zext value. by Bill Wendling · 15 years ago
  90. 7d9f2b9 This test case: by Bill Wendling · 15 years ago
  91. d1b7382 Fix some issues in WalkChainUsers dealing with by Chris Lattner · 15 years ago
  92. 00592ec run HandleMergeInputChains even if we only have one input chain. by Chris Lattner · 15 years ago
  93. 82dd3d3 Fix the xfail I added a couple of patches back. The issue by Chris Lattner · 15 years ago
  94. 61c97f6 I was confused about this, it turns out that MorphNodeTo by Chris Lattner · 15 years ago
  95. 3ff1e4d factor node morphing out to its own helper method. by Chris Lattner · 15 years ago
  96. 7c306da Sink InstructionSelect() out of each target into SDISel, and rename it by Chris Lattner · 15 years ago
  97. 6183fbd Use the right induction variable. by Chris Lattner · 15 years ago
  98. c6d7ad3 Rewrite chain handling validation and input TokenFactor handling by Chris Lattner · 15 years ago
  99. 5b870af Fix several places to handle vector operands properly. by Dan Gohman · 15 years ago
  100. 46ada19 Remove dead parameter passing. by Bill Wendling · 15 years ago