simplify CallSite helper class to not consult the Instruction's

opcode on each delegation.
Instead the information is cached on construction and the cached flag used thereafter.
Introduced two predicates: isCall and isInvoke.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@62055 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Gabor Greif
2009-01-11 22:33:22 +00:00
parent e7886e461b
commit 255b26ea35
2 changed files with 71 additions and 80 deletions

View File

@@ -14,15 +14,19 @@
// passed by value, not by reference; it should not be "new"ed or "delete"d. It // passed by value, not by reference; it should not be "new"ed or "delete"d. It
// is efficiently copyable, assignable and constructable, with cost equivalent // is efficiently copyable, assignable and constructable, with cost equivalent
// to copying a pointer (notice that it has only a single data member). // to copying a pointer (notice that it has only a single data member).
// The internal representation carries a flag which indicates which of the two
// variants is enclosed. This allows for cheaper checks when various accessors
// of CallSite are employed.
// //
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
#ifndef LLVM_SUPPORT_CALLSITE_H #ifndef LLVM_SUPPORT_CALLSITE_H
#define LLVM_SUPPORT_CALLSITE_H #define LLVM_SUPPORT_CALLSITE_H
#include "llvm/Instruction.h"
#include "llvm/BasicBlock.h"
#include "llvm/Attributes.h" #include "llvm/Attributes.h"
#include "llvm/ADT/PointerIntPair.h"
#include "llvm/BasicBlock.h"
#include "llvm/Instruction.h"
namespace llvm { namespace llvm {
@@ -30,17 +34,19 @@ class CallInst;
class InvokeInst; class InvokeInst;
class CallSite { class CallSite {
Instruction *I; PointerIntPair<Instruction*, 1, bool> I;
public: public:
CallSite() : I(0) {} CallSite() : I(0, false) {}
CallSite(CallInst *CI) : I(reinterpret_cast<Instruction*>(CI)) {} CallSite(CallInst *CI) : I(reinterpret_cast<Instruction*>(CI), true) {}
CallSite(InvokeInst *II) : I(reinterpret_cast<Instruction*>(II)) {} CallSite(InvokeInst *II) : I(reinterpret_cast<Instruction*>(II), false) {}
CallSite(Instruction *C); CallSite(Instruction *C);
CallSite(const CallSite &CS) : I(CS.I) {} CallSite(const CallSite &CS) : I(CS.I) {}
CallSite &operator=(const CallSite &CS) { I = CS.I; return *this; } CallSite &operator=(const CallSite &CS) { I = CS.I; return *this; }
bool operator==(const CallSite &CS) const { return I == CS.I; } bool operator==(const CallSite &CS) const { return getInstruction()
bool operator!=(const CallSite &CS) const { return I != CS.I; } == CS.getInstruction(); }
bool operator!=(const CallSite &CS) const { return getInstruction()
!= CS.getInstruction(); }
/// CallSite::get - This static method is sort of like a constructor. It will /// CallSite::get - This static method is sort of like a constructor. It will
/// create an appropriate call site for a Call or Invoke instruction, but it /// create an appropriate call site for a Call or Invoke instruction, but it
@@ -91,21 +97,31 @@ public:
/// getType - Return the type of the instruction that generated this call site /// getType - Return the type of the instruction that generated this call site
/// ///
const Type *getType() const { return I->getType(); } const Type *getType() const { return getInstruction()->getType(); }
/// isCall - true if a CallInst is enclosed.
/// Note that !isCall() does not mean it is an InvokeInst enclosed,
/// it also could signify a NULL Instruction pointer.
bool isCall() const { return I.getInt(); }
/// isInvoke - true if a InvokeInst is enclosed.
///
bool isInvoke() const { return getInstruction() && !I.getInt(); }
/// getInstruction - Return the instruction this call site corresponds to /// getInstruction - Return the instruction this call site corresponds to
/// ///
Instruction *getInstruction() const { return I; } Instruction *getInstruction() const { return I.getPointer(); }
/// getCaller - Return the caller function for this call site /// getCaller - Return the caller function for this call site
/// ///
Function *getCaller() const { return I->getParent()->getParent(); } Function *getCaller() const { return getInstruction()
->getParent()->getParent(); }
/// getCalledValue - Return the pointer to function that is being called... /// getCalledValue - Return the pointer to function that is being called...
/// ///
Value *getCalledValue() const { Value *getCalledValue() const {
assert(I && "Not a call or invoke instruction!"); assert(getInstruction() && "Not a call or invoke instruction!");
return I->getOperand(0); return getInstruction()->getOperand(0);
} }
/// getCalledFunction - Return the function being called if this is a direct /// getCalledFunction - Return the function being called if this is a direct
@@ -118,8 +134,8 @@ public:
/// setCalledFunction - Set the callee to the specified value... /// setCalledFunction - Set the callee to the specified value...
/// ///
void setCalledFunction(Value *V) { void setCalledFunction(Value *V) {
assert(I && "Not a call or invoke instruction!"); assert(getInstruction() && "Not a call or invoke instruction!");
I->setOperand(0, V); getInstruction()->setOperand(0, V);
} }
Value *getArgument(unsigned ArgNo) const { Value *getArgument(unsigned ArgNo) const {
@@ -128,9 +144,9 @@ public:
} }
void setArgument(unsigned ArgNo, Value* newVal) { void setArgument(unsigned ArgNo, Value* newVal) {
assert(I && "Not a call or invoke instruction!"); assert(getInstruction() && "Not a call or invoke instruction!");
assert(arg_begin() + ArgNo < arg_end() && "Argument # out of range!"); assert(arg_begin() + ArgNo < arg_end() && "Argument # out of range!");
I->setOperand(getArgumentOffset() + ArgNo, newVal); getInstruction()->setOperand(getArgumentOffset() + ArgNo, newVal);
} }
/// Given an operand number, returns the argument that corresponds to it. /// Given an operand number, returns the argument that corresponds to it.
@@ -153,11 +169,12 @@ public:
/// arg_begin/arg_end - Return iterators corresponding to the actual argument /// arg_begin/arg_end - Return iterators corresponding to the actual argument
/// list for a call site. /// list for a call site.
arg_iterator arg_begin() const { arg_iterator arg_begin() const {
assert(I && "Not a call or invoke instruction!"); assert(getInstruction() && "Not a call or invoke instruction!");
return I->op_begin() + getArgumentOffset(); // Skip non-arguments // Skip non-arguments
return getInstruction()->op_begin() + getArgumentOffset();
} }
arg_iterator arg_end() const { return I->op_end(); } arg_iterator arg_end() const { return getInstruction()->op_end(); }
bool arg_empty() const { return arg_end() == arg_begin(); } bool arg_empty() const { return arg_end() == arg_begin(); }
unsigned arg_size() const { return unsigned(arg_end() - arg_begin()); } unsigned arg_size() const { return unsigned(arg_end() - arg_begin()); }
@@ -168,7 +185,7 @@ public:
private: private:
/// Returns the operand number of the first argument /// Returns the operand number of the first argument
unsigned getArgumentOffset() const { unsigned getArgumentOffset() const {
if (I->getOpcode() == Instruction::Call) if (isCall())
return 1; // Skip Function return 1; // Skip Function
else else
return 3; // Skip Function, BB, BB return 3; // Skip Function, BB, BB

View File

@@ -25,94 +25,65 @@ using namespace llvm;
// CallSite Class // CallSite Class
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
#define CALLSITE_DELEGATE_GETTER(METHOD) \
Instruction *II(getInstruction()); \
return isCall() \
? cast<CallInst>(II)->METHOD \
: cast<InvokeInst>(II)->METHOD
#define CALLSITE_DELEGATE_SETTER(METHOD) \
Instruction *II(getInstruction()); \
if (isCall()) \
cast<CallInst>(II)->METHOD; \
else \
cast<InvokeInst>(II)->METHOD
CallSite::CallSite(Instruction *C) { CallSite::CallSite(Instruction *C) {
assert((isa<CallInst>(C) || isa<InvokeInst>(C)) && "Not a call!"); assert((isa<CallInst>(C) || isa<InvokeInst>(C)) && "Not a call!");
I = C; I.setPointer(C);
I.setInt(isa<CallInst>(C));
} }
unsigned CallSite::getCallingConv() const { unsigned CallSite::getCallingConv() const {
if (CallInst *CI = dyn_cast<CallInst>(I)) CALLSITE_DELEGATE_GETTER(getCallingConv());
return CI->getCallingConv();
else
return cast<InvokeInst>(I)->getCallingConv();
} }
void CallSite::setCallingConv(unsigned CC) { void CallSite::setCallingConv(unsigned CC) {
if (CallInst *CI = dyn_cast<CallInst>(I)) CALLSITE_DELEGATE_SETTER(setCallingConv(CC));
CI->setCallingConv(CC);
else
cast<InvokeInst>(I)->setCallingConv(CC);
} }
const AttrListPtr &CallSite::getAttributes() const { const AttrListPtr &CallSite::getAttributes() const {
if (CallInst *CI = dyn_cast<CallInst>(I)) CALLSITE_DELEGATE_GETTER(getAttributes());
return CI->getAttributes();
else
return cast<InvokeInst>(I)->getAttributes();
} }
void CallSite::setAttributes(const AttrListPtr &PAL) { void CallSite::setAttributes(const AttrListPtr &PAL) {
if (CallInst *CI = dyn_cast<CallInst>(I)) CALLSITE_DELEGATE_SETTER(setAttributes(PAL));
CI->setAttributes(PAL);
else
cast<InvokeInst>(I)->setAttributes(PAL);
} }
bool CallSite::paramHasAttr(uint16_t i, Attributes attr) const { bool CallSite::paramHasAttr(uint16_t i, Attributes attr) const {
if (CallInst *CI = dyn_cast<CallInst>(I)) CALLSITE_DELEGATE_GETTER(paramHasAttr(i, attr));
return CI->paramHasAttr(i, attr);
else
return cast<InvokeInst>(I)->paramHasAttr(i, attr);
} }
uint16_t CallSite::getParamAlignment(uint16_t i) const { uint16_t CallSite::getParamAlignment(uint16_t i) const {
if (CallInst *CI = dyn_cast<CallInst>(I)) CALLSITE_DELEGATE_GETTER(getParamAlignment(i));
return CI->getParamAlignment(i);
else
return cast<InvokeInst>(I)->getParamAlignment(i);
} }
bool CallSite::doesNotAccessMemory() const { bool CallSite::doesNotAccessMemory() const {
if (CallInst *CI = dyn_cast<CallInst>(I)) CALLSITE_DELEGATE_GETTER(doesNotAccessMemory());
return CI->doesNotAccessMemory();
else
return cast<InvokeInst>(I)->doesNotAccessMemory();
} }
void CallSite::setDoesNotAccessMemory(bool doesNotAccessMemory) { void CallSite::setDoesNotAccessMemory(bool doesNotAccessMemory) {
if (CallInst *CI = dyn_cast<CallInst>(I)) CALLSITE_DELEGATE_SETTER(setDoesNotAccessMemory(doesNotAccessMemory));
CI->setDoesNotAccessMemory(doesNotAccessMemory);
else
cast<InvokeInst>(I)->setDoesNotAccessMemory(doesNotAccessMemory);
} }
bool CallSite::onlyReadsMemory() const { bool CallSite::onlyReadsMemory() const {
if (CallInst *CI = dyn_cast<CallInst>(I)) CALLSITE_DELEGATE_GETTER(onlyReadsMemory());
return CI->onlyReadsMemory();
else
return cast<InvokeInst>(I)->onlyReadsMemory();
} }
void CallSite::setOnlyReadsMemory(bool onlyReadsMemory) { void CallSite::setOnlyReadsMemory(bool onlyReadsMemory) {
if (CallInst *CI = dyn_cast<CallInst>(I)) CALLSITE_DELEGATE_SETTER(setOnlyReadsMemory(onlyReadsMemory));
CI->setOnlyReadsMemory(onlyReadsMemory);
else
cast<InvokeInst>(I)->setOnlyReadsMemory(onlyReadsMemory);
} }
bool CallSite::doesNotReturn() const { bool CallSite::doesNotReturn() const {
if (CallInst *CI = dyn_cast<CallInst>(I)) CALLSITE_DELEGATE_GETTER(doesNotReturn());
return CI->doesNotReturn();
else
return cast<InvokeInst>(I)->doesNotReturn();
} }
void CallSite::setDoesNotReturn(bool doesNotReturn) { void CallSite::setDoesNotReturn(bool doesNotReturn) {
if (CallInst *CI = dyn_cast<CallInst>(I)) CALLSITE_DELEGATE_SETTER(setDoesNotReturn(doesNotReturn));
CI->setDoesNotReturn(doesNotReturn);
else
cast<InvokeInst>(I)->setDoesNotReturn(doesNotReturn);
} }
bool CallSite::doesNotThrow() const { bool CallSite::doesNotThrow() const {
if (CallInst *CI = dyn_cast<CallInst>(I)) CALLSITE_DELEGATE_GETTER(doesNotThrow());
return CI->doesNotThrow();
else
return cast<InvokeInst>(I)->doesNotThrow();
} }
void CallSite::setDoesNotThrow(bool doesNotThrow) { void CallSite::setDoesNotThrow(bool doesNotThrow) {
if (CallInst *CI = dyn_cast<CallInst>(I)) CALLSITE_DELEGATE_SETTER(setDoesNotThrow(doesNotThrow));
CI->setDoesNotThrow(doesNotThrow);
else
cast<InvokeInst>(I)->setDoesNotThrow(doesNotThrow);
} }
bool CallSite::hasArgument(const Value *Arg) const { bool CallSite::hasArgument(const Value *Arg) const {
@@ -122,6 +93,9 @@ bool CallSite::hasArgument(const Value *Arg) const {
return false; return false;
} }
#undef CALLSITE_DELEGATE_GETTER
#undef CALLSITE_DELEGATE_SETTER
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
// TerminatorInst Class // TerminatorInst Class
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
@@ -1442,7 +1416,7 @@ InsertValueInst::InsertValueInst(Value *Agg,
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
void ExtractValueInst::init(const unsigned *Idx, unsigned NumIdx, void ExtractValueInst::init(const unsigned *Idx, unsigned NumIdx,
const std::string &Name) { const std::string &Name) {
assert(NumOperands == 1 && "NumOperands not initialized?"); assert(NumOperands == 1 && "NumOperands not initialized?");
Indices.insert(Indices.end(), Idx, Idx + NumIdx); Indices.insert(Indices.end(), Idx, Idx + NumIdx);