convert the DIE printing stuff to use raw_ostream instead of std::ostream.
[oota-llvm.git] / lib / Transforms /
2009-08-20 Dan GohmanRename hasNoUnsignedOverflow and hasNoSignedOverflow...
2009-08-19 Dan GohmanFix a few places to check if TargetData is available...
2009-08-19 Dan GohmanMake SROA and PredicateSimplifier cope if TargetData...
2009-08-19 Dan GohmanUse hasDefinitiveInitializer() instead of testing the...
2009-08-19 Nick LewyckyFix up PHI nodes correctly in the presence of unreachab...
2009-08-19 Nick LewyckyBe more careful when modifying PHI nodes. Patch by...
2009-08-19 Dan GohmanFix SimplifyLibcalls and ValueTracking to check mayBeOv...
2009-08-18 Dan GohmanFix a bug that caused globalopt to miscompile tramp3d...
2009-08-18 Dan GohmanMake TargetData optional in MemCpyOptimizer.
2009-08-18 Dan GohmanMake TargetData optional in SimplifyLibCalls.
2009-08-18 Anton KorobeynikovThe attached patches attempt to fix cross builds. For...
2009-08-17 Dan GohmanUpdate comments to new-style syntax.
2009-08-17 Nick LewyckyDon't crash on critical edge. Patch by Andre Tavares.
2009-08-17 Dan GohmanFix debug output to include a newline after printing...
2009-08-17 Duncan SandsDon't access the first element of a potentially empty
2009-08-17 Nick LewyckyDon't crash trying to promote VLAs.
2009-08-16 Eli FriedmanFix for PR3016: detect the tricky case, where there are
2009-08-15 Benjamin KramerDon't try to get the context from an erased Instruction.
2009-08-15 Nick LewyckySSI construction should just go ahead and ignore instru...
2009-08-14 Dan GohmanMake TargetData optional in GlobalOpt and ArgumentPromo...
2009-08-13 Owen AndersonActually privatize a IntegerTypes, and fix a few bugs...
2009-08-13 Owen AndersonPush LLVMContexts through the IntegerType APIs.
2009-08-13 Mon P WangWhen InstCombine simplifies a load -> extract element...
2009-08-13 Andreas BolkaSimplify conditional.
2009-08-13 Andreas BolkaSimplify and reduce indentation using early exits.
2009-08-13 Andreas BolkaDEBUGify some DOUTs.
2009-08-13 Andreas BolkaPrune trailing whitespace.
2009-08-12 Dan GohmanTransform -X/C to X/-C, implementing a README.txt entry.
2009-08-12 Dan GohmanOptimize (x/C)*C to x if the division is exact.
2009-08-12 Dan GohmanUpdate instcombine's debug output to account for Value...
2009-08-12 Dan GohmanRemove a bunch more now-unnecessary Context arguments.
2009-08-12 Dan GohmanEliminate a bunch of now unnecessary explicit Context...
2009-08-12 Owen AndersonAdd contexts to some of the MVT APIs. No functionality...
2009-08-11 Dan GohmanOptimize exact sdiv by a constant power of 2 to ashr.
2009-08-11 Dan GohmanRemove unnecessary casts.
2009-08-11 Devang PatelRemove dead metadata.
2009-08-10 Owen AndersonRename MVT to EVT, in preparation for splitting SimpleV...
2009-08-08 Daniel DunbarMore ProfileInfo improvements.
2009-08-07 Devang PatelFix dom frontier update. This fixes PR4667.
2009-08-07 Dan GohmanFix a bunch of namespace pollution.
2009-08-06 Devang PatelUse DebugInfoFinder.
2009-08-05 Owen AndersonPrivatize the StructType table, which unfortunately...
2009-08-04 Dan GohmanCheck for !isa<Constant> instead of isa<Instruction...
2009-08-03 Dan GohmanAdd a new Constant::getIntegerValue helper function...
2009-08-03 Eli FriedmanMake SimplifyDemandedUseBits generate vector constants...
2009-07-31 Owen AndersonMove a few more APIs back to 2.5 forms. The only remai...
2009-07-31 Dan GohmanFix GVN's debug output, now that operator<< on Value...
2009-07-31 Bill Wendling- Convert the rest of the DOUTs to DEBUG+errs().
2009-07-31 Eli FriedmanPR4662: Fix a crash introduced by the recent LLVMContex...
2009-07-31 Owen AndersonMove getTrue() and getFalse() to 2.5-like APIs.
2009-07-30 Owen AndersonMove more code back to 2.5 APIs.
2009-07-30 Daniel DunbarTwines: Don't allow implicit conversion from integers...
2009-07-30 Daniel DunbarSwitch obvious clients to Twine instead of utostr ...
2009-07-29 Douglas GregorEliminate a few unused-variable warnings
2009-07-29 Owen AndersonMove types back to the 2.5 API.
2009-07-29 Daniel DunbarFix PR4645 which was fallout from the fix for PR4641.
2009-07-29 Benjamin KramerRemove now unused Context variables.
2009-07-29 Owen AndersonMove ConstantExpr to 2.5 API.
2009-07-29 Nick LewyckyBulk erasing instructions without RAUWing them is unsaf...
2009-07-28 Devang PatelRename MDNode.h header. It defines MDnode and other...
2009-07-28 Owen AndersonReturn ConstantVector to 2.5 API.
2009-07-28 Owen AndersonChange ConstantArray to 2.5 API.
2009-07-28 Dan GohmanTeach instcombine to respect and preserve inbounds...
2009-07-28 Mike StumpFix a small little typo.
2009-07-28 Dan GohmanReplace dyn_castGetElementPtr with dyn_cast<GEPOperator>.
2009-07-28 Dan GohmanGrab the LLVMContext and parent Module of SI ahead...
2009-07-27 Mike StumpFix a release-asserts warning. Debug functions should...
2009-07-27 Mike StumpAvoid build warnings.
2009-07-27 Owen AndersonMove ConstantStruct back to 2.5 API.
2009-07-27 Owen AndersonMove ConstantFP construction back to the 2.5-ish API.
2009-07-27 Devang PatelDo not seed mstadata into the value map.
2009-07-26 Daniel DunbarRemove Value::getName{Start,End}, the last of the old...
2009-07-26 Daniel DunbarRemove Value::getNameLen
2009-07-26 Daniel DunbarEliminate some uses of DOUT, cerr, and getNameStart().
2009-07-25 Daniel DunbarRemove Value::{isName, getNameRef}.
2009-07-25 Daniel DunbarInitial update to VMCore to use Twines for string argum...
2009-07-25 Eric ChristopherFix 80-col violations.
2009-07-25 Eric ChristopherMove ExtractElementInst to ::Create instead of new...
2009-07-25 Dan GohmanConvert a few more things to use raw_ostream.
2009-07-25 Dan GohmanConvert a few more uses of llvm/Support/Streams.h to...
2009-07-25 Dan GohmanMake AliasAnalysis and related classes use
2009-07-25 Daniel DunbarMore migration to raw_ostream, the water has dried...
2009-07-24 Owen AndersonRevert the ConstantInt constructors back to their 2...
2009-07-24 Dan GohmanAliasAnalysis wants sizes in address-units, not bits.
2009-07-24 Dan GohmanFix this condition I accidentally inverted.
2009-07-24 Dan GohmanConvert several more passes to use getAnalysisIfAvailab...
2009-07-24 Daniel DunbarMove more to raw_ostream, provide support for writing...
2009-07-24 Daniel DunbarSwitch to getNameStr().
2009-07-23 Daniel DunbarConvert StringMap to using StringRef for its APIs.
2009-07-23 Chris Lattnerrefactor a blob of code out to a new 'FoldOrOfFCmps...
2009-07-23 Chris LattnerMake some existing optimizations that would only trigge...
2009-07-23 Chris Lattnerrefactor a bunch of code out into a helper function,
2009-07-22 Daniel DunbarRemove unnecessary store to temporary std::string.
2009-07-22 Eli FriedmanDon't give a massive inlining cost bonus to available_e...
2009-07-22 Owen AndersonGet rid of the Pass+Context magic.
2009-07-21 Dan GohmanConvert instcombine from using using getAnalysis<Target...
2009-07-21 Owen AndersonRename getConstantInt{True|False} to get{True|False...
2009-07-21 Ted KremenekUpdate CMake files.
2009-07-21 Owen AndersonMove a bit more state over to the LLVMContext.
2009-07-20 Chris Lattneruse ExpandInlineAsm on TargetLowering instead of Target...
next