aboutsummaryrefslogtreecommitdiff
path: root/lib/VMCore/Function.cpp
AgeCommit message (Expand)Author
2013-01-02Rename VMCore directory to IR.Chandler Carruth
2012-12-30Remove Function::getParamAttributes and use the AttributeSet accessor methods...Bill Wendling
2012-12-19Refactor isIntrinsic() to be quicker, and change classof() (and thus, isa<Int...Michael Ilseman
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-07s/AttrListPtr/AttributeSet/g to better label what this class is going to be i...Bill Wendling
2012-12-03Use the new script to sort the includes of every file under lib.Chandler Carruth
2012-10-15Attributes RewriteBill Wendling
2012-10-14Remove the bitwise assignment OR operator from the Attributes class. Replace ...Bill Wendling
2012-10-14Remove the bitwise NOT operator from the Attributes class. Replace it with th...Bill Wendling
2012-10-09Create enums for the different attributes.Bill Wendling
2012-09-26Query the parameter attributes directly instead of using the Attribute symbols.Bill Wendling
2012-05-27move some code around so that Verifier.cpp can get access to the intrinsic in...Chris Lattner
2012-05-27enhance the intrinsic info table to encode what *kind* of Any argumentChris Lattner
2012-05-23Fixed typo in r156905.Patrik Hägglund
2012-05-23small refinement to r157218 to save a tiny amount of table size in the commonChris Lattner
2012-05-21Added address space qualifier to intrinsic PointerType arguments.Pete Cooper
2012-05-17enhance the intrinsic info stuff to emit encodings that don't fit in 32-bits ...Chris Lattner
2012-05-17Fix compile error.Manuel Klimek
2012-05-17Genericize the intrinsics descriptor decoding a bit to make room Chris Lattner
2012-05-17finish encoding all of the interesting details of intrinsics. Now intrinsicsChris Lattner
2012-05-17strengthen the intrinsic descriptor stuff to be able to handle sin, cos and o...Chris Lattner
2012-05-16Significantly reduce the compiled size of Functions.cpp by turning a big blob...Chris Lattner
2012-05-12Teach Function::hasAddressTaken that BlockAddress doesn't really takeJay Foad
2012-03-01Emit the "is an intrinsic overloaded" table as a bitfield.Benjamin Kramer
2011-12-20Unweaken vtables as per http://llvm.org/docs/CodingStandards.html#ll_virtual_...David Blaikie
2011-10-20Refactor code from inlining and globalopt that checks whether a function defi...Eli Friedman
2011-10-17Use a SmallVector for intrinsic argument types.Benjamin Kramer
2011-10-17Correct over-zealous removal of hack.Bill Wendling
2011-10-17Now that we have the ReturnsTwice function attribute, this method isBill Wendling
2011-10-14constify array itself, don't iterate multiple times.Chris Lattner
2011-10-05Check for the returns_twice attribute in callsFunctionThatReturnsTwice. ThisRafael Espindola
2011-07-18land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner
2011-07-14Change Intrinsic::getDeclaration and friends to take an ArrayRef.Benjamin Kramer
2011-07-12Second attempt at de-constifying LLVM Types in FunctionType::get(),Jay Foad
2011-07-12Revert r134893 and r134888 (and related patches in other trees). It was causingBill Wendling
2011-07-11De-constify Types in FunctionType::get().Jay Foad
2011-07-09Land the long talked about "type system rewrite" patch. ThisChris Lattner
2011-06-17Fix typo in comment.Jay Foad
2011-05-22add a helper method to get the byval alignment of an argument.Chris Lattner
2011-05-16Don't do tail calls in a function that call setjmp. The stack might beRafael Espindola
2011-04-26Another example of a static table that wasn't marked static.Duncan Sands
2011-04-25mark a large static table static. Pointed out by Michael Ilseman!Chris Lattner
2010-12-07Remove the code from Function::dropAllReferences which replacedDan Gohman
2010-11-29Merge System into Support.Michael J. Spencer
2010-04-01Introduce ImmutableCallSite, useful for contexts where no mutationGabor Greif
2010-03-25rename use_const_iterator to const_use_iterator for consistency's sakeGabor Greif
2010-03-24Finally land the InvokeInst operand reordering.Gabor Greif
2010-03-23add assert in argpromotion, which cannot triggerGabor Greif
2010-02-16Introduce isOpaqueTy and use it rather than isa<OpaqueType>. Also, move someDuncan Sands