blob: e02af07937a1262991a22e564cf0b8e69dffb352 [file] [log] [blame]
Chris Lattner44d2c352003-10-13 03:32:08 +00001//===-- Instruction.cpp - Implement the Instruction class -----------------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
John Criswell482202a2003-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 Brukmanb1c93172005-04-21 23:48:37 +00007//
John Criswell482202a2003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +00009//
10// This file implements the Instruction class for the VMCore library.
11//
12//===----------------------------------------------------------------------===//
13
Reid Spencerd9436b62006-11-20 01:22:35 +000014#include "llvm/Type.h"
Chris Lattner0b6ebd8d2004-11-30 02:51:53 +000015#include "llvm/Instructions.h"
Chris Lattner62b7fd12002-04-07 20:49:59 +000016#include "llvm/Function.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000017#include "llvm/Support/LeakDetector.h"
Chris Lattner0e03ab62003-11-20 17:45:12 +000018using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000019
Chris Lattner5d1bc2c2005-01-29 00:35:33 +000020Instruction::Instruction(const Type *ty, unsigned it, Use *Ops, unsigned NumOps,
21 const std::string &Name, Instruction *InsertBefore)
Chris Lattner32ab6432007-02-12 05:18:08 +000022 : User(ty, Value::InstructionVal + it, Ops, NumOps), Parent(0) {
Chris Lattner184b2982002-09-08 18:59:35 +000023 // Make sure that we get added to a basicblock
24 LeakDetector::addGarbageObject(this);
Chris Lattner3c787442002-09-10 15:45:53 +000025
26 // If requested, insert this instruction into a basic block...
27 if (InsertBefore) {
28 assert(InsertBefore->getParent() &&
29 "Instruction to insert before is not in a basic block!");
30 InsertBefore->getParent()->getInstList().insert(InsertBefore, this);
31 }
Chris Lattner32ab6432007-02-12 05:18:08 +000032 setName(Name);
Chris Lattner2f7c9632001-06-06 20:29:01 +000033}
34
Chris Lattner5d1bc2c2005-01-29 00:35:33 +000035Instruction::Instruction(const Type *ty, unsigned it, Use *Ops, unsigned NumOps,
36 const std::string &Name, BasicBlock *InsertAtEnd)
Chris Lattner32ab6432007-02-12 05:18:08 +000037 : User(ty, Value::InstructionVal + it, Ops, NumOps), Parent(0) {
Chris Lattner5d1bc2c2005-01-29 00:35:33 +000038 // Make sure that we get added to a basicblock
39 LeakDetector::addGarbageObject(this);
Alkis Evlogimenos9f0fdf72004-05-26 21:41:09 +000040
41 // append this instruction into the basic block
42 assert(InsertAtEnd && "Basic block to append to may not be NULL!");
43 InsertAtEnd->getInstList().push_back(this);
Chris Lattner32ab6432007-02-12 05:18:08 +000044 setName(Name);
Alkis Evlogimenos9f0fdf72004-05-26 21:41:09 +000045}
46
Chris Lattner0f048162007-02-13 07:54:42 +000047Instruction::Instruction(const Type *ty, unsigned it, Use *Ops, unsigned NumOps,
48 const char *Name, Instruction *InsertBefore)
49 : User(ty, Value::InstructionVal + it, Ops, NumOps), Parent(0) {
50 // Make sure that we get added to a basicblock
51 LeakDetector::addGarbageObject(this);
52
53 // If requested, insert this instruction into a basic block...
54 if (InsertBefore) {
55 assert(InsertBefore->getParent() &&
56 "Instruction to insert before is not in a basic block!");
57 InsertBefore->getParent()->getInstList().insert(InsertBefore, this);
58 }
59 if (Name && *Name) setName(Name);
60}
61
62Instruction::Instruction(const Type *ty, unsigned it, Use *Ops, unsigned NumOps,
63 const char *Name, BasicBlock *InsertAtEnd)
64 : User(ty, Value::InstructionVal + it, Ops, NumOps), Parent(0) {
65 // Make sure that we get added to a basicblock
66 LeakDetector::addGarbageObject(this);
67
68 // append this instruction into the basic block
69 assert(InsertAtEnd && "Basic block to append to may not be NULL!");
70 InsertAtEnd->getInstList().push_back(this);
71 if (Name && *Name) setName(Name);
72}
73
74
Chris Lattner1c12a882006-06-21 16:53:47 +000075// Out of line virtual method, so the vtable, etc has a home.
76Instruction::~Instruction() {
77 assert(Parent == 0 && "Instruction still linked in the program!");
78}
79
80
Chris Lattner9ed7aef2002-09-06 21:33:15 +000081void Instruction::setParent(BasicBlock *P) {
Chris Lattnerd8a232b2004-02-04 01:06:38 +000082 if (getParent()) {
83 if (!P) LeakDetector::addGarbageObject(this);
84 } else {
85 if (P) LeakDetector::removeGarbageObject(this);
86 }
Chris Lattner184b2982002-09-08 18:59:35 +000087
Chris Lattner9ed7aef2002-09-06 21:33:15 +000088 Parent = P;
89}
90
Chris Lattner02a71e72004-10-11 22:21:39 +000091void Instruction::removeFromParent() {
92 getParent()->getInstList().remove(this);
93}
94
95void Instruction::eraseFromParent() {
96 getParent()->getInstList().erase(this);
97}
Vikram S. Adve8aee7962002-07-14 23:09:40 +000098
Chris Lattner24a0a432005-08-08 05:21:50 +000099/// moveBefore - Unlink this instruction from its current basic block and
100/// insert it into the basic block that MovePos lives in, right before
101/// MovePos.
102void Instruction::moveBefore(Instruction *MovePos) {
103 MovePos->getParent()->getInstList().splice(MovePos,getParent()->getInstList(),
104 this);
105}
106
107
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000108const char *Instruction::getOpcodeName(unsigned OpCode) {
109 switch (OpCode) {
110 // Terminators
Chris Lattnerb193ff82002-08-14 18:18:02 +0000111 case Ret: return "ret";
112 case Br: return "br";
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000113 case Switch: return "switch";
114 case Invoke: return "invoke";
Chris Lattner66d5f572003-09-08 18:54:36 +0000115 case Unwind: return "unwind";
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000116 case Unreachable: return "unreachable";
Misha Brukmanb1c93172005-04-21 23:48:37 +0000117
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000118 // Standard binary operators...
119 case Add: return "add";
120 case Sub: return "sub";
121 case Mul: return "mul";
Reid Spencer7e80b0b2006-10-26 06:15:43 +0000122 case UDiv: return "udiv";
123 case SDiv: return "sdiv";
124 case FDiv: return "fdiv";
Reid Spencer7eb55b32006-11-02 01:53:59 +0000125 case URem: return "urem";
126 case SRem: return "srem";
127 case FRem: return "frem";
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000128
129 // Logical operators...
130 case And: return "and";
131 case Or : return "or";
132 case Xor: return "xor";
133
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000134 // Memory instructions...
135 case Malloc: return "malloc";
136 case Free: return "free";
137 case Alloca: return "alloca";
138 case Load: return "load";
139 case Store: return "store";
140 case GetElementPtr: return "getelementptr";
Misha Brukmanb1c93172005-04-21 23:48:37 +0000141
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000142 // Convert instructions...
143 case Trunc: return "trunc";
144 case ZExt: return "zext";
145 case SExt: return "sext";
146 case FPTrunc: return "fptrunc";
147 case FPExt: return "fpext";
148 case FPToUI: return "fptoui";
149 case FPToSI: return "fptosi";
150 case UIToFP: return "uitofp";
151 case SIToFP: return "sitofp";
152 case IntToPtr: return "inttoptr";
153 case PtrToInt: return "ptrtoint";
154 case BitCast: return "bitcast";
155
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000156 // Other instructions...
Reid Spencer45e52392006-12-03 06:27:29 +0000157 case ICmp: return "icmp";
158 case FCmp: return "fcmp";
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000159 case PHI: return "phi";
160 case Select: return "select";
161 case Call: return "call";
162 case Shl: return "shl";
163 case LShr: return "lshr";
164 case AShr: return "ashr";
165 case VAArg: return "va_arg";
Robert Bocchino23004482006-01-10 19:05:34 +0000166 case ExtractElement: return "extractelement";
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000167 case InsertElement: return "insertelement";
168 case ShuffleVector: return "shufflevector";
Chris Lattnerf70da102003-05-08 02:44:12 +0000169
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000170 default: return "<Invalid operator> ";
171 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000172
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000173 return 0;
174}
Chris Lattnercab6c332002-10-31 04:14:01 +0000175
Chris Lattner0b6ebd8d2004-11-30 02:51:53 +0000176/// isIdenticalTo - Return true if the specified instruction is exactly
177/// identical to the current one. This means that all operands match and any
178/// extra information (e.g. load is volatile) agree.
179bool Instruction::isIdenticalTo(Instruction *I) const {
180 if (getOpcode() != I->getOpcode() ||
181 getNumOperands() != I->getNumOperands() ||
182 getType() != I->getType())
183 return false;
184
185 // We have two instructions of identical opcode and #operands. Check to see
186 // if all operands are the same.
187 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
188 if (getOperand(i) != I->getOperand(i))
189 return false;
190
191 // Check special state that is a part of some instructions.
192 if (const LoadInst *LI = dyn_cast<LoadInst>(this))
193 return LI->isVolatile() == cast<LoadInst>(I)->isVolatile();
194 if (const StoreInst *SI = dyn_cast<StoreInst>(this))
195 return SI->isVolatile() == cast<StoreInst>(I)->isVolatile();
Reid Spencer266e42b2006-12-23 06:05:41 +0000196 if (const CmpInst *CI = dyn_cast<CmpInst>(this))
197 return CI->getPredicate() == cast<CmpInst>(I)->getPredicate();
Chris Lattner06038452005-05-06 05:51:46 +0000198 if (const CallInst *CI = dyn_cast<CallInst>(this))
199 return CI->isTailCall() == cast<CallInst>(I)->isTailCall();
Chris Lattner0b6ebd8d2004-11-30 02:51:53 +0000200 return true;
201}
202
Reid Spencer266e42b2006-12-23 06:05:41 +0000203// isSameOperationAs
204bool Instruction::isSameOperationAs(Instruction *I) const {
205 if (getOpcode() != I->getOpcode() || getType() != I->getType() ||
206 getNumOperands() != I->getNumOperands())
207 return false;
208
209 // We have two instructions of identical opcode and #operands. Check to see
210 // if all operands are the same type
211 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
212 if (getOperand(i)->getType() != I->getOperand(i)->getType())
213 return false;
214
215 // Check special state that is a part of some instructions.
216 if (const LoadInst *LI = dyn_cast<LoadInst>(this))
217 return LI->isVolatile() == cast<LoadInst>(I)->isVolatile();
218 if (const StoreInst *SI = dyn_cast<StoreInst>(this))
219 return SI->isVolatile() == cast<StoreInst>(I)->isVolatile();
220 if (const CmpInst *CI = dyn_cast<CmpInst>(this))
221 return CI->getPredicate() == cast<CmpInst>(I)->getPredicate();
222 if (const CallInst *CI = dyn_cast<CallInst>(this))
223 return CI->isTailCall() == cast<CallInst>(I)->isTailCall();
224
225 return true;
226}
227
Chris Lattnerc992e182007-02-15 23:15:00 +0000228/// mayWriteToMemory - Return true if this instruction may modify memory.
229///
230bool Instruction::mayWriteToMemory() const {
231 switch (getOpcode()) {
232 default: return false;
233 case Instruction::Free:
234 case Instruction::Store:
235 case Instruction::Invoke:
236 case Instruction::VAArg:
237 return true;
238 case Instruction::Call:
239 if (const IntrinsicInst *II = dyn_cast<IntrinsicInst>(this)) {
240 // If the intrinsic doesn't write memory, it is safe.
241 }
242 return true;
243 case Instruction::Load:
244 return cast<LoadInst>(this)->isVolatile();
245 }
246}
Chris Lattnercab6c332002-10-31 04:14:01 +0000247
248/// isAssociative - Return true if the instruction is associative:
249///
250/// Associative operators satisfy: x op (y op z) === (x op y) op z)
251///
252/// In LLVM, the Add, Mul, And, Or, and Xor operators are associative, when not
253/// applied to floating point types.
254///
255bool Instruction::isAssociative(unsigned Opcode, const Type *Ty) {
Chris Lattner91386802006-10-26 18:27:26 +0000256 if (Opcode == And || Opcode == Or || Opcode == Xor)
257 return true;
258
259 // Add/Mul reassociate unless they are FP or FP vectors.
260 if (Opcode == Add || Opcode == Mul)
261 return !Ty->isFPOrFPVector();
Chris Lattnercab6c332002-10-31 04:14:01 +0000262 return 0;
263}
264
265/// isCommutative - Return true if the instruction is commutative:
266///
Misha Brukmanfa100532003-10-10 17:54:14 +0000267/// Commutative operators satisfy: (x op y) === (y op x)
Chris Lattnercab6c332002-10-31 04:14:01 +0000268///
269/// In LLVM, these are the associative operators, plus SetEQ and SetNE, when
270/// applied to any type.
271///
272bool Instruction::isCommutative(unsigned op) {
273 switch (op) {
274 case Add:
275 case Mul:
Misha Brukmanb1c93172005-04-21 23:48:37 +0000276 case And:
Chris Lattnercab6c332002-10-31 04:14:01 +0000277 case Or:
278 case Xor:
Chris Lattnercab6c332002-10-31 04:14:01 +0000279 return true;
280 default:
281 return false;
282 }
283}
Tanya Lattnera93c7ae2003-07-31 04:05:50 +0000284
Tanya Lattnera93c7ae2003-07-31 04:05:50 +0000285/// isTrappingInstruction - Return true if the instruction may trap.
286///
Tanya Lattnerf8c563f2003-07-31 05:06:09 +0000287bool Instruction::isTrapping(unsigned op) {
Tanya Lattnera93c7ae2003-07-31 04:05:50 +0000288 switch(op) {
Reid Spencer7e80b0b2006-10-26 06:15:43 +0000289 case UDiv:
290 case SDiv:
291 case FDiv:
Reid Spencer7eb55b32006-11-02 01:53:59 +0000292 case URem:
293 case SRem:
294 case FRem:
Tanya Lattnera93c7ae2003-07-31 04:05:50 +0000295 case Load:
296 case Store:
297 case Call:
298 case Invoke:
299 return true;
300 default:
301 return false;
302 }
303}