2003-02-24 21:35:45 +01:00
|
|
|
//===-- llvm/Support/CallSite.h - Abstract Call & Invoke instrs -*- C++ -*-===//
|
2005-04-21 22:48:15 +02:00
|
|
|
//
|
2003-10-20 22:19:47 +02:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
2005-04-21 22:48:15 +02:00
|
|
|
//
|
2003-10-20 22:19:47 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2003-02-24 21:35:45 +01:00
|
|
|
//
|
|
|
|
// This file defines the CallSite class, which is a handy wrapper for code that
|
|
|
|
// wants to treat Call and Invoke instructions in a generic way.
|
|
|
|
//
|
2003-11-07 20:25:22 +01:00
|
|
|
// NOTE: This class is supposed to have "value semantics". So it should be
|
|
|
|
// 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
|
2004-11-14 00:28:10 +01:00
|
|
|
// to copying a pointer (notice that it has only a single data member).
|
2003-11-07 20:25:22 +01:00
|
|
|
//
|
2003-02-24 21:35:45 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_SUPPORT_CALLSITE_H
|
|
|
|
#define LLVM_SUPPORT_CALLSITE_H
|
|
|
|
|
|
|
|
#include "llvm/Instruction.h"
|
2004-05-23 10:02:45 +02:00
|
|
|
#include "llvm/BasicBlock.h"
|
2003-02-24 21:35:45 +01:00
|
|
|
|
2003-11-11 23:41:34 +01:00
|
|
|
namespace llvm {
|
|
|
|
|
2003-02-24 21:35:45 +01:00
|
|
|
class CallInst;
|
|
|
|
class InvokeInst;
|
|
|
|
|
|
|
|
class CallSite {
|
|
|
|
Instruction *I;
|
|
|
|
public:
|
2003-06-17 21:50:28 +02:00
|
|
|
CallSite() : I(0) {}
|
2005-05-15 18:13:11 +02:00
|
|
|
CallSite(CallInst *CI) : I(reinterpret_cast<Instruction*>(CI)) {}
|
|
|
|
CallSite(InvokeInst *II) : I(reinterpret_cast<Instruction*>(II)) {}
|
2003-06-17 21:50:28 +02:00
|
|
|
CallSite(const CallSite &CS) : I(CS.I) {}
|
|
|
|
CallSite &operator=(const CallSite &CS) { I = CS.I; return *this; }
|
2003-02-24 21:35:45 +01:00
|
|
|
|
2003-06-18 00:16:59 +02:00
|
|
|
/// 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
|
|
|
|
/// can also create a null initialized CallSite object for something which is
|
|
|
|
/// NOT a call site.
|
|
|
|
///
|
|
|
|
static CallSite get(Value *V) {
|
|
|
|
if (Instruction *I = dyn_cast<Instruction>(V)) {
|
|
|
|
if (I->getOpcode() == Instruction::Call)
|
2005-05-15 18:13:11 +02:00
|
|
|
return CallSite(reinterpret_cast<CallInst*>(I));
|
2003-06-18 00:16:59 +02:00
|
|
|
else if (I->getOpcode() == Instruction::Invoke)
|
2005-05-15 18:13:11 +02:00
|
|
|
return CallSite(reinterpret_cast<InvokeInst*>(I));
|
2003-06-18 00:16:59 +02:00
|
|
|
}
|
|
|
|
return CallSite();
|
|
|
|
}
|
|
|
|
|
2005-05-06 22:26:26 +02:00
|
|
|
/// getCallingConv/setCallingConv - get or set the calling convention of the
|
|
|
|
/// call.
|
|
|
|
unsigned getCallingConv() const;
|
|
|
|
void setCallingConv(unsigned CC);
|
|
|
|
|
2003-11-05 21:25:33 +01:00
|
|
|
/// getType - Return the type of the instruction that generated this call site
|
|
|
|
///
|
2004-11-14 00:28:10 +01:00
|
|
|
const Type *getType() const { return I->getType(); }
|
2003-11-05 21:25:33 +01:00
|
|
|
|
2003-06-17 23:44:31 +02:00
|
|
|
/// getInstruction - Return the instruction this call site corresponds to
|
2003-06-17 23:44:51 +02:00
|
|
|
///
|
2003-06-17 23:44:31 +02:00
|
|
|
Instruction *getInstruction() const { return I; }
|
|
|
|
|
2004-05-23 10:02:45 +02:00
|
|
|
/// getCaller - Return the caller function for this call site
|
|
|
|
///
|
|
|
|
Function *getCaller() const { return I->getParent()->getParent(); }
|
|
|
|
|
2003-02-24 21:35:45 +01:00
|
|
|
/// getCalledValue - Return the pointer to function that is being called...
|
|
|
|
///
|
2003-10-23 21:33:49 +02:00
|
|
|
Value *getCalledValue() const {
|
|
|
|
assert(I && "Not a call or invoke instruction!");
|
|
|
|
return I->getOperand(0);
|
|
|
|
}
|
2003-02-24 21:35:45 +01:00
|
|
|
|
|
|
|
/// getCalledFunction - Return the function being called if this is a direct
|
|
|
|
/// call, otherwise return null (if it's an indirect call).
|
|
|
|
///
|
2004-11-18 18:46:57 +01:00
|
|
|
Function *getCalledFunction() const {
|
|
|
|
return dyn_cast<Function>(getCalledValue());
|
|
|
|
}
|
2003-02-24 21:35:45 +01:00
|
|
|
|
2003-10-10 19:42:19 +02:00
|
|
|
/// setCalledFunction - Set the callee to the specified value...
|
2003-06-18 00:16:59 +02:00
|
|
|
///
|
|
|
|
void setCalledFunction(Value *V) {
|
2003-10-23 21:33:49 +02:00
|
|
|
assert(I && "Not a call or invoke instruction!");
|
2003-06-18 00:16:59 +02:00
|
|
|
I->setOperand(0, V);
|
|
|
|
}
|
|
|
|
|
2004-11-14 00:28:10 +01:00
|
|
|
Value *getArgument(unsigned ArgNo) const {
|
|
|
|
assert(arg_begin() + ArgNo < arg_end() && "Argument # out of range!");
|
|
|
|
return *(arg_begin()+ArgNo);
|
|
|
|
}
|
|
|
|
|
2003-02-24 21:35:45 +01:00
|
|
|
/// arg_iterator - The type of iterator to use when looping over actual
|
|
|
|
/// arguments at this call site...
|
|
|
|
typedef User::op_iterator arg_iterator;
|
|
|
|
|
|
|
|
/// arg_begin/arg_end - Return iterators corresponding to the actual argument
|
|
|
|
/// list for a call site.
|
|
|
|
///
|
|
|
|
arg_iterator arg_begin() const {
|
2003-10-23 21:33:49 +02:00
|
|
|
assert(I && "Not a call or invoke instruction!");
|
2003-02-24 21:35:45 +01:00
|
|
|
if (I->getOpcode() == Instruction::Call)
|
|
|
|
return I->op_begin()+1; // Skip Function
|
|
|
|
else
|
|
|
|
return I->op_begin()+3; // Skip Function, BB, BB
|
|
|
|
}
|
2003-06-18 00:16:59 +02:00
|
|
|
arg_iterator arg_end() const { return I->op_end(); }
|
2004-06-05 02:17:13 +02:00
|
|
|
unsigned arg_size() const { return unsigned(arg_end() - arg_begin()); }
|
2003-11-03 00:04:33 +01:00
|
|
|
|
|
|
|
bool operator<(const CallSite &CS) const {
|
|
|
|
return getInstruction() < CS.getInstruction();
|
|
|
|
}
|
2003-02-24 21:35:45 +01:00
|
|
|
};
|
|
|
|
|
2003-11-11 23:41:34 +01:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2003-02-24 21:35:45 +01:00
|
|
|
#endif
|