- c2f4fa3 Update cmake. by Xerxes Ranby · 15 years ago
- a5ba07c Verify that phi instructions refer to MBBs in the CFG. by Jakob Stoklund Olesen · 15 years ago
- 4fbd14e enable non-local analysis and PRE of large store -> little load. by Chris Lattner · 15 years ago
- 8791351 convert an std::pair to an explicit struct. by Chris Lattner · 15 years ago
- ca74940 move some functions, add a comment. by Chris Lattner · 15 years ago
- 1ce0829 split HandleLoadFromClobberingStore in two pieces: one that does the by Chris Lattner · 15 years ago
- faa6adf add a note by Chris Lattner · 15 years ago
- 003de66 Register the MachineModuleInfo for the ARM JIT, and update JITDwarfEmitter to by Daniel Dunbar · 15 years ago
- f716330 add pr# by Chris Lattner · 15 years ago
- eed919b Improve GVN to be able to forward substitute a small load by Chris Lattner · 15 years ago
- 0c1f688 add a helper method. by Chris Lattner · 15 years ago
- 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
- cc1c702 Don't allow formatted_ostream to be unbuffered, even if its underlying buffer by Daniel Dunbar · 15 years ago
- 93c6c77 one case handled, expanded another testcase inline. by Chris Lattner · 15 years ago
- b2412a8 formatting cleanups, no functionality change. by Chris Lattner · 15 years ago
- 22884dd Add documentation on how to use enable debug information in the JIT and use it with GDB. by Reid Kleckner · 15 years ago
- 8111576 fix a FileCheck bug where: by Chris Lattner · 15 years ago
- 06e483d Move ARM and X86 specific AsmParser tests into separate subdirectories, and only by Daniel Dunbar · 15 years ago
- 2763217 Implement the JIT side of the GDB JIT debugging interface. To enable this by Reid Kleckner · 15 years ago
- 3d4138b Work around a FileCheck bug, for now. by Daniel Dunbar · 15 years ago
- 6441e54 simplify as daniel suggests by Chris Lattner · 15 years ago
- c936fe8 write rfind in terms of npos as daniel requested by Chris Lattner · 15 years ago
- 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