blob: 4c792a56afb260e8d48bed0f6cbd6795ab8de287 [file] [log] [blame]
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001//===-- Instructions.cpp - Implement the LLVM instructions ----------------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +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//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00008//===----------------------------------------------------------------------===//
9//
Chris Lattnerafdb3de2005-01-29 00:35:16 +000010// This file implements all of the non-inline methods for the LLVM instruction
11// classes.
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +000012//
13//===----------------------------------------------------------------------===//
14
15#include "llvm/BasicBlock.h"
16#include "llvm/Constants.h"
17#include "llvm/DerivedTypes.h"
18#include "llvm/Function.h"
19#include "llvm/Instructions.h"
Reid Spencerce38beb2007-04-09 18:00:57 +000020#include "llvm/ParameterAttributes.h"
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +000021#include "llvm/Support/CallSite.h"
Reid Spencer0286bc12007-02-28 22:00:54 +000022#include "llvm/Support/ConstantRange.h"
Christopher Lamb84485702007-04-22 19:24:39 +000023#include "llvm/Support/MathExtras.h"
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +000024using namespace llvm;
25
Chris Lattnerf7b6d312005-05-06 20:26:43 +000026unsigned CallSite::getCallingConv() const {
27 if (CallInst *CI = dyn_cast<CallInst>(I))
28 return CI->getCallingConv();
29 else
30 return cast<InvokeInst>(I)->getCallingConv();
31}
32void CallSite::setCallingConv(unsigned CC) {
33 if (CallInst *CI = dyn_cast<CallInst>(I))
34 CI->setCallingConv(CC);
35 else
36 cast<InvokeInst>(I)->setCallingConv(CC);
37}
38
39
Chris Lattner1c12a882006-06-21 16:53:47 +000040
41
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +000042//===----------------------------------------------------------------------===//
Chris Lattnerafdb3de2005-01-29 00:35:16 +000043// TerminatorInst Class
44//===----------------------------------------------------------------------===//
45
Chris Lattner1c12a882006-06-21 16:53:47 +000046// Out of line virtual method, so the vtable, etc has a home.
47TerminatorInst::~TerminatorInst() {
48}
49
50// Out of line virtual method, so the vtable, etc has a home.
51UnaryInstruction::~UnaryInstruction() {
52}
Chris Lattnerafdb3de2005-01-29 00:35:16 +000053
54
55//===----------------------------------------------------------------------===//
56// PHINode Class
57//===----------------------------------------------------------------------===//
58
59PHINode::PHINode(const PHINode &PN)
60 : Instruction(PN.getType(), Instruction::PHI,
61 new Use[PN.getNumOperands()], PN.getNumOperands()),
62 ReservedSpace(PN.getNumOperands()) {
63 Use *OL = OperandList;
64 for (unsigned i = 0, e = PN.getNumOperands(); i != e; i+=2) {
65 OL[i].init(PN.getOperand(i), this);
66 OL[i+1].init(PN.getOperand(i+1), this);
67 }
68}
69
70PHINode::~PHINode() {
71 delete [] OperandList;
72}
73
74// removeIncomingValue - Remove an incoming value. This is useful if a
75// predecessor basic block is deleted.
76Value *PHINode::removeIncomingValue(unsigned Idx, bool DeletePHIIfEmpty) {
77 unsigned NumOps = getNumOperands();
78 Use *OL = OperandList;
79 assert(Idx*2 < NumOps && "BB not in PHI node!");
80 Value *Removed = OL[Idx*2];
81
82 // Move everything after this operand down.
83 //
84 // FIXME: we could just swap with the end of the list, then erase. However,
85 // client might not expect this to happen. The code as it is thrashes the
86 // use/def lists, which is kinda lame.
87 for (unsigned i = (Idx+1)*2; i != NumOps; i += 2) {
88 OL[i-2] = OL[i];
89 OL[i-2+1] = OL[i+1];
90 }
91
92 // Nuke the last value.
93 OL[NumOps-2].set(0);
94 OL[NumOps-2+1].set(0);
95 NumOperands = NumOps-2;
96
97 // If the PHI node is dead, because it has zero entries, nuke it now.
98 if (NumOps == 2 && DeletePHIIfEmpty) {
99 // If anyone is using this PHI, make them use a dummy value instead...
100 replaceAllUsesWith(UndefValue::get(getType()));
101 eraseFromParent();
102 }
103 return Removed;
104}
105
106/// resizeOperands - resize operands - This adjusts the length of the operands
107/// list according to the following behavior:
108/// 1. If NumOps == 0, grow the operand list in response to a push_back style
109/// of operation. This grows the number of ops by 1.5 times.
110/// 2. If NumOps > NumOperands, reserve space for NumOps operands.
111/// 3. If NumOps == NumOperands, trim the reserved space.
112///
113void PHINode::resizeOperands(unsigned NumOps) {
114 if (NumOps == 0) {
115 NumOps = (getNumOperands())*3/2;
116 if (NumOps < 4) NumOps = 4; // 4 op PHI nodes are VERY common.
117 } else if (NumOps*2 > NumOperands) {
118 // No resize needed.
119 if (ReservedSpace >= NumOps) return;
120 } else if (NumOps == NumOperands) {
121 if (ReservedSpace == NumOps) return;
122 } else {
Misha Brukmanb1c93172005-04-21 23:48:37 +0000123 return;
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000124 }
125
126 ReservedSpace = NumOps;
127 Use *NewOps = new Use[NumOps];
128 Use *OldOps = OperandList;
129 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
130 NewOps[i].init(OldOps[i], this);
131 OldOps[i].set(0);
132 }
133 delete [] OldOps;
134 OperandList = NewOps;
135}
136
Nate Begemanb3923212005-08-04 23:24:19 +0000137/// hasConstantValue - If the specified PHI node always merges together the same
138/// value, return the value, otherwise return null.
139///
Chris Lattner1d8b2482005-08-05 00:49:06 +0000140Value *PHINode::hasConstantValue(bool AllowNonDominatingInstruction) const {
Nate Begemanb3923212005-08-04 23:24:19 +0000141 // If the PHI node only has one incoming value, eliminate the PHI node...
142 if (getNumIncomingValues() == 1)
Chris Lattner6e709c12005-08-05 15:37:31 +0000143 if (getIncomingValue(0) != this) // not X = phi X
144 return getIncomingValue(0);
145 else
146 return UndefValue::get(getType()); // Self cycle is dead.
147
Nate Begemanb3923212005-08-04 23:24:19 +0000148 // Otherwise if all of the incoming values are the same for the PHI, replace
149 // the PHI node with the incoming value.
150 //
151 Value *InVal = 0;
Chris Lattnerbcd8d2c2005-08-05 01:00:58 +0000152 bool HasUndefInput = false;
Nate Begemanb3923212005-08-04 23:24:19 +0000153 for (unsigned i = 0, e = getNumIncomingValues(); i != e; ++i)
Chris Lattnerbcd8d2c2005-08-05 01:00:58 +0000154 if (isa<UndefValue>(getIncomingValue(i)))
155 HasUndefInput = true;
156 else if (getIncomingValue(i) != this) // Not the PHI node itself...
Nate Begemanb3923212005-08-04 23:24:19 +0000157 if (InVal && getIncomingValue(i) != InVal)
158 return 0; // Not the same, bail out.
159 else
160 InVal = getIncomingValue(i);
161
162 // The only case that could cause InVal to be null is if we have a PHI node
163 // that only has entries for itself. In this case, there is no entry into the
164 // loop, so kill the PHI.
165 //
166 if (InVal == 0) InVal = UndefValue::get(getType());
167
Chris Lattnerbcd8d2c2005-08-05 01:00:58 +0000168 // If we have a PHI node like phi(X, undef, X), where X is defined by some
169 // instruction, we cannot always return X as the result of the PHI node. Only
170 // do this if X is not an instruction (thus it must dominate the PHI block),
171 // or if the client is prepared to deal with this possibility.
172 if (HasUndefInput && !AllowNonDominatingInstruction)
173 if (Instruction *IV = dyn_cast<Instruction>(InVal))
174 // If it's in the entry block, it dominates everything.
Dan Gohmandcb291f2007-03-22 16:38:57 +0000175 if (IV->getParent() != &IV->getParent()->getParent()->getEntryBlock() ||
Chris Lattner37774af2005-08-05 01:03:27 +0000176 isa<InvokeInst>(IV))
Chris Lattnerbcd8d2c2005-08-05 01:00:58 +0000177 return 0; // Cannot guarantee that InVal dominates this PHINode.
178
Nate Begemanb3923212005-08-04 23:24:19 +0000179 // All of the incoming values are the same, return the value now.
180 return InVal;
181}
182
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000183
184//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000185// CallInst Implementation
186//===----------------------------------------------------------------------===//
187
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000188CallInst::~CallInst() {
189 delete [] OperandList;
Reid Spencerc6a83842007-04-22 17:28:03 +0000190 if (ParamAttrs)
191 ParamAttrs->dropRef();
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000192}
193
Chris Lattner054ba2c2007-02-13 00:58:44 +0000194void CallInst::init(Value *Func, Value* const *Params, unsigned NumParams) {
Reid Spencer019c8862007-04-09 15:01:12 +0000195 ParamAttrs = 0;
Chris Lattner054ba2c2007-02-13 00:58:44 +0000196 NumOperands = NumParams+1;
197 Use *OL = OperandList = new Use[NumParams+1];
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000198 OL[0].init(Func, this);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000199
Misha Brukmanb1c93172005-04-21 23:48:37 +0000200 const FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000201 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000202 FTy = FTy; // silence warning.
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000203
Chris Lattner054ba2c2007-02-13 00:58:44 +0000204 assert((NumParams == FTy->getNumParams() ||
205 (FTy->isVarArg() && NumParams > FTy->getNumParams())) &&
Chris Lattner667a0562006-05-03 00:48:22 +0000206 "Calling a function with bad signature!");
Chris Lattner054ba2c2007-02-13 00:58:44 +0000207 for (unsigned i = 0; i != NumParams; ++i) {
Chris Lattner667a0562006-05-03 00:48:22 +0000208 assert((i >= FTy->getNumParams() ||
209 FTy->getParamType(i) == Params[i]->getType()) &&
210 "Calling a function with a bad signature!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000211 OL[i+1].init(Params[i], this);
Chris Lattner667a0562006-05-03 00:48:22 +0000212 }
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000213}
214
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000215void CallInst::init(Value *Func, Value *Actual1, Value *Actual2) {
Reid Spencer019c8862007-04-09 15:01:12 +0000216 ParamAttrs = 0;
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000217 NumOperands = 3;
218 Use *OL = OperandList = new Use[3];
219 OL[0].init(Func, this);
220 OL[1].init(Actual1, this);
221 OL[2].init(Actual2, this);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000222
223 const FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000224 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000225 FTy = FTy; // silence warning.
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000226
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000227 assert((FTy->getNumParams() == 2 ||
Chris Lattner667a0562006-05-03 00:48:22 +0000228 (FTy->isVarArg() && FTy->getNumParams() < 2)) &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000229 "Calling a function with bad signature");
Chris Lattner667a0562006-05-03 00:48:22 +0000230 assert((0 >= FTy->getNumParams() ||
231 FTy->getParamType(0) == Actual1->getType()) &&
232 "Calling a function with a bad signature!");
233 assert((1 >= FTy->getNumParams() ||
234 FTy->getParamType(1) == Actual2->getType()) &&
235 "Calling a function with a bad signature!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000236}
237
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000238void CallInst::init(Value *Func, Value *Actual) {
Reid Spencer019c8862007-04-09 15:01:12 +0000239 ParamAttrs = 0;
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000240 NumOperands = 2;
241 Use *OL = OperandList = new Use[2];
242 OL[0].init(Func, this);
243 OL[1].init(Actual, this);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000244
245 const FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000246 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000247 FTy = FTy; // silence warning.
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000248
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000249 assert((FTy->getNumParams() == 1 ||
250 (FTy->isVarArg() && FTy->getNumParams() == 0)) &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000251 "Calling a function with bad signature");
Chris Lattner667a0562006-05-03 00:48:22 +0000252 assert((0 == FTy->getNumParams() ||
253 FTy->getParamType(0) == Actual->getType()) &&
254 "Calling a function with a bad signature!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000255}
256
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000257void CallInst::init(Value *Func) {
Reid Spencer019c8862007-04-09 15:01:12 +0000258 ParamAttrs = 0;
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000259 NumOperands = 1;
260 Use *OL = OperandList = new Use[1];
261 OL[0].init(Func, this);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000262
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000263 const FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000264 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000265 FTy = FTy; // silence warning.
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000266
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000267 assert(FTy->getNumParams() == 0 && "Calling a function with bad signature");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000268}
269
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000270CallInst::CallInst(Value *Func, Value* const *Args, unsigned NumArgs,
Misha Brukmanb1c93172005-04-21 23:48:37 +0000271 const std::string &Name, BasicBlock *InsertAtEnd)
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000272 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
273 ->getElementType())->getReturnType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000274 Instruction::Call, 0, 0, InsertAtEnd) {
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000275 init(Func, Args, NumArgs);
Chris Lattner2195fc42007-02-24 00:55:48 +0000276 setName(Name);
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000277}
278CallInst::CallInst(Value *Func, Value* const *Args, unsigned NumArgs,
279 const std::string &Name, Instruction *InsertBefore)
280: Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
281 ->getElementType())->getReturnType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000282 Instruction::Call, 0, 0, InsertBefore) {
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000283 init(Func, Args, NumArgs);
Chris Lattner2195fc42007-02-24 00:55:48 +0000284 setName(Name);
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000285}
286
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000287CallInst::CallInst(Value *Func, Value *Actual1, Value *Actual2,
288 const std::string &Name, Instruction *InsertBefore)
289 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
290 ->getElementType())->getReturnType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000291 Instruction::Call, 0, 0, InsertBefore) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000292 init(Func, Actual1, Actual2);
Chris Lattner2195fc42007-02-24 00:55:48 +0000293 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000294}
295
296CallInst::CallInst(Value *Func, Value *Actual1, Value *Actual2,
297 const std::string &Name, BasicBlock *InsertAtEnd)
298 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
299 ->getElementType())->getReturnType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000300 Instruction::Call, 0, 0, InsertAtEnd) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000301 init(Func, Actual1, Actual2);
Chris Lattner2195fc42007-02-24 00:55:48 +0000302 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000303}
304
305CallInst::CallInst(Value *Func, Value* Actual, const std::string &Name,
Chris Lattner2195fc42007-02-24 00:55:48 +0000306 Instruction *InsertBefore)
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000307 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
308 ->getElementType())->getReturnType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000309 Instruction::Call, 0, 0, InsertBefore) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000310 init(Func, Actual);
Chris Lattner2195fc42007-02-24 00:55:48 +0000311 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000312}
313
314CallInst::CallInst(Value *Func, Value* Actual, const std::string &Name,
315 BasicBlock *InsertAtEnd)
316 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
317 ->getElementType())->getReturnType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000318 Instruction::Call, 0, 0, InsertAtEnd) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000319 init(Func, Actual);
Chris Lattner2195fc42007-02-24 00:55:48 +0000320 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000321}
322
323CallInst::CallInst(Value *Func, const std::string &Name,
324 Instruction *InsertBefore)
325 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
326 ->getElementType())->getReturnType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000327 Instruction::Call, 0, 0, InsertBefore) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000328 init(Func);
Chris Lattner2195fc42007-02-24 00:55:48 +0000329 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000330}
331
332CallInst::CallInst(Value *Func, const std::string &Name,
333 BasicBlock *InsertAtEnd)
334 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
335 ->getElementType())->getReturnType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000336 Instruction::Call, 0, 0, InsertAtEnd) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000337 init(Func);
Chris Lattner2195fc42007-02-24 00:55:48 +0000338 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000339}
340
Misha Brukmanb1c93172005-04-21 23:48:37 +0000341CallInst::CallInst(const CallInst &CI)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000342 : Instruction(CI.getType(), Instruction::Call, new Use[CI.getNumOperands()],
343 CI.getNumOperands()) {
Reid Spencerce38beb2007-04-09 18:00:57 +0000344 ParamAttrs = 0;
Chris Lattnerf7b6d312005-05-06 20:26:43 +0000345 SubclassData = CI.SubclassData;
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000346 Use *OL = OperandList;
347 Use *InOL = CI.OperandList;
348 for (unsigned i = 0, e = CI.getNumOperands(); i != e; ++i)
349 OL[i].init(InOL[i], this);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000350}
351
Reid Spencerc6a83842007-04-22 17:28:03 +0000352void CallInst::setParamAttrs(ParamAttrsList *newAttrs) {
353 if (ParamAttrs)
354 ParamAttrs->dropRef();
355
356 if (newAttrs)
357 newAttrs->addRef();
358
359 ParamAttrs = newAttrs;
360}
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000361
362//===----------------------------------------------------------------------===//
363// InvokeInst Implementation
364//===----------------------------------------------------------------------===//
365
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000366InvokeInst::~InvokeInst() {
367 delete [] OperandList;
Reid Spencerc6a83842007-04-22 17:28:03 +0000368 if (ParamAttrs)
369 ParamAttrs->dropRef();
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000370}
371
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000372void InvokeInst::init(Value *Fn, BasicBlock *IfNormal, BasicBlock *IfException,
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000373 Value* const *Args, unsigned NumArgs) {
Reid Spencerce38beb2007-04-09 18:00:57 +0000374 ParamAttrs = 0;
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000375 NumOperands = 3+NumArgs;
376 Use *OL = OperandList = new Use[3+NumArgs];
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000377 OL[0].init(Fn, this);
378 OL[1].init(IfNormal, this);
379 OL[2].init(IfException, this);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000380 const FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000381 cast<FunctionType>(cast<PointerType>(Fn->getType())->getElementType());
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000382 FTy = FTy; // silence warning.
Misha Brukmanb1c93172005-04-21 23:48:37 +0000383
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000384 assert((NumArgs == FTy->getNumParams()) ||
385 (FTy->isVarArg() && NumArgs > FTy->getNumParams()) &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000386 "Calling a function with bad signature");
Misha Brukmanb1c93172005-04-21 23:48:37 +0000387
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000388 for (unsigned i = 0, e = NumArgs; i != e; i++) {
Chris Lattner667a0562006-05-03 00:48:22 +0000389 assert((i >= FTy->getNumParams() ||
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000390 FTy->getParamType(i) == Args[i]->getType()) &&
Chris Lattner667a0562006-05-03 00:48:22 +0000391 "Invoking a function with a bad signature!");
392
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000393 OL[i+3].init(Args[i], this);
Chris Lattner667a0562006-05-03 00:48:22 +0000394 }
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000395}
396
397InvokeInst::InvokeInst(Value *Fn, BasicBlock *IfNormal,
398 BasicBlock *IfException,
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000399 Value* const *Args, unsigned NumArgs,
400 const std::string &Name, Instruction *InsertBefore)
401 : TerminatorInst(cast<FunctionType>(cast<PointerType>(Fn->getType())
402 ->getElementType())->getReturnType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000403 Instruction::Invoke, 0, 0, InsertBefore) {
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000404 init(Fn, IfNormal, IfException, Args, NumArgs);
Chris Lattner2195fc42007-02-24 00:55:48 +0000405 setName(Name);
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000406}
407
408InvokeInst::InvokeInst(Value *Fn, BasicBlock *IfNormal,
409 BasicBlock *IfException,
410 Value* const *Args, unsigned NumArgs,
411 const std::string &Name, BasicBlock *InsertAtEnd)
412 : TerminatorInst(cast<FunctionType>(cast<PointerType>(Fn->getType())
413 ->getElementType())->getReturnType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000414 Instruction::Invoke, 0, 0, InsertAtEnd) {
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000415 init(Fn, IfNormal, IfException, Args, NumArgs);
Chris Lattner2195fc42007-02-24 00:55:48 +0000416 setName(Name);
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000417}
418
Misha Brukmanb1c93172005-04-21 23:48:37 +0000419InvokeInst::InvokeInst(const InvokeInst &II)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000420 : TerminatorInst(II.getType(), Instruction::Invoke,
421 new Use[II.getNumOperands()], II.getNumOperands()) {
Reid Spencerce38beb2007-04-09 18:00:57 +0000422 ParamAttrs = 0;
Chris Lattnerf7b6d312005-05-06 20:26:43 +0000423 SubclassData = II.SubclassData;
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000424 Use *OL = OperandList, *InOL = II.OperandList;
425 for (unsigned i = 0, e = II.getNumOperands(); i != e; ++i)
426 OL[i].init(InOL[i], this);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000427}
428
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000429BasicBlock *InvokeInst::getSuccessorV(unsigned idx) const {
430 return getSuccessor(idx);
431}
432unsigned InvokeInst::getNumSuccessorsV() const {
433 return getNumSuccessors();
434}
435void InvokeInst::setSuccessorV(unsigned idx, BasicBlock *B) {
436 return setSuccessor(idx, B);
437}
438
Reid Spencerc6a83842007-04-22 17:28:03 +0000439void InvokeInst::setParamAttrs(ParamAttrsList *newAttrs) {
440 if (ParamAttrs)
441 ParamAttrs->dropRef();
442
443 if (newAttrs)
444 newAttrs->addRef();
445
446 ParamAttrs = newAttrs;
447}
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000448
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000449//===----------------------------------------------------------------------===//
450// ReturnInst Implementation
451//===----------------------------------------------------------------------===//
452
Chris Lattner2195fc42007-02-24 00:55:48 +0000453ReturnInst::ReturnInst(const ReturnInst &RI)
454 : TerminatorInst(Type::VoidTy, Instruction::Ret,
455 &RetVal, RI.getNumOperands()) {
456 if (RI.getNumOperands())
457 RetVal.init(RI.RetVal, this);
458}
459
460ReturnInst::ReturnInst(Value *retVal, Instruction *InsertBefore)
461 : TerminatorInst(Type::VoidTy, Instruction::Ret, &RetVal, 0, InsertBefore) {
462 init(retVal);
463}
464ReturnInst::ReturnInst(Value *retVal, BasicBlock *InsertAtEnd)
465 : TerminatorInst(Type::VoidTy, Instruction::Ret, &RetVal, 0, InsertAtEnd) {
466 init(retVal);
467}
468ReturnInst::ReturnInst(BasicBlock *InsertAtEnd)
469 : TerminatorInst(Type::VoidTy, Instruction::Ret, &RetVal, 0, InsertAtEnd) {
470}
471
472
473
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000474void ReturnInst::init(Value *retVal) {
475 if (retVal && retVal->getType() != Type::VoidTy) {
Misha Brukmanb1c93172005-04-21 23:48:37 +0000476 assert(!isa<BasicBlock>(retVal) &&
Alkis Evlogimenos531e9012004-11-17 21:02:25 +0000477 "Cannot return basic block. Probably using the incorrect ctor");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000478 NumOperands = 1;
479 RetVal.init(retVal, this);
Alkis Evlogimenos531e9012004-11-17 21:02:25 +0000480 }
481}
482
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000483unsigned ReturnInst::getNumSuccessorsV() const {
484 return getNumSuccessors();
485}
486
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000487// Out-of-line ReturnInst method, put here so the C++ compiler can choose to
488// emit the vtable for the class in this translation unit.
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000489void ReturnInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000490 assert(0 && "ReturnInst has no successors!");
491}
492
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000493BasicBlock *ReturnInst::getSuccessorV(unsigned idx) const {
494 assert(0 && "ReturnInst has no successors!");
495 abort();
496 return 0;
497}
498
499
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000500//===----------------------------------------------------------------------===//
501// UnwindInst Implementation
502//===----------------------------------------------------------------------===//
503
Chris Lattner2195fc42007-02-24 00:55:48 +0000504UnwindInst::UnwindInst(Instruction *InsertBefore)
505 : TerminatorInst(Type::VoidTy, Instruction::Unwind, 0, 0, InsertBefore) {
506}
507UnwindInst::UnwindInst(BasicBlock *InsertAtEnd)
508 : TerminatorInst(Type::VoidTy, Instruction::Unwind, 0, 0, InsertAtEnd) {
509}
510
511
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000512unsigned UnwindInst::getNumSuccessorsV() const {
513 return getNumSuccessors();
514}
515
516void UnwindInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000517 assert(0 && "UnwindInst has no successors!");
518}
519
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000520BasicBlock *UnwindInst::getSuccessorV(unsigned idx) const {
521 assert(0 && "UnwindInst has no successors!");
522 abort();
523 return 0;
524}
525
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000526//===----------------------------------------------------------------------===//
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000527// UnreachableInst Implementation
528//===----------------------------------------------------------------------===//
529
Chris Lattner2195fc42007-02-24 00:55:48 +0000530UnreachableInst::UnreachableInst(Instruction *InsertBefore)
531 : TerminatorInst(Type::VoidTy, Instruction::Unreachable, 0, 0, InsertBefore) {
532}
533UnreachableInst::UnreachableInst(BasicBlock *InsertAtEnd)
534 : TerminatorInst(Type::VoidTy, Instruction::Unreachable, 0, 0, InsertAtEnd) {
535}
536
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000537unsigned UnreachableInst::getNumSuccessorsV() const {
538 return getNumSuccessors();
539}
540
541void UnreachableInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
542 assert(0 && "UnwindInst has no successors!");
543}
544
545BasicBlock *UnreachableInst::getSuccessorV(unsigned idx) const {
546 assert(0 && "UnwindInst has no successors!");
547 abort();
548 return 0;
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000549}
550
551//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000552// BranchInst Implementation
553//===----------------------------------------------------------------------===//
554
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000555void BranchInst::AssertOK() {
556 if (isConditional())
Reid Spencer542964f2007-01-11 18:21:29 +0000557 assert(getCondition()->getType() == Type::Int1Ty &&
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000558 "May only branch on boolean predicates!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000559}
560
Chris Lattner2195fc42007-02-24 00:55:48 +0000561BranchInst::BranchInst(BasicBlock *IfTrue, Instruction *InsertBefore)
562 : TerminatorInst(Type::VoidTy, Instruction::Br, Ops, 1, InsertBefore) {
563 assert(IfTrue != 0 && "Branch destination may not be null!");
564 Ops[0].init(reinterpret_cast<Value*>(IfTrue), this);
565}
566BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
567 Instruction *InsertBefore)
568: TerminatorInst(Type::VoidTy, Instruction::Br, Ops, 3, InsertBefore) {
569 Ops[0].init(reinterpret_cast<Value*>(IfTrue), this);
570 Ops[1].init(reinterpret_cast<Value*>(IfFalse), this);
571 Ops[2].init(Cond, this);
572#ifndef NDEBUG
573 AssertOK();
574#endif
575}
576
577BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *InsertAtEnd)
578 : TerminatorInst(Type::VoidTy, Instruction::Br, Ops, 1, InsertAtEnd) {
579 assert(IfTrue != 0 && "Branch destination may not be null!");
580 Ops[0].init(reinterpret_cast<Value*>(IfTrue), this);
581}
582
583BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
584 BasicBlock *InsertAtEnd)
585 : TerminatorInst(Type::VoidTy, Instruction::Br, Ops, 3, InsertAtEnd) {
586 Ops[0].init(reinterpret_cast<Value*>(IfTrue), this);
587 Ops[1].init(reinterpret_cast<Value*>(IfFalse), this);
588 Ops[2].init(Cond, this);
589#ifndef NDEBUG
590 AssertOK();
591#endif
592}
593
594
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000595BranchInst::BranchInst(const BranchInst &BI) :
Chris Lattner2195fc42007-02-24 00:55:48 +0000596 TerminatorInst(Type::VoidTy, Instruction::Br, Ops, BI.getNumOperands()) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000597 OperandList[0].init(BI.getOperand(0), this);
598 if (BI.getNumOperands() != 1) {
599 assert(BI.getNumOperands() == 3 && "BR can have 1 or 3 operands!");
600 OperandList[1].init(BI.getOperand(1), this);
601 OperandList[2].init(BI.getOperand(2), this);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000602 }
603}
604
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000605BasicBlock *BranchInst::getSuccessorV(unsigned idx) const {
606 return getSuccessor(idx);
607}
608unsigned BranchInst::getNumSuccessorsV() const {
609 return getNumSuccessors();
610}
611void BranchInst::setSuccessorV(unsigned idx, BasicBlock *B) {
612 setSuccessor(idx, B);
613}
614
615
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000616//===----------------------------------------------------------------------===//
617// AllocationInst Implementation
618//===----------------------------------------------------------------------===//
619
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000620static Value *getAISize(Value *Amt) {
621 if (!Amt)
Reid Spencer8d9336d2006-12-31 05:26:44 +0000622 Amt = ConstantInt::get(Type::Int32Ty, 1);
Chris Lattnerbb7ff662006-05-10 04:32:43 +0000623 else {
624 assert(!isa<BasicBlock>(Amt) &&
625 "Passed basic block into allocation size parameter! Ue other ctor");
Reid Spencer8d9336d2006-12-31 05:26:44 +0000626 assert(Amt->getType() == Type::Int32Ty &&
Reid Spencer7e16e232007-01-26 06:30:34 +0000627 "Malloc/Allocation array size is not a 32-bit integer!");
Chris Lattnerbb7ff662006-05-10 04:32:43 +0000628 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000629 return Amt;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000630}
631
Misha Brukmanb1c93172005-04-21 23:48:37 +0000632AllocationInst::AllocationInst(const Type *Ty, Value *ArraySize, unsigned iTy,
Nate Begeman848622f2005-11-05 09:21:28 +0000633 unsigned Align, const std::string &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000634 Instruction *InsertBefore)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000635 : UnaryInstruction(PointerType::get(Ty), iTy, getAISize(ArraySize),
Chris Lattner2195fc42007-02-24 00:55:48 +0000636 InsertBefore), Alignment(Align) {
Chris Lattner79b8c792005-11-05 21:57:54 +0000637 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000638 assert(Ty != Type::VoidTy && "Cannot allocate void!");
Chris Lattner0f048162007-02-13 07:54:42 +0000639 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000640}
641
Misha Brukmanb1c93172005-04-21 23:48:37 +0000642AllocationInst::AllocationInst(const Type *Ty, Value *ArraySize, unsigned iTy,
Nate Begeman848622f2005-11-05 09:21:28 +0000643 unsigned Align, const std::string &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000644 BasicBlock *InsertAtEnd)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000645 : UnaryInstruction(PointerType::get(Ty), iTy, getAISize(ArraySize),
Chris Lattner2195fc42007-02-24 00:55:48 +0000646 InsertAtEnd), Alignment(Align) {
Chris Lattner79b8c792005-11-05 21:57:54 +0000647 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000648 assert(Ty != Type::VoidTy && "Cannot allocate void!");
Chris Lattner0f048162007-02-13 07:54:42 +0000649 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000650}
651
Chris Lattner1c12a882006-06-21 16:53:47 +0000652// Out of line virtual method, so the vtable, etc has a home.
653AllocationInst::~AllocationInst() {
654}
655
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000656bool AllocationInst::isArrayAllocation() const {
Reid Spencera9e6e312007-03-01 20:27:41 +0000657 if (ConstantInt *CI = dyn_cast<ConstantInt>(getOperand(0)))
658 return CI->getZExtValue() != 1;
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000659 return true;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000660}
661
662const Type *AllocationInst::getAllocatedType() const {
663 return getType()->getElementType();
664}
665
666AllocaInst::AllocaInst(const AllocaInst &AI)
667 : AllocationInst(AI.getType()->getElementType(), (Value*)AI.getOperand(0),
Nate Begeman848622f2005-11-05 09:21:28 +0000668 Instruction::Alloca, AI.getAlignment()) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000669}
670
671MallocInst::MallocInst(const MallocInst &MI)
672 : AllocationInst(MI.getType()->getElementType(), (Value*)MI.getOperand(0),
Nate Begeman848622f2005-11-05 09:21:28 +0000673 Instruction::Malloc, MI.getAlignment()) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000674}
675
676//===----------------------------------------------------------------------===//
677// FreeInst Implementation
678//===----------------------------------------------------------------------===//
679
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000680void FreeInst::AssertOK() {
681 assert(isa<PointerType>(getOperand(0)->getType()) &&
682 "Can not free something of nonpointer type!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000683}
684
685FreeInst::FreeInst(Value *Ptr, Instruction *InsertBefore)
Chris Lattner2195fc42007-02-24 00:55:48 +0000686 : UnaryInstruction(Type::VoidTy, Free, Ptr, InsertBefore) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000687 AssertOK();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000688}
689
690FreeInst::FreeInst(Value *Ptr, BasicBlock *InsertAtEnd)
Chris Lattner2195fc42007-02-24 00:55:48 +0000691 : UnaryInstruction(Type::VoidTy, Free, Ptr, InsertAtEnd) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000692 AssertOK();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000693}
694
695
696//===----------------------------------------------------------------------===//
697// LoadInst Implementation
698//===----------------------------------------------------------------------===//
699
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000700void LoadInst::AssertOK() {
Misha Brukmanb1c93172005-04-21 23:48:37 +0000701 assert(isa<PointerType>(getOperand(0)->getType()) &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000702 "Ptr must have pointer type.");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000703}
704
705LoadInst::LoadInst(Value *Ptr, const std::string &Name, Instruction *InsertBef)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000706 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000707 Load, Ptr, InsertBef) {
Chris Lattnerdf57a022005-02-05 01:38:38 +0000708 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000709 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000710 AssertOK();
Chris Lattner0f048162007-02-13 07:54:42 +0000711 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000712}
713
714LoadInst::LoadInst(Value *Ptr, const std::string &Name, BasicBlock *InsertAE)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000715 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000716 Load, Ptr, InsertAE) {
Chris Lattnerdf57a022005-02-05 01:38:38 +0000717 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000718 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000719 AssertOK();
Chris Lattner0f048162007-02-13 07:54:42 +0000720 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000721}
722
723LoadInst::LoadInst(Value *Ptr, const std::string &Name, bool isVolatile,
724 Instruction *InsertBef)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000725 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000726 Load, Ptr, InsertBef) {
Chris Lattnerdf57a022005-02-05 01:38:38 +0000727 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +0000728 setAlignment(0);
729 AssertOK();
730 setName(Name);
731}
732
733LoadInst::LoadInst(Value *Ptr, const std::string &Name, bool isVolatile,
734 unsigned Align, Instruction *InsertBef)
735 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
736 Load, Ptr, InsertBef) {
737 setVolatile(isVolatile);
738 setAlignment(Align);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000739 AssertOK();
Chris Lattner0f048162007-02-13 07:54:42 +0000740 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000741}
742
743LoadInst::LoadInst(Value *Ptr, const std::string &Name, bool isVolatile,
744 BasicBlock *InsertAE)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000745 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000746 Load, Ptr, InsertAE) {
Chris Lattner0f048162007-02-13 07:54:42 +0000747 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +0000748 setAlignment(0);
Chris Lattner0f048162007-02-13 07:54:42 +0000749 AssertOK();
750 setName(Name);
751}
752
753
754
755LoadInst::LoadInst(Value *Ptr, const char *Name, Instruction *InsertBef)
Chris Lattner2195fc42007-02-24 00:55:48 +0000756 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
757 Load, Ptr, InsertBef) {
Chris Lattner0f048162007-02-13 07:54:42 +0000758 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000759 setAlignment(0);
Chris Lattner0f048162007-02-13 07:54:42 +0000760 AssertOK();
Chris Lattner2195fc42007-02-24 00:55:48 +0000761 if (Name && Name[0]) setName(Name);
Chris Lattner0f048162007-02-13 07:54:42 +0000762}
763
764LoadInst::LoadInst(Value *Ptr, const char *Name, BasicBlock *InsertAE)
Chris Lattner2195fc42007-02-24 00:55:48 +0000765 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
766 Load, Ptr, InsertAE) {
Chris Lattner0f048162007-02-13 07:54:42 +0000767 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000768 setAlignment(0);
Chris Lattner0f048162007-02-13 07:54:42 +0000769 AssertOK();
Chris Lattner2195fc42007-02-24 00:55:48 +0000770 if (Name && Name[0]) setName(Name);
Chris Lattner0f048162007-02-13 07:54:42 +0000771}
772
773LoadInst::LoadInst(Value *Ptr, const char *Name, bool isVolatile,
774 Instruction *InsertBef)
775: UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000776 Load, Ptr, InsertBef) {
Chris Lattner0f048162007-02-13 07:54:42 +0000777 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +0000778 setAlignment(0);
Chris Lattner0f048162007-02-13 07:54:42 +0000779 AssertOK();
Chris Lattner2195fc42007-02-24 00:55:48 +0000780 if (Name && Name[0]) setName(Name);
Chris Lattner0f048162007-02-13 07:54:42 +0000781}
782
783LoadInst::LoadInst(Value *Ptr, const char *Name, bool isVolatile,
784 BasicBlock *InsertAE)
Chris Lattner2195fc42007-02-24 00:55:48 +0000785 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
786 Load, Ptr, InsertAE) {
Chris Lattnerdf57a022005-02-05 01:38:38 +0000787 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +0000788 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000789 AssertOK();
Chris Lattner2195fc42007-02-24 00:55:48 +0000790 if (Name && Name[0]) setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000791}
792
Christopher Lamb84485702007-04-22 19:24:39 +0000793void LoadInst::setAlignment(unsigned Align) {
794 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
795 SubclassData = (SubclassData & 1) | ((Log2_32(Align)+1)<<1);
796}
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000797
798//===----------------------------------------------------------------------===//
799// StoreInst Implementation
800//===----------------------------------------------------------------------===//
801
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000802void StoreInst::AssertOK() {
803 assert(isa<PointerType>(getOperand(1)->getType()) &&
804 "Ptr must have pointer type!");
805 assert(getOperand(0)->getType() ==
806 cast<PointerType>(getOperand(1)->getType())->getElementType()
Alkis Evlogimenos079fbde2004-08-06 14:33:37 +0000807 && "Ptr must be a pointer to Val type!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000808}
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000809
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000810
811StoreInst::StoreInst(Value *val, Value *addr, Instruction *InsertBefore)
Chris Lattner2195fc42007-02-24 00:55:48 +0000812 : Instruction(Type::VoidTy, Store, Ops, 2, InsertBefore) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000813 Ops[0].init(val, this);
814 Ops[1].init(addr, this);
Chris Lattnerdf57a022005-02-05 01:38:38 +0000815 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000816 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000817 AssertOK();
818}
819
820StoreInst::StoreInst(Value *val, Value *addr, BasicBlock *InsertAtEnd)
Chris Lattner2195fc42007-02-24 00:55:48 +0000821 : Instruction(Type::VoidTy, Store, Ops, 2, InsertAtEnd) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000822 Ops[0].init(val, this);
823 Ops[1].init(addr, this);
Chris Lattnerdf57a022005-02-05 01:38:38 +0000824 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000825 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000826 AssertOK();
827}
828
Misha Brukmanb1c93172005-04-21 23:48:37 +0000829StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000830 Instruction *InsertBefore)
Chris Lattner2195fc42007-02-24 00:55:48 +0000831 : Instruction(Type::VoidTy, Store, Ops, 2, InsertBefore) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000832 Ops[0].init(val, this);
833 Ops[1].init(addr, this);
Chris Lattnerdf57a022005-02-05 01:38:38 +0000834 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +0000835 setAlignment(0);
836 AssertOK();
837}
838
839StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
840 unsigned Align, Instruction *InsertBefore)
841 : Instruction(Type::VoidTy, Store, Ops, 2, InsertBefore) {
842 Ops[0].init(val, this);
843 Ops[1].init(addr, this);
844 setVolatile(isVolatile);
845 setAlignment(Align);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000846 AssertOK();
847}
848
Misha Brukmanb1c93172005-04-21 23:48:37 +0000849StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000850 BasicBlock *InsertAtEnd)
Chris Lattner2195fc42007-02-24 00:55:48 +0000851 : Instruction(Type::VoidTy, Store, Ops, 2, InsertAtEnd) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000852 Ops[0].init(val, this);
853 Ops[1].init(addr, this);
Chris Lattnerdf57a022005-02-05 01:38:38 +0000854 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +0000855 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000856 AssertOK();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000857}
858
Christopher Lamb84485702007-04-22 19:24:39 +0000859void StoreInst::setAlignment(unsigned Align) {
860 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
861 SubclassData = (SubclassData & 1) | ((Log2_32(Align)+1)<<1);
862}
863
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000864//===----------------------------------------------------------------------===//
865// GetElementPtrInst Implementation
866//===----------------------------------------------------------------------===//
867
868// checkType - Simple wrapper function to give a better assertion failure
869// message on bad indexes for a gep instruction.
870//
871static inline const Type *checkType(const Type *Ty) {
Chris Lattner47a6e632006-05-14 18:34:36 +0000872 assert(Ty && "Invalid GetElementPtrInst indices for type!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000873 return Ty;
874}
875
Chris Lattner79807c3d2007-01-31 19:47:18 +0000876void GetElementPtrInst::init(Value *Ptr, Value* const *Idx, unsigned NumIdx) {
877 NumOperands = 1+NumIdx;
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000878 Use *OL = OperandList = new Use[NumOperands];
879 OL[0].init(Ptr, this);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000880
Chris Lattner79807c3d2007-01-31 19:47:18 +0000881 for (unsigned i = 0; i != NumIdx; ++i)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000882 OL[i+1].init(Idx[i], this);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000883}
884
885void GetElementPtrInst::init(Value *Ptr, Value *Idx0, Value *Idx1) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000886 NumOperands = 3;
887 Use *OL = OperandList = new Use[3];
888 OL[0].init(Ptr, this);
889 OL[1].init(Idx0, this);
890 OL[2].init(Idx1, this);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000891}
892
Chris Lattner82981202005-05-03 05:43:30 +0000893void GetElementPtrInst::init(Value *Ptr, Value *Idx) {
894 NumOperands = 2;
895 Use *OL = OperandList = new Use[2];
896 OL[0].init(Ptr, this);
897 OL[1].init(Idx, this);
898}
899
Chris Lattner79807c3d2007-01-31 19:47:18 +0000900
901GetElementPtrInst::GetElementPtrInst(Value *Ptr, Value* const *Idx,
902 unsigned NumIdx,
903 const std::string &Name, Instruction *InBe)
904: Instruction(PointerType::get(checkType(getIndexedType(Ptr->getType(),
Reid Spencerdee14b52007-01-31 22:30:26 +0000905 Idx, NumIdx, true))),
Chris Lattner2195fc42007-02-24 00:55:48 +0000906 GetElementPtr, 0, 0, InBe) {
Chris Lattner79807c3d2007-01-31 19:47:18 +0000907 init(Ptr, Idx, NumIdx);
Chris Lattner2195fc42007-02-24 00:55:48 +0000908 setName(Name);
Chris Lattner79807c3d2007-01-31 19:47:18 +0000909}
910
911GetElementPtrInst::GetElementPtrInst(Value *Ptr, Value* const *Idx,
912 unsigned NumIdx,
913 const std::string &Name, BasicBlock *IAE)
914: Instruction(PointerType::get(checkType(getIndexedType(Ptr->getType(),
Reid Spencerdee14b52007-01-31 22:30:26 +0000915 Idx, NumIdx, true))),
Chris Lattner2195fc42007-02-24 00:55:48 +0000916 GetElementPtr, 0, 0, IAE) {
Chris Lattner79807c3d2007-01-31 19:47:18 +0000917 init(Ptr, Idx, NumIdx);
Chris Lattner2195fc42007-02-24 00:55:48 +0000918 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000919}
920
Chris Lattner82981202005-05-03 05:43:30 +0000921GetElementPtrInst::GetElementPtrInst(Value *Ptr, Value *Idx,
922 const std::string &Name, Instruction *InBe)
Chris Lattner2195fc42007-02-24 00:55:48 +0000923 : Instruction(PointerType::get(checkType(getIndexedType(Ptr->getType(),Idx))),
924 GetElementPtr, 0, 0, InBe) {
Chris Lattner82981202005-05-03 05:43:30 +0000925 init(Ptr, Idx);
Chris Lattner2195fc42007-02-24 00:55:48 +0000926 setName(Name);
Chris Lattner82981202005-05-03 05:43:30 +0000927}
928
929GetElementPtrInst::GetElementPtrInst(Value *Ptr, Value *Idx,
930 const std::string &Name, BasicBlock *IAE)
Chris Lattner2195fc42007-02-24 00:55:48 +0000931 : Instruction(PointerType::get(checkType(getIndexedType(Ptr->getType(),Idx))),
932 GetElementPtr, 0, 0, IAE) {
Chris Lattner82981202005-05-03 05:43:30 +0000933 init(Ptr, Idx);
Chris Lattner2195fc42007-02-24 00:55:48 +0000934 setName(Name);
Chris Lattner82981202005-05-03 05:43:30 +0000935}
936
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000937GetElementPtrInst::GetElementPtrInst(Value *Ptr, Value *Idx0, Value *Idx1,
938 const std::string &Name, Instruction *InBe)
939 : Instruction(PointerType::get(checkType(getIndexedType(Ptr->getType(),
940 Idx0, Idx1, true))),
Chris Lattner2195fc42007-02-24 00:55:48 +0000941 GetElementPtr, 0, 0, InBe) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000942 init(Ptr, Idx0, Idx1);
Chris Lattner2195fc42007-02-24 00:55:48 +0000943 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000944}
945
946GetElementPtrInst::GetElementPtrInst(Value *Ptr, Value *Idx0, Value *Idx1,
Misha Brukman96eb8782005-03-16 05:42:00 +0000947 const std::string &Name, BasicBlock *IAE)
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000948 : Instruction(PointerType::get(checkType(getIndexedType(Ptr->getType(),
949 Idx0, Idx1, true))),
Chris Lattner2195fc42007-02-24 00:55:48 +0000950 GetElementPtr, 0, 0, IAE) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000951 init(Ptr, Idx0, Idx1);
Chris Lattner2195fc42007-02-24 00:55:48 +0000952 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000953}
954
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000955GetElementPtrInst::~GetElementPtrInst() {
956 delete[] OperandList;
957}
958
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000959// getIndexedType - Returns the type of the element that would be loaded with
960// a load instruction with the specified parameters.
961//
Misha Brukmanb1c93172005-04-21 23:48:37 +0000962// A null type is returned if the indices are invalid for the specified
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000963// pointer type.
964//
Misha Brukmanb1c93172005-04-21 23:48:37 +0000965const Type* GetElementPtrInst::getIndexedType(const Type *Ptr,
Chris Lattner302116a2007-01-31 04:40:28 +0000966 Value* const *Idxs,
967 unsigned NumIdx,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000968 bool AllowCompositeLeaf) {
969 if (!isa<PointerType>(Ptr)) return 0; // Type isn't a pointer type!
970
971 // Handle the special case of the empty set index set...
Chris Lattner302116a2007-01-31 04:40:28 +0000972 if (NumIdx == 0)
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000973 if (AllowCompositeLeaf ||
974 cast<PointerType>(Ptr)->getElementType()->isFirstClassType())
975 return cast<PointerType>(Ptr)->getElementType();
976 else
977 return 0;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000978
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000979 unsigned CurIdx = 0;
980 while (const CompositeType *CT = dyn_cast<CompositeType>(Ptr)) {
Chris Lattner302116a2007-01-31 04:40:28 +0000981 if (NumIdx == CurIdx) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000982 if (AllowCompositeLeaf || CT->isFirstClassType()) return Ptr;
983 return 0; // Can't load a whole structure or array!?!?
984 }
985
Chris Lattner302116a2007-01-31 04:40:28 +0000986 Value *Index = Idxs[CurIdx++];
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000987 if (isa<PointerType>(CT) && CurIdx != 1)
988 return 0; // Can only index into pointer types at the first index!
989 if (!CT->indexValid(Index)) return 0;
990 Ptr = CT->getTypeAtIndex(Index);
991
992 // If the new type forwards to another type, then it is in the middle
993 // of being refined to another type (and hence, may have dropped all
994 // references to what it was using before). So, use the new forwarded
995 // type.
996 if (const Type * Ty = Ptr->getForwardedType()) {
997 Ptr = Ty;
998 }
999 }
Chris Lattner302116a2007-01-31 04:40:28 +00001000 return CurIdx == NumIdx ? Ptr : 0;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001001}
1002
Misha Brukmanb1c93172005-04-21 23:48:37 +00001003const Type* GetElementPtrInst::getIndexedType(const Type *Ptr,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001004 Value *Idx0, Value *Idx1,
1005 bool AllowCompositeLeaf) {
1006 const PointerType *PTy = dyn_cast<PointerType>(Ptr);
1007 if (!PTy) return 0; // Type isn't a pointer type!
1008
1009 // Check the pointer index.
1010 if (!PTy->indexValid(Idx0)) return 0;
1011
1012 const CompositeType *CT = dyn_cast<CompositeType>(PTy->getElementType());
1013 if (!CT || !CT->indexValid(Idx1)) return 0;
1014
1015 const Type *ElTy = CT->getTypeAtIndex(Idx1);
1016 if (AllowCompositeLeaf || ElTy->isFirstClassType())
1017 return ElTy;
1018 return 0;
1019}
1020
Chris Lattner82981202005-05-03 05:43:30 +00001021const Type* GetElementPtrInst::getIndexedType(const Type *Ptr, Value *Idx) {
1022 const PointerType *PTy = dyn_cast<PointerType>(Ptr);
1023 if (!PTy) return 0; // Type isn't a pointer type!
1024
1025 // Check the pointer index.
1026 if (!PTy->indexValid(Idx)) return 0;
1027
Chris Lattnerc2233332005-05-03 16:44:45 +00001028 return PTy->getElementType();
Chris Lattner82981202005-05-03 05:43:30 +00001029}
1030
Chris Lattner45f15572007-04-14 00:12:57 +00001031
1032/// hasAllZeroIndices - Return true if all of the indices of this GEP are
1033/// zeros. If so, the result pointer and the first operand have the same
1034/// value, just potentially different types.
1035bool GetElementPtrInst::hasAllZeroIndices() const {
1036 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
1037 if (ConstantInt *CI = dyn_cast<ConstantInt>(getOperand(i))) {
1038 if (!CI->isZero()) return false;
1039 } else {
1040 return false;
1041 }
1042 }
1043 return true;
1044}
1045
Chris Lattner27058292007-04-27 20:35:56 +00001046/// hasAllConstantIndices - Return true if all of the indices of this GEP are
1047/// constant integers. If so, the result pointer and the first operand have
1048/// a constant offset between them.
1049bool GetElementPtrInst::hasAllConstantIndices() const {
1050 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
1051 if (!isa<ConstantInt>(getOperand(i)))
1052 return false;
1053 }
1054 return true;
1055}
1056
Chris Lattner45f15572007-04-14 00:12:57 +00001057
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001058//===----------------------------------------------------------------------===//
Robert Bocchino23004482006-01-10 19:05:34 +00001059// ExtractElementInst Implementation
1060//===----------------------------------------------------------------------===//
1061
1062ExtractElementInst::ExtractElementInst(Value *Val, Value *Index,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001063 const std::string &Name,
1064 Instruction *InsertBef)
Reid Spencerd84d35b2007-02-15 02:26:10 +00001065 : Instruction(cast<VectorType>(Val->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +00001066 ExtractElement, Ops, 2, InsertBef) {
Chris Lattner54865b32006-04-08 04:05:48 +00001067 assert(isValidOperands(Val, Index) &&
1068 "Invalid extractelement instruction operands!");
Robert Bocchino23004482006-01-10 19:05:34 +00001069 Ops[0].init(Val, this);
1070 Ops[1].init(Index, this);
Chris Lattner2195fc42007-02-24 00:55:48 +00001071 setName(Name);
Robert Bocchino23004482006-01-10 19:05:34 +00001072}
1073
Chris Lattner65511ff2006-10-05 06:24:58 +00001074ExtractElementInst::ExtractElementInst(Value *Val, unsigned IndexV,
1075 const std::string &Name,
1076 Instruction *InsertBef)
Reid Spencerd84d35b2007-02-15 02:26:10 +00001077 : Instruction(cast<VectorType>(Val->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +00001078 ExtractElement, Ops, 2, InsertBef) {
Reid Spencer8d9336d2006-12-31 05:26:44 +00001079 Constant *Index = ConstantInt::get(Type::Int32Ty, IndexV);
Chris Lattner65511ff2006-10-05 06:24:58 +00001080 assert(isValidOperands(Val, Index) &&
1081 "Invalid extractelement instruction operands!");
1082 Ops[0].init(Val, this);
1083 Ops[1].init(Index, this);
Chris Lattner2195fc42007-02-24 00:55:48 +00001084 setName(Name);
Chris Lattner65511ff2006-10-05 06:24:58 +00001085}
1086
1087
Robert Bocchino23004482006-01-10 19:05:34 +00001088ExtractElementInst::ExtractElementInst(Value *Val, Value *Index,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001089 const std::string &Name,
1090 BasicBlock *InsertAE)
Reid Spencerd84d35b2007-02-15 02:26:10 +00001091 : Instruction(cast<VectorType>(Val->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +00001092 ExtractElement, Ops, 2, InsertAE) {
Chris Lattner54865b32006-04-08 04:05:48 +00001093 assert(isValidOperands(Val, Index) &&
1094 "Invalid extractelement instruction operands!");
1095
Robert Bocchino23004482006-01-10 19:05:34 +00001096 Ops[0].init(Val, this);
1097 Ops[1].init(Index, this);
Chris Lattner2195fc42007-02-24 00:55:48 +00001098 setName(Name);
Robert Bocchino23004482006-01-10 19:05:34 +00001099}
1100
Chris Lattner65511ff2006-10-05 06:24:58 +00001101ExtractElementInst::ExtractElementInst(Value *Val, unsigned IndexV,
1102 const std::string &Name,
1103 BasicBlock *InsertAE)
Reid Spencerd84d35b2007-02-15 02:26:10 +00001104 : Instruction(cast<VectorType>(Val->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +00001105 ExtractElement, Ops, 2, InsertAE) {
Reid Spencer8d9336d2006-12-31 05:26:44 +00001106 Constant *Index = ConstantInt::get(Type::Int32Ty, IndexV);
Chris Lattner65511ff2006-10-05 06:24:58 +00001107 assert(isValidOperands(Val, Index) &&
1108 "Invalid extractelement instruction operands!");
1109
1110 Ops[0].init(Val, this);
1111 Ops[1].init(Index, this);
Chris Lattner2195fc42007-02-24 00:55:48 +00001112 setName(Name);
Chris Lattner65511ff2006-10-05 06:24:58 +00001113}
1114
1115
Chris Lattner54865b32006-04-08 04:05:48 +00001116bool ExtractElementInst::isValidOperands(const Value *Val, const Value *Index) {
Reid Spencerd84d35b2007-02-15 02:26:10 +00001117 if (!isa<VectorType>(Val->getType()) || Index->getType() != Type::Int32Ty)
Chris Lattner54865b32006-04-08 04:05:48 +00001118 return false;
1119 return true;
1120}
1121
1122
Robert Bocchino23004482006-01-10 19:05:34 +00001123//===----------------------------------------------------------------------===//
Robert Bocchinoca27f032006-01-17 20:07:22 +00001124// InsertElementInst Implementation
1125//===----------------------------------------------------------------------===//
1126
Chris Lattner0875d942006-04-14 22:20:32 +00001127InsertElementInst::InsertElementInst(const InsertElementInst &IE)
1128 : Instruction(IE.getType(), InsertElement, Ops, 3) {
1129 Ops[0].init(IE.Ops[0], this);
1130 Ops[1].init(IE.Ops[1], this);
1131 Ops[2].init(IE.Ops[2], this);
1132}
Chris Lattner54865b32006-04-08 04:05:48 +00001133InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, Value *Index,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001134 const std::string &Name,
1135 Instruction *InsertBef)
Chris Lattner2195fc42007-02-24 00:55:48 +00001136 : Instruction(Vec->getType(), InsertElement, Ops, 3, InsertBef) {
Chris Lattner54865b32006-04-08 04:05:48 +00001137 assert(isValidOperands(Vec, Elt, Index) &&
1138 "Invalid insertelement instruction operands!");
1139 Ops[0].init(Vec, this);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001140 Ops[1].init(Elt, this);
1141 Ops[2].init(Index, this);
Chris Lattner2195fc42007-02-24 00:55:48 +00001142 setName(Name);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001143}
1144
Chris Lattner65511ff2006-10-05 06:24:58 +00001145InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, unsigned IndexV,
1146 const std::string &Name,
1147 Instruction *InsertBef)
Chris Lattner2195fc42007-02-24 00:55:48 +00001148 : Instruction(Vec->getType(), InsertElement, Ops, 3, InsertBef) {
Reid Spencer8d9336d2006-12-31 05:26:44 +00001149 Constant *Index = ConstantInt::get(Type::Int32Ty, IndexV);
Chris Lattner65511ff2006-10-05 06:24:58 +00001150 assert(isValidOperands(Vec, Elt, Index) &&
1151 "Invalid insertelement instruction operands!");
1152 Ops[0].init(Vec, this);
1153 Ops[1].init(Elt, this);
1154 Ops[2].init(Index, this);
Chris Lattner2195fc42007-02-24 00:55:48 +00001155 setName(Name);
Chris Lattner65511ff2006-10-05 06:24:58 +00001156}
1157
1158
Chris Lattner54865b32006-04-08 04:05:48 +00001159InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, Value *Index,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001160 const std::string &Name,
1161 BasicBlock *InsertAE)
Chris Lattner2195fc42007-02-24 00:55:48 +00001162 : Instruction(Vec->getType(), InsertElement, Ops, 3, InsertAE) {
Chris Lattner54865b32006-04-08 04:05:48 +00001163 assert(isValidOperands(Vec, Elt, Index) &&
1164 "Invalid insertelement instruction operands!");
1165
1166 Ops[0].init(Vec, this);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001167 Ops[1].init(Elt, this);
1168 Ops[2].init(Index, this);
Chris Lattner2195fc42007-02-24 00:55:48 +00001169 setName(Name);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001170}
1171
Chris Lattner65511ff2006-10-05 06:24:58 +00001172InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, unsigned IndexV,
1173 const std::string &Name,
1174 BasicBlock *InsertAE)
Chris Lattner2195fc42007-02-24 00:55:48 +00001175: Instruction(Vec->getType(), InsertElement, Ops, 3, InsertAE) {
Reid Spencer8d9336d2006-12-31 05:26:44 +00001176 Constant *Index = ConstantInt::get(Type::Int32Ty, IndexV);
Chris Lattner65511ff2006-10-05 06:24:58 +00001177 assert(isValidOperands(Vec, Elt, Index) &&
1178 "Invalid insertelement instruction operands!");
1179
1180 Ops[0].init(Vec, this);
1181 Ops[1].init(Elt, this);
1182 Ops[2].init(Index, this);
Chris Lattner2195fc42007-02-24 00:55:48 +00001183 setName(Name);
Chris Lattner65511ff2006-10-05 06:24:58 +00001184}
1185
Chris Lattner54865b32006-04-08 04:05:48 +00001186bool InsertElementInst::isValidOperands(const Value *Vec, const Value *Elt,
1187 const Value *Index) {
Reid Spencerd84d35b2007-02-15 02:26:10 +00001188 if (!isa<VectorType>(Vec->getType()))
Reid Spencer09575ba2007-02-15 03:39:18 +00001189 return false; // First operand of insertelement must be vector type.
Chris Lattner54865b32006-04-08 04:05:48 +00001190
Reid Spencerd84d35b2007-02-15 02:26:10 +00001191 if (Elt->getType() != cast<VectorType>(Vec->getType())->getElementType())
Chris Lattner54865b32006-04-08 04:05:48 +00001192 return false;// Second operand of insertelement must be packed element type.
1193
Reid Spencer8d9336d2006-12-31 05:26:44 +00001194 if (Index->getType() != Type::Int32Ty)
Chris Lattner54865b32006-04-08 04:05:48 +00001195 return false; // Third operand of insertelement must be uint.
1196 return true;
1197}
1198
1199
Robert Bocchinoca27f032006-01-17 20:07:22 +00001200//===----------------------------------------------------------------------===//
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001201// ShuffleVectorInst Implementation
1202//===----------------------------------------------------------------------===//
1203
Chris Lattner0875d942006-04-14 22:20:32 +00001204ShuffleVectorInst::ShuffleVectorInst(const ShuffleVectorInst &SV)
1205 : Instruction(SV.getType(), ShuffleVector, Ops, 3) {
1206 Ops[0].init(SV.Ops[0], this);
1207 Ops[1].init(SV.Ops[1], this);
1208 Ops[2].init(SV.Ops[2], this);
1209}
1210
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001211ShuffleVectorInst::ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
1212 const std::string &Name,
1213 Instruction *InsertBefore)
Chris Lattner2195fc42007-02-24 00:55:48 +00001214 : Instruction(V1->getType(), ShuffleVector, Ops, 3, InsertBefore) {
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001215 assert(isValidOperands(V1, V2, Mask) &&
1216 "Invalid shuffle vector instruction operands!");
1217 Ops[0].init(V1, this);
1218 Ops[1].init(V2, this);
1219 Ops[2].init(Mask, this);
Chris Lattner2195fc42007-02-24 00:55:48 +00001220 setName(Name);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001221}
1222
1223ShuffleVectorInst::ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
1224 const std::string &Name,
1225 BasicBlock *InsertAtEnd)
Chris Lattner2195fc42007-02-24 00:55:48 +00001226 : Instruction(V1->getType(), ShuffleVector, Ops, 3, InsertAtEnd) {
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001227 assert(isValidOperands(V1, V2, Mask) &&
1228 "Invalid shuffle vector instruction operands!");
1229
1230 Ops[0].init(V1, this);
1231 Ops[1].init(V2, this);
1232 Ops[2].init(Mask, this);
Chris Lattner2195fc42007-02-24 00:55:48 +00001233 setName(Name);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001234}
1235
1236bool ShuffleVectorInst::isValidOperands(const Value *V1, const Value *V2,
1237 const Value *Mask) {
Reid Spencerd84d35b2007-02-15 02:26:10 +00001238 if (!isa<VectorType>(V1->getType())) return false;
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001239 if (V1->getType() != V2->getType()) return false;
Reid Spencerd84d35b2007-02-15 02:26:10 +00001240 if (!isa<VectorType>(Mask->getType()) ||
1241 cast<VectorType>(Mask->getType())->getElementType() != Type::Int32Ty ||
1242 cast<VectorType>(Mask->getType())->getNumElements() !=
1243 cast<VectorType>(V1->getType())->getNumElements())
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001244 return false;
1245 return true;
1246}
1247
1248
1249//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001250// BinaryOperator Class
1251//===----------------------------------------------------------------------===//
1252
Chris Lattner2195fc42007-02-24 00:55:48 +00001253BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2,
1254 const Type *Ty, const std::string &Name,
1255 Instruction *InsertBefore)
1256 : Instruction(Ty, iType, Ops, 2, InsertBefore) {
1257 Ops[0].init(S1, this);
1258 Ops[1].init(S2, this);
1259 init(iType);
1260 setName(Name);
1261}
1262
1263BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2,
1264 const Type *Ty, const std::string &Name,
1265 BasicBlock *InsertAtEnd)
1266 : Instruction(Ty, iType, Ops, 2, InsertAtEnd) {
1267 Ops[0].init(S1, this);
1268 Ops[1].init(S2, this);
1269 init(iType);
1270 setName(Name);
1271}
1272
1273
1274void BinaryOperator::init(BinaryOps iType) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001275 Value *LHS = getOperand(0), *RHS = getOperand(1);
Chris Lattnerf14c76c2007-02-01 04:59:37 +00001276 LHS = LHS; RHS = RHS; // Silence warnings.
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001277 assert(LHS->getType() == RHS->getType() &&
1278 "Binary operator operand types must match!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001279#ifndef NDEBUG
1280 switch (iType) {
1281 case Add: case Sub:
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001282 case Mul:
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001283 assert(getType() == LHS->getType() &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001284 "Arithmetic operation should return same type as operands!");
Chris Lattner03c49532007-01-15 02:27:26 +00001285 assert((getType()->isInteger() || getType()->isFloatingPoint() ||
Reid Spencerd84d35b2007-02-15 02:26:10 +00001286 isa<VectorType>(getType())) &&
Brian Gaeke02209042004-08-20 06:00:58 +00001287 "Tried to create an arithmetic operation on a non-arithmetic type!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001288 break;
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001289 case UDiv:
1290 case SDiv:
1291 assert(getType() == LHS->getType() &&
1292 "Arithmetic operation should return same type as operands!");
Reid Spencerd84d35b2007-02-15 02:26:10 +00001293 assert((getType()->isInteger() || (isa<VectorType>(getType()) &&
1294 cast<VectorType>(getType())->getElementType()->isInteger())) &&
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001295 "Incorrect operand type (not integer) for S/UDIV");
1296 break;
1297 case FDiv:
1298 assert(getType() == LHS->getType() &&
1299 "Arithmetic operation should return same type as operands!");
Reid Spencerd84d35b2007-02-15 02:26:10 +00001300 assert((getType()->isFloatingPoint() || (isa<VectorType>(getType()) &&
1301 cast<VectorType>(getType())->getElementType()->isFloatingPoint()))
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001302 && "Incorrect operand type (not floating point) for FDIV");
1303 break;
Reid Spencer7eb55b32006-11-02 01:53:59 +00001304 case URem:
1305 case SRem:
1306 assert(getType() == LHS->getType() &&
1307 "Arithmetic operation should return same type as operands!");
Reid Spencerd84d35b2007-02-15 02:26:10 +00001308 assert((getType()->isInteger() || (isa<VectorType>(getType()) &&
1309 cast<VectorType>(getType())->getElementType()->isInteger())) &&
Reid Spencer7eb55b32006-11-02 01:53:59 +00001310 "Incorrect operand type (not integer) for S/UREM");
1311 break;
1312 case FRem:
1313 assert(getType() == LHS->getType() &&
1314 "Arithmetic operation should return same type as operands!");
Reid Spencerd84d35b2007-02-15 02:26:10 +00001315 assert((getType()->isFloatingPoint() || (isa<VectorType>(getType()) &&
1316 cast<VectorType>(getType())->getElementType()->isFloatingPoint()))
Reid Spencer7eb55b32006-11-02 01:53:59 +00001317 && "Incorrect operand type (not floating point) for FREM");
1318 break;
Reid Spencer2341c222007-02-02 02:16:23 +00001319 case Shl:
1320 case LShr:
1321 case AShr:
1322 assert(getType() == LHS->getType() &&
1323 "Shift operation should return same type as operands!");
1324 assert(getType()->isInteger() &&
1325 "Shift operation requires integer operands");
1326 break;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001327 case And: case Or:
1328 case Xor:
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001329 assert(getType() == LHS->getType() &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001330 "Logical operation should return same type as operands!");
Chris Lattner03c49532007-01-15 02:27:26 +00001331 assert((getType()->isInteger() ||
Reid Spencerd84d35b2007-02-15 02:26:10 +00001332 (isa<VectorType>(getType()) &&
1333 cast<VectorType>(getType())->getElementType()->isInteger())) &&
Misha Brukman3852f652005-01-27 06:46:38 +00001334 "Tried to create a logical operation on a non-integral type!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001335 break;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001336 default:
1337 break;
1338 }
1339#endif
1340}
1341
1342BinaryOperator *BinaryOperator::create(BinaryOps Op, Value *S1, Value *S2,
Misha Brukman96eb8782005-03-16 05:42:00 +00001343 const std::string &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001344 Instruction *InsertBefore) {
1345 assert(S1->getType() == S2->getType() &&
1346 "Cannot create binary operator with two operands of differing type!");
Reid Spencer266e42b2006-12-23 06:05:41 +00001347 return new BinaryOperator(Op, S1, S2, S1->getType(), Name, InsertBefore);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001348}
1349
1350BinaryOperator *BinaryOperator::create(BinaryOps Op, Value *S1, Value *S2,
Misha Brukman96eb8782005-03-16 05:42:00 +00001351 const std::string &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001352 BasicBlock *InsertAtEnd) {
1353 BinaryOperator *Res = create(Op, S1, S2, Name);
1354 InsertAtEnd->getInstList().push_back(Res);
1355 return Res;
1356}
1357
1358BinaryOperator *BinaryOperator::createNeg(Value *Op, const std::string &Name,
1359 Instruction *InsertBefore) {
Reid Spencer2eadb532007-01-21 00:29:26 +00001360 Value *zero = ConstantExpr::getZeroValueForNegationExpr(Op->getType());
1361 return new BinaryOperator(Instruction::Sub,
1362 zero, Op,
1363 Op->getType(), Name, InsertBefore);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001364}
1365
1366BinaryOperator *BinaryOperator::createNeg(Value *Op, const std::string &Name,
1367 BasicBlock *InsertAtEnd) {
Reid Spencer2eadb532007-01-21 00:29:26 +00001368 Value *zero = ConstantExpr::getZeroValueForNegationExpr(Op->getType());
1369 return new BinaryOperator(Instruction::Sub,
1370 zero, Op,
1371 Op->getType(), Name, InsertAtEnd);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001372}
1373
1374BinaryOperator *BinaryOperator::createNot(Value *Op, const std::string &Name,
1375 Instruction *InsertBefore) {
Chris Lattnere8e7ac42006-03-25 21:54:21 +00001376 Constant *C;
Reid Spencerd84d35b2007-02-15 02:26:10 +00001377 if (const VectorType *PTy = dyn_cast<VectorType>(Op->getType())) {
Zhou Sheng75b871f2007-01-11 12:24:14 +00001378 C = ConstantInt::getAllOnesValue(PTy->getElementType());
Reid Spencerd84d35b2007-02-15 02:26:10 +00001379 C = ConstantVector::get(std::vector<Constant*>(PTy->getNumElements(), C));
Chris Lattnere8e7ac42006-03-25 21:54:21 +00001380 } else {
Zhou Sheng75b871f2007-01-11 12:24:14 +00001381 C = ConstantInt::getAllOnesValue(Op->getType());
Chris Lattnere8e7ac42006-03-25 21:54:21 +00001382 }
1383
1384 return new BinaryOperator(Instruction::Xor, Op, C,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001385 Op->getType(), Name, InsertBefore);
1386}
1387
1388BinaryOperator *BinaryOperator::createNot(Value *Op, const std::string &Name,
1389 BasicBlock *InsertAtEnd) {
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001390 Constant *AllOnes;
Reid Spencerd84d35b2007-02-15 02:26:10 +00001391 if (const VectorType *PTy = dyn_cast<VectorType>(Op->getType())) {
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001392 // Create a vector of all ones values.
Zhou Sheng75b871f2007-01-11 12:24:14 +00001393 Constant *Elt = ConstantInt::getAllOnesValue(PTy->getElementType());
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001394 AllOnes =
Reid Spencerd84d35b2007-02-15 02:26:10 +00001395 ConstantVector::get(std::vector<Constant*>(PTy->getNumElements(), Elt));
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001396 } else {
Zhou Sheng75b871f2007-01-11 12:24:14 +00001397 AllOnes = ConstantInt::getAllOnesValue(Op->getType());
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001398 }
1399
1400 return new BinaryOperator(Instruction::Xor, Op, AllOnes,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001401 Op->getType(), Name, InsertAtEnd);
1402}
1403
1404
1405// isConstantAllOnes - Helper function for several functions below
1406static inline bool isConstantAllOnes(const Value *V) {
Zhou Sheng75b871f2007-01-11 12:24:14 +00001407 return isa<ConstantInt>(V) &&cast<ConstantInt>(V)->isAllOnesValue();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001408}
1409
1410bool BinaryOperator::isNeg(const Value *V) {
1411 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1412 if (Bop->getOpcode() == Instruction::Sub)
Reid Spencer2eadb532007-01-21 00:29:26 +00001413 return Bop->getOperand(0) ==
1414 ConstantExpr::getZeroValueForNegationExpr(Bop->getType());
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001415 return false;
1416}
1417
1418bool BinaryOperator::isNot(const Value *V) {
1419 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1420 return (Bop->getOpcode() == Instruction::Xor &&
1421 (isConstantAllOnes(Bop->getOperand(1)) ||
1422 isConstantAllOnes(Bop->getOperand(0))));
1423 return false;
1424}
1425
Chris Lattner2c7d1772005-04-24 07:28:37 +00001426Value *BinaryOperator::getNegArgument(Value *BinOp) {
1427 assert(isNeg(BinOp) && "getNegArgument from non-'neg' instruction!");
1428 return cast<BinaryOperator>(BinOp)->getOperand(1);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001429}
1430
Chris Lattner2c7d1772005-04-24 07:28:37 +00001431const Value *BinaryOperator::getNegArgument(const Value *BinOp) {
1432 return getNegArgument(const_cast<Value*>(BinOp));
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001433}
1434
Chris Lattner2c7d1772005-04-24 07:28:37 +00001435Value *BinaryOperator::getNotArgument(Value *BinOp) {
1436 assert(isNot(BinOp) && "getNotArgument on non-'not' instruction!");
1437 BinaryOperator *BO = cast<BinaryOperator>(BinOp);
1438 Value *Op0 = BO->getOperand(0);
1439 Value *Op1 = BO->getOperand(1);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001440 if (isConstantAllOnes(Op0)) return Op1;
1441
1442 assert(isConstantAllOnes(Op1));
1443 return Op0;
1444}
1445
Chris Lattner2c7d1772005-04-24 07:28:37 +00001446const Value *BinaryOperator::getNotArgument(const Value *BinOp) {
1447 return getNotArgument(const_cast<Value*>(BinOp));
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001448}
1449
1450
1451// swapOperands - Exchange the two operands to this instruction. This
1452// instruction is safe to use on any binary instruction and does not
1453// modify the semantics of the instruction. If the instruction is
1454// order dependent (SetLT f.e.) the opcode is changed.
1455//
1456bool BinaryOperator::swapOperands() {
Reid Spencer266e42b2006-12-23 06:05:41 +00001457 if (!isCommutative())
1458 return true; // Can't commute operands
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001459 std::swap(Ops[0], Ops[1]);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001460 return false;
1461}
1462
Chris Lattnerb0b8ddd2006-09-18 04:54:57 +00001463//===----------------------------------------------------------------------===//
1464// CastInst Class
1465//===----------------------------------------------------------------------===//
1466
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001467// Just determine if this cast only deals with integral->integral conversion.
1468bool CastInst::isIntegerCast() const {
1469 switch (getOpcode()) {
1470 default: return false;
1471 case Instruction::ZExt:
1472 case Instruction::SExt:
1473 case Instruction::Trunc:
1474 return true;
1475 case Instruction::BitCast:
Chris Lattner03c49532007-01-15 02:27:26 +00001476 return getOperand(0)->getType()->isInteger() && getType()->isInteger();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001477 }
Chris Lattnerb0b8ddd2006-09-18 04:54:57 +00001478}
1479
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001480bool CastInst::isLosslessCast() const {
1481 // Only BitCast can be lossless, exit fast if we're not BitCast
1482 if (getOpcode() != Instruction::BitCast)
1483 return false;
1484
1485 // Identity cast is always lossless
1486 const Type* SrcTy = getOperand(0)->getType();
1487 const Type* DstTy = getType();
1488 if (SrcTy == DstTy)
1489 return true;
1490
Reid Spencer8d9336d2006-12-31 05:26:44 +00001491 // Pointer to pointer is always lossless.
1492 if (isa<PointerType>(SrcTy))
1493 return isa<PointerType>(DstTy);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001494 return false; // Other types have no identity values
1495}
1496
1497/// This function determines if the CastInst does not require any bits to be
1498/// changed in order to effect the cast. Essentially, it identifies cases where
1499/// no code gen is necessary for the cast, hence the name no-op cast. For
1500/// example, the following are all no-op casts:
1501/// # bitcast uint %X, int
1502/// # bitcast uint* %x, sbyte*
1503/// # bitcast packed< 2 x int > %x, packed< 4 x short>
1504/// # ptrtoint uint* %x, uint ; on 32-bit plaforms only
1505/// @brief Determine if a cast is a no-op.
1506bool CastInst::isNoopCast(const Type *IntPtrTy) const {
1507 switch (getOpcode()) {
1508 default:
1509 assert(!"Invalid CastOp");
1510 case Instruction::Trunc:
1511 case Instruction::ZExt:
1512 case Instruction::SExt:
1513 case Instruction::FPTrunc:
1514 case Instruction::FPExt:
1515 case Instruction::UIToFP:
1516 case Instruction::SIToFP:
1517 case Instruction::FPToUI:
1518 case Instruction::FPToSI:
1519 return false; // These always modify bits
1520 case Instruction::BitCast:
1521 return true; // BitCast never modifies bits.
1522 case Instruction::PtrToInt:
1523 return IntPtrTy->getPrimitiveSizeInBits() ==
1524 getType()->getPrimitiveSizeInBits();
1525 case Instruction::IntToPtr:
1526 return IntPtrTy->getPrimitiveSizeInBits() ==
1527 getOperand(0)->getType()->getPrimitiveSizeInBits();
1528 }
1529}
1530
1531/// This function determines if a pair of casts can be eliminated and what
1532/// opcode should be used in the elimination. This assumes that there are two
1533/// instructions like this:
1534/// * %F = firstOpcode SrcTy %x to MidTy
1535/// * %S = secondOpcode MidTy %F to DstTy
1536/// The function returns a resultOpcode so these two casts can be replaced with:
1537/// * %Replacement = resultOpcode %SrcTy %x to DstTy
1538/// If no such cast is permited, the function returns 0.
1539unsigned CastInst::isEliminableCastPair(
1540 Instruction::CastOps firstOp, Instruction::CastOps secondOp,
1541 const Type *SrcTy, const Type *MidTy, const Type *DstTy, const Type *IntPtrTy)
1542{
1543 // Define the 144 possibilities for these two cast instructions. The values
1544 // in this matrix determine what to do in a given situation and select the
1545 // case in the switch below. The rows correspond to firstOp, the columns
1546 // correspond to secondOp. In looking at the table below, keep in mind
1547 // the following cast properties:
1548 //
1549 // Size Compare Source Destination
1550 // Operator Src ? Size Type Sign Type Sign
1551 // -------- ------------ ------------------- ---------------------
1552 // TRUNC > Integer Any Integral Any
1553 // ZEXT < Integral Unsigned Integer Any
1554 // SEXT < Integral Signed Integer Any
1555 // FPTOUI n/a FloatPt n/a Integral Unsigned
1556 // FPTOSI n/a FloatPt n/a Integral Signed
1557 // UITOFP n/a Integral Unsigned FloatPt n/a
1558 // SITOFP n/a Integral Signed FloatPt n/a
1559 // FPTRUNC > FloatPt n/a FloatPt n/a
1560 // FPEXT < FloatPt n/a FloatPt n/a
1561 // PTRTOINT n/a Pointer n/a Integral Unsigned
1562 // INTTOPTR n/a Integral Unsigned Pointer n/a
1563 // BITCONVERT = FirstClass n/a FirstClass n/a
Chris Lattner6f6b4972006-12-05 23:43:59 +00001564 //
1565 // NOTE: some transforms are safe, but we consider them to be non-profitable.
1566 // For example, we could merge "fptoui double to uint" + "zext uint to ulong",
1567 // into "fptoui double to ulong", but this loses information about the range
1568 // of the produced value (we no longer know the top-part is all zeros).
1569 // Further this conversion is often much more expensive for typical hardware,
1570 // and causes issues when building libgcc. We disallow fptosi+sext for the
1571 // same reason.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001572 const unsigned numCastOps =
1573 Instruction::CastOpsEnd - Instruction::CastOpsBegin;
1574 static const uint8_t CastResults[numCastOps][numCastOps] = {
1575 // T F F U S F F P I B -+
1576 // R Z S P P I I T P 2 N T |
1577 // U E E 2 2 2 2 R E I T C +- secondOp
1578 // N X X U S F F N X N 2 V |
1579 // C T T I I P P C T T P T -+
1580 { 1, 0, 0,99,99, 0, 0,99,99,99, 0, 3 }, // Trunc -+
1581 { 8, 1, 9,99,99, 2, 0,99,99,99, 2, 3 }, // ZExt |
1582 { 8, 0, 1,99,99, 0, 2,99,99,99, 0, 3 }, // SExt |
Chris Lattner6f6b4972006-12-05 23:43:59 +00001583 { 0, 0, 0,99,99, 0, 0,99,99,99, 0, 3 }, // FPToUI |
1584 { 0, 0, 0,99,99, 0, 0,99,99,99, 0, 3 }, // FPToSI |
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001585 { 99,99,99, 0, 0,99,99, 0, 0,99,99, 4 }, // UIToFP +- firstOp
1586 { 99,99,99, 0, 0,99,99, 0, 0,99,99, 4 }, // SIToFP |
1587 { 99,99,99, 0, 0,99,99, 1, 0,99,99, 4 }, // FPTrunc |
1588 { 99,99,99, 2, 2,99,99,10, 2,99,99, 4 }, // FPExt |
1589 { 1, 0, 0,99,99, 0, 0,99,99,99, 7, 3 }, // PtrToInt |
1590 { 99,99,99,99,99,99,99,99,99,13,99,12 }, // IntToPtr |
1591 { 5, 5, 5, 6, 6, 5, 5, 6, 6,11, 5, 1 }, // BitCast -+
1592 };
1593
1594 int ElimCase = CastResults[firstOp-Instruction::CastOpsBegin]
1595 [secondOp-Instruction::CastOpsBegin];
1596 switch (ElimCase) {
1597 case 0:
1598 // categorically disallowed
1599 return 0;
1600 case 1:
1601 // allowed, use first cast's opcode
1602 return firstOp;
1603 case 2:
1604 // allowed, use second cast's opcode
1605 return secondOp;
1606 case 3:
1607 // no-op cast in second op implies firstOp as long as the DestTy
1608 // is integer
Chris Lattner03c49532007-01-15 02:27:26 +00001609 if (DstTy->isInteger())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001610 return firstOp;
1611 return 0;
1612 case 4:
1613 // no-op cast in second op implies firstOp as long as the DestTy
1614 // is floating point
1615 if (DstTy->isFloatingPoint())
1616 return firstOp;
1617 return 0;
1618 case 5:
1619 // no-op cast in first op implies secondOp as long as the SrcTy
1620 // is an integer
Chris Lattner03c49532007-01-15 02:27:26 +00001621 if (SrcTy->isInteger())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001622 return secondOp;
1623 return 0;
1624 case 6:
1625 // no-op cast in first op implies secondOp as long as the SrcTy
1626 // is a floating point
1627 if (SrcTy->isFloatingPoint())
1628 return secondOp;
1629 return 0;
1630 case 7: {
1631 // ptrtoint, inttoptr -> bitcast (ptr -> ptr) if int size is >= ptr size
1632 unsigned PtrSize = IntPtrTy->getPrimitiveSizeInBits();
1633 unsigned MidSize = MidTy->getPrimitiveSizeInBits();
1634 if (MidSize >= PtrSize)
1635 return Instruction::BitCast;
1636 return 0;
1637 }
1638 case 8: {
1639 // ext, trunc -> bitcast, if the SrcTy and DstTy are same size
1640 // ext, trunc -> ext, if sizeof(SrcTy) < sizeof(DstTy)
1641 // ext, trunc -> trunc, if sizeof(SrcTy) > sizeof(DstTy)
1642 unsigned SrcSize = SrcTy->getPrimitiveSizeInBits();
1643 unsigned DstSize = DstTy->getPrimitiveSizeInBits();
1644 if (SrcSize == DstSize)
1645 return Instruction::BitCast;
1646 else if (SrcSize < DstSize)
1647 return firstOp;
1648 return secondOp;
1649 }
1650 case 9: // zext, sext -> zext, because sext can't sign extend after zext
1651 return Instruction::ZExt;
1652 case 10:
1653 // fpext followed by ftrunc is allowed if the bit size returned to is
1654 // the same as the original, in which case its just a bitcast
1655 if (SrcTy == DstTy)
1656 return Instruction::BitCast;
1657 return 0; // If the types are not the same we can't eliminate it.
1658 case 11:
1659 // bitcast followed by ptrtoint is allowed as long as the bitcast
1660 // is a pointer to pointer cast.
1661 if (isa<PointerType>(SrcTy) && isa<PointerType>(MidTy))
1662 return secondOp;
1663 return 0;
1664 case 12:
1665 // inttoptr, bitcast -> intptr if bitcast is a ptr to ptr cast
1666 if (isa<PointerType>(MidTy) && isa<PointerType>(DstTy))
1667 return firstOp;
1668 return 0;
1669 case 13: {
1670 // inttoptr, ptrtoint -> bitcast if SrcSize<=PtrSize and SrcSize==DstSize
1671 unsigned PtrSize = IntPtrTy->getPrimitiveSizeInBits();
1672 unsigned SrcSize = SrcTy->getPrimitiveSizeInBits();
1673 unsigned DstSize = DstTy->getPrimitiveSizeInBits();
1674 if (SrcSize <= PtrSize && SrcSize == DstSize)
1675 return Instruction::BitCast;
1676 return 0;
1677 }
1678 case 99:
1679 // cast combination can't happen (error in input). This is for all cases
1680 // where the MidTy is not the same for the two cast instructions.
1681 assert(!"Invalid Cast Combination");
1682 return 0;
1683 default:
1684 assert(!"Error in CastResults table!!!");
1685 return 0;
1686 }
1687 return 0;
1688}
1689
1690CastInst *CastInst::create(Instruction::CastOps op, Value *S, const Type *Ty,
1691 const std::string &Name, Instruction *InsertBefore) {
1692 // Construct and return the appropriate CastInst subclass
1693 switch (op) {
1694 case Trunc: return new TruncInst (S, Ty, Name, InsertBefore);
1695 case ZExt: return new ZExtInst (S, Ty, Name, InsertBefore);
1696 case SExt: return new SExtInst (S, Ty, Name, InsertBefore);
1697 case FPTrunc: return new FPTruncInst (S, Ty, Name, InsertBefore);
1698 case FPExt: return new FPExtInst (S, Ty, Name, InsertBefore);
1699 case UIToFP: return new UIToFPInst (S, Ty, Name, InsertBefore);
1700 case SIToFP: return new SIToFPInst (S, Ty, Name, InsertBefore);
1701 case FPToUI: return new FPToUIInst (S, Ty, Name, InsertBefore);
1702 case FPToSI: return new FPToSIInst (S, Ty, Name, InsertBefore);
1703 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertBefore);
1704 case IntToPtr: return new IntToPtrInst (S, Ty, Name, InsertBefore);
1705 case BitCast: return new BitCastInst (S, Ty, Name, InsertBefore);
1706 default:
1707 assert(!"Invalid opcode provided");
1708 }
1709 return 0;
1710}
1711
1712CastInst *CastInst::create(Instruction::CastOps op, Value *S, const Type *Ty,
1713 const std::string &Name, BasicBlock *InsertAtEnd) {
1714 // Construct and return the appropriate CastInst subclass
1715 switch (op) {
1716 case Trunc: return new TruncInst (S, Ty, Name, InsertAtEnd);
1717 case ZExt: return new ZExtInst (S, Ty, Name, InsertAtEnd);
1718 case SExt: return new SExtInst (S, Ty, Name, InsertAtEnd);
1719 case FPTrunc: return new FPTruncInst (S, Ty, Name, InsertAtEnd);
1720 case FPExt: return new FPExtInst (S, Ty, Name, InsertAtEnd);
1721 case UIToFP: return new UIToFPInst (S, Ty, Name, InsertAtEnd);
1722 case SIToFP: return new SIToFPInst (S, Ty, Name, InsertAtEnd);
1723 case FPToUI: return new FPToUIInst (S, Ty, Name, InsertAtEnd);
1724 case FPToSI: return new FPToSIInst (S, Ty, Name, InsertAtEnd);
1725 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertAtEnd);
1726 case IntToPtr: return new IntToPtrInst (S, Ty, Name, InsertAtEnd);
1727 case BitCast: return new BitCastInst (S, Ty, Name, InsertAtEnd);
1728 default:
1729 assert(!"Invalid opcode provided");
1730 }
1731 return 0;
1732}
1733
Reid Spencer5c140882006-12-04 20:17:56 +00001734CastInst *CastInst::createZExtOrBitCast(Value *S, const Type *Ty,
1735 const std::string &Name,
1736 Instruction *InsertBefore) {
1737 if (S->getType()->getPrimitiveSizeInBits() == Ty->getPrimitiveSizeInBits())
1738 return create(Instruction::BitCast, S, Ty, Name, InsertBefore);
1739 return create(Instruction::ZExt, S, Ty, Name, InsertBefore);
1740}
1741
1742CastInst *CastInst::createZExtOrBitCast(Value *S, const Type *Ty,
1743 const std::string &Name,
1744 BasicBlock *InsertAtEnd) {
1745 if (S->getType()->getPrimitiveSizeInBits() == Ty->getPrimitiveSizeInBits())
1746 return create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
1747 return create(Instruction::ZExt, S, Ty, Name, InsertAtEnd);
1748}
1749
1750CastInst *CastInst::createSExtOrBitCast(Value *S, const Type *Ty,
1751 const std::string &Name,
1752 Instruction *InsertBefore) {
1753 if (S->getType()->getPrimitiveSizeInBits() == Ty->getPrimitiveSizeInBits())
1754 return create(Instruction::BitCast, S, Ty, Name, InsertBefore);
1755 return create(Instruction::SExt, S, Ty, Name, InsertBefore);
1756}
1757
1758CastInst *CastInst::createSExtOrBitCast(Value *S, const Type *Ty,
1759 const std::string &Name,
1760 BasicBlock *InsertAtEnd) {
1761 if (S->getType()->getPrimitiveSizeInBits() == Ty->getPrimitiveSizeInBits())
1762 return create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
1763 return create(Instruction::SExt, S, Ty, Name, InsertAtEnd);
1764}
1765
1766CastInst *CastInst::createTruncOrBitCast(Value *S, const Type *Ty,
1767 const std::string &Name,
1768 Instruction *InsertBefore) {
1769 if (S->getType()->getPrimitiveSizeInBits() == Ty->getPrimitiveSizeInBits())
1770 return create(Instruction::BitCast, S, Ty, Name, InsertBefore);
1771 return create(Instruction::Trunc, S, Ty, Name, InsertBefore);
1772}
1773
1774CastInst *CastInst::createTruncOrBitCast(Value *S, const Type *Ty,
1775 const std::string &Name,
1776 BasicBlock *InsertAtEnd) {
1777 if (S->getType()->getPrimitiveSizeInBits() == Ty->getPrimitiveSizeInBits())
1778 return create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
1779 return create(Instruction::Trunc, S, Ty, Name, InsertAtEnd);
1780}
1781
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00001782CastInst *CastInst::createPointerCast(Value *S, const Type *Ty,
1783 const std::string &Name,
1784 BasicBlock *InsertAtEnd) {
1785 assert(isa<PointerType>(S->getType()) && "Invalid cast");
Chris Lattner03c49532007-01-15 02:27:26 +00001786 assert((Ty->isInteger() || isa<PointerType>(Ty)) &&
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00001787 "Invalid cast");
1788
Chris Lattner03c49532007-01-15 02:27:26 +00001789 if (Ty->isInteger())
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00001790 return create(Instruction::PtrToInt, S, Ty, Name, InsertAtEnd);
1791 return create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
1792}
1793
1794/// @brief Create a BitCast or a PtrToInt cast instruction
1795CastInst *CastInst::createPointerCast(Value *S, const Type *Ty,
1796 const std::string &Name,
1797 Instruction *InsertBefore) {
1798 assert(isa<PointerType>(S->getType()) && "Invalid cast");
Chris Lattner03c49532007-01-15 02:27:26 +00001799 assert((Ty->isInteger() || isa<PointerType>(Ty)) &&
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00001800 "Invalid cast");
1801
Chris Lattner03c49532007-01-15 02:27:26 +00001802 if (Ty->isInteger())
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00001803 return create(Instruction::PtrToInt, S, Ty, Name, InsertBefore);
1804 return create(Instruction::BitCast, S, Ty, Name, InsertBefore);
1805}
1806
Reid Spencer7e933472006-12-12 00:49:44 +00001807CastInst *CastInst::createIntegerCast(Value *C, const Type *Ty,
1808 bool isSigned, const std::string &Name,
1809 Instruction *InsertBefore) {
Chris Lattner03c49532007-01-15 02:27:26 +00001810 assert(C->getType()->isInteger() && Ty->isInteger() && "Invalid cast");
Reid Spencer7e933472006-12-12 00:49:44 +00001811 unsigned SrcBits = C->getType()->getPrimitiveSizeInBits();
1812 unsigned DstBits = Ty->getPrimitiveSizeInBits();
1813 Instruction::CastOps opcode =
1814 (SrcBits == DstBits ? Instruction::BitCast :
1815 (SrcBits > DstBits ? Instruction::Trunc :
1816 (isSigned ? Instruction::SExt : Instruction::ZExt)));
1817 return create(opcode, C, Ty, Name, InsertBefore);
1818}
1819
1820CastInst *CastInst::createIntegerCast(Value *C, const Type *Ty,
1821 bool isSigned, const std::string &Name,
1822 BasicBlock *InsertAtEnd) {
Chris Lattner03c49532007-01-15 02:27:26 +00001823 assert(C->getType()->isInteger() && Ty->isInteger() && "Invalid cast");
Reid Spencer7e933472006-12-12 00:49:44 +00001824 unsigned SrcBits = C->getType()->getPrimitiveSizeInBits();
1825 unsigned DstBits = Ty->getPrimitiveSizeInBits();
1826 Instruction::CastOps opcode =
1827 (SrcBits == DstBits ? Instruction::BitCast :
1828 (SrcBits > DstBits ? Instruction::Trunc :
1829 (isSigned ? Instruction::SExt : Instruction::ZExt)));
1830 return create(opcode, C, Ty, Name, InsertAtEnd);
1831}
1832
1833CastInst *CastInst::createFPCast(Value *C, const Type *Ty,
1834 const std::string &Name,
1835 Instruction *InsertBefore) {
1836 assert(C->getType()->isFloatingPoint() && Ty->isFloatingPoint() &&
1837 "Invalid cast");
1838 unsigned SrcBits = C->getType()->getPrimitiveSizeInBits();
1839 unsigned DstBits = Ty->getPrimitiveSizeInBits();
1840 Instruction::CastOps opcode =
1841 (SrcBits == DstBits ? Instruction::BitCast :
1842 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt));
1843 return create(opcode, C, Ty, Name, InsertBefore);
1844}
1845
1846CastInst *CastInst::createFPCast(Value *C, const Type *Ty,
1847 const std::string &Name,
1848 BasicBlock *InsertAtEnd) {
1849 assert(C->getType()->isFloatingPoint() && Ty->isFloatingPoint() &&
1850 "Invalid cast");
1851 unsigned SrcBits = C->getType()->getPrimitiveSizeInBits();
1852 unsigned DstBits = Ty->getPrimitiveSizeInBits();
1853 Instruction::CastOps opcode =
1854 (SrcBits == DstBits ? Instruction::BitCast :
1855 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt));
1856 return create(opcode, C, Ty, Name, InsertAtEnd);
1857}
1858
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001859// Provide a way to get a "cast" where the cast opcode is inferred from the
1860// types and size of the operand. This, basically, is a parallel of the
Reid Spencer00e5e0e2007-01-17 02:46:11 +00001861// logic in the castIsValid function below. This axiom should hold:
1862// castIsValid( getCastOpcode(Val, Ty), Val, Ty)
1863// should not assert in castIsValid. In other words, this produces a "correct"
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001864// casting opcode for the arguments passed to it.
1865Instruction::CastOps
Reid Spencerc4dacf22006-12-04 02:43:42 +00001866CastInst::getCastOpcode(
1867 const Value *Src, bool SrcIsSigned, const Type *DestTy, bool DestIsSigned) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001868 // Get the bit sizes, we'll need these
1869 const Type *SrcTy = Src->getType();
1870 unsigned SrcBits = SrcTy->getPrimitiveSizeInBits(); // 0 for ptr/packed
1871 unsigned DestBits = DestTy->getPrimitiveSizeInBits(); // 0 for ptr/packed
1872
1873 // Run through the possibilities ...
Chris Lattner03c49532007-01-15 02:27:26 +00001874 if (DestTy->isInteger()) { // Casting to integral
1875 if (SrcTy->isInteger()) { // Casting from integral
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001876 if (DestBits < SrcBits)
1877 return Trunc; // int -> smaller int
1878 else if (DestBits > SrcBits) { // its an extension
Reid Spencerc4dacf22006-12-04 02:43:42 +00001879 if (SrcIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001880 return SExt; // signed -> SEXT
1881 else
1882 return ZExt; // unsigned -> ZEXT
1883 } else {
1884 return BitCast; // Same size, No-op cast
1885 }
1886 } else if (SrcTy->isFloatingPoint()) { // Casting from floating pt
Reid Spencerc4dacf22006-12-04 02:43:42 +00001887 if (DestIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001888 return FPToSI; // FP -> sint
1889 else
1890 return FPToUI; // FP -> uint
Reid Spencerd84d35b2007-02-15 02:26:10 +00001891 } else if (const VectorType *PTy = dyn_cast<VectorType>(SrcTy)) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001892 assert(DestBits == PTy->getBitWidth() &&
1893 "Casting packed to integer of different width");
1894 return BitCast; // Same size, no-op cast
1895 } else {
1896 assert(isa<PointerType>(SrcTy) &&
1897 "Casting from a value that is not first-class type");
1898 return PtrToInt; // ptr -> int
1899 }
1900 } else if (DestTy->isFloatingPoint()) { // Casting to floating pt
Chris Lattner03c49532007-01-15 02:27:26 +00001901 if (SrcTy->isInteger()) { // Casting from integral
Reid Spencerc4dacf22006-12-04 02:43:42 +00001902 if (SrcIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001903 return SIToFP; // sint -> FP
1904 else
1905 return UIToFP; // uint -> FP
1906 } else if (SrcTy->isFloatingPoint()) { // Casting from floating pt
1907 if (DestBits < SrcBits) {
1908 return FPTrunc; // FP -> smaller FP
1909 } else if (DestBits > SrcBits) {
1910 return FPExt; // FP -> larger FP
1911 } else {
1912 return BitCast; // same size, no-op cast
1913 }
Reid Spencerd84d35b2007-02-15 02:26:10 +00001914 } else if (const VectorType *PTy = dyn_cast<VectorType>(SrcTy)) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001915 assert(DestBits == PTy->getBitWidth() &&
1916 "Casting packed to floating point of different width");
1917 return BitCast; // same size, no-op cast
1918 } else {
1919 assert(0 && "Casting pointer or non-first class to float");
1920 }
Reid Spencerd84d35b2007-02-15 02:26:10 +00001921 } else if (const VectorType *DestPTy = dyn_cast<VectorType>(DestTy)) {
1922 if (const VectorType *SrcPTy = dyn_cast<VectorType>(SrcTy)) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001923 assert(DestPTy->getBitWidth() == SrcPTy->getBitWidth() &&
1924 "Casting packed to packed of different widths");
1925 return BitCast; // packed -> packed
1926 } else if (DestPTy->getBitWidth() == SrcBits) {
1927 return BitCast; // float/int -> packed
1928 } else {
1929 assert(!"Illegal cast to packed (wrong type or size)");
1930 }
1931 } else if (isa<PointerType>(DestTy)) {
1932 if (isa<PointerType>(SrcTy)) {
1933 return BitCast; // ptr -> ptr
Chris Lattner03c49532007-01-15 02:27:26 +00001934 } else if (SrcTy->isInteger()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001935 return IntToPtr; // int -> ptr
1936 } else {
1937 assert(!"Casting pointer to other than pointer or int");
1938 }
1939 } else {
1940 assert(!"Casting to type that is not first-class");
1941 }
1942
1943 // If we fall through to here we probably hit an assertion cast above
1944 // and assertions are not turned on. Anything we return is an error, so
1945 // BitCast is as good a choice as any.
1946 return BitCast;
1947}
1948
1949//===----------------------------------------------------------------------===//
1950// CastInst SubClass Constructors
1951//===----------------------------------------------------------------------===//
1952
1953/// Check that the construction parameters for a CastInst are correct. This
1954/// could be broken out into the separate constructors but it is useful to have
1955/// it in one place and to eliminate the redundant code for getting the sizes
1956/// of the types involved.
Reid Spencer00e5e0e2007-01-17 02:46:11 +00001957bool
1958CastInst::castIsValid(Instruction::CastOps op, Value *S, const Type *DstTy) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001959
1960 // Check for type sanity on the arguments
1961 const Type *SrcTy = S->getType();
1962 if (!SrcTy->isFirstClassType() || !DstTy->isFirstClassType())
1963 return false;
1964
1965 // Get the size of the types in bits, we'll need this later
1966 unsigned SrcBitSize = SrcTy->getPrimitiveSizeInBits();
1967 unsigned DstBitSize = DstTy->getPrimitiveSizeInBits();
1968
1969 // Switch on the opcode provided
1970 switch (op) {
1971 default: return false; // This is an input error
1972 case Instruction::Trunc:
Chris Lattner03c49532007-01-15 02:27:26 +00001973 return SrcTy->isInteger() && DstTy->isInteger()&& SrcBitSize > DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001974 case Instruction::ZExt:
Chris Lattner03c49532007-01-15 02:27:26 +00001975 return SrcTy->isInteger() && DstTy->isInteger()&& SrcBitSize < DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001976 case Instruction::SExt:
Chris Lattner03c49532007-01-15 02:27:26 +00001977 return SrcTy->isInteger() && DstTy->isInteger()&& SrcBitSize < DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001978 case Instruction::FPTrunc:
1979 return SrcTy->isFloatingPoint() && DstTy->isFloatingPoint() &&
1980 SrcBitSize > DstBitSize;
1981 case Instruction::FPExt:
1982 return SrcTy->isFloatingPoint() && DstTy->isFloatingPoint() &&
1983 SrcBitSize < DstBitSize;
1984 case Instruction::UIToFP:
Chris Lattner03c49532007-01-15 02:27:26 +00001985 return SrcTy->isInteger() && DstTy->isFloatingPoint();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001986 case Instruction::SIToFP:
Chris Lattner03c49532007-01-15 02:27:26 +00001987 return SrcTy->isInteger() && DstTy->isFloatingPoint();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001988 case Instruction::FPToUI:
Chris Lattner03c49532007-01-15 02:27:26 +00001989 return SrcTy->isFloatingPoint() && DstTy->isInteger();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001990 case Instruction::FPToSI:
Chris Lattner03c49532007-01-15 02:27:26 +00001991 return SrcTy->isFloatingPoint() && DstTy->isInteger();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001992 case Instruction::PtrToInt:
Chris Lattner03c49532007-01-15 02:27:26 +00001993 return isa<PointerType>(SrcTy) && DstTy->isInteger();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001994 case Instruction::IntToPtr:
Chris Lattner03c49532007-01-15 02:27:26 +00001995 return SrcTy->isInteger() && isa<PointerType>(DstTy);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001996 case Instruction::BitCast:
1997 // BitCast implies a no-op cast of type only. No bits change.
1998 // However, you can't cast pointers to anything but pointers.
1999 if (isa<PointerType>(SrcTy) != isa<PointerType>(DstTy))
2000 return false;
2001
2002 // Now we know we're not dealing with a pointer/non-poiner mismatch. In all
2003 // these cases, the cast is okay if the source and destination bit widths
2004 // are identical.
2005 return SrcBitSize == DstBitSize;
2006 }
2007}
2008
2009TruncInst::TruncInst(
2010 Value *S, const Type *Ty, const std::string &Name, Instruction *InsertBefore
2011) : CastInst(Ty, Trunc, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002012 assert(castIsValid(getOpcode(), S, Ty) && "Illegal Trunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002013}
2014
2015TruncInst::TruncInst(
2016 Value *S, const Type *Ty, const std::string &Name, BasicBlock *InsertAtEnd
2017) : CastInst(Ty, Trunc, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002018 assert(castIsValid(getOpcode(), S, Ty) && "Illegal Trunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002019}
2020
2021ZExtInst::ZExtInst(
2022 Value *S, const Type *Ty, const std::string &Name, Instruction *InsertBefore
2023) : CastInst(Ty, ZExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002024 assert(castIsValid(getOpcode(), S, Ty) && "Illegal ZExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002025}
2026
2027ZExtInst::ZExtInst(
2028 Value *S, const Type *Ty, const std::string &Name, BasicBlock *InsertAtEnd
2029) : CastInst(Ty, ZExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002030 assert(castIsValid(getOpcode(), S, Ty) && "Illegal ZExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002031}
2032SExtInst::SExtInst(
2033 Value *S, const Type *Ty, const std::string &Name, Instruction *InsertBefore
2034) : CastInst(Ty, SExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002035 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002036}
2037
Jeff Cohencc08c832006-12-02 02:22:01 +00002038SExtInst::SExtInst(
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002039 Value *S, const Type *Ty, const std::string &Name, BasicBlock *InsertAtEnd
2040) : CastInst(Ty, SExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002041 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002042}
2043
2044FPTruncInst::FPTruncInst(
2045 Value *S, const Type *Ty, const std::string &Name, Instruction *InsertBefore
2046) : CastInst(Ty, FPTrunc, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002047 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPTrunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002048}
2049
2050FPTruncInst::FPTruncInst(
2051 Value *S, const Type *Ty, const std::string &Name, BasicBlock *InsertAtEnd
2052) : CastInst(Ty, FPTrunc, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002053 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPTrunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002054}
2055
2056FPExtInst::FPExtInst(
2057 Value *S, const Type *Ty, const std::string &Name, Instruction *InsertBefore
2058) : CastInst(Ty, FPExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002059 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002060}
2061
2062FPExtInst::FPExtInst(
2063 Value *S, const Type *Ty, const std::string &Name, BasicBlock *InsertAtEnd
2064) : CastInst(Ty, FPExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002065 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002066}
2067
2068UIToFPInst::UIToFPInst(
2069 Value *S, const Type *Ty, const std::string &Name, Instruction *InsertBefore
2070) : CastInst(Ty, UIToFP, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002071 assert(castIsValid(getOpcode(), S, Ty) && "Illegal UIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002072}
2073
2074UIToFPInst::UIToFPInst(
2075 Value *S, const Type *Ty, const std::string &Name, BasicBlock *InsertAtEnd
2076) : CastInst(Ty, UIToFP, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002077 assert(castIsValid(getOpcode(), S, Ty) && "Illegal UIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002078}
2079
2080SIToFPInst::SIToFPInst(
2081 Value *S, const Type *Ty, const std::string &Name, Instruction *InsertBefore
2082) : CastInst(Ty, SIToFP, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002083 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002084}
2085
2086SIToFPInst::SIToFPInst(
2087 Value *S, const Type *Ty, const std::string &Name, BasicBlock *InsertAtEnd
2088) : CastInst(Ty, SIToFP, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002089 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002090}
2091
2092FPToUIInst::FPToUIInst(
2093 Value *S, const Type *Ty, const std::string &Name, Instruction *InsertBefore
2094) : CastInst(Ty, FPToUI, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002095 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToUI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002096}
2097
2098FPToUIInst::FPToUIInst(
2099 Value *S, const Type *Ty, const std::string &Name, BasicBlock *InsertAtEnd
2100) : CastInst(Ty, FPToUI, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002101 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToUI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002102}
2103
2104FPToSIInst::FPToSIInst(
2105 Value *S, const Type *Ty, const std::string &Name, Instruction *InsertBefore
2106) : CastInst(Ty, FPToSI, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002107 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToSI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002108}
2109
2110FPToSIInst::FPToSIInst(
2111 Value *S, const Type *Ty, const std::string &Name, BasicBlock *InsertAtEnd
2112) : CastInst(Ty, FPToSI, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002113 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToSI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002114}
2115
2116PtrToIntInst::PtrToIntInst(
2117 Value *S, const Type *Ty, const std::string &Name, Instruction *InsertBefore
2118) : CastInst(Ty, PtrToInt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002119 assert(castIsValid(getOpcode(), S, Ty) && "Illegal PtrToInt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002120}
2121
2122PtrToIntInst::PtrToIntInst(
2123 Value *S, const Type *Ty, const std::string &Name, BasicBlock *InsertAtEnd
2124) : CastInst(Ty, PtrToInt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002125 assert(castIsValid(getOpcode(), S, Ty) && "Illegal PtrToInt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002126}
2127
2128IntToPtrInst::IntToPtrInst(
2129 Value *S, const Type *Ty, const std::string &Name, Instruction *InsertBefore
2130) : CastInst(Ty, IntToPtr, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002131 assert(castIsValid(getOpcode(), S, Ty) && "Illegal IntToPtr");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002132}
2133
2134IntToPtrInst::IntToPtrInst(
2135 Value *S, const Type *Ty, const std::string &Name, BasicBlock *InsertAtEnd
2136) : CastInst(Ty, IntToPtr, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002137 assert(castIsValid(getOpcode(), S, Ty) && "Illegal IntToPtr");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002138}
2139
2140BitCastInst::BitCastInst(
2141 Value *S, const Type *Ty, const std::string &Name, Instruction *InsertBefore
2142) : CastInst(Ty, BitCast, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002143 assert(castIsValid(getOpcode(), S, Ty) && "Illegal BitCast");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002144}
2145
2146BitCastInst::BitCastInst(
2147 Value *S, const Type *Ty, const std::string &Name, BasicBlock *InsertAtEnd
2148) : CastInst(Ty, BitCast, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002149 assert(castIsValid(getOpcode(), S, Ty) && "Illegal BitCast");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002150}
Chris Lattnerf16dc002006-09-17 19:29:56 +00002151
2152//===----------------------------------------------------------------------===//
Reid Spencerd9436b62006-11-20 01:22:35 +00002153// CmpInst Classes
2154//===----------------------------------------------------------------------===//
2155
2156CmpInst::CmpInst(OtherOps op, unsigned short predicate, Value *LHS, Value *RHS,
2157 const std::string &Name, Instruction *InsertBefore)
Chris Lattner2195fc42007-02-24 00:55:48 +00002158 : Instruction(Type::Int1Ty, op, Ops, 2, InsertBefore) {
Reid Spencerd9436b62006-11-20 01:22:35 +00002159 Ops[0].init(LHS, this);
2160 Ops[1].init(RHS, this);
2161 SubclassData = predicate;
Reid Spencer871a9ea2007-04-11 13:04:48 +00002162 setName(Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002163 if (op == Instruction::ICmp) {
2164 assert(predicate >= ICmpInst::FIRST_ICMP_PREDICATE &&
2165 predicate <= ICmpInst::LAST_ICMP_PREDICATE &&
2166 "Invalid ICmp predicate value");
2167 const Type* Op0Ty = getOperand(0)->getType();
2168 const Type* Op1Ty = getOperand(1)->getType();
2169 assert(Op0Ty == Op1Ty &&
2170 "Both operands to ICmp instruction are not of the same type!");
2171 // Check that the operands are the right type
Reid Spencer2eadb532007-01-21 00:29:26 +00002172 assert((Op0Ty->isInteger() || isa<PointerType>(Op0Ty)) &&
Reid Spencerd9436b62006-11-20 01:22:35 +00002173 "Invalid operand types for ICmp instruction");
2174 return;
2175 }
2176 assert(op == Instruction::FCmp && "Invalid CmpInst opcode");
2177 assert(predicate <= FCmpInst::LAST_FCMP_PREDICATE &&
2178 "Invalid FCmp predicate value");
2179 const Type* Op0Ty = getOperand(0)->getType();
2180 const Type* Op1Ty = getOperand(1)->getType();
2181 assert(Op0Ty == Op1Ty &&
2182 "Both operands to FCmp instruction are not of the same type!");
2183 // Check that the operands are the right type
Reid Spencer2eadb532007-01-21 00:29:26 +00002184 assert(Op0Ty->isFloatingPoint() &&
Reid Spencerd9436b62006-11-20 01:22:35 +00002185 "Invalid operand types for FCmp instruction");
2186}
2187
2188CmpInst::CmpInst(OtherOps op, unsigned short predicate, Value *LHS, Value *RHS,
2189 const std::string &Name, BasicBlock *InsertAtEnd)
Chris Lattner2195fc42007-02-24 00:55:48 +00002190 : Instruction(Type::Int1Ty, op, Ops, 2, InsertAtEnd) {
Reid Spencerd9436b62006-11-20 01:22:35 +00002191 Ops[0].init(LHS, this);
2192 Ops[1].init(RHS, this);
2193 SubclassData = predicate;
Reid Spencer871a9ea2007-04-11 13:04:48 +00002194 setName(Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002195 if (op == Instruction::ICmp) {
2196 assert(predicate >= ICmpInst::FIRST_ICMP_PREDICATE &&
2197 predicate <= ICmpInst::LAST_ICMP_PREDICATE &&
2198 "Invalid ICmp predicate value");
2199
2200 const Type* Op0Ty = getOperand(0)->getType();
2201 const Type* Op1Ty = getOperand(1)->getType();
2202 assert(Op0Ty == Op1Ty &&
2203 "Both operands to ICmp instruction are not of the same type!");
2204 // Check that the operands are the right type
Reid Spencer2eadb532007-01-21 00:29:26 +00002205 assert(Op0Ty->isInteger() || isa<PointerType>(Op0Ty) &&
Reid Spencerd9436b62006-11-20 01:22:35 +00002206 "Invalid operand types for ICmp instruction");
2207 return;
2208 }
2209 assert(op == Instruction::FCmp && "Invalid CmpInst opcode");
2210 assert(predicate <= FCmpInst::LAST_FCMP_PREDICATE &&
2211 "Invalid FCmp predicate value");
2212 const Type* Op0Ty = getOperand(0)->getType();
2213 const Type* Op1Ty = getOperand(1)->getType();
2214 assert(Op0Ty == Op1Ty &&
2215 "Both operands to FCmp instruction are not of the same type!");
2216 // Check that the operands are the right type
Reid Spencer2eadb532007-01-21 00:29:26 +00002217 assert(Op0Ty->isFloatingPoint() &&
Reid Spencerd9436b62006-11-20 01:22:35 +00002218 "Invalid operand types for FCmp instruction");
2219}
2220
2221CmpInst *
2222CmpInst::create(OtherOps Op, unsigned short predicate, Value *S1, Value *S2,
2223 const std::string &Name, Instruction *InsertBefore) {
2224 if (Op == Instruction::ICmp) {
2225 return new ICmpInst(ICmpInst::Predicate(predicate), S1, S2, Name,
2226 InsertBefore);
2227 }
2228 return new FCmpInst(FCmpInst::Predicate(predicate), S1, S2, Name,
2229 InsertBefore);
2230}
2231
2232CmpInst *
2233CmpInst::create(OtherOps Op, unsigned short predicate, Value *S1, Value *S2,
2234 const std::string &Name, BasicBlock *InsertAtEnd) {
2235 if (Op == Instruction::ICmp) {
2236 return new ICmpInst(ICmpInst::Predicate(predicate), S1, S2, Name,
2237 InsertAtEnd);
2238 }
2239 return new FCmpInst(FCmpInst::Predicate(predicate), S1, S2, Name,
2240 InsertAtEnd);
2241}
2242
2243void CmpInst::swapOperands() {
2244 if (ICmpInst *IC = dyn_cast<ICmpInst>(this))
2245 IC->swapOperands();
2246 else
2247 cast<FCmpInst>(this)->swapOperands();
2248}
2249
2250bool CmpInst::isCommutative() {
2251 if (ICmpInst *IC = dyn_cast<ICmpInst>(this))
2252 return IC->isCommutative();
2253 return cast<FCmpInst>(this)->isCommutative();
2254}
2255
2256bool CmpInst::isEquality() {
2257 if (ICmpInst *IC = dyn_cast<ICmpInst>(this))
2258 return IC->isEquality();
2259 return cast<FCmpInst>(this)->isEquality();
2260}
2261
2262
2263ICmpInst::Predicate ICmpInst::getInversePredicate(Predicate pred) {
2264 switch (pred) {
2265 default:
2266 assert(!"Unknown icmp predicate!");
2267 case ICMP_EQ: return ICMP_NE;
2268 case ICMP_NE: return ICMP_EQ;
2269 case ICMP_UGT: return ICMP_ULE;
2270 case ICMP_ULT: return ICMP_UGE;
2271 case ICMP_UGE: return ICMP_ULT;
2272 case ICMP_ULE: return ICMP_UGT;
2273 case ICMP_SGT: return ICMP_SLE;
2274 case ICMP_SLT: return ICMP_SGE;
2275 case ICMP_SGE: return ICMP_SLT;
2276 case ICMP_SLE: return ICMP_SGT;
2277 }
2278}
2279
2280ICmpInst::Predicate ICmpInst::getSwappedPredicate(Predicate pred) {
2281 switch (pred) {
Reid Spencer266e42b2006-12-23 06:05:41 +00002282 default: assert(! "Unknown icmp predicate!");
Reid Spencerd9436b62006-11-20 01:22:35 +00002283 case ICMP_EQ: case ICMP_NE:
2284 return pred;
2285 case ICMP_SGT: return ICMP_SLT;
2286 case ICMP_SLT: return ICMP_SGT;
2287 case ICMP_SGE: return ICMP_SLE;
2288 case ICMP_SLE: return ICMP_SGE;
2289 case ICMP_UGT: return ICMP_ULT;
2290 case ICMP_ULT: return ICMP_UGT;
2291 case ICMP_UGE: return ICMP_ULE;
2292 case ICMP_ULE: return ICMP_UGE;
2293 }
2294}
2295
Reid Spencer266e42b2006-12-23 06:05:41 +00002296ICmpInst::Predicate ICmpInst::getSignedPredicate(Predicate pred) {
2297 switch (pred) {
2298 default: assert(! "Unknown icmp predicate!");
2299 case ICMP_EQ: case ICMP_NE:
2300 case ICMP_SGT: case ICMP_SLT: case ICMP_SGE: case ICMP_SLE:
2301 return pred;
2302 case ICMP_UGT: return ICMP_SGT;
2303 case ICMP_ULT: return ICMP_SLT;
2304 case ICMP_UGE: return ICMP_SGE;
2305 case ICMP_ULE: return ICMP_SLE;
2306 }
2307}
2308
2309bool ICmpInst::isSignedPredicate(Predicate pred) {
2310 switch (pred) {
2311 default: assert(! "Unknown icmp predicate!");
2312 case ICMP_SGT: case ICMP_SLT: case ICMP_SGE: case ICMP_SLE:
2313 return true;
2314 case ICMP_EQ: case ICMP_NE: case ICMP_UGT: case ICMP_ULT:
2315 case ICMP_UGE: case ICMP_ULE:
2316 return false;
2317 }
2318}
2319
Reid Spencer0286bc12007-02-28 22:00:54 +00002320/// Initialize a set of values that all satisfy the condition with C.
2321///
2322ConstantRange
2323ICmpInst::makeConstantRange(Predicate pred, const APInt &C) {
2324 APInt Lower(C);
2325 APInt Upper(C);
2326 uint32_t BitWidth = C.getBitWidth();
2327 switch (pred) {
2328 default: assert(0 && "Invalid ICmp opcode to ConstantRange ctor!");
2329 case ICmpInst::ICMP_EQ: Upper++; break;
2330 case ICmpInst::ICMP_NE: Lower++; break;
2331 case ICmpInst::ICMP_ULT: Lower = APInt::getMinValue(BitWidth); break;
2332 case ICmpInst::ICMP_SLT: Lower = APInt::getSignedMinValue(BitWidth); break;
2333 case ICmpInst::ICMP_UGT:
2334 Lower++; Upper = APInt::getMinValue(BitWidth); // Min = Next(Max)
2335 break;
2336 case ICmpInst::ICMP_SGT:
2337 Lower++; Upper = APInt::getSignedMinValue(BitWidth); // Min = Next(Max)
2338 break;
2339 case ICmpInst::ICMP_ULE:
2340 Lower = APInt::getMinValue(BitWidth); Upper++;
2341 break;
2342 case ICmpInst::ICMP_SLE:
2343 Lower = APInt::getSignedMinValue(BitWidth); Upper++;
2344 break;
2345 case ICmpInst::ICMP_UGE:
2346 Upper = APInt::getMinValue(BitWidth); // Min = Next(Max)
2347 break;
2348 case ICmpInst::ICMP_SGE:
2349 Upper = APInt::getSignedMinValue(BitWidth); // Min = Next(Max)
2350 break;
2351 }
2352 return ConstantRange(Lower, Upper);
2353}
2354
Reid Spencerd9436b62006-11-20 01:22:35 +00002355FCmpInst::Predicate FCmpInst::getInversePredicate(Predicate pred) {
2356 switch (pred) {
2357 default:
2358 assert(!"Unknown icmp predicate!");
2359 case FCMP_OEQ: return FCMP_UNE;
2360 case FCMP_ONE: return FCMP_UEQ;
2361 case FCMP_OGT: return FCMP_ULE;
2362 case FCMP_OLT: return FCMP_UGE;
2363 case FCMP_OGE: return FCMP_ULT;
2364 case FCMP_OLE: return FCMP_UGT;
2365 case FCMP_UEQ: return FCMP_ONE;
2366 case FCMP_UNE: return FCMP_OEQ;
2367 case FCMP_UGT: return FCMP_OLE;
2368 case FCMP_ULT: return FCMP_OGE;
2369 case FCMP_UGE: return FCMP_OLT;
2370 case FCMP_ULE: return FCMP_OGT;
2371 case FCMP_ORD: return FCMP_UNO;
2372 case FCMP_UNO: return FCMP_ORD;
2373 case FCMP_TRUE: return FCMP_FALSE;
2374 case FCMP_FALSE: return FCMP_TRUE;
2375 }
2376}
2377
2378FCmpInst::Predicate FCmpInst::getSwappedPredicate(Predicate pred) {
2379 switch (pred) {
Reid Spencer266e42b2006-12-23 06:05:41 +00002380 default: assert(!"Unknown fcmp predicate!");
Reid Spencerd9436b62006-11-20 01:22:35 +00002381 case FCMP_FALSE: case FCMP_TRUE:
2382 case FCMP_OEQ: case FCMP_ONE:
2383 case FCMP_UEQ: case FCMP_UNE:
2384 case FCMP_ORD: case FCMP_UNO:
2385 return pred;
2386 case FCMP_OGT: return FCMP_OLT;
2387 case FCMP_OLT: return FCMP_OGT;
2388 case FCMP_OGE: return FCMP_OLE;
2389 case FCMP_OLE: return FCMP_OGE;
2390 case FCMP_UGT: return FCMP_ULT;
2391 case FCMP_ULT: return FCMP_UGT;
2392 case FCMP_UGE: return FCMP_ULE;
2393 case FCMP_ULE: return FCMP_UGE;
2394 }
2395}
2396
Reid Spencer266e42b2006-12-23 06:05:41 +00002397bool CmpInst::isUnsigned(unsigned short predicate) {
2398 switch (predicate) {
2399 default: return false;
2400 case ICmpInst::ICMP_ULT: case ICmpInst::ICMP_ULE: case ICmpInst::ICMP_UGT:
2401 case ICmpInst::ICMP_UGE: return true;
2402 }
2403}
2404
2405bool CmpInst::isSigned(unsigned short predicate){
2406 switch (predicate) {
2407 default: return false;
2408 case ICmpInst::ICMP_SLT: case ICmpInst::ICMP_SLE: case ICmpInst::ICMP_SGT:
2409 case ICmpInst::ICMP_SGE: return true;
2410 }
2411}
2412
2413bool CmpInst::isOrdered(unsigned short predicate) {
2414 switch (predicate) {
2415 default: return false;
2416 case FCmpInst::FCMP_OEQ: case FCmpInst::FCMP_ONE: case FCmpInst::FCMP_OGT:
2417 case FCmpInst::FCMP_OLT: case FCmpInst::FCMP_OGE: case FCmpInst::FCMP_OLE:
2418 case FCmpInst::FCMP_ORD: return true;
2419 }
2420}
2421
2422bool CmpInst::isUnordered(unsigned short predicate) {
2423 switch (predicate) {
2424 default: return false;
2425 case FCmpInst::FCMP_UEQ: case FCmpInst::FCMP_UNE: case FCmpInst::FCMP_UGT:
2426 case FCmpInst::FCMP_ULT: case FCmpInst::FCMP_UGE: case FCmpInst::FCMP_ULE:
2427 case FCmpInst::FCMP_UNO: return true;
2428 }
2429}
2430
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002431//===----------------------------------------------------------------------===//
2432// SwitchInst Implementation
2433//===----------------------------------------------------------------------===//
2434
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002435void SwitchInst::init(Value *Value, BasicBlock *Default, unsigned NumCases) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002436 assert(Value && Default);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002437 ReservedSpace = 2+NumCases*2;
2438 NumOperands = 2;
2439 OperandList = new Use[ReservedSpace];
2440
2441 OperandList[0].init(Value, this);
2442 OperandList[1].init(Default, this);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002443}
2444
Chris Lattner2195fc42007-02-24 00:55:48 +00002445/// SwitchInst ctor - Create a new switch instruction, specifying a value to
2446/// switch on and a default destination. The number of additional cases can
2447/// be specified here to make memory allocation more efficient. This
2448/// constructor can also autoinsert before another instruction.
2449SwitchInst::SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
2450 Instruction *InsertBefore)
2451 : TerminatorInst(Type::VoidTy, Instruction::Switch, 0, 0, InsertBefore) {
2452 init(Value, Default, NumCases);
2453}
2454
2455/// SwitchInst ctor - Create a new switch instruction, specifying a value to
2456/// switch on and a default destination. The number of additional cases can
2457/// be specified here to make memory allocation more efficient. This
2458/// constructor also autoinserts at the end of the specified BasicBlock.
2459SwitchInst::SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
2460 BasicBlock *InsertAtEnd)
2461 : TerminatorInst(Type::VoidTy, Instruction::Switch, 0, 0, InsertAtEnd) {
2462 init(Value, Default, NumCases);
2463}
2464
Misha Brukmanb1c93172005-04-21 23:48:37 +00002465SwitchInst::SwitchInst(const SwitchInst &SI)
Chris Lattner2195fc42007-02-24 00:55:48 +00002466 : TerminatorInst(Type::VoidTy, Instruction::Switch,
2467 new Use[SI.getNumOperands()], SI.getNumOperands()) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002468 Use *OL = OperandList, *InOL = SI.OperandList;
2469 for (unsigned i = 0, E = SI.getNumOperands(); i != E; i+=2) {
2470 OL[i].init(InOL[i], this);
2471 OL[i+1].init(InOL[i+1], this);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002472 }
2473}
2474
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002475SwitchInst::~SwitchInst() {
2476 delete [] OperandList;
2477}
2478
2479
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002480/// addCase - Add an entry to the switch instruction...
2481///
Chris Lattner47ac1872005-02-24 05:32:09 +00002482void SwitchInst::addCase(ConstantInt *OnVal, BasicBlock *Dest) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002483 unsigned OpNo = NumOperands;
2484 if (OpNo+2 > ReservedSpace)
2485 resizeOperands(0); // Get more space!
2486 // Initialize some new operands.
Chris Lattnerf711f8d2005-01-29 01:05:12 +00002487 assert(OpNo+1 < ReservedSpace && "Growing didn't work!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002488 NumOperands = OpNo+2;
2489 OperandList[OpNo].init(OnVal, this);
2490 OperandList[OpNo+1].init(Dest, this);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002491}
2492
2493/// removeCase - This method removes the specified successor from the switch
2494/// instruction. Note that this cannot be used to remove the default
2495/// destination (successor #0).
2496///
2497void SwitchInst::removeCase(unsigned idx) {
2498 assert(idx != 0 && "Cannot remove the default case!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002499 assert(idx*2 < getNumOperands() && "Successor index out of range!!!");
2500
2501 unsigned NumOps = getNumOperands();
2502 Use *OL = OperandList;
2503
2504 // Move everything after this operand down.
2505 //
2506 // FIXME: we could just swap with the end of the list, then erase. However,
2507 // client might not expect this to happen. The code as it is thrashes the
2508 // use/def lists, which is kinda lame.
2509 for (unsigned i = (idx+1)*2; i != NumOps; i += 2) {
2510 OL[i-2] = OL[i];
2511 OL[i-2+1] = OL[i+1];
2512 }
2513
2514 // Nuke the last value.
2515 OL[NumOps-2].set(0);
2516 OL[NumOps-2+1].set(0);
2517 NumOperands = NumOps-2;
2518}
2519
2520/// resizeOperands - resize operands - This adjusts the length of the operands
2521/// list according to the following behavior:
2522/// 1. If NumOps == 0, grow the operand list in response to a push_back style
2523/// of operation. This grows the number of ops by 1.5 times.
2524/// 2. If NumOps > NumOperands, reserve space for NumOps operands.
2525/// 3. If NumOps == NumOperands, trim the reserved space.
2526///
2527void SwitchInst::resizeOperands(unsigned NumOps) {
2528 if (NumOps == 0) {
Chris Lattnerf711f8d2005-01-29 01:05:12 +00002529 NumOps = getNumOperands()/2*6;
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002530 } else if (NumOps*2 > NumOperands) {
2531 // No resize needed.
2532 if (ReservedSpace >= NumOps) return;
2533 } else if (NumOps == NumOperands) {
2534 if (ReservedSpace == NumOps) return;
2535 } else {
Chris Lattnerf711f8d2005-01-29 01:05:12 +00002536 return;
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002537 }
2538
2539 ReservedSpace = NumOps;
2540 Use *NewOps = new Use[NumOps];
2541 Use *OldOps = OperandList;
2542 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
2543 NewOps[i].init(OldOps[i], this);
2544 OldOps[i].set(0);
2545 }
2546 delete [] OldOps;
2547 OperandList = NewOps;
2548}
2549
2550
2551BasicBlock *SwitchInst::getSuccessorV(unsigned idx) const {
2552 return getSuccessor(idx);
2553}
2554unsigned SwitchInst::getNumSuccessorsV() const {
2555 return getNumSuccessors();
2556}
2557void SwitchInst::setSuccessorV(unsigned idx, BasicBlock *B) {
2558 setSuccessor(idx, B);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002559}
Chris Lattnerf22be932004-10-15 23:52:53 +00002560
2561
2562// Define these methods here so vtables don't get emitted into every translation
2563// unit that uses these classes.
2564
2565GetElementPtrInst *GetElementPtrInst::clone() const {
2566 return new GetElementPtrInst(*this);
2567}
2568
2569BinaryOperator *BinaryOperator::clone() const {
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002570 return create(getOpcode(), Ops[0], Ops[1]);
Chris Lattnerf22be932004-10-15 23:52:53 +00002571}
2572
Reid Spencerd9436b62006-11-20 01:22:35 +00002573CmpInst* CmpInst::clone() const {
Reid Spencerfcb0dd32006-12-07 04:18:31 +00002574 return create(getOpcode(), getPredicate(), Ops[0], Ops[1]);
Reid Spencerd9436b62006-11-20 01:22:35 +00002575}
2576
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002577MallocInst *MallocInst::clone() const { return new MallocInst(*this); }
2578AllocaInst *AllocaInst::clone() const { return new AllocaInst(*this); }
2579FreeInst *FreeInst::clone() const { return new FreeInst(getOperand(0)); }
2580LoadInst *LoadInst::clone() const { return new LoadInst(*this); }
2581StoreInst *StoreInst::clone() const { return new StoreInst(*this); }
2582CastInst *TruncInst::clone() const { return new TruncInst(*this); }
2583CastInst *ZExtInst::clone() const { return new ZExtInst(*this); }
2584CastInst *SExtInst::clone() const { return new SExtInst(*this); }
2585CastInst *FPTruncInst::clone() const { return new FPTruncInst(*this); }
2586CastInst *FPExtInst::clone() const { return new FPExtInst(*this); }
2587CastInst *UIToFPInst::clone() const { return new UIToFPInst(*this); }
2588CastInst *SIToFPInst::clone() const { return new SIToFPInst(*this); }
2589CastInst *FPToUIInst::clone() const { return new FPToUIInst(*this); }
2590CastInst *FPToSIInst::clone() const { return new FPToSIInst(*this); }
2591CastInst *PtrToIntInst::clone() const { return new PtrToIntInst(*this); }
2592CastInst *IntToPtrInst::clone() const { return new IntToPtrInst(*this); }
2593CastInst *BitCastInst::clone() const { return new BitCastInst(*this); }
2594CallInst *CallInst::clone() const { return new CallInst(*this); }
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002595SelectInst *SelectInst::clone() const { return new SelectInst(*this); }
2596VAArgInst *VAArgInst::clone() const { return new VAArgInst(*this); }
2597
Chris Lattnerbbe0a422006-04-08 01:18:18 +00002598ExtractElementInst *ExtractElementInst::clone() const {
2599 return new ExtractElementInst(*this);
2600}
2601InsertElementInst *InsertElementInst::clone() const {
2602 return new InsertElementInst(*this);
2603}
2604ShuffleVectorInst *ShuffleVectorInst::clone() const {
2605 return new ShuffleVectorInst(*this);
2606}
Chris Lattnerf22be932004-10-15 23:52:53 +00002607PHINode *PHINode::clone() const { return new PHINode(*this); }
2608ReturnInst *ReturnInst::clone() const { return new ReturnInst(*this); }
2609BranchInst *BranchInst::clone() const { return new BranchInst(*this); }
2610SwitchInst *SwitchInst::clone() const { return new SwitchInst(*this); }
2611InvokeInst *InvokeInst::clone() const { return new InvokeInst(*this); }
2612UnwindInst *UnwindInst::clone() const { return new UnwindInst(); }
Chris Lattner5e0b9f22004-10-16 18:08:06 +00002613UnreachableInst *UnreachableInst::clone() const { return new UnreachableInst();}