1. af2b573 Add encoding for ARM "trap" instruction. by Bill Wendling · 15 years ago
  2. 9717fa9 The "trap" instruction is one of this which doesn't have a condition code. Hack by Bill Wendling · 15 years ago
  3. 7d0affd - Give "trap" the correct encoding, at least according to Darwin's assembler. by Bill Wendling · 15 years ago
  4. c1da204 apply Dan's fix for PR8268 which allows constant folding to handle indexes over by Chris Lattner · 15 years ago
  5. cbd323a add some helper methods for asmprinter flags, from PR8417 by Chris Lattner · 15 years ago
  6. cbf5d74 implement PR8524, apparently mainline gas accepts movq as an alias for movd by Chris Lattner · 15 years ago
  7. 604f6fe rework some DSE paths to use the newly-public "getPointerDependencyFrom" by Chris Lattner · 15 years ago
  8. 16f7993 the getLocationForSource/Dest methods can be static. by Chris Lattner · 15 years ago
  9. e90c5cb add "getLocation" method to AliasAnalysis for getting the source and by Chris Lattner · 15 years ago
  10. f6f1f06 implement PR8576, deleting dead stores with intervening may-alias stores. by Chris Lattner · 15 years ago
  11. b7dfb97 file checkize by Chris Lattner · 15 years ago
  12. 3e41106 add some random notes. by Chris Lattner · 15 years ago
  13. aa54524 Use by-name rather than by-order operand matching for some NEON encodings. by Owen Anderson · 15 years ago
  14. 75d8f59 optimize: void a(int x) { if (((1<<x)&8)==0) b(); } by Chris Lattner · 15 years ago
  15. 79a980a tail calls on x86 are implemented. by Chris Lattner · 15 years ago
  16. 0eb49c57 BR_JTadd is ARM-only, so use the proper pseudo class to get the predicate. by Jim Grosbach · 15 years ago
  17. 12203cc Handle PCRel relocations with absolute values. Fixes PR8656. by Rafael Espindola · 15 years ago
  18. 2f5f90a Implement PR8644: forwarding a memcpy value to a byval, by Chris Lattner · 15 years ago
  19. a6fd81d a byval argument without an align can have an arbitrary alignment by Chris Lattner · 15 years ago
  20. 5cc88a2 A few more thumb instruction MC encodings. by Bill Wendling · 15 years ago
  21. 827656d Rewrite address handling to use a structure with all the possible address by Eric Christopher · 15 years ago
  22. 13df1a0 STRH only needs the additional operand, not t2STRH. Also invert conditional by Eric Christopher · 15 years ago
  23. f601d6d Simplify code. No change in functionality. by Benjamin Kramer · 15 years ago
  24. 1c3f050 Test commit: Fix two -Asserts mode warnings in StringMap.h. by Frits van Bommel · 15 years ago
  25. 0dbe54e Make this compile on case-sensitive file systemsw by Anton Korobeynikov · 15 years ago
  26. 82f5874 Move some more hooks to TargetFrameInfo by Anton Korobeynikov · 15 years ago
  27. 3ca1363 Silence Release build warnings about unused functions. by Benjamin Kramer · 15 years ago
  28. 0b8f0a2 Disable warning C4291 on MSVC. Caused because class AttributeList provides a non implemented operator delete without a corresponding new. by Francois Pichet · 15 years ago
  29. 59d2dad On X86, MEMBARRIER, MFENCE, SFENCE, LFENCE are not target memory intrinsics, by Duncan Sands · 15 years ago
  30. b9e6fe1 Removing the useless test that I added recently. It was meant as an example, but not complicated enough to merit another test. by Andrew Trick · 15 years ago
  31. 316df4b RABasic fix. Regalloc is responsible for updating block live ins. by Andrew Trick · 15 years ago
  32. 13bdbb0 Whitespace. by Andrew Trick · 15 years ago
  33. 487a5b7 Fix old GCC build error. by Jakob Stoklund Olesen · 15 years ago
  34. a09cc2b Add more Thumb add instruction encodings. by Bill Wendling · 15 years ago
  35. 95a6d17 Add Thumb encodings for some add instructions. by Bill Wendling · 15 years ago
  36. 6179c31 Add more encodings for Thumb instructions. by Bill Wendling · 15 years ago
  37. ddd0e65 Detemplatize NodeRef. by Jakob Stoklund Olesen · 15 years ago
  38. a3b1082 Rename NodeBase::{key,val} as {first,second} and swap the BranchNode arrays such by Jakob Stoklund Olesen · 15 years ago
  39. 20272a7 Have the getAddrMode3OpValue() function in ARMCodeEmitter.cpp produce the same by Bill Wendling · 15 years ago
  40. 04d14ff Check for _setjmp too, because it's also used. by Bill Wendling · 15 years ago
  41. 785ab18 Implement IntervalMap destructor. by Jakob Stoklund Olesen · 15 years ago
  42. 655fbb4 Implement IntervalMap::clear(). by Jakob Stoklund Olesen · 15 years ago
  43. db52566 Support backwards iteration starting from end(). by Jakob Stoklund Olesen · 15 years ago
  44. a197cba Add test for PR 8111. By Frits van Bommel. by Dale Johannesen · 15 years ago
  45. 078e239 Fix ARM LDR* post-indexed operand encoding. by Jim Grosbach · 15 years ago
  46. 1228038 Encodings for the compare instructions. by Bill Wendling · 15 years ago
  47. b169269 The Vm and Vn register fields must be the same for a register-register vmov. by Owen Anderson · 15 years ago
  48. ff96b63 Fix a cut-n-paste-error. by Evan Cheng · 15 years ago
  49. 68c2639 Document the new GVN number table structure. by Owen Anderson · 15 years ago
  50. 7b6ab40 Operand names by Jim Grosbach · 15 years ago
  51. a30a51b trailing whitespace by Jim Grosbach · 15 years ago
  52. b371658 Don't need to save piecemeal now. by Eric Christopher · 15 years ago
  53. 2d630d7 Update comment. by Eric Christopher · 15 years ago
  54. 0ae28e4 Add encodings for some of the thumb ADD instructions. Tests will come once the by Bill Wendling · 15 years ago
  55. 88de86b Update comment. by Eric Christopher · 15 years ago
  56. efaeb41 Clarify operand names. by Jim Grosbach · 15 years ago
  57. 563d9bd Add a test for CodeGenPrepare's ability to look through PHI nodes when performing by Owen Anderson · 15 years ago
  58. 0d58122 Refactor address mode handling into a single struct (ala x86), this by Eric Christopher · 15 years ago
  59. 6571101 Fix encoding for ARM MLS instruction. by Jim Grosbach · 15 years ago
  60. d2f4174 When folding addressing modes in CodeGenPrepare, attempt to look through PHI nodes by Owen Anderson · 15 years ago
  61. 2aeb612 Add ARM encoding information for STRD. by Jim Grosbach · 15 years ago
  62. a1b4175 Shuffle things around a bit to keep like things together. Tidy up formatting. by Jim Grosbach · 15 years ago
  63. ba46dc0 Revert accidental commit. by Bill Wendling · 15 years ago
  64. a898166 Change long binary encodings to use hex instead. It's more readable. Also by Bill Wendling · 15 years ago
  65. 76eb5f2 Prefetch has a MemOperand now. FileCheckize a test. This finishes up 8460971. by Dale Johannesen · 15 years ago
  66. 953557f4 Factor out operand encoding bits for ARM addressing mode 2 store instructions. by Jim Grosbach · 15 years ago
  67. e2d54af Delete another dead class. by Jim Grosbach · 15 years ago
  68. fc0cb4b whitespace tweak. by Jim Grosbach · 15 years ago
  69. a962b40 Fix a use after free. Patch by Frits van Bommel. by Rafael Espindola · 15 years ago
  70. 9ef65cb Refactor PICSTR* instructions to really be pseudos. Nuke dead classes. by Jim Grosbach · 15 years ago
  71. 9558b4c Rename ARM .td class AIldst1 to AI2ldst for consistency with the other classes. by Jim Grosbach · 15 years ago
  72. 9cb15b5 Add ARM binary encoding information for the rest of the indexed loads. by Jim Grosbach · 15 years ago
  73. 33fa490c Rename methods for clarity instead of brevity. No functional changes. by Jakob Stoklund Olesen · 15 years ago
  74. cab98e3 Make isScalarToVector to return false if the node is a scalar. This will prevent by Mon P Wang · 15 years ago
  75. 805f105 Include raw_ostream.h unconditionally even if it is only used for debug code. by Jakob Stoklund Olesen · 15 years ago
  76. e8e98d7 Added support for the Mach-O .symbol_resolver directive. rdar://8673046 by Kevin Enderby · 15 years ago
  77. 0c2283a Remove dead code. by Jim Grosbach · 15 years ago
  78. f1ce7cc ARM LDRD binary encoding. by Jim Grosbach · 15 years ago
  79. 3ea4daa Remove hard tabs. by Jim Grosbach · 15 years ago
  80. 7a08864 Remove trailing whitespace. by Jim Grosbach · 15 years ago
  81. 7920d96 Avoid release build warnings. by Benjamin Kramer · 15 years ago
  82. 8b8640a Fix decoding ambiguities of stdrex and ldrex. by Owen Anderson · 15 years ago
  83. b458b15 Silence warning about an uninitialized variable. by Benjamin Kramer · 15 years ago
  84. 87689cf Remove threading of Xor over selects and phis, with an explanation by Duncan Sands · 15 years ago
  85. 3b0aed1 Simplify, no functionality change. by Duncan Sands · 15 years ago
  86. 17fd7bd Add a MCLineSectionOrder vector so that we produce the line tables in a by Rafael Espindola · 15 years ago
  87. 1f190c8 These instructions are thumb2 only. by Evan Cheng · 15 years ago
  88. e8e67e1 Fix an obvious oversight. by Evan Cheng · 15 years ago
  89. e7fbdcd Don't attempt trivial coalescing for sub-register copies. by Jakob Stoklund Olesen · 15 years ago
  90. 528900d Work around GCC 4.0 build error: by Jakob Stoklund Olesen · 15 years ago
  91. b651a96 Add an assert. by Rafael Espindola · 15 years ago
  92. 8dc9267 Add ADT/IntervalMap. by Jakob Stoklund Olesen · 15 years ago
  93. a4b23ff Fix llvm-gcc boostrap on OS X by avoiding printing sleb and uleb when possible. by Rafael Espindola · 15 years ago
  94. 0f60ddc unittests/CMakeLists.txt: [PR8225] Tweak linking JITTests on MSVC to add JITTests.def. by NAKAMURA Takumi · 15 years ago
  95. 130a2dd unittests/CMakeLists.txt: Suppress building ValueMapTest on MSVC older than 10(VS2010). by NAKAMURA Takumi · 15 years ago
  96. fb4d981 lit.GoogleTest: On case-insensitive filesystem, matching should be case-insensitive when directory name is checked with test_sub_dir. by NAKAMURA Takumi · 15 years ago
  97. 4c8710d CMakeLists.txt: On MSVS10, touch LLVM.sln as workaround, w/e project files are changed, to avoid the Dialog Hell. Thanks to Oscar. by NAKAMURA Takumi · 15 years ago
  98. 195a0ce Change some methods in MCDwarf.cpp to be able to handle an arbitrary by Rafael Espindola · 15 years ago
  99. 602890d Add MC encodings for some Thumb instructions. Test for a few of them. The "bx by Bill Wendling · 15 years ago
  100. 737d281 Revert "Add ADT/IntervalMap.", GCC doesn't like it. by Jakob Stoklund Olesen · 15 years ago