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