oota-llvm.git
2009-09-20 Chris Lattnerrewrite CountNumNewlinesBetween to be in terms of Strin...
2009-09-20 Chris Lattnerthis was not supposed to be committed
2009-09-20 Chris Lattnerimplement and document support for CHECK-NOT
2009-09-20 Chris Lattnerrewrite FileCheck in terms of StringRef instead of...
2009-09-20 Chris Lattnerimprove memdep to eliminate bitcasts (and aliases,...
2009-09-20 Chris LattnerMove CoerceAvailableValueToLoadType earlier in GVN...
2009-09-20 Chris Lattnerchange the interface to CoerceAvailableValueToLoadType...
2009-09-20 Daniel DunbarTeach 'make check-all' to build the site configuration...
2009-09-20 Chris Lattnerenhance GVN to forward substitute a stored value to...
2009-09-20 Chris Lattnerupdate an entry, delete an entry which has been fixed.
2009-09-20 Chris Lattnertidy up
2009-09-20 Bill Wendling--- Reverse-merging r82282 into '.':
2009-09-20 Chris Lattnerremove a temporary hack.
2009-09-20 Chris Lattnerrename X86ATTAsmPrinter.cpp -> X86AsmPrinter.cpp likewi...
2009-09-20 Chris Lattnermove target registry stuff to X86ATTAsmPrinter.cpp
2009-09-20 Chris Lattnersimplify this now that createX86CodePrinterPass is...
2009-09-20 Chris Lattnerrename X86ATTAsmPrinter class -> X86AsmPrinter
2009-09-20 Chris Lattnerremove the asmstring, it is now dead. Improve comment.
2009-09-20 Nick LewyckyPeer through zext and sext to eliminate them when it...
2009-09-20 Chris Lattnerkill off printPICLabel now, it's specialness is handled by
2009-09-20 Chris Lattnerdelete X86IntelAsmPrinter! Now -x86-asm-syntax just...
2009-09-20 Nick LewyckyFold 'icmp eq (icmp), true' into an xor(icmp).
2009-09-20 Chris LattnerAdd an intel syntax MCInstPrinter implementation. ...
2009-09-20 Chris Lattnertidy up
2009-09-20 Nick LewyckyRewrite this check so that it checks what it's supposed...
2009-09-20 Chris Lattnereliminate a use of strtoul.
2009-09-20 Chris Lattnersplit random COFF asmprinter state out to X86COFFMachin...
2009-09-20 Nick LewyckyCorrect the comment; this applies to fcmp too.
2009-09-20 Nick LewyckyRemove tab, again.
2009-09-20 Nick LewyckyTeach the constant folder how to not a cmpinst.
2009-09-20 Chris Lattnersmallvectorize getExtraOptionNames
2009-09-20 Chris Lattneradd a helper method.
2009-09-20 Chris Lattnerminor cleanups.
2009-09-20 Daniel DunbarAdd 'make check-all', which runs the LLVM tests along...
2009-09-20 Daniel DunbarFollow googletest logic for suppressing warnings in...
2009-09-20 Chris Lattnerstrength reduce further StringRef-> const char*, saving...
2009-09-20 Nick LewyckyTry turning icmp(bitcast(x), bitcast(y)) into icmp...
2009-09-20 Chris Lattnerswitch an std::string to StringRef, shaving 400 bytes...
2009-09-20 Nick LewyckyRemove tabs I added.
2009-09-20 Chris Lattnerthe switch from std::map -> StringMap caused --help...
2009-09-20 Chris Lattnereliminate the duplicate detection loop, moving it into...
2009-09-20 Chris LattnerEliminate a masochistic "algorithm" loop, shrinking...
2009-09-20 Chris Lattnerdon't use count + insert, just do insert + failure...
2009-09-20 Chris Lattnerswitch to SmallPtrSet instead of std::set, saving 1K...
2009-09-20 Chris Lattnerchange an std::sort to an array_pod_sort call, shrinkin...
2009-09-20 Chris LattnerSeveral changes together in a murky mess:
2009-09-20 Nick LewyckyClean up the usage of evaluateICmpRelation's return...
2009-09-20 Daniel DunbarFix refacto, this code was expecting to stride past...
2009-09-20 Daniel DunbarStrip trailing whitespace.
2009-09-20 Daniel DunbarA few more tabs -> spaces.
2009-09-20 Nick LewyckyRemove dead store by taking a guess at what Chris meant...
2009-09-20 Bill WendlingStill one more thing wrong here...
2009-09-20 Daniel DunbarTabs -> spaces, and remove trailing whitespace.
2009-09-20 Bill WendlingHere's fun! It turns out that these filter functions...
2009-09-20 Nick LewyckyDelete dead code. sext and zext can not turn integers...
2009-09-20 Chris Lattnerconvert argname to StringRef, simplifying LookupOption.
2009-09-20 Chris Lattnerconvert 'Value' to StringRef which makes it easier to
2009-09-20 Chris LattnerChange CommaSeparated processing to do it with StringRe...
2009-09-20 Nick LewyckyValue* were never meant to be const. Removing constness...
2009-09-20 Chris Lattnerrewrite ParseCStringVector in terms of stringref.
2009-09-20 Chris Lattnermove a couple non-trivial methods out of line, add new
2009-09-20 Chris Lattnercoding style cleanup
2009-09-20 Chris Lattnerconvert a bunch more stuff to use StringRef. The ArgNa...
2009-09-20 Chris Lattneradd size_t and a version of rfind that allows specifica...
2009-09-20 Dale JohannesenWhen computing live intervals for earlyclobber operands,
2009-09-20 Chris Lattneravoid a bunch of malloc thrashing for PositinoalVals...
2009-09-20 Nick LewyckyTeach the constant folder how to handle a few simple...
2009-09-19 Chris LattnerAvoid some temporary strings.
2009-09-19 Chris Lattneradd some more overloads of StringRef::getAsInteger for
2009-09-19 Chris Lattneradd a simple c_str() method to SmallString.
2009-09-19 Bill WendlingRevert r82274. It's causing failures in the CINT2006...
2009-09-19 Daniel DunbarPrefer super class constructor to explicit initialization.
2009-09-19 Daniel DunbarTabs -> spaces (really?)
2009-09-19 Daniel DunbarFix indentation.
2009-09-19 Daniel DunbarStrip trailing whitespace.
2009-09-19 Daniel DunbarRHS of assignment should be const reference.
2009-09-19 Nick LewyckyRemove the default value for ConstantStruct::get's...
2009-09-19 Chris Lattnerprovide a "strtoull" operation that works on StringRef's.
2009-09-19 Nick LewyckyAdd a comment explaining why you would ever want to...
2009-09-19 Chris Lattnerconvert a bunch of std::strings to use StringRef. ...
2009-09-19 Nick LewyckyLett users of sparse propagation do their own thing...
2009-09-19 Duncan SandsThe flag "--dot-cfg-only" is at the moment equivalent...
2009-09-19 Evan ChengFix funky comments.
2009-09-19 Evan ChengUpdate comments.
2009-09-19 Benjamin KramerTry to speed up the slowest parts of the CommandLine...
2009-09-19 Evan ChengFix PR4926. When target hook EmitInstrWithCustomInserte...
2009-09-18 Victor HernandezEnhance transform passes so that they apply the same...
2009-09-18 Chris Lattnerremove an extraneous mem2reg pass early in the pipe...
2009-09-18 Chris Lattnerreduce indentation by using an early exit, and add...
2009-09-18 Bob WilsonFix a comment typo and some whitespace.
2009-09-18 Bob WilsonFix a typo in an assertion message.
2009-09-18 Bill WendlingFactor out label difference creation.
2009-09-18 Victor HernandezEnhance analysis passes so that they apply the same...
2009-09-18 Dan GohmanDelete the label names from this test to make it less...
2009-09-18 Bill WendlingIt's inefficient to have place the exception tables...
2009-09-18 Evan ChengEnhance EmitInstrWithCustomInserter() so target can...
2009-09-18 Shantonu SenFix cmake build, which has a different -I that
2009-09-18 Chris LattnerMake a new X8632_MachoTargetObjectFile TLOF implementat...
2009-09-18 Chris Lattneradd a new hook to allow targets to splat stuff at the...
2009-09-18 Dale JohannesenModel the carry bit on ppc32. Without this we could
next