aboutsummaryrefslogtreecommitdiff
path: root/lib/VMCore
AgeCommit message (Expand)Author
2013-01-02Rename VMCore directory to IR.Chandler Carruth
2012-12-31Add some comparison operators to compare the Attribute object with the AttrKi...Bill Wendling
2012-12-31Remove the getAttributesAtIndex and getNumAttrs methods in favor of using the...Bill Wendling
2012-12-30Use the predicate methods off of AttributeSet instead of Attribute.Bill Wendling
2012-12-30Remove Function::getParamAttributes and use the AttributeSet accessor methods...Bill Wendling
2012-12-30Remove the Function::getFnAttributes method in favor of using the AttributeSetBill Wendling
2012-12-30s/hasAttribute/contains/g to be more consistent with other method names.Bill Wendling
2012-12-30Add a few more c'tors:Bill Wendling
2012-12-30Add a few (as yet unused) query methods to determine if the attribute that'sBill Wendling
2012-12-30Uniquify the AttributeImpl based on the Constant pointer, since those areBill Wendling
2012-12-30s/Raw/getBitMask/g to be more in line with current naming conventions. This m...Bill Wendling
2012-12-29Use a 'Constant' object instead of a bit field to store the attribute data.Bill Wendling
2012-12-29Use the accessor method instead of the raw ivar to get the bits.Bill Wendling
2012-12-2680 columns. No functionality change.Nick Lewycky
2012-12-25Rename LLVMContext diagnostic handler types and functions.Bob Wilson
2012-12-24Add LLVMContext::emitWarning methods and use them. <rdar://problem/12867368>Bob Wilson
2012-12-24Added 6 more value types: v32i1, v64i1, v32i16, v32i8, v64i8, v8f64Elena Demikhovsky
2012-12-22Change 'AttrVal' to 'AttrKind' to better reflect that it's a kind of attribut...Bill Wendling
2012-12-20Some random comment, naming, and format changes.Bill Wendling
2012-12-20Add a new attribute, 'noduplicate'. If a function contains a noduplicate call...James Molloy
2012-12-20Don't use isa<CallInst>(this) in the constructor for CallInst's base class.Richard Smith
2012-12-20Don't use -1 as a value of an unsigned 7-bit enumeration; that has undefinedRichard Smith
2012-12-20s/AttributesImpl/AttributeImpl/g This is going to apply to Attribute, not Att...Bill Wendling
2012-12-19Add a context so that once we uniquify strings we can access them easily.Bill Wendling
2012-12-19Refactor isIntrinsic() to be quicker, and change classof() (and thus, isa<Int...Michael Ilseman
2012-12-19s/AttributeListImpl/AttributeSetImpl/g to match the namechange of AttributeList.Bill Wendling
2012-12-19Change AsmOperandInfo::ConstraintVT to MVT, instead of EVT.Patrik Hagglund
2012-12-19Inline hasFunctionOnlyAttrs into its only use.Bill Wendling
2012-12-19Inline the only use of the hasParameterOnlyAttrs method.Bill Wendling
2012-12-19Inline the 'hasIncompatibleWithVarArgsAttrs' method into its only uses. And s...Bill Wendling
2012-12-19Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl...Bill Wendling
2012-12-17Removed trailing whitespaceMichael Ilseman
2012-12-12Kerning.Bill Wendling
2012-12-11Holding my nose and moving the accumulation routine to GEPOperatorChandler Carruth
2012-12-11Hoist the GEP constant address offset computation to a common home onChandler Carruth
2012-12-07s/AttrListPtr/AttributeSet/g to better label what this class is going to be i...Bill Wendling
2012-12-05Fix name. The array is unboundED.Bill Wendling
2012-12-05- Added calls to doInitialization/doFinalization to immutable passesPedro Artigas
2012-12-04Use the 'count' attribute to calculate the upper bound of an array.Bill Wendling
2012-12-04Sort includes for all of the .h files under the 'lib' tree. These wereChandler Carruth
2012-12-04Add a 'count' field to the DWARF subrange.Bill Wendling
2012-12-03moves doInitialization and doFinalization to the Pass class and removes some ...Pedro Artigas
2012-12-03Add 'getInt64Field()' method to get the signed integer instead of unsigned.Bill Wendling
2012-12-03Revert r169039, "Aggregate pass execution time report by pass ID instead of p...Jakob Stoklund Olesen
2012-12-03Use the new script to sort the includes of every file under lib.Chandler Carruth
2012-12-01Revert previous check in r168581, r169079 as they are still in code review st...Zhou Sheng
2012-12-01VMCore/DebugInfo.cpp: DICompileUnit::getSubprograms(): Check numOperands().NAKAMURA Takumi
2012-11-30Aggregate pass execution time report by pass ID instead of pass instance.Jakob Stoklund Olesen
2012-11-30More strict error checking in parseSpecifier + simplified code.Patrik Hagglund
2012-11-30Move the InstVisitor utility into VMCore where it belongs. It heavilyChandler Carruth