2001-06-06 20:29:01 +00:00
|
|
|
//===-- Instruction.cpp - Implement the Instruction class --------*- C++ -*--=//
|
|
|
|
//
|
|
|
|
// This file implements the Instruction class for the VMCore library.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2002-04-07 20:49:59 +00:00
|
|
|
#include "llvm/Function.h"
|
2001-06-06 20:29:01 +00:00
|
|
|
#include "llvm/SymbolTable.h"
|
2002-06-25 16:13:24 +00:00
|
|
|
#include "llvm/Type.h"
|
2002-09-08 18:59:35 +00:00
|
|
|
#include "Support/LeakDetector.h"
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2002-09-10 15:45:53 +00:00
|
|
|
Instruction::Instruction(const Type *ty, unsigned it, const std::string &Name,
|
|
|
|
Instruction *InsertBefore)
|
2002-02-03 07:52:58 +00:00
|
|
|
: User(ty, Value::InstructionVal, Name) {
|
2001-06-06 20:29:01 +00:00
|
|
|
Parent = 0;
|
|
|
|
iType = it;
|
2002-09-08 18:59:35 +00:00
|
|
|
|
|
|
|
// Make sure that we get added to a basicblock
|
|
|
|
LeakDetector::addGarbageObject(this);
|
2002-09-10 15:45:53 +00:00
|
|
|
|
|
|
|
// If requested, insert this instruction into a basic block...
|
|
|
|
if (InsertBefore) {
|
|
|
|
assert(InsertBefore->getParent() &&
|
|
|
|
"Instruction to insert before is not in a basic block!");
|
|
|
|
InsertBefore->getParent()->getInstList().insert(InsertBefore, this);
|
|
|
|
}
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
|
|
|
|
2002-09-06 21:33:15 +00:00
|
|
|
void Instruction::setParent(BasicBlock *P) {
|
2002-09-08 18:59:35 +00:00
|
|
|
if (getParent())
|
|
|
|
LeakDetector::addGarbageObject(this);
|
|
|
|
|
2002-09-06 21:33:15 +00:00
|
|
|
Parent = P;
|
2002-09-08 18:59:35 +00:00
|
|
|
|
|
|
|
if (getParent())
|
|
|
|
LeakDetector::removeGarbageObject(this);
|
2002-09-06 21:33:15 +00:00
|
|
|
}
|
|
|
|
|
2001-06-06 20:29:01 +00:00
|
|
|
// Specialize setName to take care of symbol table majik
|
2002-01-20 22:54:45 +00:00
|
|
|
void Instruction::setName(const std::string &name, SymbolTable *ST) {
|
2002-04-07 20:49:59 +00:00
|
|
|
BasicBlock *P = 0; Function *PP = 0;
|
2001-09-07 16:47:03 +00:00
|
|
|
assert((ST == 0 || !getParent() || !getParent()->getParent() ||
|
2002-11-20 18:36:02 +00:00
|
|
|
ST == &getParent()->getParent()->getSymbolTable()) &&
|
2001-09-07 16:47:03 +00:00
|
|
|
"Invalid symtab argument!");
|
2001-06-06 20:29:01 +00:00
|
|
|
if ((P = getParent()) && (PP = P->getParent()) && hasName())
|
2002-11-20 18:36:02 +00:00
|
|
|
PP->getSymbolTable().remove(this);
|
2001-06-06 20:29:01 +00:00
|
|
|
Value::setName(name);
|
2002-11-20 18:36:02 +00:00
|
|
|
if (PP && hasName()) PP->getSymbolTable().insert(this);
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
2002-07-14 23:09:40 +00:00
|
|
|
|
|
|
|
|
|
|
|
const char *Instruction::getOpcodeName(unsigned OpCode) {
|
|
|
|
switch (OpCode) {
|
|
|
|
// Terminators
|
2002-08-14 18:18:02 +00:00
|
|
|
case Ret: return "ret";
|
|
|
|
case Br: return "br";
|
2002-07-14 23:09:40 +00:00
|
|
|
case Switch: return "switch";
|
|
|
|
case Invoke: return "invoke";
|
|
|
|
|
|
|
|
// Standard binary operators...
|
|
|
|
case Add: return "add";
|
|
|
|
case Sub: return "sub";
|
|
|
|
case Mul: return "mul";
|
|
|
|
case Div: return "div";
|
|
|
|
case Rem: return "rem";
|
|
|
|
|
|
|
|
// Logical operators...
|
|
|
|
case And: return "and";
|
|
|
|
case Or : return "or";
|
|
|
|
case Xor: return "xor";
|
|
|
|
|
|
|
|
// SetCC operators...
|
|
|
|
case SetLE: return "setle";
|
|
|
|
case SetGE: return "setge";
|
|
|
|
case SetLT: return "setlt";
|
|
|
|
case SetGT: return "setgt";
|
|
|
|
case SetEQ: return "seteq";
|
|
|
|
case SetNE: return "setne";
|
|
|
|
|
|
|
|
// Memory instructions...
|
|
|
|
case Malloc: return "malloc";
|
|
|
|
case Free: return "free";
|
|
|
|
case Alloca: return "alloca";
|
|
|
|
case Load: return "load";
|
|
|
|
case Store: return "store";
|
|
|
|
case GetElementPtr: return "getelementptr";
|
|
|
|
|
|
|
|
// Other instructions...
|
|
|
|
case PHINode: return "phi";
|
|
|
|
case Cast: return "cast";
|
|
|
|
case Call: return "call";
|
|
|
|
case Shl: return "shl";
|
|
|
|
case Shr: return "shr";
|
2003-05-08 02:44:12 +00:00
|
|
|
case VarArg: return "va_arg";
|
|
|
|
|
2002-07-14 23:09:40 +00:00
|
|
|
default: return "<Invalid operator> ";
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2002-10-31 04:14:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
/// isAssociative - Return true if the instruction is associative:
|
|
|
|
///
|
|
|
|
/// Associative operators satisfy: x op (y op z) === (x op y) op z)
|
|
|
|
///
|
|
|
|
/// In LLVM, the Add, Mul, And, Or, and Xor operators are associative, when not
|
|
|
|
/// applied to floating point types.
|
|
|
|
///
|
|
|
|
bool Instruction::isAssociative(unsigned Opcode, const Type *Ty) {
|
|
|
|
if (Opcode == Add || Opcode == Mul ||
|
|
|
|
Opcode == And || Opcode == Or || Opcode == Xor) {
|
|
|
|
// Floating point operations do not associate!
|
|
|
|
return !Ty->isFloatingPoint();
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// isCommutative - Return true if the instruction is commutative:
|
|
|
|
///
|
|
|
|
/// Commutative operators satistify: (x op y) === (y op x)
|
|
|
|
///
|
|
|
|
/// In LLVM, these are the associative operators, plus SetEQ and SetNE, when
|
|
|
|
/// applied to any type.
|
|
|
|
///
|
|
|
|
bool Instruction::isCommutative(unsigned op) {
|
|
|
|
switch (op) {
|
|
|
|
case Add:
|
|
|
|
case Mul:
|
|
|
|
case And:
|
|
|
|
case Or:
|
|
|
|
case Xor:
|
|
|
|
case SetEQ:
|
|
|
|
case SetNE:
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2003-07-31 04:05:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
/// isTrappingInstruction - Return true if the instruction may trap.
|
|
|
|
///
|
2003-07-31 05:06:09 +00:00
|
|
|
bool Instruction::isTrapping(unsigned op) {
|
2003-07-31 04:05:50 +00:00
|
|
|
switch(op) {
|
|
|
|
case Div:
|
|
|
|
case Rem:
|
|
|
|
case Load:
|
|
|
|
case Store:
|
|
|
|
case Call:
|
|
|
|
case Invoke:
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|