[NFC] Make the Statepoint class more like CallSite

Summary: Rename some methods to make Statepoint look more like CallSite.

Subscribers: llvm-commits

Differential Revision: http://reviews.llvm.org/D10756

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@241235 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Sanjoy Das
2015-07-02 02:53:45 +00:00
parent 70be6950a5
commit d0872b393c
2 changed files with 64 additions and 26 deletions

View File

@ -20,6 +20,7 @@
#include "llvm/IR/BasicBlock.h" #include "llvm/IR/BasicBlock.h"
#include "llvm/IR/CallSite.h" #include "llvm/IR/CallSite.h"
#include "llvm/IR/Constants.h" #include "llvm/IR/Constants.h"
#include "llvm/IR/Function.h"
#include "llvm/IR/Instructions.h" #include "llvm/IR/Instructions.h"
#include "llvm/IR/Intrinsics.h" #include "llvm/IR/Intrinsics.h"
#include "llvm/Support/Compiler.h" #include "llvm/Support/Compiler.h"
@ -54,7 +55,8 @@ bool isGCResult(const ImmutableCallSite &CS);
/// concrete subtypes. This is structured analogous to CallSite /// concrete subtypes. This is structured analogous to CallSite
/// rather than the IntrinsicInst.h helpers since we want to support /// rather than the IntrinsicInst.h helpers since we want to support
/// invokable statepoints in the near future. /// invokable statepoints in the near future.
template <typename InstructionTy, typename ValueTy, typename CallSiteTy> template <typename FunTy, typename InstructionTy, typename ValueTy,
typename CallSiteTy>
class StatepointBase { class StatepointBase {
CallSiteTy StatepointCS; CallSiteTy StatepointCS;
void *operator new(size_t, unsigned) = delete; void *operator new(size_t, unsigned) = delete;
@ -78,7 +80,7 @@ public:
enum { enum {
IDPos = 0, IDPos = 0,
NumPatchBytesPos = 1, NumPatchBytesPos = 1,
ActualCalleePos = 2, CalledFunctionPos = 2,
NumCallArgsPos = 3, NumCallArgsPos = 3,
FlagsPos = 4, FlagsPos = 4,
CallArgsBeginPos = 5, CallArgsBeginPos = 5,
@ -116,15 +118,34 @@ public:
} }
/// Return the value actually being called or invoked. /// Return the value actually being called or invoked.
ValueTy *getActualCallee() const { ValueTy *getCalledValue() const {
return getCallSite().getArgument(ActualCalleePos); return getCallSite().getArgument(CalledFunctionPos);
}
InstructionTy *getInstruction() const {
return getCallSite().getInstruction();
}
/// Return the function being called if this is a direct call, otherwise
/// return null (if it's an indirect call).
FunTy *getCalledFunction() const {
return dyn_cast<Function>(getCalledValue());
}
/// Return the caller function for this statepoint.
FunTy *getCaller() const { return getCallSite().getCaller(); }
/// Determine if the statepoint cannot unwind.
bool doesNotThrow() const {
Function *F = getCalledFunction();
return getCallSite().doesNotThrow() || (F ? F->doesNotThrow() : false);
} }
/// Return the type of the value returned by the call underlying the /// Return the type of the value returned by the call underlying the
/// statepoint. /// statepoint.
Type *getActualReturnType() const { Type *getActualReturnType() const {
auto *FTy = cast<FunctionType>( auto *FTy = cast<FunctionType>(
cast<PointerType>(getActualCallee()->getType())->getElementType()); cast<PointerType>(getCalledValue()->getType())->getElementType());
return FTy->getReturnType(); return FTy->getReturnType();
} }
@ -134,28 +155,41 @@ public:
return cast<ConstantInt>(NumCallArgsVal)->getZExtValue(); return cast<ConstantInt>(NumCallArgsVal)->getZExtValue();
} }
typename CallSiteTy::arg_iterator call_args_begin() const { size_t arg_size() const { return getNumCallArgs(); }
typename CallSiteTy::arg_iterator arg_begin() const {
assert(CallArgsBeginPos <= (int)getCallSite().arg_size()); assert(CallArgsBeginPos <= (int)getCallSite().arg_size());
return getCallSite().arg_begin() + CallArgsBeginPos; return getCallSite().arg_begin() + CallArgsBeginPos;
} }
typename CallSiteTy::arg_iterator call_args_end() const { typename CallSiteTy::arg_iterator arg_end() const {
auto I = call_args_begin() + getNumCallArgs(); auto I = arg_begin() + arg_size();
assert((getCallSite().arg_end() - I) >= 0); assert((getCallSite().arg_end() - I) >= 0);
return I; return I;
} }
ValueTy *getArgument(unsigned Index) {
assert(Index < arg_size() && "out of bounds!");
return *(arg_begin() + Index);
}
/// range adapter for call arguments /// range adapter for call arguments
iterator_range<arg_iterator> call_args() const { iterator_range<arg_iterator> call_args() const {
return iterator_range<arg_iterator>(call_args_begin(), call_args_end()); return iterator_range<arg_iterator>(arg_begin(), arg_end());
}
/// \brief Return true if the call or the callee has the given attribute.
bool paramHasAttr(unsigned i, Attribute::AttrKind A) const {
Function *F = getCalledFunction();
return getCallSite().paramHasAttr(i + CallArgsBeginPos, A) ||
(F ? F->getAttributes().hasAttribute(i, A) : false);
} }
/// Number of GC transition args. /// Number of GC transition args.
int getNumTotalGCTransitionArgs() const { int getNumTotalGCTransitionArgs() const {
const Value *NumGCTransitionArgs = *call_args_end(); const Value *NumGCTransitionArgs = *arg_end();
return cast<ConstantInt>(NumGCTransitionArgs)->getZExtValue(); return cast<ConstantInt>(NumGCTransitionArgs)->getZExtValue();
} }
typename CallSiteTy::arg_iterator gc_transition_args_begin() const { typename CallSiteTy::arg_iterator gc_transition_args_begin() const {
auto I = call_args_end() + 1; auto I = arg_end() + 1;
assert((getCallSite().arg_end() - I) >= 0); assert((getCallSite().arg_end() - I) >= 0);
return I; return I;
} }
@ -216,7 +250,7 @@ public:
/// nullptr if there isn't a gc_result tied to this statepoint. Guaranteed to /// nullptr if there isn't a gc_result tied to this statepoint. Guaranteed to
/// be a CallInst if non-null. /// be a CallInst if non-null.
InstructionTy *getGCResult() const { InstructionTy *getGCResult() const {
for (auto *U : getCallSite().getInstruction()->users()) for (auto *U : getInstruction()->users())
if (isGCResult(U)) if (isGCResult(U))
return cast<CallInst>(U); return cast<CallInst>(U);
@ -232,8 +266,8 @@ public:
"number of arguments to actually callee can't be negative"); "number of arguments to actually callee can't be negative");
// The internal asserts in the iterator accessors do the rest. // The internal asserts in the iterator accessors do the rest.
(void)call_args_begin(); (void)arg_begin();
(void)call_args_end(); (void)arg_end();
(void)gc_transition_args_begin(); (void)gc_transition_args_begin();
(void)gc_transition_args_end(); (void)gc_transition_args_end();
(void)vm_state_begin(); (void)vm_state_begin();
@ -247,9 +281,10 @@ public:
/// A specialization of it's base class for read only access /// A specialization of it's base class for read only access
/// to a gc.statepoint. /// to a gc.statepoint.
class ImmutableStatepoint class ImmutableStatepoint
: public StatepointBase<const Instruction, const Value, ImmutableCallSite> { : public StatepointBase<const Function, const Instruction, const Value,
typedef StatepointBase<const Instruction, const Value, ImmutableCallSite> ImmutableCallSite> {
Base; typedef StatepointBase<const Function, const Instruction, const Value,
ImmutableCallSite> Base;
public: public:
explicit ImmutableStatepoint(const Instruction *I) : Base(I) {} explicit ImmutableStatepoint(const Instruction *I) : Base(I) {}
@ -258,8 +293,9 @@ public:
/// A specialization of it's base class for read-write access /// A specialization of it's base class for read-write access
/// to a gc.statepoint. /// to a gc.statepoint.
class Statepoint : public StatepointBase<Instruction, Value, CallSite> { class Statepoint
typedef StatepointBase<Instruction, Value, CallSite> Base; : public StatepointBase<Function, Instruction, Value, CallSite> {
typedef StatepointBase<Function, Instruction, Value, CallSite> Base;
public: public:
explicit Statepoint(Instruction *I) : Base(I) {} explicit Statepoint(Instruction *I) : Base(I) {}
@ -336,9 +372,11 @@ public:
} }
}; };
template <typename InstructionTy, typename ValueTy, typename CallSiteTy> template <typename FunTy, typename InstructionTy, typename ValueTy,
typename CallSiteTy>
std::vector<GCRelocateOperands> std::vector<GCRelocateOperands>
StatepointBase<InstructionTy, ValueTy, CallSiteTy>::getRelocates() const { StatepointBase<FunTy, InstructionTy, ValueTy, CallSiteTy>::getRelocates()
const {
std::vector<GCRelocateOperands> Result; std::vector<GCRelocateOperands> Result;
@ -347,7 +385,7 @@ StatepointBase<InstructionTy, ValueTy, CallSiteTy>::getRelocates() const {
// Search for relocated pointers. Note that working backwards from the // Search for relocated pointers. Note that working backwards from the
// gc_relocates ensures that we only get pairs which are actually relocated // gc_relocates ensures that we only get pairs which are actually relocated
// and used after the statepoint. // and used after the statepoint.
for (const User *U : StatepointCS.getInstruction()->users()) for (const User *U : getInstruction()->users())
if (isGCRelocate(U)) if (isGCRelocate(U))
Result.push_back(GCRelocateOperands(U)); Result.push_back(GCRelocateOperands(U));
@ -356,7 +394,7 @@ StatepointBase<InstructionTy, ValueTy, CallSiteTy>::getRelocates() const {
// We need to scan thorough exceptional relocations if it is invoke statepoint // We need to scan thorough exceptional relocations if it is invoke statepoint
LandingPadInst *LandingPad = LandingPadInst *LandingPad =
cast<InvokeInst>(StatepointCS.getInstruction())->getLandingPadInst(); cast<InvokeInst>(getInstruction())->getLandingPadInst();
// Search for extract value from landingpad instruction to which // Search for extract value from landingpad instruction to which
// gc relocates will be attached // gc relocates will be attached

View File

@ -289,7 +289,7 @@ lowerCallFromStatepoint(ImmutableStatepoint ISP, MachineBasicBlock *LandingPad,
ImmutableCallSite CS(ISP.getCallSite()); ImmutableCallSite CS(ISP.getCallSite());
SDValue ActualCallee = Builder.getValue(ISP.getActualCallee()); SDValue ActualCallee = Builder.getValue(ISP.getCalledValue());
assert(CS.getCallingConv() != CallingConv::AnyReg && assert(CS.getCallingConv() != CallingConv::AnyReg &&
"anyregcc is not supported on statepoints!"); "anyregcc is not supported on statepoints!");
@ -815,8 +815,8 @@ void SelectionDAGBuilder::visitGCResult(const CallInst &CI) {
// register because statepoint and actuall call return types can be // register because statepoint and actuall call return types can be
// different, and getValue() will use CopyFromReg of the wrong type, // different, and getValue() will use CopyFromReg of the wrong type,
// which is always i32 in our case. // which is always i32 in our case.
PointerType *CalleeType = PointerType *CalleeType = cast<PointerType>(
cast<PointerType>(ImmutableStatepoint(I).getActualCallee()->getType()); ImmutableStatepoint(I).getCalledValue()->getType());
Type *RetTy = Type *RetTy =
cast<FunctionType>(CalleeType->getElementType())->getReturnType(); cast<FunctionType>(CalleeType->getElementType())->getReturnType();
SDValue CopyFromReg = getCopyFromRegs(I, RetTy); SDValue CopyFromReg = getCopyFromRegs(I, RetTy);