Age | Commit message (Expand) | Author |
2010-11-10 | Simplify binary operations where one operand is a select instruction. | Duncan Sands |
2010-11-10 | Make ModRefBehavior a lattice. Use this to clean up AliasAnalysis | Dan Gohman |
2010-11-09 | VAArg doesn't capture its operand. | Dan Gohman |
2010-11-09 | Teach AliasAnalysis about AccessesArgumentsReadonly. | Dan Gohman |
2010-11-09 | Teach LICM and AliasSetTracker about AccessesArgumentsReadonly. | Dan Gohman |
2010-11-09 | Factorize code, no functionality change. | Duncan Sands |
2010-11-08 | Re-introduce the MaxLookup limit to BasicAliasAnalysis' | Dan Gohman |
2010-11-08 | Implement getModRefBehavior for TypeBasedAliasAnalysis. | Dan Gohman |
2010-11-08 | Extend the AliasAnalysis::pointsToConstantMemory interface to allow it | Dan Gohman |
2010-11-08 | Delete getIntrinsicModRefBehavior. Clients can just use the normal | Dan Gohman |
2010-11-08 | Teach BasicAliasAnalysis::getModRefBehavior(const Function *F) | Dan Gohman |
2010-11-07 | Add simplification of floating point comparisons with the result | Duncan Sands |
2010-11-07 | Fix a README item: when doing a comparison with the result | Duncan Sands |
2010-11-04 | Use arrays instead of constant-sized SmallVectors. | Benjamin Kramer |
2010-11-04 | Introduce DIBuilder. It is intended to be a front-end friendly interface to e... | Devang Patel |
2010-11-02 | Fix DIType verifier. The element 3 is DIFile now. | Devang Patel |
2010-10-29 | Make ScalarEvolution::forgetLoop forget all contained loops too, because | Dan Gohman |
2010-10-29 | Teach memdep to use pointsToConstantMemory to determine that loads | Dan Gohman |
2010-10-25 | Support TBAA attachments on calls. This is somewhat experimental. | Dan Gohman |
2010-10-25 | Fix chaining in TBAA's pointsToConstantMemory. | Dan Gohman |
2010-10-25 | Only read one bit for testing for a readonly type, leaving the other | Dan Gohman |
2010-10-25 | Add a comment. | Dan Gohman |
2010-10-25 | Update comments; BasicAA is no longer necessarily the end of the chain. | Dan Gohman |
2010-10-25 | Reintroduce these asserts, now that BasicAA is a normal AliasAnalysis pass. | Dan Gohman |
2010-10-22 | Make some symbols static, move classes into anonymous namespaces. | Benjamin Kramer |
2010-10-21 | Add some more documentation. | Dan Gohman |
2010-10-21 | Explain what "constant" means here. | Dan Gohman |
2010-10-21 | Update comments. | Dan Gohman |
2010-10-20 | Memdep says that an instruction clobbers itself | Dan Gohman |
2010-10-20 | Factor out the main aliasing check into a separate function. | Dan Gohman |
2010-10-20 | Fix comments; the type graph is currently a tree, not a DAG. | Dan Gohman |
2010-10-20 | Add RegionPass support. | Tobias Grosser |
2010-10-20 | Fix CMake build | Douglas Gregor |
2010-10-19 | Move NoAA out of BasicAliasAnalysis.cpp into its own file, now that | Dan Gohman |
2010-10-19 | Reapply r116831 and r116839, converting AliasAnalysis to use | Dan Gohman |
2010-10-19 | Revert r116831 and r116839, which are breaking selfhost builds. | Dan Gohman |
2010-10-19 | Change AliasAnalysis and its clients to use uint64_t instead of unsigned | Dan Gohman |
2010-10-19 | Get rid of static constructors for pass registration. Instead, every pass ex... | Owen Anderson |
2010-10-19 | Consistently use AliasAnalysis::UnknownSize instead of hardcoding ~0u. | Dan Gohman |
2010-10-18 | Make the representation of AliasSets explicitly differentiate | Dan Gohman |
2010-10-18 | Don't pass the raw invalid pointer used to represent conflicting | Dan Gohman |
2010-10-18 | Make AliasSetTracker TBAA-aware, enabling TBAA-enabled LICM. | Dan Gohman |
2010-10-18 | Fix BasicAA to pass TBAAInfo through to the chained analysis. | Dan Gohman |
2010-10-18 | Make TypeBasedAliasAnalysis default to doing nothing, with a command-line | Dan Gohman |
2010-10-18 | Use chaining in TypeBasedAliasAnalysis::pointsToConstantMemory. | Dan Gohman |
2010-10-18 | Make BasicAliasAnalysis a normal AliasAnalysis implementation which | Dan Gohman |
2010-10-16 | Eliminate some calls to Value::getNameStr. | Benjamin Kramer |
2010-10-14 | Tolerate a null parent pointer. | Dan Gohman |
2010-10-14 | add uadd_ov/usub_ov to apint, consolidate constant folding | Chris Lattner |
2010-10-13 | Analysis groups need to initialize their default implementations. | Owen Anderson |