aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Support/CallSite.h
Commit message (Expand)AuthorAgeFilesLines
* add CallSite/CallInst/InvokeInst::hasFnAttr()Nuno Lopes2012-06-251-0/+5
* Refactor code to use new attribute getters on CallSite for NoCapture and ByVal.Nick Lewycky2011-11-201-0/+10
* land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner2011-07-181-1/+1
* Implement PR8644: forwarding a memcpy value to a byval,Chris Lattner2010-11-211-5/+0
* remove CallSite::get; it is still present (as protected) in the baseclass, us...Gabor Greif2010-09-181-12/+2
* remove the private hack from CallInst, it was not supposed to hit the branch ...Gabor Greif2010-08-051-7/+4
* Thread const correctness through a bunch of AliasAnalysis interfaces andDan Gohman2010-08-031-10/+11
* remove a layer of cruftGabor Greif2010-07-291-9/+3
* we are supposed to only create proper CallSites from an instruction (esp. Cal...Gabor Greif2010-07-281-2/+2
* reintroduce original (asserting) semantics of CallSite(Instruction *II)Gabor Greif2010-07-271-0/+2
* remove bogus assert, use static_cast for additional checkingGabor Greif2010-07-271-5/+4
* eliminate CallInst::ArgOffsetGabor Greif2010-07-161-10/+6
* conditionalize on CallInst::ArgOffsetGabor Greif2010-07-071-2/+2
* Fix typo 'getter' where 'setter' was intended.Nick Lewycky2010-07-061-2/+2
* reformulate CallSiteBase::getCallee to adapt to CallInst::ArgOffset, and make...Gabor Greif2010-07-011-1/+3
* Revert 101465, it broke internal OpenGL testing.Eric Christopher2010-04-161-5/+11
* reapply r101434Gabor Greif2010-04-161-11/+5
* back out r101423 and r101397, they break llvm-gcc self-host on darwin10Gabor Greif2010-04-161-5/+11
* reapply r101364, which has been backed out in r101368Gabor Greif2010-04-151-11/+5
* back out r101364, as it trips the linux nightlybot on some clang C++ testsGabor Greif2010-04-151-5/+11
* rotate CallInst operands, i.e. move callee to the backGabor Greif2010-04-151-11/+5
* Move a bunch of methods from CallSite to CallSiteBase, so that they canDan Gohman2010-04-141-41/+95
* Use FunTy instead of hard-coding Function.Dan Gohman2010-04-141-1/+1
* Oops, make these public.Dan Gohman2010-04-141-8/+8
* Move getType() and getCaller() into CallSiteBase so thatDan Gohman2010-04-141-8/+8
* Don't use reserved identifiers.Dan Gohman2010-04-091-11/+11
* Introduce ImmutableCallSite, useful for contexts where no mutationGabor Greif2010-04-011-112/+160
* rename use_const_iterator to const_use_iterator for consistency's sakeGabor Greif2010-03-251-1/+1
* Reapply r99451 with a fix to move the NoInline check to the cost functionsEric Christopher2010-03-251-0/+4
* Temporarily revert this, it's causing an issue with an internal project.Eric Christopher2010-03-241-4/+0
* Finally land the InvokeInst operand reordering.Gabor Greif2010-03-241-6/+27
* add some accessors to callsite/callinst/invokeinst to checkChris Lattner2010-03-231-0/+4
* backing out r99170 because it still fails on clang-x86_64-darwin10-fntGabor Greif2010-03-221-24/+6
* Now that hopefully all direct accesses to InvokeInst operands are fixedGabor Greif2010-03-221-6/+24
* back out r98957, it broke http://smooshlab.apple.com:8010/builders/clang-x86_...Gabor Greif2010-03-191-24/+6
* Recommit r80858 again (which has been backed out in r80871).Gabor Greif2010-03-191-6/+24
* back out my recent commit (r80858), it seems to break self-hosting buildbot's...Gabor Greif2009-09-031-24/+6
* re-commit r66920 (which has been backed out in r66953) I may have more luck t...Gabor Greif2009-09-031-6/+24
* Retype from unsigned to CallingConv::ID accordingly. Approved by Bob Wilson.Sandeep Patel2009-09-021-2/+3
* Use the default copy ctor and copy-assignment operators.Dan Gohman2009-08-011-2/+0
* Revert r66920. It was causing failures in the self-hosting buildbot (in releaseBill Wendling2009-03-131-24/+6
* Second installment of "BasicBlock operands to the back"Gabor Greif2009-03-131-6/+24
* introduce a useful abstraction to find out if a Use is in the call position o...Gabor Greif2009-01-221-0/+4
* make comparisons a bist fasterGabor Greif2009-01-171-5/+3
* drats! remove tabsGabor Greif2009-01-111-1/+1
* simplify CallSite helper class to not consult the Instruction'sGabor Greif2009-01-111-21/+38
* Large mechanical patch.Devang Patel2008-09-251-3/+3
* s/ParameterAttributes/Attributes/gDevang Patel2008-09-231-2/+2
* Add CallSite::getArgumentNo() to be able to translate an operand number into aMatthijs Kooijman2008-07-081-0/+9
* Add CallSite::getArgumentOffset() to hide the differences in operands betwenMatthijs Kooijman2008-07-081-10/+13