blob: 17970ac9ba9ad84ea22d6542ed6be3e907195c56 [file] [log] [blame]
Chris Lattnercf3056d2003-10-13 03:32:08 +00001//===-- Instruction.cpp - Implement the Instruction class -----------------===//
John Criswellb576c942003-10-20 19:43:21 +00002//
3// 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.
7//
8//===----------------------------------------------------------------------===//
Chris Lattner00950542001-06-06 20:29:01 +00009//
10// This file implements the Instruction class for the VMCore library.
11//
12//===----------------------------------------------------------------------===//
13
Chris Lattner2fbfdcf2002-04-07 20:49:59 +000014#include "llvm/Function.h"
Chris Lattner00950542001-06-06 20:29:01 +000015#include "llvm/SymbolTable.h"
Chris Lattner7e708292002-06-25 16:13:24 +000016#include "llvm/Type.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000017#include "llvm/Support/LeakDetector.h"
Chris Lattner4b74c832003-11-20 17:45:12 +000018using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000019
Alkis Evlogimenose5828f12004-05-26 21:41:09 +000020void Instruction::init()
21{
Chris Lattnerd1e693f2002-09-08 18:59:35 +000022 // Make sure that we get added to a basicblock
23 LeakDetector::addGarbageObject(this);
Alkis Evlogimenose5828f12004-05-26 21:41:09 +000024}
25
26Instruction::Instruction(const Type *ty, unsigned it, const std::string &Name,
27 Instruction *InsertBefore)
Chris Lattner40515db2004-06-27 18:38:48 +000028 : User(ty, Value::InstructionVal + it, Name), Parent(0) {
Alkis Evlogimenose5828f12004-05-26 21:41:09 +000029 init();
Chris Lattner2aa83112002-09-10 15:45:53 +000030
31 // If requested, insert this instruction into a basic block...
32 if (InsertBefore) {
33 assert(InsertBefore->getParent() &&
34 "Instruction to insert before is not in a basic block!");
35 InsertBefore->getParent()->getInstList().insert(InsertBefore, this);
36 }
Chris Lattner00950542001-06-06 20:29:01 +000037}
38
Alkis Evlogimenose5828f12004-05-26 21:41:09 +000039Instruction::Instruction(const Type *ty, unsigned it, const std::string &Name,
40 BasicBlock *InsertAtEnd)
Chris Lattner40515db2004-06-27 18:38:48 +000041 : User(ty, Value::InstructionVal + it, Name), Parent(0) {
Alkis Evlogimenose5828f12004-05-26 21:41:09 +000042 init();
43
44 // append this instruction into the basic block
45 assert(InsertAtEnd && "Basic block to append to may not be NULL!");
46 InsertAtEnd->getInstList().push_back(this);
47}
48
Chris Lattner40515db2004-06-27 18:38:48 +000049void Instruction::setOpcode(unsigned opc) {
50 setValueType(Value::InstructionVal + opc);
51}
52
Chris Lattnerbded1322002-09-06 21:33:15 +000053void Instruction::setParent(BasicBlock *P) {
Chris Lattner786993c2004-02-04 01:06:38 +000054 if (getParent()) {
55 if (!P) LeakDetector::addGarbageObject(this);
56 } else {
57 if (P) LeakDetector::removeGarbageObject(this);
58 }
Chris Lattnerd1e693f2002-09-08 18:59:35 +000059
Chris Lattnerbded1322002-09-06 21:33:15 +000060 Parent = P;
61}
62
Chris Lattner00950542001-06-06 20:29:01 +000063// Specialize setName to take care of symbol table majik
Chris Lattner697954c2002-01-20 22:54:45 +000064void Instruction::setName(const std::string &name, SymbolTable *ST) {
Chris Lattner2fbfdcf2002-04-07 20:49:59 +000065 BasicBlock *P = 0; Function *PP = 0;
Chris Lattnere05bf2f2001-09-07 16:47:03 +000066 assert((ST == 0 || !getParent() || !getParent()->getParent() ||
Chris Lattner6e6026b2002-11-20 18:36:02 +000067 ST == &getParent()->getParent()->getSymbolTable()) &&
Chris Lattnere05bf2f2001-09-07 16:47:03 +000068 "Invalid symtab argument!");
Chris Lattner00950542001-06-06 20:29:01 +000069 if ((P = getParent()) && (PP = P->getParent()) && hasName())
Chris Lattner6e6026b2002-11-20 18:36:02 +000070 PP->getSymbolTable().remove(this);
Chris Lattner00950542001-06-06 20:29:01 +000071 Value::setName(name);
Chris Lattner6e6026b2002-11-20 18:36:02 +000072 if (PP && hasName()) PP->getSymbolTable().insert(this);
Chris Lattner00950542001-06-06 20:29:01 +000073}
Vikram S. Advec1056452002-07-14 23:09:40 +000074
Chris Lattner4b833802004-10-11 22:21:39 +000075void Instruction::removeFromParent() {
76 getParent()->getInstList().remove(this);
77}
78
79void Instruction::eraseFromParent() {
80 getParent()->getInstList().erase(this);
81}
Vikram S. Advec1056452002-07-14 23:09:40 +000082
83const char *Instruction::getOpcodeName(unsigned OpCode) {
84 switch (OpCode) {
85 // Terminators
Chris Lattner0513e9f2002-08-14 18:18:02 +000086 case Ret: return "ret";
87 case Br: return "br";
Vikram S. Advec1056452002-07-14 23:09:40 +000088 case Switch: return "switch";
89 case Invoke: return "invoke";
Chris Lattnera6ce8982003-09-08 18:54:36 +000090 case Unwind: return "unwind";
Chris Lattnerb976e662004-10-16 18:08:06 +000091 case Unreachable: return "unreachable";
Vikram S. Advec1056452002-07-14 23:09:40 +000092
Vikram S. Advec1056452002-07-14 23:09:40 +000093 // Standard binary operators...
94 case Add: return "add";
95 case Sub: return "sub";
96 case Mul: return "mul";
97 case Div: return "div";
98 case Rem: return "rem";
99
100 // Logical operators...
101 case And: return "and";
102 case Or : return "or";
103 case Xor: return "xor";
104
105 // SetCC operators...
106 case SetLE: return "setle";
107 case SetGE: return "setge";
108 case SetLT: return "setlt";
109 case SetGT: return "setgt";
110 case SetEQ: return "seteq";
111 case SetNE: return "setne";
112
113 // Memory instructions...
114 case Malloc: return "malloc";
115 case Free: return "free";
116 case Alloca: return "alloca";
117 case Load: return "load";
118 case Store: return "store";
119 case GetElementPtr: return "getelementptr";
120
121 // Other instructions...
Chris Lattner3b237fc2003-10-19 21:34:28 +0000122 case PHI: return "phi";
Vikram S. Advec1056452002-07-14 23:09:40 +0000123 case Cast: return "cast";
Chris Lattnerb4f48802004-03-12 05:54:20 +0000124 case Select: return "select";
Vikram S. Advec1056452002-07-14 23:09:40 +0000125 case Call: return "call";
126 case Shl: return "shl";
127 case Shr: return "shr";
Chris Lattner4d45bd02003-10-18 05:57:43 +0000128 case VANext: return "vanext";
129 case VAArg: return "vaarg";
Chris Lattner8f77dae2003-05-08 02:44:12 +0000130
Vikram S. Advec1056452002-07-14 23:09:40 +0000131 default: return "<Invalid operator> ";
132 }
133
134 return 0;
135}
Chris Lattnerf2da7242002-10-31 04:14:01 +0000136
137
138/// isAssociative - Return true if the instruction is associative:
139///
140/// Associative operators satisfy: x op (y op z) === (x op y) op z)
141///
142/// In LLVM, the Add, Mul, And, Or, and Xor operators are associative, when not
143/// applied to floating point types.
144///
145bool Instruction::isAssociative(unsigned Opcode, const Type *Ty) {
146 if (Opcode == Add || Opcode == Mul ||
147 Opcode == And || Opcode == Or || Opcode == Xor) {
148 // Floating point operations do not associate!
149 return !Ty->isFloatingPoint();
150 }
151 return 0;
152}
153
154/// isCommutative - Return true if the instruction is commutative:
155///
Misha Brukman6b634522003-10-10 17:54:14 +0000156/// Commutative operators satisfy: (x op y) === (y op x)
Chris Lattnerf2da7242002-10-31 04:14:01 +0000157///
158/// In LLVM, these are the associative operators, plus SetEQ and SetNE, when
159/// applied to any type.
160///
161bool Instruction::isCommutative(unsigned op) {
162 switch (op) {
163 case Add:
164 case Mul:
165 case And:
166 case Or:
167 case Xor:
168 case SetEQ:
169 case SetNE:
170 return true;
171 default:
172 return false;
173 }
174}
Tanya Lattner741bb002003-07-31 04:05:50 +0000175
Chris Lattner3a534f22004-01-12 23:18:25 +0000176/// isRelational - Return true if the instruction is a Set* instruction:
177///
178bool Instruction::isRelational(unsigned op) {
179 switch (op) {
180 case SetEQ:
181 case SetNE:
182 case SetLT:
183 case SetGT:
184 case SetLE:
185 case SetGE:
186 return true;
187 }
188 return false;
189}
190
191
Tanya Lattner741bb002003-07-31 04:05:50 +0000192
193/// isTrappingInstruction - Return true if the instruction may trap.
194///
Tanya Lattnerec127bb2003-07-31 05:06:09 +0000195bool Instruction::isTrapping(unsigned op) {
Tanya Lattner741bb002003-07-31 04:05:50 +0000196 switch(op) {
197 case Div:
198 case Rem:
199 case Load:
200 case Store:
201 case Call:
202 case Invoke:
203 return true;
204 default:
205 return false;
206 }
207}