1. b2c9290 Perform sibcall in some cases when arguments are passes memory. Look for cases by Evan Cheng · 16 years ago
  2. 7276c8c Fix PR6196. GV callee may not be a function. by Evan Cheng · 16 years ago
  3. 0a4fd46 Undo r94946 now all the tests are passing again. by Evan Cheng · 16 years ago
  4. e626b0f Fix a missing check from my last commit. by Evan Cheng · 16 years ago
  5. 843bd69 Avoid recursive sibcall's. by Evan Cheng · 16 years ago
  6. a6bff98 Allow more tailcall optimization: calls with inputs that are all passed in registers. by Evan Cheng · 16 years ago
  7. 7096ae4 Catch more trivial tail call opportunities: no inputs and output types match. by Evan Cheng · 16 years ago
  8. 5fef8bc Fix a bug introduced by r94490 where it created a X86ISD::CMP whose output type is different from its inputs. by Evan Cheng · 16 years ago
  9. b171245 Perform trivial tail call optimization for callees with "C" ABI. These are done by Evan Cheng · 16 years ago
  10. 0c439eb Eliminate target hook IsEligibleForTailCallOptimization. by Evan Cheng · 16 years ago
  11. 1613f40 Delete blank lines that bug me. by Evan Cheng · 16 years ago
  12. 2a53167 Delete dead code. by Evan Cheng · 16 years ago
  13. ddc419c Code refactoring, no functionality change. by Evan Cheng · 16 years ago
  14. 589c6f6 Move getJTISymbol from MachineJumpTableInfo to MachineFunction, by Chris Lattner · 16 years ago
  15. c64daab implement X86 @GOTOFF jump table entries with the new EK_Custom32 by Chris Lattner · 16 years ago
  16. 8c7ecaf Implement cond ? -1 : 0 with sbb. by Evan Cheng · 16 years ago
  17. 5e1df8d in 32-bit pic mode for targets with a GOT, x86 emits jump table by Chris Lattner · 16 years ago
  18. 3a39f8c remove dead code: the x86 target never sets usesGlobalOffsetTable, by Chris Lattner · 16 years ago
  19. eb38ebf Improved widening loads by adding support for wider loads if by Mon P Wang · 16 years ago
  20. e9625cf Don't lower splat vector load to relative to the esp if the by Eric Christopher · 16 years ago
  21. 5ad7de2 Fix a typo that Anton noticed. by Dan Gohman · 16 years ago
  22. d4f1959 Reimplement getToken and SplitString as "StringRef helper functions" by Benjamin Kramer · 16 years ago
  23. a77169d Fix http://llvm.org/PR5729: x86-64 tail calls were putting their targets into by Jeffrey Yasskin · 16 years ago
  24. 306b4ca Fix a critical bug in 64-bit atomic operation lowering for 32-bit. The results of the cmpxchg8b instructions are being thrown away when it branches back to the top of the checking loop. This means the loop always compares against the old value and this can result in a dead lock. by Evan Cheng · 16 years ago
  25. ad5b52f Fix comment. by Evan Cheng · 16 years ago
  26. 17751da Fix a minor regression from my dag combiner changes. One more place which needs to look pass truncates. by Evan Cheng · 16 years ago
  27. d40d03e Teach dag combine to fold the following transformation more aggressively: by Evan Cheng · 16 years ago
  28. 8c65f6e Move remaining stuff to the isInteger predicate. by Benjamin Kramer · 16 years ago
  29. 11acaa3 Convert a ton of simple integer type equality tests to the new predicate. by Benjamin Kramer · 16 years ago
  30. 54de3ea Code refactoring. by Evan Cheng · 16 years ago
  31. 760d194 Perform this folding as a target specific dag combine: by Evan Cheng · 16 years ago
  32. 3cc4a30 A use by operand 1 or 2 of a SELECT is not a FLAGS use. This by Dan Gohman · 16 years ago
  33. 7f1a560 Replace a few more SmallVectors with arrays. by Benjamin Kramer · 16 years ago
  34. 3ea3c24 Add more plumbing. This time in the LowerArguments and "get" functions which by Bill Wendling · 16 years ago
  35. 70d0ef1 In LowerEXTRACT_VECTOR_ELT, force an i32 value type for PEXTWR instead of by Ken Dyck · 16 years ago
  36. 2e489c4 Re-enable 91381 with fixes. by Evan Cheng · 16 years ago
  37. d7760a4 Disable 91381 for now. It's miscompiling ARMISelDAG2DAG.cpp. by Evan Cheng · 16 years ago
  38. ad9c0a3 Use sbb x, x to materialize carry bit in a GPR. The result is all one's or all zero's. by Evan Cheng · 16 years ago
  39. 2e141d7 Fix integer cast code to handle vector types. by Dan Gohman · 16 years ago
  40. 87862e7 Implement vector widening, splitting, and scalarizing for SIGN_EXTEND_INREG. by Dan Gohman · 16 years ago
  41. 817a464 Honour setHasCalls() set from isel. by Anton Korobeynikov · 16 years ago
  42. c363094 Optimize splat of a scalar load into a shuffle of a vector load when it's legal. e.g. by Evan Cheng · 16 years ago
  43. 7bd6478 Teach InferPtrAlignment to infer GV+cst alignment and use it to simplify x86 isl lowering code. by Evan Cheng · 16 years ago
  44. 64fa4a9 Move isConsecutiveLoad to SelectionDAG. It's not target dependent and it's primary used by selectdag passes. by Evan Cheng · 16 years ago
  45. cd6e725 Added support to allow clients to custom widen. For X86, custom widen vectors for by Mon P Wang · 16 years ago
  46. 735afe1 Remove ISD::DEBUG_LOC and ISD::DBG_LABEL, which are no longer used. by Dan Gohman · 16 years ago
  47. bef8888 We are not using DBG_STOPPOINT anymore. by Devang Patel · 16 years ago
  48. 29cbade Target-independent support for TargetFlags on BlockAddress operands, by Dan Gohman · 16 years ago
  49. d1ba06b Make X86-64 in the Large model always emit 64-bit calls. by Jeffrey Yasskin · 16 years ago
  50. 3f2bf85 by David Greene · 16 years ago
  51. 05872ea Add compare_lower and equals_lower methods to StringRef. Switch all users of by Benjamin Kramer · 16 years ago
  52. 0b10b91 x86 vector shuffle cleanup/fixes: by Nate Begeman · 16 years ago
  53. b4997ae Add code to check at SelectionDAGISel::LowerArguments time to see if return values can be lowered to registers. Coming soon, code to perform sret-demotion if return values cannot be lowered to registers by Kenneth Uildriks · 16 years ago
  54. f705adb Initial x86 support for BlockAddresses. by Dan Gohman · 16 years ago
  55. a1eaa3c Add a second ValueType argument to isFPImmLegal. by Evan Cheng · 16 years ago
  56. eb2f969 Do away with addLegalFPImmediate. Add a target hook isFPImmLegal which returns true if the fp immediate can be natively codegened by target. by Evan Cheng · 16 years ago
  57. 1a49295 Make TranslateX86CC return COND_INVALID instead of aborting when it by Dan Gohman · 16 years ago
  58. a09008b Add support for matching shuffle patterns with palignr. by Nate Begeman · 16 years ago
  59. ff89dcb -Revert parts of 84326 and 84411. Distinquishing between fixed and non-fixed by Evan Cheng · 16 years ago
  60. 20270c9 Only fixed stack objects and spill slots should be get FixedStack PseudoSourceValue. by Evan Cheng · 16 years ago
  61. 6553155 Revert 84315 for now. Re-thinking the patch. by Evan Cheng · 16 years ago
  62. bf12558 Rename getFixedStack to getStackObject. The stack objects represented are not by Evan Cheng · 16 years ago
  63. 0032681 Don't forget to mark RAX as live-out of the function when arranging for by Dan Gohman · 16 years ago
  64. 5f3663e Fix handling of x86 'R' constraint. by Dale Johannesen · 16 years ago
  65. c76909a Improve MachineMemOperand handling. by Dan Gohman · 16 years ago
  66. 8a55ce4 Rename several variables from EVT to more descriptive names, now that EVT by Dan Gohman · 16 years ago
  67. 670e539 Recognize SSE min and max opportunities in even more cases. by Dan Gohman · 16 years ago
  68. a279bc3 Tabs -> spaces, and remove trailing whitespace. by Daniel Dunbar · 16 years ago
  69. ce31910 Fix PR4926. When target hook EmitInstrWithCustomInserter() insert new basic blocks and update CFG, it should also inform sdisel of the changes so the phi source operands will come from the right basic blocks. by Evan Cheng · 16 years ago
  70. fb2e752 Enhance EmitInstrWithCustomInserter() so target can specify CFG changes that sdisel will use to properly complete phi nodes. by Evan Cheng · 16 years ago
  71. 228252f Make a new X8632_MachoTargetObjectFile TLOF implementation whose by Chris Lattner · 16 years ago
  72. e220c4b Add support for using the FLAGS result of or, xor, and and instructions by Dan Gohman · 16 years ago
  73. 8c6ed05 Big change #1 for personality function references: by Chris Lattner · 16 years ago
  74. 56d77c7 add some special case handling for strangely named x86 registers. by Chris Lattner · 16 years ago
  75. da9ad38 Remove a left over bit of code with no effect. by Duncan Sands · 16 years ago
  76. c2d98bc Remove some not-really-used variables, as warned by Duncan Sands · 16 years ago
  77. 8d44b28 Recognize more opportunities to use SSE min and max instructions, by Dan Gohman · 16 years ago
  78. efa4220 Fixed a few problems with vector shifts by Mon P Wang · 16 years ago
  79. 2f67df7 Add a -disable-16bit flag and associated support for experimenting with by Dan Gohman · 16 years ago
  80. 65c3c8f Retype from unsigned to CallingConv::ID accordingly. Approved by Bob Wilson. by Sandeep Patel · 16 years ago
  81. 5260097 refactor select 'sched insertion' out to its own method. by Chris Lattner · 16 years ago
  82. c69d74a Revert commit 80428. It completely broke exception handling on x86-32 linux. by Duncan Sands · 16 years ago
  83. 9b35a09 - Add target lowering methods to get the preferred format for the FDE and LSDA by Bill Wendling · 16 years ago
  84. f83a5de Add FIXME for when we support more specific XMM registers. by Eric Christopher · 16 years ago
  85. fd17929 Nuke trailing whitespace. by Eric Christopher · 16 years ago
  86. cbbea0f Expand i8 selects into control flow instead of 16-bit conditional by Dan Gohman · 16 years ago
  87. 24f20e0 Record variable debug info at ISel time directly. by Devang Patel · 16 years ago
  88. b120ab4 Implement sse4.2 string/text processing instructions: by Eric Christopher · 16 years ago
  89. 25103a2 Fix function alignment at -Os on x86 to be 1, not 2. getFunctionAlignment by Dan Gohman · 16 years ago
  90. face41a Avoid emitting XMM save code in soft-float or no-implicit-float mode by Dan Gohman · 16 years ago
  91. af56634 Reapply r79127. It was fixed by d0k. by Bill Wendling · 16 years ago
  92. f865ea8 Revert r79127. It was causing compilation errors. by Bill Wendling · 16 years ago
  93. 088880c Change allowsUnalignedMemoryAccesses to take type argument since some targets by Evan Cheng · 16 years ago
  94. d6708ea On x86-64, for a varargs function, don't store the xmm registers to by Dan Gohman · 16 years ago
  95. 2247276 Properly handle indirect win64 args when they're passed in memory by Anton Korobeynikov · 16 years ago
  96. 1d0be15 Push LLVMContexts through the IntegerType APIs. by Owen Anderson · 16 years ago
  97. 766b5ef Fix warnings. by Owen Anderson · 16 years ago
  98. 825b72b Split EVT into MVT and EVT, the former representing _just_ a primitive type, while by Owen Anderson · 16 years ago
  99. e50ed30 Rename MVT to EVT, in preparation for splitting SimpleValueType out into its own struct type. by Owen Anderson · 16 years ago
  100. d6662ad SimpleValueType-ify a few more methods on TargetLowering. by Owen Anderson · 16 years ago