2003-10-13 03:32:08 +00:00
|
|
|
//===-- Instruction.cpp - Implement the Instruction class -----------------===//
|
2005-04-21 23:48:37 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 23:48:37 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-06-06 20:29:01 +00:00
|
|
|
//
|
|
|
|
// This file implements the Instruction class for the VMCore library.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2006-11-20 01:22:35 +00:00
|
|
|
#include "llvm/Type.h"
|
2004-11-30 02:51:53 +00:00
|
|
|
#include "llvm/Instructions.h"
|
2002-04-07 20:49:59 +00:00
|
|
|
#include "llvm/Function.h"
|
2007-12-03 20:06:50 +00:00
|
|
|
#include "llvm/Support/CallSite.h"
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/Support/LeakDetector.h"
|
2003-11-20 17:45:12 +00:00
|
|
|
using namespace llvm;
|
2003-11-11 22:41:34 +00:00
|
|
|
|
2005-01-29 00:35:33 +00:00
|
|
|
Instruction::Instruction(const Type *ty, unsigned it, Use *Ops, unsigned NumOps,
|
2007-02-24 00:55:48 +00:00
|
|
|
Instruction *InsertBefore)
|
2007-02-12 05:18:08 +00:00
|
|
|
: User(ty, Value::InstructionVal + it, Ops, NumOps), Parent(0) {
|
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
|
|
|
}
|
|
|
|
|
2005-01-29 00:35:33 +00:00
|
|
|
Instruction::Instruction(const Type *ty, unsigned it, Use *Ops, unsigned NumOps,
|
2007-02-24 00:55:48 +00:00
|
|
|
BasicBlock *InsertAtEnd)
|
2007-02-12 05:18:08 +00:00
|
|
|
: User(ty, Value::InstructionVal + it, Ops, NumOps), Parent(0) {
|
2005-01-29 00:35:33 +00:00
|
|
|
// Make sure that we get added to a basicblock
|
|
|
|
LeakDetector::addGarbageObject(this);
|
2004-05-26 21:41:09 +00:00
|
|
|
|
|
|
|
// append this instruction into the basic block
|
|
|
|
assert(InsertAtEnd && "Basic block to append to may not be NULL!");
|
|
|
|
InsertAtEnd->getInstList().push_back(this);
|
2007-02-13 07:54:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-06-21 16:53:47 +00:00
|
|
|
// Out of line virtual method, so the vtable, etc has a home.
|
2007-12-10 02:14:30 +00:00
|
|
|
Instruction::~Instruction() {
|
|
|
|
assert(Parent == 0 && "Instruction still linked in the program!");
|
2006-06-21 16:53:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-09-06 21:33:15 +00:00
|
|
|
void Instruction::setParent(BasicBlock *P) {
|
2004-02-04 01:06:38 +00:00
|
|
|
if (getParent()) {
|
|
|
|
if (!P) LeakDetector::addGarbageObject(this);
|
|
|
|
} else {
|
|
|
|
if (P) LeakDetector::removeGarbageObject(this);
|
|
|
|
}
|
2002-09-08 18:59:35 +00:00
|
|
|
|
2002-09-06 21:33:15 +00:00
|
|
|
Parent = P;
|
|
|
|
}
|
|
|
|
|
2004-10-11 22:21:39 +00:00
|
|
|
void Instruction::removeFromParent() {
|
|
|
|
getParent()->getInstList().remove(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Instruction::eraseFromParent() {
|
|
|
|
getParent()->getInstList().erase(this);
|
|
|
|
}
|
2002-07-14 23:09:40 +00:00
|
|
|
|
2005-08-08 05:21:50 +00:00
|
|
|
/// moveBefore - Unlink this instruction from its current basic block and
|
|
|
|
/// insert it into the basic block that MovePos lives in, right before
|
|
|
|
/// MovePos.
|
|
|
|
void Instruction::moveBefore(Instruction *MovePos) {
|
|
|
|
MovePos->getParent()->getInstList().splice(MovePos,getParent()->getInstList(),
|
|
|
|
this);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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";
|
2003-09-08 18:54:36 +00:00
|
|
|
case Unwind: return "unwind";
|
2004-10-16 18:08:06 +00:00
|
|
|
case Unreachable: return "unreachable";
|
2005-04-21 23:48:37 +00:00
|
|
|
|
2002-07-14 23:09:40 +00:00
|
|
|
// Standard binary operators...
|
|
|
|
case Add: return "add";
|
|
|
|
case Sub: return "sub";
|
|
|
|
case Mul: return "mul";
|
2006-10-26 06:15:43 +00:00
|
|
|
case UDiv: return "udiv";
|
|
|
|
case SDiv: return "sdiv";
|
|
|
|
case FDiv: return "fdiv";
|
2006-11-02 01:53:59 +00:00
|
|
|
case URem: return "urem";
|
|
|
|
case SRem: return "srem";
|
|
|
|
case FRem: return "frem";
|
2002-07-14 23:09:40 +00:00
|
|
|
|
|
|
|
// Logical operators...
|
|
|
|
case And: return "and";
|
|
|
|
case Or : return "or";
|
|
|
|
case Xor: return "xor";
|
|
|
|
|
|
|
|
// 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";
|
2005-04-21 23:48:37 +00:00
|
|
|
|
2006-11-27 01:05:10 +00:00
|
|
|
// Convert instructions...
|
|
|
|
case Trunc: return "trunc";
|
|
|
|
case ZExt: return "zext";
|
|
|
|
case SExt: return "sext";
|
|
|
|
case FPTrunc: return "fptrunc";
|
|
|
|
case FPExt: return "fpext";
|
|
|
|
case FPToUI: return "fptoui";
|
|
|
|
case FPToSI: return "fptosi";
|
|
|
|
case UIToFP: return "uitofp";
|
|
|
|
case SIToFP: return "sitofp";
|
|
|
|
case IntToPtr: return "inttoptr";
|
|
|
|
case PtrToInt: return "ptrtoint";
|
|
|
|
case BitCast: return "bitcast";
|
|
|
|
|
2002-07-14 23:09:40 +00:00
|
|
|
// Other instructions...
|
2006-12-03 06:27:29 +00:00
|
|
|
case ICmp: return "icmp";
|
|
|
|
case FCmp: return "fcmp";
|
2008-05-12 19:01:56 +00:00
|
|
|
case VICmp: return "vicmp";
|
|
|
|
case VFCmp: return "vfcmp";
|
2006-11-27 01:05:10 +00:00
|
|
|
case PHI: return "phi";
|
|
|
|
case Select: return "select";
|
|
|
|
case Call: return "call";
|
|
|
|
case Shl: return "shl";
|
|
|
|
case LShr: return "lshr";
|
|
|
|
case AShr: return "ashr";
|
|
|
|
case VAArg: return "va_arg";
|
2006-01-10 19:05:34 +00:00
|
|
|
case ExtractElement: return "extractelement";
|
2006-11-27 01:05:10 +00:00
|
|
|
case InsertElement: return "insertelement";
|
|
|
|
case ShuffleVector: return "shufflevector";
|
2008-02-21 23:02:20 +00:00
|
|
|
case GetResult: return "getresult";
|
2003-05-08 02:44:12 +00:00
|
|
|
|
2002-07-14 23:09:40 +00:00
|
|
|
default: return "<Invalid operator> ";
|
|
|
|
}
|
2005-04-21 23:48:37 +00:00
|
|
|
|
2002-07-14 23:09:40 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2002-10-31 04:14:01 +00:00
|
|
|
|
2004-11-30 02:51:53 +00:00
|
|
|
/// isIdenticalTo - Return true if the specified instruction is exactly
|
|
|
|
/// identical to the current one. This means that all operands match and any
|
|
|
|
/// extra information (e.g. load is volatile) agree.
|
|
|
|
bool Instruction::isIdenticalTo(Instruction *I) const {
|
|
|
|
if (getOpcode() != I->getOpcode() ||
|
|
|
|
getNumOperands() != I->getNumOperands() ||
|
|
|
|
getType() != I->getType())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// We have two instructions of identical opcode and #operands. Check to see
|
|
|
|
// if all operands are the same.
|
|
|
|
for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
|
|
|
|
if (getOperand(i) != I->getOperand(i))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Check special state that is a part of some instructions.
|
|
|
|
if (const LoadInst *LI = dyn_cast<LoadInst>(this))
|
|
|
|
return LI->isVolatile() == cast<LoadInst>(I)->isVolatile();
|
|
|
|
if (const StoreInst *SI = dyn_cast<StoreInst>(this))
|
|
|
|
return SI->isVolatile() == cast<StoreInst>(I)->isVolatile();
|
2006-12-23 06:05:41 +00:00
|
|
|
if (const CmpInst *CI = dyn_cast<CmpInst>(this))
|
|
|
|
return CI->getPredicate() == cast<CmpInst>(I)->getPredicate();
|
|
|
|
if (const CallInst *CI = dyn_cast<CallInst>(this))
|
|
|
|
return CI->isTailCall() == cast<CallInst>(I)->isTailCall();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// isSameOperationAs
|
|
|
|
bool Instruction::isSameOperationAs(Instruction *I) const {
|
|
|
|
if (getOpcode() != I->getOpcode() || getType() != I->getType() ||
|
|
|
|
getNumOperands() != I->getNumOperands())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// We have two instructions of identical opcode and #operands. Check to see
|
|
|
|
// if all operands are the same type
|
|
|
|
for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
|
|
|
|
if (getOperand(i)->getType() != I->getOperand(i)->getType())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Check special state that is a part of some instructions.
|
|
|
|
if (const LoadInst *LI = dyn_cast<LoadInst>(this))
|
|
|
|
return LI->isVolatile() == cast<LoadInst>(I)->isVolatile();
|
|
|
|
if (const StoreInst *SI = dyn_cast<StoreInst>(this))
|
|
|
|
return SI->isVolatile() == cast<StoreInst>(I)->isVolatile();
|
|
|
|
if (const CmpInst *CI = dyn_cast<CmpInst>(this))
|
|
|
|
return CI->getPredicate() == cast<CmpInst>(I)->getPredicate();
|
2005-05-06 05:51:46 +00:00
|
|
|
if (const CallInst *CI = dyn_cast<CallInst>(this))
|
|
|
|
return CI->isTailCall() == cast<CallInst>(I)->isTailCall();
|
2006-12-23 06:05:41 +00:00
|
|
|
|
2004-11-30 02:51:53 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-04-20 22:11:30 +00:00
|
|
|
/// isUsedOutsideOfBlock - Return true if there are any uses of I outside of the
|
|
|
|
/// specified block. Note that PHI nodes are considered to evaluate their
|
|
|
|
/// operands in the corresponding predecessor block.
|
|
|
|
bool Instruction::isUsedOutsideOfBlock(const BasicBlock *BB) const {
|
|
|
|
for (use_const_iterator UI = use_begin(), E = use_end(); UI != E; ++UI) {
|
|
|
|
// PHI nodes uses values in the corresponding predecessor block. For other
|
|
|
|
// instructions, just check to see whether the parent of the use matches up.
|
|
|
|
const PHINode *PN = dyn_cast<PHINode>(*UI);
|
|
|
|
if (PN == 0) {
|
|
|
|
if (cast<Instruction>(*UI)->getParent() != BB)
|
|
|
|
return true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned UseOperand = UI.getOperandNo();
|
|
|
|
if (PN->getIncomingBlock(UseOperand/2) != BB)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-05-08 17:16:51 +00:00
|
|
|
/// mayReadFromMemory - Return true if this instruction may read memory.
|
|
|
|
///
|
|
|
|
bool Instruction::mayReadFromMemory() const {
|
|
|
|
switch (getOpcode()) {
|
|
|
|
default: return false;
|
|
|
|
case Instruction::Free:
|
|
|
|
case Instruction::VAArg:
|
2008-05-08 21:58:49 +00:00
|
|
|
case Instruction::Load:
|
2008-05-08 17:16:51 +00:00
|
|
|
return true;
|
|
|
|
case Instruction::Call:
|
|
|
|
return !cast<CallInst>(this)->doesNotAccessMemory();
|
|
|
|
case Instruction::Invoke:
|
|
|
|
return !cast<InvokeInst>(this)->doesNotAccessMemory();
|
2008-05-08 21:58:49 +00:00
|
|
|
case Instruction::Store:
|
|
|
|
return cast<StoreInst>(this)->isVolatile();
|
2008-05-08 17:16:51 +00:00
|
|
|
}
|
|
|
|
}
|
2008-04-20 22:11:30 +00:00
|
|
|
|
2007-02-15 23:15:00 +00:00
|
|
|
/// mayWriteToMemory - Return true if this instruction may modify memory.
|
|
|
|
///
|
|
|
|
bool Instruction::mayWriteToMemory() const {
|
|
|
|
switch (getOpcode()) {
|
|
|
|
default: return false;
|
|
|
|
case Instruction::Free:
|
2007-12-03 20:06:50 +00:00
|
|
|
case Instruction::Store:
|
2007-02-15 23:15:00 +00:00
|
|
|
case Instruction::VAArg:
|
|
|
|
return true;
|
|
|
|
case Instruction::Call:
|
2007-12-03 20:06:50 +00:00
|
|
|
return !cast<CallInst>(this)->onlyReadsMemory();
|
2008-05-08 17:16:51 +00:00
|
|
|
case Instruction::Invoke:
|
|
|
|
return !cast<InvokeInst>(this)->onlyReadsMemory();
|
2007-02-15 23:15:00 +00:00
|
|
|
case Instruction::Load:
|
|
|
|
return cast<LoadInst>(this)->isVolatile();
|
|
|
|
}
|
|
|
|
}
|
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) {
|
2006-10-26 18:27:26 +00:00
|
|
|
if (Opcode == And || Opcode == Or || Opcode == Xor)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// Add/Mul reassociate unless they are FP or FP vectors.
|
|
|
|
if (Opcode == Add || Opcode == Mul)
|
|
|
|
return !Ty->isFPOrFPVector();
|
2002-10-31 04:14:01 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// isCommutative - Return true if the instruction is commutative:
|
|
|
|
///
|
2003-10-10 17:54:14 +00:00
|
|
|
/// Commutative operators satisfy: (x op y) === (y op x)
|
2002-10-31 04:14:01 +00:00
|
|
|
///
|
|
|
|
/// 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:
|
2005-04-21 23:48:37 +00:00
|
|
|
case And:
|
2002-10-31 04:14:01 +00:00
|
|
|
case Or:
|
|
|
|
case Xor:
|
|
|
|
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) {
|
2006-10-26 06:15:43 +00:00
|
|
|
case UDiv:
|
|
|
|
case SDiv:
|
|
|
|
case FDiv:
|
2006-11-02 01:53:59 +00:00
|
|
|
case URem:
|
|
|
|
case SRem:
|
|
|
|
case FRem:
|
2003-07-31 04:05:50 +00:00
|
|
|
case Load:
|
|
|
|
case Store:
|
|
|
|
case Call:
|
|
|
|
case Invoke:
|
2008-04-14 15:07:08 +00:00
|
|
|
case VAArg:
|
2003-07-31 04:05:50 +00:00
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|