summaryrefslogtreecommitdiff
path: root/include/llvm/Support/CallSite.h
Commit message (Expand)AuthorAge
* land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner2011-07-18
* Implement PR8644: forwarding a memcpy value to a byval,Chris Lattner2010-11-21
* remove CallSite::get; it is still present (as protected) in the baseclass, us...Gabor Greif2010-09-18
* remove the private hack from CallInst, it was not supposed to hit the branch ...Gabor Greif2010-08-05
* Thread const correctness through a bunch of AliasAnalysis interfaces andDan Gohman2010-08-03
* remove a layer of cruftGabor Greif2010-07-29
* we are supposed to only create proper CallSites from an instruction (esp. Cal...Gabor Greif2010-07-28
* reintroduce original (asserting) semantics of CallSite(Instruction *II)Gabor Greif2010-07-27
* remove bogus assert, use static_cast for additional checkingGabor Greif2010-07-27
* eliminate CallInst::ArgOffsetGabor Greif2010-07-16
* conditionalize on CallInst::ArgOffsetGabor Greif2010-07-07
* Fix typo 'getter' where 'setter' was intended.Nick Lewycky2010-07-06
* reformulate CallSiteBase::getCallee to adapt to CallInst::ArgOffset, and make...Gabor Greif2010-07-01
* Revert 101465, it broke internal OpenGL testing.Eric Christopher2010-04-16
* reapply r101434Gabor Greif2010-04-16
* back out r101423 and r101397, they break llvm-gcc self-host on darwin10Gabor Greif2010-04-16
* reapply r101364, which has been backed out in r101368Gabor Greif2010-04-15
* back out r101364, as it trips the linux nightlybot on some clang C++ testsGabor Greif2010-04-15
* rotate CallInst operands, i.e. move callee to the backGabor Greif2010-04-15
* Move a bunch of methods from CallSite to CallSiteBase, so that they canDan Gohman2010-04-14
* Use FunTy instead of hard-coding Function.Dan Gohman2010-04-14
* Oops, make these public.Dan Gohman2010-04-14
* Move getType() and getCaller() into CallSiteBase so thatDan Gohman2010-04-14
* Don't use reserved identifiers.Dan Gohman2010-04-09
* 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
* Reapply r99451 with a fix to move the NoInline check to the cost functionsEric Christopher2010-03-25
* Temporarily revert this, it's causing an issue with an internal project.Eric Christopher2010-03-24
* Finally land the InvokeInst operand reordering.Gabor Greif2010-03-24
* add some accessors to callsite/callinst/invokeinst to checkChris Lattner2010-03-23
* backing out r99170 because it still fails on clang-x86_64-darwin10-fntGabor Greif2010-03-22
* Now that hopefully all direct accesses to InvokeInst operands are fixedGabor Greif2010-03-22
* back out r98957, it broke http://smooshlab.apple.com:8010/builders/clang-x86_...Gabor Greif2010-03-19
* Recommit r80858 again (which has been backed out in r80871).Gabor Greif2010-03-19
* back out my recent commit (r80858), it seems to break self-hosting buildbot's...Gabor Greif2009-09-03
* re-commit r66920 (which has been backed out in r66953) I may have more luck t...Gabor Greif2009-09-03
* Retype from unsigned to CallingConv::ID accordingly. Approved by Bob Wilson.Sandeep Patel2009-09-02
* Use the default copy ctor and copy-assignment operators.Dan Gohman2009-08-01
* Revert r66920. It was causing failures in the self-hosting buildbot (in releaseBill Wendling2009-03-13
* Second installment of "BasicBlock operands to the back"Gabor Greif2009-03-13
* introduce a useful abstraction to find out if a Use is in the call position o...Gabor Greif2009-01-22
* make comparisons a bist fasterGabor Greif2009-01-17
* drats! remove tabsGabor Greif2009-01-11
* simplify CallSite helper class to not consult the Instruction'sGabor Greif2009-01-11
* Large mechanical patch.Devang Patel2008-09-25
* s/ParameterAttributes/Attributes/gDevang Patel2008-09-23
* Add CallSite::getArgumentNo() to be able to translate an operand number into aMatthijs Kooijman2008-07-08
* Add CallSite::getArgumentOffset() to hide the differences in operands betwenMatthijs Kooijman2008-07-08
* Add some convenience methods for manipulatingDuncan Sands2008-07-08
* * Make CallSite::hasArgument const and let it take a const parameter.Matthijs Kooijman2008-06-05