2001-06-06 20:29:01 +00:00
|
|
|
//===-- llvm/iOther.h - "Other" instruction node definitions -----*- C++ -*--=//
|
|
|
|
//
|
|
|
|
// This file contains the declarations for instructions that fall into the
|
|
|
|
// grandios 'other' catagory...
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_IOTHER_H
|
|
|
|
#define LLVM_IOTHER_H
|
|
|
|
|
|
|
|
#include "llvm/InstrTypes.h"
|
|
|
|
#include "llvm/Method.h"
|
|
|
|
|
2001-07-08 21:10:27 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// CastInst Class
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// CastInst - This class represents a cast from Operand[0] to the type of
|
|
|
|
// the instruction (i->getType()).
|
|
|
|
//
|
|
|
|
class CastInst : public Instruction {
|
|
|
|
CastInst(const CastInst &CI) : Instruction(CI.getType(), Cast) {
|
|
|
|
Operands.reserve(1);
|
2001-09-07 16:26:13 +00:00
|
|
|
Operands.push_back(Use(CI.Operands[0], this));
|
2001-07-08 21:10:27 +00:00
|
|
|
}
|
|
|
|
public:
|
2002-01-20 22:54:45 +00:00
|
|
|
CastInst(Value *S, const Type *Ty, const std::string &Name = "")
|
2001-07-08 21:10:27 +00:00
|
|
|
: Instruction(Ty, Cast, Name) {
|
|
|
|
Operands.reserve(1);
|
|
|
|
Operands.push_back(Use(S, this));
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual Instruction *clone() const { return new CastInst(*this); }
|
|
|
|
virtual const char *getOpcodeName() const { return "cast"; }
|
2001-10-02 03:41:24 +00:00
|
|
|
|
|
|
|
// Methods for support type inquiry through isa, cast, and dyn_cast:
|
|
|
|
static inline bool classof(const CastInst *) { return true; }
|
|
|
|
static inline bool classof(const Instruction *I) {
|
|
|
|
return I->getOpcode() == Cast;
|
|
|
|
}
|
|
|
|
static inline bool classof(const Value *V) {
|
|
|
|
return isa<Instruction>(V) && classof(cast<Instruction>(V));
|
|
|
|
}
|
2001-07-08 21:10:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2001-06-06 20:29:01 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// MethodArgument Class
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
class MethodArgument : public Value { // Defined in the InstrType.cpp file
|
|
|
|
Method *Parent;
|
|
|
|
|
2001-07-14 06:07:58 +00:00
|
|
|
friend class ValueHolder<MethodArgument,Method,Method>;
|
2001-06-06 20:29:01 +00:00
|
|
|
inline void setParent(Method *parent) { Parent = parent; }
|
|
|
|
|
|
|
|
public:
|
2002-01-20 22:54:45 +00:00
|
|
|
MethodArgument(const Type *Ty, const std::string &Name = "")
|
2001-06-06 20:29:01 +00:00
|
|
|
: Value(Ty, Value::MethodArgumentVal, Name) {
|
|
|
|
Parent = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Specialize setName to handle symbol table majik...
|
2002-01-20 22:54:45 +00:00
|
|
|
virtual void setName(const std::string &name, SymbolTable *ST = 0);
|
2001-06-06 20:29:01 +00:00
|
|
|
|
|
|
|
inline const Method *getParent() const { return Parent; }
|
|
|
|
inline Method *getParent() { return Parent; }
|
2001-10-01 16:18:37 +00:00
|
|
|
|
|
|
|
// Methods for support type inquiry through isa, cast, and dyn_cast:
|
2001-10-02 03:41:24 +00:00
|
|
|
static inline bool classof(const MethodArgument *) { return true; }
|
|
|
|
static inline bool classof(const Value *V) {
|
2001-10-01 16:18:37 +00:00
|
|
|
return V->getValueType() == MethodArgumentVal;
|
|
|
|
}
|
2001-06-06 20:29:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Classes to function calls and method invocations
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
class CallInst : public Instruction {
|
|
|
|
CallInst(const CallInst &CI);
|
|
|
|
public:
|
2002-01-20 22:54:45 +00:00
|
|
|
CallInst(Value *M, const std::vector<Value*> &Par, const std::string & = "");
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2001-07-07 19:24:15 +00:00
|
|
|
virtual const char *getOpcodeName() const { return "call"; }
|
2001-06-06 20:29:01 +00:00
|
|
|
|
|
|
|
virtual Instruction *clone() const { return new CallInst(*this); }
|
|
|
|
bool hasSideEffects() const { return true; }
|
|
|
|
|
2001-07-07 08:36:50 +00:00
|
|
|
const Method *getCalledMethod() const {
|
2001-10-13 06:23:14 +00:00
|
|
|
return dyn_cast<Method>(Operands[0]);
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
2001-07-07 08:36:50 +00:00
|
|
|
Method *getCalledMethod() {
|
2001-10-13 06:23:14 +00:00
|
|
|
return dyn_cast<Method>(Operands[0]);
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
2001-10-02 03:41:24 +00:00
|
|
|
|
2001-10-13 06:23:14 +00:00
|
|
|
// getCalledValue - Get a pointer to a method that is invoked by this inst.
|
|
|
|
inline const Value *getCalledValue() const { return Operands[0]; }
|
|
|
|
inline Value *getCalledValue() { return Operands[0]; }
|
|
|
|
|
2001-10-02 03:41:24 +00:00
|
|
|
// Methods for support type inquiry through isa, cast, and dyn_cast:
|
|
|
|
static inline bool classof(const CallInst *) { return true; }
|
|
|
|
static inline bool classof(const Instruction *I) {
|
|
|
|
return I->getOpcode() == Instruction::Call;
|
|
|
|
}
|
|
|
|
static inline bool classof(const Value *V) {
|
|
|
|
return isa<Instruction>(V) && classof(cast<Instruction>(V));
|
|
|
|
}
|
2001-06-06 20:29:01 +00:00
|
|
|
};
|
|
|
|
|
2001-07-08 21:10:27 +00:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// ShiftInst Class
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// ShiftInst - This class represents left and right shift instructions.
|
|
|
|
//
|
|
|
|
class ShiftInst : public Instruction {
|
2001-09-07 16:26:13 +00:00
|
|
|
ShiftInst(const ShiftInst &SI) : Instruction(SI.getType(), SI.getOpcode()) {
|
2001-07-08 21:10:27 +00:00
|
|
|
Operands.reserve(2);
|
2001-09-07 16:26:13 +00:00
|
|
|
Operands.push_back(Use(SI.Operands[0], this));
|
|
|
|
Operands.push_back(Use(SI.Operands[1], this));
|
2001-07-08 21:10:27 +00:00
|
|
|
}
|
|
|
|
public:
|
2002-01-20 22:54:45 +00:00
|
|
|
ShiftInst(OtherOps Opcode, Value *S, Value *SA, const std::string &Name = "")
|
2001-07-08 21:10:27 +00:00
|
|
|
: Instruction(S->getType(), Opcode, Name) {
|
|
|
|
assert((Opcode == Shl || Opcode == Shr) && "ShiftInst Opcode invalid!");
|
|
|
|
Operands.reserve(2);
|
|
|
|
Operands.push_back(Use(S, this));
|
|
|
|
Operands.push_back(Use(SA, this));
|
|
|
|
}
|
|
|
|
|
2001-11-01 02:39:36 +00:00
|
|
|
OtherOps getOpcode() const { return (OtherOps)Instruction::getOpcode(); }
|
|
|
|
|
2001-07-08 21:10:27 +00:00
|
|
|
virtual Instruction *clone() const { return new ShiftInst(*this); }
|
|
|
|
virtual const char *getOpcodeName() const {
|
|
|
|
return getOpcode() == Shl ? "shl" : "shr";
|
|
|
|
}
|
2001-10-02 03:41:24 +00:00
|
|
|
|
|
|
|
// Methods for support type inquiry through isa, cast, and dyn_cast:
|
|
|
|
static inline bool classof(const ShiftInst *) { return true; }
|
|
|
|
static inline bool classof(const Instruction *I) {
|
|
|
|
return (I->getOpcode() == Instruction::Shr) |
|
|
|
|
(I->getOpcode() == Instruction::Shl);
|
|
|
|
}
|
|
|
|
static inline bool classof(const Value *V) {
|
|
|
|
return isa<Instruction>(V) && classof(cast<Instruction>(V));
|
|
|
|
}
|
2001-07-08 21:10:27 +00:00
|
|
|
};
|
|
|
|
|
2001-06-06 20:29:01 +00:00
|
|
|
#endif
|