1. 054dbb8 If REG_SEQUENCE source is livein, copy it first. Also, update livevariables information when a copy is introduced. by Evan Cheng · 14 years ago
  2. de7dea2 Do not attempt copy coalescing if the source and dest sub-register indices do not match. by Evan Cheng · 14 years ago
  3. 3519f9d revert r103668 for now, it is apparently breaking things. by Chris Lattner · 14 years ago
  4. 0de8e3f moffset forms of moves are x86-32 only, make the parser by Chris Lattner · 14 years ago
  5. 4313007 Fix some potential issues in the pseudo instruction expansion phase: copy implicit operands and memoperands. Also, expand instructions even if their defs are "dead" since they may have implicit kill operands. by Evan Cheng · 14 years ago
  6. 1c15413 MC: Move MCAlignFragment::EmitNops value out of the constructor. by Daniel Dunbar · 14 years ago
  7. 4e54487 MC: Eliminate MCZeroFillFragment, it is no longer needed. by Daniel Dunbar · 14 years ago
  8. e2fee5b MC: Explicitly check that only virtual fragments appear in virtual sections. by Daniel Dunbar · 14 years ago
  9. 3153fec MC: Switch MCFillFragment to storing total fill size instead of a count. This allows using ValueSize==0 to represent a virtual fill. by Daniel Dunbar · 14 years ago
  10. e73d49e MC: Drop support for alignment in ZeroFill fragment, we can just use by Daniel Dunbar · 14 years ago
  11. 2745f6e fix the encoding of the obscure "moffset" forms of moves, i386 by Chris Lattner · 14 years ago
  12. 9a1581b Clear CachedFunctionInfo upon Pass::releaseMemory. Because ValueMap will abort by Nick Lewycky · 14 years ago
  13. bd4fa2e lit: Fix a sh lexing bug which caused annotate-token.m to fail when run with the by Daniel Dunbar · 14 years ago
  14. 52f8dff Simplify. by Daniel Dunbar · 14 years ago
  15. f0d17d2 MC: Factor out MCAssembler::LayoutFragment by Daniel Dunbar · 14 years ago
  16. 2d891a2 MC: Tweak section layout to not relying on accumulating address value. by Daniel Dunbar · 14 years ago
  17. aa81380 ADT: Add ilist_node::get{Prev,Next}Node, which return the adjacent node or null. by Daniel Dunbar · 14 years ago
  18. a4d73d0 Remove a dead fixme. by Evan Cheng · 14 years ago
  19. 804291e Make sure to add kill flags to the last use of a virtreg when it is redefined. by Jakob Stoklund Olesen · 14 years ago
  20. cacd5d3 Test case for r103633. by Devang Patel · 14 years ago
  21. d13a0ca MC: Simplify LayoutSection to just take the index of the section to layout. by Daniel Dunbar · 14 years ago
  22. 473a09d lit: Fix OneCommandPerFileTest format when tests are specified directly. by Daniel Dunbar · 14 years ago
  23. b14c699 lit: Add support for 'lit ... @foo', which reads a list of tests to run from by Daniel Dunbar · 14 years ago
  24. bc1a0cf MC: Track section layout order explicitly, and use to simplify. by Daniel Dunbar · 14 years ago
  25. 62d50e8 stylistic change to MCSectionCOFF::PrintSwitchToSection COMDAT handling by Nathan Jeffords · 14 years ago
  26. 5b1b3b7 Remove unused variable. Tweak a comment while there. by Duncan Sands · 14 years ago
  27. 18c1021 Add support for movi32 of global values to the new (MC) asm printer. by Rafael Espindola · 14 years ago
  28. 72c2a83 Testcase for llvm 103572 (7898991). by Dale Johannesen · 14 years ago
  29. 871bb94 updated support for the COFF .linkonce by Nathan Jeffords · 14 years ago
  30. 5bdc2aa vst instructions are modeled as this: by Evan Cheng · 14 years ago
  31. 736f89b Teach local regalloc about virtual registers with sub-indices. by Evan Cheng · 14 years ago
  32. 3ae56bc Code clean up. by Evan Cheng · 14 years ago
  33. 0481449 MC/X86: Extend suffix matching hack to match 'q' suffix. by Daniel Dunbar · 14 years ago
  34. 624d466 Added a trivial function to modify the flags field of MCSymbolData class. The function takes the value and a mask, and clears the mask bits before applying the value. by Nathan Jeffords · 14 years ago
  35. a5f1d57 MC/Mach-O/x86_64: Add a new hook for checking whether a particular section can by Daniel Dunbar · 14 years ago
  36. 85f4fda Enable a bunch more -regalloc=fast tests by Jakob Stoklund Olesen · 14 years ago
  37. 1a1ad57 Avoid scoping issues, fix buildbots by Jakob Stoklund Olesen · 14 years ago
  38. a6cb641 Add initial kill flag support to FastISel. by Dan Gohman · 14 years ago
  39. 0efd768 Make Clang happy. by Daniel Dunbar · 14 years ago
  40. db4c7e6 MC/Mach-O/x86_64: Fix PCrel adjustment for x86_64, which was using the fixup by Daniel Dunbar · 14 years ago
  41. 640e948 MC/Mach-O: As Kevin pointed out, 'Address' is really an offset -- rename to clarify. by Daniel Dunbar · 14 years ago
  42. ef4591e MC/Mach-O: Fix a crash on invalid. by Daniel Dunbar · 14 years ago
  43. 6865f29 Fix PR6951 by fixing Module leaks in bugpoint. by Jeffrey Yasskin · 14 years ago
  44. 210e2af Store the Dirty bit in the LiveReg structure instead of a bit vector. by Jakob Stoklund Olesen · 14 years ago
  45. 76b4d5a Keep track of the last place a live virtreg was used. by Jakob Stoklund Olesen · 14 years ago
  46. 9d7019f Don't set kill flags on uses of CopyFromReg nodes. InstrEmitter doesn't by Dan Gohman · 14 years ago
  47. 9647f3d Avoid breaking vstd when reg_sequence is not used. by Evan Cheng · 14 years ago
  48. a44c122 One more -regalloc=fast test by Jakob Stoklund Olesen · 14 years ago
  49. 8e8b3cb Silence warning by Jakob Stoklund Olesen · 14 years ago
  50. f6d8481 Simplify this logic of creating a default Features object. by Bill Wendling · 14 years ago
  51. 82b07dc Simplify the tracking of used physregs to a bulk bitor followed by a transitive by Jakob Stoklund Olesen · 14 years ago
  52. d427180 Revert r103493, materializing functions in the regular PassManager. by Dan Gohman · 14 years ago
  53. 16d8f8b I got tired of VISIBILITY_HIDDEN colliding with the gcc enum. Rename it by Duncan Sands · 14 years ago
  54. 124b55d Teach the regular pass manager how to materialize functions as needed. by Dan Gohman · 14 years ago
  55. 99dca4f Remove the "WantsWholeFile" concept, as it's no longer needed. CBE by Dan Gohman · 14 years ago
  56. 038df88 Trim #includes and forward declarations. by Dan Gohman · 14 years ago
  57. bbf33b3 Mostly rewrite RegAllocFast. by Jakob Stoklund Olesen · 14 years ago
  58. 17c4a62 Fix a comment. by Dan Gohman · 14 years ago
  59. ff7a562 Implement a bunch more TargetSelectionDAGInfo infrastructure. by Dan Gohman · 14 years ago
  60. 651804c MC/Mach-O x86_64: Switch to using fragment atom symbol. by Daniel Dunbar · 14 years ago
  61. c9d0c4e Test commit. by Daniel Dunbar · 14 years ago
  62. 10934e8 Test commit. by Tanya Lattner · 14 years ago
  63. e924ab5 Test commit. by Tanya Lattner · 14 years ago
  64. 419e4f9 Remove the TargetLowering::getSubtarget() virtual function, which by Dan Gohman · 14 years ago
  65. 2320a44 Make SPU backend not assert on jump tables. by Kalle Raiskila · 14 years ago
  66. fb3611d Select @llvm.trap to the special B with 1111 condition (i.e. trap) instruction. by Evan Cheng · 14 years ago
  67. 7d9663c Fixes for Microsoft Visual Studio 2010, from Steven Watanabe! by Douglas Gregor · 14 years ago
  68. 3cbae23 Don't create a StringRef with a NULL value. by Bill Wendling · 14 years ago
  69. 972bf8d Extended the edis "IsBranch" property to call by Sean Callanan · 14 years ago
  70. 0ce537a Model some vst3 and vst4 with reg_sequence. by Evan Cheng · 14 years ago
  71. 81043ee The getDefaultSubtargetFeatures method of SubtargetFeature did actually return a by Bill Wendling · 14 years ago
  72. 31b9c44 It's not safe eliminate copies where src and dst have different sub-register indices. by Evan Cheng · 14 years ago
  73. 0bcccac Ensure REG_SEQUENCE source operands are unique. by Evan Cheng · 14 years ago
  74. a8251fa MC/Mach-O: Fix another mismatch with .weak_definition, we shouldn't use a by Daniel Dunbar · 14 years ago
  75. e9460ec MC/Mach-O: Factor out doesSymbolRequireExternRelocation. by Daniel Dunbar · 14 years ago
  76. 60ffa94 Indentation. by Evan Cheng · 14 years ago
  77. 163a9f7 Enable multiple Compile Units in one module. by Devang Patel · 14 years ago
  78. 071f73d MC/Mach-O: Explicitly track atoms, as represented by their defining symbol, for each fragment (not yet used). by Daniel Dunbar · 14 years ago
  79. e9e2ba0 Model some vld3 instructions with REG_SEQUENCE. by Evan Cheng · 14 years ago
  80. 9cc9bfa It's not safe to propagate implicit_def that defines part of a register. by Evan Cheng · 14 years ago
  81. fc6e6a9 Clear RegSequences vector after eliminating REG_SEQUENCE instructions. by Evan Cheng · 14 years ago
  82. e24b5c5 this really is needed. :( by Chris Lattner · 14 years ago
  83. ea9f0b8 just remove this, it isn't needed. by Chris Lattner · 14 years ago
  84. 601e768 simplify more. by Chris Lattner · 14 years ago
  85. 775aba2 Simplify by using startswith instead of substr. by Chris Lattner · 14 years ago
  86. fd450c0 fix PR7105 by enumerating MDNodes on all @llvm.foo by Chris Lattner · 14 years ago
  87. c279243 fix a pretty obvious typo. We test things before committing them, right? by Chris Lattner · 14 years ago
  88. e89f1c4 by David Greene · 14 years ago
  89. da24b34 Add an explicit keyword. by Dan Gohman · 14 years ago
  90. dd464df Add new configure option, --disable-timestamps, intended to turn off anything which would mess up binary/object comparisons. Currently: by Daniel Dunbar · 14 years ago
  91. faa19c3 Fix whitespace in debug output to be consistent. by Dan Gohman · 14 years ago
  92. dbc56bb Delete an obsolete comment. by Dan Gohman · 14 years ago
  93. aad753b Be careful with operand promotion. For a binary operation, the source operands may be the same. PR7018. rdar://7939869. by Evan Cheng · 14 years ago
  94. 1deea21 Test case for 103414. by Devang Patel · 14 years ago
  95. 603afbf Model vld2 / vst2 with reg_sequence. by Evan Cheng · 14 years ago
  96. 623d3c1 Re-defined valno is always valno even for partial re-def's. by Evan Cheng · 14 years ago
  97. fde18e5 Fix PR7096. When a block containing multiple defs is tail duplicated, the by Bob Wilson · 14 years ago
  98. 26c4cf4c Fix encoding of 'sf' and 'sfh' instructions. by Kalle Raiskila · 14 years ago
  99. faa9576 Add command line option --gcc to bugpoint. by Kalle Raiskila · 14 years ago
  100. ad017dc Add an assertion to catch attempts to access off the end of the array. by Duncan Sands · 15 years ago