2001-06-06 22:29:01 +02:00
|
|
|
//===-- llvm/iOther.h - "Other" instruction node definitions -----*- C++ -*--=//
|
|
|
|
//
|
|
|
|
// This file contains the declarations for instructions that fall into the
|
2002-09-10 17:36:11 +02:00
|
|
|
// grandiose 'other' catagory...
|
2001-06-06 22:29:01 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_IOTHER_H
|
|
|
|
#define LLVM_IOTHER_H
|
|
|
|
|
|
|
|
#include "llvm/InstrTypes.h"
|
|
|
|
|
2001-07-08 23:10:27 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// CastInst Class
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2002-09-10 17:36:11 +02:00
|
|
|
/// CastInst - This class represents a cast from Operand[0] to the type of
|
|
|
|
/// the instruction (i->getType()).
|
|
|
|
///
|
2001-07-08 23:10:27 +02:00
|
|
|
class CastInst : public Instruction {
|
|
|
|
CastInst(const CastInst &CI) : Instruction(CI.getType(), Cast) {
|
|
|
|
Operands.reserve(1);
|
2001-09-07 18:26:13 +02:00
|
|
|
Operands.push_back(Use(CI.Operands[0], this));
|
2001-07-08 23:10:27 +02:00
|
|
|
}
|
|
|
|
public:
|
2002-09-10 17:36:11 +02:00
|
|
|
CastInst(Value *S, const Type *Ty, const std::string &Name = "",
|
|
|
|
Instruction *InsertBefore = 0)
|
|
|
|
: Instruction(Ty, Cast, Name, InsertBefore) {
|
2001-07-08 23:10:27 +02:00
|
|
|
Operands.reserve(1);
|
|
|
|
Operands.push_back(Use(S, this));
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual Instruction *clone() const { return new CastInst(*this); }
|
2001-10-02 05:41:24 +02: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 23:10:27 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2001-06-06 22:29:01 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2002-09-10 17:36:11 +02:00
|
|
|
// CallInst Class
|
2001-06-06 22:29:01 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
class CallInst : public Instruction {
|
|
|
|
CallInst(const CallInst &CI);
|
|
|
|
public:
|
2002-09-10 17:36:11 +02:00
|
|
|
CallInst(Value *F, const std::vector<Value*> &Par,
|
|
|
|
const std::string &Name = "", Instruction *InsertBefore = 0);
|
2001-06-06 22:29:01 +02:00
|
|
|
|
2003-05-10 03:56:42 +02:00
|
|
|
// Alternate CallInst ctors w/ no actuals & one actual, respectively.
|
2003-02-01 01:41:27 +01:00
|
|
|
CallInst(Value *F, const std::string &Name = "",
|
|
|
|
Instruction *InsertBefore = 0);
|
|
|
|
CallInst(Value *F, Value *Actual, const std::string& Name = "",
|
|
|
|
Instruction* InsertBefore = 0);
|
|
|
|
|
2001-06-06 22:29:01 +02:00
|
|
|
virtual Instruction *clone() const { return new CallInst(*this); }
|
2003-02-24 21:48:32 +01:00
|
|
|
bool mayWriteToMemory() const { return true; }
|
2001-06-06 22:29:01 +02:00
|
|
|
|
2002-03-26 18:48:08 +01:00
|
|
|
const Function *getCalledFunction() const {
|
2002-04-09 21:07:44 +02:00
|
|
|
return dyn_cast<Function>(Operands[0].get());
|
2001-06-06 22:29:01 +02:00
|
|
|
}
|
2002-03-26 18:48:08 +01:00
|
|
|
Function *getCalledFunction() {
|
2002-04-09 21:07:44 +02:00
|
|
|
return dyn_cast<Function>(Operands[0].get());
|
2001-06-06 22:29:01 +02:00
|
|
|
}
|
2001-10-02 05:41:24 +02:00
|
|
|
|
2001-10-13 08:23:14 +02: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 05:41:24 +02: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 22:29:01 +02:00
|
|
|
};
|
|
|
|
|
2001-07-08 23:10:27 +02:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// ShiftInst Class
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// ShiftInst - This class represents left and right shift instructions.
|
|
|
|
//
|
|
|
|
class ShiftInst : public Instruction {
|
2001-09-07 18:26:13 +02:00
|
|
|
ShiftInst(const ShiftInst &SI) : Instruction(SI.getType(), SI.getOpcode()) {
|
2001-07-08 23:10:27 +02:00
|
|
|
Operands.reserve(2);
|
2001-09-07 18:26:13 +02:00
|
|
|
Operands.push_back(Use(SI.Operands[0], this));
|
|
|
|
Operands.push_back(Use(SI.Operands[1], this));
|
2001-07-08 23:10:27 +02:00
|
|
|
}
|
|
|
|
public:
|
2002-09-10 17:36:11 +02:00
|
|
|
ShiftInst(OtherOps Opcode, Value *S, Value *SA, const std::string &Name = "",
|
|
|
|
Instruction *InsertBefore = 0)
|
|
|
|
: Instruction(S->getType(), Opcode, Name, InsertBefore) {
|
2001-07-08 23:10:27 +02:00
|
|
|
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 03:39:36 +01:00
|
|
|
OtherOps getOpcode() const { return (OtherOps)Instruction::getOpcode(); }
|
|
|
|
|
2001-07-08 23:10:27 +02:00
|
|
|
virtual Instruction *clone() const { return new ShiftInst(*this); }
|
2001-10-02 05:41:24 +02: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 23:10:27 +02:00
|
|
|
};
|
|
|
|
|
2003-05-08 04:42:50 +02:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// VarArgInst Class
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
/// VarArgInst - This class represents the va_arg llvm instruction, which reads
|
|
|
|
/// an argument of the destination type from the va_list operand pointed to by
|
|
|
|
/// the only operand.
|
|
|
|
///
|
|
|
|
class VarArgInst : public Instruction {
|
|
|
|
VarArgInst(const VarArgInst &VAI) : Instruction(VAI.getType(), VarArg) {
|
|
|
|
Operands.reserve(1);
|
|
|
|
Operands.push_back(Use(VAI.Operands[0], this));
|
|
|
|
}
|
|
|
|
public:
|
|
|
|
VarArgInst(Value *S, const Type *Ty, const std::string &Name = "",
|
|
|
|
Instruction *InsertBefore = 0)
|
|
|
|
: Instruction(Ty, VarArg, Name, InsertBefore) {
|
|
|
|
Operands.reserve(1);
|
|
|
|
Operands.push_back(Use(S, this));
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual Instruction *clone() const { return new VarArgInst(*this); }
|
|
|
|
|
|
|
|
bool mayWriteToMemory() const { return true; }
|
|
|
|
|
|
|
|
// Methods for support type inquiry through isa, cast, and dyn_cast:
|
|
|
|
static inline bool classof(const VarArgInst *) { return true; }
|
|
|
|
static inline bool classof(const Instruction *I) {
|
|
|
|
return I->getOpcode() == VarArg;
|
|
|
|
}
|
|
|
|
static inline bool classof(const Value *V) {
|
|
|
|
return isa<Instruction>(V) && classof(cast<Instruction>(V));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2001-06-06 22:29:01 +02:00
|
|
|
#endif
|