1. c2f4fa3 Update cmake. by Xerxes Ranby · 15 years ago
  2. a5ba07c Verify that phi instructions refer to MBBs in the CFG. by Jakob Stoklund Olesen · 15 years ago
  3. 4fbd14e enable non-local analysis and PRE of large store -> little load. by Chris Lattner · 15 years ago
  4. 8791351 convert an std::pair to an explicit struct. by Chris Lattner · 15 years ago
  5. ca74940 move some functions, add a comment. by Chris Lattner · 15 years ago
  6. 1ce0829 split HandleLoadFromClobberingStore in two pieces: one that does the by Chris Lattner · 15 years ago
  7. faa6adf add a note by Chris Lattner · 15 years ago
  8. 003de66 Register the MachineModuleInfo for the ARM JIT, and update JITDwarfEmitter to by Daniel Dunbar · 15 years ago
  9. f716330 add pr# by Chris Lattner · 15 years ago
  10. eed919b Improve GVN to be able to forward substitute a small load by Chris Lattner · 15 years ago
  11. 0c1f688 add a helper method. by Chris Lattner · 15 years ago
  12. b0f5973 Fix PR4986. "r1024 = insert_subreg r1024, undef, 2" cannot be turned in an implicit_def. Instead, it's an identity copy so it should be eliminated. Also make sure to update livevariable kill information. by Evan Cheng · 15 years ago
  13. cc1c702 Don't allow formatted_ostream to be unbuffered, even if its underlying buffer by Daniel Dunbar · 15 years ago
  14. 93c6c77 one case handled, expanded another testcase inline. by Chris Lattner · 15 years ago
  15. b2412a8 formatting cleanups, no functionality change. by Chris Lattner · 15 years ago
  16. 22884dd Add documentation on how to use enable debug information in the JIT and use it with GDB. by Reid Kleckner · 15 years ago
  17. 8111576 fix a FileCheck bug where: by Chris Lattner · 15 years ago
  18. 06e483d Move ARM and X86 specific AsmParser tests into separate subdirectories, and only by Daniel Dunbar · 15 years ago
  19. 2763217 Implement the JIT side of the GDB JIT debugging interface. To enable this by Reid Kleckner · 15 years ago
  20. 3d4138b Work around a FileCheck bug, for now. by Daniel Dunbar · 15 years ago
  21. 6441e54 simplify as daniel suggests by Chris Lattner · 15 years ago
  22. c936fe8 write rfind in terms of npos as daniel requested by Chris Lattner · 15 years ago
  23. 19e7499 remove a dead method. by Chris Lattner · 15 years ago
  24. 4d0764d grammaro by Chris Lattner · 15 years ago
  25. 6636434 Revert r82404, it is causing a bootstrap miscompile. This is very very by Chris Lattner · 15 years ago
  26. 3711b7a rewrite CountNumNewlinesBetween to be in terms of StringRef. by Chris Lattner · 15 years ago
  27. 6a089c3 this was not supposed to be committed by Chris Lattner · 15 years ago
  28. f15380b implement and document support for CHECK-NOT by Chris Lattner · 15 years ago
  29. 9607703 rewrite FileCheck in terms of StringRef instead of manual pointer pairs. by Chris Lattner · 15 years ago
  30. 3862513 improve memdep to eliminate bitcasts (and aliases, and noop geps) by Chris Lattner · 15 years ago
  31. 771a542 Move CoerceAvailableValueToLoadType earlier in GVN.cpp. Hook it up by Chris Lattner · 15 years ago
  32. 6af4b7c change the interface to CoerceAvailableValueToLoadType to be more generic. by Chris Lattner · 15 years ago
  33. 2891dbb Teach 'make check-all' to build the site configuration for clang, if it is in tree. by Daniel Dunbar · 15 years ago
  34. bb6495c enhance GVN to forward substitute a stored value to a load by Chris Lattner · 15 years ago
  35. c1491f3 update an entry, delete an entry which has been fixed. by Chris Lattner · 15 years ago
  36. 7453f8a tidy up by Chris Lattner · 15 years ago
  37. 711bb91 --- Reverse-merging r82282 into '.': by Bill Wendling · 15 years ago
  38. 7057641 remove a temporary hack. by Chris Lattner · 15 years ago
  39. 0dc32ea rename X86ATTAsmPrinter.cpp -> X86AsmPrinter.cpp likewise the .h file. by Chris Lattner · 15 years ago
  40. d4db0fc move target registry stuff to X86ATTAsmPrinter.cpp by Chris Lattner · 15 years ago
  41. 547a685 simplify this now that createX86CodePrinterPass is trivial by Chris Lattner · 15 years ago
  42. 3859638 rename X86ATTAsmPrinter class -> X86AsmPrinter by Chris Lattner · 15 years ago
  43. 71c7ace remove the asmstring, it is now dead. Improve comment. by Chris Lattner · 15 years ago
  44. 149cbc2 Peer through zext and sext to eliminate them when it is safe to do so. by Nick Lewycky · 15 years ago
  45. b3c8547 kill off printPICLabel now, it's specialness is handled by by Chris Lattner · 15 years ago
  46. ed13cd2 delete X86IntelAsmPrinter! Now -x86-asm-syntax just switches by Chris Lattner · 15 years ago
  47. 85958b0 Fold 'icmp eq (icmp), true' into an xor(icmp). by Nick Lewycky · 15 years ago
  48. e895c61 Add an intel syntax MCInstPrinter implementation. You can now by Chris Lattner · 15 years ago
  49. fd40d03 tidy up by Chris Lattner · 15 years ago
  50. 04d7eed Rewrite this check so that it checks what it's supposed to and doesn't use by Nick Lewycky · 15 years ago
  51. d9221d7 eliminate a use of strtoul. by Chris Lattner · 15 years ago
  52. 67c6b6e split random COFF asmprinter state out to X86COFFMachineModuleInfo.h. by Chris Lattner · 15 years ago
  53. b13efda Correct the comment; this applies to fcmp too. by Nick Lewycky · 15 years ago
  54. 8577e27 Remove tab, again. by Nick Lewycky · 15 years ago
  55. 3105ebf Teach the constant folder how to not a cmpinst. by Nick Lewycky · 15 years ago
  56. 1908aea smallvectorize getExtraOptionNames by Chris Lattner · 15 years ago
  57. f00a7d9 add a helper method. by Chris Lattner · 15 years ago
  58. 49b301c minor cleanups. by Chris Lattner · 15 years ago
  59. 3418579 Add 'make check-all', which runs the LLVM tests along with the clang tests if by Daniel Dunbar · 15 years ago
  60. 848454a Follow googletest logic for suppressing warnings in unittests/UnitTestMain. by Daniel Dunbar · 15 years ago
  61. bc2d9d3 strength reduce further StringRef-> const char*, saving another 620 bytes. by Chris Lattner · 15 years ago
  62. 55a722b Try turning icmp(bitcast(x), bitcast(y)) into icmp(bitcast(bitcast(x)), y) in by Nick Lewycky · 15 years ago
  63. 043b8b5 switch an std::string to StringRef, shaving 400 bytes off CommandLine.o by Chris Lattner · 15 years ago
  64. 8de0036 Remove tabs I added. by Nick Lewycky · 15 years ago
  65. 0fd48b1 the switch from std::map -> StringMap caused --help output to be in by Chris Lattner · 15 years ago
  66. d0062c6 eliminate the duplicate detection loop, moving it into the loop that populates the Opts vector in the first place. by Chris Lattner · 15 years ago
  67. 081bcb0 Eliminate a masochistic "algorithm" loop, shrinking CommandLine.o from 71524->70700 bytes. by Chris Lattner · 15 years ago
  68. b40b7e3 don't use count + insert, just do insert + failure. Also, instead of deleting from by Chris Lattner · 15 years ago
  69. 67aead6 switch to SmallPtrSet instead of std::set, saving 1K from the by Chris Lattner · 15 years ago
  70. 14aae60 change an std::sort to an array_pod_sort call, shrinking CommandLine.o by 9%. by Chris Lattner · 15 years ago
  71. b168737 Several changes together in a murky mess: by Chris Lattner · 15 years ago
  72. 3892baa Clean up the usage of evaluateICmpRelation's return value. by Nick Lewycky · 15 years ago
  73. 256db9b Fix refacto, this code was expecting to stride past the argument prefix. by Daniel Dunbar · 15 years ago
  74. ce99a6e Strip trailing whitespace. by Daniel Dunbar · 15 years ago
  75. 65b6607 A few more tabs -> spaces. by Daniel Dunbar · 15 years ago
  76. d43737b Remove dead store by taking a guess at what Chris meant. I wasn't able to by Nick Lewycky · 15 years ago
  77. 8d5a831 Still one more thing wrong here... by Bill Wendling · 15 years ago
  78. a279bc3 Tabs -> spaces, and remove trailing whitespace. by Daniel Dunbar · 15 years ago
  79. 5511ffd Here's fun! It turns out that these filter functions can be internal. If they're by Bill Wendling · 15 years ago
  80. a80e959 Delete dead code. sext and zext can not turn integers into pointers. Further, by Nick Lewycky · 15 years ago
  81. 8a7a058 convert argname to StringRef, simplifying LookupOption. by Chris Lattner · 15 years ago
  82. 4e247ec convert 'Value' to StringRef which makes it easier to by Chris Lattner · 15 years ago
  83. 341620b Change CommaSeparated processing to do it with StringRef instead of temporary std::strings. by Chris Lattner · 15 years ago
  84. 33c06ad Value* were never meant to be const. Removing constness from the constant by Nick Lewycky · 15 years ago
  85. b7b71a3 rewrite ParseCStringVector in terms of stringref. by Chris Lattner · 15 years ago
  86. 05a32c8 move a couple non-trivial methods out of line, add new by Chris Lattner · 15 years ago
  87. fb2674d coding style cleanup by Chris Lattner · 15 years ago
  88. 99c5c7b convert a bunch more stuff to use StringRef. The ArgName arguments are now by Chris Lattner · 15 years ago
  89. db513bc add size_t and a version of rfind that allows specification of where by Chris Lattner · 15 years ago
  90. 39faac2 When computing live intervals for earlyclobber operands, by Dale Johannesen · 15 years ago
  91. ba11229 avoid a bunch of malloc thrashing for PositinoalVals by eliminating by Chris Lattner · 15 years ago
  92. f4d1882 Teach the constant folder how to handle a few simple i1 cases. by Nick Lewycky · 15 years ago
  93. 970e7df Avoid some temporary strings. by Chris Lattner · 15 years ago
  94. 63c6b7d add some more overloads of StringRef::getAsInteger for by Chris Lattner · 15 years ago
  95. 3670a01 add a simple c_str() method to SmallString. by Chris Lattner · 15 years ago
  96. 68a77ab Revert r82274. It's causing failures in the CINT2006 benchmarks. by Bill Wendling · 15 years ago
  97. 7dd76a1 Prefer super class constructor to explicit initialization. by Daniel Dunbar · 15 years ago
  98. 3fc19bb Tabs -> spaces (really?) by Daniel Dunbar · 15 years ago
  99. 0056499 Fix indentation. by Daniel Dunbar · 15 years ago
  100. f612ff6 Strip trailing whitespace. by Daniel Dunbar · 15 years ago