summaryrefslogtreecommitdiff
path: root/lib/VMCore/Function.cpp
Commit message (Expand)AuthorAge
* Attributes RewriteBill Wendling2012-10-15
* Remove the bitwise assignment OR operator from the Attributes class. Replace ...Bill Wendling2012-10-14
* Remove the bitwise NOT operator from the Attributes class. Replace it with th...Bill Wendling2012-10-14
* Create enums for the different attributes.Bill Wendling2012-10-09
* Query the parameter attributes directly instead of using the Attribute symbols.Bill Wendling2012-09-26
* move some code around so that Verifier.cpp can get access to the intrinsic in...Chris Lattner2012-05-27
* enhance the intrinsic info table to encode what *kind* of Any argumentChris Lattner2012-05-27
* Fixed typo in r156905.Patrik Hägglund2012-05-23
* small refinement to r157218 to save a tiny amount of table size in the commonChris Lattner2012-05-23
* Added address space qualifier to intrinsic PointerType arguments.Pete Cooper2012-05-21
* enhance the intrinsic info stuff to emit encodings that don't fit in 32-bits ...Chris Lattner2012-05-17
* Fix compile error.Manuel Klimek2012-05-17
* Genericize the intrinsics descriptor decoding a bit to make room Chris Lattner2012-05-17
* finish encoding all of the interesting details of intrinsics. Now intrinsicsChris Lattner2012-05-17
* strengthen the intrinsic descriptor stuff to be able to handle sin, cos and o...Chris Lattner2012-05-17
* Significantly reduce the compiled size of Functions.cpp by turning a big blob...Chris Lattner2012-05-16
* Teach Function::hasAddressTaken that BlockAddress doesn't really takeJay Foad2012-05-12
* Emit the "is an intrinsic overloaded" table as a bitfield.Benjamin Kramer2012-03-01
* Unweaken vtables as per http://llvm.org/docs/CodingStandards.html#ll_virtual_...David Blaikie2011-12-20
* Refactor code from inlining and globalopt that checks whether a function defi...Eli Friedman2011-10-20
* Use a SmallVector for intrinsic argument types.Benjamin Kramer2011-10-17
* Correct over-zealous removal of hack.Bill Wendling2011-10-17
* Now that we have the ReturnsTwice function attribute, this method isBill Wendling2011-10-17
* constify array itself, don't iterate multiple times.Chris Lattner2011-10-14
* Check for the returns_twice attribute in callsFunctionThatReturnsTwice. ThisRafael Espindola2011-10-05
* land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner2011-07-18
* Change Intrinsic::getDeclaration and friends to take an ArrayRef.Benjamin Kramer2011-07-14
* Second attempt at de-constifying LLVM Types in FunctionType::get(),Jay Foad2011-07-12
* Revert r134893 and r134888 (and related patches in other trees). It was causingBill Wendling2011-07-12
* De-constify Types in FunctionType::get().Jay Foad2011-07-11
* Land the long talked about "type system rewrite" patch. ThisChris Lattner2011-07-09
* Fix typo in comment.Jay Foad2011-06-17
* add a helper method to get the byval alignment of an argument.Chris Lattner2011-05-22
* Don't do tail calls in a function that call setjmp. The stack might beRafael Espindola2011-05-16
* Another example of a static table that wasn't marked static.Duncan Sands2011-04-26
* mark a large static table static. Pointed out by Michael Ilseman!Chris Lattner2011-04-25
* Remove the code from Function::dropAllReferences which replacedDan Gohman2010-12-07
* Merge System into Support.Michael J. Spencer2010-11-29
* Introduce ImmutableCallSite, useful for contexts where no mutationGabor Greif2010-04-01
* rename use_const_iterator to const_use_iterator for consistency's sakeGabor Greif2010-03-25
* Finally land the InvokeInst operand reordering.Gabor Greif2010-03-24
* add assert in argpromotion, which cannot triggerGabor Greif2010-03-23
* Introduce isOpaqueTy and use it rather than isa<OpaqueType>. Also, move someDuncan Sands2010-02-16
* There are two ways of checking for a given type, for example isa<PointerType>(T)Duncan Sands2010-02-16
* Avoid going through the LLVMContext for type equality where it's safe to dere...Benjamin Kramer2010-01-05
* add a layer of accessors around the Value::SubClassData member, and use Chris Lattner2009-12-29
* Qualify a bunch of explicit template instantiations to satisfy clang++.John McCall2009-12-19
* Add utility method for determining whether a function argumentDuncan Sands2009-12-11
* when we tear down a module, we need to be careful to Chris Lattner2009-10-28
* Push LLVMContexts through the IntegerType APIs.Owen Anderson2009-08-13