Switch from new[] + delete[] to malloc + free since llvm does not catch C++ exceptions.
[oota-llvm.git] / lib / Transforms /
2009-02-13 Dan GohmanFix the code that checked if a SCEVAddRecExpr Start...
2009-02-13 Dan GohmanFix LSR's IV sorting function to explicitly sort by...
2009-02-12 Dan GohmanTeach IndVarSimplify to optimize code using the C ...
2009-02-12 Dan GohmanAdd a utility function to LoopInfo to return the exit...
2009-02-12 Dan GohmanThis code doesn't actually use the ExitingBlocks list.
2009-02-12 Chris LattnerFix a nasty bug (PR3550) where the inline pass could...
2009-02-12 Chris Lattnerimprove naming of values in GVN, patch by Jay Foad!
2009-02-12 Chris Lattnerfix PR3537: if resetting bbi back to the start of a...
2009-02-12 Nick LewyckyDon't mark all args to strtod and friends as nocapture.
2009-02-11 Nate Begemanthe two non-mask arguments to a shufflevector must...
2009-02-11 Devang PatelIf llvm.dbg.region.end is disappearing then remove...
2009-02-10 Devang PatelIgnore dbg intrinsic while folding unconditional branch.
2009-02-10 Devang PatelUse early exits. Reduce indentation.
2009-02-10 Devang Patel Do not clone llvm.dbg.func.start and corresponding...
2009-02-10 Devang PatelEnable scalar replacement of AllocaInst whose one of...
2009-02-09 Dale JohannesenFix PR 3471, and some cleanups.
2009-02-08 Bill WendlingMistakenly turned this on.
2009-02-08 Bill WendlingRevert r63999. It was breaking self-hosting builds.
2009-02-07 Mon P WangInstrcombine should not change load(cast p) to cast...
2009-02-07 Mike StumpInsert space to avoid warning and make code more readable.
2009-02-06 Devang PatelIgnore DbgInfoIntrinsics.
2009-02-06 Chris Lattnerfix PR3489, use bits instead of bytes.
2009-02-05 Devang PatelIgnore dbg intrinsics while propagating conditional...
2009-02-05 Devang PatelRevert rev. 63876. It is causing llvm-gcc bootstrap...
2009-02-05 Devang PatelRemove dead blocks in the end.
2009-02-05 Devang PatelIgnore dbg intrinsics while propagating conditional...
2009-02-05 Devang PatelIgnore dbg intrinsics while folding switch instruction.
2009-02-04 Devang PatelIgnore dbg intrinsics.
2009-02-04 Devang PatelWhile folding vallue comparison terminators ignore...
2009-02-04 Devang PatelIgnore dbg intrinsics while hoisting common code in...
2009-02-03 Devang PatelDo not let dbg intrinsic block folding of two entry...
2009-02-03 Devang PatelIf "optimize for size" attribute is set then block...
2009-02-03 Chris Lattnerteach "convert from scalar" to handle loads of fca's.
2009-02-03 Chris Lattnerrefactor the interface to ConvertUsesOfLoadToScalar,
2009-02-03 Chris Lattnerconvert ConvertUsesOfLoadToScalar to use IRBuilder,
2009-02-03 Chris Lattnerswitch ConvertScalar_InsertValue to use an IRBuilder, no
2009-02-03 Chris Lattnermake scalar conversion handle stores of first class
2009-02-03 Chris LattnerMake SROA produce a vector only when the alloca is...
2009-02-03 Evan ChengAPInt'fy SimplifyDemandedVectorElts so it can analyze...
2009-02-03 Chris Lattneradd another case of undefined behavior without crashing...
2009-02-03 Nick LewyckyRevert r63600. It didn't fix the bug, it just moved...
2009-02-03 Nick LewyckyUpdate the callgraph when replacing InvokeInst with...
2009-02-03 Chris LattnerTeach ConvertUsesToScalar to handle memset, allowing...
2009-02-03 Chris Lattnerrearrange how SRoA handles promotion of allocas to...
2009-02-02 Chris Lattnerinline SROA::ConvertToScalar, no functionality change.
2009-02-02 Chris LattnerFix a bug which caused us to miscompile a couple of Ada
2009-02-02 Duncan SandsFix a comment (bytes -> bits), reformat a comment
2009-02-02 Duncan SandsFix an obvious thinko.
2009-02-02 Chris Lattnerreduce indentation, (~XorCST->getValue()).isSignBit...
2009-01-31 Nick LewyckyReinstate this optimization to fold icmp of xor when...
2009-01-31 Chris LattnerFix PR3452 (an infinite loop bootstrapping) by disablin...
2009-01-31 Chris Lattnernow that all the pieces are in place, teach instcombine's
2009-01-31 Chris Lattnersimplify/clarify control flow and improve comments...
2009-01-31 Chris Lattnermake some fairly meaty internal changes to how Simplify...
2009-01-31 Chris Lattnerminor cleanups
2009-01-31 Chris Lattnermake sure to set Changed=true when instcombine hacks...
2009-01-31 Chris LattnerSimplify and generalize the SROA "convert to scalar...
2009-01-30 Gabor Greifuse precise getters
2009-01-28 Chris LattnerFix some issues with volatility, move "CanConvertToScal...
2009-01-28 Duncan SandsRename getAnalysisToUpdate to getAnalysisIfAvailable.
2009-01-26 Mon P WangFixed optimization of combining two shuffles where...
2009-01-26 Chris LattnerHandle single-entry phi nodes gracefully in condprop.
2009-01-26 Chris LattnerFix PR3408 by making a non-obvious assumption very...
2009-01-26 Chris LattnerMore cleanups and simplifications, no functionality...
2009-01-26 Chris Lattnertidy asserts
2009-01-25 Nick LewyckyThe function that does nothing but call malloc is noali...
2009-01-24 Dale JohannesenRevert previous change; even this mild and clearly
2009-01-24 Torok Edwintestcase for PR3381.
2009-01-24 Torok Edwinvoid* is represented as pointer to empty struct {}.
2009-01-24 Dale JohannesenImprove the inlining cost function a bit.
2009-01-24 Chris LattnerMake InstCombineStoreToCast handle aggregates more...
2009-01-23 Gabor Greifuse CallSite::isCalle instead of slow getOperandNo
2009-01-23 Gabor GreifSimplify the logic of getting hold of a PHI predecessor...
2009-01-22 Gabor Greifintroduce a useful abstraction to find out if a Use...
2009-01-21 Chris LattnerRemove uses of uint32_t in favor of 'unsigned' for...
2009-01-21 Dale JohannesenMake special cases (0 inf nan) work for frem.
2009-01-20 Chris Lattneranother fix for PR3354
2009-01-19 Bill WendlingDoxygen-ify comments.
2009-01-19 Chris LattnerFix a problem exposed by PR3354: simplifycfg was making...
2009-01-19 Chris Lattnerimprove compatibility with cygwin, patch by Jay Foad!
2009-01-19 Chris LattnerFix PR3353, infinitely jump threading an infinite loop...
2009-01-19 Bill WendlingTemporarily revert r62487. It's causing this error...
2009-01-19 Chris LattnerFix PR3016, a bug which can occur do to an invalid...
2009-01-19 Chris Lattnerreduce indentation by using 'continue', no functionalit...
2009-01-19 Chris LattnerFix some problems in SpeculativelyExecuteBB. Basically,
2009-01-18 Chris LattnerMake this a bit more explicit about which cases need the
2009-01-18 Chris LattnerFix rdar://6505632, an llc crash on 483.xalancbmk
2009-01-18 Duncan SandsBasicAliasAnalysis and FunctionAttrs were both
2009-01-18 Nick LewyckyFix copy and pasted typos that prevented strtok_r,...
2009-01-17 Gabor Greifintroduce typedef for complicated vector, and use it too
2009-01-16 Gabor Greiftypo
2009-01-16 Chris LattnerFix PR3335 by not turning a store to one address space...
2009-01-16 Chris Lattnerreduce indentation by using early exits, no functionali...
2009-01-16 Evan ChengClean up previous cast optimization a bit. Also make...
2009-01-15 Rafael EspindolaAdd the private linkage.
2009-01-15 Gabor Greifavoid using iterators when they get invalidated potentially
2009-01-15 Evan ChengEliminate a redundant check.
2009-01-15 Evan Cheng- Teach CanEvaluateInDifferentType of this xform: sext...
2009-01-14 Chris LattnerFix PR3325, a miscompilation of invokes by IPSCCP....
2009-01-14 Dale JohannesenFix the time regression I introduced in 464.h264ref...
next