| Commit message (Expand) | Author | Age | Files | Lines |
* | add CallSite/CallInst/InvokeInst::hasFnAttr() | Nuno Lopes | 2012-06-25 | 1 | -0/+5 |
* | Refactor code to use new attribute getters on CallSite for NoCapture and ByVal. | Nick Lewycky | 2011-11-20 | 1 | -0/+10 |
* | land David Blaikie's patch to de-constify Type, with a few tweaks. | Chris Lattner | 2011-07-18 | 1 | -1/+1 |
* | Implement PR8644: forwarding a memcpy value to a byval, | Chris Lattner | 2010-11-21 | 1 | -5/+0 |
* | remove CallSite::get; it is still present (as protected) in the baseclass, us... | Gabor Greif | 2010-09-18 | 1 | -12/+2 |
* | remove the private hack from CallInst, it was not supposed to hit the branch ... | Gabor Greif | 2010-08-05 | 1 | -7/+4 |
* | Thread const correctness through a bunch of AliasAnalysis interfaces and | Dan Gohman | 2010-08-03 | 1 | -10/+11 |
* | remove a layer of cruft | Gabor Greif | 2010-07-29 | 1 | -9/+3 |
* | we are supposed to only create proper CallSites from an instruction (esp. Cal... | Gabor Greif | 2010-07-28 | 1 | -2/+2 |
* | reintroduce original (asserting) semantics of CallSite(Instruction *II) | Gabor Greif | 2010-07-27 | 1 | -0/+2 |
* | remove bogus assert, use static_cast for additional checking | Gabor Greif | 2010-07-27 | 1 | -5/+4 |
* | eliminate CallInst::ArgOffset | Gabor Greif | 2010-07-16 | 1 | -10/+6 |
* | conditionalize on CallInst::ArgOffset | Gabor Greif | 2010-07-07 | 1 | -2/+2 |
* | Fix typo 'getter' where 'setter' was intended. | Nick Lewycky | 2010-07-06 | 1 | -2/+2 |
* | reformulate CallSiteBase::getCallee to adapt to CallInst::ArgOffset, and make... | Gabor Greif | 2010-07-01 | 1 | -1/+3 |
* | Revert 101465, it broke internal OpenGL testing. | Eric Christopher | 2010-04-16 | 1 | -5/+11 |
* | reapply r101434 | Gabor Greif | 2010-04-16 | 1 | -11/+5 |
* | back out r101423 and r101397, they break llvm-gcc self-host on darwin10 | Gabor Greif | 2010-04-16 | 1 | -5/+11 |
* | reapply r101364, which has been backed out in r101368 | Gabor Greif | 2010-04-15 | 1 | -11/+5 |
* | back out r101364, as it trips the linux nightlybot on some clang C++ tests | Gabor Greif | 2010-04-15 | 1 | -5/+11 |
* | rotate CallInst operands, i.e. move callee to the back | Gabor Greif | 2010-04-15 | 1 | -11/+5 |
* | Move a bunch of methods from CallSite to CallSiteBase, so that they can | Dan Gohman | 2010-04-14 | 1 | -41/+95 |
* | Use FunTy instead of hard-coding Function. | Dan Gohman | 2010-04-14 | 1 | -1/+1 |
* | Oops, make these public. | Dan Gohman | 2010-04-14 | 1 | -8/+8 |
* | Move getType() and getCaller() into CallSiteBase so that | Dan Gohman | 2010-04-14 | 1 | -8/+8 |
* | Don't use reserved identifiers. | Dan Gohman | 2010-04-09 | 1 | -11/+11 |
* | Introduce ImmutableCallSite, useful for contexts where no mutation | Gabor Greif | 2010-04-01 | 1 | -112/+160 |
* | rename use_const_iterator to const_use_iterator for consistency's sake | Gabor Greif | 2010-03-25 | 1 | -1/+1 |
* | Reapply r99451 with a fix to move the NoInline check to the cost functions | Eric Christopher | 2010-03-25 | 1 | -0/+4 |
* | Temporarily revert this, it's causing an issue with an internal project. | Eric Christopher | 2010-03-24 | 1 | -4/+0 |
* | Finally land the InvokeInst operand reordering. | Gabor Greif | 2010-03-24 | 1 | -6/+27 |
* | add some accessors to callsite/callinst/invokeinst to check | Chris Lattner | 2010-03-23 | 1 | -0/+4 |
* | backing out r99170 because it still fails on clang-x86_64-darwin10-fnt | Gabor Greif | 2010-03-22 | 1 | -24/+6 |
* | Now that hopefully all direct accesses to InvokeInst operands are fixed | Gabor Greif | 2010-03-22 | 1 | -6/+24 |
* | back out r98957, it broke http://smooshlab.apple.com:8010/builders/clang-x86_... | Gabor Greif | 2010-03-19 | 1 | -24/+6 |
* | Recommit r80858 again (which has been backed out in r80871). | Gabor Greif | 2010-03-19 | 1 | -6/+24 |
* | back out my recent commit (r80858), it seems to break self-hosting buildbot's... | Gabor Greif | 2009-09-03 | 1 | -24/+6 |
* | re-commit r66920 (which has been backed out in r66953) I may have more luck t... | Gabor Greif | 2009-09-03 | 1 | -6/+24 |
* | Retype from unsigned to CallingConv::ID accordingly. Approved by Bob Wilson. | Sandeep Patel | 2009-09-02 | 1 | -2/+3 |
* | Use the default copy ctor and copy-assignment operators. | Dan Gohman | 2009-08-01 | 1 | -2/+0 |
* | Revert r66920. It was causing failures in the self-hosting buildbot (in release | Bill Wendling | 2009-03-13 | 1 | -24/+6 |
* | Second installment of "BasicBlock operands to the back" | Gabor Greif | 2009-03-13 | 1 | -6/+24 |
* | introduce a useful abstraction to find out if a Use is in the call position o... | Gabor Greif | 2009-01-22 | 1 | -0/+4 |
* | make comparisons a bist faster | Gabor Greif | 2009-01-17 | 1 | -5/+3 |
* | drats! remove tabs | Gabor Greif | 2009-01-11 | 1 | -1/+1 |
* | simplify CallSite helper class to not consult the Instruction's | Gabor Greif | 2009-01-11 | 1 | -21/+38 |
* | Large mechanical patch. | Devang Patel | 2008-09-25 | 1 | -3/+3 |
* | s/ParameterAttributes/Attributes/g | Devang Patel | 2008-09-23 | 1 | -2/+2 |
* | Add CallSite::getArgumentNo() to be able to translate an operand number into a | Matthijs Kooijman | 2008-07-08 | 1 | -0/+9 |
* | Add CallSite::getArgumentOffset() to hide the differences in operands betwen | Matthijs Kooijman | 2008-07-08 | 1 | -10/+13 |