blob: 7fc6245f6da5b526251e837c7a760f317467e08c [file] [log] [blame]
Chris Lattnercf3056d2003-10-13 03:32:08 +00001//===-- Instruction.cpp - Implement the Instruction class -----------------===//
Misha Brukmanfd939082005-04-21 23:48:37 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
Misha Brukmanfd939082005-04-21 23:48:37 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner00950542001-06-06 20:29:01 +00009//
10// This file implements the Instruction class for the VMCore library.
11//
12//===----------------------------------------------------------------------===//
13
Reid Spencer45fb3f32006-11-20 01:22:35 +000014#include "llvm/Type.h"
Chris Lattner38f14552004-11-30 02:51:53 +000015#include "llvm/Instructions.h"
Duncan Sands5d84afd2007-12-05 21:03:28 +000016#include "llvm/IntrinsicInst.h" // FIXME: remove
Chris Lattner2fbfdcf2002-04-07 20:49:59 +000017#include "llvm/Function.h"
Duncan Sandsa3355ff2007-12-03 20:06:50 +000018#include "llvm/Support/CallSite.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000019#include "llvm/Support/LeakDetector.h"
Chris Lattner4b74c832003-11-20 17:45:12 +000020using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000021
Chris Lattner96d83f62005-01-29 00:35:33 +000022Instruction::Instruction(const Type *ty, unsigned it, Use *Ops, unsigned NumOps,
Chris Lattner910c80a2007-02-24 00:55:48 +000023 Instruction *InsertBefore)
Chris Lattnerdec628e2007-02-12 05:18:08 +000024 : User(ty, Value::InstructionVal + it, Ops, NumOps), Parent(0) {
Chris Lattnerd1e693f2002-09-08 18:59:35 +000025 // Make sure that we get added to a basicblock
26 LeakDetector::addGarbageObject(this);
Chris Lattner2aa83112002-09-10 15:45:53 +000027
28 // If requested, insert this instruction into a basic block...
29 if (InsertBefore) {
30 assert(InsertBefore->getParent() &&
31 "Instruction to insert before is not in a basic block!");
32 InsertBefore->getParent()->getInstList().insert(InsertBefore, this);
33 }
Chris Lattner00950542001-06-06 20:29:01 +000034}
35
Chris Lattner96d83f62005-01-29 00:35:33 +000036Instruction::Instruction(const Type *ty, unsigned it, Use *Ops, unsigned NumOps,
Chris Lattner910c80a2007-02-24 00:55:48 +000037 BasicBlock *InsertAtEnd)
Chris Lattnerdec628e2007-02-12 05:18:08 +000038 : User(ty, Value::InstructionVal + it, Ops, NumOps), Parent(0) {
Chris Lattner96d83f62005-01-29 00:35:33 +000039 // Make sure that we get added to a basicblock
40 LeakDetector::addGarbageObject(this);
Alkis Evlogimenose5828f12004-05-26 21:41:09 +000041
42 // append this instruction into the basic block
43 assert(InsertAtEnd && "Basic block to append to may not be NULL!");
44 InsertAtEnd->getInstList().push_back(this);
Chris Lattnerf00042a2007-02-13 07:54:42 +000045}
46
47
Chris Lattner70aa33e2006-06-21 16:53:47 +000048// Out of line virtual method, so the vtable, etc has a home.
Gordon Henriksenafba8fe2007-12-10 02:14:30 +000049Instruction::~Instruction() {
50 assert(Parent == 0 && "Instruction still linked in the program!");
Chris Lattner70aa33e2006-06-21 16:53:47 +000051}
52
53
Chris Lattnerbded1322002-09-06 21:33:15 +000054void Instruction::setParent(BasicBlock *P) {
Chris Lattner786993c2004-02-04 01:06:38 +000055 if (getParent()) {
56 if (!P) LeakDetector::addGarbageObject(this);
57 } else {
58 if (P) LeakDetector::removeGarbageObject(this);
59 }
Chris Lattnerd1e693f2002-09-08 18:59:35 +000060
Chris Lattnerbded1322002-09-06 21:33:15 +000061 Parent = P;
62}
63
Chris Lattner4b833802004-10-11 22:21:39 +000064void Instruction::removeFromParent() {
65 getParent()->getInstList().remove(this);
66}
67
68void Instruction::eraseFromParent() {
69 getParent()->getInstList().erase(this);
70}
Vikram S. Advec1056452002-07-14 23:09:40 +000071
Chris Lattner0fe34d82005-08-08 05:21:50 +000072/// moveBefore - Unlink this instruction from its current basic block and
73/// insert it into the basic block that MovePos lives in, right before
74/// MovePos.
75void Instruction::moveBefore(Instruction *MovePos) {
76 MovePos->getParent()->getInstList().splice(MovePos,getParent()->getInstList(),
77 this);
78}
79
80
Vikram S. Advec1056452002-07-14 23:09:40 +000081const char *Instruction::getOpcodeName(unsigned OpCode) {
82 switch (OpCode) {
83 // Terminators
Chris Lattner0513e9f2002-08-14 18:18:02 +000084 case Ret: return "ret";
85 case Br: return "br";
Vikram S. Advec1056452002-07-14 23:09:40 +000086 case Switch: return "switch";
87 case Invoke: return "invoke";
Chris Lattnera6ce8982003-09-08 18:54:36 +000088 case Unwind: return "unwind";
Chris Lattnerb976e662004-10-16 18:08:06 +000089 case Unreachable: return "unreachable";
Misha Brukmanfd939082005-04-21 23:48:37 +000090
Vikram S. Advec1056452002-07-14 23:09:40 +000091 // Standard binary operators...
92 case Add: return "add";
93 case Sub: return "sub";
94 case Mul: return "mul";
Reid Spencer1628cec2006-10-26 06:15:43 +000095 case UDiv: return "udiv";
96 case SDiv: return "sdiv";
97 case FDiv: return "fdiv";
Reid Spencer0a783f72006-11-02 01:53:59 +000098 case URem: return "urem";
99 case SRem: return "srem";
100 case FRem: return "frem";
Vikram S. Advec1056452002-07-14 23:09:40 +0000101
102 // Logical operators...
103 case And: return "and";
104 case Or : return "or";
105 case Xor: return "xor";
106
Vikram S. Advec1056452002-07-14 23:09:40 +0000107 // Memory instructions...
108 case Malloc: return "malloc";
109 case Free: return "free";
110 case Alloca: return "alloca";
111 case Load: return "load";
112 case Store: return "store";
113 case GetElementPtr: return "getelementptr";
Misha Brukmanfd939082005-04-21 23:48:37 +0000114
Reid Spencer3da59db2006-11-27 01:05:10 +0000115 // Convert instructions...
116 case Trunc: return "trunc";
117 case ZExt: return "zext";
118 case SExt: return "sext";
119 case FPTrunc: return "fptrunc";
120 case FPExt: return "fpext";
121 case FPToUI: return "fptoui";
122 case FPToSI: return "fptosi";
123 case UIToFP: return "uitofp";
124 case SIToFP: return "sitofp";
125 case IntToPtr: return "inttoptr";
126 case PtrToInt: return "ptrtoint";
127 case BitCast: return "bitcast";
128
Vikram S. Advec1056452002-07-14 23:09:40 +0000129 // Other instructions...
Reid Spencer74f16422006-12-03 06:27:29 +0000130 case ICmp: return "icmp";
131 case FCmp: return "fcmp";
Reid Spencer3da59db2006-11-27 01:05:10 +0000132 case PHI: return "phi";
133 case Select: return "select";
134 case Call: return "call";
135 case Shl: return "shl";
136 case LShr: return "lshr";
137 case AShr: return "ashr";
138 case VAArg: return "va_arg";
Robert Bocchinob52ee7f2006-01-10 19:05:34 +0000139 case ExtractElement: return "extractelement";
Reid Spencer3da59db2006-11-27 01:05:10 +0000140 case InsertElement: return "insertelement";
141 case ShuffleVector: return "shufflevector";
Chris Lattner8f77dae2003-05-08 02:44:12 +0000142
Vikram S. Advec1056452002-07-14 23:09:40 +0000143 default: return "<Invalid operator> ";
144 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000145
Vikram S. Advec1056452002-07-14 23:09:40 +0000146 return 0;
147}
Chris Lattnerf2da7242002-10-31 04:14:01 +0000148
Chris Lattner38f14552004-11-30 02:51:53 +0000149/// isIdenticalTo - Return true if the specified instruction is exactly
150/// identical to the current one. This means that all operands match and any
151/// extra information (e.g. load is volatile) agree.
152bool Instruction::isIdenticalTo(Instruction *I) const {
153 if (getOpcode() != I->getOpcode() ||
154 getNumOperands() != I->getNumOperands() ||
155 getType() != I->getType())
156 return false;
157
158 // We have two instructions of identical opcode and #operands. Check to see
159 // if all operands are the same.
160 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
161 if (getOperand(i) != I->getOperand(i))
162 return false;
163
164 // Check special state that is a part of some instructions.
165 if (const LoadInst *LI = dyn_cast<LoadInst>(this))
166 return LI->isVolatile() == cast<LoadInst>(I)->isVolatile();
167 if (const StoreInst *SI = dyn_cast<StoreInst>(this))
168 return SI->isVolatile() == cast<StoreInst>(I)->isVolatile();
Reid Spencere4d87aa2006-12-23 06:05:41 +0000169 if (const CmpInst *CI = dyn_cast<CmpInst>(this))
170 return CI->getPredicate() == cast<CmpInst>(I)->getPredicate();
Chris Lattnerddb6db42005-05-06 05:51:46 +0000171 if (const CallInst *CI = dyn_cast<CallInst>(this))
172 return CI->isTailCall() == cast<CallInst>(I)->isTailCall();
Chris Lattner38f14552004-11-30 02:51:53 +0000173 return true;
174}
175
Reid Spencere4d87aa2006-12-23 06:05:41 +0000176// isSameOperationAs
177bool Instruction::isSameOperationAs(Instruction *I) const {
178 if (getOpcode() != I->getOpcode() || getType() != I->getType() ||
179 getNumOperands() != I->getNumOperands())
180 return false;
181
182 // We have two instructions of identical opcode and #operands. Check to see
183 // if all operands are the same type
184 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
185 if (getOperand(i)->getType() != I->getOperand(i)->getType())
186 return false;
187
188 // Check special state that is a part of some instructions.
189 if (const LoadInst *LI = dyn_cast<LoadInst>(this))
190 return LI->isVolatile() == cast<LoadInst>(I)->isVolatile();
191 if (const StoreInst *SI = dyn_cast<StoreInst>(this))
192 return SI->isVolatile() == cast<StoreInst>(I)->isVolatile();
193 if (const CmpInst *CI = dyn_cast<CmpInst>(this))
194 return CI->getPredicate() == cast<CmpInst>(I)->getPredicate();
195 if (const CallInst *CI = dyn_cast<CallInst>(this))
196 return CI->isTailCall() == cast<CallInst>(I)->isTailCall();
197
198 return true;
199}
200
Chris Lattnerbb5493d2007-02-15 23:15:00 +0000201/// mayWriteToMemory - Return true if this instruction may modify memory.
202///
203bool Instruction::mayWriteToMemory() const {
204 switch (getOpcode()) {
205 default: return false;
206 case Instruction::Free:
Chris Lattnerbb5493d2007-02-15 23:15:00 +0000207 case Instruction::Invoke:
Duncan Sandsa3355ff2007-12-03 20:06:50 +0000208 case Instruction::Store:
Chris Lattnerbb5493d2007-02-15 23:15:00 +0000209 case Instruction::VAArg:
210 return true;
211 case Instruction::Call:
Duncan Sands5d84afd2007-12-05 21:03:28 +0000212 if (!isa<IntrinsicInst>(this))
213 return true; // FIXME: workaround gcc bootstrap breakage
Duncan Sandsa3355ff2007-12-03 20:06:50 +0000214 return !cast<CallInst>(this)->onlyReadsMemory();
Chris Lattnerbb5493d2007-02-15 23:15:00 +0000215 case Instruction::Load:
216 return cast<LoadInst>(this)->isVolatile();
217 }
218}
Chris Lattnerf2da7242002-10-31 04:14:01 +0000219
220/// isAssociative - Return true if the instruction is associative:
221///
222/// Associative operators satisfy: x op (y op z) === (x op y) op z)
223///
224/// In LLVM, the Add, Mul, And, Or, and Xor operators are associative, when not
225/// applied to floating point types.
226///
227bool Instruction::isAssociative(unsigned Opcode, const Type *Ty) {
Chris Lattner4d3839d2006-10-26 18:27:26 +0000228 if (Opcode == And || Opcode == Or || Opcode == Xor)
229 return true;
230
231 // Add/Mul reassociate unless they are FP or FP vectors.
232 if (Opcode == Add || Opcode == Mul)
233 return !Ty->isFPOrFPVector();
Chris Lattnerf2da7242002-10-31 04:14:01 +0000234 return 0;
235}
236
237/// isCommutative - Return true if the instruction is commutative:
238///
Misha Brukman6b634522003-10-10 17:54:14 +0000239/// Commutative operators satisfy: (x op y) === (y op x)
Chris Lattnerf2da7242002-10-31 04:14:01 +0000240///
241/// In LLVM, these are the associative operators, plus SetEQ and SetNE, when
242/// applied to any type.
243///
244bool Instruction::isCommutative(unsigned op) {
245 switch (op) {
246 case Add:
247 case Mul:
Misha Brukmanfd939082005-04-21 23:48:37 +0000248 case And:
Chris Lattnerf2da7242002-10-31 04:14:01 +0000249 case Or:
250 case Xor:
Chris Lattnerf2da7242002-10-31 04:14:01 +0000251 return true;
252 default:
253 return false;
254 }
255}
Tanya Lattner741bb002003-07-31 04:05:50 +0000256
Tanya Lattner741bb002003-07-31 04:05:50 +0000257/// isTrappingInstruction - Return true if the instruction may trap.
258///
Tanya Lattnerec127bb2003-07-31 05:06:09 +0000259bool Instruction::isTrapping(unsigned op) {
Tanya Lattner741bb002003-07-31 04:05:50 +0000260 switch(op) {
Reid Spencer1628cec2006-10-26 06:15:43 +0000261 case UDiv:
262 case SDiv:
263 case FDiv:
Reid Spencer0a783f72006-11-02 01:53:59 +0000264 case URem:
265 case SRem:
266 case FRem:
Tanya Lattner741bb002003-07-31 04:05:50 +0000267 case Load:
268 case Store:
269 case Call:
270 case Invoke:
271 return true;
272 default:
273 return false;
274 }
275}