1. 19e7499 remove a dead method. by Chris Lattner · 15 years ago
  2. 4d0764d grammaro by Chris Lattner · 15 years ago
  3. 6636434 Revert r82404, it is causing a bootstrap miscompile. This is very very by Chris Lattner · 15 years ago
  4. 3711b7a rewrite CountNumNewlinesBetween to be in terms of StringRef. by Chris Lattner · 15 years ago
  5. 6a089c3 this was not supposed to be committed by Chris Lattner · 15 years ago
  6. f15380b implement and document support for CHECK-NOT by Chris Lattner · 15 years ago
  7. 9607703 rewrite FileCheck in terms of StringRef instead of manual pointer pairs. by Chris Lattner · 15 years ago
  8. 3862513 improve memdep to eliminate bitcasts (and aliases, and noop geps) by Chris Lattner · 15 years ago
  9. 771a542 Move CoerceAvailableValueToLoadType earlier in GVN.cpp. Hook it up by Chris Lattner · 15 years ago
  10. 6af4b7c change the interface to CoerceAvailableValueToLoadType to be more generic. by Chris Lattner · 15 years ago
  11. 2891dbb Teach 'make check-all' to build the site configuration for clang, if it is in tree. by Daniel Dunbar · 15 years ago
  12. bb6495c enhance GVN to forward substitute a stored value to a load by Chris Lattner · 15 years ago
  13. c1491f3 update an entry, delete an entry which has been fixed. by Chris Lattner · 15 years ago
  14. 7453f8a tidy up by Chris Lattner · 15 years ago
  15. 711bb91 --- Reverse-merging r82282 into '.': by Bill Wendling · 15 years ago
  16. 7057641 remove a temporary hack. by Chris Lattner · 15 years ago
  17. 0dc32ea rename X86ATTAsmPrinter.cpp -> X86AsmPrinter.cpp likewise the .h file. by Chris Lattner · 15 years ago
  18. d4db0fc move target registry stuff to X86ATTAsmPrinter.cpp by Chris Lattner · 15 years ago
  19. 547a685 simplify this now that createX86CodePrinterPass is trivial by Chris Lattner · 15 years ago
  20. 3859638 rename X86ATTAsmPrinter class -> X86AsmPrinter by Chris Lattner · 15 years ago
  21. 71c7ace remove the asmstring, it is now dead. Improve comment. by Chris Lattner · 15 years ago
  22. 149cbc2 Peer through zext and sext to eliminate them when it is safe to do so. by Nick Lewycky · 15 years ago
  23. b3c8547 kill off printPICLabel now, it's specialness is handled by by Chris Lattner · 15 years ago
  24. ed13cd2 delete X86IntelAsmPrinter! Now -x86-asm-syntax just switches by Chris Lattner · 15 years ago
  25. 85958b0 Fold 'icmp eq (icmp), true' into an xor(icmp). by Nick Lewycky · 15 years ago
  26. e895c61 Add an intel syntax MCInstPrinter implementation. You can now by Chris Lattner · 15 years ago
  27. fd40d03 tidy up by Chris Lattner · 15 years ago
  28. 04d7eed Rewrite this check so that it checks what it's supposed to and doesn't use by Nick Lewycky · 15 years ago
  29. d9221d7 eliminate a use of strtoul. by Chris Lattner · 15 years ago
  30. 67c6b6e split random COFF asmprinter state out to X86COFFMachineModuleInfo.h. by Chris Lattner · 15 years ago
  31. b13efda Correct the comment; this applies to fcmp too. by Nick Lewycky · 15 years ago
  32. 8577e27 Remove tab, again. by Nick Lewycky · 15 years ago
  33. 3105ebf Teach the constant folder how to not a cmpinst. by Nick Lewycky · 15 years ago
  34. 1908aea smallvectorize getExtraOptionNames by Chris Lattner · 15 years ago
  35. f00a7d9 add a helper method. by Chris Lattner · 15 years ago
  36. 49b301c minor cleanups. by Chris Lattner · 15 years ago
  37. 3418579 Add 'make check-all', which runs the LLVM tests along with the clang tests if by Daniel Dunbar · 15 years ago
  38. 848454a Follow googletest logic for suppressing warnings in unittests/UnitTestMain. by Daniel Dunbar · 15 years ago
  39. bc2d9d3 strength reduce further StringRef-> const char*, saving another 620 bytes. by Chris Lattner · 15 years ago
  40. 55a722b Try turning icmp(bitcast(x), bitcast(y)) into icmp(bitcast(bitcast(x)), y) in by Nick Lewycky · 15 years ago
  41. 043b8b5 switch an std::string to StringRef, shaving 400 bytes off CommandLine.o by Chris Lattner · 15 years ago
  42. 8de0036 Remove tabs I added. by Nick Lewycky · 15 years ago
  43. 0fd48b1 the switch from std::map -> StringMap caused --help output to be in by Chris Lattner · 15 years ago
  44. 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
  45. 081bcb0 Eliminate a masochistic "algorithm" loop, shrinking CommandLine.o from 71524->70700 bytes. by Chris Lattner · 15 years ago
  46. b40b7e3 don't use count + insert, just do insert + failure. Also, instead of deleting from by Chris Lattner · 15 years ago
  47. 67aead6 switch to SmallPtrSet instead of std::set, saving 1K from the by Chris Lattner · 15 years ago
  48. 14aae60 change an std::sort to an array_pod_sort call, shrinking CommandLine.o by 9%. by Chris Lattner · 15 years ago
  49. b168737 Several changes together in a murky mess: by Chris Lattner · 15 years ago
  50. 3892baa Clean up the usage of evaluateICmpRelation's return value. by Nick Lewycky · 15 years ago
  51. 256db9b Fix refacto, this code was expecting to stride past the argument prefix. by Daniel Dunbar · 15 years ago
  52. ce99a6e Strip trailing whitespace. by Daniel Dunbar · 15 years ago
  53. 65b6607 A few more tabs -> spaces. by Daniel Dunbar · 15 years ago
  54. d43737b Remove dead store by taking a guess at what Chris meant. I wasn't able to by Nick Lewycky · 15 years ago
  55. 8d5a831 Still one more thing wrong here... by Bill Wendling · 15 years ago
  56. a279bc3 Tabs -> spaces, and remove trailing whitespace. by Daniel Dunbar · 15 years ago
  57. 5511ffd Here's fun! It turns out that these filter functions can be internal. If they're by Bill Wendling · 15 years ago
  58. a80e959 Delete dead code. sext and zext can not turn integers into pointers. Further, by Nick Lewycky · 15 years ago
  59. 8a7a058 convert argname to StringRef, simplifying LookupOption. by Chris Lattner · 15 years ago
  60. 4e247ec convert 'Value' to StringRef which makes it easier to by Chris Lattner · 15 years ago
  61. 341620b Change CommaSeparated processing to do it with StringRef instead of temporary std::strings. by Chris Lattner · 15 years ago
  62. 33c06ad Value* were never meant to be const. Removing constness from the constant by Nick Lewycky · 15 years ago
  63. b7b71a3 rewrite ParseCStringVector in terms of stringref. by Chris Lattner · 15 years ago
  64. 05a32c8 move a couple non-trivial methods out of line, add new by Chris Lattner · 15 years ago
  65. fb2674d coding style cleanup by Chris Lattner · 15 years ago
  66. 99c5c7b convert a bunch more stuff to use StringRef. The ArgName arguments are now by Chris Lattner · 15 years ago
  67. db513bc add size_t and a version of rfind that allows specification of where by Chris Lattner · 15 years ago
  68. 39faac2 When computing live intervals for earlyclobber operands, by Dale Johannesen · 15 years ago
  69. ba11229 avoid a bunch of malloc thrashing for PositinoalVals by eliminating by Chris Lattner · 15 years ago
  70. f4d1882 Teach the constant folder how to handle a few simple i1 cases. by Nick Lewycky · 15 years ago
  71. 970e7df Avoid some temporary strings. by Chris Lattner · 15 years ago
  72. 63c6b7d add some more overloads of StringRef::getAsInteger for by Chris Lattner · 15 years ago
  73. 3670a01 add a simple c_str() method to SmallString. by Chris Lattner · 15 years ago
  74. 68a77ab Revert r82274. It's causing failures in the CINT2006 benchmarks. by Bill Wendling · 15 years ago
  75. 7dd76a1 Prefer super class constructor to explicit initialization. by Daniel Dunbar · 15 years ago
  76. 3fc19bb Tabs -> spaces (really?) by Daniel Dunbar · 15 years ago
  77. 0056499 Fix indentation. by Daniel Dunbar · 15 years ago
  78. f612ff6 Strip trailing whitespace. by Daniel Dunbar · 15 years ago
  79. 7e32c4f RHS of assignment should be const reference. by Daniel Dunbar · 15 years ago
  80. c332fba Remove the default value for ConstantStruct::get's isPacked parameter and by Nick Lewycky · 15 years ago
  81. cea1438 provide a "strtoull" operation that works on StringRef's. by Chris Lattner · 15 years ago
  82. c2fc1fe Add a comment explaining why you would ever want to do this. by Nick Lewycky · 15 years ago
  83. a460beb convert a bunch of std::strings to use StringRef. This should eliminate by Chris Lattner · 15 years ago
  84. 875646f Lett users of sparse propagation do their own thing with phi nodes if they want by Nick Lewycky · 15 years ago
  85. ad38936 The flag "--dot-cfg-only" is at the moment equivalent to the flag "--dot-cfg". by Duncan Sands · 15 years ago
  86. 431f775 Fix funky comments. by Evan Cheng · 15 years ago
  87. 0002e50 Update comments. by Evan Cheng · 15 years ago
  88. 461c876 Try to speed up the slowest parts of the CommandLine library by Benjamin Kramer · 15 years ago
  89. 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 · 15 years ago
  90. 83d6391 Enhance transform passes so that they apply the same tranforms to malloc calls as to MallocInst. by Victor Hernandez · 15 years ago
  91. 4a86348 remove an extraneous mem2reg pass early in the pipe. Since by Chris Lattner · 15 years ago
  92. d7a5983 reduce indentation by using an early exit, and add a comment, by Chris Lattner · 15 years ago
  93. e31e4e5 Fix a comment typo and some whitespace. by Bob Wilson · 15 years ago
  94. a15de00 Fix a typo in an assertion message. by Bob Wilson · 15 years ago
  95. f41b6e5 Factor out label difference creation. by Bill Wendling · 15 years ago
  96. 46e8312 Enhance analysis passes so that they apply the same analysis to malloc calls as to MallocInst. by Victor Hernandez · 15 years ago
  97. d268e00 Delete the label names from this test to make it less fragile. by Dan Gohman · 15 years ago
  98. 296ab7e It's inefficient to have place the exception tables (which contain the LSDA) by Bill Wendling · 15 years ago
  99. fb2e752 Enhance EmitInstrWithCustomInserter() so target can specify CFG changes that sdisel will use to properly complete phi nodes. by Evan Cheng · 15 years ago
  100. 558b79a Fix cmake build, which has a different -I that by Shantonu Sen · 15 years ago