| Commit message (Expand) | Author | Age | Files | Lines |
* | SCCP doesn't actually preserve the CFG. It will delete and insert terminator | Nick Lewycky | 2011-01-21 | 1 | -4/+0 |
* | simplify a little | Chris Lattner | 2011-01-16 | 1 | -7/+3 |
* | Avoid exponential growth of a table. It feels like | Dale Johannesen | 2010-11-30 | 1 | -5/+22 |
* | Get rid of static constructors for pass registration. Instead, every pass ex... | Owen Anderson | 2010-10-19 | 1 | -2/+6 |
* | Now with fewer extraneous semicolons! | Owen Anderson | 2010-10-07 | 1 | -2/+2 |
* | remove some dead code. | Chris Lattner | 2010-08-18 | 1 | -3/+2 |
* | fix PR7876: If ipsccp decides that a function's address is taken | Chris Lattner | 2010-08-12 | 1 | -4/+15 |
* | Reapply r110396, with fixes to appease the Linux buildbot gods. | Owen Anderson | 2010-08-06 | 1 | -2/+2 |
* | Revert r110396 to fix buildbots. | Owen Anderson | 2010-08-06 | 1 | -2/+2 |
* | Don't use PassInfo* as a type identifier for passes. Instead, use the addres... | Owen Anderson | 2010-08-05 | 1 | -2/+2 |
* | simplify by using CallSite constructors; virtually eliminates CallSite::get f... | Gabor Greif | 2010-07-28 | 1 | -2/+2 |
* | Fix batch of converting RegisterPass<> to INTIALIZE_PASS(). | Owen Anderson | 2010-07-21 | 1 | -4/+5 |
* | fix PR6940: sitofp(undef) folds to 0.0, not undef. | Chris Lattner | 2010-04-26 | 1 | -0/+2 |
* | fix a SCCP miscompilation that could happen when a | Chris Lattner | 2010-04-09 | 1 | -3/+10 |
* | fix a really nasty bug that Evan was tracking in SCCP. When resolving | Chris Lattner | 2010-04-05 | 1 | -29/+32 |
* | Introduce ImmutableCallSite, useful for contexts where no mutation | Gabor Greif | 2010-04-01 | 1 | -1/+1 |
* | rename use_const_iterator to const_use_iterator for consistency's sake | Gabor Greif | 2010-03-25 | 1 | -1/+1 |
* | Finally land the InvokeInst operand reordering. | Gabor Greif | 2010-03-24 | 1 | -1/+2 |
* | increase const goodness and remove pointless getUser() calls | Gabor Greif | 2010-03-24 | 1 | -7/+9 |
* | fix grammaro's pointed out by daniel | Chris Lattner | 2010-02-27 | 1 | -2/+2 |
* | fix PR6414, a nondeterminism issue in IPSCCP which was because | Chris Lattner | 2010-02-27 | 1 | -1/+15 |
* | There are two ways of checking for a given type, for example isa<PointerType>(T) | Duncan Sands | 2010-02-16 | 1 | -21/+21 |
* | Change errs() to dbgs(). | David Greene | 2010-01-05 | 1 | -21/+21 |
* | Fix a use of an invalidated iterator in the case where there are multiple | Dan Gohman | 2009-11-23 | 1 | -1/+5 |
* | Fix IPSCCP's code for deleting dead blocks to tolerate outstanding | Dan Gohman | 2009-11-20 | 1 | -2/+6 |
* | fix a crash in SCCP handling extractvalue of an array, pointed out and | Chris Lattner | 2009-11-10 | 1 | -3/+8 |
* | Do map insert+find in one step. TODO -= 2. | Benjamin Kramer | 2009-11-05 | 1 | -15/+15 |
* | Fix an iterator invalidation bug that happens when a hashtable | Chris Lattner | 2009-11-04 | 1 | -3/+4 |
* | reimplement multiple return value handling in IPSCCP, making it | Chris Lattner | 2009-11-03 | 1 | -125/+205 |
* | finish half thunk thought | Chris Lattner | 2009-11-03 | 1 | -1/+3 |
* | fix an IPSCCP bug I introduced when I changed IPSCCP to start working on | Chris Lattner | 2009-11-03 | 1 | -19/+31 |
* | fix a subtle bug I introduced when refactoring SCCP. Testcase | Chris Lattner | 2009-11-03 | 1 | -1/+1 |
* | turn IPSCCP back on now that the iterator invalidation bug is fixed. | Chris Lattner | 2009-11-03 | 1 | -36/+50 |
* | fix a nasty iterator invalidation bug from my conversion from | Chris Lattner | 2009-11-02 | 1 | -3/+2 |
* | revert r8579[56], which are causing unhappiness in buildbot land. | Chris Lattner | 2009-11-02 | 1 | -50/+36 |
* | disable IPSCCP support for multiple return values, it is buggy, so just | Chris Lattner | 2009-11-02 | 1 | -1/+2 |
* | improve IPSCCP to be able to propagate the result of "!mayBeOverridden" | Chris Lattner | 2009-11-02 | 1 | -36/+49 |
* | don't mark the arguments of prototype overdefined, they will never be queried. | Chris Lattner | 2009-11-02 | 1 | -3/+6 |
* | restore some code I removed in r85788, refactor it into | Chris Lattner | 2009-11-02 | 1 | -4/+18 |
* | remove some confused code that dates from when we had | Chris Lattner | 2009-11-02 | 1 | -10/+2 |
* | avoid redundant lookups in BBExecutable, and make it a SmallPtrSet. | Chris Lattner | 2009-11-02 | 1 | -14/+16 |
* | Use the libanalysis 'ConstantFoldLoadFromConstPtr' function | Chris Lattner | 2009-11-02 | 1 | -18/+11 |
* | switch the main 'ValueState' map from being an std::map to being | Chris Lattner | 2009-11-02 | 1 | -311/+281 |
* | only IPSCCP incoming arguments if the function is executable, this fixes | Chris Lattner | 2009-11-02 | 1 | -15/+17 |
* | add a new ValueState::getConstantInt() helper, use it to | Chris Lattner | 2009-11-02 | 1 | -52/+53 |
* | tidy up some more: remove some extraneous inline specifiers, return harder. | Chris Lattner | 2009-11-02 | 1 | -126/+95 |
* | eliminate the SCCPSolver::getValueMapping method. | Chris Lattner | 2009-11-02 | 1 | -25/+23 |
* | fix failures introduced in r85774 | Chris Lattner | 2009-11-02 | 1 | -1/+2 |
* | factor duplicated code into a new DeleteInstructionInBlock | Chris Lattner | 2009-11-02 | 1 | -92/+80 |
* | Chris used to use '...' instead of proper grammar. | Chris Lattner | 2009-11-02 | 1 | -30/+32 |