blob: b3a78b729f5cf4f3ad9306b112a22a893028ede9 [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"
Reid Spencerce38beb2007-04-09 18:00:57 +000020#include "llvm/ParameterAttributes.h"
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +000021#include "llvm/Support/CallSite.h"
Reid Spencer0286bc12007-02-28 22:00:54 +000022#include "llvm/Support/ConstantRange.h"
Christopher Lamb84485702007-04-22 19:24:39 +000023#include "llvm/Support/MathExtras.h"
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +000024using namespace llvm;
25
Chris Lattner3e13b8c2008-01-02 23:42:30 +000026//===----------------------------------------------------------------------===//
27// CallSite Class
28//===----------------------------------------------------------------------===//
29
Duncan Sands85fab3a2008-02-18 17:32:13 +000030CallSite::CallSite(Instruction *C) {
31 assert((isa<CallInst>(C) || isa<InvokeInst>(C)) && "Not a call!");
32 I = C;
33}
Chris Lattnerf7b6d312005-05-06 20:26:43 +000034unsigned CallSite::getCallingConv() const {
35 if (CallInst *CI = dyn_cast<CallInst>(I))
36 return CI->getCallingConv();
37 else
38 return cast<InvokeInst>(I)->getCallingConv();
39}
40void CallSite::setCallingConv(unsigned CC) {
41 if (CallInst *CI = dyn_cast<CallInst>(I))
42 CI->setCallingConv(CC);
43 else
44 cast<InvokeInst>(I)->setCallingConv(CC);
45}
Duncan Sandsad0ea2d2007-11-27 13:23:08 +000046const ParamAttrsList* CallSite::getParamAttrs() const {
47 if (CallInst *CI = dyn_cast<CallInst>(I))
48 return CI->getParamAttrs();
49 else
50 return cast<InvokeInst>(I)->getParamAttrs();
51}
52void CallSite::setParamAttrs(const ParamAttrsList *PAL) {
53 if (CallInst *CI = dyn_cast<CallInst>(I))
54 CI->setParamAttrs(PAL);
55 else
56 cast<InvokeInst>(I)->setParamAttrs(PAL);
57}
Dale Johannesen89268bc2008-02-19 21:38:47 +000058bool CallSite::paramHasAttr(uint16_t i, ParameterAttributes attr) const {
Duncan Sands5208d1a2007-11-28 17:07:01 +000059 if (CallInst *CI = dyn_cast<CallInst>(I))
Dale Johannesen89268bc2008-02-19 21:38:47 +000060 return CI->paramHasAttr(i, attr);
Duncan Sands5208d1a2007-11-28 17:07:01 +000061 else
Dale Johannesen89268bc2008-02-19 21:38:47 +000062 return cast<InvokeInst>(I)->paramHasAttr(i, attr);
Duncan Sands5208d1a2007-11-28 17:07:01 +000063}
Dale Johanneseneabc5f32008-02-22 17:49:45 +000064uint16_t CallSite::getParamAlignment(uint16_t i) const {
65 if (CallInst *CI = dyn_cast<CallInst>(I))
66 return CI->getParamAlignment(i);
67 else
68 return cast<InvokeInst>(I)->getParamAlignment(i);
69}
70
Duncan Sands38ef3a82007-12-03 20:06:50 +000071bool CallSite::doesNotAccessMemory() const {
72 if (CallInst *CI = dyn_cast<CallInst>(I))
73 return CI->doesNotAccessMemory();
74 else
75 return cast<InvokeInst>(I)->doesNotAccessMemory();
76}
77bool CallSite::onlyReadsMemory() const {
78 if (CallInst *CI = dyn_cast<CallInst>(I))
79 return CI->onlyReadsMemory();
80 else
81 return cast<InvokeInst>(I)->onlyReadsMemory();
82}
Duncan Sands3353ed02007-12-18 09:59:50 +000083bool CallSite::doesNotThrow() const {
Duncan Sands8e4847e2007-12-16 15:51:49 +000084 if (CallInst *CI = dyn_cast<CallInst>(I))
Duncan Sands3353ed02007-12-18 09:59:50 +000085 return CI->doesNotThrow();
Duncan Sands8e4847e2007-12-16 15:51:49 +000086 else
Duncan Sands3353ed02007-12-18 09:59:50 +000087 return cast<InvokeInst>(I)->doesNotThrow();
Duncan Sands8e4847e2007-12-16 15:51:49 +000088}
Duncan Sandsaa31b922007-12-19 21:13:37 +000089void CallSite::setDoesNotThrow(bool doesNotThrow) {
90 if (CallInst *CI = dyn_cast<CallInst>(I))
91 CI->setDoesNotThrow(doesNotThrow);
92 else
93 cast<InvokeInst>(I)->setDoesNotThrow(doesNotThrow);
94}
Chris Lattnerf7b6d312005-05-06 20:26:43 +000095
Gordon Henriksen14a55692007-12-10 02:14:30 +000096//===----------------------------------------------------------------------===//
97// TerminatorInst Class
98//===----------------------------------------------------------------------===//
99
100// Out of line virtual method, so the vtable, etc has a home.
101TerminatorInst::~TerminatorInst() {
102}
103
104// Out of line virtual method, so the vtable, etc has a home.
105UnaryInstruction::~UnaryInstruction() {
106}
107
108
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000109//===----------------------------------------------------------------------===//
110// PHINode Class
111//===----------------------------------------------------------------------===//
112
113PHINode::PHINode(const PHINode &PN)
114 : Instruction(PN.getType(), Instruction::PHI,
115 new Use[PN.getNumOperands()], PN.getNumOperands()),
116 ReservedSpace(PN.getNumOperands()) {
117 Use *OL = OperandList;
118 for (unsigned i = 0, e = PN.getNumOperands(); i != e; i+=2) {
119 OL[i].init(PN.getOperand(i), this);
120 OL[i+1].init(PN.getOperand(i+1), this);
121 }
122}
123
Gordon Henriksen14a55692007-12-10 02:14:30 +0000124PHINode::~PHINode() {
125 delete [] OperandList;
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000126}
127
128// removeIncomingValue - Remove an incoming value. This is useful if a
129// predecessor basic block is deleted.
130Value *PHINode::removeIncomingValue(unsigned Idx, bool DeletePHIIfEmpty) {
131 unsigned NumOps = getNumOperands();
132 Use *OL = OperandList;
133 assert(Idx*2 < NumOps && "BB not in PHI node!");
134 Value *Removed = OL[Idx*2];
135
136 // Move everything after this operand down.
137 //
138 // FIXME: we could just swap with the end of the list, then erase. However,
139 // client might not expect this to happen. The code as it is thrashes the
140 // use/def lists, which is kinda lame.
141 for (unsigned i = (Idx+1)*2; i != NumOps; i += 2) {
142 OL[i-2] = OL[i];
143 OL[i-2+1] = OL[i+1];
144 }
145
146 // Nuke the last value.
147 OL[NumOps-2].set(0);
148 OL[NumOps-2+1].set(0);
149 NumOperands = NumOps-2;
150
151 // If the PHI node is dead, because it has zero entries, nuke it now.
152 if (NumOps == 2 && DeletePHIIfEmpty) {
153 // If anyone is using this PHI, make them use a dummy value instead...
154 replaceAllUsesWith(UndefValue::get(getType()));
155 eraseFromParent();
156 }
157 return Removed;
158}
159
160/// resizeOperands - resize operands - This adjusts the length of the operands
161/// list according to the following behavior:
162/// 1. If NumOps == 0, grow the operand list in response to a push_back style
163/// of operation. This grows the number of ops by 1.5 times.
164/// 2. If NumOps > NumOperands, reserve space for NumOps operands.
165/// 3. If NumOps == NumOperands, trim the reserved space.
166///
167void PHINode::resizeOperands(unsigned NumOps) {
168 if (NumOps == 0) {
169 NumOps = (getNumOperands())*3/2;
170 if (NumOps < 4) NumOps = 4; // 4 op PHI nodes are VERY common.
171 } else if (NumOps*2 > NumOperands) {
172 // No resize needed.
173 if (ReservedSpace >= NumOps) return;
174 } else if (NumOps == NumOperands) {
175 if (ReservedSpace == NumOps) return;
176 } else {
Misha Brukmanb1c93172005-04-21 23:48:37 +0000177 return;
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000178 }
179
180 ReservedSpace = NumOps;
181 Use *NewOps = new Use[NumOps];
182 Use *OldOps = OperandList;
183 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
184 NewOps[i].init(OldOps[i], this);
185 OldOps[i].set(0);
186 }
187 delete [] OldOps;
188 OperandList = NewOps;
189}
190
Nate Begemanb3923212005-08-04 23:24:19 +0000191/// hasConstantValue - If the specified PHI node always merges together the same
192/// value, return the value, otherwise return null.
193///
Chris Lattner1d8b2482005-08-05 00:49:06 +0000194Value *PHINode::hasConstantValue(bool AllowNonDominatingInstruction) const {
Nate Begemanb3923212005-08-04 23:24:19 +0000195 // If the PHI node only has one incoming value, eliminate the PHI node...
Anton Korobeynikov579f0712008-02-20 11:08:44 +0000196 if (getNumIncomingValues() == 1) {
Chris Lattner6e709c12005-08-05 15:37:31 +0000197 if (getIncomingValue(0) != this) // not X = phi X
198 return getIncomingValue(0);
199 else
200 return UndefValue::get(getType()); // Self cycle is dead.
Anton Korobeynikov579f0712008-02-20 11:08:44 +0000201 }
Chris Lattner6e709c12005-08-05 15:37:31 +0000202
Nate Begemanb3923212005-08-04 23:24:19 +0000203 // Otherwise if all of the incoming values are the same for the PHI, replace
204 // the PHI node with the incoming value.
205 //
206 Value *InVal = 0;
Chris Lattnerbcd8d2c2005-08-05 01:00:58 +0000207 bool HasUndefInput = false;
Nate Begemanb3923212005-08-04 23:24:19 +0000208 for (unsigned i = 0, e = getNumIncomingValues(); i != e; ++i)
Anton Korobeynikov579f0712008-02-20 11:08:44 +0000209 if (isa<UndefValue>(getIncomingValue(i))) {
Chris Lattnerbcd8d2c2005-08-05 01:00:58 +0000210 HasUndefInput = true;
Anton Korobeynikov579f0712008-02-20 11:08:44 +0000211 } else if (getIncomingValue(i) != this) { // Not the PHI node itself...
Nate Begemanb3923212005-08-04 23:24:19 +0000212 if (InVal && getIncomingValue(i) != InVal)
213 return 0; // Not the same, bail out.
214 else
215 InVal = getIncomingValue(i);
Anton Korobeynikov579f0712008-02-20 11:08:44 +0000216 }
Nate Begemanb3923212005-08-04 23:24:19 +0000217
218 // The only case that could cause InVal to be null is if we have a PHI node
219 // that only has entries for itself. In this case, there is no entry into the
220 // loop, so kill the PHI.
221 //
222 if (InVal == 0) InVal = UndefValue::get(getType());
223
Chris Lattnerbcd8d2c2005-08-05 01:00:58 +0000224 // If we have a PHI node like phi(X, undef, X), where X is defined by some
225 // instruction, we cannot always return X as the result of the PHI node. Only
226 // do this if X is not an instruction (thus it must dominate the PHI block),
227 // or if the client is prepared to deal with this possibility.
228 if (HasUndefInput && !AllowNonDominatingInstruction)
229 if (Instruction *IV = dyn_cast<Instruction>(InVal))
230 // If it's in the entry block, it dominates everything.
Dan Gohmandcb291f2007-03-22 16:38:57 +0000231 if (IV->getParent() != &IV->getParent()->getParent()->getEntryBlock() ||
Chris Lattner37774af2005-08-05 01:03:27 +0000232 isa<InvokeInst>(IV))
Chris Lattnerbcd8d2c2005-08-05 01:00:58 +0000233 return 0; // Cannot guarantee that InVal dominates this PHINode.
234
Nate Begemanb3923212005-08-04 23:24:19 +0000235 // All of the incoming values are the same, return the value now.
236 return InVal;
237}
238
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000239
240//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000241// CallInst Implementation
242//===----------------------------------------------------------------------===//
243
Gordon Henriksen14a55692007-12-10 02:14:30 +0000244CallInst::~CallInst() {
245 delete [] OperandList;
246 if (ParamAttrs)
247 ParamAttrs->dropRef();
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000248}
249
Chris Lattner054ba2c2007-02-13 00:58:44 +0000250void CallInst::init(Value *Func, Value* const *Params, unsigned NumParams) {
Reid Spencer019c8862007-04-09 15:01:12 +0000251 ParamAttrs = 0;
Chris Lattner054ba2c2007-02-13 00:58:44 +0000252 NumOperands = NumParams+1;
253 Use *OL = OperandList = new Use[NumParams+1];
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000254 OL[0].init(Func, this);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000255
Misha Brukmanb1c93172005-04-21 23:48:37 +0000256 const FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000257 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000258 FTy = FTy; // silence warning.
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000259
Chris Lattner054ba2c2007-02-13 00:58:44 +0000260 assert((NumParams == FTy->getNumParams() ||
261 (FTy->isVarArg() && NumParams > FTy->getNumParams())) &&
Chris Lattner667a0562006-05-03 00:48:22 +0000262 "Calling a function with bad signature!");
Chris Lattner054ba2c2007-02-13 00:58:44 +0000263 for (unsigned i = 0; i != NumParams; ++i) {
Chris Lattner667a0562006-05-03 00:48:22 +0000264 assert((i >= FTy->getNumParams() ||
265 FTy->getParamType(i) == Params[i]->getType()) &&
266 "Calling a function with a bad signature!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000267 OL[i+1].init(Params[i], this);
Chris Lattner667a0562006-05-03 00:48:22 +0000268 }
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000269}
270
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000271void CallInst::init(Value *Func, Value *Actual1, Value *Actual2) {
Reid Spencer019c8862007-04-09 15:01:12 +0000272 ParamAttrs = 0;
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000273 NumOperands = 3;
274 Use *OL = OperandList = new Use[3];
275 OL[0].init(Func, this);
276 OL[1].init(Actual1, this);
277 OL[2].init(Actual2, this);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000278
279 const FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000280 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000281 FTy = FTy; // silence warning.
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000282
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000283 assert((FTy->getNumParams() == 2 ||
Chris Lattner667a0562006-05-03 00:48:22 +0000284 (FTy->isVarArg() && FTy->getNumParams() < 2)) &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000285 "Calling a function with bad signature");
Chris Lattner667a0562006-05-03 00:48:22 +0000286 assert((0 >= FTy->getNumParams() ||
287 FTy->getParamType(0) == Actual1->getType()) &&
288 "Calling a function with a bad signature!");
289 assert((1 >= FTy->getNumParams() ||
290 FTy->getParamType(1) == Actual2->getType()) &&
291 "Calling a function with a bad signature!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000292}
293
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000294void CallInst::init(Value *Func, Value *Actual) {
Reid Spencer019c8862007-04-09 15:01:12 +0000295 ParamAttrs = 0;
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000296 NumOperands = 2;
297 Use *OL = OperandList = new Use[2];
298 OL[0].init(Func, this);
299 OL[1].init(Actual, this);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000300
301 const FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000302 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000303 FTy = FTy; // silence warning.
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000304
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000305 assert((FTy->getNumParams() == 1 ||
306 (FTy->isVarArg() && FTy->getNumParams() == 0)) &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000307 "Calling a function with bad signature");
Chris Lattner667a0562006-05-03 00:48:22 +0000308 assert((0 == FTy->getNumParams() ||
309 FTy->getParamType(0) == Actual->getType()) &&
310 "Calling a function with a bad signature!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000311}
312
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000313void CallInst::init(Value *Func) {
Reid Spencer019c8862007-04-09 15:01:12 +0000314 ParamAttrs = 0;
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000315 NumOperands = 1;
316 Use *OL = OperandList = new Use[1];
317 OL[0].init(Func, this);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000318
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000319 const FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000320 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000321 FTy = FTy; // silence warning.
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000322
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000323 assert(FTy->getNumParams() == 0 && "Calling a function with bad signature");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000324}
325
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000326CallInst::CallInst(Value *Func, Value* Actual, const std::string &Name,
Chris Lattner2195fc42007-02-24 00:55:48 +0000327 Instruction *InsertBefore)
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000328 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
329 ->getElementType())->getReturnType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000330 Instruction::Call, 0, 0, InsertBefore) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000331 init(Func, Actual);
Chris Lattner2195fc42007-02-24 00:55:48 +0000332 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000333}
334
335CallInst::CallInst(Value *Func, Value* Actual, const std::string &Name,
336 BasicBlock *InsertAtEnd)
337 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
338 ->getElementType())->getReturnType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000339 Instruction::Call, 0, 0, InsertAtEnd) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000340 init(Func, Actual);
Chris Lattner2195fc42007-02-24 00:55:48 +0000341 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000342}
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000343CallInst::CallInst(Value *Func, const std::string &Name,
344 Instruction *InsertBefore)
345 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
346 ->getElementType())->getReturnType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000347 Instruction::Call, 0, 0, InsertBefore) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000348 init(Func);
Chris Lattner2195fc42007-02-24 00:55:48 +0000349 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000350}
351
352CallInst::CallInst(Value *Func, const std::string &Name,
353 BasicBlock *InsertAtEnd)
354 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
355 ->getElementType())->getReturnType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000356 Instruction::Call, 0, 0, InsertAtEnd) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000357 init(Func);
Chris Lattner2195fc42007-02-24 00:55:48 +0000358 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000359}
360
Misha Brukmanb1c93172005-04-21 23:48:37 +0000361CallInst::CallInst(const CallInst &CI)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000362 : Instruction(CI.getType(), Instruction::Call, new Use[CI.getNumOperands()],
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000363 CI.getNumOperands()),
364 ParamAttrs(0) {
365 setParamAttrs(CI.getParamAttrs());
Chris Lattnerf7b6d312005-05-06 20:26:43 +0000366 SubclassData = CI.SubclassData;
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000367 Use *OL = OperandList;
368 Use *InOL = CI.OperandList;
369 for (unsigned i = 0, e = CI.getNumOperands(); i != e; ++i)
370 OL[i].init(InOL[i], this);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000371}
372
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000373void CallInst::setParamAttrs(const ParamAttrsList *newAttrs) {
374 if (ParamAttrs == newAttrs)
375 return;
376
Reid Spencerc6a83842007-04-22 17:28:03 +0000377 if (ParamAttrs)
378 ParamAttrs->dropRef();
379
380 if (newAttrs)
381 newAttrs->addRef();
382
383 ParamAttrs = newAttrs;
384}
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000385
Dale Johannesen89268bc2008-02-19 21:38:47 +0000386bool CallInst::paramHasAttr(uint16_t i, ParameterAttributes attr) const {
387 if (ParamAttrs && ParamAttrs->paramHasAttr(i, attr))
Duncan Sands5208d1a2007-11-28 17:07:01 +0000388 return true;
Duncan Sands8dfcd592007-11-29 08:30:15 +0000389 if (const Function *F = getCalledFunction())
Dale Johannesen89268bc2008-02-19 21:38:47 +0000390 return F->paramHasAttr(i, attr);
Duncan Sands8dfcd592007-11-29 08:30:15 +0000391 return false;
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000392}
393
Dale Johanneseneabc5f32008-02-22 17:49:45 +0000394uint16_t CallInst::getParamAlignment(uint16_t i) const {
395 if (ParamAttrs && ParamAttrs->getParamAlignment(i))
396 return ParamAttrs->getParamAlignment(i);
397 if (const Function *F = getCalledFunction())
398 return F->getParamAlignment(i);
399 return 0;
400}
401
Chris Lattner3e13b8c2008-01-02 23:42:30 +0000402/// @brief Determine if the call does not access memory.
403bool CallInst::doesNotAccessMemory() const {
404 return paramHasAttr(0, ParamAttr::ReadNone);
405}
406
407/// @brief Determine if the call does not access or only reads memory.
408bool CallInst::onlyReadsMemory() const {
409 return doesNotAccessMemory() || paramHasAttr(0, ParamAttr::ReadOnly);
410}
411
412/// @brief Determine if the call cannot return.
413bool CallInst::doesNotReturn() const {
414 return paramHasAttr(0, ParamAttr::NoReturn);
415}
416
417/// @brief Determine if the call cannot unwind.
418bool CallInst::doesNotThrow() const {
419 return paramHasAttr(0, ParamAttr::NoUnwind);
420}
421
422/// @brief Determine if the call returns a structure.
423bool CallInst::isStructReturn() const {
424 // Be friendly and also check the callee.
425 return paramHasAttr(1, ParamAttr::StructRet);
426}
427
Evan Cheng09dde602008-01-12 18:57:32 +0000428/// @brief Determine if any call argument is an aggregate passed by value.
429bool CallInst::hasByValArgument() const {
Duncan Sandsa59f3962008-01-21 11:27:55 +0000430 if (ParamAttrs && ParamAttrs->hasAttrSomewhere(ParamAttr::ByVal))
431 return true;
432 // Be consistent with other methods and check the callee too.
433 if (const Function *F = getCalledFunction())
434 if (const ParamAttrsList *PAL = F->getParamAttrs())
435 return PAL->hasAttrSomewhere(ParamAttr::ByVal);
436 return false;
Evan Cheng09dde602008-01-12 18:57:32 +0000437}
438
Duncan Sandsaa31b922007-12-19 21:13:37 +0000439void CallInst::setDoesNotThrow(bool doesNotThrow) {
440 const ParamAttrsList *PAL = getParamAttrs();
441 if (doesNotThrow)
442 PAL = ParamAttrsList::includeAttrs(PAL, 0, ParamAttr::NoUnwind);
443 else
444 PAL = ParamAttrsList::excludeAttrs(PAL, 0, ParamAttr::NoUnwind);
445 setParamAttrs(PAL);
446}
447
Duncan Sands5208d1a2007-11-28 17:07:01 +0000448
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000449//===----------------------------------------------------------------------===//
450// InvokeInst Implementation
451//===----------------------------------------------------------------------===//
452
Gordon Henriksen14a55692007-12-10 02:14:30 +0000453InvokeInst::~InvokeInst() {
454 delete [] OperandList;
455 if (ParamAttrs)
456 ParamAttrs->dropRef();
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000457}
458
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000459void InvokeInst::init(Value *Fn, BasicBlock *IfNormal, BasicBlock *IfException,
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000460 Value* const *Args, unsigned NumArgs) {
Reid Spencerce38beb2007-04-09 18:00:57 +0000461 ParamAttrs = 0;
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000462 NumOperands = 3+NumArgs;
463 Use *OL = OperandList = new Use[3+NumArgs];
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000464 OL[0].init(Fn, this);
465 OL[1].init(IfNormal, this);
466 OL[2].init(IfException, this);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000467 const FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000468 cast<FunctionType>(cast<PointerType>(Fn->getType())->getElementType());
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000469 FTy = FTy; // silence warning.
Misha Brukmanb1c93172005-04-21 23:48:37 +0000470
Anton Korobeynikov579f0712008-02-20 11:08:44 +0000471 assert(((NumArgs == FTy->getNumParams()) ||
472 (FTy->isVarArg() && NumArgs > FTy->getNumParams())) &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000473 "Calling a function with bad signature");
Misha Brukmanb1c93172005-04-21 23:48:37 +0000474
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000475 for (unsigned i = 0, e = NumArgs; i != e; i++) {
Chris Lattner667a0562006-05-03 00:48:22 +0000476 assert((i >= FTy->getNumParams() ||
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000477 FTy->getParamType(i) == Args[i]->getType()) &&
Chris Lattner667a0562006-05-03 00:48:22 +0000478 "Invoking a function with a bad signature!");
479
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000480 OL[i+3].init(Args[i], this);
Chris Lattner667a0562006-05-03 00:48:22 +0000481 }
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000482}
483
Misha Brukmanb1c93172005-04-21 23:48:37 +0000484InvokeInst::InvokeInst(const InvokeInst &II)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000485 : TerminatorInst(II.getType(), Instruction::Invoke,
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000486 new Use[II.getNumOperands()], II.getNumOperands()),
487 ParamAttrs(0) {
488 setParamAttrs(II.getParamAttrs());
Chris Lattnerf7b6d312005-05-06 20:26:43 +0000489 SubclassData = II.SubclassData;
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000490 Use *OL = OperandList, *InOL = II.OperandList;
491 for (unsigned i = 0, e = II.getNumOperands(); i != e; ++i)
492 OL[i].init(InOL[i], this);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000493}
494
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000495BasicBlock *InvokeInst::getSuccessorV(unsigned idx) const {
496 return getSuccessor(idx);
497}
498unsigned InvokeInst::getNumSuccessorsV() const {
499 return getNumSuccessors();
500}
501void InvokeInst::setSuccessorV(unsigned idx, BasicBlock *B) {
502 return setSuccessor(idx, B);
503}
504
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000505void InvokeInst::setParamAttrs(const ParamAttrsList *newAttrs) {
506 if (ParamAttrs == newAttrs)
507 return;
508
Reid Spencerc6a83842007-04-22 17:28:03 +0000509 if (ParamAttrs)
510 ParamAttrs->dropRef();
511
512 if (newAttrs)
513 newAttrs->addRef();
514
515 ParamAttrs = newAttrs;
516}
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000517
Dale Johannesen89268bc2008-02-19 21:38:47 +0000518bool InvokeInst::paramHasAttr(uint16_t i, ParameterAttributes attr) const {
519 if (ParamAttrs && ParamAttrs->paramHasAttr(i, attr))
Duncan Sands5208d1a2007-11-28 17:07:01 +0000520 return true;
Duncan Sands8dfcd592007-11-29 08:30:15 +0000521 if (const Function *F = getCalledFunction())
Dale Johannesen89268bc2008-02-19 21:38:47 +0000522 return F->paramHasAttr(i, attr);
Duncan Sands8dfcd592007-11-29 08:30:15 +0000523 return false;
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000524}
525
Dale Johanneseneabc5f32008-02-22 17:49:45 +0000526uint16_t InvokeInst::getParamAlignment(uint16_t i) const {
527 if (ParamAttrs && ParamAttrs->getParamAlignment(i))
528 return ParamAttrs->getParamAlignment(i);
529 if (const Function *F = getCalledFunction())
530 return F->getParamAlignment(i);
531 return 0;
532}
Chris Lattner3e13b8c2008-01-02 23:42:30 +0000533
534/// @brief Determine if the call does not access memory.
535bool InvokeInst::doesNotAccessMemory() const {
536 return paramHasAttr(0, ParamAttr::ReadNone);
537}
538
539/// @brief Determine if the call does not access or only reads memory.
540bool InvokeInst::onlyReadsMemory() const {
541 return doesNotAccessMemory() || paramHasAttr(0, ParamAttr::ReadOnly);
542}
543
544/// @brief Determine if the call cannot return.
545bool InvokeInst::doesNotReturn() const {
546 return paramHasAttr(0, ParamAttr::NoReturn);
547}
548
549/// @brief Determine if the call cannot unwind.
550bool InvokeInst::doesNotThrow() const {
551 return paramHasAttr(0, ParamAttr::NoUnwind);
552}
553
Duncan Sandsaa31b922007-12-19 21:13:37 +0000554void InvokeInst::setDoesNotThrow(bool doesNotThrow) {
555 const ParamAttrsList *PAL = getParamAttrs();
556 if (doesNotThrow)
557 PAL = ParamAttrsList::includeAttrs(PAL, 0, ParamAttr::NoUnwind);
558 else
559 PAL = ParamAttrsList::excludeAttrs(PAL, 0, ParamAttr::NoUnwind);
560 setParamAttrs(PAL);
561}
562
Chris Lattner3e13b8c2008-01-02 23:42:30 +0000563/// @brief Determine if the call returns a structure.
564bool InvokeInst::isStructReturn() const {
565 // Be friendly and also check the callee.
566 return paramHasAttr(1, ParamAttr::StructRet);
567}
568
Duncan Sands5208d1a2007-11-28 17:07:01 +0000569
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000570//===----------------------------------------------------------------------===//
571// ReturnInst Implementation
572//===----------------------------------------------------------------------===//
573
Chris Lattner2195fc42007-02-24 00:55:48 +0000574ReturnInst::ReturnInst(const ReturnInst &RI)
575 : TerminatorInst(Type::VoidTy, Instruction::Ret,
576 &RetVal, RI.getNumOperands()) {
577 if (RI.getNumOperands())
578 RetVal.init(RI.RetVal, this);
579}
580
581ReturnInst::ReturnInst(Value *retVal, Instruction *InsertBefore)
582 : TerminatorInst(Type::VoidTy, Instruction::Ret, &RetVal, 0, InsertBefore) {
583 init(retVal);
584}
585ReturnInst::ReturnInst(Value *retVal, BasicBlock *InsertAtEnd)
586 : TerminatorInst(Type::VoidTy, Instruction::Ret, &RetVal, 0, InsertAtEnd) {
587 init(retVal);
588}
589ReturnInst::ReturnInst(BasicBlock *InsertAtEnd)
590 : TerminatorInst(Type::VoidTy, Instruction::Ret, &RetVal, 0, InsertAtEnd) {
591}
592
593
594
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000595void ReturnInst::init(Value *retVal) {
596 if (retVal && retVal->getType() != Type::VoidTy) {
Misha Brukmanb1c93172005-04-21 23:48:37 +0000597 assert(!isa<BasicBlock>(retVal) &&
Alkis Evlogimenos531e9012004-11-17 21:02:25 +0000598 "Cannot return basic block. Probably using the incorrect ctor");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000599 NumOperands = 1;
600 RetVal.init(retVal, this);
Alkis Evlogimenos531e9012004-11-17 21:02:25 +0000601 }
602}
603
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000604unsigned ReturnInst::getNumSuccessorsV() const {
605 return getNumSuccessors();
606}
607
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000608// Out-of-line ReturnInst method, put here so the C++ compiler can choose to
609// emit the vtable for the class in this translation unit.
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000610void ReturnInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000611 assert(0 && "ReturnInst has no successors!");
612}
613
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000614BasicBlock *ReturnInst::getSuccessorV(unsigned idx) const {
615 assert(0 && "ReturnInst has no successors!");
616 abort();
617 return 0;
618}
619
620
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000621//===----------------------------------------------------------------------===//
622// UnwindInst Implementation
623//===----------------------------------------------------------------------===//
624
Chris Lattner2195fc42007-02-24 00:55:48 +0000625UnwindInst::UnwindInst(Instruction *InsertBefore)
626 : TerminatorInst(Type::VoidTy, Instruction::Unwind, 0, 0, InsertBefore) {
627}
628UnwindInst::UnwindInst(BasicBlock *InsertAtEnd)
629 : TerminatorInst(Type::VoidTy, Instruction::Unwind, 0, 0, InsertAtEnd) {
630}
631
632
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000633unsigned UnwindInst::getNumSuccessorsV() const {
634 return getNumSuccessors();
635}
636
637void UnwindInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000638 assert(0 && "UnwindInst has no successors!");
639}
640
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000641BasicBlock *UnwindInst::getSuccessorV(unsigned idx) const {
642 assert(0 && "UnwindInst has no successors!");
643 abort();
644 return 0;
645}
646
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000647//===----------------------------------------------------------------------===//
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000648// UnreachableInst Implementation
649//===----------------------------------------------------------------------===//
650
Chris Lattner2195fc42007-02-24 00:55:48 +0000651UnreachableInst::UnreachableInst(Instruction *InsertBefore)
652 : TerminatorInst(Type::VoidTy, Instruction::Unreachable, 0, 0, InsertBefore) {
653}
654UnreachableInst::UnreachableInst(BasicBlock *InsertAtEnd)
655 : TerminatorInst(Type::VoidTy, Instruction::Unreachable, 0, 0, InsertAtEnd) {
656}
657
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000658unsigned UnreachableInst::getNumSuccessorsV() const {
659 return getNumSuccessors();
660}
661
662void UnreachableInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
663 assert(0 && "UnwindInst has no successors!");
664}
665
666BasicBlock *UnreachableInst::getSuccessorV(unsigned idx) const {
667 assert(0 && "UnwindInst has no successors!");
668 abort();
669 return 0;
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000670}
671
672//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000673// BranchInst Implementation
674//===----------------------------------------------------------------------===//
675
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000676void BranchInst::AssertOK() {
677 if (isConditional())
Reid Spencer542964f2007-01-11 18:21:29 +0000678 assert(getCondition()->getType() == Type::Int1Ty &&
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000679 "May only branch on boolean predicates!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000680}
681
Chris Lattner2195fc42007-02-24 00:55:48 +0000682BranchInst::BranchInst(BasicBlock *IfTrue, Instruction *InsertBefore)
683 : TerminatorInst(Type::VoidTy, Instruction::Br, Ops, 1, InsertBefore) {
684 assert(IfTrue != 0 && "Branch destination may not be null!");
685 Ops[0].init(reinterpret_cast<Value*>(IfTrue), this);
686}
687BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
688 Instruction *InsertBefore)
689: TerminatorInst(Type::VoidTy, Instruction::Br, Ops, 3, InsertBefore) {
690 Ops[0].init(reinterpret_cast<Value*>(IfTrue), this);
691 Ops[1].init(reinterpret_cast<Value*>(IfFalse), this);
692 Ops[2].init(Cond, this);
693#ifndef NDEBUG
694 AssertOK();
695#endif
696}
697
698BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *InsertAtEnd)
699 : TerminatorInst(Type::VoidTy, Instruction::Br, Ops, 1, InsertAtEnd) {
700 assert(IfTrue != 0 && "Branch destination may not be null!");
701 Ops[0].init(reinterpret_cast<Value*>(IfTrue), this);
702}
703
704BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
705 BasicBlock *InsertAtEnd)
706 : TerminatorInst(Type::VoidTy, Instruction::Br, Ops, 3, InsertAtEnd) {
707 Ops[0].init(reinterpret_cast<Value*>(IfTrue), this);
708 Ops[1].init(reinterpret_cast<Value*>(IfFalse), this);
709 Ops[2].init(Cond, this);
710#ifndef NDEBUG
711 AssertOK();
712#endif
713}
714
715
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000716BranchInst::BranchInst(const BranchInst &BI) :
Chris Lattner2195fc42007-02-24 00:55:48 +0000717 TerminatorInst(Type::VoidTy, Instruction::Br, Ops, BI.getNumOperands()) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000718 OperandList[0].init(BI.getOperand(0), this);
719 if (BI.getNumOperands() != 1) {
720 assert(BI.getNumOperands() == 3 && "BR can have 1 or 3 operands!");
721 OperandList[1].init(BI.getOperand(1), this);
722 OperandList[2].init(BI.getOperand(2), this);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000723 }
724}
725
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000726BasicBlock *BranchInst::getSuccessorV(unsigned idx) const {
727 return getSuccessor(idx);
728}
729unsigned BranchInst::getNumSuccessorsV() const {
730 return getNumSuccessors();
731}
732void BranchInst::setSuccessorV(unsigned idx, BasicBlock *B) {
733 setSuccessor(idx, B);
734}
735
736
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000737//===----------------------------------------------------------------------===//
738// AllocationInst Implementation
739//===----------------------------------------------------------------------===//
740
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000741static Value *getAISize(Value *Amt) {
742 if (!Amt)
Reid Spencer8d9336d2006-12-31 05:26:44 +0000743 Amt = ConstantInt::get(Type::Int32Ty, 1);
Chris Lattnerbb7ff662006-05-10 04:32:43 +0000744 else {
745 assert(!isa<BasicBlock>(Amt) &&
Chris Lattner9b6ec772007-10-18 16:10:48 +0000746 "Passed basic block into allocation size parameter! Use other ctor");
Reid Spencer8d9336d2006-12-31 05:26:44 +0000747 assert(Amt->getType() == Type::Int32Ty &&
Reid Spencer7e16e232007-01-26 06:30:34 +0000748 "Malloc/Allocation array size is not a 32-bit integer!");
Chris Lattnerbb7ff662006-05-10 04:32:43 +0000749 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000750 return Amt;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000751}
752
Misha Brukmanb1c93172005-04-21 23:48:37 +0000753AllocationInst::AllocationInst(const Type *Ty, Value *ArraySize, unsigned iTy,
Nate Begeman848622f2005-11-05 09:21:28 +0000754 unsigned Align, const std::string &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000755 Instruction *InsertBefore)
Christopher Lambedf07882007-12-17 01:12:55 +0000756 : UnaryInstruction(PointerType::getUnqual(Ty), iTy, getAISize(ArraySize),
Chris Lattner2195fc42007-02-24 00:55:48 +0000757 InsertBefore), Alignment(Align) {
Chris Lattner79b8c792005-11-05 21:57:54 +0000758 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000759 assert(Ty != Type::VoidTy && "Cannot allocate void!");
Chris Lattner0f048162007-02-13 07:54:42 +0000760 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000761}
762
Misha Brukmanb1c93172005-04-21 23:48:37 +0000763AllocationInst::AllocationInst(const Type *Ty, Value *ArraySize, unsigned iTy,
Nate Begeman848622f2005-11-05 09:21:28 +0000764 unsigned Align, const std::string &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000765 BasicBlock *InsertAtEnd)
Christopher Lambedf07882007-12-17 01:12:55 +0000766 : UnaryInstruction(PointerType::getUnqual(Ty), iTy, getAISize(ArraySize),
Chris Lattner2195fc42007-02-24 00:55:48 +0000767 InsertAtEnd), Alignment(Align) {
Chris Lattner79b8c792005-11-05 21:57:54 +0000768 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000769 assert(Ty != Type::VoidTy && "Cannot allocate void!");
Chris Lattner0f048162007-02-13 07:54:42 +0000770 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000771}
772
Gordon Henriksen14a55692007-12-10 02:14:30 +0000773// Out of line virtual method, so the vtable, etc has a home.
774AllocationInst::~AllocationInst() {
775}
776
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000777bool AllocationInst::isArrayAllocation() const {
Reid Spencera9e6e312007-03-01 20:27:41 +0000778 if (ConstantInt *CI = dyn_cast<ConstantInt>(getOperand(0)))
779 return CI->getZExtValue() != 1;
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000780 return true;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000781}
782
783const Type *AllocationInst::getAllocatedType() const {
784 return getType()->getElementType();
785}
786
787AllocaInst::AllocaInst(const AllocaInst &AI)
788 : AllocationInst(AI.getType()->getElementType(), (Value*)AI.getOperand(0),
Nate Begeman848622f2005-11-05 09:21:28 +0000789 Instruction::Alloca, AI.getAlignment()) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000790}
791
792MallocInst::MallocInst(const MallocInst &MI)
793 : AllocationInst(MI.getType()->getElementType(), (Value*)MI.getOperand(0),
Nate Begeman848622f2005-11-05 09:21:28 +0000794 Instruction::Malloc, MI.getAlignment()) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000795}
796
797//===----------------------------------------------------------------------===//
798// FreeInst Implementation
799//===----------------------------------------------------------------------===//
800
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000801void FreeInst::AssertOK() {
802 assert(isa<PointerType>(getOperand(0)->getType()) &&
803 "Can not free something of nonpointer type!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000804}
805
806FreeInst::FreeInst(Value *Ptr, Instruction *InsertBefore)
Chris Lattner2195fc42007-02-24 00:55:48 +0000807 : UnaryInstruction(Type::VoidTy, Free, Ptr, InsertBefore) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000808 AssertOK();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000809}
810
811FreeInst::FreeInst(Value *Ptr, BasicBlock *InsertAtEnd)
Chris Lattner2195fc42007-02-24 00:55:48 +0000812 : UnaryInstruction(Type::VoidTy, Free, Ptr, InsertAtEnd) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000813 AssertOK();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000814}
815
816
817//===----------------------------------------------------------------------===//
818// LoadInst Implementation
819//===----------------------------------------------------------------------===//
820
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000821void LoadInst::AssertOK() {
Misha Brukmanb1c93172005-04-21 23:48:37 +0000822 assert(isa<PointerType>(getOperand(0)->getType()) &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000823 "Ptr must have pointer type.");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000824}
825
826LoadInst::LoadInst(Value *Ptr, const std::string &Name, Instruction *InsertBef)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000827 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000828 Load, Ptr, InsertBef) {
Chris Lattnerdf57a022005-02-05 01:38:38 +0000829 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000830 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000831 AssertOK();
Chris Lattner0f048162007-02-13 07:54:42 +0000832 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000833}
834
835LoadInst::LoadInst(Value *Ptr, const std::string &Name, BasicBlock *InsertAE)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000836 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000837 Load, Ptr, InsertAE) {
Chris Lattnerdf57a022005-02-05 01:38:38 +0000838 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000839 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000840 AssertOK();
Chris Lattner0f048162007-02-13 07:54:42 +0000841 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000842}
843
844LoadInst::LoadInst(Value *Ptr, const std::string &Name, bool isVolatile,
845 Instruction *InsertBef)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000846 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000847 Load, Ptr, InsertBef) {
Chris Lattnerdf57a022005-02-05 01:38:38 +0000848 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +0000849 setAlignment(0);
850 AssertOK();
851 setName(Name);
852}
853
854LoadInst::LoadInst(Value *Ptr, const std::string &Name, bool isVolatile,
855 unsigned Align, Instruction *InsertBef)
856 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
857 Load, Ptr, InsertBef) {
858 setVolatile(isVolatile);
859 setAlignment(Align);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000860 AssertOK();
Chris Lattner0f048162007-02-13 07:54:42 +0000861 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000862}
863
Dan Gohman68659282007-07-18 20:51:11 +0000864LoadInst::LoadInst(Value *Ptr, const std::string &Name, bool isVolatile,
865 unsigned Align, BasicBlock *InsertAE)
866 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
867 Load, Ptr, InsertAE) {
868 setVolatile(isVolatile);
869 setAlignment(Align);
870 AssertOK();
871 setName(Name);
872}
873
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000874LoadInst::LoadInst(Value *Ptr, const std::string &Name, bool isVolatile,
875 BasicBlock *InsertAE)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000876 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000877 Load, Ptr, InsertAE) {
Chris Lattner0f048162007-02-13 07:54:42 +0000878 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +0000879 setAlignment(0);
Chris Lattner0f048162007-02-13 07:54:42 +0000880 AssertOK();
881 setName(Name);
882}
883
884
885
886LoadInst::LoadInst(Value *Ptr, const char *Name, Instruction *InsertBef)
Chris Lattner2195fc42007-02-24 00:55:48 +0000887 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
888 Load, Ptr, InsertBef) {
Chris Lattner0f048162007-02-13 07:54:42 +0000889 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000890 setAlignment(0);
Chris Lattner0f048162007-02-13 07:54:42 +0000891 AssertOK();
Chris Lattner2195fc42007-02-24 00:55:48 +0000892 if (Name && Name[0]) setName(Name);
Chris Lattner0f048162007-02-13 07:54:42 +0000893}
894
895LoadInst::LoadInst(Value *Ptr, const char *Name, BasicBlock *InsertAE)
Chris Lattner2195fc42007-02-24 00:55:48 +0000896 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
897 Load, Ptr, InsertAE) {
Chris Lattner0f048162007-02-13 07:54:42 +0000898 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000899 setAlignment(0);
Chris Lattner0f048162007-02-13 07:54:42 +0000900 AssertOK();
Chris Lattner2195fc42007-02-24 00:55:48 +0000901 if (Name && Name[0]) setName(Name);
Chris Lattner0f048162007-02-13 07:54:42 +0000902}
903
904LoadInst::LoadInst(Value *Ptr, const char *Name, bool isVolatile,
905 Instruction *InsertBef)
906: UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000907 Load, Ptr, InsertBef) {
Chris Lattner0f048162007-02-13 07:54:42 +0000908 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +0000909 setAlignment(0);
Chris Lattner0f048162007-02-13 07:54:42 +0000910 AssertOK();
Chris Lattner2195fc42007-02-24 00:55:48 +0000911 if (Name && Name[0]) setName(Name);
Chris Lattner0f048162007-02-13 07:54:42 +0000912}
913
914LoadInst::LoadInst(Value *Ptr, const char *Name, bool isVolatile,
915 BasicBlock *InsertAE)
Chris Lattner2195fc42007-02-24 00:55:48 +0000916 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
917 Load, Ptr, InsertAE) {
Chris Lattnerdf57a022005-02-05 01:38:38 +0000918 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +0000919 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000920 AssertOK();
Chris Lattner2195fc42007-02-24 00:55:48 +0000921 if (Name && Name[0]) setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000922}
923
Christopher Lamb84485702007-04-22 19:24:39 +0000924void LoadInst::setAlignment(unsigned Align) {
925 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
926 SubclassData = (SubclassData & 1) | ((Log2_32(Align)+1)<<1);
927}
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000928
929//===----------------------------------------------------------------------===//
930// StoreInst Implementation
931//===----------------------------------------------------------------------===//
932
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000933void StoreInst::AssertOK() {
934 assert(isa<PointerType>(getOperand(1)->getType()) &&
935 "Ptr must have pointer type!");
936 assert(getOperand(0)->getType() ==
937 cast<PointerType>(getOperand(1)->getType())->getElementType()
Alkis Evlogimenos079fbde2004-08-06 14:33:37 +0000938 && "Ptr must be a pointer to Val type!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000939}
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000940
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000941
942StoreInst::StoreInst(Value *val, Value *addr, Instruction *InsertBefore)
Chris Lattner2195fc42007-02-24 00:55:48 +0000943 : Instruction(Type::VoidTy, Store, Ops, 2, InsertBefore) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000944 Ops[0].init(val, this);
945 Ops[1].init(addr, this);
Chris Lattnerdf57a022005-02-05 01:38:38 +0000946 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000947 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000948 AssertOK();
949}
950
951StoreInst::StoreInst(Value *val, Value *addr, BasicBlock *InsertAtEnd)
Chris Lattner2195fc42007-02-24 00:55:48 +0000952 : Instruction(Type::VoidTy, Store, Ops, 2, InsertAtEnd) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000953 Ops[0].init(val, this);
954 Ops[1].init(addr, this);
Chris Lattnerdf57a022005-02-05 01:38:38 +0000955 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000956 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000957 AssertOK();
958}
959
Misha Brukmanb1c93172005-04-21 23:48:37 +0000960StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000961 Instruction *InsertBefore)
Chris Lattner2195fc42007-02-24 00:55:48 +0000962 : Instruction(Type::VoidTy, Store, Ops, 2, InsertBefore) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000963 Ops[0].init(val, this);
964 Ops[1].init(addr, this);
Chris Lattnerdf57a022005-02-05 01:38:38 +0000965 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +0000966 setAlignment(0);
967 AssertOK();
968}
969
970StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
971 unsigned Align, Instruction *InsertBefore)
972 : Instruction(Type::VoidTy, Store, Ops, 2, InsertBefore) {
973 Ops[0].init(val, this);
974 Ops[1].init(addr, this);
975 setVolatile(isVolatile);
976 setAlignment(Align);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000977 AssertOK();
978}
979
Misha Brukmanb1c93172005-04-21 23:48:37 +0000980StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Dan Gohman68659282007-07-18 20:51:11 +0000981 unsigned Align, BasicBlock *InsertAtEnd)
982 : Instruction(Type::VoidTy, Store, Ops, 2, InsertAtEnd) {
983 Ops[0].init(val, this);
984 Ops[1].init(addr, this);
985 setVolatile(isVolatile);
986 setAlignment(Align);
987 AssertOK();
988}
989
990StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000991 BasicBlock *InsertAtEnd)
Chris Lattner2195fc42007-02-24 00:55:48 +0000992 : Instruction(Type::VoidTy, Store, Ops, 2, InsertAtEnd) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000993 Ops[0].init(val, this);
994 Ops[1].init(addr, this);
Chris Lattnerdf57a022005-02-05 01:38:38 +0000995 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +0000996 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000997 AssertOK();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000998}
999
Christopher Lamb84485702007-04-22 19:24:39 +00001000void StoreInst::setAlignment(unsigned Align) {
1001 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
1002 SubclassData = (SubclassData & 1) | ((Log2_32(Align)+1)<<1);
1003}
1004
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001005//===----------------------------------------------------------------------===//
1006// GetElementPtrInst Implementation
1007//===----------------------------------------------------------------------===//
1008
Christopher Lambedf07882007-12-17 01:12:55 +00001009static unsigned retrieveAddrSpace(const Value *Val) {
1010 return cast<PointerType>(Val->getType())->getAddressSpace();
1011}
1012
Chris Lattner79807c3d2007-01-31 19:47:18 +00001013void GetElementPtrInst::init(Value *Ptr, Value* const *Idx, unsigned NumIdx) {
1014 NumOperands = 1+NumIdx;
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001015 Use *OL = OperandList = new Use[NumOperands];
1016 OL[0].init(Ptr, this);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001017
Chris Lattner79807c3d2007-01-31 19:47:18 +00001018 for (unsigned i = 0; i != NumIdx; ++i)
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001019 OL[i+1].init(Idx[i], this);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001020}
1021
Chris Lattner82981202005-05-03 05:43:30 +00001022void GetElementPtrInst::init(Value *Ptr, Value *Idx) {
1023 NumOperands = 2;
1024 Use *OL = OperandList = new Use[2];
1025 OL[0].init(Ptr, this);
1026 OL[1].init(Idx, this);
1027}
1028
Chris Lattner82981202005-05-03 05:43:30 +00001029GetElementPtrInst::GetElementPtrInst(Value *Ptr, Value *Idx,
1030 const std::string &Name, Instruction *InBe)
Christopher Lamb54dd24c2007-12-11 08:59:05 +00001031 : Instruction(PointerType::get(checkType(getIndexedType(Ptr->getType(),Idx)),
Christopher Lambedf07882007-12-17 01:12:55 +00001032 retrieveAddrSpace(Ptr)),
Chris Lattner2195fc42007-02-24 00:55:48 +00001033 GetElementPtr, 0, 0, InBe) {
Chris Lattner82981202005-05-03 05:43:30 +00001034 init(Ptr, Idx);
Chris Lattner2195fc42007-02-24 00:55:48 +00001035 setName(Name);
Chris Lattner82981202005-05-03 05:43:30 +00001036}
1037
1038GetElementPtrInst::GetElementPtrInst(Value *Ptr, Value *Idx,
1039 const std::string &Name, BasicBlock *IAE)
Christopher Lamb54dd24c2007-12-11 08:59:05 +00001040 : Instruction(PointerType::get(checkType(getIndexedType(Ptr->getType(),Idx)),
Christopher Lambedf07882007-12-17 01:12:55 +00001041 retrieveAddrSpace(Ptr)),
Chris Lattner2195fc42007-02-24 00:55:48 +00001042 GetElementPtr, 0, 0, IAE) {
Chris Lattner82981202005-05-03 05:43:30 +00001043 init(Ptr, Idx);
Chris Lattner2195fc42007-02-24 00:55:48 +00001044 setName(Name);
Chris Lattner82981202005-05-03 05:43:30 +00001045}
1046
Gordon Henriksen14a55692007-12-10 02:14:30 +00001047GetElementPtrInst::~GetElementPtrInst() {
1048 delete[] OperandList;
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001049}
1050
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001051// getIndexedType - Returns the type of the element that would be loaded with
1052// a load instruction with the specified parameters.
1053//
Misha Brukmanb1c93172005-04-21 23:48:37 +00001054// A null type is returned if the indices are invalid for the specified
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001055// pointer type.
1056//
Misha Brukmanb1c93172005-04-21 23:48:37 +00001057const Type* GetElementPtrInst::getIndexedType(const Type *Ptr,
Chris Lattner302116a2007-01-31 04:40:28 +00001058 Value* const *Idxs,
1059 unsigned NumIdx,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001060 bool AllowCompositeLeaf) {
1061 if (!isa<PointerType>(Ptr)) return 0; // Type isn't a pointer type!
1062
1063 // Handle the special case of the empty set index set...
Anton Korobeynikov579f0712008-02-20 11:08:44 +00001064 if (NumIdx == 0) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001065 if (AllowCompositeLeaf ||
1066 cast<PointerType>(Ptr)->getElementType()->isFirstClassType())
1067 return cast<PointerType>(Ptr)->getElementType();
1068 else
1069 return 0;
Anton Korobeynikov579f0712008-02-20 11:08:44 +00001070 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00001071
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001072 unsigned CurIdx = 0;
1073 while (const CompositeType *CT = dyn_cast<CompositeType>(Ptr)) {
Chris Lattner302116a2007-01-31 04:40:28 +00001074 if (NumIdx == CurIdx) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001075 if (AllowCompositeLeaf || CT->isFirstClassType()) return Ptr;
1076 return 0; // Can't load a whole structure or array!?!?
1077 }
1078
Chris Lattner302116a2007-01-31 04:40:28 +00001079 Value *Index = Idxs[CurIdx++];
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001080 if (isa<PointerType>(CT) && CurIdx != 1)
1081 return 0; // Can only index into pointer types at the first index!
1082 if (!CT->indexValid(Index)) return 0;
1083 Ptr = CT->getTypeAtIndex(Index);
1084
1085 // If the new type forwards to another type, then it is in the middle
1086 // of being refined to another type (and hence, may have dropped all
1087 // references to what it was using before). So, use the new forwarded
1088 // type.
1089 if (const Type * Ty = Ptr->getForwardedType()) {
1090 Ptr = Ty;
1091 }
1092 }
Chris Lattner302116a2007-01-31 04:40:28 +00001093 return CurIdx == NumIdx ? Ptr : 0;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001094}
1095
Chris Lattner82981202005-05-03 05:43:30 +00001096const Type* GetElementPtrInst::getIndexedType(const Type *Ptr, Value *Idx) {
1097 const PointerType *PTy = dyn_cast<PointerType>(Ptr);
1098 if (!PTy) return 0; // Type isn't a pointer type!
1099
1100 // Check the pointer index.
1101 if (!PTy->indexValid(Idx)) return 0;
1102
Chris Lattnerc2233332005-05-03 16:44:45 +00001103 return PTy->getElementType();
Chris Lattner82981202005-05-03 05:43:30 +00001104}
1105
Chris Lattner45f15572007-04-14 00:12:57 +00001106
1107/// hasAllZeroIndices - Return true if all of the indices of this GEP are
1108/// zeros. If so, the result pointer and the first operand have the same
1109/// value, just potentially different types.
1110bool GetElementPtrInst::hasAllZeroIndices() const {
1111 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
1112 if (ConstantInt *CI = dyn_cast<ConstantInt>(getOperand(i))) {
1113 if (!CI->isZero()) return false;
1114 } else {
1115 return false;
1116 }
1117 }
1118 return true;
1119}
1120
Chris Lattner27058292007-04-27 20:35:56 +00001121/// hasAllConstantIndices - Return true if all of the indices of this GEP are
1122/// constant integers. If so, the result pointer and the first operand have
1123/// a constant offset between them.
1124bool GetElementPtrInst::hasAllConstantIndices() const {
1125 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
1126 if (!isa<ConstantInt>(getOperand(i)))
1127 return false;
1128 }
1129 return true;
1130}
1131
Chris Lattner45f15572007-04-14 00:12:57 +00001132
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001133//===----------------------------------------------------------------------===//
Robert Bocchino23004482006-01-10 19:05:34 +00001134// ExtractElementInst Implementation
1135//===----------------------------------------------------------------------===//
1136
1137ExtractElementInst::ExtractElementInst(Value *Val, Value *Index,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001138 const std::string &Name,
1139 Instruction *InsertBef)
Reid Spencerd84d35b2007-02-15 02:26:10 +00001140 : Instruction(cast<VectorType>(Val->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +00001141 ExtractElement, Ops, 2, InsertBef) {
Chris Lattner54865b32006-04-08 04:05:48 +00001142 assert(isValidOperands(Val, Index) &&
1143 "Invalid extractelement instruction operands!");
Robert Bocchino23004482006-01-10 19:05:34 +00001144 Ops[0].init(Val, this);
1145 Ops[1].init(Index, this);
Chris Lattner2195fc42007-02-24 00:55:48 +00001146 setName(Name);
Robert Bocchino23004482006-01-10 19:05:34 +00001147}
1148
Chris Lattner65511ff2006-10-05 06:24:58 +00001149ExtractElementInst::ExtractElementInst(Value *Val, unsigned IndexV,
1150 const std::string &Name,
1151 Instruction *InsertBef)
Reid Spencerd84d35b2007-02-15 02:26:10 +00001152 : Instruction(cast<VectorType>(Val->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +00001153 ExtractElement, Ops, 2, InsertBef) {
Reid Spencer8d9336d2006-12-31 05:26:44 +00001154 Constant *Index = ConstantInt::get(Type::Int32Ty, IndexV);
Chris Lattner65511ff2006-10-05 06:24:58 +00001155 assert(isValidOperands(Val, Index) &&
1156 "Invalid extractelement instruction operands!");
1157 Ops[0].init(Val, this);
1158 Ops[1].init(Index, this);
Chris Lattner2195fc42007-02-24 00:55:48 +00001159 setName(Name);
Chris Lattner65511ff2006-10-05 06:24:58 +00001160}
1161
1162
Robert Bocchino23004482006-01-10 19:05:34 +00001163ExtractElementInst::ExtractElementInst(Value *Val, Value *Index,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001164 const std::string &Name,
1165 BasicBlock *InsertAE)
Reid Spencerd84d35b2007-02-15 02:26:10 +00001166 : Instruction(cast<VectorType>(Val->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +00001167 ExtractElement, Ops, 2, InsertAE) {
Chris Lattner54865b32006-04-08 04:05:48 +00001168 assert(isValidOperands(Val, Index) &&
1169 "Invalid extractelement instruction operands!");
1170
Robert Bocchino23004482006-01-10 19:05:34 +00001171 Ops[0].init(Val, this);
1172 Ops[1].init(Index, this);
Chris Lattner2195fc42007-02-24 00:55:48 +00001173 setName(Name);
Robert Bocchino23004482006-01-10 19:05:34 +00001174}
1175
Chris Lattner65511ff2006-10-05 06:24:58 +00001176ExtractElementInst::ExtractElementInst(Value *Val, unsigned IndexV,
1177 const std::string &Name,
1178 BasicBlock *InsertAE)
Reid Spencerd84d35b2007-02-15 02:26:10 +00001179 : Instruction(cast<VectorType>(Val->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +00001180 ExtractElement, Ops, 2, InsertAE) {
Reid Spencer8d9336d2006-12-31 05:26:44 +00001181 Constant *Index = ConstantInt::get(Type::Int32Ty, IndexV);
Chris Lattner65511ff2006-10-05 06:24:58 +00001182 assert(isValidOperands(Val, Index) &&
1183 "Invalid extractelement instruction operands!");
1184
1185 Ops[0].init(Val, this);
1186 Ops[1].init(Index, this);
Chris Lattner2195fc42007-02-24 00:55:48 +00001187 setName(Name);
Chris Lattner65511ff2006-10-05 06:24:58 +00001188}
1189
1190
Chris Lattner54865b32006-04-08 04:05:48 +00001191bool ExtractElementInst::isValidOperands(const Value *Val, const Value *Index) {
Reid Spencerd84d35b2007-02-15 02:26:10 +00001192 if (!isa<VectorType>(Val->getType()) || Index->getType() != Type::Int32Ty)
Chris Lattner54865b32006-04-08 04:05:48 +00001193 return false;
1194 return true;
1195}
1196
1197
Robert Bocchino23004482006-01-10 19:05:34 +00001198//===----------------------------------------------------------------------===//
Robert Bocchinoca27f032006-01-17 20:07:22 +00001199// InsertElementInst Implementation
1200//===----------------------------------------------------------------------===//
1201
Chris Lattner0875d942006-04-14 22:20:32 +00001202InsertElementInst::InsertElementInst(const InsertElementInst &IE)
1203 : Instruction(IE.getType(), InsertElement, Ops, 3) {
1204 Ops[0].init(IE.Ops[0], this);
1205 Ops[1].init(IE.Ops[1], this);
1206 Ops[2].init(IE.Ops[2], this);
1207}
Chris Lattner54865b32006-04-08 04:05:48 +00001208InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, Value *Index,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001209 const std::string &Name,
1210 Instruction *InsertBef)
Chris Lattner2195fc42007-02-24 00:55:48 +00001211 : Instruction(Vec->getType(), InsertElement, Ops, 3, InsertBef) {
Chris Lattner54865b32006-04-08 04:05:48 +00001212 assert(isValidOperands(Vec, Elt, Index) &&
1213 "Invalid insertelement instruction operands!");
1214 Ops[0].init(Vec, this);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001215 Ops[1].init(Elt, this);
1216 Ops[2].init(Index, this);
Chris Lattner2195fc42007-02-24 00:55:48 +00001217 setName(Name);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001218}
1219
Chris Lattner65511ff2006-10-05 06:24:58 +00001220InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, unsigned IndexV,
1221 const std::string &Name,
1222 Instruction *InsertBef)
Chris Lattner2195fc42007-02-24 00:55:48 +00001223 : Instruction(Vec->getType(), InsertElement, Ops, 3, InsertBef) {
Reid Spencer8d9336d2006-12-31 05:26:44 +00001224 Constant *Index = ConstantInt::get(Type::Int32Ty, IndexV);
Chris Lattner65511ff2006-10-05 06:24:58 +00001225 assert(isValidOperands(Vec, Elt, Index) &&
1226 "Invalid insertelement instruction operands!");
1227 Ops[0].init(Vec, this);
1228 Ops[1].init(Elt, this);
1229 Ops[2].init(Index, this);
Chris Lattner2195fc42007-02-24 00:55:48 +00001230 setName(Name);
Chris Lattner65511ff2006-10-05 06:24:58 +00001231}
1232
1233
Chris Lattner54865b32006-04-08 04:05:48 +00001234InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, Value *Index,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001235 const std::string &Name,
1236 BasicBlock *InsertAE)
Chris Lattner2195fc42007-02-24 00:55:48 +00001237 : Instruction(Vec->getType(), InsertElement, Ops, 3, InsertAE) {
Chris Lattner54865b32006-04-08 04:05:48 +00001238 assert(isValidOperands(Vec, Elt, Index) &&
1239 "Invalid insertelement instruction operands!");
1240
1241 Ops[0].init(Vec, this);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001242 Ops[1].init(Elt, this);
1243 Ops[2].init(Index, this);
Chris Lattner2195fc42007-02-24 00:55:48 +00001244 setName(Name);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001245}
1246
Chris Lattner65511ff2006-10-05 06:24:58 +00001247InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, unsigned IndexV,
1248 const std::string &Name,
1249 BasicBlock *InsertAE)
Chris Lattner2195fc42007-02-24 00:55:48 +00001250: Instruction(Vec->getType(), InsertElement, Ops, 3, InsertAE) {
Reid Spencer8d9336d2006-12-31 05:26:44 +00001251 Constant *Index = ConstantInt::get(Type::Int32Ty, IndexV);
Chris Lattner65511ff2006-10-05 06:24:58 +00001252 assert(isValidOperands(Vec, Elt, Index) &&
1253 "Invalid insertelement instruction operands!");
1254
1255 Ops[0].init(Vec, this);
1256 Ops[1].init(Elt, this);
1257 Ops[2].init(Index, this);
Chris Lattner2195fc42007-02-24 00:55:48 +00001258 setName(Name);
Chris Lattner65511ff2006-10-05 06:24:58 +00001259}
1260
Chris Lattner54865b32006-04-08 04:05:48 +00001261bool InsertElementInst::isValidOperands(const Value *Vec, const Value *Elt,
1262 const Value *Index) {
Reid Spencerd84d35b2007-02-15 02:26:10 +00001263 if (!isa<VectorType>(Vec->getType()))
Reid Spencer09575ba2007-02-15 03:39:18 +00001264 return false; // First operand of insertelement must be vector type.
Chris Lattner54865b32006-04-08 04:05:48 +00001265
Reid Spencerd84d35b2007-02-15 02:26:10 +00001266 if (Elt->getType() != cast<VectorType>(Vec->getType())->getElementType())
Dan Gohmanfead7972007-05-11 21:43:24 +00001267 return false;// Second operand of insertelement must be vector element type.
Chris Lattner54865b32006-04-08 04:05:48 +00001268
Reid Spencer8d9336d2006-12-31 05:26:44 +00001269 if (Index->getType() != Type::Int32Ty)
Chris Lattner54865b32006-04-08 04:05:48 +00001270 return false; // Third operand of insertelement must be uint.
1271 return true;
1272}
1273
1274
Robert Bocchinoca27f032006-01-17 20:07:22 +00001275//===----------------------------------------------------------------------===//
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001276// ShuffleVectorInst Implementation
1277//===----------------------------------------------------------------------===//
1278
Chris Lattner0875d942006-04-14 22:20:32 +00001279ShuffleVectorInst::ShuffleVectorInst(const ShuffleVectorInst &SV)
1280 : Instruction(SV.getType(), ShuffleVector, Ops, 3) {
1281 Ops[0].init(SV.Ops[0], this);
1282 Ops[1].init(SV.Ops[1], this);
1283 Ops[2].init(SV.Ops[2], this);
1284}
1285
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001286ShuffleVectorInst::ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
1287 const std::string &Name,
1288 Instruction *InsertBefore)
Chris Lattner2195fc42007-02-24 00:55:48 +00001289 : Instruction(V1->getType(), ShuffleVector, Ops, 3, InsertBefore) {
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001290 assert(isValidOperands(V1, V2, Mask) &&
1291 "Invalid shuffle vector instruction operands!");
1292 Ops[0].init(V1, this);
1293 Ops[1].init(V2, this);
1294 Ops[2].init(Mask, this);
Chris Lattner2195fc42007-02-24 00:55:48 +00001295 setName(Name);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001296}
1297
1298ShuffleVectorInst::ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
1299 const std::string &Name,
1300 BasicBlock *InsertAtEnd)
Chris Lattner2195fc42007-02-24 00:55:48 +00001301 : Instruction(V1->getType(), ShuffleVector, Ops, 3, InsertAtEnd) {
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001302 assert(isValidOperands(V1, V2, Mask) &&
1303 "Invalid shuffle vector instruction operands!");
1304
1305 Ops[0].init(V1, this);
1306 Ops[1].init(V2, this);
1307 Ops[2].init(Mask, this);
Chris Lattner2195fc42007-02-24 00:55:48 +00001308 setName(Name);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001309}
1310
1311bool ShuffleVectorInst::isValidOperands(const Value *V1, const Value *V2,
1312 const Value *Mask) {
Reid Spencerd84d35b2007-02-15 02:26:10 +00001313 if (!isa<VectorType>(V1->getType())) return false;
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001314 if (V1->getType() != V2->getType()) return false;
Reid Spencerd84d35b2007-02-15 02:26:10 +00001315 if (!isa<VectorType>(Mask->getType()) ||
1316 cast<VectorType>(Mask->getType())->getElementType() != Type::Int32Ty ||
1317 cast<VectorType>(Mask->getType())->getNumElements() !=
1318 cast<VectorType>(V1->getType())->getNumElements())
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001319 return false;
1320 return true;
1321}
1322
1323
1324//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001325// BinaryOperator Class
1326//===----------------------------------------------------------------------===//
1327
Chris Lattner2195fc42007-02-24 00:55:48 +00001328BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2,
1329 const Type *Ty, const std::string &Name,
1330 Instruction *InsertBefore)
1331 : Instruction(Ty, iType, Ops, 2, InsertBefore) {
1332 Ops[0].init(S1, this);
1333 Ops[1].init(S2, this);
1334 init(iType);
1335 setName(Name);
1336}
1337
1338BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2,
1339 const Type *Ty, const std::string &Name,
1340 BasicBlock *InsertAtEnd)
1341 : Instruction(Ty, iType, Ops, 2, InsertAtEnd) {
1342 Ops[0].init(S1, this);
1343 Ops[1].init(S2, this);
1344 init(iType);
1345 setName(Name);
1346}
1347
1348
1349void BinaryOperator::init(BinaryOps iType) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001350 Value *LHS = getOperand(0), *RHS = getOperand(1);
Chris Lattnerf14c76c2007-02-01 04:59:37 +00001351 LHS = LHS; RHS = RHS; // Silence warnings.
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001352 assert(LHS->getType() == RHS->getType() &&
1353 "Binary operator operand types must match!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001354#ifndef NDEBUG
1355 switch (iType) {
1356 case Add: case Sub:
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001357 case Mul:
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001358 assert(getType() == LHS->getType() &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001359 "Arithmetic operation should return same type as operands!");
Chris Lattner03c49532007-01-15 02:27:26 +00001360 assert((getType()->isInteger() || getType()->isFloatingPoint() ||
Reid Spencerd84d35b2007-02-15 02:26:10 +00001361 isa<VectorType>(getType())) &&
Brian Gaeke02209042004-08-20 06:00:58 +00001362 "Tried to create an arithmetic operation on a non-arithmetic type!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001363 break;
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001364 case UDiv:
1365 case SDiv:
1366 assert(getType() == LHS->getType() &&
1367 "Arithmetic operation should return same type as operands!");
Reid Spencerd84d35b2007-02-15 02:26:10 +00001368 assert((getType()->isInteger() || (isa<VectorType>(getType()) &&
1369 cast<VectorType>(getType())->getElementType()->isInteger())) &&
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001370 "Incorrect operand type (not integer) for S/UDIV");
1371 break;
1372 case FDiv:
1373 assert(getType() == LHS->getType() &&
1374 "Arithmetic operation should return same type as operands!");
Reid Spencerd84d35b2007-02-15 02:26:10 +00001375 assert((getType()->isFloatingPoint() || (isa<VectorType>(getType()) &&
1376 cast<VectorType>(getType())->getElementType()->isFloatingPoint()))
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001377 && "Incorrect operand type (not floating point) for FDIV");
1378 break;
Reid Spencer7eb55b32006-11-02 01:53:59 +00001379 case URem:
1380 case SRem:
1381 assert(getType() == LHS->getType() &&
1382 "Arithmetic operation should return same type as operands!");
Reid Spencerd84d35b2007-02-15 02:26:10 +00001383 assert((getType()->isInteger() || (isa<VectorType>(getType()) &&
1384 cast<VectorType>(getType())->getElementType()->isInteger())) &&
Reid Spencer7eb55b32006-11-02 01:53:59 +00001385 "Incorrect operand type (not integer) for S/UREM");
1386 break;
1387 case FRem:
1388 assert(getType() == LHS->getType() &&
1389 "Arithmetic operation should return same type as operands!");
Reid Spencerd84d35b2007-02-15 02:26:10 +00001390 assert((getType()->isFloatingPoint() || (isa<VectorType>(getType()) &&
1391 cast<VectorType>(getType())->getElementType()->isFloatingPoint()))
Reid Spencer7eb55b32006-11-02 01:53:59 +00001392 && "Incorrect operand type (not floating point) for FREM");
1393 break;
Reid Spencer2341c222007-02-02 02:16:23 +00001394 case Shl:
1395 case LShr:
1396 case AShr:
1397 assert(getType() == LHS->getType() &&
1398 "Shift operation should return same type as operands!");
1399 assert(getType()->isInteger() &&
1400 "Shift operation requires integer operands");
1401 break;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001402 case And: case Or:
1403 case Xor:
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001404 assert(getType() == LHS->getType() &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001405 "Logical operation should return same type as operands!");
Chris Lattner03c49532007-01-15 02:27:26 +00001406 assert((getType()->isInteger() ||
Reid Spencerd84d35b2007-02-15 02:26:10 +00001407 (isa<VectorType>(getType()) &&
1408 cast<VectorType>(getType())->getElementType()->isInteger())) &&
Misha Brukman3852f652005-01-27 06:46:38 +00001409 "Tried to create a logical operation on a non-integral type!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001410 break;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001411 default:
1412 break;
1413 }
1414#endif
1415}
1416
1417BinaryOperator *BinaryOperator::create(BinaryOps Op, Value *S1, Value *S2,
Misha Brukman96eb8782005-03-16 05:42:00 +00001418 const std::string &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001419 Instruction *InsertBefore) {
1420 assert(S1->getType() == S2->getType() &&
1421 "Cannot create binary operator with two operands of differing type!");
Reid Spencer266e42b2006-12-23 06:05:41 +00001422 return new BinaryOperator(Op, S1, S2, S1->getType(), Name, InsertBefore);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001423}
1424
1425BinaryOperator *BinaryOperator::create(BinaryOps Op, Value *S1, Value *S2,
Misha Brukman96eb8782005-03-16 05:42:00 +00001426 const std::string &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001427 BasicBlock *InsertAtEnd) {
1428 BinaryOperator *Res = create(Op, S1, S2, Name);
1429 InsertAtEnd->getInstList().push_back(Res);
1430 return Res;
1431}
1432
1433BinaryOperator *BinaryOperator::createNeg(Value *Op, const std::string &Name,
1434 Instruction *InsertBefore) {
Reid Spencer2eadb532007-01-21 00:29:26 +00001435 Value *zero = ConstantExpr::getZeroValueForNegationExpr(Op->getType());
1436 return new BinaryOperator(Instruction::Sub,
1437 zero, Op,
1438 Op->getType(), Name, InsertBefore);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001439}
1440
1441BinaryOperator *BinaryOperator::createNeg(Value *Op, const std::string &Name,
1442 BasicBlock *InsertAtEnd) {
Reid Spencer2eadb532007-01-21 00:29:26 +00001443 Value *zero = ConstantExpr::getZeroValueForNegationExpr(Op->getType());
1444 return new BinaryOperator(Instruction::Sub,
1445 zero, Op,
1446 Op->getType(), Name, InsertAtEnd);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001447}
1448
1449BinaryOperator *BinaryOperator::createNot(Value *Op, const std::string &Name,
1450 Instruction *InsertBefore) {
Chris Lattnere8e7ac42006-03-25 21:54:21 +00001451 Constant *C;
Reid Spencerd84d35b2007-02-15 02:26:10 +00001452 if (const VectorType *PTy = dyn_cast<VectorType>(Op->getType())) {
Zhou Sheng75b871f2007-01-11 12:24:14 +00001453 C = ConstantInt::getAllOnesValue(PTy->getElementType());
Reid Spencerd84d35b2007-02-15 02:26:10 +00001454 C = ConstantVector::get(std::vector<Constant*>(PTy->getNumElements(), C));
Chris Lattnere8e7ac42006-03-25 21:54:21 +00001455 } else {
Zhou Sheng75b871f2007-01-11 12:24:14 +00001456 C = ConstantInt::getAllOnesValue(Op->getType());
Chris Lattnere8e7ac42006-03-25 21:54:21 +00001457 }
1458
1459 return new BinaryOperator(Instruction::Xor, Op, C,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001460 Op->getType(), Name, InsertBefore);
1461}
1462
1463BinaryOperator *BinaryOperator::createNot(Value *Op, const std::string &Name,
1464 BasicBlock *InsertAtEnd) {
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001465 Constant *AllOnes;
Reid Spencerd84d35b2007-02-15 02:26:10 +00001466 if (const VectorType *PTy = dyn_cast<VectorType>(Op->getType())) {
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001467 // Create a vector of all ones values.
Zhou Sheng75b871f2007-01-11 12:24:14 +00001468 Constant *Elt = ConstantInt::getAllOnesValue(PTy->getElementType());
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001469 AllOnes =
Reid Spencerd84d35b2007-02-15 02:26:10 +00001470 ConstantVector::get(std::vector<Constant*>(PTy->getNumElements(), Elt));
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001471 } else {
Zhou Sheng75b871f2007-01-11 12:24:14 +00001472 AllOnes = ConstantInt::getAllOnesValue(Op->getType());
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001473 }
1474
1475 return new BinaryOperator(Instruction::Xor, Op, AllOnes,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001476 Op->getType(), Name, InsertAtEnd);
1477}
1478
1479
1480// isConstantAllOnes - Helper function for several functions below
1481static inline bool isConstantAllOnes(const Value *V) {
Chris Lattner1edec382007-06-15 06:04:24 +00001482 if (const ConstantInt *CI = dyn_cast<ConstantInt>(V))
1483 return CI->isAllOnesValue();
1484 if (const ConstantVector *CV = dyn_cast<ConstantVector>(V))
1485 return CV->isAllOnesValue();
1486 return false;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001487}
1488
1489bool BinaryOperator::isNeg(const Value *V) {
1490 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1491 if (Bop->getOpcode() == Instruction::Sub)
Reid Spencer2eadb532007-01-21 00:29:26 +00001492 return Bop->getOperand(0) ==
1493 ConstantExpr::getZeroValueForNegationExpr(Bop->getType());
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001494 return false;
1495}
1496
1497bool BinaryOperator::isNot(const Value *V) {
1498 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1499 return (Bop->getOpcode() == Instruction::Xor &&
1500 (isConstantAllOnes(Bop->getOperand(1)) ||
1501 isConstantAllOnes(Bop->getOperand(0))));
1502 return false;
1503}
1504
Chris Lattner2c7d1772005-04-24 07:28:37 +00001505Value *BinaryOperator::getNegArgument(Value *BinOp) {
1506 assert(isNeg(BinOp) && "getNegArgument from non-'neg' instruction!");
1507 return cast<BinaryOperator>(BinOp)->getOperand(1);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001508}
1509
Chris Lattner2c7d1772005-04-24 07:28:37 +00001510const Value *BinaryOperator::getNegArgument(const Value *BinOp) {
1511 return getNegArgument(const_cast<Value*>(BinOp));
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001512}
1513
Chris Lattner2c7d1772005-04-24 07:28:37 +00001514Value *BinaryOperator::getNotArgument(Value *BinOp) {
1515 assert(isNot(BinOp) && "getNotArgument on non-'not' instruction!");
1516 BinaryOperator *BO = cast<BinaryOperator>(BinOp);
1517 Value *Op0 = BO->getOperand(0);
1518 Value *Op1 = BO->getOperand(1);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001519 if (isConstantAllOnes(Op0)) return Op1;
1520
1521 assert(isConstantAllOnes(Op1));
1522 return Op0;
1523}
1524
Chris Lattner2c7d1772005-04-24 07:28:37 +00001525const Value *BinaryOperator::getNotArgument(const Value *BinOp) {
1526 return getNotArgument(const_cast<Value*>(BinOp));
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001527}
1528
1529
1530// swapOperands - Exchange the two operands to this instruction. This
1531// instruction is safe to use on any binary instruction and does not
1532// modify the semantics of the instruction. If the instruction is
1533// order dependent (SetLT f.e.) the opcode is changed.
1534//
1535bool BinaryOperator::swapOperands() {
Reid Spencer266e42b2006-12-23 06:05:41 +00001536 if (!isCommutative())
1537 return true; // Can't commute operands
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001538 std::swap(Ops[0], Ops[1]);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001539 return false;
1540}
1541
Chris Lattnerb0b8ddd2006-09-18 04:54:57 +00001542//===----------------------------------------------------------------------===//
1543// CastInst Class
1544//===----------------------------------------------------------------------===//
1545
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001546// Just determine if this cast only deals with integral->integral conversion.
1547bool CastInst::isIntegerCast() const {
1548 switch (getOpcode()) {
1549 default: return false;
1550 case Instruction::ZExt:
1551 case Instruction::SExt:
1552 case Instruction::Trunc:
1553 return true;
1554 case Instruction::BitCast:
Chris Lattner03c49532007-01-15 02:27:26 +00001555 return getOperand(0)->getType()->isInteger() && getType()->isInteger();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001556 }
Chris Lattnerb0b8ddd2006-09-18 04:54:57 +00001557}
1558
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001559bool CastInst::isLosslessCast() const {
1560 // Only BitCast can be lossless, exit fast if we're not BitCast
1561 if (getOpcode() != Instruction::BitCast)
1562 return false;
1563
1564 // Identity cast is always lossless
1565 const Type* SrcTy = getOperand(0)->getType();
1566 const Type* DstTy = getType();
1567 if (SrcTy == DstTy)
1568 return true;
1569
Reid Spencer8d9336d2006-12-31 05:26:44 +00001570 // Pointer to pointer is always lossless.
1571 if (isa<PointerType>(SrcTy))
1572 return isa<PointerType>(DstTy);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001573 return false; // Other types have no identity values
1574}
1575
1576/// This function determines if the CastInst does not require any bits to be
1577/// changed in order to effect the cast. Essentially, it identifies cases where
1578/// no code gen is necessary for the cast, hence the name no-op cast. For
1579/// example, the following are all no-op casts:
1580/// # bitcast uint %X, int
1581/// # bitcast uint* %x, sbyte*
Dan Gohmanfead7972007-05-11 21:43:24 +00001582/// # bitcast vector< 2 x int > %x, vector< 4 x short>
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001583/// # ptrtoint uint* %x, uint ; on 32-bit plaforms only
1584/// @brief Determine if a cast is a no-op.
1585bool CastInst::isNoopCast(const Type *IntPtrTy) const {
1586 switch (getOpcode()) {
1587 default:
1588 assert(!"Invalid CastOp");
1589 case Instruction::Trunc:
1590 case Instruction::ZExt:
1591 case Instruction::SExt:
1592 case Instruction::FPTrunc:
1593 case Instruction::FPExt:
1594 case Instruction::UIToFP:
1595 case Instruction::SIToFP:
1596 case Instruction::FPToUI:
1597 case Instruction::FPToSI:
1598 return false; // These always modify bits
1599 case Instruction::BitCast:
1600 return true; // BitCast never modifies bits.
1601 case Instruction::PtrToInt:
1602 return IntPtrTy->getPrimitiveSizeInBits() ==
1603 getType()->getPrimitiveSizeInBits();
1604 case Instruction::IntToPtr:
1605 return IntPtrTy->getPrimitiveSizeInBits() ==
1606 getOperand(0)->getType()->getPrimitiveSizeInBits();
1607 }
1608}
1609
1610/// This function determines if a pair of casts can be eliminated and what
1611/// opcode should be used in the elimination. This assumes that there are two
1612/// instructions like this:
1613/// * %F = firstOpcode SrcTy %x to MidTy
1614/// * %S = secondOpcode MidTy %F to DstTy
1615/// The function returns a resultOpcode so these two casts can be replaced with:
1616/// * %Replacement = resultOpcode %SrcTy %x to DstTy
1617/// If no such cast is permited, the function returns 0.
1618unsigned CastInst::isEliminableCastPair(
1619 Instruction::CastOps firstOp, Instruction::CastOps secondOp,
1620 const Type *SrcTy, const Type *MidTy, const Type *DstTy, const Type *IntPtrTy)
1621{
1622 // Define the 144 possibilities for these two cast instructions. The values
1623 // in this matrix determine what to do in a given situation and select the
1624 // case in the switch below. The rows correspond to firstOp, the columns
1625 // correspond to secondOp. In looking at the table below, keep in mind
1626 // the following cast properties:
1627 //
1628 // Size Compare Source Destination
1629 // Operator Src ? Size Type Sign Type Sign
1630 // -------- ------------ ------------------- ---------------------
1631 // TRUNC > Integer Any Integral Any
1632 // ZEXT < Integral Unsigned Integer Any
1633 // SEXT < Integral Signed Integer Any
1634 // FPTOUI n/a FloatPt n/a Integral Unsigned
1635 // FPTOSI n/a FloatPt n/a Integral Signed
1636 // UITOFP n/a Integral Unsigned FloatPt n/a
1637 // SITOFP n/a Integral Signed FloatPt n/a
1638 // FPTRUNC > FloatPt n/a FloatPt n/a
1639 // FPEXT < FloatPt n/a FloatPt n/a
1640 // PTRTOINT n/a Pointer n/a Integral Unsigned
1641 // INTTOPTR n/a Integral Unsigned Pointer n/a
1642 // BITCONVERT = FirstClass n/a FirstClass n/a
Chris Lattner6f6b4972006-12-05 23:43:59 +00001643 //
1644 // NOTE: some transforms are safe, but we consider them to be non-profitable.
1645 // For example, we could merge "fptoui double to uint" + "zext uint to ulong",
1646 // into "fptoui double to ulong", but this loses information about the range
1647 // of the produced value (we no longer know the top-part is all zeros).
1648 // Further this conversion is often much more expensive for typical hardware,
1649 // and causes issues when building libgcc. We disallow fptosi+sext for the
1650 // same reason.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001651 const unsigned numCastOps =
1652 Instruction::CastOpsEnd - Instruction::CastOpsBegin;
1653 static const uint8_t CastResults[numCastOps][numCastOps] = {
1654 // T F F U S F F P I B -+
1655 // R Z S P P I I T P 2 N T |
1656 // U E E 2 2 2 2 R E I T C +- secondOp
1657 // N X X U S F F N X N 2 V |
1658 // C T T I I P P C T T P T -+
1659 { 1, 0, 0,99,99, 0, 0,99,99,99, 0, 3 }, // Trunc -+
1660 { 8, 1, 9,99,99, 2, 0,99,99,99, 2, 3 }, // ZExt |
1661 { 8, 0, 1,99,99, 0, 2,99,99,99, 0, 3 }, // SExt |
Chris Lattner6f6b4972006-12-05 23:43:59 +00001662 { 0, 0, 0,99,99, 0, 0,99,99,99, 0, 3 }, // FPToUI |
1663 { 0, 0, 0,99,99, 0, 0,99,99,99, 0, 3 }, // FPToSI |
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001664 { 99,99,99, 0, 0,99,99, 0, 0,99,99, 4 }, // UIToFP +- firstOp
1665 { 99,99,99, 0, 0,99,99, 0, 0,99,99, 4 }, // SIToFP |
1666 { 99,99,99, 0, 0,99,99, 1, 0,99,99, 4 }, // FPTrunc |
1667 { 99,99,99, 2, 2,99,99,10, 2,99,99, 4 }, // FPExt |
1668 { 1, 0, 0,99,99, 0, 0,99,99,99, 7, 3 }, // PtrToInt |
1669 { 99,99,99,99,99,99,99,99,99,13,99,12 }, // IntToPtr |
1670 { 5, 5, 5, 6, 6, 5, 5, 6, 6,11, 5, 1 }, // BitCast -+
1671 };
1672
1673 int ElimCase = CastResults[firstOp-Instruction::CastOpsBegin]
1674 [secondOp-Instruction::CastOpsBegin];
1675 switch (ElimCase) {
1676 case 0:
1677 // categorically disallowed
1678 return 0;
1679 case 1:
1680 // allowed, use first cast's opcode
1681 return firstOp;
1682 case 2:
1683 // allowed, use second cast's opcode
1684 return secondOp;
1685 case 3:
1686 // no-op cast in second op implies firstOp as long as the DestTy
1687 // is integer
Chris Lattner03c49532007-01-15 02:27:26 +00001688 if (DstTy->isInteger())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001689 return firstOp;
1690 return 0;
1691 case 4:
1692 // no-op cast in second op implies firstOp as long as the DestTy
1693 // is floating point
1694 if (DstTy->isFloatingPoint())
1695 return firstOp;
1696 return 0;
1697 case 5:
1698 // no-op cast in first op implies secondOp as long as the SrcTy
1699 // is an integer
Chris Lattner03c49532007-01-15 02:27:26 +00001700 if (SrcTy->isInteger())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001701 return secondOp;
1702 return 0;
1703 case 6:
1704 // no-op cast in first op implies secondOp as long as the SrcTy
1705 // is a floating point
1706 if (SrcTy->isFloatingPoint())
1707 return secondOp;
1708 return 0;
1709 case 7: {
1710 // ptrtoint, inttoptr -> bitcast (ptr -> ptr) if int size is >= ptr size
1711 unsigned PtrSize = IntPtrTy->getPrimitiveSizeInBits();
1712 unsigned MidSize = MidTy->getPrimitiveSizeInBits();
1713 if (MidSize >= PtrSize)
1714 return Instruction::BitCast;
1715 return 0;
1716 }
1717 case 8: {
1718 // ext, trunc -> bitcast, if the SrcTy and DstTy are same size
1719 // ext, trunc -> ext, if sizeof(SrcTy) < sizeof(DstTy)
1720 // ext, trunc -> trunc, if sizeof(SrcTy) > sizeof(DstTy)
1721 unsigned SrcSize = SrcTy->getPrimitiveSizeInBits();
1722 unsigned DstSize = DstTy->getPrimitiveSizeInBits();
1723 if (SrcSize == DstSize)
1724 return Instruction::BitCast;
1725 else if (SrcSize < DstSize)
1726 return firstOp;
1727 return secondOp;
1728 }
1729 case 9: // zext, sext -> zext, because sext can't sign extend after zext
1730 return Instruction::ZExt;
1731 case 10:
1732 // fpext followed by ftrunc is allowed if the bit size returned to is
1733 // the same as the original, in which case its just a bitcast
1734 if (SrcTy == DstTy)
1735 return Instruction::BitCast;
1736 return 0; // If the types are not the same we can't eliminate it.
1737 case 11:
1738 // bitcast followed by ptrtoint is allowed as long as the bitcast
1739 // is a pointer to pointer cast.
1740 if (isa<PointerType>(SrcTy) && isa<PointerType>(MidTy))
1741 return secondOp;
1742 return 0;
1743 case 12:
1744 // inttoptr, bitcast -> intptr if bitcast is a ptr to ptr cast
1745 if (isa<PointerType>(MidTy) && isa<PointerType>(DstTy))
1746 return firstOp;
1747 return 0;
1748 case 13: {
1749 // inttoptr, ptrtoint -> bitcast if SrcSize<=PtrSize and SrcSize==DstSize
1750 unsigned PtrSize = IntPtrTy->getPrimitiveSizeInBits();
1751 unsigned SrcSize = SrcTy->getPrimitiveSizeInBits();
1752 unsigned DstSize = DstTy->getPrimitiveSizeInBits();
1753 if (SrcSize <= PtrSize && SrcSize == DstSize)
1754 return Instruction::BitCast;
1755 return 0;
1756 }
1757 case 99:
1758 // cast combination can't happen (error in input). This is for all cases
1759 // where the MidTy is not the same for the two cast instructions.
1760 assert(!"Invalid Cast Combination");
1761 return 0;
1762 default:
1763 assert(!"Error in CastResults table!!!");
1764 return 0;
1765 }
1766 return 0;
1767}
1768
1769CastInst *CastInst::create(Instruction::CastOps op, Value *S, const Type *Ty,
1770 const std::string &Name, Instruction *InsertBefore) {
1771 // Construct and return the appropriate CastInst subclass
1772 switch (op) {
1773 case Trunc: return new TruncInst (S, Ty, Name, InsertBefore);
1774 case ZExt: return new ZExtInst (S, Ty, Name, InsertBefore);
1775 case SExt: return new SExtInst (S, Ty, Name, InsertBefore);
1776 case FPTrunc: return new FPTruncInst (S, Ty, Name, InsertBefore);
1777 case FPExt: return new FPExtInst (S, Ty, Name, InsertBefore);
1778 case UIToFP: return new UIToFPInst (S, Ty, Name, InsertBefore);
1779 case SIToFP: return new SIToFPInst (S, Ty, Name, InsertBefore);
1780 case FPToUI: return new FPToUIInst (S, Ty, Name, InsertBefore);
1781 case FPToSI: return new FPToSIInst (S, Ty, Name, InsertBefore);
1782 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertBefore);
1783 case IntToPtr: return new IntToPtrInst (S, Ty, Name, InsertBefore);
1784 case BitCast: return new BitCastInst (S, Ty, Name, InsertBefore);
1785 default:
1786 assert(!"Invalid opcode provided");
1787 }
1788 return 0;
1789}
1790
1791CastInst *CastInst::create(Instruction::CastOps op, Value *S, const Type *Ty,
1792 const std::string &Name, BasicBlock *InsertAtEnd) {
1793 // Construct and return the appropriate CastInst subclass
1794 switch (op) {
1795 case Trunc: return new TruncInst (S, Ty, Name, InsertAtEnd);
1796 case ZExt: return new ZExtInst (S, Ty, Name, InsertAtEnd);
1797 case SExt: return new SExtInst (S, Ty, Name, InsertAtEnd);
1798 case FPTrunc: return new FPTruncInst (S, Ty, Name, InsertAtEnd);
1799 case FPExt: return new FPExtInst (S, Ty, Name, InsertAtEnd);
1800 case UIToFP: return new UIToFPInst (S, Ty, Name, InsertAtEnd);
1801 case SIToFP: return new SIToFPInst (S, Ty, Name, InsertAtEnd);
1802 case FPToUI: return new FPToUIInst (S, Ty, Name, InsertAtEnd);
1803 case FPToSI: return new FPToSIInst (S, Ty, Name, InsertAtEnd);
1804 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertAtEnd);
1805 case IntToPtr: return new IntToPtrInst (S, Ty, Name, InsertAtEnd);
1806 case BitCast: return new BitCastInst (S, Ty, Name, InsertAtEnd);
1807 default:
1808 assert(!"Invalid opcode provided");
1809 }
1810 return 0;
1811}
1812
Reid Spencer5c140882006-12-04 20:17:56 +00001813CastInst *CastInst::createZExtOrBitCast(Value *S, const Type *Ty,
1814 const std::string &Name,
1815 Instruction *InsertBefore) {
1816 if (S->getType()->getPrimitiveSizeInBits() == Ty->getPrimitiveSizeInBits())
1817 return create(Instruction::BitCast, S, Ty, Name, InsertBefore);
1818 return create(Instruction::ZExt, S, Ty, Name, InsertBefore);
1819}
1820
1821CastInst *CastInst::createZExtOrBitCast(Value *S, const Type *Ty,
1822 const std::string &Name,
1823 BasicBlock *InsertAtEnd) {
1824 if (S->getType()->getPrimitiveSizeInBits() == Ty->getPrimitiveSizeInBits())
1825 return create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
1826 return create(Instruction::ZExt, S, Ty, Name, InsertAtEnd);
1827}
1828
1829CastInst *CastInst::createSExtOrBitCast(Value *S, const Type *Ty,
1830 const std::string &Name,
1831 Instruction *InsertBefore) {
1832 if (S->getType()->getPrimitiveSizeInBits() == Ty->getPrimitiveSizeInBits())
1833 return create(Instruction::BitCast, S, Ty, Name, InsertBefore);
1834 return create(Instruction::SExt, S, Ty, Name, InsertBefore);
1835}
1836
1837CastInst *CastInst::createSExtOrBitCast(Value *S, const Type *Ty,
1838 const std::string &Name,
1839 BasicBlock *InsertAtEnd) {
1840 if (S->getType()->getPrimitiveSizeInBits() == Ty->getPrimitiveSizeInBits())
1841 return create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
1842 return create(Instruction::SExt, S, Ty, Name, InsertAtEnd);
1843}
1844
1845CastInst *CastInst::createTruncOrBitCast(Value *S, const Type *Ty,
1846 const std::string &Name,
1847 Instruction *InsertBefore) {
1848 if (S->getType()->getPrimitiveSizeInBits() == Ty->getPrimitiveSizeInBits())
1849 return create(Instruction::BitCast, S, Ty, Name, InsertBefore);
1850 return create(Instruction::Trunc, S, Ty, Name, InsertBefore);
1851}
1852
1853CastInst *CastInst::createTruncOrBitCast(Value *S, const Type *Ty,
1854 const std::string &Name,
1855 BasicBlock *InsertAtEnd) {
1856 if (S->getType()->getPrimitiveSizeInBits() == Ty->getPrimitiveSizeInBits())
1857 return create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
1858 return create(Instruction::Trunc, S, Ty, Name, InsertAtEnd);
1859}
1860
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00001861CastInst *CastInst::createPointerCast(Value *S, const Type *Ty,
1862 const std::string &Name,
1863 BasicBlock *InsertAtEnd) {
1864 assert(isa<PointerType>(S->getType()) && "Invalid cast");
Chris Lattner03c49532007-01-15 02:27:26 +00001865 assert((Ty->isInteger() || isa<PointerType>(Ty)) &&
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00001866 "Invalid cast");
1867
Chris Lattner03c49532007-01-15 02:27:26 +00001868 if (Ty->isInteger())
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00001869 return create(Instruction::PtrToInt, S, Ty, Name, InsertAtEnd);
1870 return create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
1871}
1872
1873/// @brief Create a BitCast or a PtrToInt cast instruction
1874CastInst *CastInst::createPointerCast(Value *S, const Type *Ty,
1875 const std::string &Name,
1876 Instruction *InsertBefore) {
1877 assert(isa<PointerType>(S->getType()) && "Invalid cast");
Chris Lattner03c49532007-01-15 02:27:26 +00001878 assert((Ty->isInteger() || isa<PointerType>(Ty)) &&
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00001879 "Invalid cast");
1880
Chris Lattner03c49532007-01-15 02:27:26 +00001881 if (Ty->isInteger())
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00001882 return create(Instruction::PtrToInt, S, Ty, Name, InsertBefore);
1883 return create(Instruction::BitCast, S, Ty, Name, InsertBefore);
1884}
1885
Reid Spencer7e933472006-12-12 00:49:44 +00001886CastInst *CastInst::createIntegerCast(Value *C, const Type *Ty,
1887 bool isSigned, const std::string &Name,
1888 Instruction *InsertBefore) {
Chris Lattner03c49532007-01-15 02:27:26 +00001889 assert(C->getType()->isInteger() && Ty->isInteger() && "Invalid cast");
Reid Spencer7e933472006-12-12 00:49:44 +00001890 unsigned SrcBits = C->getType()->getPrimitiveSizeInBits();
1891 unsigned DstBits = Ty->getPrimitiveSizeInBits();
1892 Instruction::CastOps opcode =
1893 (SrcBits == DstBits ? Instruction::BitCast :
1894 (SrcBits > DstBits ? Instruction::Trunc :
1895 (isSigned ? Instruction::SExt : Instruction::ZExt)));
1896 return create(opcode, C, Ty, Name, InsertBefore);
1897}
1898
1899CastInst *CastInst::createIntegerCast(Value *C, const Type *Ty,
1900 bool isSigned, const std::string &Name,
1901 BasicBlock *InsertAtEnd) {
Chris Lattner03c49532007-01-15 02:27:26 +00001902 assert(C->getType()->isInteger() && Ty->isInteger() && "Invalid cast");
Reid Spencer7e933472006-12-12 00:49:44 +00001903 unsigned SrcBits = C->getType()->getPrimitiveSizeInBits();
1904 unsigned DstBits = Ty->getPrimitiveSizeInBits();
1905 Instruction::CastOps opcode =
1906 (SrcBits == DstBits ? Instruction::BitCast :
1907 (SrcBits > DstBits ? Instruction::Trunc :
1908 (isSigned ? Instruction::SExt : Instruction::ZExt)));
1909 return create(opcode, C, Ty, Name, InsertAtEnd);
1910}
1911
1912CastInst *CastInst::createFPCast(Value *C, const Type *Ty,
1913 const std::string &Name,
1914 Instruction *InsertBefore) {
1915 assert(C->getType()->isFloatingPoint() && Ty->isFloatingPoint() &&
1916 "Invalid cast");
1917 unsigned SrcBits = C->getType()->getPrimitiveSizeInBits();
1918 unsigned DstBits = Ty->getPrimitiveSizeInBits();
1919 Instruction::CastOps opcode =
1920 (SrcBits == DstBits ? Instruction::BitCast :
1921 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt));
1922 return create(opcode, C, Ty, Name, InsertBefore);
1923}
1924
1925CastInst *CastInst::createFPCast(Value *C, const Type *Ty,
1926 const std::string &Name,
1927 BasicBlock *InsertAtEnd) {
1928 assert(C->getType()->isFloatingPoint() && Ty->isFloatingPoint() &&
1929 "Invalid cast");
1930 unsigned SrcBits = C->getType()->getPrimitiveSizeInBits();
1931 unsigned DstBits = Ty->getPrimitiveSizeInBits();
1932 Instruction::CastOps opcode =
1933 (SrcBits == DstBits ? Instruction::BitCast :
1934 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt));
1935 return create(opcode, C, Ty, Name, InsertAtEnd);
1936}
1937
Duncan Sands55e50902008-01-06 10:12:28 +00001938// Check whether it is valid to call getCastOpcode for these types.
1939// This routine must be kept in sync with getCastOpcode.
1940bool CastInst::isCastable(const Type *SrcTy, const Type *DestTy) {
1941 if (!SrcTy->isFirstClassType() || !DestTy->isFirstClassType())
1942 return false;
1943
1944 if (SrcTy == DestTy)
1945 return true;
1946
1947 // Get the bit sizes, we'll need these
1948 unsigned SrcBits = SrcTy->getPrimitiveSizeInBits(); // 0 for ptr/vector
1949 unsigned DestBits = DestTy->getPrimitiveSizeInBits(); // 0 for ptr/vector
1950
1951 // Run through the possibilities ...
1952 if (DestTy->isInteger()) { // Casting to integral
1953 if (SrcTy->isInteger()) { // Casting from integral
1954 return true;
1955 } else if (SrcTy->isFloatingPoint()) { // Casting from floating pt
1956 return true;
1957 } else if (const VectorType *PTy = dyn_cast<VectorType>(SrcTy)) {
1958 // Casting from vector
1959 return DestBits == PTy->getBitWidth();
1960 } else { // Casting from something else
1961 return isa<PointerType>(SrcTy);
1962 }
1963 } else if (DestTy->isFloatingPoint()) { // Casting to floating pt
1964 if (SrcTy->isInteger()) { // Casting from integral
1965 return true;
1966 } else if (SrcTy->isFloatingPoint()) { // Casting from floating pt
1967 return true;
1968 } else if (const VectorType *PTy = dyn_cast<VectorType>(SrcTy)) {
1969 // Casting from vector
1970 return DestBits == PTy->getBitWidth();
1971 } else { // Casting from something else
1972 return false;
1973 }
1974 } else if (const VectorType *DestPTy = dyn_cast<VectorType>(DestTy)) {
1975 // Casting to vector
1976 if (const VectorType *SrcPTy = dyn_cast<VectorType>(SrcTy)) {
1977 // Casting from vector
1978 return DestPTy->getBitWidth() == SrcPTy->getBitWidth();
1979 } else { // Casting from something else
1980 return DestPTy->getBitWidth() == SrcBits;
1981 }
1982 } else if (isa<PointerType>(DestTy)) { // Casting to pointer
1983 if (isa<PointerType>(SrcTy)) { // Casting from pointer
1984 return true;
1985 } else if (SrcTy->isInteger()) { // Casting from integral
1986 return true;
1987 } else { // Casting from something else
1988 return false;
1989 }
1990 } else { // Casting to something else
1991 return false;
1992 }
1993}
1994
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001995// Provide a way to get a "cast" where the cast opcode is inferred from the
1996// types and size of the operand. This, basically, is a parallel of the
Reid Spencer00e5e0e2007-01-17 02:46:11 +00001997// logic in the castIsValid function below. This axiom should hold:
1998// castIsValid( getCastOpcode(Val, Ty), Val, Ty)
1999// should not assert in castIsValid. In other words, this produces a "correct"
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002000// casting opcode for the arguments passed to it.
Duncan Sands55e50902008-01-06 10:12:28 +00002001// This routine must be kept in sync with isCastable.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002002Instruction::CastOps
Reid Spencerc4dacf22006-12-04 02:43:42 +00002003CastInst::getCastOpcode(
2004 const Value *Src, bool SrcIsSigned, const Type *DestTy, bool DestIsSigned) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002005 // Get the bit sizes, we'll need these
2006 const Type *SrcTy = Src->getType();
Dan Gohmanfead7972007-05-11 21:43:24 +00002007 unsigned SrcBits = SrcTy->getPrimitiveSizeInBits(); // 0 for ptr/vector
2008 unsigned DestBits = DestTy->getPrimitiveSizeInBits(); // 0 for ptr/vector
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002009
Duncan Sands55e50902008-01-06 10:12:28 +00002010 assert(SrcTy->isFirstClassType() && DestTy->isFirstClassType() &&
2011 "Only first class types are castable!");
2012
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002013 // Run through the possibilities ...
Chris Lattner03c49532007-01-15 02:27:26 +00002014 if (DestTy->isInteger()) { // Casting to integral
2015 if (SrcTy->isInteger()) { // Casting from integral
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002016 if (DestBits < SrcBits)
2017 return Trunc; // int -> smaller int
2018 else if (DestBits > SrcBits) { // its an extension
Reid Spencerc4dacf22006-12-04 02:43:42 +00002019 if (SrcIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002020 return SExt; // signed -> SEXT
2021 else
2022 return ZExt; // unsigned -> ZEXT
2023 } else {
2024 return BitCast; // Same size, No-op cast
2025 }
2026 } else if (SrcTy->isFloatingPoint()) { // Casting from floating pt
Reid Spencerc4dacf22006-12-04 02:43:42 +00002027 if (DestIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002028 return FPToSI; // FP -> sint
2029 else
2030 return FPToUI; // FP -> uint
Reid Spencerd84d35b2007-02-15 02:26:10 +00002031 } else if (const VectorType *PTy = dyn_cast<VectorType>(SrcTy)) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002032 assert(DestBits == PTy->getBitWidth() &&
Dan Gohmanfead7972007-05-11 21:43:24 +00002033 "Casting vector to integer of different width");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002034 return BitCast; // Same size, no-op cast
2035 } else {
2036 assert(isa<PointerType>(SrcTy) &&
2037 "Casting from a value that is not first-class type");
2038 return PtrToInt; // ptr -> int
2039 }
2040 } else if (DestTy->isFloatingPoint()) { // Casting to floating pt
Chris Lattner03c49532007-01-15 02:27:26 +00002041 if (SrcTy->isInteger()) { // Casting from integral
Reid Spencerc4dacf22006-12-04 02:43:42 +00002042 if (SrcIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002043 return SIToFP; // sint -> FP
2044 else
2045 return UIToFP; // uint -> FP
2046 } else if (SrcTy->isFloatingPoint()) { // Casting from floating pt
2047 if (DestBits < SrcBits) {
2048 return FPTrunc; // FP -> smaller FP
2049 } else if (DestBits > SrcBits) {
2050 return FPExt; // FP -> larger FP
2051 } else {
2052 return BitCast; // same size, no-op cast
2053 }
Reid Spencerd84d35b2007-02-15 02:26:10 +00002054 } else if (const VectorType *PTy = dyn_cast<VectorType>(SrcTy)) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002055 assert(DestBits == PTy->getBitWidth() &&
Dan Gohmanfead7972007-05-11 21:43:24 +00002056 "Casting vector to floating point of different width");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002057 return BitCast; // same size, no-op cast
2058 } else {
2059 assert(0 && "Casting pointer or non-first class to float");
2060 }
Reid Spencerd84d35b2007-02-15 02:26:10 +00002061 } else if (const VectorType *DestPTy = dyn_cast<VectorType>(DestTy)) {
2062 if (const VectorType *SrcPTy = dyn_cast<VectorType>(SrcTy)) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002063 assert(DestPTy->getBitWidth() == SrcPTy->getBitWidth() &&
Dan Gohmanfead7972007-05-11 21:43:24 +00002064 "Casting vector to vector of different widths");
2065 return BitCast; // vector -> vector
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002066 } else if (DestPTy->getBitWidth() == SrcBits) {
Dan Gohmanfead7972007-05-11 21:43:24 +00002067 return BitCast; // float/int -> vector
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002068 } else {
Dan Gohmanfead7972007-05-11 21:43:24 +00002069 assert(!"Illegal cast to vector (wrong type or size)");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002070 }
2071 } else if (isa<PointerType>(DestTy)) {
2072 if (isa<PointerType>(SrcTy)) {
2073 return BitCast; // ptr -> ptr
Chris Lattner03c49532007-01-15 02:27:26 +00002074 } else if (SrcTy->isInteger()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002075 return IntToPtr; // int -> ptr
2076 } else {
2077 assert(!"Casting pointer to other than pointer or int");
2078 }
2079 } else {
2080 assert(!"Casting to type that is not first-class");
2081 }
2082
2083 // If we fall through to here we probably hit an assertion cast above
2084 // and assertions are not turned on. Anything we return is an error, so
2085 // BitCast is as good a choice as any.
2086 return BitCast;
2087}
2088
2089//===----------------------------------------------------------------------===//
2090// CastInst SubClass Constructors
2091//===----------------------------------------------------------------------===//
2092
2093/// Check that the construction parameters for a CastInst are correct. This
2094/// could be broken out into the separate constructors but it is useful to have
2095/// it in one place and to eliminate the redundant code for getting the sizes
2096/// of the types involved.
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002097bool
2098CastInst::castIsValid(Instruction::CastOps op, Value *S, const Type *DstTy) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002099
2100 // Check for type sanity on the arguments
2101 const Type *SrcTy = S->getType();
2102 if (!SrcTy->isFirstClassType() || !DstTy->isFirstClassType())
2103 return false;
2104
2105 // Get the size of the types in bits, we'll need this later
2106 unsigned SrcBitSize = SrcTy->getPrimitiveSizeInBits();
2107 unsigned DstBitSize = DstTy->getPrimitiveSizeInBits();
2108
2109 // Switch on the opcode provided
2110 switch (op) {
2111 default: return false; // This is an input error
2112 case Instruction::Trunc:
Chris Lattner03c49532007-01-15 02:27:26 +00002113 return SrcTy->isInteger() && DstTy->isInteger()&& SrcBitSize > DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002114 case Instruction::ZExt:
Chris Lattner03c49532007-01-15 02:27:26 +00002115 return SrcTy->isInteger() && DstTy->isInteger()&& SrcBitSize < DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002116 case Instruction::SExt:
Chris Lattner03c49532007-01-15 02:27:26 +00002117 return SrcTy->isInteger() && DstTy->isInteger()&& SrcBitSize < DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002118 case Instruction::FPTrunc:
2119 return SrcTy->isFloatingPoint() && DstTy->isFloatingPoint() &&
2120 SrcBitSize > DstBitSize;
2121 case Instruction::FPExt:
2122 return SrcTy->isFloatingPoint() && DstTy->isFloatingPoint() &&
2123 SrcBitSize < DstBitSize;
2124 case Instruction::UIToFP:
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002125 case Instruction::SIToFP:
Nate Begemand4d45c22007-11-17 03:58:34 +00002126 if (const VectorType *SVTy = dyn_cast<VectorType>(SrcTy)) {
2127 if (const VectorType *DVTy = dyn_cast<VectorType>(DstTy)) {
2128 return SVTy->getElementType()->isInteger() &&
2129 DVTy->getElementType()->isFloatingPoint() &&
2130 SVTy->getNumElements() == DVTy->getNumElements();
2131 }
2132 }
Chris Lattner03c49532007-01-15 02:27:26 +00002133 return SrcTy->isInteger() && DstTy->isFloatingPoint();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002134 case Instruction::FPToUI:
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002135 case Instruction::FPToSI:
Nate Begemand4d45c22007-11-17 03:58:34 +00002136 if (const VectorType *SVTy = dyn_cast<VectorType>(SrcTy)) {
2137 if (const VectorType *DVTy = dyn_cast<VectorType>(DstTy)) {
2138 return SVTy->getElementType()->isFloatingPoint() &&
2139 DVTy->getElementType()->isInteger() &&
2140 SVTy->getNumElements() == DVTy->getNumElements();
2141 }
2142 }
Chris Lattner03c49532007-01-15 02:27:26 +00002143 return SrcTy->isFloatingPoint() && DstTy->isInteger();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002144 case Instruction::PtrToInt:
Chris Lattner03c49532007-01-15 02:27:26 +00002145 return isa<PointerType>(SrcTy) && DstTy->isInteger();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002146 case Instruction::IntToPtr:
Chris Lattner03c49532007-01-15 02:27:26 +00002147 return SrcTy->isInteger() && isa<PointerType>(DstTy);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002148 case Instruction::BitCast:
2149 // BitCast implies a no-op cast of type only. No bits change.
2150 // However, you can't cast pointers to anything but pointers.
2151 if (isa<PointerType>(SrcTy) != isa<PointerType>(DstTy))
2152 return false;
2153
Duncan Sands55e50902008-01-06 10:12:28 +00002154 // Now we know we're not dealing with a pointer/non-pointer mismatch. In all
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002155 // these cases, the cast is okay if the source and destination bit widths
2156 // are identical.
2157 return SrcBitSize == DstBitSize;
2158 }
2159}
2160
2161TruncInst::TruncInst(
2162 Value *S, const Type *Ty, const std::string &Name, Instruction *InsertBefore
2163) : CastInst(Ty, Trunc, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002164 assert(castIsValid(getOpcode(), S, Ty) && "Illegal Trunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002165}
2166
2167TruncInst::TruncInst(
2168 Value *S, const Type *Ty, const std::string &Name, BasicBlock *InsertAtEnd
2169) : CastInst(Ty, Trunc, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002170 assert(castIsValid(getOpcode(), S, Ty) && "Illegal Trunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002171}
2172
2173ZExtInst::ZExtInst(
2174 Value *S, const Type *Ty, const std::string &Name, Instruction *InsertBefore
2175) : CastInst(Ty, ZExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002176 assert(castIsValid(getOpcode(), S, Ty) && "Illegal ZExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002177}
2178
2179ZExtInst::ZExtInst(
2180 Value *S, const Type *Ty, const std::string &Name, BasicBlock *InsertAtEnd
2181) : CastInst(Ty, ZExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002182 assert(castIsValid(getOpcode(), S, Ty) && "Illegal ZExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002183}
2184SExtInst::SExtInst(
2185 Value *S, const Type *Ty, const std::string &Name, Instruction *InsertBefore
2186) : CastInst(Ty, SExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002187 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002188}
2189
Jeff Cohencc08c832006-12-02 02:22:01 +00002190SExtInst::SExtInst(
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002191 Value *S, const Type *Ty, const std::string &Name, BasicBlock *InsertAtEnd
2192) : CastInst(Ty, SExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002193 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002194}
2195
2196FPTruncInst::FPTruncInst(
2197 Value *S, const Type *Ty, const std::string &Name, Instruction *InsertBefore
2198) : CastInst(Ty, FPTrunc, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002199 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPTrunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002200}
2201
2202FPTruncInst::FPTruncInst(
2203 Value *S, const Type *Ty, const std::string &Name, BasicBlock *InsertAtEnd
2204) : CastInst(Ty, FPTrunc, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002205 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPTrunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002206}
2207
2208FPExtInst::FPExtInst(
2209 Value *S, const Type *Ty, const std::string &Name, Instruction *InsertBefore
2210) : CastInst(Ty, FPExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002211 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002212}
2213
2214FPExtInst::FPExtInst(
2215 Value *S, const Type *Ty, const std::string &Name, BasicBlock *InsertAtEnd
2216) : CastInst(Ty, FPExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002217 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002218}
2219
2220UIToFPInst::UIToFPInst(
2221 Value *S, const Type *Ty, const std::string &Name, Instruction *InsertBefore
2222) : CastInst(Ty, UIToFP, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002223 assert(castIsValid(getOpcode(), S, Ty) && "Illegal UIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002224}
2225
2226UIToFPInst::UIToFPInst(
2227 Value *S, const Type *Ty, const std::string &Name, BasicBlock *InsertAtEnd
2228) : CastInst(Ty, UIToFP, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002229 assert(castIsValid(getOpcode(), S, Ty) && "Illegal UIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002230}
2231
2232SIToFPInst::SIToFPInst(
2233 Value *S, const Type *Ty, const std::string &Name, Instruction *InsertBefore
2234) : CastInst(Ty, SIToFP, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002235 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002236}
2237
2238SIToFPInst::SIToFPInst(
2239 Value *S, const Type *Ty, const std::string &Name, BasicBlock *InsertAtEnd
2240) : CastInst(Ty, SIToFP, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002241 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002242}
2243
2244FPToUIInst::FPToUIInst(
2245 Value *S, const Type *Ty, const std::string &Name, Instruction *InsertBefore
2246) : CastInst(Ty, FPToUI, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002247 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToUI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002248}
2249
2250FPToUIInst::FPToUIInst(
2251 Value *S, const Type *Ty, const std::string &Name, BasicBlock *InsertAtEnd
2252) : CastInst(Ty, FPToUI, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002253 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToUI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002254}
2255
2256FPToSIInst::FPToSIInst(
2257 Value *S, const Type *Ty, const std::string &Name, Instruction *InsertBefore
2258) : CastInst(Ty, FPToSI, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002259 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToSI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002260}
2261
2262FPToSIInst::FPToSIInst(
2263 Value *S, const Type *Ty, const std::string &Name, BasicBlock *InsertAtEnd
2264) : CastInst(Ty, FPToSI, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002265 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToSI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002266}
2267
2268PtrToIntInst::PtrToIntInst(
2269 Value *S, const Type *Ty, const std::string &Name, Instruction *InsertBefore
2270) : CastInst(Ty, PtrToInt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002271 assert(castIsValid(getOpcode(), S, Ty) && "Illegal PtrToInt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002272}
2273
2274PtrToIntInst::PtrToIntInst(
2275 Value *S, const Type *Ty, const std::string &Name, BasicBlock *InsertAtEnd
2276) : CastInst(Ty, PtrToInt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002277 assert(castIsValid(getOpcode(), S, Ty) && "Illegal PtrToInt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002278}
2279
2280IntToPtrInst::IntToPtrInst(
2281 Value *S, const Type *Ty, const std::string &Name, Instruction *InsertBefore
2282) : CastInst(Ty, IntToPtr, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002283 assert(castIsValid(getOpcode(), S, Ty) && "Illegal IntToPtr");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002284}
2285
2286IntToPtrInst::IntToPtrInst(
2287 Value *S, const Type *Ty, const std::string &Name, BasicBlock *InsertAtEnd
2288) : CastInst(Ty, IntToPtr, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002289 assert(castIsValid(getOpcode(), S, Ty) && "Illegal IntToPtr");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002290}
2291
2292BitCastInst::BitCastInst(
2293 Value *S, const Type *Ty, const std::string &Name, Instruction *InsertBefore
2294) : CastInst(Ty, BitCast, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002295 assert(castIsValid(getOpcode(), S, Ty) && "Illegal BitCast");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002296}
2297
2298BitCastInst::BitCastInst(
2299 Value *S, const Type *Ty, const std::string &Name, BasicBlock *InsertAtEnd
2300) : CastInst(Ty, BitCast, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002301 assert(castIsValid(getOpcode(), S, Ty) && "Illegal BitCast");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002302}
Chris Lattnerf16dc002006-09-17 19:29:56 +00002303
2304//===----------------------------------------------------------------------===//
Reid Spencerd9436b62006-11-20 01:22:35 +00002305// CmpInst Classes
2306//===----------------------------------------------------------------------===//
2307
2308CmpInst::CmpInst(OtherOps op, unsigned short predicate, Value *LHS, Value *RHS,
2309 const std::string &Name, Instruction *InsertBefore)
Chris Lattner2195fc42007-02-24 00:55:48 +00002310 : Instruction(Type::Int1Ty, op, Ops, 2, InsertBefore) {
Reid Spencerd9436b62006-11-20 01:22:35 +00002311 Ops[0].init(LHS, this);
2312 Ops[1].init(RHS, this);
2313 SubclassData = predicate;
Reid Spencer871a9ea2007-04-11 13:04:48 +00002314 setName(Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002315 if (op == Instruction::ICmp) {
2316 assert(predicate >= ICmpInst::FIRST_ICMP_PREDICATE &&
2317 predicate <= ICmpInst::LAST_ICMP_PREDICATE &&
2318 "Invalid ICmp predicate value");
2319 const Type* Op0Ty = getOperand(0)->getType();
2320 const Type* Op1Ty = getOperand(1)->getType();
2321 assert(Op0Ty == Op1Ty &&
2322 "Both operands to ICmp instruction are not of the same type!");
2323 // Check that the operands are the right type
Reid Spencer2eadb532007-01-21 00:29:26 +00002324 assert((Op0Ty->isInteger() || isa<PointerType>(Op0Ty)) &&
Reid Spencerd9436b62006-11-20 01:22:35 +00002325 "Invalid operand types for ICmp instruction");
2326 return;
2327 }
2328 assert(op == Instruction::FCmp && "Invalid CmpInst opcode");
2329 assert(predicate <= FCmpInst::LAST_FCMP_PREDICATE &&
2330 "Invalid FCmp predicate value");
2331 const Type* Op0Ty = getOperand(0)->getType();
2332 const Type* Op1Ty = getOperand(1)->getType();
2333 assert(Op0Ty == Op1Ty &&
2334 "Both operands to FCmp instruction are not of the same type!");
2335 // Check that the operands are the right type
Reid Spencer2eadb532007-01-21 00:29:26 +00002336 assert(Op0Ty->isFloatingPoint() &&
Reid Spencerd9436b62006-11-20 01:22:35 +00002337 "Invalid operand types for FCmp instruction");
2338}
2339
2340CmpInst::CmpInst(OtherOps op, unsigned short predicate, Value *LHS, Value *RHS,
2341 const std::string &Name, BasicBlock *InsertAtEnd)
Chris Lattner2195fc42007-02-24 00:55:48 +00002342 : Instruction(Type::Int1Ty, op, Ops, 2, InsertAtEnd) {
Reid Spencerd9436b62006-11-20 01:22:35 +00002343 Ops[0].init(LHS, this);
2344 Ops[1].init(RHS, this);
2345 SubclassData = predicate;
Reid Spencer871a9ea2007-04-11 13:04:48 +00002346 setName(Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002347 if (op == Instruction::ICmp) {
2348 assert(predicate >= ICmpInst::FIRST_ICMP_PREDICATE &&
2349 predicate <= ICmpInst::LAST_ICMP_PREDICATE &&
2350 "Invalid ICmp predicate value");
2351
2352 const Type* Op0Ty = getOperand(0)->getType();
2353 const Type* Op1Ty = getOperand(1)->getType();
2354 assert(Op0Ty == Op1Ty &&
2355 "Both operands to ICmp instruction are not of the same type!");
2356 // Check that the operands are the right type
Anton Korobeynikov579f0712008-02-20 11:08:44 +00002357 assert((Op0Ty->isInteger() || isa<PointerType>(Op0Ty)) &&
Reid Spencerd9436b62006-11-20 01:22:35 +00002358 "Invalid operand types for ICmp instruction");
2359 return;
2360 }
2361 assert(op == Instruction::FCmp && "Invalid CmpInst opcode");
2362 assert(predicate <= FCmpInst::LAST_FCMP_PREDICATE &&
2363 "Invalid FCmp predicate value");
2364 const Type* Op0Ty = getOperand(0)->getType();
2365 const Type* Op1Ty = getOperand(1)->getType();
2366 assert(Op0Ty == Op1Ty &&
2367 "Both operands to FCmp instruction are not of the same type!");
2368 // Check that the operands are the right type
Reid Spencer2eadb532007-01-21 00:29:26 +00002369 assert(Op0Ty->isFloatingPoint() &&
Reid Spencerd9436b62006-11-20 01:22:35 +00002370 "Invalid operand types for FCmp instruction");
2371}
2372
2373CmpInst *
2374CmpInst::create(OtherOps Op, unsigned short predicate, Value *S1, Value *S2,
2375 const std::string &Name, Instruction *InsertBefore) {
2376 if (Op == Instruction::ICmp) {
2377 return new ICmpInst(ICmpInst::Predicate(predicate), S1, S2, Name,
2378 InsertBefore);
2379 }
2380 return new FCmpInst(FCmpInst::Predicate(predicate), S1, S2, Name,
2381 InsertBefore);
2382}
2383
2384CmpInst *
2385CmpInst::create(OtherOps Op, unsigned short predicate, Value *S1, Value *S2,
2386 const std::string &Name, BasicBlock *InsertAtEnd) {
2387 if (Op == Instruction::ICmp) {
2388 return new ICmpInst(ICmpInst::Predicate(predicate), S1, S2, Name,
2389 InsertAtEnd);
2390 }
2391 return new FCmpInst(FCmpInst::Predicate(predicate), S1, S2, Name,
2392 InsertAtEnd);
2393}
2394
2395void CmpInst::swapOperands() {
2396 if (ICmpInst *IC = dyn_cast<ICmpInst>(this))
2397 IC->swapOperands();
2398 else
2399 cast<FCmpInst>(this)->swapOperands();
2400}
2401
2402bool CmpInst::isCommutative() {
2403 if (ICmpInst *IC = dyn_cast<ICmpInst>(this))
2404 return IC->isCommutative();
2405 return cast<FCmpInst>(this)->isCommutative();
2406}
2407
2408bool CmpInst::isEquality() {
2409 if (ICmpInst *IC = dyn_cast<ICmpInst>(this))
2410 return IC->isEquality();
2411 return cast<FCmpInst>(this)->isEquality();
2412}
2413
2414
2415ICmpInst::Predicate ICmpInst::getInversePredicate(Predicate pred) {
2416 switch (pred) {
2417 default:
2418 assert(!"Unknown icmp predicate!");
2419 case ICMP_EQ: return ICMP_NE;
2420 case ICMP_NE: return ICMP_EQ;
2421 case ICMP_UGT: return ICMP_ULE;
2422 case ICMP_ULT: return ICMP_UGE;
2423 case ICMP_UGE: return ICMP_ULT;
2424 case ICMP_ULE: return ICMP_UGT;
2425 case ICMP_SGT: return ICMP_SLE;
2426 case ICMP_SLT: return ICMP_SGE;
2427 case ICMP_SGE: return ICMP_SLT;
2428 case ICMP_SLE: return ICMP_SGT;
2429 }
2430}
2431
2432ICmpInst::Predicate ICmpInst::getSwappedPredicate(Predicate pred) {
2433 switch (pred) {
Reid Spencer266e42b2006-12-23 06:05:41 +00002434 default: assert(! "Unknown icmp predicate!");
Reid Spencerd9436b62006-11-20 01:22:35 +00002435 case ICMP_EQ: case ICMP_NE:
2436 return pred;
2437 case ICMP_SGT: return ICMP_SLT;
2438 case ICMP_SLT: return ICMP_SGT;
2439 case ICMP_SGE: return ICMP_SLE;
2440 case ICMP_SLE: return ICMP_SGE;
2441 case ICMP_UGT: return ICMP_ULT;
2442 case ICMP_ULT: return ICMP_UGT;
2443 case ICMP_UGE: return ICMP_ULE;
2444 case ICMP_ULE: return ICMP_UGE;
2445 }
2446}
2447
Reid Spencer266e42b2006-12-23 06:05:41 +00002448ICmpInst::Predicate ICmpInst::getSignedPredicate(Predicate pred) {
2449 switch (pred) {
2450 default: assert(! "Unknown icmp predicate!");
2451 case ICMP_EQ: case ICMP_NE:
2452 case ICMP_SGT: case ICMP_SLT: case ICMP_SGE: case ICMP_SLE:
2453 return pred;
2454 case ICMP_UGT: return ICMP_SGT;
2455 case ICMP_ULT: return ICMP_SLT;
2456 case ICMP_UGE: return ICMP_SGE;
2457 case ICMP_ULE: return ICMP_SLE;
2458 }
2459}
2460
Nick Lewycky8ea81e82008-01-28 03:48:02 +00002461ICmpInst::Predicate ICmpInst::getUnsignedPredicate(Predicate pred) {
2462 switch (pred) {
2463 default: assert(! "Unknown icmp predicate!");
2464 case ICMP_EQ: case ICMP_NE:
2465 case ICMP_UGT: case ICMP_ULT: case ICMP_UGE: case ICMP_ULE:
2466 return pred;
2467 case ICMP_SGT: return ICMP_UGT;
2468 case ICMP_SLT: return ICMP_ULT;
2469 case ICMP_SGE: return ICMP_UGE;
2470 case ICMP_SLE: return ICMP_ULE;
2471 }
2472}
2473
Reid Spencer266e42b2006-12-23 06:05:41 +00002474bool ICmpInst::isSignedPredicate(Predicate pred) {
2475 switch (pred) {
2476 default: assert(! "Unknown icmp predicate!");
2477 case ICMP_SGT: case ICMP_SLT: case ICMP_SGE: case ICMP_SLE:
2478 return true;
2479 case ICMP_EQ: case ICMP_NE: case ICMP_UGT: case ICMP_ULT:
2480 case ICMP_UGE: case ICMP_ULE:
2481 return false;
2482 }
2483}
2484
Reid Spencer0286bc12007-02-28 22:00:54 +00002485/// Initialize a set of values that all satisfy the condition with C.
2486///
2487ConstantRange
2488ICmpInst::makeConstantRange(Predicate pred, const APInt &C) {
2489 APInt Lower(C);
2490 APInt Upper(C);
2491 uint32_t BitWidth = C.getBitWidth();
2492 switch (pred) {
2493 default: assert(0 && "Invalid ICmp opcode to ConstantRange ctor!");
2494 case ICmpInst::ICMP_EQ: Upper++; break;
2495 case ICmpInst::ICMP_NE: Lower++; break;
2496 case ICmpInst::ICMP_ULT: Lower = APInt::getMinValue(BitWidth); break;
2497 case ICmpInst::ICMP_SLT: Lower = APInt::getSignedMinValue(BitWidth); break;
2498 case ICmpInst::ICMP_UGT:
2499 Lower++; Upper = APInt::getMinValue(BitWidth); // Min = Next(Max)
2500 break;
2501 case ICmpInst::ICMP_SGT:
2502 Lower++; Upper = APInt::getSignedMinValue(BitWidth); // Min = Next(Max)
2503 break;
2504 case ICmpInst::ICMP_ULE:
2505 Lower = APInt::getMinValue(BitWidth); Upper++;
2506 break;
2507 case ICmpInst::ICMP_SLE:
2508 Lower = APInt::getSignedMinValue(BitWidth); Upper++;
2509 break;
2510 case ICmpInst::ICMP_UGE:
2511 Upper = APInt::getMinValue(BitWidth); // Min = Next(Max)
2512 break;
2513 case ICmpInst::ICMP_SGE:
2514 Upper = APInt::getSignedMinValue(BitWidth); // Min = Next(Max)
2515 break;
2516 }
2517 return ConstantRange(Lower, Upper);
2518}
2519
Reid Spencerd9436b62006-11-20 01:22:35 +00002520FCmpInst::Predicate FCmpInst::getInversePredicate(Predicate pred) {
2521 switch (pred) {
2522 default:
2523 assert(!"Unknown icmp predicate!");
2524 case FCMP_OEQ: return FCMP_UNE;
2525 case FCMP_ONE: return FCMP_UEQ;
2526 case FCMP_OGT: return FCMP_ULE;
2527 case FCMP_OLT: return FCMP_UGE;
2528 case FCMP_OGE: return FCMP_ULT;
2529 case FCMP_OLE: return FCMP_UGT;
2530 case FCMP_UEQ: return FCMP_ONE;
2531 case FCMP_UNE: return FCMP_OEQ;
2532 case FCMP_UGT: return FCMP_OLE;
2533 case FCMP_ULT: return FCMP_OGE;
2534 case FCMP_UGE: return FCMP_OLT;
2535 case FCMP_ULE: return FCMP_OGT;
2536 case FCMP_ORD: return FCMP_UNO;
2537 case FCMP_UNO: return FCMP_ORD;
2538 case FCMP_TRUE: return FCMP_FALSE;
2539 case FCMP_FALSE: return FCMP_TRUE;
2540 }
2541}
2542
2543FCmpInst::Predicate FCmpInst::getSwappedPredicate(Predicate pred) {
2544 switch (pred) {
Reid Spencer266e42b2006-12-23 06:05:41 +00002545 default: assert(!"Unknown fcmp predicate!");
Reid Spencerd9436b62006-11-20 01:22:35 +00002546 case FCMP_FALSE: case FCMP_TRUE:
2547 case FCMP_OEQ: case FCMP_ONE:
2548 case FCMP_UEQ: case FCMP_UNE:
2549 case FCMP_ORD: case FCMP_UNO:
2550 return pred;
2551 case FCMP_OGT: return FCMP_OLT;
2552 case FCMP_OLT: return FCMP_OGT;
2553 case FCMP_OGE: return FCMP_OLE;
2554 case FCMP_OLE: return FCMP_OGE;
2555 case FCMP_UGT: return FCMP_ULT;
2556 case FCMP_ULT: return FCMP_UGT;
2557 case FCMP_UGE: return FCMP_ULE;
2558 case FCMP_ULE: return FCMP_UGE;
2559 }
2560}
2561
Reid Spencer266e42b2006-12-23 06:05:41 +00002562bool CmpInst::isUnsigned(unsigned short predicate) {
2563 switch (predicate) {
2564 default: return false;
2565 case ICmpInst::ICMP_ULT: case ICmpInst::ICMP_ULE: case ICmpInst::ICMP_UGT:
2566 case ICmpInst::ICMP_UGE: return true;
2567 }
2568}
2569
2570bool CmpInst::isSigned(unsigned short predicate){
2571 switch (predicate) {
2572 default: return false;
2573 case ICmpInst::ICMP_SLT: case ICmpInst::ICMP_SLE: case ICmpInst::ICMP_SGT:
2574 case ICmpInst::ICMP_SGE: return true;
2575 }
2576}
2577
2578bool CmpInst::isOrdered(unsigned short predicate) {
2579 switch (predicate) {
2580 default: return false;
2581 case FCmpInst::FCMP_OEQ: case FCmpInst::FCMP_ONE: case FCmpInst::FCMP_OGT:
2582 case FCmpInst::FCMP_OLT: case FCmpInst::FCMP_OGE: case FCmpInst::FCMP_OLE:
2583 case FCmpInst::FCMP_ORD: return true;
2584 }
2585}
2586
2587bool CmpInst::isUnordered(unsigned short predicate) {
2588 switch (predicate) {
2589 default: return false;
2590 case FCmpInst::FCMP_UEQ: case FCmpInst::FCMP_UNE: case FCmpInst::FCMP_UGT:
2591 case FCmpInst::FCMP_ULT: case FCmpInst::FCMP_UGE: case FCmpInst::FCMP_ULE:
2592 case FCmpInst::FCMP_UNO: return true;
2593 }
2594}
2595
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002596//===----------------------------------------------------------------------===//
2597// SwitchInst Implementation
2598//===----------------------------------------------------------------------===//
2599
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002600void SwitchInst::init(Value *Value, BasicBlock *Default, unsigned NumCases) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002601 assert(Value && Default);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002602 ReservedSpace = 2+NumCases*2;
2603 NumOperands = 2;
2604 OperandList = new Use[ReservedSpace];
2605
2606 OperandList[0].init(Value, this);
2607 OperandList[1].init(Default, this);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002608}
2609
Chris Lattner2195fc42007-02-24 00:55:48 +00002610/// SwitchInst ctor - Create a new switch instruction, specifying a value to
2611/// switch on and a default destination. The number of additional cases can
2612/// be specified here to make memory allocation more efficient. This
2613/// constructor can also autoinsert before another instruction.
2614SwitchInst::SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
2615 Instruction *InsertBefore)
2616 : TerminatorInst(Type::VoidTy, Instruction::Switch, 0, 0, InsertBefore) {
2617 init(Value, Default, NumCases);
2618}
2619
2620/// SwitchInst ctor - Create a new switch instruction, specifying a value to
2621/// switch on and a default destination. The number of additional cases can
2622/// be specified here to make memory allocation more efficient. This
2623/// constructor also autoinserts at the end of the specified BasicBlock.
2624SwitchInst::SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
2625 BasicBlock *InsertAtEnd)
2626 : TerminatorInst(Type::VoidTy, Instruction::Switch, 0, 0, InsertAtEnd) {
2627 init(Value, Default, NumCases);
2628}
2629
Misha Brukmanb1c93172005-04-21 23:48:37 +00002630SwitchInst::SwitchInst(const SwitchInst &SI)
Chris Lattner2195fc42007-02-24 00:55:48 +00002631 : TerminatorInst(Type::VoidTy, Instruction::Switch,
2632 new Use[SI.getNumOperands()], SI.getNumOperands()) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002633 Use *OL = OperandList, *InOL = SI.OperandList;
2634 for (unsigned i = 0, E = SI.getNumOperands(); i != E; i+=2) {
2635 OL[i].init(InOL[i], this);
2636 OL[i+1].init(InOL[i+1], this);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002637 }
2638}
2639
Gordon Henriksen14a55692007-12-10 02:14:30 +00002640SwitchInst::~SwitchInst() {
2641 delete [] OperandList;
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002642}
2643
2644
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002645/// addCase - Add an entry to the switch instruction...
2646///
Chris Lattner47ac1872005-02-24 05:32:09 +00002647void SwitchInst::addCase(ConstantInt *OnVal, BasicBlock *Dest) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002648 unsigned OpNo = NumOperands;
2649 if (OpNo+2 > ReservedSpace)
2650 resizeOperands(0); // Get more space!
2651 // Initialize some new operands.
Chris Lattnerf711f8d2005-01-29 01:05:12 +00002652 assert(OpNo+1 < ReservedSpace && "Growing didn't work!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002653 NumOperands = OpNo+2;
2654 OperandList[OpNo].init(OnVal, this);
2655 OperandList[OpNo+1].init(Dest, this);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002656}
2657
2658/// removeCase - This method removes the specified successor from the switch
2659/// instruction. Note that this cannot be used to remove the default
2660/// destination (successor #0).
2661///
2662void SwitchInst::removeCase(unsigned idx) {
2663 assert(idx != 0 && "Cannot remove the default case!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002664 assert(idx*2 < getNumOperands() && "Successor index out of range!!!");
2665
2666 unsigned NumOps = getNumOperands();
2667 Use *OL = OperandList;
2668
2669 // Move everything after this operand down.
2670 //
2671 // FIXME: we could just swap with the end of the list, then erase. However,
2672 // client might not expect this to happen. The code as it is thrashes the
2673 // use/def lists, which is kinda lame.
2674 for (unsigned i = (idx+1)*2; i != NumOps; i += 2) {
2675 OL[i-2] = OL[i];
2676 OL[i-2+1] = OL[i+1];
2677 }
2678
2679 // Nuke the last value.
2680 OL[NumOps-2].set(0);
2681 OL[NumOps-2+1].set(0);
2682 NumOperands = NumOps-2;
2683}
2684
2685/// resizeOperands - resize operands - This adjusts the length of the operands
2686/// list according to the following behavior:
2687/// 1. If NumOps == 0, grow the operand list in response to a push_back style
2688/// of operation. This grows the number of ops by 1.5 times.
2689/// 2. If NumOps > NumOperands, reserve space for NumOps operands.
2690/// 3. If NumOps == NumOperands, trim the reserved space.
2691///
2692void SwitchInst::resizeOperands(unsigned NumOps) {
2693 if (NumOps == 0) {
Chris Lattnerf711f8d2005-01-29 01:05:12 +00002694 NumOps = getNumOperands()/2*6;
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002695 } else if (NumOps*2 > NumOperands) {
2696 // No resize needed.
2697 if (ReservedSpace >= NumOps) return;
2698 } else if (NumOps == NumOperands) {
2699 if (ReservedSpace == NumOps) return;
2700 } else {
Chris Lattnerf711f8d2005-01-29 01:05:12 +00002701 return;
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002702 }
2703
2704 ReservedSpace = NumOps;
2705 Use *NewOps = new Use[NumOps];
2706 Use *OldOps = OperandList;
2707 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
2708 NewOps[i].init(OldOps[i], this);
2709 OldOps[i].set(0);
2710 }
2711 delete [] OldOps;
2712 OperandList = NewOps;
2713}
2714
2715
2716BasicBlock *SwitchInst::getSuccessorV(unsigned idx) const {
2717 return getSuccessor(idx);
2718}
2719unsigned SwitchInst::getNumSuccessorsV() const {
2720 return getNumSuccessors();
2721}
2722void SwitchInst::setSuccessorV(unsigned idx, BasicBlock *B) {
2723 setSuccessor(idx, B);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002724}
Chris Lattnerf22be932004-10-15 23:52:53 +00002725
Devang Patel295711f2008-02-19 22:15:16 +00002726//===----------------------------------------------------------------------===//
2727// GetResultInst Implementation
2728//===----------------------------------------------------------------------===//
2729
Devang Patel666d4512008-02-20 19:10:47 +00002730GetResultInst::GetResultInst(Value *Aggregate, unsigned Index,
Devang Patel295711f2008-02-19 22:15:16 +00002731 const std::string &Name,
2732 Instruction *InsertBef)
Devang Pateldcad9da2008-02-20 19:26:55 +00002733 : Instruction(cast<StructType>(Aggregate->getType())->getElementType(Index),
Devang Patel666d4512008-02-20 19:10:47 +00002734 GetResult, &Aggr, 1, InsertBef) {
2735 assert(isValidOperands(Aggregate, Index) && "Invalid GetResultInst operands!");
2736 Aggr.init(Aggregate, this);
2737 Idx = Index;
Devang Patel295711f2008-02-19 22:15:16 +00002738 setName(Name);
2739}
2740
Devang Patel666d4512008-02-20 19:10:47 +00002741bool GetResultInst::isValidOperands(const Value *Aggregate, unsigned Index) {
2742 if (!Aggregate)
Devang Patel295711f2008-02-19 22:15:16 +00002743 return false;
Devang Patel666d4512008-02-20 19:10:47 +00002744
Devang Patelcf193b82008-02-20 19:39:41 +00002745 if (const StructType *STy = dyn_cast<StructType>(Aggregate->getType())) {
2746 unsigned NumElements = STy->getNumElements();
2747 if (Index >= NumElements)
2748 return false;
2749
2750 // getresult aggregate value's element types are restricted to
2751 // avoid nested aggregates.
2752 for (unsigned i = 0; i < NumElements; ++i)
2753 if (!STy->getElementType(i)->isFirstClassType())
2754 return false;
2755
2756 // Otherwise, Aggregate is valid.
2757 return true;
2758 }
Devang Patel666d4512008-02-20 19:10:47 +00002759 return false;
Devang Patel295711f2008-02-19 22:15:16 +00002760}
2761
Chris Lattnerf22be932004-10-15 23:52:53 +00002762
2763// Define these methods here so vtables don't get emitted into every translation
2764// unit that uses these classes.
2765
2766GetElementPtrInst *GetElementPtrInst::clone() const {
2767 return new GetElementPtrInst(*this);
2768}
2769
2770BinaryOperator *BinaryOperator::clone() const {
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002771 return create(getOpcode(), Ops[0], Ops[1]);
Chris Lattnerf22be932004-10-15 23:52:53 +00002772}
2773
Chris Lattner0b490b02007-08-24 20:48:18 +00002774FCmpInst* FCmpInst::clone() const {
2775 return new FCmpInst(getPredicate(), Ops[0], Ops[1]);
2776}
2777ICmpInst* ICmpInst::clone() const {
2778 return new ICmpInst(getPredicate(), Ops[0], Ops[1]);
Reid Spencerd9436b62006-11-20 01:22:35 +00002779}
2780
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002781MallocInst *MallocInst::clone() const { return new MallocInst(*this); }
2782AllocaInst *AllocaInst::clone() const { return new AllocaInst(*this); }
2783FreeInst *FreeInst::clone() const { return new FreeInst(getOperand(0)); }
2784LoadInst *LoadInst::clone() const { return new LoadInst(*this); }
2785StoreInst *StoreInst::clone() const { return new StoreInst(*this); }
2786CastInst *TruncInst::clone() const { return new TruncInst(*this); }
2787CastInst *ZExtInst::clone() const { return new ZExtInst(*this); }
2788CastInst *SExtInst::clone() const { return new SExtInst(*this); }
2789CastInst *FPTruncInst::clone() const { return new FPTruncInst(*this); }
2790CastInst *FPExtInst::clone() const { return new FPExtInst(*this); }
2791CastInst *UIToFPInst::clone() const { return new UIToFPInst(*this); }
2792CastInst *SIToFPInst::clone() const { return new SIToFPInst(*this); }
2793CastInst *FPToUIInst::clone() const { return new FPToUIInst(*this); }
2794CastInst *FPToSIInst::clone() const { return new FPToSIInst(*this); }
2795CastInst *PtrToIntInst::clone() const { return new PtrToIntInst(*this); }
2796CastInst *IntToPtrInst::clone() const { return new IntToPtrInst(*this); }
2797CastInst *BitCastInst::clone() const { return new BitCastInst(*this); }
2798CallInst *CallInst::clone() const { return new CallInst(*this); }
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002799SelectInst *SelectInst::clone() const { return new SelectInst(*this); }
2800VAArgInst *VAArgInst::clone() const { return new VAArgInst(*this); }
2801
Chris Lattnerbbe0a422006-04-08 01:18:18 +00002802ExtractElementInst *ExtractElementInst::clone() const {
2803 return new ExtractElementInst(*this);
2804}
2805InsertElementInst *InsertElementInst::clone() const {
2806 return new InsertElementInst(*this);
2807}
2808ShuffleVectorInst *ShuffleVectorInst::clone() const {
2809 return new ShuffleVectorInst(*this);
2810}
Chris Lattnerf22be932004-10-15 23:52:53 +00002811PHINode *PHINode::clone() const { return new PHINode(*this); }
2812ReturnInst *ReturnInst::clone() const { return new ReturnInst(*this); }
2813BranchInst *BranchInst::clone() const { return new BranchInst(*this); }
2814SwitchInst *SwitchInst::clone() const { return new SwitchInst(*this); }
2815InvokeInst *InvokeInst::clone() const { return new InvokeInst(*this); }
2816UnwindInst *UnwindInst::clone() const { return new UnwindInst(); }
Chris Lattner5e0b9f22004-10-16 18:08:06 +00002817UnreachableInst *UnreachableInst::clone() const { return new UnreachableInst();}
Devang Patel295711f2008-02-19 22:15:16 +00002818GetResultInst *GetResultInst::clone() const { return new GetResultInst(*this); }