Age | Commit message (Expand) | Author |
2013-01-27 | Use the AttributeSet instead of AttributeWithIndex. | Bill Wendling |
2013-01-23 | Remove the last of uses that use the Attribute object as a collection of attr... | Bill Wendling |
2013-01-21 | Have AttributeSet::getRetAttributes() return an AttributeSet instead of Attri... | Bill Wendling |
2013-01-21 | Make AttributeSet::getFnAttributes() return an AttributeSet instead of an Att... | Bill Wendling |
2013-01-18 | Use AttributeSet accessor methods instead of Attribute accessor methods. | Bill Wendling |
2013-01-18 | Push some more methods down to hide the use of the Attribute class. | Bill Wendling |
2013-01-07 | Move CallGraphSCCPass.h into the Analysis tree; that's where the | Chandler Carruth |
2013-01-02 | Move all of the header files which are involved in modelling the LLVM IR | Chandler Carruth |
2012-12-30 | Remove Function::getParamAttributes and use the AttributeSet accessor methods... | Bill Wendling |
2012-12-19 | Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl... | Bill Wendling |
2012-12-07 | s/AttrListPtr/AttributeSet/g to better label what this class is going to be i... | Bill Wendling |
2012-12-03 | Use the new script to sort the includes of every file under lib. | Chandler Carruth |
2012-11-20 | Make the AttrListPtr object a part of the LLVMContext. | Bill Wendling |
2012-10-15 | Add an enum for the return and function indexes into the AttrListPtr object. ... | Bill Wendling |
2012-10-14 | Remove operator cast method in favor of querying with the correct method. | Bill Wendling |
2012-10-09 | Create enums for the different attributes. | Bill Wendling |
2012-10-04 | Use method to query for attributes. | Bill Wendling |
2012-09-30 | ArgumentPromotion: Remove ancient workaround for a bug in the C backend. | Benjamin Kramer |
2012-07-19 | Replace some explicit compare loops with std::equal. | Benjamin Kramer |
2012-05-28 | switch AttrListPtr::get to take an ArrayRef, simplifying a lot of clients. | Chris Lattner |
2011-08-15 | Update inter-procedural optimizations for atomic load/store. | Eli Friedman |
2011-07-25 | Convert GetElementPtrInst to use ArrayRef. | Jay Foad |
2011-07-18 | land David Blaikie's patch to de-constify Type, with a few tweaks. | Chris Lattner |
2011-07-15 | Convert CallInst and InvokeInst APIs to use ArrayRef. | Jay Foad |
2011-07-12 | Second attempt at de-constifying LLVM Types in FunctionType::get(), | Jay Foad |
2011-07-12 | Revert r134893 and r134888 (and related patches in other trees). It was causing | Bill Wendling |
2011-07-11 | De-constify Types in FunctionType::get(). | Jay Foad |
2011-04-15 | Fix a ton of comment typos found by codespell. Patch by | Chris Lattner |
2011-01-16 | fix PR8932, a case where arg promotion could infinitely promote. | Chris Lattner |
2010-11-11 | Add helper functions for computing the Location of load, store, | Dan Gohman |
2010-11-11 | Factor out Instruction::isSafeToSpeculativelyExecute's code for | Dan Gohman |
2010-11-11 | TBAA-enable ArgumentPromotion. | Dan Gohman |
2010-10-19 | Reapply r116831 and r116839, converting AliasAnalysis to use | Dan Gohman |
2010-10-19 | Get rid of static constructors for pass registration. Instead, every pass ex... | Owen Anderson |
2010-10-13 | CallGraphSCC passes implicity require CallGraph analysis. | Owen Anderson |
2010-10-12 | Begin adding static dependence information to passes, which will allow us to | Owen Anderson |
2010-10-07 | Now with fewer extraneous semicolons! | Owen Anderson |
2010-08-06 | Reapply r110396, with fixes to appease the Linux buildbot gods. | Owen Anderson |
2010-08-06 | Revert r110396 to fix buildbots. | Owen Anderson |
2010-08-05 | Don't use PassInfo* as a type identifier for passes. Instead, use the addres... | Owen Anderson |
2010-07-28 | simplify by using CallSite constructors; virtually eliminates CallSite::get f... | Gabor Greif |
2010-07-21 | Fix batch of converting RegisterPass<> to INTIALIZE_PASS(). | Owen Anderson |
2010-07-12 | cache result of operator* | Gabor Greif |
2010-04-20 | Fix rdar://7879828 - crash in CallGraph, a self host issue. | Chris Lattner |
2010-04-16 | introduce a new CallGraphSCC class, and pass it around | Chris Lattner |
2010-03-27 | When we promote a load of an argument make sure to take the alignment | Eric Christopher |
2010-03-23 | add assert in argpromotion, which cannot trigger | Gabor Greif |
2010-02-25 | Correct whitespace. | Nick Lewycky |
2010-02-16 | There are two ways of checking for a given type, for example isa<PointerType>(T) | Duncan Sands |
2010-02-10 | Fix "the the" and similar typos. | Dan Gohman |