blob: f33e2dd449ade0c6ac51fed99f8a80f30eea6554 [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//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// 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"
20#include "llvm/Support/CallSite.h"
Reid Spencer0286bc12007-02-28 22:00:54 +000021#include "llvm/Support/ConstantRange.h"
Christopher Lamb84485702007-04-22 19:24:39 +000022#include "llvm/Support/MathExtras.h"
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +000023using namespace llvm;
24
Chris Lattner3e13b8c2008-01-02 23:42:30 +000025//===----------------------------------------------------------------------===//
26// CallSite Class
27//===----------------------------------------------------------------------===//
28
Duncan Sands85fab3a2008-02-18 17:32:13 +000029CallSite::CallSite(Instruction *C) {
30 assert((isa<CallInst>(C) || isa<InvokeInst>(C)) && "Not a call!");
31 I = C;
32}
Chris Lattnerf7b6d312005-05-06 20:26:43 +000033unsigned CallSite::getCallingConv() const {
34 if (CallInst *CI = dyn_cast<CallInst>(I))
35 return CI->getCallingConv();
36 else
37 return cast<InvokeInst>(I)->getCallingConv();
38}
39void CallSite::setCallingConv(unsigned CC) {
40 if (CallInst *CI = dyn_cast<CallInst>(I))
41 CI->setCallingConv(CC);
42 else
43 cast<InvokeInst>(I)->setCallingConv(CC);
44}
Chris Lattner8a923e72008-03-12 17:45:29 +000045const PAListPtr &CallSite::getParamAttrs() const {
Duncan Sandsad0ea2d2007-11-27 13:23:08 +000046 if (CallInst *CI = dyn_cast<CallInst>(I))
47 return CI->getParamAttrs();
48 else
49 return cast<InvokeInst>(I)->getParamAttrs();
50}
Chris Lattner8a923e72008-03-12 17:45:29 +000051void CallSite::setParamAttrs(const PAListPtr &PAL) {
Duncan Sandsad0ea2d2007-11-27 13:23:08 +000052 if (CallInst *CI = dyn_cast<CallInst>(I))
53 CI->setParamAttrs(PAL);
54 else
55 cast<InvokeInst>(I)->setParamAttrs(PAL);
56}
Dale Johannesen89268bc2008-02-19 21:38:47 +000057bool CallSite::paramHasAttr(uint16_t i, ParameterAttributes attr) const {
Duncan Sands5208d1a2007-11-28 17:07:01 +000058 if (CallInst *CI = dyn_cast<CallInst>(I))
Dale Johannesen89268bc2008-02-19 21:38:47 +000059 return CI->paramHasAttr(i, attr);
Duncan Sands5208d1a2007-11-28 17:07:01 +000060 else
Dale Johannesen89268bc2008-02-19 21:38:47 +000061 return cast<InvokeInst>(I)->paramHasAttr(i, attr);
Duncan Sands5208d1a2007-11-28 17:07:01 +000062}
Dale Johanneseneabc5f32008-02-22 17:49:45 +000063uint16_t CallSite::getParamAlignment(uint16_t i) const {
64 if (CallInst *CI = dyn_cast<CallInst>(I))
65 return CI->getParamAlignment(i);
66 else
67 return cast<InvokeInst>(I)->getParamAlignment(i);
68}
69
Duncan Sands38ef3a82007-12-03 20:06:50 +000070bool CallSite::doesNotAccessMemory() const {
71 if (CallInst *CI = dyn_cast<CallInst>(I))
72 return CI->doesNotAccessMemory();
73 else
74 return cast<InvokeInst>(I)->doesNotAccessMemory();
75}
76bool CallSite::onlyReadsMemory() const {
77 if (CallInst *CI = dyn_cast<CallInst>(I))
78 return CI->onlyReadsMemory();
79 else
80 return cast<InvokeInst>(I)->onlyReadsMemory();
81}
Duncan Sands3353ed02007-12-18 09:59:50 +000082bool CallSite::doesNotThrow() const {
Duncan Sands8e4847e2007-12-16 15:51:49 +000083 if (CallInst *CI = dyn_cast<CallInst>(I))
Duncan Sands3353ed02007-12-18 09:59:50 +000084 return CI->doesNotThrow();
Duncan Sands8e4847e2007-12-16 15:51:49 +000085 else
Duncan Sands3353ed02007-12-18 09:59:50 +000086 return cast<InvokeInst>(I)->doesNotThrow();
Duncan Sands8e4847e2007-12-16 15:51:49 +000087}
Duncan Sandsaa31b922007-12-19 21:13:37 +000088void CallSite::setDoesNotThrow(bool doesNotThrow) {
89 if (CallInst *CI = dyn_cast<CallInst>(I))
90 CI->setDoesNotThrow(doesNotThrow);
91 else
92 cast<InvokeInst>(I)->setDoesNotThrow(doesNotThrow);
93}
Chris Lattnerf7b6d312005-05-06 20:26:43 +000094
Gordon Henriksen14a55692007-12-10 02:14:30 +000095//===----------------------------------------------------------------------===//
96// TerminatorInst Class
97//===----------------------------------------------------------------------===//
98
99// Out of line virtual method, so the vtable, etc has a home.
100TerminatorInst::~TerminatorInst() {
101}
102
Gabor Greiff6caff662008-05-10 08:32:32 +0000103//===----------------------------------------------------------------------===//
104// UnaryInstruction Class
105//===----------------------------------------------------------------------===//
106
Gordon Henriksen14a55692007-12-10 02:14:30 +0000107// Out of line virtual method, so the vtable, etc has a home.
108UnaryInstruction::~UnaryInstruction() {
109}
110
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000111//===----------------------------------------------------------------------===//
112// PHINode Class
113//===----------------------------------------------------------------------===//
114
115PHINode::PHINode(const PHINode &PN)
116 : Instruction(PN.getType(), Instruction::PHI,
Gabor Greiff6caff662008-05-10 08:32:32 +0000117 allocHungoffUses(PN.getNumOperands()), PN.getNumOperands()),
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000118 ReservedSpace(PN.getNumOperands()) {
119 Use *OL = OperandList;
120 for (unsigned i = 0, e = PN.getNumOperands(); i != e; i+=2) {
Gabor Greif2d3024d2008-05-26 21:33:52 +0000121 OL[i] = PN.getOperand(i);
122 OL[i+1] = PN.getOperand(i+1);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000123 }
124}
125
Gordon Henriksen14a55692007-12-10 02:14:30 +0000126PHINode::~PHINode() {
Gabor Greiff6caff662008-05-10 08:32:32 +0000127 dropHungoffUses(OperandList);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000128}
129
130// removeIncomingValue - Remove an incoming value. This is useful if a
131// predecessor basic block is deleted.
132Value *PHINode::removeIncomingValue(unsigned Idx, bool DeletePHIIfEmpty) {
133 unsigned NumOps = getNumOperands();
134 Use *OL = OperandList;
135 assert(Idx*2 < NumOps && "BB not in PHI node!");
136 Value *Removed = OL[Idx*2];
137
138 // Move everything after this operand down.
139 //
140 // FIXME: we could just swap with the end of the list, then erase. However,
141 // client might not expect this to happen. The code as it is thrashes the
142 // use/def lists, which is kinda lame.
143 for (unsigned i = (Idx+1)*2; i != NumOps; i += 2) {
144 OL[i-2] = OL[i];
145 OL[i-2+1] = OL[i+1];
146 }
147
148 // Nuke the last value.
149 OL[NumOps-2].set(0);
150 OL[NumOps-2+1].set(0);
151 NumOperands = NumOps-2;
152
153 // If the PHI node is dead, because it has zero entries, nuke it now.
154 if (NumOps == 2 && DeletePHIIfEmpty) {
155 // If anyone is using this PHI, make them use a dummy value instead...
156 replaceAllUsesWith(UndefValue::get(getType()));
157 eraseFromParent();
158 }
159 return Removed;
160}
161
162/// resizeOperands - resize operands - This adjusts the length of the operands
163/// list according to the following behavior:
164/// 1. If NumOps == 0, grow the operand list in response to a push_back style
165/// of operation. This grows the number of ops by 1.5 times.
166/// 2. If NumOps > NumOperands, reserve space for NumOps operands.
167/// 3. If NumOps == NumOperands, trim the reserved space.
168///
169void PHINode::resizeOperands(unsigned NumOps) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000170 unsigned e = getNumOperands();
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000171 if (NumOps == 0) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000172 NumOps = e*3/2;
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000173 if (NumOps < 4) NumOps = 4; // 4 op PHI nodes are VERY common.
174 } else if (NumOps*2 > NumOperands) {
175 // No resize needed.
176 if (ReservedSpace >= NumOps) return;
177 } else if (NumOps == NumOperands) {
178 if (ReservedSpace == NumOps) return;
179 } else {
Misha Brukmanb1c93172005-04-21 23:48:37 +0000180 return;
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000181 }
182
183 ReservedSpace = NumOps;
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000184 Use *OldOps = OperandList;
Gabor Greiff6caff662008-05-10 08:32:32 +0000185 Use *NewOps = allocHungoffUses(NumOps);
186 for (unsigned i = 0; i != e; ++i) {
Gabor Greif2d3024d2008-05-26 21:33:52 +0000187 NewOps[i] = OldOps[i];
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000188 }
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000189 OperandList = NewOps;
Gabor Greiff6caff662008-05-10 08:32:32 +0000190 if (OldOps) Use::zap(OldOps, OldOps + e, true);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000191}
192
Nate Begemanb3923212005-08-04 23:24:19 +0000193/// hasConstantValue - If the specified PHI node always merges together the same
194/// value, return the value, otherwise return null.
195///
Chris Lattner1d8b2482005-08-05 00:49:06 +0000196Value *PHINode::hasConstantValue(bool AllowNonDominatingInstruction) const {
Nate Begemanb3923212005-08-04 23:24:19 +0000197 // If the PHI node only has one incoming value, eliminate the PHI node...
Anton Korobeynikov579f0712008-02-20 11:08:44 +0000198 if (getNumIncomingValues() == 1) {
Chris Lattner6e709c12005-08-05 15:37:31 +0000199 if (getIncomingValue(0) != this) // not X = phi X
200 return getIncomingValue(0);
201 else
202 return UndefValue::get(getType()); // Self cycle is dead.
Anton Korobeynikov579f0712008-02-20 11:08:44 +0000203 }
Chris Lattner6e709c12005-08-05 15:37:31 +0000204
Nate Begemanb3923212005-08-04 23:24:19 +0000205 // Otherwise if all of the incoming values are the same for the PHI, replace
206 // the PHI node with the incoming value.
207 //
208 Value *InVal = 0;
Chris Lattnerbcd8d2c2005-08-05 01:00:58 +0000209 bool HasUndefInput = false;
Nate Begemanb3923212005-08-04 23:24:19 +0000210 for (unsigned i = 0, e = getNumIncomingValues(); i != e; ++i)
Anton Korobeynikov579f0712008-02-20 11:08:44 +0000211 if (isa<UndefValue>(getIncomingValue(i))) {
Chris Lattnerbcd8d2c2005-08-05 01:00:58 +0000212 HasUndefInput = true;
Anton Korobeynikov579f0712008-02-20 11:08:44 +0000213 } else if (getIncomingValue(i) != this) { // Not the PHI node itself...
Nate Begemanb3923212005-08-04 23:24:19 +0000214 if (InVal && getIncomingValue(i) != InVal)
215 return 0; // Not the same, bail out.
216 else
217 InVal = getIncomingValue(i);
Anton Korobeynikov579f0712008-02-20 11:08:44 +0000218 }
Nate Begemanb3923212005-08-04 23:24:19 +0000219
220 // The only case that could cause InVal to be null is if we have a PHI node
221 // that only has entries for itself. In this case, there is no entry into the
222 // loop, so kill the PHI.
223 //
224 if (InVal == 0) InVal = UndefValue::get(getType());
225
Chris Lattnerbcd8d2c2005-08-05 01:00:58 +0000226 // If we have a PHI node like phi(X, undef, X), where X is defined by some
227 // instruction, we cannot always return X as the result of the PHI node. Only
228 // do this if X is not an instruction (thus it must dominate the PHI block),
229 // or if the client is prepared to deal with this possibility.
230 if (HasUndefInput && !AllowNonDominatingInstruction)
231 if (Instruction *IV = dyn_cast<Instruction>(InVal))
232 // If it's in the entry block, it dominates everything.
Dan Gohmandcb291f2007-03-22 16:38:57 +0000233 if (IV->getParent() != &IV->getParent()->getParent()->getEntryBlock() ||
Chris Lattner37774af2005-08-05 01:03:27 +0000234 isa<InvokeInst>(IV))
Chris Lattnerbcd8d2c2005-08-05 01:00:58 +0000235 return 0; // Cannot guarantee that InVal dominates this PHINode.
236
Nate Begemanb3923212005-08-04 23:24:19 +0000237 // All of the incoming values are the same, return the value now.
238 return InVal;
239}
240
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000241
242//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000243// CallInst Implementation
244//===----------------------------------------------------------------------===//
245
Gordon Henriksen14a55692007-12-10 02:14:30 +0000246CallInst::~CallInst() {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000247}
248
Chris Lattner054ba2c2007-02-13 00:58:44 +0000249void CallInst::init(Value *Func, Value* const *Params, unsigned NumParams) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000250 assert(NumOperands == NumParams+1 && "NumOperands not set up?");
251 Use *OL = OperandList;
Gabor Greif2d3024d2008-05-26 21:33:52 +0000252 OL[0] = Func;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000253
Misha Brukmanb1c93172005-04-21 23:48:37 +0000254 const FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000255 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000256 FTy = FTy; // silence warning.
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000257
Chris Lattner054ba2c2007-02-13 00:58:44 +0000258 assert((NumParams == FTy->getNumParams() ||
259 (FTy->isVarArg() && NumParams > FTy->getNumParams())) &&
Chris Lattner667a0562006-05-03 00:48:22 +0000260 "Calling a function with bad signature!");
Chris Lattner054ba2c2007-02-13 00:58:44 +0000261 for (unsigned i = 0; i != NumParams; ++i) {
Chris Lattner667a0562006-05-03 00:48:22 +0000262 assert((i >= FTy->getNumParams() ||
263 FTy->getParamType(i) == Params[i]->getType()) &&
264 "Calling a function with a bad signature!");
Gabor Greif2d3024d2008-05-26 21:33:52 +0000265 OL[i+1] = Params[i];
Chris Lattner667a0562006-05-03 00:48:22 +0000266 }
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000267}
268
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000269void CallInst::init(Value *Func, Value *Actual1, Value *Actual2) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000270 assert(NumOperands == 3 && "NumOperands not set up?");
271 Use *OL = OperandList;
Gabor Greif2d3024d2008-05-26 21:33:52 +0000272 OL[0] = Func;
273 OL[1] = Actual1;
274 OL[2] = Actual2;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000275
276 const FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000277 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000278 FTy = FTy; // silence warning.
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000279
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000280 assert((FTy->getNumParams() == 2 ||
Chris Lattner667a0562006-05-03 00:48:22 +0000281 (FTy->isVarArg() && FTy->getNumParams() < 2)) &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000282 "Calling a function with bad signature");
Chris Lattner667a0562006-05-03 00:48:22 +0000283 assert((0 >= FTy->getNumParams() ||
284 FTy->getParamType(0) == Actual1->getType()) &&
285 "Calling a function with a bad signature!");
286 assert((1 >= FTy->getNumParams() ||
287 FTy->getParamType(1) == Actual2->getType()) &&
288 "Calling a function with a bad signature!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000289}
290
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000291void CallInst::init(Value *Func, Value *Actual) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000292 assert(NumOperands == 2 && "NumOperands not set up?");
293 Use *OL = OperandList;
Gabor Greif2d3024d2008-05-26 21:33:52 +0000294 OL[0] = Func;
295 OL[1] = Actual;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000296
297 const FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000298 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000299 FTy = FTy; // silence warning.
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000300
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000301 assert((FTy->getNumParams() == 1 ||
302 (FTy->isVarArg() && FTy->getNumParams() == 0)) &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000303 "Calling a function with bad signature");
Chris Lattner667a0562006-05-03 00:48:22 +0000304 assert((0 == FTy->getNumParams() ||
305 FTy->getParamType(0) == Actual->getType()) &&
306 "Calling a function with a bad signature!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000307}
308
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000309void CallInst::init(Value *Func) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000310 assert(NumOperands == 1 && "NumOperands not set up?");
311 Use *OL = OperandList;
Gabor Greif2d3024d2008-05-26 21:33:52 +0000312 OL[0] = Func;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000313
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000314 const FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000315 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000316 FTy = FTy; // silence warning.
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000317
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000318 assert(FTy->getNumParams() == 0 && "Calling a function with bad signature");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000319}
320
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000321CallInst::CallInst(Value *Func, Value* Actual, const std::string &Name,
Chris Lattner2195fc42007-02-24 00:55:48 +0000322 Instruction *InsertBefore)
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000323 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
324 ->getElementType())->getReturnType(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000325 Instruction::Call,
326 OperandTraits<CallInst>::op_end(this) - 2,
327 2, InsertBefore) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000328 init(Func, Actual);
Chris Lattner2195fc42007-02-24 00:55:48 +0000329 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000330}
331
332CallInst::CallInst(Value *Func, Value* Actual, const std::string &Name,
333 BasicBlock *InsertAtEnd)
334 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
335 ->getElementType())->getReturnType(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000336 Instruction::Call,
337 OperandTraits<CallInst>::op_end(this) - 2,
338 2, InsertAtEnd) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000339 init(Func, Actual);
Chris Lattner2195fc42007-02-24 00:55:48 +0000340 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000341}
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000342CallInst::CallInst(Value *Func, const std::string &Name,
343 Instruction *InsertBefore)
344 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
345 ->getElementType())->getReturnType(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000346 Instruction::Call,
347 OperandTraits<CallInst>::op_end(this) - 1,
348 1, InsertBefore) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000349 init(Func);
Chris Lattner2195fc42007-02-24 00:55:48 +0000350 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000351}
352
353CallInst::CallInst(Value *Func, const std::string &Name,
354 BasicBlock *InsertAtEnd)
355 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
356 ->getElementType())->getReturnType(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000357 Instruction::Call,
358 OperandTraits<CallInst>::op_end(this) - 1,
359 1, InsertAtEnd) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000360 init(Func);
Chris Lattner2195fc42007-02-24 00:55:48 +0000361 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000362}
363
Misha Brukmanb1c93172005-04-21 23:48:37 +0000364CallInst::CallInst(const CallInst &CI)
Gabor Greiff6caff662008-05-10 08:32:32 +0000365 : Instruction(CI.getType(), Instruction::Call,
366 OperandTraits<CallInst>::op_end(this) - CI.getNumOperands(),
Chris Lattner8a923e72008-03-12 17:45:29 +0000367 CI.getNumOperands()) {
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000368 setParamAttrs(CI.getParamAttrs());
Chris Lattnerf7b6d312005-05-06 20:26:43 +0000369 SubclassData = CI.SubclassData;
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000370 Use *OL = OperandList;
371 Use *InOL = CI.OperandList;
372 for (unsigned i = 0, e = CI.getNumOperands(); i != e; ++i)
Gabor Greif2d3024d2008-05-26 21:33:52 +0000373 OL[i] = InOL[i];
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000374}
375
Eric Christopher901b1a72008-05-16 20:39:43 +0000376void CallInst::addParamAttr(unsigned i, ParameterAttributes attr) {
377 PAListPtr PAL = getParamAttrs();
378 PAL = PAL.addAttr(i, attr);
379 setParamAttrs(PAL);
380}
381
Chris Lattnerc994c022008-03-13 05:00:21 +0000382bool CallInst::paramHasAttr(unsigned i, ParameterAttributes attr) const {
Chris Lattner8a923e72008-03-12 17:45:29 +0000383 if (ParamAttrs.paramHasAttr(i, attr))
Duncan Sands5208d1a2007-11-28 17:07:01 +0000384 return true;
Duncan Sands8dfcd592007-11-29 08:30:15 +0000385 if (const Function *F = getCalledFunction())
Dale Johannesen89268bc2008-02-19 21:38:47 +0000386 return F->paramHasAttr(i, attr);
Duncan Sands8dfcd592007-11-29 08:30:15 +0000387 return false;
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000388}
389
Duncan Sandsaa31b922007-12-19 21:13:37 +0000390void CallInst::setDoesNotThrow(bool doesNotThrow) {
Chris Lattner8a923e72008-03-12 17:45:29 +0000391 PAListPtr PAL = getParamAttrs();
Duncan Sandsaa31b922007-12-19 21:13:37 +0000392 if (doesNotThrow)
Chris Lattner8a923e72008-03-12 17:45:29 +0000393 PAL = PAL.addAttr(0, ParamAttr::NoUnwind);
Duncan Sandsaa31b922007-12-19 21:13:37 +0000394 else
Chris Lattner8a923e72008-03-12 17:45:29 +0000395 PAL = PAL.removeAttr(0, ParamAttr::NoUnwind);
Duncan Sandsaa31b922007-12-19 21:13:37 +0000396 setParamAttrs(PAL);
397}
398
Duncan Sands5208d1a2007-11-28 17:07:01 +0000399
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000400//===----------------------------------------------------------------------===//
401// InvokeInst Implementation
402//===----------------------------------------------------------------------===//
403
404void InvokeInst::init(Value *Fn, BasicBlock *IfNormal, BasicBlock *IfException,
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000405 Value* const *Args, unsigned NumArgs) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000406 assert(NumOperands == 3+NumArgs && "NumOperands not set up?");
407 Use *OL = OperandList;
Gabor Greif2d3024d2008-05-26 21:33:52 +0000408 OL[0] = Fn;
409 OL[1] = IfNormal;
410 OL[2] = IfException;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000411 const FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000412 cast<FunctionType>(cast<PointerType>(Fn->getType())->getElementType());
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000413 FTy = FTy; // silence warning.
Misha Brukmanb1c93172005-04-21 23:48:37 +0000414
Anton Korobeynikov579f0712008-02-20 11:08:44 +0000415 assert(((NumArgs == FTy->getNumParams()) ||
416 (FTy->isVarArg() && NumArgs > FTy->getNumParams())) &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000417 "Calling a function with bad signature");
Misha Brukmanb1c93172005-04-21 23:48:37 +0000418
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000419 for (unsigned i = 0, e = NumArgs; i != e; i++) {
Chris Lattner667a0562006-05-03 00:48:22 +0000420 assert((i >= FTy->getNumParams() ||
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000421 FTy->getParamType(i) == Args[i]->getType()) &&
Chris Lattner667a0562006-05-03 00:48:22 +0000422 "Invoking a function with a bad signature!");
423
Gabor Greif2d3024d2008-05-26 21:33:52 +0000424 OL[i+3] = Args[i];
Chris Lattner667a0562006-05-03 00:48:22 +0000425 }
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000426}
427
Misha Brukmanb1c93172005-04-21 23:48:37 +0000428InvokeInst::InvokeInst(const InvokeInst &II)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000429 : TerminatorInst(II.getType(), Instruction::Invoke,
Gabor Greif697e94c2008-05-15 10:04:30 +0000430 OperandTraits<InvokeInst>::op_end(this)
431 - II.getNumOperands(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000432 II.getNumOperands()) {
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000433 setParamAttrs(II.getParamAttrs());
Chris Lattnerf7b6d312005-05-06 20:26:43 +0000434 SubclassData = II.SubclassData;
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000435 Use *OL = OperandList, *InOL = II.OperandList;
436 for (unsigned i = 0, e = II.getNumOperands(); i != e; ++i)
Gabor Greif2d3024d2008-05-26 21:33:52 +0000437 OL[i] = InOL[i];
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000438}
439
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000440BasicBlock *InvokeInst::getSuccessorV(unsigned idx) const {
441 return getSuccessor(idx);
442}
443unsigned InvokeInst::getNumSuccessorsV() const {
444 return getNumSuccessors();
445}
446void InvokeInst::setSuccessorV(unsigned idx, BasicBlock *B) {
447 return setSuccessor(idx, B);
448}
449
Chris Lattnerc994c022008-03-13 05:00:21 +0000450bool InvokeInst::paramHasAttr(unsigned i, ParameterAttributes attr) const {
Chris Lattner8a923e72008-03-12 17:45:29 +0000451 if (ParamAttrs.paramHasAttr(i, attr))
Duncan Sands5208d1a2007-11-28 17:07:01 +0000452 return true;
Duncan Sands8dfcd592007-11-29 08:30:15 +0000453 if (const Function *F = getCalledFunction())
Dale Johannesen89268bc2008-02-19 21:38:47 +0000454 return F->paramHasAttr(i, attr);
Duncan Sands8dfcd592007-11-29 08:30:15 +0000455 return false;
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000456}
457
Eric Christopher901b1a72008-05-16 20:39:43 +0000458void InvokeInst::addParamAttr(unsigned i, ParameterAttributes attr) {
459 PAListPtr PAL = getParamAttrs();
460 PAL = PAL.addAttr(i, attr);
461 setParamAttrs(PAL);
462}
463
Duncan Sandsaa31b922007-12-19 21:13:37 +0000464void InvokeInst::setDoesNotThrow(bool doesNotThrow) {
Chris Lattner8a923e72008-03-12 17:45:29 +0000465 PAListPtr PAL = getParamAttrs();
Duncan Sandsaa31b922007-12-19 21:13:37 +0000466 if (doesNotThrow)
Chris Lattner8a923e72008-03-12 17:45:29 +0000467 PAL = PAL.addAttr(0, ParamAttr::NoUnwind);
Duncan Sandsaa31b922007-12-19 21:13:37 +0000468 else
Chris Lattner8a923e72008-03-12 17:45:29 +0000469 PAL = PAL.removeAttr(0, ParamAttr::NoUnwind);
Duncan Sandsaa31b922007-12-19 21:13:37 +0000470 setParamAttrs(PAL);
471}
472
Duncan Sands5208d1a2007-11-28 17:07:01 +0000473
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000474//===----------------------------------------------------------------------===//
475// ReturnInst Implementation
476//===----------------------------------------------------------------------===//
477
Chris Lattner2195fc42007-02-24 00:55:48 +0000478ReturnInst::ReturnInst(const ReturnInst &RI)
479 : TerminatorInst(Type::VoidTy, Instruction::Ret,
Gabor Greif697e94c2008-05-15 10:04:30 +0000480 OperandTraits<ReturnInst>::op_end(this)
481 - RI.getNumOperands(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000482 RI.getNumOperands()) {
Devang Patel59643e52008-02-23 00:35:18 +0000483 unsigned N = RI.getNumOperands();
Gabor Greiff6caff662008-05-10 08:32:32 +0000484 if (N == 1)
Gabor Greif2d3024d2008-05-26 21:33:52 +0000485 Op<0>() = RI.Op<0>();
Devang Patelae682fb2008-02-26 17:56:20 +0000486 else if (N) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000487 Use *OL = OperandList;
Devang Patelae682fb2008-02-26 17:56:20 +0000488 for (unsigned i = 0; i < N; ++i)
Gabor Greif2d3024d2008-05-26 21:33:52 +0000489 OL[i] = RI.getOperand(i);
Devang Patelae682fb2008-02-26 17:56:20 +0000490 }
Chris Lattner2195fc42007-02-24 00:55:48 +0000491}
492
493ReturnInst::ReturnInst(Value *retVal, Instruction *InsertBefore)
Gabor Greiff6caff662008-05-10 08:32:32 +0000494 : TerminatorInst(Type::VoidTy, Instruction::Ret,
495 OperandTraits<ReturnInst>::op_end(this) - (retVal != 0),
496 retVal != 0, InsertBefore) {
Devang Patelc38eb522008-02-26 18:49:29 +0000497 if (retVal)
498 init(&retVal, 1);
Chris Lattner2195fc42007-02-24 00:55:48 +0000499}
500ReturnInst::ReturnInst(Value *retVal, BasicBlock *InsertAtEnd)
Gabor Greiff6caff662008-05-10 08:32:32 +0000501 : TerminatorInst(Type::VoidTy, Instruction::Ret,
502 OperandTraits<ReturnInst>::op_end(this) - (retVal != 0),
503 retVal != 0, InsertAtEnd) {
Devang Patelc38eb522008-02-26 18:49:29 +0000504 if (retVal)
505 init(&retVal, 1);
Chris Lattner2195fc42007-02-24 00:55:48 +0000506}
507ReturnInst::ReturnInst(BasicBlock *InsertAtEnd)
Gabor Greiff6caff662008-05-10 08:32:32 +0000508 : TerminatorInst(Type::VoidTy, Instruction::Ret,
509 OperandTraits<ReturnInst>::op_end(this),
510 0, InsertAtEnd) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000511}
512
Devang Patela736c002008-02-26 19:38:17 +0000513ReturnInst::ReturnInst(Value * const* retVals, unsigned N,
514 Instruction *InsertBefore)
Gabor Greiff6caff662008-05-10 08:32:32 +0000515 : TerminatorInst(Type::VoidTy, Instruction::Ret,
516 OperandTraits<ReturnInst>::op_end(this) - N,
517 N, InsertBefore) {
Devang Patela736c002008-02-26 19:38:17 +0000518 if (N != 0)
519 init(retVals, N);
520}
521ReturnInst::ReturnInst(Value * const* retVals, unsigned N,
522 BasicBlock *InsertAtEnd)
Gabor Greiff6caff662008-05-10 08:32:32 +0000523 : TerminatorInst(Type::VoidTy, Instruction::Ret,
524 OperandTraits<ReturnInst>::op_end(this) - N,
525 N, InsertAtEnd) {
Devang Patela736c002008-02-26 19:38:17 +0000526 if (N != 0)
527 init(retVals, N);
528}
529
Devang Patel060e79c2008-02-26 19:15:26 +0000530void ReturnInst::init(Value * const* retVals, unsigned N) {
Devang Patelc38eb522008-02-26 18:49:29 +0000531 assert (N > 0 && "Invalid operands numbers in ReturnInst init");
Devang Patel59643e52008-02-23 00:35:18 +0000532
Devang Patelc38eb522008-02-26 18:49:29 +0000533 NumOperands = N;
Devang Patel59643e52008-02-23 00:35:18 +0000534 if (NumOperands == 1) {
Devang Patel060e79c2008-02-26 19:15:26 +0000535 Value *V = *retVals;
Devang Patel59643e52008-02-23 00:35:18 +0000536 if (V->getType() == Type::VoidTy)
537 return;
Gabor Greif2d3024d2008-05-26 21:33:52 +0000538 Op<0>() = V;
Devang Patelae682fb2008-02-26 17:56:20 +0000539 return;
Devang Patel59643e52008-02-23 00:35:18 +0000540 }
541
Gabor Greiff6caff662008-05-10 08:32:32 +0000542 Use *OL = OperandList;
Devang Patel59643e52008-02-23 00:35:18 +0000543 for (unsigned i = 0; i < NumOperands; ++i) {
Devang Patel060e79c2008-02-26 19:15:26 +0000544 Value *V = *retVals++;
Devang Patel59643e52008-02-23 00:35:18 +0000545 assert(!isa<BasicBlock>(V) &&
546 "Cannot return basic block. Probably using the incorrect ctor");
Gabor Greif2d3024d2008-05-26 21:33:52 +0000547 OL[i] = V;
Devang Patel59643e52008-02-23 00:35:18 +0000548 }
549}
550
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000551unsigned ReturnInst::getNumSuccessorsV() const {
552 return getNumSuccessors();
553}
554
Devang Patelae682fb2008-02-26 17:56:20 +0000555/// Out-of-line ReturnInst method, put here so the C++ compiler can choose to
556/// emit the vtable for the class in this translation unit.
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000557void ReturnInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000558 assert(0 && "ReturnInst has no successors!");
559}
560
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000561BasicBlock *ReturnInst::getSuccessorV(unsigned idx) const {
562 assert(0 && "ReturnInst has no successors!");
563 abort();
564 return 0;
565}
566
Devang Patel59643e52008-02-23 00:35:18 +0000567ReturnInst::~ReturnInst() {
Devang Patel59643e52008-02-23 00:35:18 +0000568}
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000569
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000570//===----------------------------------------------------------------------===//
571// UnwindInst Implementation
572//===----------------------------------------------------------------------===//
573
Chris Lattner2195fc42007-02-24 00:55:48 +0000574UnwindInst::UnwindInst(Instruction *InsertBefore)
575 : TerminatorInst(Type::VoidTy, Instruction::Unwind, 0, 0, InsertBefore) {
576}
577UnwindInst::UnwindInst(BasicBlock *InsertAtEnd)
578 : TerminatorInst(Type::VoidTy, Instruction::Unwind, 0, 0, InsertAtEnd) {
579}
580
581
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000582unsigned UnwindInst::getNumSuccessorsV() const {
583 return getNumSuccessors();
584}
585
586void UnwindInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000587 assert(0 && "UnwindInst has no successors!");
588}
589
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000590BasicBlock *UnwindInst::getSuccessorV(unsigned idx) const {
591 assert(0 && "UnwindInst has no successors!");
592 abort();
593 return 0;
594}
595
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000596//===----------------------------------------------------------------------===//
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000597// UnreachableInst Implementation
598//===----------------------------------------------------------------------===//
599
Chris Lattner2195fc42007-02-24 00:55:48 +0000600UnreachableInst::UnreachableInst(Instruction *InsertBefore)
601 : TerminatorInst(Type::VoidTy, Instruction::Unreachable, 0, 0, InsertBefore) {
602}
603UnreachableInst::UnreachableInst(BasicBlock *InsertAtEnd)
604 : TerminatorInst(Type::VoidTy, Instruction::Unreachable, 0, 0, InsertAtEnd) {
605}
606
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000607unsigned UnreachableInst::getNumSuccessorsV() const {
608 return getNumSuccessors();
609}
610
611void UnreachableInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
612 assert(0 && "UnwindInst has no successors!");
613}
614
615BasicBlock *UnreachableInst::getSuccessorV(unsigned idx) const {
616 assert(0 && "UnwindInst has no successors!");
617 abort();
618 return 0;
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000619}
620
621//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000622// BranchInst Implementation
623//===----------------------------------------------------------------------===//
624
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000625void BranchInst::AssertOK() {
626 if (isConditional())
Reid Spencer542964f2007-01-11 18:21:29 +0000627 assert(getCondition()->getType() == Type::Int1Ty &&
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000628 "May only branch on boolean predicates!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000629}
630
Chris Lattner2195fc42007-02-24 00:55:48 +0000631BranchInst::BranchInst(BasicBlock *IfTrue, Instruction *InsertBefore)
Gabor Greiff6caff662008-05-10 08:32:32 +0000632 : TerminatorInst(Type::VoidTy, Instruction::Br,
633 OperandTraits<BranchInst>::op_end(this) - 1,
634 1, InsertBefore) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000635 assert(IfTrue != 0 && "Branch destination may not be null!");
Gabor Greif0a0f2c12008-05-27 10:48:39 +0000636 Op<0>() = IfTrue;
Chris Lattner2195fc42007-02-24 00:55:48 +0000637}
638BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
639 Instruction *InsertBefore)
Gabor Greiff6caff662008-05-10 08:32:32 +0000640 : TerminatorInst(Type::VoidTy, Instruction::Br,
641 OperandTraits<BranchInst>::op_end(this) - 3,
642 3, InsertBefore) {
Gabor Greif0a0f2c12008-05-27 10:48:39 +0000643 Op<0>() = IfTrue;
644 Op<1>() = IfFalse;
Gabor Greif2d3024d2008-05-26 21:33:52 +0000645 Op<2>() = Cond;
Chris Lattner2195fc42007-02-24 00:55:48 +0000646#ifndef NDEBUG
647 AssertOK();
648#endif
649}
650
651BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *InsertAtEnd)
Gabor Greiff6caff662008-05-10 08:32:32 +0000652 : TerminatorInst(Type::VoidTy, Instruction::Br,
653 OperandTraits<BranchInst>::op_end(this) - 1,
654 1, InsertAtEnd) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000655 assert(IfTrue != 0 && "Branch destination may not be null!");
Gabor Greif0a0f2c12008-05-27 10:48:39 +0000656 Op<0>() = IfTrue;
Chris Lattner2195fc42007-02-24 00:55:48 +0000657}
658
659BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
660 BasicBlock *InsertAtEnd)
Gabor Greiff6caff662008-05-10 08:32:32 +0000661 : TerminatorInst(Type::VoidTy, Instruction::Br,
662 OperandTraits<BranchInst>::op_end(this) - 3,
663 3, InsertAtEnd) {
Gabor Greif0a0f2c12008-05-27 10:48:39 +0000664 Op<0>() = IfTrue;
665 Op<1>() = IfFalse;
Gabor Greif2d3024d2008-05-26 21:33:52 +0000666 Op<2>() = Cond;
Chris Lattner2195fc42007-02-24 00:55:48 +0000667#ifndef NDEBUG
668 AssertOK();
669#endif
670}
671
672
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000673BranchInst::BranchInst(const BranchInst &BI) :
Gabor Greiff6caff662008-05-10 08:32:32 +0000674 TerminatorInst(Type::VoidTy, Instruction::Br,
675 OperandTraits<BranchInst>::op_end(this) - BI.getNumOperands(),
676 BI.getNumOperands()) {
Gabor Greif2d3024d2008-05-26 21:33:52 +0000677 OperandList[0] = BI.getOperand(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000678 if (BI.getNumOperands() != 1) {
679 assert(BI.getNumOperands() == 3 && "BR can have 1 or 3 operands!");
Gabor Greif2d3024d2008-05-26 21:33:52 +0000680 OperandList[1] = BI.getOperand(1);
681 OperandList[2] = BI.getOperand(2);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000682 }
683}
684
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000685BasicBlock *BranchInst::getSuccessorV(unsigned idx) const {
686 return getSuccessor(idx);
687}
688unsigned BranchInst::getNumSuccessorsV() const {
689 return getNumSuccessors();
690}
691void BranchInst::setSuccessorV(unsigned idx, BasicBlock *B) {
692 setSuccessor(idx, B);
693}
694
695
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000696//===----------------------------------------------------------------------===//
697// AllocationInst Implementation
698//===----------------------------------------------------------------------===//
699
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000700static Value *getAISize(Value *Amt) {
701 if (!Amt)
Reid Spencer8d9336d2006-12-31 05:26:44 +0000702 Amt = ConstantInt::get(Type::Int32Ty, 1);
Chris Lattnerbb7ff662006-05-10 04:32:43 +0000703 else {
704 assert(!isa<BasicBlock>(Amt) &&
Chris Lattner9b6ec772007-10-18 16:10:48 +0000705 "Passed basic block into allocation size parameter! Use other ctor");
Reid Spencer8d9336d2006-12-31 05:26:44 +0000706 assert(Amt->getType() == Type::Int32Ty &&
Reid Spencer7e16e232007-01-26 06:30:34 +0000707 "Malloc/Allocation array size is not a 32-bit integer!");
Chris Lattnerbb7ff662006-05-10 04:32:43 +0000708 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000709 return Amt;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000710}
711
Misha Brukmanb1c93172005-04-21 23:48:37 +0000712AllocationInst::AllocationInst(const Type *Ty, Value *ArraySize, unsigned iTy,
Nate Begeman848622f2005-11-05 09:21:28 +0000713 unsigned Align, const std::string &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000714 Instruction *InsertBefore)
Christopher Lambedf07882007-12-17 01:12:55 +0000715 : UnaryInstruction(PointerType::getUnqual(Ty), iTy, getAISize(ArraySize),
Dan Gohmanaa583d72008-03-24 16:55:58 +0000716 InsertBefore) {
717 setAlignment(Align);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000718 assert(Ty != Type::VoidTy && "Cannot allocate void!");
Chris Lattner0f048162007-02-13 07:54:42 +0000719 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000720}
721
Misha Brukmanb1c93172005-04-21 23:48:37 +0000722AllocationInst::AllocationInst(const Type *Ty, Value *ArraySize, unsigned iTy,
Nate Begeman848622f2005-11-05 09:21:28 +0000723 unsigned Align, const std::string &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000724 BasicBlock *InsertAtEnd)
Christopher Lambedf07882007-12-17 01:12:55 +0000725 : UnaryInstruction(PointerType::getUnqual(Ty), iTy, getAISize(ArraySize),
Dan Gohmanaa583d72008-03-24 16:55:58 +0000726 InsertAtEnd) {
727 setAlignment(Align);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000728 assert(Ty != Type::VoidTy && "Cannot allocate void!");
Chris Lattner0f048162007-02-13 07:54:42 +0000729 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000730}
731
Gordon Henriksen14a55692007-12-10 02:14:30 +0000732// Out of line virtual method, so the vtable, etc has a home.
733AllocationInst::~AllocationInst() {
734}
735
Dan Gohmanaa583d72008-03-24 16:55:58 +0000736void AllocationInst::setAlignment(unsigned Align) {
737 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
738 SubclassData = Log2_32(Align) + 1;
739 assert(getAlignment() == Align && "Alignment representation error!");
740}
741
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000742bool AllocationInst::isArrayAllocation() const {
Reid Spencera9e6e312007-03-01 20:27:41 +0000743 if (ConstantInt *CI = dyn_cast<ConstantInt>(getOperand(0)))
744 return CI->getZExtValue() != 1;
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000745 return true;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000746}
747
748const Type *AllocationInst::getAllocatedType() const {
749 return getType()->getElementType();
750}
751
752AllocaInst::AllocaInst(const AllocaInst &AI)
753 : AllocationInst(AI.getType()->getElementType(), (Value*)AI.getOperand(0),
Nate Begeman848622f2005-11-05 09:21:28 +0000754 Instruction::Alloca, AI.getAlignment()) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000755}
756
757MallocInst::MallocInst(const MallocInst &MI)
758 : AllocationInst(MI.getType()->getElementType(), (Value*)MI.getOperand(0),
Nate Begeman848622f2005-11-05 09:21:28 +0000759 Instruction::Malloc, MI.getAlignment()) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000760}
761
762//===----------------------------------------------------------------------===//
763// FreeInst Implementation
764//===----------------------------------------------------------------------===//
765
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000766void FreeInst::AssertOK() {
767 assert(isa<PointerType>(getOperand(0)->getType()) &&
768 "Can not free something of nonpointer type!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000769}
770
771FreeInst::FreeInst(Value *Ptr, Instruction *InsertBefore)
Chris Lattner2195fc42007-02-24 00:55:48 +0000772 : UnaryInstruction(Type::VoidTy, Free, Ptr, InsertBefore) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000773 AssertOK();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000774}
775
776FreeInst::FreeInst(Value *Ptr, BasicBlock *InsertAtEnd)
Chris Lattner2195fc42007-02-24 00:55:48 +0000777 : UnaryInstruction(Type::VoidTy, Free, Ptr, InsertAtEnd) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000778 AssertOK();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000779}
780
781
782//===----------------------------------------------------------------------===//
783// LoadInst Implementation
784//===----------------------------------------------------------------------===//
785
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000786void LoadInst::AssertOK() {
Misha Brukmanb1c93172005-04-21 23:48:37 +0000787 assert(isa<PointerType>(getOperand(0)->getType()) &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000788 "Ptr must have pointer type.");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000789}
790
791LoadInst::LoadInst(Value *Ptr, const std::string &Name, Instruction *InsertBef)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000792 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000793 Load, Ptr, InsertBef) {
Chris Lattnerdf57a022005-02-05 01:38:38 +0000794 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000795 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000796 AssertOK();
Chris Lattner0f048162007-02-13 07:54:42 +0000797 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000798}
799
800LoadInst::LoadInst(Value *Ptr, const std::string &Name, BasicBlock *InsertAE)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000801 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000802 Load, Ptr, InsertAE) {
Chris Lattnerdf57a022005-02-05 01:38:38 +0000803 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000804 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000805 AssertOK();
Chris Lattner0f048162007-02-13 07:54:42 +0000806 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000807}
808
809LoadInst::LoadInst(Value *Ptr, const std::string &Name, bool isVolatile,
810 Instruction *InsertBef)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000811 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000812 Load, Ptr, InsertBef) {
Chris Lattnerdf57a022005-02-05 01:38:38 +0000813 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +0000814 setAlignment(0);
815 AssertOK();
816 setName(Name);
817}
818
819LoadInst::LoadInst(Value *Ptr, const std::string &Name, bool isVolatile,
820 unsigned Align, Instruction *InsertBef)
821 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
822 Load, Ptr, InsertBef) {
823 setVolatile(isVolatile);
824 setAlignment(Align);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000825 AssertOK();
Chris Lattner0f048162007-02-13 07:54:42 +0000826 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000827}
828
Dan Gohman68659282007-07-18 20:51:11 +0000829LoadInst::LoadInst(Value *Ptr, const std::string &Name, bool isVolatile,
830 unsigned Align, BasicBlock *InsertAE)
831 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
832 Load, Ptr, InsertAE) {
833 setVolatile(isVolatile);
834 setAlignment(Align);
835 AssertOK();
836 setName(Name);
837}
838
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000839LoadInst::LoadInst(Value *Ptr, const std::string &Name, bool isVolatile,
840 BasicBlock *InsertAE)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000841 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000842 Load, Ptr, InsertAE) {
Chris Lattner0f048162007-02-13 07:54:42 +0000843 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +0000844 setAlignment(0);
Chris Lattner0f048162007-02-13 07:54:42 +0000845 AssertOK();
846 setName(Name);
847}
848
849
850
851LoadInst::LoadInst(Value *Ptr, const char *Name, Instruction *InsertBef)
Chris Lattner2195fc42007-02-24 00:55:48 +0000852 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
853 Load, Ptr, InsertBef) {
Chris Lattner0f048162007-02-13 07:54:42 +0000854 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000855 setAlignment(0);
Chris Lattner0f048162007-02-13 07:54:42 +0000856 AssertOK();
Chris Lattner2195fc42007-02-24 00:55:48 +0000857 if (Name && Name[0]) setName(Name);
Chris Lattner0f048162007-02-13 07:54:42 +0000858}
859
860LoadInst::LoadInst(Value *Ptr, const char *Name, BasicBlock *InsertAE)
Chris Lattner2195fc42007-02-24 00:55:48 +0000861 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
862 Load, Ptr, InsertAE) {
Chris Lattner0f048162007-02-13 07:54:42 +0000863 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000864 setAlignment(0);
Chris Lattner0f048162007-02-13 07:54:42 +0000865 AssertOK();
Chris Lattner2195fc42007-02-24 00:55:48 +0000866 if (Name && Name[0]) setName(Name);
Chris Lattner0f048162007-02-13 07:54:42 +0000867}
868
869LoadInst::LoadInst(Value *Ptr, const char *Name, bool isVolatile,
870 Instruction *InsertBef)
871: UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000872 Load, Ptr, InsertBef) {
Chris Lattner0f048162007-02-13 07:54:42 +0000873 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +0000874 setAlignment(0);
Chris Lattner0f048162007-02-13 07:54:42 +0000875 AssertOK();
Chris Lattner2195fc42007-02-24 00:55:48 +0000876 if (Name && Name[0]) setName(Name);
Chris Lattner0f048162007-02-13 07:54:42 +0000877}
878
879LoadInst::LoadInst(Value *Ptr, const char *Name, bool isVolatile,
880 BasicBlock *InsertAE)
Chris Lattner2195fc42007-02-24 00:55:48 +0000881 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
882 Load, Ptr, InsertAE) {
Chris Lattnerdf57a022005-02-05 01:38:38 +0000883 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +0000884 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000885 AssertOK();
Chris Lattner2195fc42007-02-24 00:55:48 +0000886 if (Name && Name[0]) setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000887}
888
Christopher Lamb84485702007-04-22 19:24:39 +0000889void LoadInst::setAlignment(unsigned Align) {
890 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
891 SubclassData = (SubclassData & 1) | ((Log2_32(Align)+1)<<1);
892}
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000893
894//===----------------------------------------------------------------------===//
895// StoreInst Implementation
896//===----------------------------------------------------------------------===//
897
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000898void StoreInst::AssertOK() {
899 assert(isa<PointerType>(getOperand(1)->getType()) &&
900 "Ptr must have pointer type!");
901 assert(getOperand(0)->getType() ==
902 cast<PointerType>(getOperand(1)->getType())->getElementType()
Alkis Evlogimenos079fbde2004-08-06 14:33:37 +0000903 && "Ptr must be a pointer to Val type!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000904}
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000905
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000906
907StoreInst::StoreInst(Value *val, Value *addr, Instruction *InsertBefore)
Gabor Greiff6caff662008-05-10 08:32:32 +0000908 : Instruction(Type::VoidTy, Store,
909 OperandTraits<StoreInst>::op_begin(this),
910 OperandTraits<StoreInst>::operands(this),
911 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +0000912 Op<0>() = val;
913 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +0000914 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000915 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000916 AssertOK();
917}
918
919StoreInst::StoreInst(Value *val, Value *addr, BasicBlock *InsertAtEnd)
Gabor Greiff6caff662008-05-10 08:32:32 +0000920 : Instruction(Type::VoidTy, Store,
921 OperandTraits<StoreInst>::op_begin(this),
922 OperandTraits<StoreInst>::operands(this),
923 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +0000924 Op<0>() = val;
925 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +0000926 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000927 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000928 AssertOK();
929}
930
Misha Brukmanb1c93172005-04-21 23:48:37 +0000931StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000932 Instruction *InsertBefore)
Gabor Greiff6caff662008-05-10 08:32:32 +0000933 : Instruction(Type::VoidTy, Store,
934 OperandTraits<StoreInst>::op_begin(this),
935 OperandTraits<StoreInst>::operands(this),
936 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +0000937 Op<0>() = val;
938 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +0000939 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +0000940 setAlignment(0);
941 AssertOK();
942}
943
944StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
945 unsigned Align, Instruction *InsertBefore)
Gabor Greiff6caff662008-05-10 08:32:32 +0000946 : Instruction(Type::VoidTy, Store,
947 OperandTraits<StoreInst>::op_begin(this),
948 OperandTraits<StoreInst>::operands(this),
949 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +0000950 Op<0>() = val;
951 Op<1>() = addr;
Christopher Lamb84485702007-04-22 19:24:39 +0000952 setVolatile(isVolatile);
953 setAlignment(Align);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000954 AssertOK();
955}
956
Misha Brukmanb1c93172005-04-21 23:48:37 +0000957StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Dan Gohman68659282007-07-18 20:51:11 +0000958 unsigned Align, BasicBlock *InsertAtEnd)
Gabor Greiff6caff662008-05-10 08:32:32 +0000959 : Instruction(Type::VoidTy, Store,
960 OperandTraits<StoreInst>::op_begin(this),
961 OperandTraits<StoreInst>::operands(this),
962 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +0000963 Op<0>() = val;
964 Op<1>() = addr;
Dan Gohman68659282007-07-18 20:51:11 +0000965 setVolatile(isVolatile);
966 setAlignment(Align);
967 AssertOK();
968}
969
970StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000971 BasicBlock *InsertAtEnd)
Gabor Greiff6caff662008-05-10 08:32:32 +0000972 : Instruction(Type::VoidTy, Store,
973 OperandTraits<StoreInst>::op_begin(this),
974 OperandTraits<StoreInst>::operands(this),
975 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +0000976 Op<0>() = val;
977 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +0000978 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +0000979 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000980 AssertOK();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000981}
982
Christopher Lamb84485702007-04-22 19:24:39 +0000983void StoreInst::setAlignment(unsigned Align) {
984 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
985 SubclassData = (SubclassData & 1) | ((Log2_32(Align)+1)<<1);
986}
987
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000988//===----------------------------------------------------------------------===//
989// GetElementPtrInst Implementation
990//===----------------------------------------------------------------------===//
991
Christopher Lambedf07882007-12-17 01:12:55 +0000992static unsigned retrieveAddrSpace(const Value *Val) {
993 return cast<PointerType>(Val->getType())->getAddressSpace();
994}
995
Chris Lattner79807c3d2007-01-31 19:47:18 +0000996void GetElementPtrInst::init(Value *Ptr, Value* const *Idx, unsigned NumIdx) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000997 assert(NumOperands == 1+NumIdx && "NumOperands not initialized?");
998 Use *OL = OperandList;
Gabor Greif2d3024d2008-05-26 21:33:52 +0000999 OL[0] = Ptr;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001000
Chris Lattner79807c3d2007-01-31 19:47:18 +00001001 for (unsigned i = 0; i != NumIdx; ++i)
Gabor Greif2d3024d2008-05-26 21:33:52 +00001002 OL[i+1] = Idx[i];
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001003}
1004
Chris Lattner82981202005-05-03 05:43:30 +00001005void GetElementPtrInst::init(Value *Ptr, Value *Idx) {
Gabor Greiff6caff662008-05-10 08:32:32 +00001006 assert(NumOperands == 2 && "NumOperands not initialized?");
1007 Use *OL = OperandList;
Gabor Greif2d3024d2008-05-26 21:33:52 +00001008 OL[0] = Ptr;
1009 OL[1] = Idx;
Chris Lattner82981202005-05-03 05:43:30 +00001010}
1011
Gabor Greiff6caff662008-05-10 08:32:32 +00001012GetElementPtrInst::GetElementPtrInst(const GetElementPtrInst &GEPI)
1013 : Instruction(reinterpret_cast<const Type*>(GEPI.getType()), GetElementPtr,
Gabor Greif697e94c2008-05-15 10:04:30 +00001014 OperandTraits<GetElementPtrInst>::op_end(this)
1015 - GEPI.getNumOperands(),
Gabor Greiff6caff662008-05-10 08:32:32 +00001016 GEPI.getNumOperands()) {
1017 Use *OL = OperandList;
1018 Use *GEPIOL = GEPI.OperandList;
1019 for (unsigned i = 0, E = NumOperands; i != E; ++i)
Gabor Greif2d3024d2008-05-26 21:33:52 +00001020 OL[i] = GEPIOL[i];
Gabor Greiff6caff662008-05-10 08:32:32 +00001021}
1022
Chris Lattner82981202005-05-03 05:43:30 +00001023GetElementPtrInst::GetElementPtrInst(Value *Ptr, Value *Idx,
1024 const std::string &Name, Instruction *InBe)
Christopher Lamb54dd24c2007-12-11 08:59:05 +00001025 : Instruction(PointerType::get(checkType(getIndexedType(Ptr->getType(),Idx)),
Christopher Lambedf07882007-12-17 01:12:55 +00001026 retrieveAddrSpace(Ptr)),
Gabor Greiff6caff662008-05-10 08:32:32 +00001027 GetElementPtr,
1028 OperandTraits<GetElementPtrInst>::op_end(this) - 2,
1029 2, InBe) {
Chris Lattner82981202005-05-03 05:43:30 +00001030 init(Ptr, Idx);
Chris Lattner2195fc42007-02-24 00:55:48 +00001031 setName(Name);
Chris Lattner82981202005-05-03 05:43:30 +00001032}
1033
1034GetElementPtrInst::GetElementPtrInst(Value *Ptr, Value *Idx,
1035 const std::string &Name, BasicBlock *IAE)
Christopher Lamb54dd24c2007-12-11 08:59:05 +00001036 : Instruction(PointerType::get(checkType(getIndexedType(Ptr->getType(),Idx)),
Christopher Lambedf07882007-12-17 01:12:55 +00001037 retrieveAddrSpace(Ptr)),
Gabor Greiff6caff662008-05-10 08:32:32 +00001038 GetElementPtr,
1039 OperandTraits<GetElementPtrInst>::op_end(this) - 2,
1040 2, IAE) {
Chris Lattner82981202005-05-03 05:43:30 +00001041 init(Ptr, Idx);
Chris Lattner2195fc42007-02-24 00:55:48 +00001042 setName(Name);
Chris Lattner82981202005-05-03 05:43:30 +00001043}
1044
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001045// getIndexedType - Returns the type of the element that would be loaded with
1046// a load instruction with the specified parameters.
1047//
Misha Brukmanb1c93172005-04-21 23:48:37 +00001048// A null type is returned if the indices are invalid for the specified
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001049// pointer type.
1050//
Misha Brukmanb1c93172005-04-21 23:48:37 +00001051const Type* GetElementPtrInst::getIndexedType(const Type *Ptr,
Chris Lattner302116a2007-01-31 04:40:28 +00001052 Value* const *Idxs,
Dan Gohman12fce772008-05-15 19:50:34 +00001053 unsigned NumIdx) {
1054 const PointerType *PTy = dyn_cast<PointerType>(Ptr);
1055 if (!PTy) return 0; // Type isn't a pointer type!
1056 const Type *Agg = PTy->getElementType();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001057
1058 // Handle the special case of the empty set index set...
Dan Gohman12fce772008-05-15 19:50:34 +00001059 if (NumIdx == 0)
1060 return Agg;
Misha Brukmanb1c93172005-04-21 23:48:37 +00001061
Dan Gohman12fce772008-05-15 19:50:34 +00001062 return ExtractValueInst::getIndexedType(Agg, Idxs+1, Idxs+NumIdx);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001063}
1064
Chris Lattner82981202005-05-03 05:43:30 +00001065const Type* GetElementPtrInst::getIndexedType(const Type *Ptr, Value *Idx) {
1066 const PointerType *PTy = dyn_cast<PointerType>(Ptr);
1067 if (!PTy) return 0; // Type isn't a pointer type!
1068
1069 // Check the pointer index.
1070 if (!PTy->indexValid(Idx)) return 0;
1071
Chris Lattnerc2233332005-05-03 16:44:45 +00001072 return PTy->getElementType();
Chris Lattner82981202005-05-03 05:43:30 +00001073}
1074
Chris Lattner45f15572007-04-14 00:12:57 +00001075
1076/// hasAllZeroIndices - Return true if all of the indices of this GEP are
1077/// zeros. If so, the result pointer and the first operand have the same
1078/// value, just potentially different types.
1079bool GetElementPtrInst::hasAllZeroIndices() const {
1080 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
1081 if (ConstantInt *CI = dyn_cast<ConstantInt>(getOperand(i))) {
1082 if (!CI->isZero()) return false;
1083 } else {
1084 return false;
1085 }
1086 }
1087 return true;
1088}
1089
Chris Lattner27058292007-04-27 20:35:56 +00001090/// hasAllConstantIndices - Return true if all of the indices of this GEP are
1091/// constant integers. If so, the result pointer and the first operand have
1092/// a constant offset between them.
1093bool GetElementPtrInst::hasAllConstantIndices() const {
1094 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
1095 if (!isa<ConstantInt>(getOperand(i)))
1096 return false;
1097 }
1098 return true;
1099}
1100
Chris Lattner45f15572007-04-14 00:12:57 +00001101
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001102//===----------------------------------------------------------------------===//
Robert Bocchino23004482006-01-10 19:05:34 +00001103// ExtractElementInst Implementation
1104//===----------------------------------------------------------------------===//
1105
1106ExtractElementInst::ExtractElementInst(Value *Val, Value *Index,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001107 const std::string &Name,
1108 Instruction *InsertBef)
Reid Spencerd84d35b2007-02-15 02:26:10 +00001109 : Instruction(cast<VectorType>(Val->getType())->getElementType(),
Gabor Greiff6caff662008-05-10 08:32:32 +00001110 ExtractElement,
1111 OperandTraits<ExtractElementInst>::op_begin(this),
1112 2, InsertBef) {
Chris Lattner54865b32006-04-08 04:05:48 +00001113 assert(isValidOperands(Val, Index) &&
1114 "Invalid extractelement instruction operands!");
Gabor Greif2d3024d2008-05-26 21:33:52 +00001115 Op<0>() = Val;
1116 Op<1>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001117 setName(Name);
Robert Bocchino23004482006-01-10 19:05:34 +00001118}
1119
Chris Lattner65511ff2006-10-05 06:24:58 +00001120ExtractElementInst::ExtractElementInst(Value *Val, unsigned IndexV,
1121 const std::string &Name,
1122 Instruction *InsertBef)
Reid Spencerd84d35b2007-02-15 02:26:10 +00001123 : Instruction(cast<VectorType>(Val->getType())->getElementType(),
Gabor Greiff6caff662008-05-10 08:32:32 +00001124 ExtractElement,
1125 OperandTraits<ExtractElementInst>::op_begin(this),
1126 2, InsertBef) {
Reid Spencer8d9336d2006-12-31 05:26:44 +00001127 Constant *Index = ConstantInt::get(Type::Int32Ty, IndexV);
Chris Lattner65511ff2006-10-05 06:24:58 +00001128 assert(isValidOperands(Val, Index) &&
1129 "Invalid extractelement instruction operands!");
Gabor Greif2d3024d2008-05-26 21:33:52 +00001130 Op<0>() = Val;
1131 Op<1>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001132 setName(Name);
Chris Lattner65511ff2006-10-05 06:24:58 +00001133}
1134
1135
Robert Bocchino23004482006-01-10 19:05:34 +00001136ExtractElementInst::ExtractElementInst(Value *Val, Value *Index,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001137 const std::string &Name,
1138 BasicBlock *InsertAE)
Reid Spencerd84d35b2007-02-15 02:26:10 +00001139 : Instruction(cast<VectorType>(Val->getType())->getElementType(),
Gabor Greiff6caff662008-05-10 08:32:32 +00001140 ExtractElement,
1141 OperandTraits<ExtractElementInst>::op_begin(this),
1142 2, InsertAE) {
Chris Lattner54865b32006-04-08 04:05:48 +00001143 assert(isValidOperands(Val, Index) &&
1144 "Invalid extractelement instruction operands!");
1145
Gabor Greif2d3024d2008-05-26 21:33:52 +00001146 Op<0>() = Val;
1147 Op<1>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001148 setName(Name);
Robert Bocchino23004482006-01-10 19:05:34 +00001149}
1150
Chris Lattner65511ff2006-10-05 06:24:58 +00001151ExtractElementInst::ExtractElementInst(Value *Val, unsigned IndexV,
1152 const std::string &Name,
1153 BasicBlock *InsertAE)
Reid Spencerd84d35b2007-02-15 02:26:10 +00001154 : Instruction(cast<VectorType>(Val->getType())->getElementType(),
Gabor Greiff6caff662008-05-10 08:32:32 +00001155 ExtractElement,
1156 OperandTraits<ExtractElementInst>::op_begin(this),
1157 2, InsertAE) {
Reid Spencer8d9336d2006-12-31 05:26:44 +00001158 Constant *Index = ConstantInt::get(Type::Int32Ty, IndexV);
Chris Lattner65511ff2006-10-05 06:24:58 +00001159 assert(isValidOperands(Val, Index) &&
1160 "Invalid extractelement instruction operands!");
1161
Gabor Greif2d3024d2008-05-26 21:33:52 +00001162 Op<0>() = Val;
1163 Op<1>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001164 setName(Name);
Chris Lattner65511ff2006-10-05 06:24:58 +00001165}
1166
1167
Chris Lattner54865b32006-04-08 04:05:48 +00001168bool ExtractElementInst::isValidOperands(const Value *Val, const Value *Index) {
Reid Spencerd84d35b2007-02-15 02:26:10 +00001169 if (!isa<VectorType>(Val->getType()) || Index->getType() != Type::Int32Ty)
Chris Lattner54865b32006-04-08 04:05:48 +00001170 return false;
1171 return true;
1172}
1173
1174
Robert Bocchino23004482006-01-10 19:05:34 +00001175//===----------------------------------------------------------------------===//
Robert Bocchinoca27f032006-01-17 20:07:22 +00001176// InsertElementInst Implementation
1177//===----------------------------------------------------------------------===//
1178
Chris Lattner0875d942006-04-14 22:20:32 +00001179InsertElementInst::InsertElementInst(const InsertElementInst &IE)
Gabor Greiff6caff662008-05-10 08:32:32 +00001180 : Instruction(IE.getType(), InsertElement,
1181 OperandTraits<InsertElementInst>::op_begin(this), 3) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001182 Op<0>() = IE.Op<0>();
1183 Op<1>() = IE.Op<1>();
1184 Op<2>() = IE.Op<2>();
Chris Lattner0875d942006-04-14 22:20:32 +00001185}
Chris Lattner54865b32006-04-08 04:05:48 +00001186InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, Value *Index,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001187 const std::string &Name,
1188 Instruction *InsertBef)
Gabor Greiff6caff662008-05-10 08:32:32 +00001189 : Instruction(Vec->getType(), InsertElement,
1190 OperandTraits<InsertElementInst>::op_begin(this),
1191 3, InsertBef) {
Chris Lattner54865b32006-04-08 04:05:48 +00001192 assert(isValidOperands(Vec, Elt, Index) &&
1193 "Invalid insertelement instruction operands!");
Gabor Greif2d3024d2008-05-26 21:33:52 +00001194 Op<0>() = Vec;
1195 Op<1>() = Elt;
1196 Op<2>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001197 setName(Name);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001198}
1199
Chris Lattner65511ff2006-10-05 06:24:58 +00001200InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, unsigned IndexV,
1201 const std::string &Name,
1202 Instruction *InsertBef)
Gabor Greiff6caff662008-05-10 08:32:32 +00001203 : Instruction(Vec->getType(), InsertElement,
1204 OperandTraits<InsertElementInst>::op_begin(this),
1205 3, InsertBef) {
Reid Spencer8d9336d2006-12-31 05:26:44 +00001206 Constant *Index = ConstantInt::get(Type::Int32Ty, IndexV);
Chris Lattner65511ff2006-10-05 06:24:58 +00001207 assert(isValidOperands(Vec, Elt, Index) &&
1208 "Invalid insertelement instruction operands!");
Gabor Greif2d3024d2008-05-26 21:33:52 +00001209 Op<0>() = Vec;
1210 Op<1>() = Elt;
1211 Op<2>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001212 setName(Name);
Chris Lattner65511ff2006-10-05 06:24:58 +00001213}
1214
1215
Chris Lattner54865b32006-04-08 04:05:48 +00001216InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, Value *Index,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001217 const std::string &Name,
1218 BasicBlock *InsertAE)
Gabor Greiff6caff662008-05-10 08:32:32 +00001219 : Instruction(Vec->getType(), InsertElement,
1220 OperandTraits<InsertElementInst>::op_begin(this),
1221 3, InsertAE) {
Chris Lattner54865b32006-04-08 04:05:48 +00001222 assert(isValidOperands(Vec, Elt, Index) &&
1223 "Invalid insertelement instruction operands!");
1224
Gabor Greif2d3024d2008-05-26 21:33:52 +00001225 Op<0>() = Vec;
1226 Op<1>() = Elt;
1227 Op<2>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001228 setName(Name);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001229}
1230
Chris Lattner65511ff2006-10-05 06:24:58 +00001231InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, unsigned IndexV,
1232 const std::string &Name,
1233 BasicBlock *InsertAE)
Gabor Greiff6caff662008-05-10 08:32:32 +00001234: Instruction(Vec->getType(), InsertElement,
1235 OperandTraits<InsertElementInst>::op_begin(this),
1236 3, InsertAE) {
Reid Spencer8d9336d2006-12-31 05:26:44 +00001237 Constant *Index = ConstantInt::get(Type::Int32Ty, IndexV);
Chris Lattner65511ff2006-10-05 06:24:58 +00001238 assert(isValidOperands(Vec, Elt, Index) &&
1239 "Invalid insertelement instruction operands!");
1240
Gabor Greif2d3024d2008-05-26 21:33:52 +00001241 Op<0>() = Vec;
1242 Op<1>() = Elt;
1243 Op<2>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001244 setName(Name);
Chris Lattner65511ff2006-10-05 06:24:58 +00001245}
1246
Chris Lattner54865b32006-04-08 04:05:48 +00001247bool InsertElementInst::isValidOperands(const Value *Vec, const Value *Elt,
1248 const Value *Index) {
Reid Spencerd84d35b2007-02-15 02:26:10 +00001249 if (!isa<VectorType>(Vec->getType()))
Reid Spencer09575ba2007-02-15 03:39:18 +00001250 return false; // First operand of insertelement must be vector type.
Chris Lattner54865b32006-04-08 04:05:48 +00001251
Reid Spencerd84d35b2007-02-15 02:26:10 +00001252 if (Elt->getType() != cast<VectorType>(Vec->getType())->getElementType())
Dan Gohmanfead7972007-05-11 21:43:24 +00001253 return false;// Second operand of insertelement must be vector element type.
Chris Lattner54865b32006-04-08 04:05:48 +00001254
Reid Spencer8d9336d2006-12-31 05:26:44 +00001255 if (Index->getType() != Type::Int32Ty)
Chris Lattner54865b32006-04-08 04:05:48 +00001256 return false; // Third operand of insertelement must be uint.
1257 return true;
1258}
1259
1260
Robert Bocchinoca27f032006-01-17 20:07:22 +00001261//===----------------------------------------------------------------------===//
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001262// ShuffleVectorInst Implementation
1263//===----------------------------------------------------------------------===//
1264
Chris Lattner0875d942006-04-14 22:20:32 +00001265ShuffleVectorInst::ShuffleVectorInst(const ShuffleVectorInst &SV)
Gabor Greiff6caff662008-05-10 08:32:32 +00001266 : Instruction(SV.getType(), ShuffleVector,
1267 OperandTraits<ShuffleVectorInst>::op_begin(this),
1268 OperandTraits<ShuffleVectorInst>::operands(this)) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001269 Op<0>() = SV.Op<0>();
1270 Op<1>() = SV.Op<1>();
1271 Op<2>() = SV.Op<2>();
Chris Lattner0875d942006-04-14 22:20:32 +00001272}
1273
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001274ShuffleVectorInst::ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
1275 const std::string &Name,
1276 Instruction *InsertBefore)
Gabor Greiff6caff662008-05-10 08:32:32 +00001277 : Instruction(V1->getType(), ShuffleVector,
1278 OperandTraits<ShuffleVectorInst>::op_begin(this),
1279 OperandTraits<ShuffleVectorInst>::operands(this),
1280 InsertBefore) {
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001281 assert(isValidOperands(V1, V2, Mask) &&
1282 "Invalid shuffle vector instruction operands!");
Gabor Greif2d3024d2008-05-26 21:33:52 +00001283 Op<0>() = V1;
1284 Op<1>() = V2;
1285 Op<2>() = Mask;
Chris Lattner2195fc42007-02-24 00:55:48 +00001286 setName(Name);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001287}
1288
1289ShuffleVectorInst::ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
1290 const std::string &Name,
1291 BasicBlock *InsertAtEnd)
Gabor Greiff6caff662008-05-10 08:32:32 +00001292 : Instruction(V1->getType(), ShuffleVector,
1293 OperandTraits<ShuffleVectorInst>::op_begin(this),
1294 OperandTraits<ShuffleVectorInst>::operands(this),
1295 InsertAtEnd) {
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001296 assert(isValidOperands(V1, V2, Mask) &&
1297 "Invalid shuffle vector instruction operands!");
1298
Gabor Greif2d3024d2008-05-26 21:33:52 +00001299 Op<0>() = V1;
1300 Op<1>() = V2;
1301 Op<2>() = Mask;
Chris Lattner2195fc42007-02-24 00:55:48 +00001302 setName(Name);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001303}
1304
1305bool ShuffleVectorInst::isValidOperands(const Value *V1, const Value *V2,
1306 const Value *Mask) {
Chris Lattnerf724e342008-03-02 05:28:33 +00001307 if (!isa<VectorType>(V1->getType()) ||
1308 V1->getType() != V2->getType())
1309 return false;
1310
1311 const VectorType *MaskTy = dyn_cast<VectorType>(Mask->getType());
1312 if (!isa<Constant>(Mask) || MaskTy == 0 ||
1313 MaskTy->getElementType() != Type::Int32Ty ||
1314 MaskTy->getNumElements() !=
1315 cast<VectorType>(V1->getType())->getNumElements())
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001316 return false;
1317 return true;
1318}
1319
Chris Lattnerf724e342008-03-02 05:28:33 +00001320/// getMaskValue - Return the index from the shuffle mask for the specified
1321/// output result. This is either -1 if the element is undef or a number less
1322/// than 2*numelements.
1323int ShuffleVectorInst::getMaskValue(unsigned i) const {
1324 const Constant *Mask = cast<Constant>(getOperand(2));
1325 if (isa<UndefValue>(Mask)) return -1;
1326 if (isa<ConstantAggregateZero>(Mask)) return 0;
1327 const ConstantVector *MaskCV = cast<ConstantVector>(Mask);
1328 assert(i < MaskCV->getNumOperands() && "Index out of range");
1329
1330 if (isa<UndefValue>(MaskCV->getOperand(i)))
1331 return -1;
1332 return cast<ConstantInt>(MaskCV->getOperand(i))->getZExtValue();
1333}
1334
Dan Gohman12fce772008-05-15 19:50:34 +00001335//===----------------------------------------------------------------------===//
Dan Gohman0752bff2008-05-23 00:36:11 +00001336// InsertValueInst Class
1337//===----------------------------------------------------------------------===//
1338
1339void InsertValueInst::init(Value *Agg, Value *Val, Value* const *Idx, unsigned NumIdx) {
1340 assert(NumOperands == 1+NumIdx && "NumOperands not initialized?");
1341 Use *OL = OperandList;
Gabor Greif2d3024d2008-05-26 21:33:52 +00001342 OL[0] = Agg;
1343 OL[1] = Val;
Dan Gohman0752bff2008-05-23 00:36:11 +00001344
1345 for (unsigned i = 0; i != NumIdx; ++i)
Gabor Greif2d3024d2008-05-26 21:33:52 +00001346 OL[i+2] = Idx[i];
Dan Gohman0752bff2008-05-23 00:36:11 +00001347}
1348
1349void InsertValueInst::init(Value *Agg, Value *Val, Value *Idx) {
1350 assert(NumOperands == 3 && "NumOperands not initialized?");
1351 Use *OL = OperandList;
Gabor Greif2d3024d2008-05-26 21:33:52 +00001352 OL[0] = Agg;
1353 OL[1] = Val;
1354 OL[2] = Idx;
Dan Gohman0752bff2008-05-23 00:36:11 +00001355}
1356
1357InsertValueInst::InsertValueInst(const InsertValueInst &IVI)
1358 : Instruction(reinterpret_cast<const Type*>(IVI.getType()), InsertValue,
1359 OperandTraits<InsertValueInst>::op_end(this)
1360 - IVI.getNumOperands(),
1361 IVI.getNumOperands()) {
1362 Use *OL = OperandList;
1363 Use *IVIOL = IVI.OperandList;
1364 for (unsigned i = 0, E = NumOperands; i != E; ++i)
Gabor Greif2d3024d2008-05-26 21:33:52 +00001365 OL[i] = IVIOL[i];
Dan Gohman0752bff2008-05-23 00:36:11 +00001366}
1367
1368//===----------------------------------------------------------------------===//
Dan Gohman12fce772008-05-15 19:50:34 +00001369// ExtractValueInst Class
1370//===----------------------------------------------------------------------===//
1371
Dan Gohman0752bff2008-05-23 00:36:11 +00001372void ExtractValueInst::init(Value *Agg, Value* const *Idx, unsigned NumIdx) {
1373 assert(NumOperands == 1+NumIdx && "NumOperands not initialized?");
1374 Use *OL = OperandList;
Gabor Greif2d3024d2008-05-26 21:33:52 +00001375 OL[0] = Agg;
Dan Gohman0752bff2008-05-23 00:36:11 +00001376
1377 for (unsigned i = 0; i != NumIdx; ++i)
Gabor Greif2d3024d2008-05-26 21:33:52 +00001378 OL[i+1] = Idx[i];
Dan Gohman0752bff2008-05-23 00:36:11 +00001379}
1380
1381void ExtractValueInst::init(Value *Agg, Value *Idx) {
1382 assert(NumOperands == 2 && "NumOperands not initialized?");
1383 Use *OL = OperandList;
Gabor Greif2d3024d2008-05-26 21:33:52 +00001384 OL[0] = Agg;
1385 OL[1] = Idx;
Dan Gohman0752bff2008-05-23 00:36:11 +00001386}
1387
1388ExtractValueInst::ExtractValueInst(const ExtractValueInst &EVI)
1389 : Instruction(reinterpret_cast<const Type*>(EVI.getType()), ExtractValue,
1390 OperandTraits<ExtractValueInst>::op_end(this)
1391 - EVI.getNumOperands(),
1392 EVI.getNumOperands()) {
1393 Use *OL = OperandList;
1394 Use *EVIOL = EVI.OperandList;
1395 for (unsigned i = 0, E = NumOperands; i != E; ++i)
Gabor Greif2d3024d2008-05-26 21:33:52 +00001396 OL[i] = EVIOL[i];
Dan Gohman0752bff2008-05-23 00:36:11 +00001397}
1398
Dan Gohman12fce772008-05-15 19:50:34 +00001399// getIndexedType - Returns the type of the element that would be extracted
1400// with an extractvalue instruction with the specified parameters.
1401//
1402// A null type is returned if the indices are invalid for the specified
1403// pointer type.
1404//
1405const Type* ExtractValueInst::getIndexedType(const Type *Agg,
1406 Value* const *Idxs,
1407 unsigned NumIdx) {
1408 unsigned CurIdx = 0;
1409 for (; CurIdx != NumIdx; ++CurIdx) {
1410 const CompositeType *CT = dyn_cast<CompositeType>(Agg);
Dan Gohman2f156ae2008-05-16 00:16:32 +00001411 if (!CT || isa<PointerType>(CT)) return 0;
Dan Gohman12fce772008-05-15 19:50:34 +00001412 Value *Index = Idxs[CurIdx];
1413 if (!CT->indexValid(Index)) return 0;
1414 Agg = CT->getTypeAtIndex(Index);
1415
1416 // If the new type forwards to another type, then it is in the middle
1417 // of being refined to another type (and hence, may have dropped all
1418 // references to what it was using before). So, use the new forwarded
1419 // type.
1420 if (const Type *Ty = Agg->getForwardedType())
1421 Agg = Ty;
1422 }
1423 return CurIdx == NumIdx ? Agg : 0;
1424}
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001425
1426//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001427// BinaryOperator Class
1428//===----------------------------------------------------------------------===//
1429
Chris Lattner2195fc42007-02-24 00:55:48 +00001430BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2,
1431 const Type *Ty, const std::string &Name,
1432 Instruction *InsertBefore)
Gabor Greiff6caff662008-05-10 08:32:32 +00001433 : Instruction(Ty, iType,
1434 OperandTraits<BinaryOperator>::op_begin(this),
1435 OperandTraits<BinaryOperator>::operands(this),
1436 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001437 Op<0>() = S1;
1438 Op<1>() = S2;
Chris Lattner2195fc42007-02-24 00:55:48 +00001439 init(iType);
1440 setName(Name);
1441}
1442
1443BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2,
1444 const Type *Ty, const std::string &Name,
1445 BasicBlock *InsertAtEnd)
Gabor Greiff6caff662008-05-10 08:32:32 +00001446 : Instruction(Ty, iType,
1447 OperandTraits<BinaryOperator>::op_begin(this),
1448 OperandTraits<BinaryOperator>::operands(this),
1449 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001450 Op<0>() = S1;
1451 Op<1>() = S2;
Chris Lattner2195fc42007-02-24 00:55:48 +00001452 init(iType);
1453 setName(Name);
1454}
1455
1456
1457void BinaryOperator::init(BinaryOps iType) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001458 Value *LHS = getOperand(0), *RHS = getOperand(1);
Chris Lattnerf14c76c2007-02-01 04:59:37 +00001459 LHS = LHS; RHS = RHS; // Silence warnings.
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001460 assert(LHS->getType() == RHS->getType() &&
1461 "Binary operator operand types must match!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001462#ifndef NDEBUG
1463 switch (iType) {
1464 case Add: case Sub:
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001465 case Mul:
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001466 assert(getType() == LHS->getType() &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001467 "Arithmetic operation should return same type as operands!");
Chris Lattner03c49532007-01-15 02:27:26 +00001468 assert((getType()->isInteger() || getType()->isFloatingPoint() ||
Reid Spencerd84d35b2007-02-15 02:26:10 +00001469 isa<VectorType>(getType())) &&
Brian Gaeke02209042004-08-20 06:00:58 +00001470 "Tried to create an arithmetic operation on a non-arithmetic type!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001471 break;
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001472 case UDiv:
1473 case SDiv:
1474 assert(getType() == LHS->getType() &&
1475 "Arithmetic operation should return same type as operands!");
Reid Spencerd84d35b2007-02-15 02:26:10 +00001476 assert((getType()->isInteger() || (isa<VectorType>(getType()) &&
1477 cast<VectorType>(getType())->getElementType()->isInteger())) &&
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001478 "Incorrect operand type (not integer) for S/UDIV");
1479 break;
1480 case FDiv:
1481 assert(getType() == LHS->getType() &&
1482 "Arithmetic operation should return same type as operands!");
Reid Spencerd84d35b2007-02-15 02:26:10 +00001483 assert((getType()->isFloatingPoint() || (isa<VectorType>(getType()) &&
1484 cast<VectorType>(getType())->getElementType()->isFloatingPoint()))
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001485 && "Incorrect operand type (not floating point) for FDIV");
1486 break;
Reid Spencer7eb55b32006-11-02 01:53:59 +00001487 case URem:
1488 case SRem:
1489 assert(getType() == LHS->getType() &&
1490 "Arithmetic operation should return same type as operands!");
Reid Spencerd84d35b2007-02-15 02:26:10 +00001491 assert((getType()->isInteger() || (isa<VectorType>(getType()) &&
1492 cast<VectorType>(getType())->getElementType()->isInteger())) &&
Reid Spencer7eb55b32006-11-02 01:53:59 +00001493 "Incorrect operand type (not integer) for S/UREM");
1494 break;
1495 case FRem:
1496 assert(getType() == LHS->getType() &&
1497 "Arithmetic operation should return same type as operands!");
Reid Spencerd84d35b2007-02-15 02:26:10 +00001498 assert((getType()->isFloatingPoint() || (isa<VectorType>(getType()) &&
1499 cast<VectorType>(getType())->getElementType()->isFloatingPoint()))
Reid Spencer7eb55b32006-11-02 01:53:59 +00001500 && "Incorrect operand type (not floating point) for FREM");
1501 break;
Reid Spencer2341c222007-02-02 02:16:23 +00001502 case Shl:
1503 case LShr:
1504 case AShr:
1505 assert(getType() == LHS->getType() &&
1506 "Shift operation should return same type as operands!");
1507 assert(getType()->isInteger() &&
1508 "Shift operation requires integer operands");
1509 break;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001510 case And: case Or:
1511 case Xor:
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001512 assert(getType() == LHS->getType() &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001513 "Logical operation should return same type as operands!");
Chris Lattner03c49532007-01-15 02:27:26 +00001514 assert((getType()->isInteger() ||
Reid Spencerd84d35b2007-02-15 02:26:10 +00001515 (isa<VectorType>(getType()) &&
1516 cast<VectorType>(getType())->getElementType()->isInteger())) &&
Misha Brukman3852f652005-01-27 06:46:38 +00001517 "Tried to create a logical operation on a non-integral type!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001518 break;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001519 default:
1520 break;
1521 }
1522#endif
1523}
1524
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001525BinaryOperator *BinaryOperator::Create(BinaryOps Op, Value *S1, Value *S2,
Misha Brukman96eb8782005-03-16 05:42:00 +00001526 const std::string &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001527 Instruction *InsertBefore) {
1528 assert(S1->getType() == S2->getType() &&
1529 "Cannot create binary operator with two operands of differing type!");
Reid Spencer266e42b2006-12-23 06:05:41 +00001530 return new BinaryOperator(Op, S1, S2, S1->getType(), Name, InsertBefore);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001531}
1532
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001533BinaryOperator *BinaryOperator::Create(BinaryOps Op, Value *S1, Value *S2,
Misha Brukman96eb8782005-03-16 05:42:00 +00001534 const std::string &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001535 BasicBlock *InsertAtEnd) {
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001536 BinaryOperator *Res = Create(Op, S1, S2, Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001537 InsertAtEnd->getInstList().push_back(Res);
1538 return Res;
1539}
1540
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001541BinaryOperator *BinaryOperator::CreateNeg(Value *Op, const std::string &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001542 Instruction *InsertBefore) {
Reid Spencer2eadb532007-01-21 00:29:26 +00001543 Value *zero = ConstantExpr::getZeroValueForNegationExpr(Op->getType());
1544 return new BinaryOperator(Instruction::Sub,
1545 zero, Op,
1546 Op->getType(), Name, InsertBefore);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001547}
1548
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001549BinaryOperator *BinaryOperator::CreateNeg(Value *Op, const std::string &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001550 BasicBlock *InsertAtEnd) {
Reid Spencer2eadb532007-01-21 00:29:26 +00001551 Value *zero = ConstantExpr::getZeroValueForNegationExpr(Op->getType());
1552 return new BinaryOperator(Instruction::Sub,
1553 zero, Op,
1554 Op->getType(), Name, InsertAtEnd);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001555}
1556
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001557BinaryOperator *BinaryOperator::CreateNot(Value *Op, const std::string &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001558 Instruction *InsertBefore) {
Chris Lattnere8e7ac42006-03-25 21:54:21 +00001559 Constant *C;
Reid Spencerd84d35b2007-02-15 02:26:10 +00001560 if (const VectorType *PTy = dyn_cast<VectorType>(Op->getType())) {
Zhou Sheng75b871f2007-01-11 12:24:14 +00001561 C = ConstantInt::getAllOnesValue(PTy->getElementType());
Reid Spencerd84d35b2007-02-15 02:26:10 +00001562 C = ConstantVector::get(std::vector<Constant*>(PTy->getNumElements(), C));
Chris Lattnere8e7ac42006-03-25 21:54:21 +00001563 } else {
Zhou Sheng75b871f2007-01-11 12:24:14 +00001564 C = ConstantInt::getAllOnesValue(Op->getType());
Chris Lattnere8e7ac42006-03-25 21:54:21 +00001565 }
1566
1567 return new BinaryOperator(Instruction::Xor, Op, C,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001568 Op->getType(), Name, InsertBefore);
1569}
1570
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001571BinaryOperator *BinaryOperator::CreateNot(Value *Op, const std::string &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001572 BasicBlock *InsertAtEnd) {
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001573 Constant *AllOnes;
Reid Spencerd84d35b2007-02-15 02:26:10 +00001574 if (const VectorType *PTy = dyn_cast<VectorType>(Op->getType())) {
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001575 // Create a vector of all ones values.
Zhou Sheng75b871f2007-01-11 12:24:14 +00001576 Constant *Elt = ConstantInt::getAllOnesValue(PTy->getElementType());
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001577 AllOnes =
Reid Spencerd84d35b2007-02-15 02:26:10 +00001578 ConstantVector::get(std::vector<Constant*>(PTy->getNumElements(), Elt));
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001579 } else {
Zhou Sheng75b871f2007-01-11 12:24:14 +00001580 AllOnes = ConstantInt::getAllOnesValue(Op->getType());
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001581 }
1582
1583 return new BinaryOperator(Instruction::Xor, Op, AllOnes,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001584 Op->getType(), Name, InsertAtEnd);
1585}
1586
1587
1588// isConstantAllOnes - Helper function for several functions below
1589static inline bool isConstantAllOnes(const Value *V) {
Chris Lattner1edec382007-06-15 06:04:24 +00001590 if (const ConstantInt *CI = dyn_cast<ConstantInt>(V))
1591 return CI->isAllOnesValue();
1592 if (const ConstantVector *CV = dyn_cast<ConstantVector>(V))
1593 return CV->isAllOnesValue();
1594 return false;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001595}
1596
1597bool BinaryOperator::isNeg(const Value *V) {
1598 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1599 if (Bop->getOpcode() == Instruction::Sub)
Reid Spencer2eadb532007-01-21 00:29:26 +00001600 return Bop->getOperand(0) ==
1601 ConstantExpr::getZeroValueForNegationExpr(Bop->getType());
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001602 return false;
1603}
1604
1605bool BinaryOperator::isNot(const Value *V) {
1606 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1607 return (Bop->getOpcode() == Instruction::Xor &&
1608 (isConstantAllOnes(Bop->getOperand(1)) ||
1609 isConstantAllOnes(Bop->getOperand(0))));
1610 return false;
1611}
1612
Chris Lattner2c7d1772005-04-24 07:28:37 +00001613Value *BinaryOperator::getNegArgument(Value *BinOp) {
1614 assert(isNeg(BinOp) && "getNegArgument from non-'neg' instruction!");
1615 return cast<BinaryOperator>(BinOp)->getOperand(1);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001616}
1617
Chris Lattner2c7d1772005-04-24 07:28:37 +00001618const Value *BinaryOperator::getNegArgument(const Value *BinOp) {
1619 return getNegArgument(const_cast<Value*>(BinOp));
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001620}
1621
Chris Lattner2c7d1772005-04-24 07:28:37 +00001622Value *BinaryOperator::getNotArgument(Value *BinOp) {
1623 assert(isNot(BinOp) && "getNotArgument on non-'not' instruction!");
1624 BinaryOperator *BO = cast<BinaryOperator>(BinOp);
1625 Value *Op0 = BO->getOperand(0);
1626 Value *Op1 = BO->getOperand(1);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001627 if (isConstantAllOnes(Op0)) return Op1;
1628
1629 assert(isConstantAllOnes(Op1));
1630 return Op0;
1631}
1632
Chris Lattner2c7d1772005-04-24 07:28:37 +00001633const Value *BinaryOperator::getNotArgument(const Value *BinOp) {
1634 return getNotArgument(const_cast<Value*>(BinOp));
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001635}
1636
1637
1638// swapOperands - Exchange the two operands to this instruction. This
1639// instruction is safe to use on any binary instruction and does not
1640// modify the semantics of the instruction. If the instruction is
1641// order dependent (SetLT f.e.) the opcode is changed.
1642//
1643bool BinaryOperator::swapOperands() {
Reid Spencer266e42b2006-12-23 06:05:41 +00001644 if (!isCommutative())
1645 return true; // Can't commute operands
Gabor Greif5ef74042008-05-13 22:51:52 +00001646 Op<0>().swap(Op<1>());
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001647 return false;
1648}
1649
Chris Lattnerb0b8ddd2006-09-18 04:54:57 +00001650//===----------------------------------------------------------------------===//
1651// CastInst Class
1652//===----------------------------------------------------------------------===//
1653
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001654// Just determine if this cast only deals with integral->integral conversion.
1655bool CastInst::isIntegerCast() const {
1656 switch (getOpcode()) {
1657 default: return false;
1658 case Instruction::ZExt:
1659 case Instruction::SExt:
1660 case Instruction::Trunc:
1661 return true;
1662 case Instruction::BitCast:
Chris Lattner03c49532007-01-15 02:27:26 +00001663 return getOperand(0)->getType()->isInteger() && getType()->isInteger();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001664 }
Chris Lattnerb0b8ddd2006-09-18 04:54:57 +00001665}
1666
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001667bool CastInst::isLosslessCast() const {
1668 // Only BitCast can be lossless, exit fast if we're not BitCast
1669 if (getOpcode() != Instruction::BitCast)
1670 return false;
1671
1672 // Identity cast is always lossless
1673 const Type* SrcTy = getOperand(0)->getType();
1674 const Type* DstTy = getType();
1675 if (SrcTy == DstTy)
1676 return true;
1677
Reid Spencer8d9336d2006-12-31 05:26:44 +00001678 // Pointer to pointer is always lossless.
1679 if (isa<PointerType>(SrcTy))
1680 return isa<PointerType>(DstTy);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001681 return false; // Other types have no identity values
1682}
1683
1684/// This function determines if the CastInst does not require any bits to be
1685/// changed in order to effect the cast. Essentially, it identifies cases where
1686/// no code gen is necessary for the cast, hence the name no-op cast. For
1687/// example, the following are all no-op casts:
Dan Gohmane9bc2ba2008-05-12 16:34:30 +00001688/// # bitcast i32* %x to i8*
1689/// # bitcast <2 x i32> %x to <4 x i16>
1690/// # ptrtoint i32* %x to i32 ; on 32-bit plaforms only
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001691/// @brief Determine if a cast is a no-op.
1692bool CastInst::isNoopCast(const Type *IntPtrTy) const {
1693 switch (getOpcode()) {
1694 default:
1695 assert(!"Invalid CastOp");
1696 case Instruction::Trunc:
1697 case Instruction::ZExt:
1698 case Instruction::SExt:
1699 case Instruction::FPTrunc:
1700 case Instruction::FPExt:
1701 case Instruction::UIToFP:
1702 case Instruction::SIToFP:
1703 case Instruction::FPToUI:
1704 case Instruction::FPToSI:
1705 return false; // These always modify bits
1706 case Instruction::BitCast:
1707 return true; // BitCast never modifies bits.
1708 case Instruction::PtrToInt:
1709 return IntPtrTy->getPrimitiveSizeInBits() ==
1710 getType()->getPrimitiveSizeInBits();
1711 case Instruction::IntToPtr:
1712 return IntPtrTy->getPrimitiveSizeInBits() ==
1713 getOperand(0)->getType()->getPrimitiveSizeInBits();
1714 }
1715}
1716
1717/// This function determines if a pair of casts can be eliminated and what
1718/// opcode should be used in the elimination. This assumes that there are two
1719/// instructions like this:
1720/// * %F = firstOpcode SrcTy %x to MidTy
1721/// * %S = secondOpcode MidTy %F to DstTy
1722/// The function returns a resultOpcode so these two casts can be replaced with:
1723/// * %Replacement = resultOpcode %SrcTy %x to DstTy
1724/// If no such cast is permited, the function returns 0.
1725unsigned CastInst::isEliminableCastPair(
1726 Instruction::CastOps firstOp, Instruction::CastOps secondOp,
1727 const Type *SrcTy, const Type *MidTy, const Type *DstTy, const Type *IntPtrTy)
1728{
1729 // Define the 144 possibilities for these two cast instructions. The values
1730 // in this matrix determine what to do in a given situation and select the
1731 // case in the switch below. The rows correspond to firstOp, the columns
1732 // correspond to secondOp. In looking at the table below, keep in mind
1733 // the following cast properties:
1734 //
1735 // Size Compare Source Destination
1736 // Operator Src ? Size Type Sign Type Sign
1737 // -------- ------------ ------------------- ---------------------
1738 // TRUNC > Integer Any Integral Any
1739 // ZEXT < Integral Unsigned Integer Any
1740 // SEXT < Integral Signed Integer Any
1741 // FPTOUI n/a FloatPt n/a Integral Unsigned
1742 // FPTOSI n/a FloatPt n/a Integral Signed
1743 // UITOFP n/a Integral Unsigned FloatPt n/a
1744 // SITOFP n/a Integral Signed FloatPt n/a
1745 // FPTRUNC > FloatPt n/a FloatPt n/a
1746 // FPEXT < FloatPt n/a FloatPt n/a
1747 // PTRTOINT n/a Pointer n/a Integral Unsigned
1748 // INTTOPTR n/a Integral Unsigned Pointer n/a
1749 // BITCONVERT = FirstClass n/a FirstClass n/a
Chris Lattner6f6b4972006-12-05 23:43:59 +00001750 //
1751 // NOTE: some transforms are safe, but we consider them to be non-profitable.
1752 // For example, we could merge "fptoui double to uint" + "zext uint to ulong",
1753 // into "fptoui double to ulong", but this loses information about the range
1754 // of the produced value (we no longer know the top-part is all zeros).
1755 // Further this conversion is often much more expensive for typical hardware,
1756 // and causes issues when building libgcc. We disallow fptosi+sext for the
1757 // same reason.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001758 const unsigned numCastOps =
1759 Instruction::CastOpsEnd - Instruction::CastOpsBegin;
1760 static const uint8_t CastResults[numCastOps][numCastOps] = {
1761 // T F F U S F F P I B -+
1762 // R Z S P P I I T P 2 N T |
1763 // U E E 2 2 2 2 R E I T C +- secondOp
1764 // N X X U S F F N X N 2 V |
1765 // C T T I I P P C T T P T -+
1766 { 1, 0, 0,99,99, 0, 0,99,99,99, 0, 3 }, // Trunc -+
1767 { 8, 1, 9,99,99, 2, 0,99,99,99, 2, 3 }, // ZExt |
1768 { 8, 0, 1,99,99, 0, 2,99,99,99, 0, 3 }, // SExt |
Chris Lattner6f6b4972006-12-05 23:43:59 +00001769 { 0, 0, 0,99,99, 0, 0,99,99,99, 0, 3 }, // FPToUI |
1770 { 0, 0, 0,99,99, 0, 0,99,99,99, 0, 3 }, // FPToSI |
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001771 { 99,99,99, 0, 0,99,99, 0, 0,99,99, 4 }, // UIToFP +- firstOp
1772 { 99,99,99, 0, 0,99,99, 0, 0,99,99, 4 }, // SIToFP |
1773 { 99,99,99, 0, 0,99,99, 1, 0,99,99, 4 }, // FPTrunc |
1774 { 99,99,99, 2, 2,99,99,10, 2,99,99, 4 }, // FPExt |
1775 { 1, 0, 0,99,99, 0, 0,99,99,99, 7, 3 }, // PtrToInt |
1776 { 99,99,99,99,99,99,99,99,99,13,99,12 }, // IntToPtr |
1777 { 5, 5, 5, 6, 6, 5, 5, 6, 6,11, 5, 1 }, // BitCast -+
1778 };
1779
1780 int ElimCase = CastResults[firstOp-Instruction::CastOpsBegin]
1781 [secondOp-Instruction::CastOpsBegin];
1782 switch (ElimCase) {
1783 case 0:
1784 // categorically disallowed
1785 return 0;
1786 case 1:
1787 // allowed, use first cast's opcode
1788 return firstOp;
1789 case 2:
1790 // allowed, use second cast's opcode
1791 return secondOp;
1792 case 3:
1793 // no-op cast in second op implies firstOp as long as the DestTy
1794 // is integer
Chris Lattner03c49532007-01-15 02:27:26 +00001795 if (DstTy->isInteger())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001796 return firstOp;
1797 return 0;
1798 case 4:
1799 // no-op cast in second op implies firstOp as long as the DestTy
1800 // is floating point
1801 if (DstTy->isFloatingPoint())
1802 return firstOp;
1803 return 0;
1804 case 5:
1805 // no-op cast in first op implies secondOp as long as the SrcTy
1806 // is an integer
Chris Lattner03c49532007-01-15 02:27:26 +00001807 if (SrcTy->isInteger())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001808 return secondOp;
1809 return 0;
1810 case 6:
1811 // no-op cast in first op implies secondOp as long as the SrcTy
1812 // is a floating point
1813 if (SrcTy->isFloatingPoint())
1814 return secondOp;
1815 return 0;
1816 case 7: {
1817 // ptrtoint, inttoptr -> bitcast (ptr -> ptr) if int size is >= ptr size
1818 unsigned PtrSize = IntPtrTy->getPrimitiveSizeInBits();
1819 unsigned MidSize = MidTy->getPrimitiveSizeInBits();
1820 if (MidSize >= PtrSize)
1821 return Instruction::BitCast;
1822 return 0;
1823 }
1824 case 8: {
1825 // ext, trunc -> bitcast, if the SrcTy and DstTy are same size
1826 // ext, trunc -> ext, if sizeof(SrcTy) < sizeof(DstTy)
1827 // ext, trunc -> trunc, if sizeof(SrcTy) > sizeof(DstTy)
1828 unsigned SrcSize = SrcTy->getPrimitiveSizeInBits();
1829 unsigned DstSize = DstTy->getPrimitiveSizeInBits();
1830 if (SrcSize == DstSize)
1831 return Instruction::BitCast;
1832 else if (SrcSize < DstSize)
1833 return firstOp;
1834 return secondOp;
1835 }
1836 case 9: // zext, sext -> zext, because sext can't sign extend after zext
1837 return Instruction::ZExt;
1838 case 10:
1839 // fpext followed by ftrunc is allowed if the bit size returned to is
1840 // the same as the original, in which case its just a bitcast
1841 if (SrcTy == DstTy)
1842 return Instruction::BitCast;
1843 return 0; // If the types are not the same we can't eliminate it.
1844 case 11:
1845 // bitcast followed by ptrtoint is allowed as long as the bitcast
1846 // is a pointer to pointer cast.
1847 if (isa<PointerType>(SrcTy) && isa<PointerType>(MidTy))
1848 return secondOp;
1849 return 0;
1850 case 12:
1851 // inttoptr, bitcast -> intptr if bitcast is a ptr to ptr cast
1852 if (isa<PointerType>(MidTy) && isa<PointerType>(DstTy))
1853 return firstOp;
1854 return 0;
1855 case 13: {
1856 // inttoptr, ptrtoint -> bitcast if SrcSize<=PtrSize and SrcSize==DstSize
1857 unsigned PtrSize = IntPtrTy->getPrimitiveSizeInBits();
1858 unsigned SrcSize = SrcTy->getPrimitiveSizeInBits();
1859 unsigned DstSize = DstTy->getPrimitiveSizeInBits();
1860 if (SrcSize <= PtrSize && SrcSize == DstSize)
1861 return Instruction::BitCast;
1862 return 0;
1863 }
1864 case 99:
1865 // cast combination can't happen (error in input). This is for all cases
1866 // where the MidTy is not the same for the two cast instructions.
1867 assert(!"Invalid Cast Combination");
1868 return 0;
1869 default:
1870 assert(!"Error in CastResults table!!!");
1871 return 0;
1872 }
1873 return 0;
1874}
1875
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001876CastInst *CastInst::Create(Instruction::CastOps op, Value *S, const Type *Ty,
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001877 const std::string &Name, Instruction *InsertBefore) {
1878 // Construct and return the appropriate CastInst subclass
1879 switch (op) {
1880 case Trunc: return new TruncInst (S, Ty, Name, InsertBefore);
1881 case ZExt: return new ZExtInst (S, Ty, Name, InsertBefore);
1882 case SExt: return new SExtInst (S, Ty, Name, InsertBefore);
1883 case FPTrunc: return new FPTruncInst (S, Ty, Name, InsertBefore);
1884 case FPExt: return new FPExtInst (S, Ty, Name, InsertBefore);
1885 case UIToFP: return new UIToFPInst (S, Ty, Name, InsertBefore);
1886 case SIToFP: return new SIToFPInst (S, Ty, Name, InsertBefore);
1887 case FPToUI: return new FPToUIInst (S, Ty, Name, InsertBefore);
1888 case FPToSI: return new FPToSIInst (S, Ty, Name, InsertBefore);
1889 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertBefore);
1890 case IntToPtr: return new IntToPtrInst (S, Ty, Name, InsertBefore);
1891 case BitCast: return new BitCastInst (S, Ty, Name, InsertBefore);
1892 default:
1893 assert(!"Invalid opcode provided");
1894 }
1895 return 0;
1896}
1897
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001898CastInst *CastInst::Create(Instruction::CastOps op, Value *S, const Type *Ty,
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001899 const std::string &Name, BasicBlock *InsertAtEnd) {
1900 // Construct and return the appropriate CastInst subclass
1901 switch (op) {
1902 case Trunc: return new TruncInst (S, Ty, Name, InsertAtEnd);
1903 case ZExt: return new ZExtInst (S, Ty, Name, InsertAtEnd);
1904 case SExt: return new SExtInst (S, Ty, Name, InsertAtEnd);
1905 case FPTrunc: return new FPTruncInst (S, Ty, Name, InsertAtEnd);
1906 case FPExt: return new FPExtInst (S, Ty, Name, InsertAtEnd);
1907 case UIToFP: return new UIToFPInst (S, Ty, Name, InsertAtEnd);
1908 case SIToFP: return new SIToFPInst (S, Ty, Name, InsertAtEnd);
1909 case FPToUI: return new FPToUIInst (S, Ty, Name, InsertAtEnd);
1910 case FPToSI: return new FPToSIInst (S, Ty, Name, InsertAtEnd);
1911 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertAtEnd);
1912 case IntToPtr: return new IntToPtrInst (S, Ty, Name, InsertAtEnd);
1913 case BitCast: return new BitCastInst (S, Ty, Name, InsertAtEnd);
1914 default:
1915 assert(!"Invalid opcode provided");
1916 }
1917 return 0;
1918}
1919
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001920CastInst *CastInst::CreateZExtOrBitCast(Value *S, const Type *Ty,
Reid Spencer5c140882006-12-04 20:17:56 +00001921 const std::string &Name,
1922 Instruction *InsertBefore) {
1923 if (S->getType()->getPrimitiveSizeInBits() == Ty->getPrimitiveSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001924 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
1925 return Create(Instruction::ZExt, S, Ty, Name, InsertBefore);
Reid Spencer5c140882006-12-04 20:17:56 +00001926}
1927
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001928CastInst *CastInst::CreateZExtOrBitCast(Value *S, const Type *Ty,
Reid Spencer5c140882006-12-04 20:17:56 +00001929 const std::string &Name,
1930 BasicBlock *InsertAtEnd) {
1931 if (S->getType()->getPrimitiveSizeInBits() == Ty->getPrimitiveSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001932 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
1933 return Create(Instruction::ZExt, S, Ty, Name, InsertAtEnd);
Reid Spencer5c140882006-12-04 20:17:56 +00001934}
1935
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001936CastInst *CastInst::CreateSExtOrBitCast(Value *S, const Type *Ty,
Reid Spencer5c140882006-12-04 20:17:56 +00001937 const std::string &Name,
1938 Instruction *InsertBefore) {
1939 if (S->getType()->getPrimitiveSizeInBits() == Ty->getPrimitiveSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001940 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
1941 return Create(Instruction::SExt, S, Ty, Name, InsertBefore);
Reid Spencer5c140882006-12-04 20:17:56 +00001942}
1943
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001944CastInst *CastInst::CreateSExtOrBitCast(Value *S, const Type *Ty,
Reid Spencer5c140882006-12-04 20:17:56 +00001945 const std::string &Name,
1946 BasicBlock *InsertAtEnd) {
1947 if (S->getType()->getPrimitiveSizeInBits() == Ty->getPrimitiveSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001948 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
1949 return Create(Instruction::SExt, S, Ty, Name, InsertAtEnd);
Reid Spencer5c140882006-12-04 20:17:56 +00001950}
1951
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001952CastInst *CastInst::CreateTruncOrBitCast(Value *S, const Type *Ty,
Reid Spencer5c140882006-12-04 20:17:56 +00001953 const std::string &Name,
1954 Instruction *InsertBefore) {
1955 if (S->getType()->getPrimitiveSizeInBits() == Ty->getPrimitiveSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001956 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
1957 return Create(Instruction::Trunc, S, Ty, Name, InsertBefore);
Reid Spencer5c140882006-12-04 20:17:56 +00001958}
1959
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001960CastInst *CastInst::CreateTruncOrBitCast(Value *S, const Type *Ty,
Reid Spencer5c140882006-12-04 20:17:56 +00001961 const std::string &Name,
1962 BasicBlock *InsertAtEnd) {
1963 if (S->getType()->getPrimitiveSizeInBits() == Ty->getPrimitiveSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001964 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
1965 return Create(Instruction::Trunc, S, Ty, Name, InsertAtEnd);
Reid Spencer5c140882006-12-04 20:17:56 +00001966}
1967
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001968CastInst *CastInst::CreatePointerCast(Value *S, const Type *Ty,
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00001969 const std::string &Name,
1970 BasicBlock *InsertAtEnd) {
1971 assert(isa<PointerType>(S->getType()) && "Invalid cast");
Chris Lattner03c49532007-01-15 02:27:26 +00001972 assert((Ty->isInteger() || isa<PointerType>(Ty)) &&
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00001973 "Invalid cast");
1974
Chris Lattner03c49532007-01-15 02:27:26 +00001975 if (Ty->isInteger())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001976 return Create(Instruction::PtrToInt, S, Ty, Name, InsertAtEnd);
1977 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00001978}
1979
1980/// @brief Create a BitCast or a PtrToInt cast instruction
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001981CastInst *CastInst::CreatePointerCast(Value *S, const Type *Ty,
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00001982 const std::string &Name,
1983 Instruction *InsertBefore) {
1984 assert(isa<PointerType>(S->getType()) && "Invalid cast");
Chris Lattner03c49532007-01-15 02:27:26 +00001985 assert((Ty->isInteger() || isa<PointerType>(Ty)) &&
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00001986 "Invalid cast");
1987
Chris Lattner03c49532007-01-15 02:27:26 +00001988 if (Ty->isInteger())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001989 return Create(Instruction::PtrToInt, S, Ty, Name, InsertBefore);
1990 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00001991}
1992
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001993CastInst *CastInst::CreateIntegerCast(Value *C, const Type *Ty,
Reid Spencer7e933472006-12-12 00:49:44 +00001994 bool isSigned, const std::string &Name,
1995 Instruction *InsertBefore) {
Chris Lattner03c49532007-01-15 02:27:26 +00001996 assert(C->getType()->isInteger() && Ty->isInteger() && "Invalid cast");
Reid Spencer7e933472006-12-12 00:49:44 +00001997 unsigned SrcBits = C->getType()->getPrimitiveSizeInBits();
1998 unsigned DstBits = Ty->getPrimitiveSizeInBits();
1999 Instruction::CastOps opcode =
2000 (SrcBits == DstBits ? Instruction::BitCast :
2001 (SrcBits > DstBits ? Instruction::Trunc :
2002 (isSigned ? Instruction::SExt : Instruction::ZExt)));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002003 return Create(opcode, C, Ty, Name, InsertBefore);
Reid Spencer7e933472006-12-12 00:49:44 +00002004}
2005
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002006CastInst *CastInst::CreateIntegerCast(Value *C, const Type *Ty,
Reid Spencer7e933472006-12-12 00:49:44 +00002007 bool isSigned, const std::string &Name,
2008 BasicBlock *InsertAtEnd) {
Chris Lattner03c49532007-01-15 02:27:26 +00002009 assert(C->getType()->isInteger() && Ty->isInteger() && "Invalid cast");
Reid Spencer7e933472006-12-12 00:49:44 +00002010 unsigned SrcBits = C->getType()->getPrimitiveSizeInBits();
2011 unsigned DstBits = Ty->getPrimitiveSizeInBits();
2012 Instruction::CastOps opcode =
2013 (SrcBits == DstBits ? Instruction::BitCast :
2014 (SrcBits > DstBits ? Instruction::Trunc :
2015 (isSigned ? Instruction::SExt : Instruction::ZExt)));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002016 return Create(opcode, C, Ty, Name, InsertAtEnd);
Reid Spencer7e933472006-12-12 00:49:44 +00002017}
2018
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002019CastInst *CastInst::CreateFPCast(Value *C, const Type *Ty,
Reid Spencer7e933472006-12-12 00:49:44 +00002020 const std::string &Name,
2021 Instruction *InsertBefore) {
2022 assert(C->getType()->isFloatingPoint() && Ty->isFloatingPoint() &&
2023 "Invalid cast");
2024 unsigned SrcBits = C->getType()->getPrimitiveSizeInBits();
2025 unsigned DstBits = Ty->getPrimitiveSizeInBits();
2026 Instruction::CastOps opcode =
2027 (SrcBits == DstBits ? Instruction::BitCast :
2028 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002029 return Create(opcode, C, Ty, Name, InsertBefore);
Reid Spencer7e933472006-12-12 00:49:44 +00002030}
2031
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002032CastInst *CastInst::CreateFPCast(Value *C, const Type *Ty,
Reid Spencer7e933472006-12-12 00:49:44 +00002033 const std::string &Name,
2034 BasicBlock *InsertAtEnd) {
2035 assert(C->getType()->isFloatingPoint() && Ty->isFloatingPoint() &&
2036 "Invalid cast");
2037 unsigned SrcBits = C->getType()->getPrimitiveSizeInBits();
2038 unsigned DstBits = Ty->getPrimitiveSizeInBits();
2039 Instruction::CastOps opcode =
2040 (SrcBits == DstBits ? Instruction::BitCast :
2041 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002042 return Create(opcode, C, Ty, Name, InsertAtEnd);
Reid Spencer7e933472006-12-12 00:49:44 +00002043}
2044
Duncan Sands55e50902008-01-06 10:12:28 +00002045// Check whether it is valid to call getCastOpcode for these types.
2046// This routine must be kept in sync with getCastOpcode.
2047bool CastInst::isCastable(const Type *SrcTy, const Type *DestTy) {
2048 if (!SrcTy->isFirstClassType() || !DestTy->isFirstClassType())
2049 return false;
2050
2051 if (SrcTy == DestTy)
2052 return true;
2053
2054 // Get the bit sizes, we'll need these
2055 unsigned SrcBits = SrcTy->getPrimitiveSizeInBits(); // 0 for ptr/vector
2056 unsigned DestBits = DestTy->getPrimitiveSizeInBits(); // 0 for ptr/vector
2057
2058 // Run through the possibilities ...
Gabor Greif697e94c2008-05-15 10:04:30 +00002059 if (DestTy->isInteger()) { // Casting to integral
2060 if (SrcTy->isInteger()) { // Casting from integral
Duncan Sands55e50902008-01-06 10:12:28 +00002061 return true;
Gabor Greif697e94c2008-05-15 10:04:30 +00002062 } else if (SrcTy->isFloatingPoint()) { // Casting from floating pt
Duncan Sands55e50902008-01-06 10:12:28 +00002063 return true;
2064 } else if (const VectorType *PTy = dyn_cast<VectorType>(SrcTy)) {
Gabor Greif697e94c2008-05-15 10:04:30 +00002065 // Casting from vector
Duncan Sands55e50902008-01-06 10:12:28 +00002066 return DestBits == PTy->getBitWidth();
Gabor Greif697e94c2008-05-15 10:04:30 +00002067 } else { // Casting from something else
Duncan Sands55e50902008-01-06 10:12:28 +00002068 return isa<PointerType>(SrcTy);
2069 }
Gabor Greif697e94c2008-05-15 10:04:30 +00002070 } else if (DestTy->isFloatingPoint()) { // Casting to floating pt
2071 if (SrcTy->isInteger()) { // Casting from integral
Duncan Sands55e50902008-01-06 10:12:28 +00002072 return true;
Gabor Greif697e94c2008-05-15 10:04:30 +00002073 } else if (SrcTy->isFloatingPoint()) { // Casting from floating pt
Duncan Sands55e50902008-01-06 10:12:28 +00002074 return true;
2075 } else if (const VectorType *PTy = dyn_cast<VectorType>(SrcTy)) {
Gabor Greif697e94c2008-05-15 10:04:30 +00002076 // Casting from vector
Duncan Sands55e50902008-01-06 10:12:28 +00002077 return DestBits == PTy->getBitWidth();
Gabor Greif697e94c2008-05-15 10:04:30 +00002078 } else { // Casting from something else
Duncan Sands55e50902008-01-06 10:12:28 +00002079 return false;
2080 }
2081 } else if (const VectorType *DestPTy = dyn_cast<VectorType>(DestTy)) {
Gabor Greif697e94c2008-05-15 10:04:30 +00002082 // Casting to vector
Duncan Sands55e50902008-01-06 10:12:28 +00002083 if (const VectorType *SrcPTy = dyn_cast<VectorType>(SrcTy)) {
Gabor Greif697e94c2008-05-15 10:04:30 +00002084 // Casting from vector
Duncan Sands55e50902008-01-06 10:12:28 +00002085 return DestPTy->getBitWidth() == SrcPTy->getBitWidth();
Gabor Greif697e94c2008-05-15 10:04:30 +00002086 } else { // Casting from something else
Duncan Sands55e50902008-01-06 10:12:28 +00002087 return DestPTy->getBitWidth() == SrcBits;
2088 }
Gabor Greif697e94c2008-05-15 10:04:30 +00002089 } else if (isa<PointerType>(DestTy)) { // Casting to pointer
2090 if (isa<PointerType>(SrcTy)) { // Casting from pointer
Duncan Sands55e50902008-01-06 10:12:28 +00002091 return true;
Gabor Greif697e94c2008-05-15 10:04:30 +00002092 } else if (SrcTy->isInteger()) { // Casting from integral
Duncan Sands55e50902008-01-06 10:12:28 +00002093 return true;
Gabor Greif697e94c2008-05-15 10:04:30 +00002094 } else { // Casting from something else
Duncan Sands55e50902008-01-06 10:12:28 +00002095 return false;
2096 }
Gabor Greif697e94c2008-05-15 10:04:30 +00002097 } else { // Casting to something else
Duncan Sands55e50902008-01-06 10:12:28 +00002098 return false;
2099 }
2100}
2101
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002102// Provide a way to get a "cast" where the cast opcode is inferred from the
2103// types and size of the operand. This, basically, is a parallel of the
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002104// logic in the castIsValid function below. This axiom should hold:
2105// castIsValid( getCastOpcode(Val, Ty), Val, Ty)
2106// should not assert in castIsValid. In other words, this produces a "correct"
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002107// casting opcode for the arguments passed to it.
Duncan Sands55e50902008-01-06 10:12:28 +00002108// This routine must be kept in sync with isCastable.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002109Instruction::CastOps
Reid Spencerc4dacf22006-12-04 02:43:42 +00002110CastInst::getCastOpcode(
2111 const Value *Src, bool SrcIsSigned, const Type *DestTy, bool DestIsSigned) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002112 // Get the bit sizes, we'll need these
2113 const Type *SrcTy = Src->getType();
Dan Gohmanfead7972007-05-11 21:43:24 +00002114 unsigned SrcBits = SrcTy->getPrimitiveSizeInBits(); // 0 for ptr/vector
2115 unsigned DestBits = DestTy->getPrimitiveSizeInBits(); // 0 for ptr/vector
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002116
Duncan Sands55e50902008-01-06 10:12:28 +00002117 assert(SrcTy->isFirstClassType() && DestTy->isFirstClassType() &&
2118 "Only first class types are castable!");
2119
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002120 // Run through the possibilities ...
Chris Lattner03c49532007-01-15 02:27:26 +00002121 if (DestTy->isInteger()) { // Casting to integral
2122 if (SrcTy->isInteger()) { // Casting from integral
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002123 if (DestBits < SrcBits)
2124 return Trunc; // int -> smaller int
2125 else if (DestBits > SrcBits) { // its an extension
Reid Spencerc4dacf22006-12-04 02:43:42 +00002126 if (SrcIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002127 return SExt; // signed -> SEXT
2128 else
2129 return ZExt; // unsigned -> ZEXT
2130 } else {
2131 return BitCast; // Same size, No-op cast
2132 }
2133 } else if (SrcTy->isFloatingPoint()) { // Casting from floating pt
Reid Spencerc4dacf22006-12-04 02:43:42 +00002134 if (DestIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002135 return FPToSI; // FP -> sint
2136 else
2137 return FPToUI; // FP -> uint
Reid Spencerd84d35b2007-02-15 02:26:10 +00002138 } else if (const VectorType *PTy = dyn_cast<VectorType>(SrcTy)) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002139 assert(DestBits == PTy->getBitWidth() &&
Dan Gohmanfead7972007-05-11 21:43:24 +00002140 "Casting vector to integer of different width");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002141 return BitCast; // Same size, no-op cast
2142 } else {
2143 assert(isa<PointerType>(SrcTy) &&
2144 "Casting from a value that is not first-class type");
2145 return PtrToInt; // ptr -> int
2146 }
2147 } else if (DestTy->isFloatingPoint()) { // Casting to floating pt
Chris Lattner03c49532007-01-15 02:27:26 +00002148 if (SrcTy->isInteger()) { // Casting from integral
Reid Spencerc4dacf22006-12-04 02:43:42 +00002149 if (SrcIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002150 return SIToFP; // sint -> FP
2151 else
2152 return UIToFP; // uint -> FP
2153 } else if (SrcTy->isFloatingPoint()) { // Casting from floating pt
2154 if (DestBits < SrcBits) {
2155 return FPTrunc; // FP -> smaller FP
2156 } else if (DestBits > SrcBits) {
2157 return FPExt; // FP -> larger FP
2158 } else {
2159 return BitCast; // same size, no-op cast
2160 }
Reid Spencerd84d35b2007-02-15 02:26:10 +00002161 } else if (const VectorType *PTy = dyn_cast<VectorType>(SrcTy)) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002162 assert(DestBits == PTy->getBitWidth() &&
Dan Gohmanfead7972007-05-11 21:43:24 +00002163 "Casting vector to floating point of different width");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002164 return BitCast; // same size, no-op cast
2165 } else {
2166 assert(0 && "Casting pointer or non-first class to float");
2167 }
Reid Spencerd84d35b2007-02-15 02:26:10 +00002168 } else if (const VectorType *DestPTy = dyn_cast<VectorType>(DestTy)) {
2169 if (const VectorType *SrcPTy = dyn_cast<VectorType>(SrcTy)) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002170 assert(DestPTy->getBitWidth() == SrcPTy->getBitWidth() &&
Dan Gohmanfead7972007-05-11 21:43:24 +00002171 "Casting vector to vector of different widths");
2172 return BitCast; // vector -> vector
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002173 } else if (DestPTy->getBitWidth() == SrcBits) {
Dan Gohmanfead7972007-05-11 21:43:24 +00002174 return BitCast; // float/int -> vector
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002175 } else {
Dan Gohmanfead7972007-05-11 21:43:24 +00002176 assert(!"Illegal cast to vector (wrong type or size)");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002177 }
2178 } else if (isa<PointerType>(DestTy)) {
2179 if (isa<PointerType>(SrcTy)) {
2180 return BitCast; // ptr -> ptr
Chris Lattner03c49532007-01-15 02:27:26 +00002181 } else if (SrcTy->isInteger()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002182 return IntToPtr; // int -> ptr
2183 } else {
2184 assert(!"Casting pointer to other than pointer or int");
2185 }
2186 } else {
2187 assert(!"Casting to type that is not first-class");
2188 }
2189
2190 // If we fall through to here we probably hit an assertion cast above
2191 // and assertions are not turned on. Anything we return is an error, so
2192 // BitCast is as good a choice as any.
2193 return BitCast;
2194}
2195
2196//===----------------------------------------------------------------------===//
2197// CastInst SubClass Constructors
2198//===----------------------------------------------------------------------===//
2199
2200/// Check that the construction parameters for a CastInst are correct. This
2201/// could be broken out into the separate constructors but it is useful to have
2202/// it in one place and to eliminate the redundant code for getting the sizes
2203/// of the types involved.
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002204bool
2205CastInst::castIsValid(Instruction::CastOps op, Value *S, const Type *DstTy) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002206
2207 // Check for type sanity on the arguments
2208 const Type *SrcTy = S->getType();
2209 if (!SrcTy->isFirstClassType() || !DstTy->isFirstClassType())
2210 return false;
2211
2212 // Get the size of the types in bits, we'll need this later
2213 unsigned SrcBitSize = SrcTy->getPrimitiveSizeInBits();
2214 unsigned DstBitSize = DstTy->getPrimitiveSizeInBits();
2215
2216 // Switch on the opcode provided
2217 switch (op) {
2218 default: return false; // This is an input error
2219 case Instruction::Trunc:
Chris Lattner03c49532007-01-15 02:27:26 +00002220 return SrcTy->isInteger() && DstTy->isInteger()&& SrcBitSize > DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002221 case Instruction::ZExt:
Chris Lattner03c49532007-01-15 02:27:26 +00002222 return SrcTy->isInteger() && DstTy->isInteger()&& SrcBitSize < DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002223 case Instruction::SExt:
Chris Lattner03c49532007-01-15 02:27:26 +00002224 return SrcTy->isInteger() && DstTy->isInteger()&& SrcBitSize < DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002225 case Instruction::FPTrunc:
2226 return SrcTy->isFloatingPoint() && DstTy->isFloatingPoint() &&
2227 SrcBitSize > DstBitSize;
2228 case Instruction::FPExt:
2229 return SrcTy->isFloatingPoint() && DstTy->isFloatingPoint() &&
2230 SrcBitSize < DstBitSize;
2231 case Instruction::UIToFP:
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002232 case Instruction::SIToFP:
Nate Begemand4d45c22007-11-17 03:58:34 +00002233 if (const VectorType *SVTy = dyn_cast<VectorType>(SrcTy)) {
2234 if (const VectorType *DVTy = dyn_cast<VectorType>(DstTy)) {
2235 return SVTy->getElementType()->isInteger() &&
2236 DVTy->getElementType()->isFloatingPoint() &&
2237 SVTy->getNumElements() == DVTy->getNumElements();
2238 }
2239 }
Chris Lattner03c49532007-01-15 02:27:26 +00002240 return SrcTy->isInteger() && DstTy->isFloatingPoint();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002241 case Instruction::FPToUI:
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002242 case Instruction::FPToSI:
Nate Begemand4d45c22007-11-17 03:58:34 +00002243 if (const VectorType *SVTy = dyn_cast<VectorType>(SrcTy)) {
2244 if (const VectorType *DVTy = dyn_cast<VectorType>(DstTy)) {
2245 return SVTy->getElementType()->isFloatingPoint() &&
2246 DVTy->getElementType()->isInteger() &&
2247 SVTy->getNumElements() == DVTy->getNumElements();
2248 }
2249 }
Chris Lattner03c49532007-01-15 02:27:26 +00002250 return SrcTy->isFloatingPoint() && DstTy->isInteger();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002251 case Instruction::PtrToInt:
Chris Lattner03c49532007-01-15 02:27:26 +00002252 return isa<PointerType>(SrcTy) && DstTy->isInteger();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002253 case Instruction::IntToPtr:
Chris Lattner03c49532007-01-15 02:27:26 +00002254 return SrcTy->isInteger() && isa<PointerType>(DstTy);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002255 case Instruction::BitCast:
2256 // BitCast implies a no-op cast of type only. No bits change.
2257 // However, you can't cast pointers to anything but pointers.
2258 if (isa<PointerType>(SrcTy) != isa<PointerType>(DstTy))
2259 return false;
2260
Duncan Sands55e50902008-01-06 10:12:28 +00002261 // Now we know we're not dealing with a pointer/non-pointer mismatch. In all
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002262 // these cases, the cast is okay if the source and destination bit widths
2263 // are identical.
2264 return SrcBitSize == DstBitSize;
2265 }
2266}
2267
2268TruncInst::TruncInst(
2269 Value *S, const Type *Ty, const std::string &Name, Instruction *InsertBefore
2270) : CastInst(Ty, Trunc, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002271 assert(castIsValid(getOpcode(), S, Ty) && "Illegal Trunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002272}
2273
2274TruncInst::TruncInst(
2275 Value *S, const Type *Ty, const std::string &Name, BasicBlock *InsertAtEnd
2276) : CastInst(Ty, Trunc, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002277 assert(castIsValid(getOpcode(), S, Ty) && "Illegal Trunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002278}
2279
2280ZExtInst::ZExtInst(
2281 Value *S, const Type *Ty, const std::string &Name, Instruction *InsertBefore
2282) : CastInst(Ty, ZExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002283 assert(castIsValid(getOpcode(), S, Ty) && "Illegal ZExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002284}
2285
2286ZExtInst::ZExtInst(
2287 Value *S, const Type *Ty, const std::string &Name, BasicBlock *InsertAtEnd
2288) : CastInst(Ty, ZExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002289 assert(castIsValid(getOpcode(), S, Ty) && "Illegal ZExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002290}
2291SExtInst::SExtInst(
2292 Value *S, const Type *Ty, const std::string &Name, Instruction *InsertBefore
2293) : CastInst(Ty, SExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002294 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002295}
2296
Jeff Cohencc08c832006-12-02 02:22:01 +00002297SExtInst::SExtInst(
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002298 Value *S, const Type *Ty, const std::string &Name, BasicBlock *InsertAtEnd
2299) : CastInst(Ty, SExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002300 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002301}
2302
2303FPTruncInst::FPTruncInst(
2304 Value *S, const Type *Ty, const std::string &Name, Instruction *InsertBefore
2305) : CastInst(Ty, FPTrunc, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002306 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPTrunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002307}
2308
2309FPTruncInst::FPTruncInst(
2310 Value *S, const Type *Ty, const std::string &Name, BasicBlock *InsertAtEnd
2311) : CastInst(Ty, FPTrunc, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002312 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPTrunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002313}
2314
2315FPExtInst::FPExtInst(
2316 Value *S, const Type *Ty, const std::string &Name, Instruction *InsertBefore
2317) : CastInst(Ty, FPExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002318 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002319}
2320
2321FPExtInst::FPExtInst(
2322 Value *S, const Type *Ty, const std::string &Name, BasicBlock *InsertAtEnd
2323) : CastInst(Ty, FPExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002324 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002325}
2326
2327UIToFPInst::UIToFPInst(
2328 Value *S, const Type *Ty, const std::string &Name, Instruction *InsertBefore
2329) : CastInst(Ty, UIToFP, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002330 assert(castIsValid(getOpcode(), S, Ty) && "Illegal UIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002331}
2332
2333UIToFPInst::UIToFPInst(
2334 Value *S, const Type *Ty, const std::string &Name, BasicBlock *InsertAtEnd
2335) : CastInst(Ty, UIToFP, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002336 assert(castIsValid(getOpcode(), S, Ty) && "Illegal UIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002337}
2338
2339SIToFPInst::SIToFPInst(
2340 Value *S, const Type *Ty, const std::string &Name, Instruction *InsertBefore
2341) : CastInst(Ty, SIToFP, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002342 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002343}
2344
2345SIToFPInst::SIToFPInst(
2346 Value *S, const Type *Ty, const std::string &Name, BasicBlock *InsertAtEnd
2347) : CastInst(Ty, SIToFP, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002348 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002349}
2350
2351FPToUIInst::FPToUIInst(
2352 Value *S, const Type *Ty, const std::string &Name, Instruction *InsertBefore
2353) : CastInst(Ty, FPToUI, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002354 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToUI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002355}
2356
2357FPToUIInst::FPToUIInst(
2358 Value *S, const Type *Ty, const std::string &Name, BasicBlock *InsertAtEnd
2359) : CastInst(Ty, FPToUI, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002360 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToUI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002361}
2362
2363FPToSIInst::FPToSIInst(
2364 Value *S, const Type *Ty, const std::string &Name, Instruction *InsertBefore
2365) : CastInst(Ty, FPToSI, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002366 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToSI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002367}
2368
2369FPToSIInst::FPToSIInst(
2370 Value *S, const Type *Ty, const std::string &Name, BasicBlock *InsertAtEnd
2371) : CastInst(Ty, FPToSI, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002372 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToSI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002373}
2374
2375PtrToIntInst::PtrToIntInst(
2376 Value *S, const Type *Ty, const std::string &Name, Instruction *InsertBefore
2377) : CastInst(Ty, PtrToInt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002378 assert(castIsValid(getOpcode(), S, Ty) && "Illegal PtrToInt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002379}
2380
2381PtrToIntInst::PtrToIntInst(
2382 Value *S, const Type *Ty, const std::string &Name, BasicBlock *InsertAtEnd
2383) : CastInst(Ty, PtrToInt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002384 assert(castIsValid(getOpcode(), S, Ty) && "Illegal PtrToInt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002385}
2386
2387IntToPtrInst::IntToPtrInst(
2388 Value *S, const Type *Ty, const std::string &Name, Instruction *InsertBefore
2389) : CastInst(Ty, IntToPtr, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002390 assert(castIsValid(getOpcode(), S, Ty) && "Illegal IntToPtr");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002391}
2392
2393IntToPtrInst::IntToPtrInst(
2394 Value *S, const Type *Ty, const std::string &Name, BasicBlock *InsertAtEnd
2395) : CastInst(Ty, IntToPtr, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002396 assert(castIsValid(getOpcode(), S, Ty) && "Illegal IntToPtr");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002397}
2398
2399BitCastInst::BitCastInst(
2400 Value *S, const Type *Ty, const std::string &Name, Instruction *InsertBefore
2401) : CastInst(Ty, BitCast, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002402 assert(castIsValid(getOpcode(), S, Ty) && "Illegal BitCast");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002403}
2404
2405BitCastInst::BitCastInst(
2406 Value *S, const Type *Ty, const std::string &Name, BasicBlock *InsertAtEnd
2407) : CastInst(Ty, BitCast, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002408 assert(castIsValid(getOpcode(), S, Ty) && "Illegal BitCast");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002409}
Chris Lattnerf16dc002006-09-17 19:29:56 +00002410
2411//===----------------------------------------------------------------------===//
Reid Spencerd9436b62006-11-20 01:22:35 +00002412// CmpInst Classes
2413//===----------------------------------------------------------------------===//
2414
Nate Begemand2195702008-05-12 19:01:56 +00002415CmpInst::CmpInst(const Type *ty, OtherOps op, unsigned short predicate,
2416 Value *LHS, Value *RHS, const std::string &Name,
2417 Instruction *InsertBefore)
Nate Begeman66d0a0e2008-05-12 20:11:05 +00002418 : Instruction(ty, op,
Gabor Greiff6caff662008-05-10 08:32:32 +00002419 OperandTraits<CmpInst>::op_begin(this),
2420 OperandTraits<CmpInst>::operands(this),
2421 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00002422 Op<0>() = LHS;
2423 Op<1>() = RHS;
Reid Spencerd9436b62006-11-20 01:22:35 +00002424 SubclassData = predicate;
Reid Spencer871a9ea2007-04-11 13:04:48 +00002425 setName(Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002426}
Gabor Greiff6caff662008-05-10 08:32:32 +00002427
Nate Begemand2195702008-05-12 19:01:56 +00002428CmpInst::CmpInst(const Type *ty, OtherOps op, unsigned short predicate,
2429 Value *LHS, Value *RHS, const std::string &Name,
2430 BasicBlock *InsertAtEnd)
Nate Begeman66d0a0e2008-05-12 20:11:05 +00002431 : Instruction(ty, op,
Gabor Greiff6caff662008-05-10 08:32:32 +00002432 OperandTraits<CmpInst>::op_begin(this),
2433 OperandTraits<CmpInst>::operands(this),
2434 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00002435 Op<0>() = LHS;
2436 Op<1>() = RHS;
Reid Spencerd9436b62006-11-20 01:22:35 +00002437 SubclassData = predicate;
Reid Spencer871a9ea2007-04-11 13:04:48 +00002438 setName(Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002439}
2440
2441CmpInst *
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002442CmpInst::Create(OtherOps Op, unsigned short predicate, Value *S1, Value *S2,
Reid Spencerd9436b62006-11-20 01:22:35 +00002443 const std::string &Name, Instruction *InsertBefore) {
2444 if (Op == Instruction::ICmp) {
Nate Begemand2195702008-05-12 19:01:56 +00002445 return new ICmpInst(CmpInst::Predicate(predicate), S1, S2, Name,
Reid Spencerd9436b62006-11-20 01:22:35 +00002446 InsertBefore);
2447 }
Nate Begemand2195702008-05-12 19:01:56 +00002448 if (Op == Instruction::FCmp) {
2449 return new FCmpInst(CmpInst::Predicate(predicate), S1, S2, Name,
2450 InsertBefore);
2451 }
2452 if (Op == Instruction::VICmp) {
2453 return new VICmpInst(CmpInst::Predicate(predicate), S1, S2, Name,
2454 InsertBefore);
2455 }
2456 return new VFCmpInst(CmpInst::Predicate(predicate), S1, S2, Name,
2457 InsertBefore);
Reid Spencerd9436b62006-11-20 01:22:35 +00002458}
2459
2460CmpInst *
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002461CmpInst::Create(OtherOps Op, unsigned short predicate, Value *S1, Value *S2,
Reid Spencerd9436b62006-11-20 01:22:35 +00002462 const std::string &Name, BasicBlock *InsertAtEnd) {
2463 if (Op == Instruction::ICmp) {
Nate Begemand2195702008-05-12 19:01:56 +00002464 return new ICmpInst(CmpInst::Predicate(predicate), S1, S2, Name,
Reid Spencerd9436b62006-11-20 01:22:35 +00002465 InsertAtEnd);
2466 }
Nate Begemand2195702008-05-12 19:01:56 +00002467 if (Op == Instruction::FCmp) {
2468 return new FCmpInst(CmpInst::Predicate(predicate), S1, S2, Name,
2469 InsertAtEnd);
2470 }
2471 if (Op == Instruction::VICmp) {
2472 return new VICmpInst(CmpInst::Predicate(predicate), S1, S2, Name,
2473 InsertAtEnd);
2474 }
2475 return new VFCmpInst(CmpInst::Predicate(predicate), S1, S2, Name,
2476 InsertAtEnd);
Reid Spencerd9436b62006-11-20 01:22:35 +00002477}
2478
2479void CmpInst::swapOperands() {
2480 if (ICmpInst *IC = dyn_cast<ICmpInst>(this))
2481 IC->swapOperands();
2482 else
2483 cast<FCmpInst>(this)->swapOperands();
2484}
2485
2486bool CmpInst::isCommutative() {
2487 if (ICmpInst *IC = dyn_cast<ICmpInst>(this))
2488 return IC->isCommutative();
2489 return cast<FCmpInst>(this)->isCommutative();
2490}
2491
2492bool CmpInst::isEquality() {
2493 if (ICmpInst *IC = dyn_cast<ICmpInst>(this))
2494 return IC->isEquality();
2495 return cast<FCmpInst>(this)->isEquality();
2496}
2497
2498
2499ICmpInst::Predicate ICmpInst::getInversePredicate(Predicate pred) {
2500 switch (pred) {
2501 default:
2502 assert(!"Unknown icmp predicate!");
2503 case ICMP_EQ: return ICMP_NE;
2504 case ICMP_NE: return ICMP_EQ;
2505 case ICMP_UGT: return ICMP_ULE;
2506 case ICMP_ULT: return ICMP_UGE;
2507 case ICMP_UGE: return ICMP_ULT;
2508 case ICMP_ULE: return ICMP_UGT;
2509 case ICMP_SGT: return ICMP_SLE;
2510 case ICMP_SLT: return ICMP_SGE;
2511 case ICMP_SGE: return ICMP_SLT;
2512 case ICMP_SLE: return ICMP_SGT;
2513 }
2514}
2515
2516ICmpInst::Predicate ICmpInst::getSwappedPredicate(Predicate pred) {
2517 switch (pred) {
Reid Spencer266e42b2006-12-23 06:05:41 +00002518 default: assert(! "Unknown icmp predicate!");
Reid Spencerd9436b62006-11-20 01:22:35 +00002519 case ICMP_EQ: case ICMP_NE:
2520 return pred;
2521 case ICMP_SGT: return ICMP_SLT;
2522 case ICMP_SLT: return ICMP_SGT;
2523 case ICMP_SGE: return ICMP_SLE;
2524 case ICMP_SLE: return ICMP_SGE;
2525 case ICMP_UGT: return ICMP_ULT;
2526 case ICMP_ULT: return ICMP_UGT;
2527 case ICMP_UGE: return ICMP_ULE;
2528 case ICMP_ULE: return ICMP_UGE;
2529 }
2530}
2531
Reid Spencer266e42b2006-12-23 06:05:41 +00002532ICmpInst::Predicate ICmpInst::getSignedPredicate(Predicate pred) {
2533 switch (pred) {
2534 default: assert(! "Unknown icmp predicate!");
2535 case ICMP_EQ: case ICMP_NE:
2536 case ICMP_SGT: case ICMP_SLT: case ICMP_SGE: case ICMP_SLE:
2537 return pred;
2538 case ICMP_UGT: return ICMP_SGT;
2539 case ICMP_ULT: return ICMP_SLT;
2540 case ICMP_UGE: return ICMP_SGE;
2541 case ICMP_ULE: return ICMP_SLE;
2542 }
2543}
2544
Nick Lewycky8ea81e82008-01-28 03:48:02 +00002545ICmpInst::Predicate ICmpInst::getUnsignedPredicate(Predicate pred) {
2546 switch (pred) {
2547 default: assert(! "Unknown icmp predicate!");
2548 case ICMP_EQ: case ICMP_NE:
2549 case ICMP_UGT: case ICMP_ULT: case ICMP_UGE: case ICMP_ULE:
2550 return pred;
2551 case ICMP_SGT: return ICMP_UGT;
2552 case ICMP_SLT: return ICMP_ULT;
2553 case ICMP_SGE: return ICMP_UGE;
2554 case ICMP_SLE: return ICMP_ULE;
2555 }
2556}
2557
Reid Spencer266e42b2006-12-23 06:05:41 +00002558bool ICmpInst::isSignedPredicate(Predicate pred) {
2559 switch (pred) {
2560 default: assert(! "Unknown icmp predicate!");
2561 case ICMP_SGT: case ICMP_SLT: case ICMP_SGE: case ICMP_SLE:
2562 return true;
2563 case ICMP_EQ: case ICMP_NE: case ICMP_UGT: case ICMP_ULT:
2564 case ICMP_UGE: case ICMP_ULE:
2565 return false;
2566 }
2567}
2568
Reid Spencer0286bc12007-02-28 22:00:54 +00002569/// Initialize a set of values that all satisfy the condition with C.
2570///
2571ConstantRange
2572ICmpInst::makeConstantRange(Predicate pred, const APInt &C) {
2573 APInt Lower(C);
2574 APInt Upper(C);
2575 uint32_t BitWidth = C.getBitWidth();
2576 switch (pred) {
2577 default: assert(0 && "Invalid ICmp opcode to ConstantRange ctor!");
2578 case ICmpInst::ICMP_EQ: Upper++; break;
2579 case ICmpInst::ICMP_NE: Lower++; break;
2580 case ICmpInst::ICMP_ULT: Lower = APInt::getMinValue(BitWidth); break;
2581 case ICmpInst::ICMP_SLT: Lower = APInt::getSignedMinValue(BitWidth); break;
2582 case ICmpInst::ICMP_UGT:
2583 Lower++; Upper = APInt::getMinValue(BitWidth); // Min = Next(Max)
2584 break;
2585 case ICmpInst::ICMP_SGT:
2586 Lower++; Upper = APInt::getSignedMinValue(BitWidth); // Min = Next(Max)
2587 break;
2588 case ICmpInst::ICMP_ULE:
2589 Lower = APInt::getMinValue(BitWidth); Upper++;
2590 break;
2591 case ICmpInst::ICMP_SLE:
2592 Lower = APInt::getSignedMinValue(BitWidth); Upper++;
2593 break;
2594 case ICmpInst::ICMP_UGE:
2595 Upper = APInt::getMinValue(BitWidth); // Min = Next(Max)
2596 break;
2597 case ICmpInst::ICMP_SGE:
2598 Upper = APInt::getSignedMinValue(BitWidth); // Min = Next(Max)
2599 break;
2600 }
2601 return ConstantRange(Lower, Upper);
2602}
2603
Reid Spencerd9436b62006-11-20 01:22:35 +00002604FCmpInst::Predicate FCmpInst::getInversePredicate(Predicate pred) {
2605 switch (pred) {
2606 default:
2607 assert(!"Unknown icmp predicate!");
2608 case FCMP_OEQ: return FCMP_UNE;
2609 case FCMP_ONE: return FCMP_UEQ;
2610 case FCMP_OGT: return FCMP_ULE;
2611 case FCMP_OLT: return FCMP_UGE;
2612 case FCMP_OGE: return FCMP_ULT;
2613 case FCMP_OLE: return FCMP_UGT;
2614 case FCMP_UEQ: return FCMP_ONE;
2615 case FCMP_UNE: return FCMP_OEQ;
2616 case FCMP_UGT: return FCMP_OLE;
2617 case FCMP_ULT: return FCMP_OGE;
2618 case FCMP_UGE: return FCMP_OLT;
2619 case FCMP_ULE: return FCMP_OGT;
2620 case FCMP_ORD: return FCMP_UNO;
2621 case FCMP_UNO: return FCMP_ORD;
2622 case FCMP_TRUE: return FCMP_FALSE;
2623 case FCMP_FALSE: return FCMP_TRUE;
2624 }
2625}
2626
2627FCmpInst::Predicate FCmpInst::getSwappedPredicate(Predicate pred) {
2628 switch (pred) {
Reid Spencer266e42b2006-12-23 06:05:41 +00002629 default: assert(!"Unknown fcmp predicate!");
Reid Spencerd9436b62006-11-20 01:22:35 +00002630 case FCMP_FALSE: case FCMP_TRUE:
2631 case FCMP_OEQ: case FCMP_ONE:
2632 case FCMP_UEQ: case FCMP_UNE:
2633 case FCMP_ORD: case FCMP_UNO:
2634 return pred;
2635 case FCMP_OGT: return FCMP_OLT;
2636 case FCMP_OLT: return FCMP_OGT;
2637 case FCMP_OGE: return FCMP_OLE;
2638 case FCMP_OLE: return FCMP_OGE;
2639 case FCMP_UGT: return FCMP_ULT;
2640 case FCMP_ULT: return FCMP_UGT;
2641 case FCMP_UGE: return FCMP_ULE;
2642 case FCMP_ULE: return FCMP_UGE;
2643 }
2644}
2645
Reid Spencer266e42b2006-12-23 06:05:41 +00002646bool CmpInst::isUnsigned(unsigned short predicate) {
2647 switch (predicate) {
2648 default: return false;
2649 case ICmpInst::ICMP_ULT: case ICmpInst::ICMP_ULE: case ICmpInst::ICMP_UGT:
2650 case ICmpInst::ICMP_UGE: return true;
2651 }
2652}
2653
2654bool CmpInst::isSigned(unsigned short predicate){
2655 switch (predicate) {
2656 default: return false;
2657 case ICmpInst::ICMP_SLT: case ICmpInst::ICMP_SLE: case ICmpInst::ICMP_SGT:
2658 case ICmpInst::ICMP_SGE: return true;
2659 }
2660}
2661
2662bool CmpInst::isOrdered(unsigned short predicate) {
2663 switch (predicate) {
2664 default: return false;
2665 case FCmpInst::FCMP_OEQ: case FCmpInst::FCMP_ONE: case FCmpInst::FCMP_OGT:
2666 case FCmpInst::FCMP_OLT: case FCmpInst::FCMP_OGE: case FCmpInst::FCMP_OLE:
2667 case FCmpInst::FCMP_ORD: return true;
2668 }
2669}
2670
2671bool CmpInst::isUnordered(unsigned short predicate) {
2672 switch (predicate) {
2673 default: return false;
2674 case FCmpInst::FCMP_UEQ: case FCmpInst::FCMP_UNE: case FCmpInst::FCMP_UGT:
2675 case FCmpInst::FCMP_ULT: case FCmpInst::FCMP_UGE: case FCmpInst::FCMP_ULE:
2676 case FCmpInst::FCMP_UNO: return true;
2677 }
2678}
2679
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002680//===----------------------------------------------------------------------===//
2681// SwitchInst Implementation
2682//===----------------------------------------------------------------------===//
2683
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002684void SwitchInst::init(Value *Value, BasicBlock *Default, unsigned NumCases) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002685 assert(Value && Default);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002686 ReservedSpace = 2+NumCases*2;
2687 NumOperands = 2;
Gabor Greiff6caff662008-05-10 08:32:32 +00002688 OperandList = allocHungoffUses(ReservedSpace);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002689
Gabor Greif2d3024d2008-05-26 21:33:52 +00002690 OperandList[0] = Value;
2691 OperandList[1] = Default;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002692}
2693
Chris Lattner2195fc42007-02-24 00:55:48 +00002694/// SwitchInst ctor - Create a new switch instruction, specifying a value to
2695/// switch on and a default destination. The number of additional cases can
2696/// be specified here to make memory allocation more efficient. This
2697/// constructor can also autoinsert before another instruction.
2698SwitchInst::SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
2699 Instruction *InsertBefore)
2700 : TerminatorInst(Type::VoidTy, Instruction::Switch, 0, 0, InsertBefore) {
2701 init(Value, Default, NumCases);
2702}
2703
2704/// SwitchInst ctor - Create a new switch instruction, specifying a value to
2705/// switch on and a default destination. The number of additional cases can
2706/// be specified here to make memory allocation more efficient. This
2707/// constructor also autoinserts at the end of the specified BasicBlock.
2708SwitchInst::SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
2709 BasicBlock *InsertAtEnd)
2710 : TerminatorInst(Type::VoidTy, Instruction::Switch, 0, 0, InsertAtEnd) {
2711 init(Value, Default, NumCases);
2712}
2713
Misha Brukmanb1c93172005-04-21 23:48:37 +00002714SwitchInst::SwitchInst(const SwitchInst &SI)
Chris Lattner2195fc42007-02-24 00:55:48 +00002715 : TerminatorInst(Type::VoidTy, Instruction::Switch,
Gabor Greiff6caff662008-05-10 08:32:32 +00002716 allocHungoffUses(SI.getNumOperands()), SI.getNumOperands()) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002717 Use *OL = OperandList, *InOL = SI.OperandList;
2718 for (unsigned i = 0, E = SI.getNumOperands(); i != E; i+=2) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00002719 OL[i] = InOL[i];
2720 OL[i+1] = InOL[i+1];
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002721 }
2722}
2723
Gordon Henriksen14a55692007-12-10 02:14:30 +00002724SwitchInst::~SwitchInst() {
Gabor Greiff6caff662008-05-10 08:32:32 +00002725 dropHungoffUses(OperandList);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002726}
2727
2728
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002729/// addCase - Add an entry to the switch instruction...
2730///
Chris Lattner47ac1872005-02-24 05:32:09 +00002731void SwitchInst::addCase(ConstantInt *OnVal, BasicBlock *Dest) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002732 unsigned OpNo = NumOperands;
2733 if (OpNo+2 > ReservedSpace)
2734 resizeOperands(0); // Get more space!
2735 // Initialize some new operands.
Chris Lattnerf711f8d2005-01-29 01:05:12 +00002736 assert(OpNo+1 < ReservedSpace && "Growing didn't work!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002737 NumOperands = OpNo+2;
Gabor Greif2d3024d2008-05-26 21:33:52 +00002738 OperandList[OpNo] = OnVal;
2739 OperandList[OpNo+1] = Dest;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002740}
2741
2742/// removeCase - This method removes the specified successor from the switch
2743/// instruction. Note that this cannot be used to remove the default
2744/// destination (successor #0).
2745///
2746void SwitchInst::removeCase(unsigned idx) {
2747 assert(idx != 0 && "Cannot remove the default case!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002748 assert(idx*2 < getNumOperands() && "Successor index out of range!!!");
2749
2750 unsigned NumOps = getNumOperands();
2751 Use *OL = OperandList;
2752
2753 // Move everything after this operand down.
2754 //
2755 // FIXME: we could just swap with the end of the list, then erase. However,
2756 // client might not expect this to happen. The code as it is thrashes the
2757 // use/def lists, which is kinda lame.
2758 for (unsigned i = (idx+1)*2; i != NumOps; i += 2) {
2759 OL[i-2] = OL[i];
2760 OL[i-2+1] = OL[i+1];
2761 }
2762
2763 // Nuke the last value.
2764 OL[NumOps-2].set(0);
2765 OL[NumOps-2+1].set(0);
2766 NumOperands = NumOps-2;
2767}
2768
2769/// resizeOperands - resize operands - This adjusts the length of the operands
2770/// list according to the following behavior:
2771/// 1. If NumOps == 0, grow the operand list in response to a push_back style
Gabor Greiff6caff662008-05-10 08:32:32 +00002772/// of operation. This grows the number of ops by 3 times.
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002773/// 2. If NumOps > NumOperands, reserve space for NumOps operands.
2774/// 3. If NumOps == NumOperands, trim the reserved space.
2775///
2776void SwitchInst::resizeOperands(unsigned NumOps) {
Gabor Greiff6caff662008-05-10 08:32:32 +00002777 unsigned e = getNumOperands();
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002778 if (NumOps == 0) {
Gabor Greiff6caff662008-05-10 08:32:32 +00002779 NumOps = e*3;
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002780 } else if (NumOps*2 > NumOperands) {
2781 // No resize needed.
2782 if (ReservedSpace >= NumOps) return;
2783 } else if (NumOps == NumOperands) {
2784 if (ReservedSpace == NumOps) return;
2785 } else {
Chris Lattnerf711f8d2005-01-29 01:05:12 +00002786 return;
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002787 }
2788
2789 ReservedSpace = NumOps;
Gabor Greiff6caff662008-05-10 08:32:32 +00002790 Use *NewOps = allocHungoffUses(NumOps);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002791 Use *OldOps = OperandList;
Gabor Greiff6caff662008-05-10 08:32:32 +00002792 for (unsigned i = 0; i != e; ++i) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00002793 NewOps[i] = OldOps[i];
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002794 }
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002795 OperandList = NewOps;
Gabor Greiff6caff662008-05-10 08:32:32 +00002796 if (OldOps) Use::zap(OldOps, OldOps + e, true);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002797}
2798
2799
2800BasicBlock *SwitchInst::getSuccessorV(unsigned idx) const {
2801 return getSuccessor(idx);
2802}
2803unsigned SwitchInst::getNumSuccessorsV() const {
2804 return getNumSuccessors();
2805}
2806void SwitchInst::setSuccessorV(unsigned idx, BasicBlock *B) {
2807 setSuccessor(idx, B);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002808}
Chris Lattnerf22be932004-10-15 23:52:53 +00002809
Devang Patel295711f2008-02-19 22:15:16 +00002810//===----------------------------------------------------------------------===//
2811// GetResultInst Implementation
2812//===----------------------------------------------------------------------===//
2813
Devang Patel666d4512008-02-20 19:10:47 +00002814GetResultInst::GetResultInst(Value *Aggregate, unsigned Index,
Devang Patel295711f2008-02-19 22:15:16 +00002815 const std::string &Name,
2816 Instruction *InsertBef)
Gabor Greif0d42adf2008-05-13 07:09:08 +00002817 : UnaryInstruction(cast<StructType>(Aggregate->getType())
2818 ->getElementType(Index),
2819 GetResult, Aggregate, InsertBef),
2820 Idx(Index) {
2821 assert(isValidOperands(Aggregate, Index)
2822 && "Invalid GetResultInst operands!");
Devang Patel295711f2008-02-19 22:15:16 +00002823 setName(Name);
2824}
2825
Devang Patel666d4512008-02-20 19:10:47 +00002826bool GetResultInst::isValidOperands(const Value *Aggregate, unsigned Index) {
2827 if (!Aggregate)
Devang Patel295711f2008-02-19 22:15:16 +00002828 return false;
Devang Patel666d4512008-02-20 19:10:47 +00002829
Devang Patelcf193b82008-02-20 19:39:41 +00002830 if (const StructType *STy = dyn_cast<StructType>(Aggregate->getType())) {
2831 unsigned NumElements = STy->getNumElements();
Chris Lattnerb6917d22008-04-23 05:36:34 +00002832 if (Index >= NumElements || NumElements == 0)
Devang Patelcf193b82008-02-20 19:39:41 +00002833 return false;
2834
2835 // getresult aggregate value's element types are restricted to
2836 // avoid nested aggregates.
2837 for (unsigned i = 0; i < NumElements; ++i)
2838 if (!STy->getElementType(i)->isFirstClassType())
2839 return false;
2840
2841 // Otherwise, Aggregate is valid.
2842 return true;
2843 }
Devang Patel666d4512008-02-20 19:10:47 +00002844 return false;
Devang Patel295711f2008-02-19 22:15:16 +00002845}
2846
Chris Lattnerf22be932004-10-15 23:52:53 +00002847// Define these methods here so vtables don't get emitted into every translation
2848// unit that uses these classes.
2849
2850GetElementPtrInst *GetElementPtrInst::clone() const {
Gabor Greife9ecc682008-04-06 20:25:17 +00002851 return new(getNumOperands()) GetElementPtrInst(*this);
Chris Lattnerf22be932004-10-15 23:52:53 +00002852}
2853
2854BinaryOperator *BinaryOperator::clone() const {
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002855 return Create(getOpcode(), Op<0>(), Op<1>());
Chris Lattnerf22be932004-10-15 23:52:53 +00002856}
2857
Chris Lattner0b490b02007-08-24 20:48:18 +00002858FCmpInst* FCmpInst::clone() const {
Gabor Greiff6caff662008-05-10 08:32:32 +00002859 return new FCmpInst(getPredicate(), Op<0>(), Op<1>());
Chris Lattner0b490b02007-08-24 20:48:18 +00002860}
2861ICmpInst* ICmpInst::clone() const {
Gabor Greiff6caff662008-05-10 08:32:32 +00002862 return new ICmpInst(getPredicate(), Op<0>(), Op<1>());
Reid Spencerd9436b62006-11-20 01:22:35 +00002863}
2864
Nate Begemand2195702008-05-12 19:01:56 +00002865VFCmpInst* VFCmpInst::clone() const {
2866 return new VFCmpInst(getPredicate(), Op<0>(), Op<1>());
2867}
2868VICmpInst* VICmpInst::clone() const {
2869 return new VICmpInst(getPredicate(), Op<0>(), Op<1>());
2870}
2871
Dan Gohman0752bff2008-05-23 00:36:11 +00002872ExtractValueInst *ExtractValueInst::clone() const {
2873 return new(getNumOperands()) ExtractValueInst(*this);
2874}
2875InsertValueInst *InsertValueInst::clone() const {
2876 return new(getNumOperands()) InsertValueInst(*this);
2877}
2878
2879
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002880MallocInst *MallocInst::clone() const { return new MallocInst(*this); }
2881AllocaInst *AllocaInst::clone() const { return new AllocaInst(*this); }
2882FreeInst *FreeInst::clone() const { return new FreeInst(getOperand(0)); }
2883LoadInst *LoadInst::clone() const { return new LoadInst(*this); }
2884StoreInst *StoreInst::clone() const { return new StoreInst(*this); }
2885CastInst *TruncInst::clone() const { return new TruncInst(*this); }
2886CastInst *ZExtInst::clone() const { return new ZExtInst(*this); }
2887CastInst *SExtInst::clone() const { return new SExtInst(*this); }
2888CastInst *FPTruncInst::clone() const { return new FPTruncInst(*this); }
2889CastInst *FPExtInst::clone() const { return new FPExtInst(*this); }
2890CastInst *UIToFPInst::clone() const { return new UIToFPInst(*this); }
2891CastInst *SIToFPInst::clone() const { return new SIToFPInst(*this); }
2892CastInst *FPToUIInst::clone() const { return new FPToUIInst(*this); }
2893CastInst *FPToSIInst::clone() const { return new FPToSIInst(*this); }
2894CastInst *PtrToIntInst::clone() const { return new PtrToIntInst(*this); }
2895CastInst *IntToPtrInst::clone() const { return new IntToPtrInst(*this); }
2896CastInst *BitCastInst::clone() const { return new BitCastInst(*this); }
Gabor Greif697e94c2008-05-15 10:04:30 +00002897CallInst *CallInst::clone() const {
2898 return new(getNumOperands()) CallInst(*this);
2899}
2900SelectInst *SelectInst::clone() const {
2901 return new(getNumOperands()) SelectInst(*this);
2902}
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002903VAArgInst *VAArgInst::clone() const { return new VAArgInst(*this); }
2904
Chris Lattnerbbe0a422006-04-08 01:18:18 +00002905ExtractElementInst *ExtractElementInst::clone() const {
2906 return new ExtractElementInst(*this);
2907}
2908InsertElementInst *InsertElementInst::clone() const {
Gabor Greife9ecc682008-04-06 20:25:17 +00002909 return InsertElementInst::Create(*this);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00002910}
2911ShuffleVectorInst *ShuffleVectorInst::clone() const {
2912 return new ShuffleVectorInst(*this);
2913}
Chris Lattnerf22be932004-10-15 23:52:53 +00002914PHINode *PHINode::clone() const { return new PHINode(*this); }
Gabor Greif697e94c2008-05-15 10:04:30 +00002915ReturnInst *ReturnInst::clone() const {
2916 return new(getNumOperands()) ReturnInst(*this);
2917}
2918BranchInst *BranchInst::clone() const {
2919 return new(getNumOperands()) BranchInst(*this);
2920}
Gabor Greiff6caff662008-05-10 08:32:32 +00002921SwitchInst *SwitchInst::clone() const { return new SwitchInst(*this); }
Gabor Greif697e94c2008-05-15 10:04:30 +00002922InvokeInst *InvokeInst::clone() const {
2923 return new(getNumOperands()) InvokeInst(*this);
2924}
Chris Lattnerf22be932004-10-15 23:52:53 +00002925UnwindInst *UnwindInst::clone() const { return new UnwindInst(); }
Chris Lattner5e0b9f22004-10-16 18:08:06 +00002926UnreachableInst *UnreachableInst::clone() const { return new UnreachableInst();}
Devang Patel295711f2008-02-19 22:15:16 +00002927GetResultInst *GetResultInst::clone() const { return new GetResultInst(*this); }