Fix batch of converting RegisterPass<> to INTIALIZE_PASS().
[oota-llvm.git] / lib / Transforms / Scalar / SCCP.cpp
2010-07-21 Owen AndersonFix batch of converting RegisterPass<> to INTIALIZE_PASS().
2010-04-26 Chris Lattnerfix PR6940: sitofp(undef) folds to 0.0, not undef.
2010-04-09 Chris Lattnerfix a SCCP miscompilation that could happen when a
2010-04-05 Chris Lattnerfix a really nasty bug that Evan was tracking in SCCP...
2010-04-01 Gabor GreifIntroduce ImmutableCallSite, useful for contexts where...
2010-03-25 Gabor Greifrename use_const_iterator to const_use_iterator for...
2010-03-24 Gabor GreifFinally land the InvokeInst operand reordering.
2010-03-24 Gabor Greifincrease const goodness and remove pointless getUser...
2010-02-27 Chris Lattnerfix grammaro's pointed out by daniel
2010-02-27 Chris Lattnerfix PR6414, a nondeterminism issue in IPSCCP which...
2010-02-16 Duncan SandsThere are two ways of checking for a given type, for...
2010-01-05 David GreeneChange errs() to dbgs().
2009-11-23 Dan GohmanFix a use of an invalidated iterator in the case where...
2009-11-20 Dan GohmanFix IPSCCP's code for deleting dead blocks to tolerate...
2009-11-10 Chris Lattnerfix a crash in SCCP handling extractvalue of an array...
2009-11-05 Benjamin KramerDo map insert+find in one step. TODO -= 2.
2009-11-04 Chris LattnerFix an iterator invalidation bug that happens when...
2009-11-03 Chris Lattnerreimplement multiple return value handling in IPSCCP...
2009-11-03 Chris Lattnerfinish half thunk thought
2009-11-03 Chris Lattnerfix an IPSCCP bug I introduced when I changed IPSCCP...
2009-11-03 Chris Lattnerfix a subtle bug I introduced when refactoring SCCP...
2009-11-03 Chris Lattnerturn IPSCCP back on now that the iterator invalidation...
2009-11-02 Chris Lattnerfix a nasty iterator invalidation bug from my conversio...
2009-11-02 Chris Lattnerrevert r8579[56], which are causing unhappiness in...
2009-11-02 Chris Lattnerdisable IPSCCP support for multiple return values,...
2009-11-02 Chris Lattnerimprove IPSCCP to be able to propagate the result of...
2009-11-02 Chris Lattnerdon't mark the arguments of prototype overdefined,...
2009-11-02 Chris Lattnerrestore some code I removed in r85788, refactor it...
2009-11-02 Chris Lattnerremove some confused code that dates from when we had
2009-11-02 Chris Lattneravoid redundant lookups in BBExecutable, and make it...
2009-11-02 Chris LattnerUse the libanalysis 'ConstantFoldLoadFromConstPtr'...
2009-11-02 Chris Lattnerswitch the main 'ValueState' map from being an std...
2009-11-02 Chris Lattneronly IPSCCP incoming arguments if the function is execu...
2009-11-02 Chris Lattneradd a new ValueState::getConstantInt() helper, use...
2009-11-02 Chris Lattnertidy up some more: remove some extraneous inline specif...
2009-11-02 Chris Lattnereliminate the SCCPSolver::getValueMapping method.
2009-11-02 Chris Lattnerfix failures introduced in r85774
2009-11-02 Chris Lattnerfactor duplicated code into a new DeleteInstructionInBlock
2009-11-02 Chris LattnerChris used to use '...' instead of proper grammar.
2009-11-02 Chris Lattnerremove some extraneous llvmcontext stuff.
2009-11-02 Chris Lattnerchange LatticeVal to use PointerIntPair to save some...
2009-11-01 Chris Lattnerteach ipsccp and ipconstprop that a blockaddress doesn...
2009-10-29 Chris Lattnerteach various passes about blockaddress. We no longer
2009-10-27 Victor HernandezRename MallocFreeHelper as MemoryBuiltins
2009-10-26 Victor HernandezRename MallocHelper as MallocFreeHelper, since it now...
2009-10-26 Victor HernandezRemove FreeInst.
2009-10-24 Victor HernandezAuto-upgrade free instructions to calls to the builtin...
2009-10-23 Victor HernandezRemove AllocationInst. Since MallocInst went away...
2009-10-20 Torok EdwinFix PR4313: IPSCCP was not setting the lattice value...
2009-10-05 Dan GohmanRemove an unnnecessary LLVMContext argument in
2009-10-05 Chris Lattnerstrength reduce a ton of type equality tests to check...
2009-09-27 Chris Lattnercalls to external functions are already marked overdefi...
2009-09-24 Torok EdwinConstant propagating byval pointer is safe if function...
2009-09-24 Torok EdwinDon't constant propagate byval pointers, since they...
2009-09-18 Victor HernandezEnhance transform passes so that they apply the same...
2009-09-02 Chris Lattnereliminate VISIBILITY_HIDDEN from Transforms/Scalar...
2009-08-30 Chris Lattneradd getPointerAddressSpace() to GEP instruction, use...
2009-08-23 Chris Lattnereliminate the "Value" printing methods that print to...
2009-08-17 Dan GohmanFix debug output to include a newline after printing...
2009-08-13 Owen AndersonPush LLVMContexts through the IntegerType APIs.
2009-07-31 Owen AndersonMove a few more APIs back to 2.5 forms. The only remai...
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-29 Owen AndersonMove ConstantExpr to 2.5 API.
2009-07-26 Daniel DunbarEliminate some uses of DOUT, cerr, and getNameStart().
2009-07-25 Daniel DunbarMore migration to raw_ostream, the water has dried...
2009-07-22 Owen AndersonGet rid of the Pass+Context magic.
2009-07-21 Owen AndersonRename getConstantInt{True|False} to get{True|False...
2009-07-16 Owen AndersonMove the ConstantInt uniquing table into LLVMContextImp...
2009-07-14 Torok Edwinllvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE...
2009-07-13 Owen AndersonMove more functionality over to LLVMContext.
2009-07-11 Torok Edwinassert(0) -> LLVM_UNREACHABLE.
2009-07-11 Torok EdwinConvert more assert(0)+abort() -> LLVM_UNREACHABLE,
2009-07-06 Owen Anderson"LLVMContext* " --> "LLVMContext *"
2009-07-06 Owen AndersonFinish LLVMContext-ing lib/Analysis. This required...
2009-07-06 Owen AndersonThread LLVMContext through the constant folding APIs...
2009-07-03 Owen AndersonEven more passes being LLVMContext'd.
2009-06-06 Nick LewyckyDon't crash on multiple return value with no obvious...
2009-05-28 Nick LewyckyUse Operands.data() instead of &Operands[0] where Opera...
2009-03-21 Duncan SandsFactorize out a concept - no functionality change.
2009-03-20 Duncan SandsDon't load values out of global constants with weak
2009-01-15 Rafael EspindolaAdd the private linkage.
2009-01-14 Chris LattnerFix PR3325, a miscompilation of invokes by IPSCCP....
2008-11-21 Devang PatelFix unused variable warnings.
2008-11-03 Nick LewyckyReplace explicit loop with utility function.
2008-09-04 Dan GohmanTidy up several unbeseeming casts from pointer to intptr_t.
2008-08-23 Chris Lattnerimprove encapsulation of the BBExecutable set.
2008-08-23 Chris LattnerSwitch an assortment of maps, sets and vectors to more...
2008-08-14 Bill WendlingTemporarily revert r54792. It's causing an ICE during...
2008-08-14 Devang PatelUse DenseMap. Patch by Pratik Solanki.
2008-08-13 Dan GohmanFix SCCP's handling of struct value loads and stores...
2008-07-23 Dan GohmanEnable first-class aggregates support.
2008-06-20 Dan GohmanTidy up some commments and use the getAggregateOperand and
2008-06-20 Dan GohmanFix the conditions under which SCCP should examine...
2008-06-20 Dan GohmanTeach SCCP about insertvalue and extractvalue, and...
2008-05-24 Chris LattnerFix PR2358 by resolving calls with undef arguments...
2008-05-23 Dale JohannesenAllow for switch with no cases. Was causing fault
2008-05-13 Dan GohmanClean up the use of static and anonymous namespaces...
2008-05-11 Chris LattnerFix various DOUTs to not call the extremely expensive...
2008-05-10 Chris LattnerSimplify code by using SwitchInst::findCaseValue instea...
next