aboutsummaryrefslogtreecommitdiff
path: root/lib/VMCore
AgeCommit message (Expand)Author
2012-10-11Add the LLVM context to this c'tor. It will be needed in the future.Bill Wendling
2012-10-11Support a common idiom on how to build an Attributes class with a single attr...Bill Wendling
2012-10-10Add a new interface to allow IR-level passes to access codegen-specific infor...Nadav Rotem
2012-10-10Revert r165652: "Remove unnecessary RTTI from the build."Sean Silva
2012-10-10Remove unnecessary RTTI from the build.Sean Silva
2012-10-10Cleanup. Get rid of now dead code.Bill Wendling
2012-10-10Remove the final bits of Attributes being declared in the AttributeBill Wendling
2012-10-09Use the attribute enums to query if a function has an attribute.Bill Wendling
2012-10-09Use the attribute enums to query if a parameter has an attribute.Bill Wendling
2012-10-09Revert r165547 to fix build.Bill Wendling
2012-10-09Use a single location for calculating the alignments.Bill Wendling
2012-10-09Use appropriate method calls to get the alignment value.Bill Wendling
2012-10-09Inline the checks for mutually exclusive attributes since they're used in onl...Bill Wendling
2012-10-09Move the 'FunctionOnly' attributes thingy inside of the Attributes class.Bill Wendling
2012-10-09Add in the first step of the multiple pointer support. This adds in support t...Micah Villmow
2012-10-09Move the 'ParameterOnly' variable inside of the Attributes class and make it ...Bill Wendling
2012-10-09Remove the now dead VarArgsIncompatible variable.Bill Wendling
2012-10-09Use the enum value of the attributes when removing them from the attributes b...Bill Wendling
2012-10-09Use the enum value of the attributes when adding them to the attributes builder.Bill Wendling
2012-10-09Fix PR14016.Alexey Samsonov
2012-10-09Create enums for the different attributes.Bill Wendling
2012-10-09Remove some dead methods.Bill Wendling
2012-10-09Remove more uses of the attribute enums by supplying appropriate query method...Bill Wendling
2012-10-09Convert to using the Attributes::Builder interface.Bill Wendling
2012-10-08Use the Attributes::Builder to build the attributes in the parser.Bill Wendling
2012-10-08Convert the LLVM parser over to using the new Attributes::Builder to build itsBill Wendling
2012-10-08Begin the transition to using the AttributesImpl object for the Attributes ivar.Bill Wendling
2012-10-08Move TargetData to DataLayout.Micah Villmow
2012-10-07Move more methods out-of-line. This is in preparation for changing the internalBill Wendling
2012-10-05Implement TargetData with the DataLayout class, this will allow LLVM projects...Micah Villmow
2012-10-05Move methods out-of-line.Bill Wendling
2012-10-05Use method to query for attributes.Bill Wendling
2012-10-05Make sure to generate the right kind of MDNode for enum forward declarations.Eli Friedman
2012-10-04Rename the Target specific passes in the DataLayout class to be Target agnostic.Micah Villmow
2012-10-04Resubmit the copying of TargetData to DataLayout without any changes to the f...Micah Villmow
2012-10-04Backing out my changes, something screwed up from my patches, starting over.Micah Villmow
2012-10-04Rename TargetData to DataLayout in DataLayout.cpp. This should fix a build fa...Micah Villmow
2012-10-04Create the DataLayout class, as a direct copy of TargetData.Micah Villmow
2012-10-04Accidently checked in the files, only wanted to copy them.Micah Villmow
2012-10-04git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165243 91177308-0d34...Micah Villmow
2012-10-04Add method to query for NoCapture attribute.Bill Wendling
2012-10-04Use method to query for attributes.Bill Wendling
2012-10-04Add method to query for 'NoAlias' attribute on call/invoke instructions.Bill Wendling
2012-10-03Add methods which query for the specific attribute instead of using theBill Wendling
2012-09-27Revert 'Fix a typo 'iff' => 'if''. iff is an abreviation of if and only if. S...Sylvestre Ledru
2012-09-27Fix a typo 'iff' => 'if'Sylvestre Ledru
2012-09-26Add IRBuilder code for adding !tbaa.struct metadata tags to llvm.memcpy calls.Dan Gohman
2012-09-26Query the parameter attributes directly instead of using the Attribute symbols.Bill Wendling
2012-09-26Initial commit for the AttributesImpl class.Bill Wendling
2012-09-26Replace calls to getSizeInBits with getExtendedSizeInBits since its already k...Craig Topper