blob: f3d15cb2b88be1f051ac110f12c0d85869292800 [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
Devang Pateladd58652009-09-23 18:32:25 +000015#include "LLVMContextImpl.h"
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +000016#include "llvm/Constants.h"
17#include "llvm/DerivedTypes.h"
18#include "llvm/Function.h"
19#include "llvm/Instructions.h"
Evan Cheng1d9d4bd2009-09-10 04:36:43 +000020#include "llvm/Module.h"
Dan Gohmand2a251f2009-07-17 21:33:58 +000021#include "llvm/Operator.h"
Dan Gohman22571482009-09-03 15:34:35 +000022#include "llvm/Analysis/Dominators.h"
Torok Edwin6dd27302009-07-08 18:01:40 +000023#include "llvm/Support/ErrorHandling.h"
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +000024#include "llvm/Support/CallSite.h"
Reid Spencer0286bc12007-02-28 22:00:54 +000025#include "llvm/Support/ConstantRange.h"
Christopher Lamb84485702007-04-22 19:24:39 +000026#include "llvm/Support/MathExtras.h"
Devang Pateladd58652009-09-23 18:32:25 +000027
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +000028using namespace llvm;
29
Chris Lattner3e13b8c2008-01-02 23:42:30 +000030//===----------------------------------------------------------------------===//
31// CallSite Class
32//===----------------------------------------------------------------------===//
33
Gabor Greif1b9921a2009-01-11 22:33:22 +000034#define CALLSITE_DELEGATE_GETTER(METHOD) \
35 Instruction *II(getInstruction()); \
36 return isCall() \
37 ? cast<CallInst>(II)->METHOD \
38 : cast<InvokeInst>(II)->METHOD
39
40#define CALLSITE_DELEGATE_SETTER(METHOD) \
41 Instruction *II(getInstruction()); \
42 if (isCall()) \
43 cast<CallInst>(II)->METHOD; \
44 else \
45 cast<InvokeInst>(II)->METHOD
46
Duncan Sands85fab3a2008-02-18 17:32:13 +000047CallSite::CallSite(Instruction *C) {
48 assert((isa<CallInst>(C) || isa<InvokeInst>(C)) && "Not a call!");
Gabor Greif1b9921a2009-01-11 22:33:22 +000049 I.setPointer(C);
50 I.setInt(isa<CallInst>(C));
Duncan Sands85fab3a2008-02-18 17:32:13 +000051}
Sandeep Patel68c5f472009-09-02 08:44:58 +000052CallingConv::ID CallSite::getCallingConv() const {
Gabor Greif1b9921a2009-01-11 22:33:22 +000053 CALLSITE_DELEGATE_GETTER(getCallingConv());
Chris Lattnerf7b6d312005-05-06 20:26:43 +000054}
Sandeep Patel68c5f472009-09-02 08:44:58 +000055void CallSite::setCallingConv(CallingConv::ID CC) {
Gabor Greif1b9921a2009-01-11 22:33:22 +000056 CALLSITE_DELEGATE_SETTER(setCallingConv(CC));
Chris Lattnerf7b6d312005-05-06 20:26:43 +000057}
Devang Patel4c758ea2008-09-25 21:00:45 +000058const AttrListPtr &CallSite::getAttributes() const {
Gabor Greif1b9921a2009-01-11 22:33:22 +000059 CALLSITE_DELEGATE_GETTER(getAttributes());
Duncan Sandsad0ea2d2007-11-27 13:23:08 +000060}
Devang Patel4c758ea2008-09-25 21:00:45 +000061void CallSite::setAttributes(const AttrListPtr &PAL) {
Gabor Greif1b9921a2009-01-11 22:33:22 +000062 CALLSITE_DELEGATE_SETTER(setAttributes(PAL));
Duncan Sandsad0ea2d2007-11-27 13:23:08 +000063}
Devang Patelba3fa6c2008-09-23 23:03:40 +000064bool CallSite::paramHasAttr(uint16_t i, Attributes attr) const {
Gabor Greif1b9921a2009-01-11 22:33:22 +000065 CALLSITE_DELEGATE_GETTER(paramHasAttr(i, attr));
Duncan Sands5208d1a2007-11-28 17:07:01 +000066}
Dale Johanneseneabc5f32008-02-22 17:49:45 +000067uint16_t CallSite::getParamAlignment(uint16_t i) const {
Gabor Greif1b9921a2009-01-11 22:33:22 +000068 CALLSITE_DELEGATE_GETTER(getParamAlignment(i));
Dale Johanneseneabc5f32008-02-22 17:49:45 +000069}
Duncan Sands38ef3a82007-12-03 20:06:50 +000070bool CallSite::doesNotAccessMemory() const {
Gabor Greif1b9921a2009-01-11 22:33:22 +000071 CALLSITE_DELEGATE_GETTER(doesNotAccessMemory());
Duncan Sands38ef3a82007-12-03 20:06:50 +000072}
Duncan Sands78c88722008-07-08 08:38:44 +000073void CallSite::setDoesNotAccessMemory(bool doesNotAccessMemory) {
Gabor Greif1b9921a2009-01-11 22:33:22 +000074 CALLSITE_DELEGATE_SETTER(setDoesNotAccessMemory(doesNotAccessMemory));
Duncan Sands78c88722008-07-08 08:38:44 +000075}
Duncan Sands38ef3a82007-12-03 20:06:50 +000076bool CallSite::onlyReadsMemory() const {
Gabor Greif1b9921a2009-01-11 22:33:22 +000077 CALLSITE_DELEGATE_GETTER(onlyReadsMemory());
Duncan Sands38ef3a82007-12-03 20:06:50 +000078}
Duncan Sands78c88722008-07-08 08:38:44 +000079void CallSite::setOnlyReadsMemory(bool onlyReadsMemory) {
Gabor Greif1b9921a2009-01-11 22:33:22 +000080 CALLSITE_DELEGATE_SETTER(setOnlyReadsMemory(onlyReadsMemory));
Duncan Sands78c88722008-07-08 08:38:44 +000081}
82bool CallSite::doesNotReturn() const {
Gabor Greif1b9921a2009-01-11 22:33:22 +000083 CALLSITE_DELEGATE_GETTER(doesNotReturn());
Duncan Sands78c88722008-07-08 08:38:44 +000084}
85void CallSite::setDoesNotReturn(bool doesNotReturn) {
Gabor Greif1b9921a2009-01-11 22:33:22 +000086 CALLSITE_DELEGATE_SETTER(setDoesNotReturn(doesNotReturn));
Duncan Sands78c88722008-07-08 08:38:44 +000087}
Duncan Sands3353ed02007-12-18 09:59:50 +000088bool CallSite::doesNotThrow() const {
Gabor Greif1b9921a2009-01-11 22:33:22 +000089 CALLSITE_DELEGATE_GETTER(doesNotThrow());
Duncan Sands8e4847e2007-12-16 15:51:49 +000090}
Duncan Sandsaa31b922007-12-19 21:13:37 +000091void CallSite::setDoesNotThrow(bool doesNotThrow) {
Gabor Greif1b9921a2009-01-11 22:33:22 +000092 CALLSITE_DELEGATE_SETTER(setDoesNotThrow(doesNotThrow));
Duncan Sandsaa31b922007-12-19 21:13:37 +000093}
Chris Lattnerf7b6d312005-05-06 20:26:43 +000094
Matthijs Kooijmanb0dffd62008-06-05 08:04:58 +000095bool CallSite::hasArgument(const Value *Arg) const {
Matthijs Kooijmand901e582008-06-04 16:31:12 +000096 for (arg_iterator AI = this->arg_begin(), E = this->arg_end(); AI != E; ++AI)
97 if (AI->get() == Arg)
98 return true;
99 return false;
100}
101
Gabor Greif1b9921a2009-01-11 22:33:22 +0000102#undef CALLSITE_DELEGATE_GETTER
103#undef CALLSITE_DELEGATE_SETTER
104
Gordon Henriksen14a55692007-12-10 02:14:30 +0000105//===----------------------------------------------------------------------===//
106// TerminatorInst Class
107//===----------------------------------------------------------------------===//
108
109// Out of line virtual method, so the vtable, etc has a home.
110TerminatorInst::~TerminatorInst() {
111}
112
Gabor Greiff6caff662008-05-10 08:32:32 +0000113//===----------------------------------------------------------------------===//
114// UnaryInstruction Class
115//===----------------------------------------------------------------------===//
116
Gordon Henriksen14a55692007-12-10 02:14:30 +0000117// Out of line virtual method, so the vtable, etc has a home.
118UnaryInstruction::~UnaryInstruction() {
119}
120
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000121//===----------------------------------------------------------------------===//
Chris Lattner88107952008-12-29 00:12:50 +0000122// SelectInst Class
123//===----------------------------------------------------------------------===//
124
125/// areInvalidOperands - Return a string if the specified operands are invalid
126/// for a select operation, otherwise return null.
127const char *SelectInst::areInvalidOperands(Value *Op0, Value *Op1, Value *Op2) {
128 if (Op1->getType() != Op2->getType())
129 return "both values to select must have same type";
130
131 if (const VectorType *VT = dyn_cast<VectorType>(Op0->getType())) {
132 // Vector select.
Owen Anderson55f1c092009-08-13 21:58:54 +0000133 if (VT->getElementType() != Type::getInt1Ty(Op0->getContext()))
Chris Lattner88107952008-12-29 00:12:50 +0000134 return "vector select condition element type must be i1";
135 const VectorType *ET = dyn_cast<VectorType>(Op1->getType());
136 if (ET == 0)
137 return "selected values for vector select must be vectors";
138 if (ET->getNumElements() != VT->getNumElements())
139 return "vector select requires selected vectors to have "
140 "the same vector length as select condition";
Owen Anderson55f1c092009-08-13 21:58:54 +0000141 } else if (Op0->getType() != Type::getInt1Ty(Op0->getContext())) {
Chris Lattner88107952008-12-29 00:12:50 +0000142 return "select condition must be i1 or <n x i1>";
143 }
144 return 0;
145}
146
147
148//===----------------------------------------------------------------------===//
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000149// PHINode Class
150//===----------------------------------------------------------------------===//
151
152PHINode::PHINode(const PHINode &PN)
153 : Instruction(PN.getType(), Instruction::PHI,
Gabor Greiff6caff662008-05-10 08:32:32 +0000154 allocHungoffUses(PN.getNumOperands()), PN.getNumOperands()),
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000155 ReservedSpace(PN.getNumOperands()) {
156 Use *OL = OperandList;
157 for (unsigned i = 0, e = PN.getNumOperands(); i != e; i+=2) {
Gabor Greif2d3024d2008-05-26 21:33:52 +0000158 OL[i] = PN.getOperand(i);
159 OL[i+1] = PN.getOperand(i+1);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000160 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000161 SubclassOptionalData = PN.SubclassOptionalData;
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000162}
163
Gordon Henriksen14a55692007-12-10 02:14:30 +0000164PHINode::~PHINode() {
Chris Lattner7d6aac82008-06-16 04:02:40 +0000165 if (OperandList)
166 dropHungoffUses(OperandList);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000167}
168
169// removeIncomingValue - Remove an incoming value. This is useful if a
170// predecessor basic block is deleted.
171Value *PHINode::removeIncomingValue(unsigned Idx, bool DeletePHIIfEmpty) {
172 unsigned NumOps = getNumOperands();
173 Use *OL = OperandList;
174 assert(Idx*2 < NumOps && "BB not in PHI node!");
175 Value *Removed = OL[Idx*2];
176
177 // Move everything after this operand down.
178 //
179 // FIXME: we could just swap with the end of the list, then erase. However,
180 // client might not expect this to happen. The code as it is thrashes the
181 // use/def lists, which is kinda lame.
182 for (unsigned i = (Idx+1)*2; i != NumOps; i += 2) {
183 OL[i-2] = OL[i];
184 OL[i-2+1] = OL[i+1];
185 }
186
187 // Nuke the last value.
188 OL[NumOps-2].set(0);
189 OL[NumOps-2+1].set(0);
190 NumOperands = NumOps-2;
191
192 // If the PHI node is dead, because it has zero entries, nuke it now.
193 if (NumOps == 2 && DeletePHIIfEmpty) {
194 // If anyone is using this PHI, make them use a dummy value instead...
Owen Andersonb292b8c2009-07-30 23:03:37 +0000195 replaceAllUsesWith(UndefValue::get(getType()));
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000196 eraseFromParent();
197 }
198 return Removed;
199}
200
201/// resizeOperands - resize operands - This adjusts the length of the operands
202/// list according to the following behavior:
203/// 1. If NumOps == 0, grow the operand list in response to a push_back style
204/// of operation. This grows the number of ops by 1.5 times.
205/// 2. If NumOps > NumOperands, reserve space for NumOps operands.
206/// 3. If NumOps == NumOperands, trim the reserved space.
207///
208void PHINode::resizeOperands(unsigned NumOps) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000209 unsigned e = getNumOperands();
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000210 if (NumOps == 0) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000211 NumOps = e*3/2;
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000212 if (NumOps < 4) NumOps = 4; // 4 op PHI nodes are VERY common.
213 } else if (NumOps*2 > NumOperands) {
214 // No resize needed.
215 if (ReservedSpace >= NumOps) return;
216 } else if (NumOps == NumOperands) {
217 if (ReservedSpace == NumOps) return;
218 } else {
Misha Brukmanb1c93172005-04-21 23:48:37 +0000219 return;
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000220 }
221
222 ReservedSpace = NumOps;
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000223 Use *OldOps = OperandList;
Gabor Greiff6caff662008-05-10 08:32:32 +0000224 Use *NewOps = allocHungoffUses(NumOps);
Dan Gohman031f0bb2008-06-23 16:45:24 +0000225 std::copy(OldOps, OldOps + e, NewOps);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000226 OperandList = NewOps;
Gabor Greiff6caff662008-05-10 08:32:32 +0000227 if (OldOps) Use::zap(OldOps, OldOps + e, true);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000228}
229
Nate Begemanb3923212005-08-04 23:24:19 +0000230/// hasConstantValue - If the specified PHI node always merges together the same
231/// value, return the value, otherwise return null.
232///
Dan Gohman22571482009-09-03 15:34:35 +0000233/// If the PHI has undef operands, but all the rest of the operands are
234/// some unique value, return that value if it can be proved that the
235/// value dominates the PHI. If DT is null, use a conservative check,
236/// otherwise use DT to test for dominance.
237///
238Value *PHINode::hasConstantValue(DominatorTree *DT) const {
Chris Lattner7d08da62009-09-21 22:27:34 +0000239 // If the PHI node only has one incoming value, eliminate the PHI node.
Anton Korobeynikov579f0712008-02-20 11:08:44 +0000240 if (getNumIncomingValues() == 1) {
Chris Lattner6e709c12005-08-05 15:37:31 +0000241 if (getIncomingValue(0) != this) // not X = phi X
242 return getIncomingValue(0);
Chris Lattner7d08da62009-09-21 22:27:34 +0000243 return UndefValue::get(getType()); // Self cycle is dead.
Anton Korobeynikov579f0712008-02-20 11:08:44 +0000244 }
Chris Lattner6e709c12005-08-05 15:37:31 +0000245
Nate Begemanb3923212005-08-04 23:24:19 +0000246 // Otherwise if all of the incoming values are the same for the PHI, replace
247 // the PHI node with the incoming value.
248 //
249 Value *InVal = 0;
Chris Lattnerbcd8d2c2005-08-05 01:00:58 +0000250 bool HasUndefInput = false;
Nate Begemanb3923212005-08-04 23:24:19 +0000251 for (unsigned i = 0, e = getNumIncomingValues(); i != e; ++i)
Anton Korobeynikov579f0712008-02-20 11:08:44 +0000252 if (isa<UndefValue>(getIncomingValue(i))) {
Chris Lattnerbcd8d2c2005-08-05 01:00:58 +0000253 HasUndefInput = true;
Anton Korobeynikov579f0712008-02-20 11:08:44 +0000254 } else if (getIncomingValue(i) != this) { // Not the PHI node itself...
Nate Begemanb3923212005-08-04 23:24:19 +0000255 if (InVal && getIncomingValue(i) != InVal)
256 return 0; // Not the same, bail out.
Chris Lattner7d08da62009-09-21 22:27:34 +0000257 InVal = getIncomingValue(i);
Anton Korobeynikov579f0712008-02-20 11:08:44 +0000258 }
Nate Begemanb3923212005-08-04 23:24:19 +0000259
260 // The only case that could cause InVal to be null is if we have a PHI node
261 // that only has entries for itself. In this case, there is no entry into the
262 // loop, so kill the PHI.
263 //
Owen Andersonb292b8c2009-07-30 23:03:37 +0000264 if (InVal == 0) InVal = UndefValue::get(getType());
Nate Begemanb3923212005-08-04 23:24:19 +0000265
Chris Lattnerbcd8d2c2005-08-05 01:00:58 +0000266 // If we have a PHI node like phi(X, undef, X), where X is defined by some
267 // instruction, we cannot always return X as the result of the PHI node. Only
268 // do this if X is not an instruction (thus it must dominate the PHI block),
269 // or if the client is prepared to deal with this possibility.
Chris Lattner7d08da62009-09-21 22:27:34 +0000270 if (!HasUndefInput || !isa<Instruction>(InVal))
271 return InVal;
272
273 Instruction *IV = cast<Instruction>(InVal);
274 if (DT) {
275 // We have a DominatorTree. Do a precise test.
276 if (!DT->dominates(IV, this))
277 return 0;
278 } else {
279 // If it is in the entry block, it obviously dominates everything.
280 if (IV->getParent() != &IV->getParent()->getParent()->getEntryBlock() ||
281 isa<InvokeInst>(IV))
282 return 0; // Cannot guarantee that InVal dominates this PHINode.
283 }
Chris Lattnerbcd8d2c2005-08-05 01:00:58 +0000284
Nate Begemanb3923212005-08-04 23:24:19 +0000285 // All of the incoming values are the same, return the value now.
286 return InVal;
287}
288
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000289
290//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000291// CallInst Implementation
292//===----------------------------------------------------------------------===//
293
Gordon Henriksen14a55692007-12-10 02:14:30 +0000294CallInst::~CallInst() {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000295}
296
Chris Lattner054ba2c2007-02-13 00:58:44 +0000297void CallInst::init(Value *Func, Value* const *Params, unsigned NumParams) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000298 assert(NumOperands == NumParams+1 && "NumOperands not set up?");
299 Use *OL = OperandList;
Gabor Greif2d3024d2008-05-26 21:33:52 +0000300 OL[0] = Func;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000301
Misha Brukmanb1c93172005-04-21 23:48:37 +0000302 const FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000303 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000304 FTy = FTy; // silence warning.
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000305
Chris Lattner054ba2c2007-02-13 00:58:44 +0000306 assert((NumParams == FTy->getNumParams() ||
307 (FTy->isVarArg() && NumParams > FTy->getNumParams())) &&
Chris Lattner667a0562006-05-03 00:48:22 +0000308 "Calling a function with bad signature!");
Chris Lattner054ba2c2007-02-13 00:58:44 +0000309 for (unsigned i = 0; i != NumParams; ++i) {
Chris Lattner667a0562006-05-03 00:48:22 +0000310 assert((i >= FTy->getNumParams() ||
311 FTy->getParamType(i) == Params[i]->getType()) &&
312 "Calling a function with a bad signature!");
Gabor Greif2d3024d2008-05-26 21:33:52 +0000313 OL[i+1] = Params[i];
Chris Lattner667a0562006-05-03 00:48:22 +0000314 }
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000315}
316
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000317void CallInst::init(Value *Func, Value *Actual1, Value *Actual2) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000318 assert(NumOperands == 3 && "NumOperands not set up?");
319 Use *OL = OperandList;
Gabor Greif2d3024d2008-05-26 21:33:52 +0000320 OL[0] = Func;
321 OL[1] = Actual1;
322 OL[2] = Actual2;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000323
324 const FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000325 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000326 FTy = FTy; // silence warning.
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000327
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000328 assert((FTy->getNumParams() == 2 ||
Chris Lattner667a0562006-05-03 00:48:22 +0000329 (FTy->isVarArg() && FTy->getNumParams() < 2)) &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000330 "Calling a function with bad signature");
Chris Lattner667a0562006-05-03 00:48:22 +0000331 assert((0 >= FTy->getNumParams() ||
332 FTy->getParamType(0) == Actual1->getType()) &&
333 "Calling a function with a bad signature!");
334 assert((1 >= FTy->getNumParams() ||
335 FTy->getParamType(1) == Actual2->getType()) &&
336 "Calling a function with a bad signature!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000337}
338
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000339void CallInst::init(Value *Func, Value *Actual) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000340 assert(NumOperands == 2 && "NumOperands not set up?");
341 Use *OL = OperandList;
Gabor Greif2d3024d2008-05-26 21:33:52 +0000342 OL[0] = Func;
343 OL[1] = Actual;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000344
345 const FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000346 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000347 FTy = FTy; // silence warning.
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000348
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000349 assert((FTy->getNumParams() == 1 ||
350 (FTy->isVarArg() && FTy->getNumParams() == 0)) &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000351 "Calling a function with bad signature");
Chris Lattner667a0562006-05-03 00:48:22 +0000352 assert((0 == FTy->getNumParams() ||
353 FTy->getParamType(0) == Actual->getType()) &&
354 "Calling a function with a bad signature!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000355}
356
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000357void CallInst::init(Value *Func) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000358 assert(NumOperands == 1 && "NumOperands not set up?");
359 Use *OL = OperandList;
Gabor Greif2d3024d2008-05-26 21:33:52 +0000360 OL[0] = Func;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000361
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000362 const FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000363 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000364 FTy = FTy; // silence warning.
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000365
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000366 assert(FTy->getNumParams() == 0 && "Calling a function with bad signature");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000367}
368
Daniel Dunbar4975db62009-07-25 04:41:11 +0000369CallInst::CallInst(Value *Func, Value* Actual, const Twine &Name,
Chris Lattner2195fc42007-02-24 00:55:48 +0000370 Instruction *InsertBefore)
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000371 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
372 ->getElementType())->getReturnType(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000373 Instruction::Call,
374 OperandTraits<CallInst>::op_end(this) - 2,
375 2, InsertBefore) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000376 init(Func, Actual);
Chris Lattner2195fc42007-02-24 00:55:48 +0000377 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000378}
379
Daniel Dunbar4975db62009-07-25 04:41:11 +0000380CallInst::CallInst(Value *Func, Value* Actual, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000381 BasicBlock *InsertAtEnd)
382 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
383 ->getElementType())->getReturnType(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000384 Instruction::Call,
385 OperandTraits<CallInst>::op_end(this) - 2,
386 2, InsertAtEnd) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000387 init(Func, Actual);
Chris Lattner2195fc42007-02-24 00:55:48 +0000388 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000389}
Daniel Dunbar4975db62009-07-25 04:41:11 +0000390CallInst::CallInst(Value *Func, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000391 Instruction *InsertBefore)
392 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
393 ->getElementType())->getReturnType(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000394 Instruction::Call,
395 OperandTraits<CallInst>::op_end(this) - 1,
396 1, InsertBefore) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000397 init(Func);
Chris Lattner2195fc42007-02-24 00:55:48 +0000398 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000399}
400
Daniel Dunbar4975db62009-07-25 04:41:11 +0000401CallInst::CallInst(Value *Func, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000402 BasicBlock *InsertAtEnd)
403 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
404 ->getElementType())->getReturnType(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000405 Instruction::Call,
406 OperandTraits<CallInst>::op_end(this) - 1,
407 1, InsertAtEnd) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000408 init(Func);
Chris Lattner2195fc42007-02-24 00:55:48 +0000409 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000410}
411
Misha Brukmanb1c93172005-04-21 23:48:37 +0000412CallInst::CallInst(const CallInst &CI)
Gabor Greiff6caff662008-05-10 08:32:32 +0000413 : Instruction(CI.getType(), Instruction::Call,
414 OperandTraits<CallInst>::op_end(this) - CI.getNumOperands(),
Chris Lattner8a923e72008-03-12 17:45:29 +0000415 CI.getNumOperands()) {
Devang Patel4c758ea2008-09-25 21:00:45 +0000416 setAttributes(CI.getAttributes());
Chris Lattnerf7b6d312005-05-06 20:26:43 +0000417 SubclassData = CI.SubclassData;
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000418 Use *OL = OperandList;
419 Use *InOL = CI.OperandList;
420 for (unsigned i = 0, e = CI.getNumOperands(); i != e; ++i)
Gabor Greif2d3024d2008-05-26 21:33:52 +0000421 OL[i] = InOL[i];
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000422 SubclassOptionalData = CI.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000423}
424
Devang Patel4c758ea2008-09-25 21:00:45 +0000425void CallInst::addAttribute(unsigned i, Attributes attr) {
426 AttrListPtr PAL = getAttributes();
Eric Christopher901b1a72008-05-16 20:39:43 +0000427 PAL = PAL.addAttr(i, attr);
Devang Patel4c758ea2008-09-25 21:00:45 +0000428 setAttributes(PAL);
Eric Christopher901b1a72008-05-16 20:39:43 +0000429}
430
Devang Patel4c758ea2008-09-25 21:00:45 +0000431void CallInst::removeAttribute(unsigned i, Attributes attr) {
432 AttrListPtr PAL = getAttributes();
Duncan Sands78c88722008-07-08 08:38:44 +0000433 PAL = PAL.removeAttr(i, attr);
Devang Patel4c758ea2008-09-25 21:00:45 +0000434 setAttributes(PAL);
Duncan Sands78c88722008-07-08 08:38:44 +0000435}
436
Devang Patelba3fa6c2008-09-23 23:03:40 +0000437bool CallInst::paramHasAttr(unsigned i, Attributes attr) const {
Devang Patel4c758ea2008-09-25 21:00:45 +0000438 if (AttributeList.paramHasAttr(i, attr))
Duncan Sands5208d1a2007-11-28 17:07:01 +0000439 return true;
Duncan Sands8dfcd592007-11-29 08:30:15 +0000440 if (const Function *F = getCalledFunction())
Dale Johannesen89268bc2008-02-19 21:38:47 +0000441 return F->paramHasAttr(i, attr);
Duncan Sands8dfcd592007-11-29 08:30:15 +0000442 return false;
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000443}
444
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000445/// IsConstantOne - Return true only if val is constant int 1
446static bool IsConstantOne(Value *val) {
447 assert(val && "IsConstantOne does not work with NULL val");
448 return isa<ConstantInt>(val) && cast<ConstantInt>(val)->isOne();
449}
450
451static Value *checkArraySize(Value *Amt, const Type *IntPtrTy) {
452 if (!Amt)
453 Amt = ConstantInt::get(IntPtrTy, 1);
454 else {
455 assert(!isa<BasicBlock>(Amt) &&
456 "Passed basic block into malloc size parameter! Use other ctor");
457 assert(Amt->getType() == IntPtrTy &&
458 "Malloc array size is not an intptr!");
459 }
460 return Amt;
461}
462
463static Value *createMalloc(Instruction *InsertBefore, BasicBlock *InsertAtEnd,
Victor Hernandez788eaab2009-09-18 19:20:02 +0000464 const Type *IntPtrTy, const Type *AllocTy,
Victor Hernandeze6ff7662009-09-25 18:11:52 +0000465 Value *ArraySize, const Twine &NameStr) {
Benjamin Kramer4bf4e862009-09-10 11:31:39 +0000466 assert(((!InsertBefore && InsertAtEnd) || (InsertBefore && !InsertAtEnd)) &&
Victor Hernandez788eaab2009-09-18 19:20:02 +0000467 "createMalloc needs either InsertBefore or InsertAtEnd");
468
469 // malloc(type) becomes:
470 // bitcast (i8* malloc(typeSize)) to type*
471 // malloc(type, arraySize) becomes:
472 // bitcast (i8 *malloc(typeSize*arraySize)) to type*
473 Value *AllocSize = ConstantExpr::getSizeOf(AllocTy);
474 AllocSize = ConstantExpr::getTruncOrBitCast(cast<Constant>(AllocSize),
475 IntPtrTy);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000476 ArraySize = checkArraySize(ArraySize, IntPtrTy);
477
Benjamin Kramer4bf4e862009-09-10 11:31:39 +0000478 if (!IsConstantOne(ArraySize)) {
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000479 if (IsConstantOne(AllocSize)) {
480 AllocSize = ArraySize; // Operand * 1 = Operand
481 } else if (Constant *CO = dyn_cast<Constant>(ArraySize)) {
482 Constant *Scale = ConstantExpr::getIntegerCast(CO, IntPtrTy,
483 false /*ZExt*/);
484 // Malloc arg is constant product of type size and array size
485 AllocSize = ConstantExpr::getMul(Scale, cast<Constant>(AllocSize));
486 } else {
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000487 // Multiply type size by the array size...
488 if (InsertBefore)
Victor Hernandez788eaab2009-09-18 19:20:02 +0000489 AllocSize = BinaryOperator::CreateMul(ArraySize, AllocSize,
490 "mallocsize", InsertBefore);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000491 else
Victor Hernandez788eaab2009-09-18 19:20:02 +0000492 AllocSize = BinaryOperator::CreateMul(ArraySize, AllocSize,
493 "mallocsize", InsertAtEnd);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000494 }
Benjamin Kramer4bf4e862009-09-10 11:31:39 +0000495 }
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000496
Victor Hernandez788eaab2009-09-18 19:20:02 +0000497 assert(AllocSize->getType() == IntPtrTy && "malloc arg is wrong size");
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000498 // Create the call to Malloc.
499 BasicBlock* BB = InsertBefore ? InsertBefore->getParent() : InsertAtEnd;
500 Module* M = BB->getParent()->getParent();
Duncan Sands9ed7b162009-10-06 15:40:36 +0000501 const Type *BPTy = Type::getInt8PtrTy(BB->getContext());
Victor Hernandeze6ff7662009-09-25 18:11:52 +0000502 // prototype malloc as "void *malloc(size_t)"
503 Constant *MallocF = M->getOrInsertFunction("malloc", BPTy, IntPtrTy, NULL);
504 if (!cast<Function>(MallocF)->doesNotAlias(0))
505 cast<Function>(MallocF)->setDoesNotAlias(0);
Victor Hernandez788eaab2009-09-18 19:20:02 +0000506 const PointerType *AllocPtrType = PointerType::getUnqual(AllocTy);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000507 CallInst *MCall = NULL;
Victor Hernandez788eaab2009-09-18 19:20:02 +0000508 Value *MCast = NULL;
509 if (InsertBefore) {
510 MCall = CallInst::Create(MallocF, AllocSize, "malloccall", InsertBefore);
511 // Create a cast instruction to convert to the right type...
512 MCast = new BitCastInst(MCall, AllocPtrType, NameStr, InsertBefore);
513 } else {
514 MCall = CallInst::Create(MallocF, AllocSize, "malloccall", InsertAtEnd);
515 // Create a cast instruction to convert to the right type...
516 MCast = new BitCastInst(MCall, AllocPtrType, NameStr);
517 }
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000518 MCall->setTailCall();
Daniel Dunbarb9189002009-09-11 22:07:31 +0000519 assert(MCall->getType() != Type::getVoidTy(BB->getContext()) &&
520 "Malloc has void return type");
Victor Hernandez788eaab2009-09-18 19:20:02 +0000521
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000522 return MCast;
523}
524
525/// CreateMalloc - Generate the IR for a call to malloc:
526/// 1. Compute the malloc call's argument as the specified type's size,
527/// possibly multiplied by the array size if the array size is not
528/// constant 1.
529/// 2. Call malloc with that argument.
530/// 3. Bitcast the result of the malloc call to the specified type.
Victor Hernandez788eaab2009-09-18 19:20:02 +0000531Value *CallInst::CreateMalloc(Instruction *InsertBefore, const Type *IntPtrTy,
532 const Type *AllocTy, Value *ArraySize,
533 const Twine &Name) {
Victor Hernandeze6ff7662009-09-25 18:11:52 +0000534 return createMalloc(InsertBefore, NULL, IntPtrTy, AllocTy, ArraySize, Name);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000535}
536
537/// CreateMalloc - Generate the IR for a call to malloc:
538/// 1. Compute the malloc call's argument as the specified type's size,
539/// possibly multiplied by the array size if the array size is not
540/// constant 1.
541/// 2. Call malloc with that argument.
542/// 3. Bitcast the result of the malloc call to the specified type.
543/// Note: This function does not add the bitcast to the basic block, that is the
544/// responsibility of the caller.
Victor Hernandez788eaab2009-09-18 19:20:02 +0000545Value *CallInst::CreateMalloc(BasicBlock *InsertAtEnd, const Type *IntPtrTy,
546 const Type *AllocTy, Value *ArraySize,
Victor Hernandeze6ff7662009-09-25 18:11:52 +0000547 const Twine &Name) {
548 return createMalloc(NULL, InsertAtEnd, IntPtrTy, AllocTy, ArraySize, Name);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000549}
Duncan Sands5208d1a2007-11-28 17:07:01 +0000550
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000551//===----------------------------------------------------------------------===//
552// InvokeInst Implementation
553//===----------------------------------------------------------------------===//
554
555void InvokeInst::init(Value *Fn, BasicBlock *IfNormal, BasicBlock *IfException,
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000556 Value* const *Args, unsigned NumArgs) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000557 assert(NumOperands == 3+NumArgs && "NumOperands not set up?");
Gabor Greif2d60e1e2009-09-03 02:02:59 +0000558 Use *OL = OperandList;
559 OL[0] = Fn;
560 OL[1] = IfNormal;
561 OL[2] = IfException;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000562 const FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000563 cast<FunctionType>(cast<PointerType>(Fn->getType())->getElementType());
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000564 FTy = FTy; // silence warning.
Misha Brukmanb1c93172005-04-21 23:48:37 +0000565
Anton Korobeynikov579f0712008-02-20 11:08:44 +0000566 assert(((NumArgs == FTy->getNumParams()) ||
567 (FTy->isVarArg() && NumArgs > FTy->getNumParams())) &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000568 "Calling a function with bad signature");
Misha Brukmanb1c93172005-04-21 23:48:37 +0000569
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000570 for (unsigned i = 0, e = NumArgs; i != e; i++) {
Chris Lattner667a0562006-05-03 00:48:22 +0000571 assert((i >= FTy->getNumParams() ||
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000572 FTy->getParamType(i) == Args[i]->getType()) &&
Chris Lattner667a0562006-05-03 00:48:22 +0000573 "Invoking a function with a bad signature!");
574
Gabor Greif2d60e1e2009-09-03 02:02:59 +0000575 OL[i+3] = Args[i];
Chris Lattner667a0562006-05-03 00:48:22 +0000576 }
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000577}
578
Misha Brukmanb1c93172005-04-21 23:48:37 +0000579InvokeInst::InvokeInst(const InvokeInst &II)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000580 : TerminatorInst(II.getType(), Instruction::Invoke,
Gabor Greif697e94c2008-05-15 10:04:30 +0000581 OperandTraits<InvokeInst>::op_end(this)
582 - II.getNumOperands(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000583 II.getNumOperands()) {
Devang Patel4c758ea2008-09-25 21:00:45 +0000584 setAttributes(II.getAttributes());
Chris Lattnerf7b6d312005-05-06 20:26:43 +0000585 SubclassData = II.SubclassData;
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000586 Use *OL = OperandList, *InOL = II.OperandList;
587 for (unsigned i = 0, e = II.getNumOperands(); i != e; ++i)
Gabor Greif2d3024d2008-05-26 21:33:52 +0000588 OL[i] = InOL[i];
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000589 SubclassOptionalData = II.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000590}
591
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000592BasicBlock *InvokeInst::getSuccessorV(unsigned idx) const {
593 return getSuccessor(idx);
594}
595unsigned InvokeInst::getNumSuccessorsV() const {
596 return getNumSuccessors();
597}
598void InvokeInst::setSuccessorV(unsigned idx, BasicBlock *B) {
599 return setSuccessor(idx, B);
600}
601
Devang Patelba3fa6c2008-09-23 23:03:40 +0000602bool InvokeInst::paramHasAttr(unsigned i, Attributes attr) const {
Devang Patel4c758ea2008-09-25 21:00:45 +0000603 if (AttributeList.paramHasAttr(i, attr))
Duncan Sands5208d1a2007-11-28 17:07:01 +0000604 return true;
Duncan Sands8dfcd592007-11-29 08:30:15 +0000605 if (const Function *F = getCalledFunction())
Dale Johannesen89268bc2008-02-19 21:38:47 +0000606 return F->paramHasAttr(i, attr);
Duncan Sands8dfcd592007-11-29 08:30:15 +0000607 return false;
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000608}
609
Devang Patel4c758ea2008-09-25 21:00:45 +0000610void InvokeInst::addAttribute(unsigned i, Attributes attr) {
611 AttrListPtr PAL = getAttributes();
Eric Christopher901b1a72008-05-16 20:39:43 +0000612 PAL = PAL.addAttr(i, attr);
Devang Patel4c758ea2008-09-25 21:00:45 +0000613 setAttributes(PAL);
Eric Christopher901b1a72008-05-16 20:39:43 +0000614}
615
Devang Patel4c758ea2008-09-25 21:00:45 +0000616void InvokeInst::removeAttribute(unsigned i, Attributes attr) {
617 AttrListPtr PAL = getAttributes();
Duncan Sands78c88722008-07-08 08:38:44 +0000618 PAL = PAL.removeAttr(i, attr);
Devang Patel4c758ea2008-09-25 21:00:45 +0000619 setAttributes(PAL);
Duncan Sandsaa31b922007-12-19 21:13:37 +0000620}
621
Duncan Sands5208d1a2007-11-28 17:07:01 +0000622
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000623//===----------------------------------------------------------------------===//
624// ReturnInst Implementation
625//===----------------------------------------------------------------------===//
626
Chris Lattner2195fc42007-02-24 00:55:48 +0000627ReturnInst::ReturnInst(const ReturnInst &RI)
Owen Anderson55f1c092009-08-13 21:58:54 +0000628 : TerminatorInst(Type::getVoidTy(RI.getContext()), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000629 OperandTraits<ReturnInst>::op_end(this) -
630 RI.getNumOperands(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000631 RI.getNumOperands()) {
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000632 if (RI.getNumOperands())
Gabor Greif2d3024d2008-05-26 21:33:52 +0000633 Op<0>() = RI.Op<0>();
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000634 SubclassOptionalData = RI.SubclassOptionalData;
Chris Lattner2195fc42007-02-24 00:55:48 +0000635}
636
Owen Anderson55f1c092009-08-13 21:58:54 +0000637ReturnInst::ReturnInst(LLVMContext &C, Value *retVal, Instruction *InsertBefore)
638 : TerminatorInst(Type::getVoidTy(C), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000639 OperandTraits<ReturnInst>::op_end(this) - !!retVal, !!retVal,
640 InsertBefore) {
Devang Patelc38eb522008-02-26 18:49:29 +0000641 if (retVal)
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000642 Op<0>() = retVal;
Chris Lattner2195fc42007-02-24 00:55:48 +0000643}
Owen Anderson55f1c092009-08-13 21:58:54 +0000644ReturnInst::ReturnInst(LLVMContext &C, Value *retVal, BasicBlock *InsertAtEnd)
645 : TerminatorInst(Type::getVoidTy(C), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000646 OperandTraits<ReturnInst>::op_end(this) - !!retVal, !!retVal,
647 InsertAtEnd) {
Devang Patelc38eb522008-02-26 18:49:29 +0000648 if (retVal)
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000649 Op<0>() = retVal;
Chris Lattner2195fc42007-02-24 00:55:48 +0000650}
Owen Anderson55f1c092009-08-13 21:58:54 +0000651ReturnInst::ReturnInst(LLVMContext &Context, BasicBlock *InsertAtEnd)
652 : TerminatorInst(Type::getVoidTy(Context), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000653 OperandTraits<ReturnInst>::op_end(this), 0, InsertAtEnd) {
Devang Patel59643e52008-02-23 00:35:18 +0000654}
655
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000656unsigned ReturnInst::getNumSuccessorsV() const {
657 return getNumSuccessors();
658}
659
Devang Patelae682fb2008-02-26 17:56:20 +0000660/// Out-of-line ReturnInst method, put here so the C++ compiler can choose to
661/// emit the vtable for the class in this translation unit.
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000662void ReturnInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000663 llvm_unreachable("ReturnInst has no successors!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000664}
665
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000666BasicBlock *ReturnInst::getSuccessorV(unsigned idx) const {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000667 llvm_unreachable("ReturnInst has no successors!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000668 return 0;
669}
670
Devang Patel59643e52008-02-23 00:35:18 +0000671ReturnInst::~ReturnInst() {
Devang Patel59643e52008-02-23 00:35:18 +0000672}
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000673
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000674//===----------------------------------------------------------------------===//
675// UnwindInst Implementation
676//===----------------------------------------------------------------------===//
677
Owen Anderson55f1c092009-08-13 21:58:54 +0000678UnwindInst::UnwindInst(LLVMContext &Context, Instruction *InsertBefore)
679 : TerminatorInst(Type::getVoidTy(Context), Instruction::Unwind,
680 0, 0, InsertBefore) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000681}
Owen Anderson55f1c092009-08-13 21:58:54 +0000682UnwindInst::UnwindInst(LLVMContext &Context, BasicBlock *InsertAtEnd)
683 : TerminatorInst(Type::getVoidTy(Context), Instruction::Unwind,
684 0, 0, InsertAtEnd) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000685}
686
687
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000688unsigned UnwindInst::getNumSuccessorsV() const {
689 return getNumSuccessors();
690}
691
692void UnwindInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000693 llvm_unreachable("UnwindInst has no successors!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000694}
695
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000696BasicBlock *UnwindInst::getSuccessorV(unsigned idx) const {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000697 llvm_unreachable("UnwindInst has no successors!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000698 return 0;
699}
700
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000701//===----------------------------------------------------------------------===//
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000702// UnreachableInst Implementation
703//===----------------------------------------------------------------------===//
704
Owen Anderson55f1c092009-08-13 21:58:54 +0000705UnreachableInst::UnreachableInst(LLVMContext &Context,
706 Instruction *InsertBefore)
707 : TerminatorInst(Type::getVoidTy(Context), Instruction::Unreachable,
708 0, 0, InsertBefore) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000709}
Owen Anderson55f1c092009-08-13 21:58:54 +0000710UnreachableInst::UnreachableInst(LLVMContext &Context, BasicBlock *InsertAtEnd)
711 : TerminatorInst(Type::getVoidTy(Context), Instruction::Unreachable,
712 0, 0, InsertAtEnd) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000713}
714
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000715unsigned UnreachableInst::getNumSuccessorsV() const {
716 return getNumSuccessors();
717}
718
719void UnreachableInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000720 llvm_unreachable("UnwindInst has no successors!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000721}
722
723BasicBlock *UnreachableInst::getSuccessorV(unsigned idx) const {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000724 llvm_unreachable("UnwindInst has no successors!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000725 return 0;
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000726}
727
728//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000729// BranchInst Implementation
730//===----------------------------------------------------------------------===//
731
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000732void BranchInst::AssertOK() {
733 if (isConditional())
Owen Anderson55f1c092009-08-13 21:58:54 +0000734 assert(getCondition()->getType() == Type::getInt1Ty(getContext()) &&
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000735 "May only branch on boolean predicates!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000736}
737
Chris Lattner2195fc42007-02-24 00:55:48 +0000738BranchInst::BranchInst(BasicBlock *IfTrue, Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +0000739 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000740 OperandTraits<BranchInst>::op_end(this) - 1,
741 1, InsertBefore) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000742 assert(IfTrue != 0 && "Branch destination may not be null!");
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000743 Op<-1>() = IfTrue;
Chris Lattner2195fc42007-02-24 00:55:48 +0000744}
745BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
746 Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +0000747 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000748 OperandTraits<BranchInst>::op_end(this) - 3,
749 3, InsertBefore) {
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000750 Op<-1>() = IfTrue;
751 Op<-2>() = IfFalse;
752 Op<-3>() = Cond;
Chris Lattner2195fc42007-02-24 00:55:48 +0000753#ifndef NDEBUG
754 AssertOK();
755#endif
756}
757
758BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +0000759 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000760 OperandTraits<BranchInst>::op_end(this) - 1,
761 1, InsertAtEnd) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000762 assert(IfTrue != 0 && "Branch destination may not be null!");
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000763 Op<-1>() = IfTrue;
Chris Lattner2195fc42007-02-24 00:55:48 +0000764}
765
766BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
767 BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +0000768 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000769 OperandTraits<BranchInst>::op_end(this) - 3,
770 3, InsertAtEnd) {
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000771 Op<-1>() = IfTrue;
772 Op<-2>() = IfFalse;
773 Op<-3>() = Cond;
Chris Lattner2195fc42007-02-24 00:55:48 +0000774#ifndef NDEBUG
775 AssertOK();
776#endif
777}
778
779
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000780BranchInst::BranchInst(const BranchInst &BI) :
Owen Anderson55f1c092009-08-13 21:58:54 +0000781 TerminatorInst(Type::getVoidTy(BI.getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000782 OperandTraits<BranchInst>::op_end(this) - BI.getNumOperands(),
783 BI.getNumOperands()) {
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000784 Op<-1>() = BI.Op<-1>();
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000785 if (BI.getNumOperands() != 1) {
786 assert(BI.getNumOperands() == 3 && "BR can have 1 or 3 operands!");
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000787 Op<-3>() = BI.Op<-3>();
788 Op<-2>() = BI.Op<-2>();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000789 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000790 SubclassOptionalData = BI.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000791}
792
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000793
794Use* Use::getPrefix() {
795 PointerIntPair<Use**, 2, PrevPtrTag> &PotentialPrefix(this[-1].Prev);
796 if (PotentialPrefix.getOpaqueValue())
797 return 0;
798
799 return reinterpret_cast<Use*>((char*)&PotentialPrefix + 1);
800}
801
802BranchInst::~BranchInst() {
803 if (NumOperands == 1) {
804 if (Use *Prefix = OperandList->getPrefix()) {
805 Op<-1>() = 0;
806 //
807 // mark OperandList to have a special value for scrutiny
808 // by baseclass destructors and operator delete
809 OperandList = Prefix;
810 } else {
811 NumOperands = 3;
812 OperandList = op_begin();
813 }
814 }
815}
816
817
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000818BasicBlock *BranchInst::getSuccessorV(unsigned idx) const {
819 return getSuccessor(idx);
820}
821unsigned BranchInst::getNumSuccessorsV() const {
822 return getNumSuccessors();
823}
824void BranchInst::setSuccessorV(unsigned idx, BasicBlock *B) {
825 setSuccessor(idx, B);
826}
827
828
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000829//===----------------------------------------------------------------------===//
830// AllocationInst Implementation
831//===----------------------------------------------------------------------===//
832
Owen Andersonb6b25302009-07-14 23:09:55 +0000833static Value *getAISize(LLVMContext &Context, Value *Amt) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000834 if (!Amt)
Owen Anderson55f1c092009-08-13 21:58:54 +0000835 Amt = ConstantInt::get(Type::getInt32Ty(Context), 1);
Chris Lattnerbb7ff662006-05-10 04:32:43 +0000836 else {
837 assert(!isa<BasicBlock>(Amt) &&
Chris Lattner9b6ec772007-10-18 16:10:48 +0000838 "Passed basic block into allocation size parameter! Use other ctor");
Owen Anderson55f1c092009-08-13 21:58:54 +0000839 assert(Amt->getType() == Type::getInt32Ty(Context) &&
Reid Spencer7e16e232007-01-26 06:30:34 +0000840 "Malloc/Allocation array size is not a 32-bit integer!");
Chris Lattnerbb7ff662006-05-10 04:32:43 +0000841 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000842 return Amt;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000843}
844
Owen Anderson4fdeba92009-07-15 23:53:25 +0000845AllocationInst::AllocationInst(const Type *Ty, Value *ArraySize, unsigned iTy,
Daniel Dunbar4975db62009-07-25 04:41:11 +0000846 unsigned Align, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000847 Instruction *InsertBefore)
Owen Anderson4056ca92009-07-29 22:17:13 +0000848 : UnaryInstruction(PointerType::getUnqual(Ty), iTy,
Owen Anderson4fdeba92009-07-15 23:53:25 +0000849 getAISize(Ty->getContext(), ArraySize), InsertBefore) {
Dan Gohmanaa583d72008-03-24 16:55:58 +0000850 setAlignment(Align);
Owen Anderson55f1c092009-08-13 21:58:54 +0000851 assert(Ty != Type::getVoidTy(Ty->getContext()) && "Cannot allocate void!");
Chris Lattner0f048162007-02-13 07:54:42 +0000852 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000853}
854
Owen Anderson4fdeba92009-07-15 23:53:25 +0000855AllocationInst::AllocationInst(const Type *Ty, Value *ArraySize, unsigned iTy,
Daniel Dunbar4975db62009-07-25 04:41:11 +0000856 unsigned Align, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000857 BasicBlock *InsertAtEnd)
Owen Anderson4056ca92009-07-29 22:17:13 +0000858 : UnaryInstruction(PointerType::getUnqual(Ty), iTy,
Owen Anderson4fdeba92009-07-15 23:53:25 +0000859 getAISize(Ty->getContext(), ArraySize), InsertAtEnd) {
Dan Gohmanaa583d72008-03-24 16:55:58 +0000860 setAlignment(Align);
Owen Anderson55f1c092009-08-13 21:58:54 +0000861 assert(Ty != Type::getVoidTy(Ty->getContext()) && "Cannot allocate void!");
Chris Lattner0f048162007-02-13 07:54:42 +0000862 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000863}
864
Gordon Henriksen14a55692007-12-10 02:14:30 +0000865// Out of line virtual method, so the vtable, etc has a home.
866AllocationInst::~AllocationInst() {
867}
868
Dan Gohmanaa583d72008-03-24 16:55:58 +0000869void AllocationInst::setAlignment(unsigned Align) {
870 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
871 SubclassData = Log2_32(Align) + 1;
872 assert(getAlignment() == Align && "Alignment representation error!");
873}
874
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000875bool AllocationInst::isArrayAllocation() const {
Reid Spencera9e6e312007-03-01 20:27:41 +0000876 if (ConstantInt *CI = dyn_cast<ConstantInt>(getOperand(0)))
877 return CI->getZExtValue() != 1;
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000878 return true;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000879}
880
881const Type *AllocationInst::getAllocatedType() const {
882 return getType()->getElementType();
883}
884
Chris Lattner8b291e62008-11-26 02:54:17 +0000885/// isStaticAlloca - Return true if this alloca is in the entry block of the
886/// function and is a constant size. If so, the code generator will fold it
887/// into the prolog/epilog code, so it is basically free.
888bool AllocaInst::isStaticAlloca() const {
889 // Must be constant size.
890 if (!isa<ConstantInt>(getArraySize())) return false;
891
892 // Must be in the entry block.
893 const BasicBlock *Parent = getParent();
894 return Parent == &Parent->getParent()->front();
895}
896
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000897//===----------------------------------------------------------------------===//
898// FreeInst Implementation
899//===----------------------------------------------------------------------===//
900
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000901void FreeInst::AssertOK() {
902 assert(isa<PointerType>(getOperand(0)->getType()) &&
903 "Can not free something of nonpointer type!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000904}
905
906FreeInst::FreeInst(Value *Ptr, Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +0000907 : UnaryInstruction(Type::getVoidTy(Ptr->getContext()),
908 Free, Ptr, InsertBefore) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000909 AssertOK();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000910}
911
912FreeInst::FreeInst(Value *Ptr, BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +0000913 : UnaryInstruction(Type::getVoidTy(Ptr->getContext()),
914 Free, Ptr, InsertAtEnd) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000915 AssertOK();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000916}
917
918
919//===----------------------------------------------------------------------===//
920// LoadInst Implementation
921//===----------------------------------------------------------------------===//
922
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000923void LoadInst::AssertOK() {
Misha Brukmanb1c93172005-04-21 23:48:37 +0000924 assert(isa<PointerType>(getOperand(0)->getType()) &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000925 "Ptr must have pointer type.");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000926}
927
Daniel Dunbar4975db62009-07-25 04:41:11 +0000928LoadInst::LoadInst(Value *Ptr, const Twine &Name, Instruction *InsertBef)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000929 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000930 Load, Ptr, InsertBef) {
Chris Lattnerdf57a022005-02-05 01:38:38 +0000931 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000932 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000933 AssertOK();
Chris Lattner0f048162007-02-13 07:54:42 +0000934 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000935}
936
Daniel Dunbar4975db62009-07-25 04:41:11 +0000937LoadInst::LoadInst(Value *Ptr, const Twine &Name, BasicBlock *InsertAE)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000938 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000939 Load, Ptr, InsertAE) {
Chris Lattnerdf57a022005-02-05 01:38:38 +0000940 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000941 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000942 AssertOK();
Chris Lattner0f048162007-02-13 07:54:42 +0000943 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000944}
945
Daniel Dunbar4975db62009-07-25 04:41:11 +0000946LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000947 Instruction *InsertBef)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000948 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000949 Load, Ptr, InsertBef) {
Chris Lattnerdf57a022005-02-05 01:38:38 +0000950 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +0000951 setAlignment(0);
952 AssertOK();
953 setName(Name);
954}
955
Daniel Dunbar4975db62009-07-25 04:41:11 +0000956LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Christopher Lamb84485702007-04-22 19:24:39 +0000957 unsigned Align, Instruction *InsertBef)
958 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
959 Load, Ptr, InsertBef) {
960 setVolatile(isVolatile);
961 setAlignment(Align);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000962 AssertOK();
Chris Lattner0f048162007-02-13 07:54:42 +0000963 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000964}
965
Daniel Dunbar4975db62009-07-25 04:41:11 +0000966LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Dan Gohman68659282007-07-18 20:51:11 +0000967 unsigned Align, BasicBlock *InsertAE)
968 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
969 Load, Ptr, InsertAE) {
970 setVolatile(isVolatile);
971 setAlignment(Align);
972 AssertOK();
973 setName(Name);
974}
975
Daniel Dunbar4975db62009-07-25 04:41:11 +0000976LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000977 BasicBlock *InsertAE)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000978 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000979 Load, Ptr, InsertAE) {
Chris Lattner0f048162007-02-13 07:54:42 +0000980 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +0000981 setAlignment(0);
Chris Lattner0f048162007-02-13 07:54:42 +0000982 AssertOK();
983 setName(Name);
984}
985
Daniel Dunbar27096822009-08-11 18:11:15 +0000986
987
988LoadInst::LoadInst(Value *Ptr, const char *Name, Instruction *InsertBef)
989 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
990 Load, Ptr, InsertBef) {
991 setVolatile(false);
992 setAlignment(0);
993 AssertOK();
994 if (Name && Name[0]) setName(Name);
995}
996
997LoadInst::LoadInst(Value *Ptr, const char *Name, BasicBlock *InsertAE)
998 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
999 Load, Ptr, InsertAE) {
1000 setVolatile(false);
1001 setAlignment(0);
1002 AssertOK();
1003 if (Name && Name[0]) setName(Name);
1004}
1005
1006LoadInst::LoadInst(Value *Ptr, const char *Name, bool isVolatile,
1007 Instruction *InsertBef)
1008: UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
1009 Load, Ptr, InsertBef) {
1010 setVolatile(isVolatile);
1011 setAlignment(0);
1012 AssertOK();
1013 if (Name && Name[0]) setName(Name);
1014}
1015
1016LoadInst::LoadInst(Value *Ptr, const char *Name, bool isVolatile,
1017 BasicBlock *InsertAE)
1018 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
1019 Load, Ptr, InsertAE) {
1020 setVolatile(isVolatile);
1021 setAlignment(0);
1022 AssertOK();
1023 if (Name && Name[0]) setName(Name);
1024}
1025
Christopher Lamb84485702007-04-22 19:24:39 +00001026void LoadInst::setAlignment(unsigned Align) {
1027 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
1028 SubclassData = (SubclassData & 1) | ((Log2_32(Align)+1)<<1);
1029}
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001030
1031//===----------------------------------------------------------------------===//
1032// StoreInst Implementation
1033//===----------------------------------------------------------------------===//
1034
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001035void StoreInst::AssertOK() {
Nate Begemanfecbc8c2008-07-29 15:49:41 +00001036 assert(getOperand(0) && getOperand(1) && "Both operands must be non-null!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001037 assert(isa<PointerType>(getOperand(1)->getType()) &&
1038 "Ptr must have pointer type!");
1039 assert(getOperand(0)->getType() ==
1040 cast<PointerType>(getOperand(1)->getType())->getElementType()
Alkis Evlogimenos079fbde2004-08-06 14:33:37 +00001041 && "Ptr must be a pointer to Val type!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001042}
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001043
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001044
1045StoreInst::StoreInst(Value *val, Value *addr, Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +00001046 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001047 OperandTraits<StoreInst>::op_begin(this),
1048 OperandTraits<StoreInst>::operands(this),
1049 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001050 Op<0>() = val;
1051 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +00001052 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +00001053 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001054 AssertOK();
1055}
1056
1057StoreInst::StoreInst(Value *val, Value *addr, BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +00001058 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001059 OperandTraits<StoreInst>::op_begin(this),
1060 OperandTraits<StoreInst>::operands(this),
1061 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001062 Op<0>() = val;
1063 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +00001064 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +00001065 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001066 AssertOK();
1067}
1068
Misha Brukmanb1c93172005-04-21 23:48:37 +00001069StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001070 Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +00001071 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001072 OperandTraits<StoreInst>::op_begin(this),
1073 OperandTraits<StoreInst>::operands(this),
1074 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001075 Op<0>() = val;
1076 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +00001077 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +00001078 setAlignment(0);
1079 AssertOK();
1080}
1081
1082StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
1083 unsigned Align, Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +00001084 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001085 OperandTraits<StoreInst>::op_begin(this),
1086 OperandTraits<StoreInst>::operands(this),
1087 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001088 Op<0>() = val;
1089 Op<1>() = addr;
Christopher Lamb84485702007-04-22 19:24:39 +00001090 setVolatile(isVolatile);
1091 setAlignment(Align);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001092 AssertOK();
1093}
1094
Misha Brukmanb1c93172005-04-21 23:48:37 +00001095StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Dan Gohman68659282007-07-18 20:51:11 +00001096 unsigned Align, BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +00001097 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001098 OperandTraits<StoreInst>::op_begin(this),
1099 OperandTraits<StoreInst>::operands(this),
1100 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001101 Op<0>() = val;
1102 Op<1>() = addr;
Dan Gohman68659282007-07-18 20:51:11 +00001103 setVolatile(isVolatile);
1104 setAlignment(Align);
1105 AssertOK();
1106}
1107
1108StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001109 BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +00001110 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001111 OperandTraits<StoreInst>::op_begin(this),
1112 OperandTraits<StoreInst>::operands(this),
1113 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001114 Op<0>() = val;
1115 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +00001116 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +00001117 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001118 AssertOK();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001119}
1120
Christopher Lamb84485702007-04-22 19:24:39 +00001121void StoreInst::setAlignment(unsigned Align) {
1122 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
1123 SubclassData = (SubclassData & 1) | ((Log2_32(Align)+1)<<1);
1124}
1125
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001126//===----------------------------------------------------------------------===//
1127// GetElementPtrInst Implementation
1128//===----------------------------------------------------------------------===//
1129
Christopher Lambedf07882007-12-17 01:12:55 +00001130static unsigned retrieveAddrSpace(const Value *Val) {
1131 return cast<PointerType>(Val->getType())->getAddressSpace();
1132}
1133
Gabor Greif21ba1842008-06-06 20:28:12 +00001134void GetElementPtrInst::init(Value *Ptr, Value* const *Idx, unsigned NumIdx,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001135 const Twine &Name) {
Gabor Greiff6caff662008-05-10 08:32:32 +00001136 assert(NumOperands == 1+NumIdx && "NumOperands not initialized?");
1137 Use *OL = OperandList;
Gabor Greif2d3024d2008-05-26 21:33:52 +00001138 OL[0] = Ptr;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001139
Chris Lattner79807c3d2007-01-31 19:47:18 +00001140 for (unsigned i = 0; i != NumIdx; ++i)
Gabor Greif2d3024d2008-05-26 21:33:52 +00001141 OL[i+1] = Idx[i];
Matthijs Kooijman76d8dec2008-06-04 16:14:12 +00001142
1143 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001144}
1145
Daniel Dunbar4975db62009-07-25 04:41:11 +00001146void GetElementPtrInst::init(Value *Ptr, Value *Idx, const Twine &Name) {
Gabor Greiff6caff662008-05-10 08:32:32 +00001147 assert(NumOperands == 2 && "NumOperands not initialized?");
1148 Use *OL = OperandList;
Gabor Greif2d3024d2008-05-26 21:33:52 +00001149 OL[0] = Ptr;
1150 OL[1] = Idx;
Matthijs Kooijman76d8dec2008-06-04 16:14:12 +00001151
1152 setName(Name);
Chris Lattner82981202005-05-03 05:43:30 +00001153}
1154
Gabor Greiff6caff662008-05-10 08:32:32 +00001155GetElementPtrInst::GetElementPtrInst(const GetElementPtrInst &GEPI)
Gabor Greife9408e62008-05-27 11:03:29 +00001156 : Instruction(GEPI.getType(), GetElementPtr,
Gabor Greif697e94c2008-05-15 10:04:30 +00001157 OperandTraits<GetElementPtrInst>::op_end(this)
1158 - GEPI.getNumOperands(),
Gabor Greiff6caff662008-05-10 08:32:32 +00001159 GEPI.getNumOperands()) {
1160 Use *OL = OperandList;
1161 Use *GEPIOL = GEPI.OperandList;
1162 for (unsigned i = 0, E = NumOperands; i != E; ++i)
Gabor Greif2d3024d2008-05-26 21:33:52 +00001163 OL[i] = GEPIOL[i];
Dan Gohmanc8a27f22009-08-25 22:11:20 +00001164 SubclassOptionalData = GEPI.SubclassOptionalData;
Gabor Greiff6caff662008-05-10 08:32:32 +00001165}
1166
Chris Lattner82981202005-05-03 05:43:30 +00001167GetElementPtrInst::GetElementPtrInst(Value *Ptr, Value *Idx,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001168 const Twine &Name, Instruction *InBe)
Owen Anderson4056ca92009-07-29 22:17:13 +00001169 : Instruction(PointerType::get(
Owen Andersond420fd42009-07-16 00:03:07 +00001170 checkType(getIndexedType(Ptr->getType(),Idx)), retrieveAddrSpace(Ptr)),
Gabor Greiff6caff662008-05-10 08:32:32 +00001171 GetElementPtr,
1172 OperandTraits<GetElementPtrInst>::op_end(this) - 2,
1173 2, InBe) {
Matthijs Kooijman76d8dec2008-06-04 16:14:12 +00001174 init(Ptr, Idx, Name);
Chris Lattner82981202005-05-03 05:43:30 +00001175}
1176
1177GetElementPtrInst::GetElementPtrInst(Value *Ptr, Value *Idx,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001178 const Twine &Name, BasicBlock *IAE)
Owen Anderson4056ca92009-07-29 22:17:13 +00001179 : Instruction(PointerType::get(
Owen Andersond420fd42009-07-16 00:03:07 +00001180 checkType(getIndexedType(Ptr->getType(),Idx)),
1181 retrieveAddrSpace(Ptr)),
Gabor Greiff6caff662008-05-10 08:32:32 +00001182 GetElementPtr,
1183 OperandTraits<GetElementPtrInst>::op_end(this) - 2,
1184 2, IAE) {
Matthijs Kooijman76d8dec2008-06-04 16:14:12 +00001185 init(Ptr, Idx, Name);
Chris Lattner82981202005-05-03 05:43:30 +00001186}
1187
Chris Lattner6090a422009-03-09 04:46:40 +00001188/// getIndexedType - Returns the type of the element that would be accessed with
1189/// a gep instruction with the specified parameters.
1190///
1191/// The Idxs pointer should point to a continuous piece of memory containing the
1192/// indices, either as Value* or uint64_t.
1193///
1194/// A null type is returned if the indices are invalid for the specified
1195/// pointer type.
1196///
Matthijs Kooijman04468622008-07-29 08:46:11 +00001197template <typename IndexTy>
Chris Lattner6090a422009-03-09 04:46:40 +00001198static const Type* getIndexedTypeInternal(const Type *Ptr, IndexTy const *Idxs,
1199 unsigned NumIdx) {
Dan Gohman12fce772008-05-15 19:50:34 +00001200 const PointerType *PTy = dyn_cast<PointerType>(Ptr);
1201 if (!PTy) return 0; // Type isn't a pointer type!
1202 const Type *Agg = PTy->getElementType();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001203
Chris Lattner6090a422009-03-09 04:46:40 +00001204 // Handle the special case of the empty set index set, which is always valid.
Dan Gohman12fce772008-05-15 19:50:34 +00001205 if (NumIdx == 0)
1206 return Agg;
Chris Lattner6090a422009-03-09 04:46:40 +00001207
1208 // If there is at least one index, the top level type must be sized, otherwise
Chris Lattner4a488152009-03-09 04:56:22 +00001209 // it cannot be 'stepped over'. We explicitly allow abstract types (those
1210 // that contain opaque types) under the assumption that it will be resolved to
1211 // a sane type later.
1212 if (!Agg->isSized() && !Agg->isAbstract())
Chris Lattner6090a422009-03-09 04:46:40 +00001213 return 0;
Misha Brukmanb1c93172005-04-21 23:48:37 +00001214
Dan Gohman1ecaf452008-05-31 00:58:22 +00001215 unsigned CurIdx = 1;
1216 for (; CurIdx != NumIdx; ++CurIdx) {
1217 const CompositeType *CT = dyn_cast<CompositeType>(Agg);
1218 if (!CT || isa<PointerType>(CT)) return 0;
Matthijs Kooijman04468622008-07-29 08:46:11 +00001219 IndexTy Index = Idxs[CurIdx];
Dan Gohman1ecaf452008-05-31 00:58:22 +00001220 if (!CT->indexValid(Index)) return 0;
1221 Agg = CT->getTypeAtIndex(Index);
1222
1223 // If the new type forwards to another type, then it is in the middle
1224 // of being refined to another type (and hence, may have dropped all
1225 // references to what it was using before). So, use the new forwarded
1226 // type.
1227 if (const Type *Ty = Agg->getForwardedType())
1228 Agg = Ty;
1229 }
1230 return CurIdx == NumIdx ? Agg : 0;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001231}
1232
Matthijs Kooijman04468622008-07-29 08:46:11 +00001233const Type* GetElementPtrInst::getIndexedType(const Type *Ptr,
1234 Value* const *Idxs,
1235 unsigned NumIdx) {
1236 return getIndexedTypeInternal(Ptr, Idxs, NumIdx);
1237}
1238
1239const Type* GetElementPtrInst::getIndexedType(const Type *Ptr,
1240 uint64_t const *Idxs,
1241 unsigned NumIdx) {
1242 return getIndexedTypeInternal(Ptr, Idxs, NumIdx);
1243}
1244
Chris Lattner82981202005-05-03 05:43:30 +00001245const Type* GetElementPtrInst::getIndexedType(const Type *Ptr, Value *Idx) {
1246 const PointerType *PTy = dyn_cast<PointerType>(Ptr);
1247 if (!PTy) return 0; // Type isn't a pointer type!
1248
1249 // Check the pointer index.
1250 if (!PTy->indexValid(Idx)) return 0;
1251
Chris Lattnerc2233332005-05-03 16:44:45 +00001252 return PTy->getElementType();
Chris Lattner82981202005-05-03 05:43:30 +00001253}
1254
Chris Lattner45f15572007-04-14 00:12:57 +00001255
1256/// hasAllZeroIndices - Return true if all of the indices of this GEP are
1257/// zeros. If so, the result pointer and the first operand have the same
1258/// value, just potentially different types.
1259bool GetElementPtrInst::hasAllZeroIndices() const {
1260 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
1261 if (ConstantInt *CI = dyn_cast<ConstantInt>(getOperand(i))) {
1262 if (!CI->isZero()) return false;
1263 } else {
1264 return false;
1265 }
1266 }
1267 return true;
1268}
1269
Chris Lattner27058292007-04-27 20:35:56 +00001270/// hasAllConstantIndices - Return true if all of the indices of this GEP are
1271/// constant integers. If so, the result pointer and the first operand have
1272/// a constant offset between them.
1273bool GetElementPtrInst::hasAllConstantIndices() const {
1274 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
1275 if (!isa<ConstantInt>(getOperand(i)))
1276 return false;
1277 }
1278 return true;
1279}
1280
Dan Gohman1b849082009-09-07 23:54:19 +00001281void GetElementPtrInst::setIsInBounds(bool B) {
1282 cast<GEPOperator>(this)->setIsInBounds(B);
1283}
Chris Lattner45f15572007-04-14 00:12:57 +00001284
Nick Lewycky28a5f252009-09-27 21:33:04 +00001285bool GetElementPtrInst::isInBounds() const {
1286 return cast<GEPOperator>(this)->isInBounds();
1287}
1288
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001289//===----------------------------------------------------------------------===//
Robert Bocchino23004482006-01-10 19:05:34 +00001290// ExtractElementInst Implementation
1291//===----------------------------------------------------------------------===//
1292
1293ExtractElementInst::ExtractElementInst(Value *Val, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001294 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001295 Instruction *InsertBef)
Reid Spencerd84d35b2007-02-15 02:26:10 +00001296 : Instruction(cast<VectorType>(Val->getType())->getElementType(),
Gabor Greiff6caff662008-05-10 08:32:32 +00001297 ExtractElement,
1298 OperandTraits<ExtractElementInst>::op_begin(this),
1299 2, InsertBef) {
Chris Lattner54865b32006-04-08 04:05:48 +00001300 assert(isValidOperands(Val, Index) &&
1301 "Invalid extractelement instruction operands!");
Gabor Greif2d3024d2008-05-26 21:33:52 +00001302 Op<0>() = Val;
1303 Op<1>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001304 setName(Name);
Robert Bocchino23004482006-01-10 19:05:34 +00001305}
1306
1307ExtractElementInst::ExtractElementInst(Value *Val, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001308 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001309 BasicBlock *InsertAE)
Reid Spencerd84d35b2007-02-15 02:26:10 +00001310 : Instruction(cast<VectorType>(Val->getType())->getElementType(),
Gabor Greiff6caff662008-05-10 08:32:32 +00001311 ExtractElement,
1312 OperandTraits<ExtractElementInst>::op_begin(this),
1313 2, InsertAE) {
Chris Lattner54865b32006-04-08 04:05:48 +00001314 assert(isValidOperands(Val, Index) &&
1315 "Invalid extractelement instruction operands!");
1316
Gabor Greif2d3024d2008-05-26 21:33:52 +00001317 Op<0>() = Val;
1318 Op<1>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001319 setName(Name);
Robert Bocchino23004482006-01-10 19:05:34 +00001320}
1321
Chris Lattner65511ff2006-10-05 06:24:58 +00001322
Chris Lattner54865b32006-04-08 04:05:48 +00001323bool ExtractElementInst::isValidOperands(const Value *Val, const Value *Index) {
Owen Anderson55f1c092009-08-13 21:58:54 +00001324 if (!isa<VectorType>(Val->getType()) ||
1325 Index->getType() != Type::getInt32Ty(Val->getContext()))
Chris Lattner54865b32006-04-08 04:05:48 +00001326 return false;
1327 return true;
1328}
1329
1330
Robert Bocchino23004482006-01-10 19:05:34 +00001331//===----------------------------------------------------------------------===//
Robert Bocchinoca27f032006-01-17 20:07:22 +00001332// InsertElementInst Implementation
1333//===----------------------------------------------------------------------===//
1334
Chris Lattner54865b32006-04-08 04:05:48 +00001335InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001336 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001337 Instruction *InsertBef)
Gabor Greiff6caff662008-05-10 08:32:32 +00001338 : Instruction(Vec->getType(), InsertElement,
1339 OperandTraits<InsertElementInst>::op_begin(this),
1340 3, InsertBef) {
Chris Lattner54865b32006-04-08 04:05:48 +00001341 assert(isValidOperands(Vec, Elt, Index) &&
1342 "Invalid insertelement instruction operands!");
Gabor Greif2d3024d2008-05-26 21:33:52 +00001343 Op<0>() = Vec;
1344 Op<1>() = Elt;
1345 Op<2>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001346 setName(Name);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001347}
1348
Chris Lattner54865b32006-04-08 04:05:48 +00001349InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001350 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001351 BasicBlock *InsertAE)
Gabor Greiff6caff662008-05-10 08:32:32 +00001352 : Instruction(Vec->getType(), InsertElement,
1353 OperandTraits<InsertElementInst>::op_begin(this),
1354 3, InsertAE) {
Chris Lattner54865b32006-04-08 04:05:48 +00001355 assert(isValidOperands(Vec, Elt, Index) &&
1356 "Invalid insertelement instruction operands!");
1357
Gabor Greif2d3024d2008-05-26 21:33:52 +00001358 Op<0>() = Vec;
1359 Op<1>() = Elt;
1360 Op<2>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001361 setName(Name);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001362}
1363
Chris Lattner54865b32006-04-08 04:05:48 +00001364bool InsertElementInst::isValidOperands(const Value *Vec, const Value *Elt,
1365 const Value *Index) {
Reid Spencerd84d35b2007-02-15 02:26:10 +00001366 if (!isa<VectorType>(Vec->getType()))
Reid Spencer09575ba2007-02-15 03:39:18 +00001367 return false; // First operand of insertelement must be vector type.
Chris Lattner54865b32006-04-08 04:05:48 +00001368
Reid Spencerd84d35b2007-02-15 02:26:10 +00001369 if (Elt->getType() != cast<VectorType>(Vec->getType())->getElementType())
Dan Gohmanfead7972007-05-11 21:43:24 +00001370 return false;// Second operand of insertelement must be vector element type.
Chris Lattner54865b32006-04-08 04:05:48 +00001371
Owen Anderson55f1c092009-08-13 21:58:54 +00001372 if (Index->getType() != Type::getInt32Ty(Vec->getContext()))
Dan Gohman4fe64de2009-06-14 23:30:43 +00001373 return false; // Third operand of insertelement must be i32.
Chris Lattner54865b32006-04-08 04:05:48 +00001374 return true;
1375}
1376
1377
Robert Bocchinoca27f032006-01-17 20:07:22 +00001378//===----------------------------------------------------------------------===//
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001379// ShuffleVectorInst Implementation
1380//===----------------------------------------------------------------------===//
1381
1382ShuffleVectorInst::ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001383 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001384 Instruction *InsertBefore)
Owen Anderson4056ca92009-07-29 22:17:13 +00001385: Instruction(VectorType::get(cast<VectorType>(V1->getType())->getElementType(),
Mon P Wang25f01062008-11-10 04:46:22 +00001386 cast<VectorType>(Mask->getType())->getNumElements()),
1387 ShuffleVector,
1388 OperandTraits<ShuffleVectorInst>::op_begin(this),
1389 OperandTraits<ShuffleVectorInst>::operands(this),
1390 InsertBefore) {
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001391 assert(isValidOperands(V1, V2, Mask) &&
1392 "Invalid shuffle vector instruction operands!");
Gabor Greif2d3024d2008-05-26 21:33:52 +00001393 Op<0>() = V1;
1394 Op<1>() = V2;
1395 Op<2>() = Mask;
Chris Lattner2195fc42007-02-24 00:55:48 +00001396 setName(Name);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001397}
1398
1399ShuffleVectorInst::ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001400 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001401 BasicBlock *InsertAtEnd)
Dan Gohmane5af8cd2009-08-25 23:27:45 +00001402: Instruction(VectorType::get(cast<VectorType>(V1->getType())->getElementType(),
1403 cast<VectorType>(Mask->getType())->getNumElements()),
1404 ShuffleVector,
1405 OperandTraits<ShuffleVectorInst>::op_begin(this),
1406 OperandTraits<ShuffleVectorInst>::operands(this),
1407 InsertAtEnd) {
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001408 assert(isValidOperands(V1, V2, Mask) &&
1409 "Invalid shuffle vector instruction operands!");
1410
Gabor Greif2d3024d2008-05-26 21:33:52 +00001411 Op<0>() = V1;
1412 Op<1>() = V2;
1413 Op<2>() = Mask;
Chris Lattner2195fc42007-02-24 00:55:48 +00001414 setName(Name);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001415}
1416
Mon P Wang25f01062008-11-10 04:46:22 +00001417bool ShuffleVectorInst::isValidOperands(const Value *V1, const Value *V2,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001418 const Value *Mask) {
Mon P Wang25f01062008-11-10 04:46:22 +00001419 if (!isa<VectorType>(V1->getType()) || V1->getType() != V2->getType())
Chris Lattnerf724e342008-03-02 05:28:33 +00001420 return false;
1421
1422 const VectorType *MaskTy = dyn_cast<VectorType>(Mask->getType());
1423 if (!isa<Constant>(Mask) || MaskTy == 0 ||
Owen Anderson55f1c092009-08-13 21:58:54 +00001424 MaskTy->getElementType() != Type::getInt32Ty(V1->getContext()))
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001425 return false;
1426 return true;
1427}
1428
Chris Lattnerf724e342008-03-02 05:28:33 +00001429/// getMaskValue - Return the index from the shuffle mask for the specified
1430/// output result. This is either -1 if the element is undef or a number less
1431/// than 2*numelements.
1432int ShuffleVectorInst::getMaskValue(unsigned i) const {
1433 const Constant *Mask = cast<Constant>(getOperand(2));
1434 if (isa<UndefValue>(Mask)) return -1;
1435 if (isa<ConstantAggregateZero>(Mask)) return 0;
1436 const ConstantVector *MaskCV = cast<ConstantVector>(Mask);
1437 assert(i < MaskCV->getNumOperands() && "Index out of range");
1438
1439 if (isa<UndefValue>(MaskCV->getOperand(i)))
1440 return -1;
1441 return cast<ConstantInt>(MaskCV->getOperand(i))->getZExtValue();
1442}
1443
Dan Gohman12fce772008-05-15 19:50:34 +00001444//===----------------------------------------------------------------------===//
Dan Gohman0752bff2008-05-23 00:36:11 +00001445// InsertValueInst Class
1446//===----------------------------------------------------------------------===//
1447
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001448void InsertValueInst::init(Value *Agg, Value *Val, const unsigned *Idx,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001449 unsigned NumIdx, const Twine &Name) {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001450 assert(NumOperands == 2 && "NumOperands not initialized?");
1451 Op<0>() = Agg;
1452 Op<1>() = Val;
Dan Gohman0752bff2008-05-23 00:36:11 +00001453
Dan Gohman1ecaf452008-05-31 00:58:22 +00001454 Indices.insert(Indices.end(), Idx, Idx + NumIdx);
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001455 setName(Name);
Dan Gohman0752bff2008-05-23 00:36:11 +00001456}
1457
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001458void InsertValueInst::init(Value *Agg, Value *Val, unsigned Idx,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001459 const Twine &Name) {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001460 assert(NumOperands == 2 && "NumOperands not initialized?");
1461 Op<0>() = Agg;
1462 Op<1>() = Val;
1463
1464 Indices.push_back(Idx);
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001465 setName(Name);
Dan Gohman0752bff2008-05-23 00:36:11 +00001466}
1467
1468InsertValueInst::InsertValueInst(const InsertValueInst &IVI)
Gabor Greife9408e62008-05-27 11:03:29 +00001469 : Instruction(IVI.getType(), InsertValue,
Dan Gohman1ecaf452008-05-31 00:58:22 +00001470 OperandTraits<InsertValueInst>::op_begin(this), 2),
1471 Indices(IVI.Indices) {
Dan Gohmand8ca05f2008-06-17 23:25:49 +00001472 Op<0>() = IVI.getOperand(0);
1473 Op<1>() = IVI.getOperand(1);
Dan Gohmanc8a27f22009-08-25 22:11:20 +00001474 SubclassOptionalData = IVI.SubclassOptionalData;
Dan Gohman0752bff2008-05-23 00:36:11 +00001475}
1476
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001477InsertValueInst::InsertValueInst(Value *Agg,
1478 Value *Val,
1479 unsigned Idx,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001480 const Twine &Name,
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001481 Instruction *InsertBefore)
1482 : Instruction(Agg->getType(), InsertValue,
1483 OperandTraits<InsertValueInst>::op_begin(this),
1484 2, InsertBefore) {
1485 init(Agg, Val, Idx, Name);
1486}
1487
1488InsertValueInst::InsertValueInst(Value *Agg,
1489 Value *Val,
1490 unsigned Idx,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001491 const Twine &Name,
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001492 BasicBlock *InsertAtEnd)
1493 : Instruction(Agg->getType(), InsertValue,
1494 OperandTraits<InsertValueInst>::op_begin(this),
1495 2, InsertAtEnd) {
1496 init(Agg, Val, Idx, Name);
1497}
1498
Dan Gohman0752bff2008-05-23 00:36:11 +00001499//===----------------------------------------------------------------------===//
Dan Gohman12fce772008-05-15 19:50:34 +00001500// ExtractValueInst Class
1501//===----------------------------------------------------------------------===//
1502
Gabor Greifcbcc4952008-06-06 21:06:32 +00001503void ExtractValueInst::init(const unsigned *Idx, unsigned NumIdx,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001504 const Twine &Name) {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001505 assert(NumOperands == 1 && "NumOperands not initialized?");
Dan Gohman0752bff2008-05-23 00:36:11 +00001506
Dan Gohman1ecaf452008-05-31 00:58:22 +00001507 Indices.insert(Indices.end(), Idx, Idx + NumIdx);
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001508 setName(Name);
Dan Gohman0752bff2008-05-23 00:36:11 +00001509}
1510
Daniel Dunbar4975db62009-07-25 04:41:11 +00001511void ExtractValueInst::init(unsigned Idx, const Twine &Name) {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001512 assert(NumOperands == 1 && "NumOperands not initialized?");
Dan Gohman1ecaf452008-05-31 00:58:22 +00001513
1514 Indices.push_back(Idx);
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001515 setName(Name);
Dan Gohman0752bff2008-05-23 00:36:11 +00001516}
1517
1518ExtractValueInst::ExtractValueInst(const ExtractValueInst &EVI)
Gabor Greif21ba1842008-06-06 20:28:12 +00001519 : UnaryInstruction(EVI.getType(), ExtractValue, EVI.getOperand(0)),
Dan Gohman1ecaf452008-05-31 00:58:22 +00001520 Indices(EVI.Indices) {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00001521 SubclassOptionalData = EVI.SubclassOptionalData;
Dan Gohman0752bff2008-05-23 00:36:11 +00001522}
1523
Dan Gohman12fce772008-05-15 19:50:34 +00001524// getIndexedType - Returns the type of the element that would be extracted
1525// with an extractvalue instruction with the specified parameters.
1526//
1527// A null type is returned if the indices are invalid for the specified
1528// pointer type.
1529//
1530const Type* ExtractValueInst::getIndexedType(const Type *Agg,
Dan Gohman1ecaf452008-05-31 00:58:22 +00001531 const unsigned *Idxs,
Dan Gohman12fce772008-05-15 19:50:34 +00001532 unsigned NumIdx) {
1533 unsigned CurIdx = 0;
1534 for (; CurIdx != NumIdx; ++CurIdx) {
1535 const CompositeType *CT = dyn_cast<CompositeType>(Agg);
Dan Gohman1ecaf452008-05-31 00:58:22 +00001536 if (!CT || isa<PointerType>(CT) || isa<VectorType>(CT)) return 0;
1537 unsigned Index = Idxs[CurIdx];
Dan Gohman12fce772008-05-15 19:50:34 +00001538 if (!CT->indexValid(Index)) return 0;
1539 Agg = CT->getTypeAtIndex(Index);
1540
1541 // If the new type forwards to another type, then it is in the middle
1542 // of being refined to another type (and hence, may have dropped all
1543 // references to what it was using before). So, use the new forwarded
1544 // type.
1545 if (const Type *Ty = Agg->getForwardedType())
1546 Agg = Ty;
1547 }
1548 return CurIdx == NumIdx ? Agg : 0;
1549}
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001550
Dan Gohman4a3125b2008-06-17 21:07:55 +00001551const Type* ExtractValueInst::getIndexedType(const Type *Agg,
Dan Gohmand87e8132008-06-20 00:47:44 +00001552 unsigned Idx) {
1553 return getIndexedType(Agg, &Idx, 1);
Dan Gohman4a3125b2008-06-17 21:07:55 +00001554}
1555
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001556//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001557// BinaryOperator Class
1558//===----------------------------------------------------------------------===//
1559
Dan Gohmana5b96452009-06-04 22:49:04 +00001560/// AdjustIType - Map Add, Sub, and Mul to FAdd, FSub, and FMul when the
1561/// type is floating-point, to help provide compatibility with an older API.
1562///
1563static BinaryOperator::BinaryOps AdjustIType(BinaryOperator::BinaryOps iType,
1564 const Type *Ty) {
1565 // API compatibility: Adjust integer opcodes to floating-point opcodes.
1566 if (Ty->isFPOrFPVector()) {
1567 if (iType == BinaryOperator::Add) iType = BinaryOperator::FAdd;
1568 else if (iType == BinaryOperator::Sub) iType = BinaryOperator::FSub;
1569 else if (iType == BinaryOperator::Mul) iType = BinaryOperator::FMul;
1570 }
1571 return iType;
1572}
1573
Chris Lattner2195fc42007-02-24 00:55:48 +00001574BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001575 const Type *Ty, const Twine &Name,
Chris Lattner2195fc42007-02-24 00:55:48 +00001576 Instruction *InsertBefore)
Dan Gohmana5b96452009-06-04 22:49:04 +00001577 : Instruction(Ty, AdjustIType(iType, Ty),
Gabor Greiff6caff662008-05-10 08:32:32 +00001578 OperandTraits<BinaryOperator>::op_begin(this),
1579 OperandTraits<BinaryOperator>::operands(this),
1580 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001581 Op<0>() = S1;
1582 Op<1>() = S2;
Dan Gohmana5b96452009-06-04 22:49:04 +00001583 init(AdjustIType(iType, Ty));
Chris Lattner2195fc42007-02-24 00:55:48 +00001584 setName(Name);
1585}
1586
1587BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001588 const Type *Ty, const Twine &Name,
Chris Lattner2195fc42007-02-24 00:55:48 +00001589 BasicBlock *InsertAtEnd)
Dan Gohmana5b96452009-06-04 22:49:04 +00001590 : Instruction(Ty, AdjustIType(iType, Ty),
Gabor Greiff6caff662008-05-10 08:32:32 +00001591 OperandTraits<BinaryOperator>::op_begin(this),
1592 OperandTraits<BinaryOperator>::operands(this),
1593 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001594 Op<0>() = S1;
1595 Op<1>() = S2;
Dan Gohmana5b96452009-06-04 22:49:04 +00001596 init(AdjustIType(iType, Ty));
Chris Lattner2195fc42007-02-24 00:55:48 +00001597 setName(Name);
1598}
1599
1600
1601void BinaryOperator::init(BinaryOps iType) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001602 Value *LHS = getOperand(0), *RHS = getOperand(1);
Chris Lattnerf14c76c2007-02-01 04:59:37 +00001603 LHS = LHS; RHS = RHS; // Silence warnings.
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001604 assert(LHS->getType() == RHS->getType() &&
1605 "Binary operator operand types must match!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001606#ifndef NDEBUG
1607 switch (iType) {
1608 case Add: case Sub:
Dan Gohmana5b96452009-06-04 22:49:04 +00001609 case Mul:
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001610 assert(getType() == LHS->getType() &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001611 "Arithmetic operation should return same type as operands!");
Dan Gohmana5b96452009-06-04 22:49:04 +00001612 assert(getType()->isIntOrIntVector() &&
1613 "Tried to create an integer operation on a non-integer type!");
1614 break;
1615 case FAdd: case FSub:
1616 case FMul:
1617 assert(getType() == LHS->getType() &&
1618 "Arithmetic operation should return same type as operands!");
1619 assert(getType()->isFPOrFPVector() &&
1620 "Tried to create a floating-point operation on a "
1621 "non-floating-point type!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001622 break;
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001623 case UDiv:
1624 case SDiv:
1625 assert(getType() == LHS->getType() &&
1626 "Arithmetic operation should return same type as operands!");
Reid Spencerd84d35b2007-02-15 02:26:10 +00001627 assert((getType()->isInteger() || (isa<VectorType>(getType()) &&
1628 cast<VectorType>(getType())->getElementType()->isInteger())) &&
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001629 "Incorrect operand type (not integer) for S/UDIV");
1630 break;
1631 case FDiv:
1632 assert(getType() == LHS->getType() &&
1633 "Arithmetic operation should return same type as operands!");
Dan Gohman7889f2b2009-06-15 22:25:12 +00001634 assert(getType()->isFPOrFPVector() &&
1635 "Incorrect operand type (not floating point) for FDIV");
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001636 break;
Reid Spencer7eb55b32006-11-02 01:53:59 +00001637 case URem:
1638 case SRem:
1639 assert(getType() == LHS->getType() &&
1640 "Arithmetic operation should return same type as operands!");
Reid Spencerd84d35b2007-02-15 02:26:10 +00001641 assert((getType()->isInteger() || (isa<VectorType>(getType()) &&
1642 cast<VectorType>(getType())->getElementType()->isInteger())) &&
Reid Spencer7eb55b32006-11-02 01:53:59 +00001643 "Incorrect operand type (not integer) for S/UREM");
1644 break;
1645 case FRem:
1646 assert(getType() == LHS->getType() &&
1647 "Arithmetic operation should return same type as operands!");
Dan Gohman7889f2b2009-06-15 22:25:12 +00001648 assert(getType()->isFPOrFPVector() &&
1649 "Incorrect operand type (not floating point) for FREM");
Reid Spencer7eb55b32006-11-02 01:53:59 +00001650 break;
Reid Spencer2341c222007-02-02 02:16:23 +00001651 case Shl:
1652 case LShr:
1653 case AShr:
1654 assert(getType() == LHS->getType() &&
1655 "Shift operation should return same type as operands!");
Nate Begemanfecbc8c2008-07-29 15:49:41 +00001656 assert((getType()->isInteger() ||
1657 (isa<VectorType>(getType()) &&
1658 cast<VectorType>(getType())->getElementType()->isInteger())) &&
1659 "Tried to create a shift operation on a non-integral type!");
Reid Spencer2341c222007-02-02 02:16:23 +00001660 break;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001661 case And: case Or:
1662 case Xor:
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001663 assert(getType() == LHS->getType() &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001664 "Logical operation should return same type as operands!");
Chris Lattner03c49532007-01-15 02:27:26 +00001665 assert((getType()->isInteger() ||
Reid Spencerd84d35b2007-02-15 02:26:10 +00001666 (isa<VectorType>(getType()) &&
1667 cast<VectorType>(getType())->getElementType()->isInteger())) &&
Misha Brukman3852f652005-01-27 06:46:38 +00001668 "Tried to create a logical operation on a non-integral type!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001669 break;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001670 default:
1671 break;
1672 }
1673#endif
1674}
1675
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001676BinaryOperator *BinaryOperator::Create(BinaryOps Op, Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001677 const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001678 Instruction *InsertBefore) {
1679 assert(S1->getType() == S2->getType() &&
1680 "Cannot create binary operator with two operands of differing type!");
Reid Spencer266e42b2006-12-23 06:05:41 +00001681 return new BinaryOperator(Op, S1, S2, S1->getType(), Name, InsertBefore);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001682}
1683
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001684BinaryOperator *BinaryOperator::Create(BinaryOps Op, Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001685 const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001686 BasicBlock *InsertAtEnd) {
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001687 BinaryOperator *Res = Create(Op, S1, S2, Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001688 InsertAtEnd->getInstList().push_back(Res);
1689 return Res;
1690}
1691
Dan Gohman5476cfd2009-08-12 16:23:25 +00001692BinaryOperator *BinaryOperator::CreateNeg(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001693 Instruction *InsertBefore) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001694 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Reid Spencer2eadb532007-01-21 00:29:26 +00001695 return new BinaryOperator(Instruction::Sub,
1696 zero, Op,
1697 Op->getType(), Name, InsertBefore);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001698}
1699
Dan Gohman5476cfd2009-08-12 16:23:25 +00001700BinaryOperator *BinaryOperator::CreateNeg(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001701 BasicBlock *InsertAtEnd) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001702 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Reid Spencer2eadb532007-01-21 00:29:26 +00001703 return new BinaryOperator(Instruction::Sub,
1704 zero, Op,
1705 Op->getType(), Name, InsertAtEnd);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001706}
1707
Dan Gohman5476cfd2009-08-12 16:23:25 +00001708BinaryOperator *BinaryOperator::CreateFNeg(Value *Op, const Twine &Name,
Dan Gohmana5b96452009-06-04 22:49:04 +00001709 Instruction *InsertBefore) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001710 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Dan Gohmana5b96452009-06-04 22:49:04 +00001711 return new BinaryOperator(Instruction::FSub,
1712 zero, Op,
1713 Op->getType(), Name, InsertBefore);
1714}
1715
Dan Gohman5476cfd2009-08-12 16:23:25 +00001716BinaryOperator *BinaryOperator::CreateFNeg(Value *Op, const Twine &Name,
Dan Gohmana5b96452009-06-04 22:49:04 +00001717 BasicBlock *InsertAtEnd) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001718 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Dan Gohmana5b96452009-06-04 22:49:04 +00001719 return new BinaryOperator(Instruction::FSub,
1720 zero, Op,
1721 Op->getType(), Name, InsertAtEnd);
1722}
1723
Dan Gohman5476cfd2009-08-12 16:23:25 +00001724BinaryOperator *BinaryOperator::CreateNot(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001725 Instruction *InsertBefore) {
Chris Lattnere8e7ac42006-03-25 21:54:21 +00001726 Constant *C;
Reid Spencerd84d35b2007-02-15 02:26:10 +00001727 if (const VectorType *PTy = dyn_cast<VectorType>(Op->getType())) {
Owen Anderson5a1acd92009-07-31 20:28:14 +00001728 C = Constant::getAllOnesValue(PTy->getElementType());
Owen Anderson4aa32952009-07-28 21:19:26 +00001729 C = ConstantVector::get(
Owen Andersonf945a9e2009-07-15 21:51:10 +00001730 std::vector<Constant*>(PTy->getNumElements(), C));
Chris Lattnere8e7ac42006-03-25 21:54:21 +00001731 } else {
Owen Anderson5a1acd92009-07-31 20:28:14 +00001732 C = Constant::getAllOnesValue(Op->getType());
Chris Lattnere8e7ac42006-03-25 21:54:21 +00001733 }
1734
1735 return new BinaryOperator(Instruction::Xor, Op, C,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001736 Op->getType(), Name, InsertBefore);
1737}
1738
Dan Gohman5476cfd2009-08-12 16:23:25 +00001739BinaryOperator *BinaryOperator::CreateNot(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001740 BasicBlock *InsertAtEnd) {
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001741 Constant *AllOnes;
Reid Spencerd84d35b2007-02-15 02:26:10 +00001742 if (const VectorType *PTy = dyn_cast<VectorType>(Op->getType())) {
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001743 // Create a vector of all ones values.
Owen Anderson5a1acd92009-07-31 20:28:14 +00001744 Constant *Elt = Constant::getAllOnesValue(PTy->getElementType());
Owen Anderson4aa32952009-07-28 21:19:26 +00001745 AllOnes = ConstantVector::get(
Owen Andersonf945a9e2009-07-15 21:51:10 +00001746 std::vector<Constant*>(PTy->getNumElements(), Elt));
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001747 } else {
Owen Anderson5a1acd92009-07-31 20:28:14 +00001748 AllOnes = Constant::getAllOnesValue(Op->getType());
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001749 }
1750
1751 return new BinaryOperator(Instruction::Xor, Op, AllOnes,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001752 Op->getType(), Name, InsertAtEnd);
1753}
1754
1755
1756// isConstantAllOnes - Helper function for several functions below
1757static inline bool isConstantAllOnes(const Value *V) {
Chris Lattner1edec382007-06-15 06:04:24 +00001758 if (const ConstantInt *CI = dyn_cast<ConstantInt>(V))
1759 return CI->isAllOnesValue();
1760 if (const ConstantVector *CV = dyn_cast<ConstantVector>(V))
1761 return CV->isAllOnesValue();
1762 return false;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001763}
1764
Owen Andersonbb2501b2009-07-13 22:18:28 +00001765bool BinaryOperator::isNeg(const Value *V) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001766 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1767 if (Bop->getOpcode() == Instruction::Sub)
Owen Andersonbb2501b2009-07-13 22:18:28 +00001768 if (Constant* C = dyn_cast<Constant>(Bop->getOperand(0)))
1769 return C->isNegativeZeroValue();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001770 return false;
1771}
1772
Owen Andersonbb2501b2009-07-13 22:18:28 +00001773bool BinaryOperator::isFNeg(const Value *V) {
Dan Gohmana5b96452009-06-04 22:49:04 +00001774 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1775 if (Bop->getOpcode() == Instruction::FSub)
Owen Andersonbb2501b2009-07-13 22:18:28 +00001776 if (Constant* C = dyn_cast<Constant>(Bop->getOperand(0)))
Dan Gohman11ff5702009-09-11 00:05:10 +00001777 return C->isNegativeZeroValue();
Dan Gohmana5b96452009-06-04 22:49:04 +00001778 return false;
1779}
1780
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001781bool BinaryOperator::isNot(const Value *V) {
1782 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1783 return (Bop->getOpcode() == Instruction::Xor &&
1784 (isConstantAllOnes(Bop->getOperand(1)) ||
1785 isConstantAllOnes(Bop->getOperand(0))));
1786 return false;
1787}
1788
Chris Lattner2c7d1772005-04-24 07:28:37 +00001789Value *BinaryOperator::getNegArgument(Value *BinOp) {
Chris Lattner2c7d1772005-04-24 07:28:37 +00001790 return cast<BinaryOperator>(BinOp)->getOperand(1);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001791}
1792
Chris Lattner2c7d1772005-04-24 07:28:37 +00001793const Value *BinaryOperator::getNegArgument(const Value *BinOp) {
1794 return getNegArgument(const_cast<Value*>(BinOp));
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001795}
1796
Dan Gohmana5b96452009-06-04 22:49:04 +00001797Value *BinaryOperator::getFNegArgument(Value *BinOp) {
Dan Gohmana5b96452009-06-04 22:49:04 +00001798 return cast<BinaryOperator>(BinOp)->getOperand(1);
1799}
1800
1801const Value *BinaryOperator::getFNegArgument(const Value *BinOp) {
1802 return getFNegArgument(const_cast<Value*>(BinOp));
1803}
1804
Chris Lattner2c7d1772005-04-24 07:28:37 +00001805Value *BinaryOperator::getNotArgument(Value *BinOp) {
1806 assert(isNot(BinOp) && "getNotArgument on non-'not' instruction!");
1807 BinaryOperator *BO = cast<BinaryOperator>(BinOp);
1808 Value *Op0 = BO->getOperand(0);
1809 Value *Op1 = BO->getOperand(1);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001810 if (isConstantAllOnes(Op0)) return Op1;
1811
1812 assert(isConstantAllOnes(Op1));
1813 return Op0;
1814}
1815
Chris Lattner2c7d1772005-04-24 07:28:37 +00001816const Value *BinaryOperator::getNotArgument(const Value *BinOp) {
1817 return getNotArgument(const_cast<Value*>(BinOp));
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001818}
1819
1820
1821// swapOperands - Exchange the two operands to this instruction. This
1822// instruction is safe to use on any binary instruction and does not
1823// modify the semantics of the instruction. If the instruction is
1824// order dependent (SetLT f.e.) the opcode is changed.
1825//
1826bool BinaryOperator::swapOperands() {
Reid Spencer266e42b2006-12-23 06:05:41 +00001827 if (!isCommutative())
1828 return true; // Can't commute operands
Gabor Greif5ef74042008-05-13 22:51:52 +00001829 Op<0>().swap(Op<1>());
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001830 return false;
1831}
1832
Dan Gohman1b849082009-09-07 23:54:19 +00001833void BinaryOperator::setHasNoUnsignedWrap(bool b) {
1834 cast<OverflowingBinaryOperator>(this)->setHasNoUnsignedWrap(b);
1835}
1836
1837void BinaryOperator::setHasNoSignedWrap(bool b) {
1838 cast<OverflowingBinaryOperator>(this)->setHasNoSignedWrap(b);
1839}
1840
1841void BinaryOperator::setIsExact(bool b) {
1842 cast<SDivOperator>(this)->setIsExact(b);
1843}
1844
Nick Lewycky28a5f252009-09-27 21:33:04 +00001845bool BinaryOperator::hasNoUnsignedWrap() const {
1846 return cast<OverflowingBinaryOperator>(this)->hasNoUnsignedWrap();
1847}
1848
1849bool BinaryOperator::hasNoSignedWrap() const {
1850 return cast<OverflowingBinaryOperator>(this)->hasNoSignedWrap();
1851}
1852
1853bool BinaryOperator::isExact() const {
1854 return cast<SDivOperator>(this)->isExact();
1855}
1856
Chris Lattnerb0b8ddd2006-09-18 04:54:57 +00001857//===----------------------------------------------------------------------===//
1858// CastInst Class
1859//===----------------------------------------------------------------------===//
1860
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001861// Just determine if this cast only deals with integral->integral conversion.
1862bool CastInst::isIntegerCast() const {
1863 switch (getOpcode()) {
1864 default: return false;
1865 case Instruction::ZExt:
1866 case Instruction::SExt:
1867 case Instruction::Trunc:
1868 return true;
1869 case Instruction::BitCast:
Chris Lattner03c49532007-01-15 02:27:26 +00001870 return getOperand(0)->getType()->isInteger() && getType()->isInteger();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001871 }
Chris Lattnerb0b8ddd2006-09-18 04:54:57 +00001872}
1873
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001874bool CastInst::isLosslessCast() const {
1875 // Only BitCast can be lossless, exit fast if we're not BitCast
1876 if (getOpcode() != Instruction::BitCast)
1877 return false;
1878
1879 // Identity cast is always lossless
1880 const Type* SrcTy = getOperand(0)->getType();
1881 const Type* DstTy = getType();
1882 if (SrcTy == DstTy)
1883 return true;
1884
Reid Spencer8d9336d2006-12-31 05:26:44 +00001885 // Pointer to pointer is always lossless.
1886 if (isa<PointerType>(SrcTy))
1887 return isa<PointerType>(DstTy);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001888 return false; // Other types have no identity values
1889}
1890
1891/// This function determines if the CastInst does not require any bits to be
1892/// changed in order to effect the cast. Essentially, it identifies cases where
1893/// no code gen is necessary for the cast, hence the name no-op cast. For
1894/// example, the following are all no-op casts:
Dan Gohmane9bc2ba2008-05-12 16:34:30 +00001895/// # bitcast i32* %x to i8*
1896/// # bitcast <2 x i32> %x to <4 x i16>
1897/// # ptrtoint i32* %x to i32 ; on 32-bit plaforms only
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001898/// @brief Determine if a cast is a no-op.
1899bool CastInst::isNoopCast(const Type *IntPtrTy) const {
1900 switch (getOpcode()) {
1901 default:
1902 assert(!"Invalid CastOp");
1903 case Instruction::Trunc:
1904 case Instruction::ZExt:
1905 case Instruction::SExt:
1906 case Instruction::FPTrunc:
1907 case Instruction::FPExt:
1908 case Instruction::UIToFP:
1909 case Instruction::SIToFP:
1910 case Instruction::FPToUI:
1911 case Instruction::FPToSI:
1912 return false; // These always modify bits
1913 case Instruction::BitCast:
1914 return true; // BitCast never modifies bits.
1915 case Instruction::PtrToInt:
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001916 return IntPtrTy->getScalarSizeInBits() ==
1917 getType()->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001918 case Instruction::IntToPtr:
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001919 return IntPtrTy->getScalarSizeInBits() ==
1920 getOperand(0)->getType()->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001921 }
1922}
1923
1924/// This function determines if a pair of casts can be eliminated and what
1925/// opcode should be used in the elimination. This assumes that there are two
1926/// instructions like this:
1927/// * %F = firstOpcode SrcTy %x to MidTy
1928/// * %S = secondOpcode MidTy %F to DstTy
1929/// The function returns a resultOpcode so these two casts can be replaced with:
1930/// * %Replacement = resultOpcode %SrcTy %x to DstTy
1931/// If no such cast is permited, the function returns 0.
1932unsigned CastInst::isEliminableCastPair(
1933 Instruction::CastOps firstOp, Instruction::CastOps secondOp,
1934 const Type *SrcTy, const Type *MidTy, const Type *DstTy, const Type *IntPtrTy)
1935{
1936 // Define the 144 possibilities for these two cast instructions. The values
1937 // in this matrix determine what to do in a given situation and select the
1938 // case in the switch below. The rows correspond to firstOp, the columns
1939 // correspond to secondOp. In looking at the table below, keep in mind
1940 // the following cast properties:
1941 //
1942 // Size Compare Source Destination
1943 // Operator Src ? Size Type Sign Type Sign
1944 // -------- ------------ ------------------- ---------------------
1945 // TRUNC > Integer Any Integral Any
1946 // ZEXT < Integral Unsigned Integer Any
1947 // SEXT < Integral Signed Integer Any
1948 // FPTOUI n/a FloatPt n/a Integral Unsigned
1949 // FPTOSI n/a FloatPt n/a Integral Signed
1950 // UITOFP n/a Integral Unsigned FloatPt n/a
1951 // SITOFP n/a Integral Signed FloatPt n/a
1952 // FPTRUNC > FloatPt n/a FloatPt n/a
1953 // FPEXT < FloatPt n/a FloatPt n/a
1954 // PTRTOINT n/a Pointer n/a Integral Unsigned
1955 // INTTOPTR n/a Integral Unsigned Pointer n/a
1956 // BITCONVERT = FirstClass n/a FirstClass n/a
Chris Lattner6f6b4972006-12-05 23:43:59 +00001957 //
1958 // NOTE: some transforms are safe, but we consider them to be non-profitable.
Dan Gohman4fe64de2009-06-14 23:30:43 +00001959 // For example, we could merge "fptoui double to i32" + "zext i32 to i64",
1960 // into "fptoui double to i64", but this loses information about the range
Chris Lattner6f6b4972006-12-05 23:43:59 +00001961 // of the produced value (we no longer know the top-part is all zeros).
1962 // Further this conversion is often much more expensive for typical hardware,
1963 // and causes issues when building libgcc. We disallow fptosi+sext for the
1964 // same reason.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001965 const unsigned numCastOps =
1966 Instruction::CastOpsEnd - Instruction::CastOpsBegin;
1967 static const uint8_t CastResults[numCastOps][numCastOps] = {
1968 // T F F U S F F P I B -+
1969 // R Z S P P I I T P 2 N T |
1970 // U E E 2 2 2 2 R E I T C +- secondOp
1971 // N X X U S F F N X N 2 V |
1972 // C T T I I P P C T T P T -+
1973 { 1, 0, 0,99,99, 0, 0,99,99,99, 0, 3 }, // Trunc -+
1974 { 8, 1, 9,99,99, 2, 0,99,99,99, 2, 3 }, // ZExt |
1975 { 8, 0, 1,99,99, 0, 2,99,99,99, 0, 3 }, // SExt |
Chris Lattner6f6b4972006-12-05 23:43:59 +00001976 { 0, 0, 0,99,99, 0, 0,99,99,99, 0, 3 }, // FPToUI |
1977 { 0, 0, 0,99,99, 0, 0,99,99,99, 0, 3 }, // FPToSI |
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001978 { 99,99,99, 0, 0,99,99, 0, 0,99,99, 4 }, // UIToFP +- firstOp
1979 { 99,99,99, 0, 0,99,99, 0, 0,99,99, 4 }, // SIToFP |
1980 { 99,99,99, 0, 0,99,99, 1, 0,99,99, 4 }, // FPTrunc |
1981 { 99,99,99, 2, 2,99,99,10, 2,99,99, 4 }, // FPExt |
1982 { 1, 0, 0,99,99, 0, 0,99,99,99, 7, 3 }, // PtrToInt |
1983 { 99,99,99,99,99,99,99,99,99,13,99,12 }, // IntToPtr |
1984 { 5, 5, 5, 6, 6, 5, 5, 6, 6,11, 5, 1 }, // BitCast -+
1985 };
1986
1987 int ElimCase = CastResults[firstOp-Instruction::CastOpsBegin]
1988 [secondOp-Instruction::CastOpsBegin];
1989 switch (ElimCase) {
1990 case 0:
1991 // categorically disallowed
1992 return 0;
1993 case 1:
1994 // allowed, use first cast's opcode
1995 return firstOp;
1996 case 2:
1997 // allowed, use second cast's opcode
1998 return secondOp;
1999 case 3:
2000 // no-op cast in second op implies firstOp as long as the DestTy
2001 // is integer
Chris Lattner03c49532007-01-15 02:27:26 +00002002 if (DstTy->isInteger())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002003 return firstOp;
2004 return 0;
2005 case 4:
2006 // no-op cast in second op implies firstOp as long as the DestTy
2007 // is floating point
2008 if (DstTy->isFloatingPoint())
2009 return firstOp;
2010 return 0;
2011 case 5:
2012 // no-op cast in first op implies secondOp as long as the SrcTy
2013 // is an integer
Chris Lattner03c49532007-01-15 02:27:26 +00002014 if (SrcTy->isInteger())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002015 return secondOp;
2016 return 0;
2017 case 6:
2018 // no-op cast in first op implies secondOp as long as the SrcTy
2019 // is a floating point
2020 if (SrcTy->isFloatingPoint())
2021 return secondOp;
2022 return 0;
2023 case 7: {
2024 // ptrtoint, inttoptr -> bitcast (ptr -> ptr) if int size is >= ptr size
Dan Gohman9413de12009-07-21 23:19:40 +00002025 if (!IntPtrTy)
2026 return 0;
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002027 unsigned PtrSize = IntPtrTy->getScalarSizeInBits();
2028 unsigned MidSize = MidTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002029 if (MidSize >= PtrSize)
2030 return Instruction::BitCast;
2031 return 0;
2032 }
2033 case 8: {
2034 // ext, trunc -> bitcast, if the SrcTy and DstTy are same size
2035 // ext, trunc -> ext, if sizeof(SrcTy) < sizeof(DstTy)
2036 // ext, trunc -> trunc, if sizeof(SrcTy) > sizeof(DstTy)
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002037 unsigned SrcSize = SrcTy->getScalarSizeInBits();
2038 unsigned DstSize = DstTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002039 if (SrcSize == DstSize)
2040 return Instruction::BitCast;
2041 else if (SrcSize < DstSize)
2042 return firstOp;
2043 return secondOp;
2044 }
2045 case 9: // zext, sext -> zext, because sext can't sign extend after zext
2046 return Instruction::ZExt;
2047 case 10:
2048 // fpext followed by ftrunc is allowed if the bit size returned to is
2049 // the same as the original, in which case its just a bitcast
2050 if (SrcTy == DstTy)
2051 return Instruction::BitCast;
2052 return 0; // If the types are not the same we can't eliminate it.
2053 case 11:
2054 // bitcast followed by ptrtoint is allowed as long as the bitcast
2055 // is a pointer to pointer cast.
2056 if (isa<PointerType>(SrcTy) && isa<PointerType>(MidTy))
2057 return secondOp;
2058 return 0;
2059 case 12:
2060 // inttoptr, bitcast -> intptr if bitcast is a ptr to ptr cast
2061 if (isa<PointerType>(MidTy) && isa<PointerType>(DstTy))
2062 return firstOp;
2063 return 0;
2064 case 13: {
2065 // inttoptr, ptrtoint -> bitcast if SrcSize<=PtrSize and SrcSize==DstSize
Dan Gohman9413de12009-07-21 23:19:40 +00002066 if (!IntPtrTy)
2067 return 0;
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002068 unsigned PtrSize = IntPtrTy->getScalarSizeInBits();
2069 unsigned SrcSize = SrcTy->getScalarSizeInBits();
2070 unsigned DstSize = DstTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002071 if (SrcSize <= PtrSize && SrcSize == DstSize)
2072 return Instruction::BitCast;
2073 return 0;
2074 }
2075 case 99:
2076 // cast combination can't happen (error in input). This is for all cases
2077 // where the MidTy is not the same for the two cast instructions.
2078 assert(!"Invalid Cast Combination");
2079 return 0;
2080 default:
2081 assert(!"Error in CastResults table!!!");
2082 return 0;
2083 }
2084 return 0;
2085}
2086
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002087CastInst *CastInst::Create(Instruction::CastOps op, Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002088 const Twine &Name, Instruction *InsertBefore) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002089 // Construct and return the appropriate CastInst subclass
2090 switch (op) {
2091 case Trunc: return new TruncInst (S, Ty, Name, InsertBefore);
2092 case ZExt: return new ZExtInst (S, Ty, Name, InsertBefore);
2093 case SExt: return new SExtInst (S, Ty, Name, InsertBefore);
2094 case FPTrunc: return new FPTruncInst (S, Ty, Name, InsertBefore);
2095 case FPExt: return new FPExtInst (S, Ty, Name, InsertBefore);
2096 case UIToFP: return new UIToFPInst (S, Ty, Name, InsertBefore);
2097 case SIToFP: return new SIToFPInst (S, Ty, Name, InsertBefore);
2098 case FPToUI: return new FPToUIInst (S, Ty, Name, InsertBefore);
2099 case FPToSI: return new FPToSIInst (S, Ty, Name, InsertBefore);
2100 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertBefore);
2101 case IntToPtr: return new IntToPtrInst (S, Ty, Name, InsertBefore);
2102 case BitCast: return new BitCastInst (S, Ty, Name, InsertBefore);
2103 default:
2104 assert(!"Invalid opcode provided");
2105 }
2106 return 0;
2107}
2108
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002109CastInst *CastInst::Create(Instruction::CastOps op, Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002110 const Twine &Name, BasicBlock *InsertAtEnd) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002111 // Construct and return the appropriate CastInst subclass
2112 switch (op) {
2113 case Trunc: return new TruncInst (S, Ty, Name, InsertAtEnd);
2114 case ZExt: return new ZExtInst (S, Ty, Name, InsertAtEnd);
2115 case SExt: return new SExtInst (S, Ty, Name, InsertAtEnd);
2116 case FPTrunc: return new FPTruncInst (S, Ty, Name, InsertAtEnd);
2117 case FPExt: return new FPExtInst (S, Ty, Name, InsertAtEnd);
2118 case UIToFP: return new UIToFPInst (S, Ty, Name, InsertAtEnd);
2119 case SIToFP: return new SIToFPInst (S, Ty, Name, InsertAtEnd);
2120 case FPToUI: return new FPToUIInst (S, Ty, Name, InsertAtEnd);
2121 case FPToSI: return new FPToSIInst (S, Ty, Name, InsertAtEnd);
2122 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertAtEnd);
2123 case IntToPtr: return new IntToPtrInst (S, Ty, Name, InsertAtEnd);
2124 case BitCast: return new BitCastInst (S, Ty, Name, InsertAtEnd);
2125 default:
2126 assert(!"Invalid opcode provided");
2127 }
2128 return 0;
2129}
2130
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002131CastInst *CastInst::CreateZExtOrBitCast(Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002132 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002133 Instruction *InsertBefore) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002134 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002135 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
2136 return Create(Instruction::ZExt, S, Ty, Name, InsertBefore);
Reid Spencer5c140882006-12-04 20:17:56 +00002137}
2138
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002139CastInst *CastInst::CreateZExtOrBitCast(Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002140 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002141 BasicBlock *InsertAtEnd) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002142 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002143 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
2144 return Create(Instruction::ZExt, S, Ty, Name, InsertAtEnd);
Reid Spencer5c140882006-12-04 20:17:56 +00002145}
2146
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002147CastInst *CastInst::CreateSExtOrBitCast(Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002148 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002149 Instruction *InsertBefore) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002150 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002151 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
2152 return Create(Instruction::SExt, S, Ty, Name, InsertBefore);
Reid Spencer5c140882006-12-04 20:17:56 +00002153}
2154
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002155CastInst *CastInst::CreateSExtOrBitCast(Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002156 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002157 BasicBlock *InsertAtEnd) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002158 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002159 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
2160 return Create(Instruction::SExt, S, Ty, Name, InsertAtEnd);
Reid Spencer5c140882006-12-04 20:17:56 +00002161}
2162
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002163CastInst *CastInst::CreateTruncOrBitCast(Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002164 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002165 Instruction *InsertBefore) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002166 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002167 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
2168 return Create(Instruction::Trunc, S, Ty, Name, InsertBefore);
Reid Spencer5c140882006-12-04 20:17:56 +00002169}
2170
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002171CastInst *CastInst::CreateTruncOrBitCast(Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002172 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002173 BasicBlock *InsertAtEnd) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002174 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002175 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
2176 return Create(Instruction::Trunc, S, Ty, Name, InsertAtEnd);
Reid Spencer5c140882006-12-04 20:17:56 +00002177}
2178
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002179CastInst *CastInst::CreatePointerCast(Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002180 const Twine &Name,
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002181 BasicBlock *InsertAtEnd) {
2182 assert(isa<PointerType>(S->getType()) && "Invalid cast");
Chris Lattner03c49532007-01-15 02:27:26 +00002183 assert((Ty->isInteger() || isa<PointerType>(Ty)) &&
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002184 "Invalid cast");
2185
Chris Lattner03c49532007-01-15 02:27:26 +00002186 if (Ty->isInteger())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002187 return Create(Instruction::PtrToInt, S, Ty, Name, InsertAtEnd);
2188 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002189}
2190
2191/// @brief Create a BitCast or a PtrToInt cast instruction
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002192CastInst *CastInst::CreatePointerCast(Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002193 const Twine &Name,
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002194 Instruction *InsertBefore) {
2195 assert(isa<PointerType>(S->getType()) && "Invalid cast");
Chris Lattner03c49532007-01-15 02:27:26 +00002196 assert((Ty->isInteger() || isa<PointerType>(Ty)) &&
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002197 "Invalid cast");
2198
Chris Lattner03c49532007-01-15 02:27:26 +00002199 if (Ty->isInteger())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002200 return Create(Instruction::PtrToInt, S, Ty, Name, InsertBefore);
2201 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002202}
2203
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002204CastInst *CastInst::CreateIntegerCast(Value *C, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002205 bool isSigned, const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002206 Instruction *InsertBefore) {
Chris Lattner03c49532007-01-15 02:27:26 +00002207 assert(C->getType()->isInteger() && Ty->isInteger() && "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002208 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2209 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002210 Instruction::CastOps opcode =
2211 (SrcBits == DstBits ? Instruction::BitCast :
2212 (SrcBits > DstBits ? Instruction::Trunc :
2213 (isSigned ? Instruction::SExt : Instruction::ZExt)));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002214 return Create(opcode, C, Ty, Name, InsertBefore);
Reid Spencer7e933472006-12-12 00:49:44 +00002215}
2216
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002217CastInst *CastInst::CreateIntegerCast(Value *C, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002218 bool isSigned, const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002219 BasicBlock *InsertAtEnd) {
Dan Gohman7889f2b2009-06-15 22:25:12 +00002220 assert(C->getType()->isIntOrIntVector() && Ty->isIntOrIntVector() &&
2221 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002222 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2223 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002224 Instruction::CastOps opcode =
2225 (SrcBits == DstBits ? Instruction::BitCast :
2226 (SrcBits > DstBits ? Instruction::Trunc :
2227 (isSigned ? Instruction::SExt : Instruction::ZExt)));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002228 return Create(opcode, C, Ty, Name, InsertAtEnd);
Reid Spencer7e933472006-12-12 00:49:44 +00002229}
2230
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002231CastInst *CastInst::CreateFPCast(Value *C, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002232 const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002233 Instruction *InsertBefore) {
Dan Gohman7889f2b2009-06-15 22:25:12 +00002234 assert(C->getType()->isFPOrFPVector() && Ty->isFPOrFPVector() &&
Reid Spencer7e933472006-12-12 00:49:44 +00002235 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002236 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2237 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002238 Instruction::CastOps opcode =
2239 (SrcBits == DstBits ? Instruction::BitCast :
2240 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002241 return Create(opcode, C, Ty, Name, InsertBefore);
Reid Spencer7e933472006-12-12 00:49:44 +00002242}
2243
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002244CastInst *CastInst::CreateFPCast(Value *C, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002245 const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002246 BasicBlock *InsertAtEnd) {
Dan Gohman7889f2b2009-06-15 22:25:12 +00002247 assert(C->getType()->isFPOrFPVector() && Ty->isFPOrFPVector() &&
Reid Spencer7e933472006-12-12 00:49:44 +00002248 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002249 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2250 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002251 Instruction::CastOps opcode =
2252 (SrcBits == DstBits ? Instruction::BitCast :
2253 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002254 return Create(opcode, C, Ty, Name, InsertAtEnd);
Reid Spencer7e933472006-12-12 00:49:44 +00002255}
2256
Duncan Sands55e50902008-01-06 10:12:28 +00002257// Check whether it is valid to call getCastOpcode for these types.
2258// This routine must be kept in sync with getCastOpcode.
2259bool CastInst::isCastable(const Type *SrcTy, const Type *DestTy) {
2260 if (!SrcTy->isFirstClassType() || !DestTy->isFirstClassType())
2261 return false;
2262
2263 if (SrcTy == DestTy)
2264 return true;
2265
2266 // Get the bit sizes, we'll need these
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002267 unsigned SrcBits = SrcTy->getScalarSizeInBits(); // 0 for ptr
2268 unsigned DestBits = DestTy->getScalarSizeInBits(); // 0 for ptr
Duncan Sands55e50902008-01-06 10:12:28 +00002269
2270 // Run through the possibilities ...
Gabor Greif697e94c2008-05-15 10:04:30 +00002271 if (DestTy->isInteger()) { // Casting to integral
2272 if (SrcTy->isInteger()) { // Casting from integral
Duncan Sands55e50902008-01-06 10:12:28 +00002273 return true;
Gabor Greif697e94c2008-05-15 10:04:30 +00002274 } else if (SrcTy->isFloatingPoint()) { // Casting from floating pt
Duncan Sands55e50902008-01-06 10:12:28 +00002275 return true;
2276 } else if (const VectorType *PTy = dyn_cast<VectorType>(SrcTy)) {
Gabor Greif697e94c2008-05-15 10:04:30 +00002277 // Casting from vector
Duncan Sands55e50902008-01-06 10:12:28 +00002278 return DestBits == PTy->getBitWidth();
Gabor Greif697e94c2008-05-15 10:04:30 +00002279 } else { // Casting from something else
Duncan Sands55e50902008-01-06 10:12:28 +00002280 return isa<PointerType>(SrcTy);
2281 }
Gabor Greif697e94c2008-05-15 10:04:30 +00002282 } else if (DestTy->isFloatingPoint()) { // Casting to floating pt
2283 if (SrcTy->isInteger()) { // Casting from integral
Duncan Sands55e50902008-01-06 10:12:28 +00002284 return true;
Gabor Greif697e94c2008-05-15 10:04:30 +00002285 } else if (SrcTy->isFloatingPoint()) { // Casting from floating pt
Duncan Sands55e50902008-01-06 10:12:28 +00002286 return true;
2287 } else if (const VectorType *PTy = dyn_cast<VectorType>(SrcTy)) {
Gabor Greif697e94c2008-05-15 10:04:30 +00002288 // Casting from vector
Duncan Sands55e50902008-01-06 10:12:28 +00002289 return DestBits == PTy->getBitWidth();
Gabor Greif697e94c2008-05-15 10:04:30 +00002290 } else { // Casting from something else
Duncan Sands55e50902008-01-06 10:12:28 +00002291 return false;
2292 }
2293 } else if (const VectorType *DestPTy = dyn_cast<VectorType>(DestTy)) {
Gabor Greif697e94c2008-05-15 10:04:30 +00002294 // Casting to vector
Duncan Sands55e50902008-01-06 10:12:28 +00002295 if (const VectorType *SrcPTy = dyn_cast<VectorType>(SrcTy)) {
Gabor Greif697e94c2008-05-15 10:04:30 +00002296 // Casting from vector
Duncan Sands55e50902008-01-06 10:12:28 +00002297 return DestPTy->getBitWidth() == SrcPTy->getBitWidth();
Gabor Greif697e94c2008-05-15 10:04:30 +00002298 } else { // Casting from something else
Duncan Sands55e50902008-01-06 10:12:28 +00002299 return DestPTy->getBitWidth() == SrcBits;
2300 }
Gabor Greif697e94c2008-05-15 10:04:30 +00002301 } else if (isa<PointerType>(DestTy)) { // Casting to pointer
2302 if (isa<PointerType>(SrcTy)) { // Casting from pointer
Duncan Sands55e50902008-01-06 10:12:28 +00002303 return true;
Gabor Greif697e94c2008-05-15 10:04:30 +00002304 } else if (SrcTy->isInteger()) { // Casting from integral
Duncan Sands55e50902008-01-06 10:12:28 +00002305 return true;
Gabor Greif697e94c2008-05-15 10:04:30 +00002306 } else { // Casting from something else
Duncan Sands55e50902008-01-06 10:12:28 +00002307 return false;
2308 }
Gabor Greif697e94c2008-05-15 10:04:30 +00002309 } else { // Casting to something else
Duncan Sands55e50902008-01-06 10:12:28 +00002310 return false;
2311 }
2312}
2313
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002314// Provide a way to get a "cast" where the cast opcode is inferred from the
2315// types and size of the operand. This, basically, is a parallel of the
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002316// logic in the castIsValid function below. This axiom should hold:
2317// castIsValid( getCastOpcode(Val, Ty), Val, Ty)
2318// should not assert in castIsValid. In other words, this produces a "correct"
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002319// casting opcode for the arguments passed to it.
Duncan Sands55e50902008-01-06 10:12:28 +00002320// This routine must be kept in sync with isCastable.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002321Instruction::CastOps
Reid Spencerc4dacf22006-12-04 02:43:42 +00002322CastInst::getCastOpcode(
2323 const Value *Src, bool SrcIsSigned, const Type *DestTy, bool DestIsSigned) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002324 // Get the bit sizes, we'll need these
2325 const Type *SrcTy = Src->getType();
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002326 unsigned SrcBits = SrcTy->getScalarSizeInBits(); // 0 for ptr
2327 unsigned DestBits = DestTy->getScalarSizeInBits(); // 0 for ptr
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002328
Duncan Sands55e50902008-01-06 10:12:28 +00002329 assert(SrcTy->isFirstClassType() && DestTy->isFirstClassType() &&
2330 "Only first class types are castable!");
2331
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002332 // Run through the possibilities ...
Chris Lattner03c49532007-01-15 02:27:26 +00002333 if (DestTy->isInteger()) { // Casting to integral
2334 if (SrcTy->isInteger()) { // Casting from integral
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002335 if (DestBits < SrcBits)
2336 return Trunc; // int -> smaller int
2337 else if (DestBits > SrcBits) { // its an extension
Reid Spencerc4dacf22006-12-04 02:43:42 +00002338 if (SrcIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002339 return SExt; // signed -> SEXT
2340 else
2341 return ZExt; // unsigned -> ZEXT
2342 } else {
2343 return BitCast; // Same size, No-op cast
2344 }
2345 } else if (SrcTy->isFloatingPoint()) { // Casting from floating pt
Reid Spencerc4dacf22006-12-04 02:43:42 +00002346 if (DestIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002347 return FPToSI; // FP -> sint
2348 else
2349 return FPToUI; // FP -> uint
Reid Spencerd84d35b2007-02-15 02:26:10 +00002350 } else if (const VectorType *PTy = dyn_cast<VectorType>(SrcTy)) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002351 assert(DestBits == PTy->getBitWidth() &&
Dan Gohmanfead7972007-05-11 21:43:24 +00002352 "Casting vector to integer of different width");
Devang Patele9432132008-11-05 01:37:40 +00002353 PTy = NULL;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002354 return BitCast; // Same size, no-op cast
2355 } else {
2356 assert(isa<PointerType>(SrcTy) &&
2357 "Casting from a value that is not first-class type");
2358 return PtrToInt; // ptr -> int
2359 }
2360 } else if (DestTy->isFloatingPoint()) { // Casting to floating pt
Chris Lattner03c49532007-01-15 02:27:26 +00002361 if (SrcTy->isInteger()) { // Casting from integral
Reid Spencerc4dacf22006-12-04 02:43:42 +00002362 if (SrcIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002363 return SIToFP; // sint -> FP
2364 else
2365 return UIToFP; // uint -> FP
2366 } else if (SrcTy->isFloatingPoint()) { // Casting from floating pt
2367 if (DestBits < SrcBits) {
2368 return FPTrunc; // FP -> smaller FP
2369 } else if (DestBits > SrcBits) {
2370 return FPExt; // FP -> larger FP
2371 } else {
2372 return BitCast; // same size, no-op cast
2373 }
Reid Spencerd84d35b2007-02-15 02:26:10 +00002374 } else if (const VectorType *PTy = dyn_cast<VectorType>(SrcTy)) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002375 assert(DestBits == PTy->getBitWidth() &&
Dan Gohmanfead7972007-05-11 21:43:24 +00002376 "Casting vector to floating point of different width");
Devang Patele9432132008-11-05 01:37:40 +00002377 PTy = NULL;
2378 return BitCast; // same size, no-op cast
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002379 } else {
Torok Edwinfbcc6632009-07-14 16:55:14 +00002380 llvm_unreachable("Casting pointer or non-first class to float");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002381 }
Reid Spencerd84d35b2007-02-15 02:26:10 +00002382 } else if (const VectorType *DestPTy = dyn_cast<VectorType>(DestTy)) {
2383 if (const VectorType *SrcPTy = dyn_cast<VectorType>(SrcTy)) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002384 assert(DestPTy->getBitWidth() == SrcPTy->getBitWidth() &&
Dan Gohmanfead7972007-05-11 21:43:24 +00002385 "Casting vector to vector of different widths");
Devang Patelcb181bb2008-11-21 20:00:59 +00002386 SrcPTy = NULL;
Dan Gohmanfead7972007-05-11 21:43:24 +00002387 return BitCast; // vector -> vector
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002388 } else if (DestPTy->getBitWidth() == SrcBits) {
Dan Gohmanfead7972007-05-11 21:43:24 +00002389 return BitCast; // float/int -> vector
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002390 } else {
Dan Gohmanfead7972007-05-11 21:43:24 +00002391 assert(!"Illegal cast to vector (wrong type or size)");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002392 }
2393 } else if (isa<PointerType>(DestTy)) {
2394 if (isa<PointerType>(SrcTy)) {
2395 return BitCast; // ptr -> ptr
Chris Lattner03c49532007-01-15 02:27:26 +00002396 } else if (SrcTy->isInteger()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002397 return IntToPtr; // int -> ptr
2398 } else {
2399 assert(!"Casting pointer to other than pointer or int");
2400 }
2401 } else {
2402 assert(!"Casting to type that is not first-class");
2403 }
2404
2405 // If we fall through to here we probably hit an assertion cast above
2406 // and assertions are not turned on. Anything we return is an error, so
2407 // BitCast is as good a choice as any.
2408 return BitCast;
2409}
2410
2411//===----------------------------------------------------------------------===//
2412// CastInst SubClass Constructors
2413//===----------------------------------------------------------------------===//
2414
2415/// Check that the construction parameters for a CastInst are correct. This
2416/// could be broken out into the separate constructors but it is useful to have
2417/// it in one place and to eliminate the redundant code for getting the sizes
2418/// of the types involved.
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002419bool
2420CastInst::castIsValid(Instruction::CastOps op, Value *S, const Type *DstTy) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002421
2422 // Check for type sanity on the arguments
2423 const Type *SrcTy = S->getType();
2424 if (!SrcTy->isFirstClassType() || !DstTy->isFirstClassType())
2425 return false;
2426
2427 // Get the size of the types in bits, we'll need this later
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002428 unsigned SrcBitSize = SrcTy->getScalarSizeInBits();
2429 unsigned DstBitSize = DstTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002430
2431 // Switch on the opcode provided
2432 switch (op) {
2433 default: return false; // This is an input error
2434 case Instruction::Trunc:
Dan Gohman550c9af2008-08-14 20:04:46 +00002435 return SrcTy->isIntOrIntVector() &&
2436 DstTy->isIntOrIntVector()&& SrcBitSize > DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002437 case Instruction::ZExt:
Dan Gohman550c9af2008-08-14 20:04:46 +00002438 return SrcTy->isIntOrIntVector() &&
2439 DstTy->isIntOrIntVector()&& SrcBitSize < DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002440 case Instruction::SExt:
Dan Gohman550c9af2008-08-14 20:04:46 +00002441 return SrcTy->isIntOrIntVector() &&
2442 DstTy->isIntOrIntVector()&& SrcBitSize < DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002443 case Instruction::FPTrunc:
Dan Gohman550c9af2008-08-14 20:04:46 +00002444 return SrcTy->isFPOrFPVector() &&
2445 DstTy->isFPOrFPVector() &&
2446 SrcBitSize > DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002447 case Instruction::FPExt:
Dan Gohman550c9af2008-08-14 20:04:46 +00002448 return SrcTy->isFPOrFPVector() &&
2449 DstTy->isFPOrFPVector() &&
2450 SrcBitSize < DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002451 case Instruction::UIToFP:
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002452 case Instruction::SIToFP:
Nate Begemand4d45c22007-11-17 03:58:34 +00002453 if (const VectorType *SVTy = dyn_cast<VectorType>(SrcTy)) {
2454 if (const VectorType *DVTy = dyn_cast<VectorType>(DstTy)) {
Dan Gohman550c9af2008-08-14 20:04:46 +00002455 return SVTy->getElementType()->isIntOrIntVector() &&
2456 DVTy->getElementType()->isFPOrFPVector() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00002457 SVTy->getNumElements() == DVTy->getNumElements();
2458 }
2459 }
Dan Gohman550c9af2008-08-14 20:04:46 +00002460 return SrcTy->isIntOrIntVector() && DstTy->isFPOrFPVector();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002461 case Instruction::FPToUI:
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002462 case Instruction::FPToSI:
Nate Begemand4d45c22007-11-17 03:58:34 +00002463 if (const VectorType *SVTy = dyn_cast<VectorType>(SrcTy)) {
2464 if (const VectorType *DVTy = dyn_cast<VectorType>(DstTy)) {
Dan Gohman550c9af2008-08-14 20:04:46 +00002465 return SVTy->getElementType()->isFPOrFPVector() &&
2466 DVTy->getElementType()->isIntOrIntVector() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00002467 SVTy->getNumElements() == DVTy->getNumElements();
2468 }
2469 }
Dan Gohman550c9af2008-08-14 20:04:46 +00002470 return SrcTy->isFPOrFPVector() && DstTy->isIntOrIntVector();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002471 case Instruction::PtrToInt:
Chris Lattner03c49532007-01-15 02:27:26 +00002472 return isa<PointerType>(SrcTy) && DstTy->isInteger();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002473 case Instruction::IntToPtr:
Chris Lattner03c49532007-01-15 02:27:26 +00002474 return SrcTy->isInteger() && isa<PointerType>(DstTy);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002475 case Instruction::BitCast:
2476 // BitCast implies a no-op cast of type only. No bits change.
2477 // However, you can't cast pointers to anything but pointers.
2478 if (isa<PointerType>(SrcTy) != isa<PointerType>(DstTy))
2479 return false;
2480
Duncan Sands55e50902008-01-06 10:12:28 +00002481 // Now we know we're not dealing with a pointer/non-pointer mismatch. In all
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002482 // these cases, the cast is okay if the source and destination bit widths
2483 // are identical.
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002484 return SrcTy->getPrimitiveSizeInBits() == DstTy->getPrimitiveSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002485 }
2486}
2487
2488TruncInst::TruncInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002489 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002490) : CastInst(Ty, Trunc, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002491 assert(castIsValid(getOpcode(), S, Ty) && "Illegal Trunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002492}
2493
2494TruncInst::TruncInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002495 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002496) : CastInst(Ty, Trunc, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002497 assert(castIsValid(getOpcode(), S, Ty) && "Illegal Trunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002498}
2499
2500ZExtInst::ZExtInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002501 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002502) : CastInst(Ty, ZExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002503 assert(castIsValid(getOpcode(), S, Ty) && "Illegal ZExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002504}
2505
2506ZExtInst::ZExtInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002507 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002508) : CastInst(Ty, ZExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002509 assert(castIsValid(getOpcode(), S, Ty) && "Illegal ZExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002510}
2511SExtInst::SExtInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002512 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002513) : CastInst(Ty, SExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002514 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002515}
2516
Jeff Cohencc08c832006-12-02 02:22:01 +00002517SExtInst::SExtInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002518 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002519) : CastInst(Ty, SExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002520 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002521}
2522
2523FPTruncInst::FPTruncInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002524 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002525) : CastInst(Ty, FPTrunc, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002526 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPTrunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002527}
2528
2529FPTruncInst::FPTruncInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002530 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002531) : CastInst(Ty, FPTrunc, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002532 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPTrunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002533}
2534
2535FPExtInst::FPExtInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002536 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002537) : CastInst(Ty, FPExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002538 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002539}
2540
2541FPExtInst::FPExtInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002542 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002543) : CastInst(Ty, FPExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002544 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002545}
2546
2547UIToFPInst::UIToFPInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002548 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002549) : CastInst(Ty, UIToFP, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002550 assert(castIsValid(getOpcode(), S, Ty) && "Illegal UIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002551}
2552
2553UIToFPInst::UIToFPInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002554 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002555) : CastInst(Ty, UIToFP, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002556 assert(castIsValid(getOpcode(), S, Ty) && "Illegal UIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002557}
2558
2559SIToFPInst::SIToFPInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002560 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002561) : CastInst(Ty, SIToFP, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002562 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002563}
2564
2565SIToFPInst::SIToFPInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002566 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002567) : CastInst(Ty, SIToFP, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002568 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002569}
2570
2571FPToUIInst::FPToUIInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002572 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002573) : CastInst(Ty, FPToUI, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002574 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToUI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002575}
2576
2577FPToUIInst::FPToUIInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002578 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002579) : CastInst(Ty, FPToUI, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002580 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToUI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002581}
2582
2583FPToSIInst::FPToSIInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002584 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002585) : CastInst(Ty, FPToSI, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002586 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToSI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002587}
2588
2589FPToSIInst::FPToSIInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002590 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002591) : CastInst(Ty, FPToSI, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002592 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToSI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002593}
2594
2595PtrToIntInst::PtrToIntInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002596 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002597) : CastInst(Ty, PtrToInt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002598 assert(castIsValid(getOpcode(), S, Ty) && "Illegal PtrToInt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002599}
2600
2601PtrToIntInst::PtrToIntInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002602 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002603) : CastInst(Ty, PtrToInt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002604 assert(castIsValid(getOpcode(), S, Ty) && "Illegal PtrToInt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002605}
2606
2607IntToPtrInst::IntToPtrInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002608 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002609) : CastInst(Ty, IntToPtr, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002610 assert(castIsValid(getOpcode(), S, Ty) && "Illegal IntToPtr");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002611}
2612
2613IntToPtrInst::IntToPtrInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002614 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002615) : CastInst(Ty, IntToPtr, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002616 assert(castIsValid(getOpcode(), S, Ty) && "Illegal IntToPtr");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002617}
2618
2619BitCastInst::BitCastInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002620 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002621) : CastInst(Ty, BitCast, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002622 assert(castIsValid(getOpcode(), S, Ty) && "Illegal BitCast");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002623}
2624
2625BitCastInst::BitCastInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002626 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002627) : CastInst(Ty, BitCast, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002628 assert(castIsValid(getOpcode(), S, Ty) && "Illegal BitCast");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002629}
Chris Lattnerf16dc002006-09-17 19:29:56 +00002630
2631//===----------------------------------------------------------------------===//
Reid Spencerd9436b62006-11-20 01:22:35 +00002632// CmpInst Classes
2633//===----------------------------------------------------------------------===//
2634
Nate Begemand2195702008-05-12 19:01:56 +00002635CmpInst::CmpInst(const Type *ty, OtherOps op, unsigned short predicate,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002636 Value *LHS, Value *RHS, const Twine &Name,
Nate Begemand2195702008-05-12 19:01:56 +00002637 Instruction *InsertBefore)
Nate Begeman66d0a0e2008-05-12 20:11:05 +00002638 : Instruction(ty, op,
Gabor Greiff6caff662008-05-10 08:32:32 +00002639 OperandTraits<CmpInst>::op_begin(this),
2640 OperandTraits<CmpInst>::operands(this),
2641 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00002642 Op<0>() = LHS;
2643 Op<1>() = RHS;
Reid Spencerd9436b62006-11-20 01:22:35 +00002644 SubclassData = predicate;
Reid Spencer871a9ea2007-04-11 13:04:48 +00002645 setName(Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002646}
Gabor Greiff6caff662008-05-10 08:32:32 +00002647
Nate Begemand2195702008-05-12 19:01:56 +00002648CmpInst::CmpInst(const Type *ty, OtherOps op, unsigned short predicate,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002649 Value *LHS, Value *RHS, const Twine &Name,
Nate Begemand2195702008-05-12 19:01:56 +00002650 BasicBlock *InsertAtEnd)
Nate Begeman66d0a0e2008-05-12 20:11:05 +00002651 : Instruction(ty, op,
Gabor Greiff6caff662008-05-10 08:32:32 +00002652 OperandTraits<CmpInst>::op_begin(this),
2653 OperandTraits<CmpInst>::operands(this),
2654 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00002655 Op<0>() = LHS;
2656 Op<1>() = RHS;
Reid Spencerd9436b62006-11-20 01:22:35 +00002657 SubclassData = predicate;
Reid Spencer871a9ea2007-04-11 13:04:48 +00002658 setName(Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002659}
2660
2661CmpInst *
Dan Gohmanad1f0a12009-08-25 23:17:54 +00002662CmpInst::Create(OtherOps Op, unsigned short predicate,
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002663 Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002664 const Twine &Name, Instruction *InsertBefore) {
Reid Spencerd9436b62006-11-20 01:22:35 +00002665 if (Op == Instruction::ICmp) {
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002666 if (InsertBefore)
2667 return new ICmpInst(InsertBefore, CmpInst::Predicate(predicate),
2668 S1, S2, Name);
2669 else
Dan Gohmanad1f0a12009-08-25 23:17:54 +00002670 return new ICmpInst(CmpInst::Predicate(predicate),
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002671 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002672 }
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002673
2674 if (InsertBefore)
2675 return new FCmpInst(InsertBefore, CmpInst::Predicate(predicate),
2676 S1, S2, Name);
2677 else
Dan Gohmanad1f0a12009-08-25 23:17:54 +00002678 return new FCmpInst(CmpInst::Predicate(predicate),
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002679 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002680}
2681
2682CmpInst *
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002683CmpInst::Create(OtherOps Op, unsigned short predicate, Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002684 const Twine &Name, BasicBlock *InsertAtEnd) {
Reid Spencerd9436b62006-11-20 01:22:35 +00002685 if (Op == Instruction::ICmp) {
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002686 return new ICmpInst(*InsertAtEnd, CmpInst::Predicate(predicate),
2687 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002688 }
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002689 return new FCmpInst(*InsertAtEnd, CmpInst::Predicate(predicate),
2690 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002691}
2692
2693void CmpInst::swapOperands() {
2694 if (ICmpInst *IC = dyn_cast<ICmpInst>(this))
2695 IC->swapOperands();
2696 else
2697 cast<FCmpInst>(this)->swapOperands();
2698}
2699
2700bool CmpInst::isCommutative() {
2701 if (ICmpInst *IC = dyn_cast<ICmpInst>(this))
2702 return IC->isCommutative();
2703 return cast<FCmpInst>(this)->isCommutative();
2704}
2705
2706bool CmpInst::isEquality() {
2707 if (ICmpInst *IC = dyn_cast<ICmpInst>(this))
2708 return IC->isEquality();
2709 return cast<FCmpInst>(this)->isEquality();
2710}
2711
2712
Dan Gohman4e724382008-05-31 02:47:54 +00002713CmpInst::Predicate CmpInst::getInversePredicate(Predicate pred) {
Reid Spencerd9436b62006-11-20 01:22:35 +00002714 switch (pred) {
Dan Gohman4e724382008-05-31 02:47:54 +00002715 default: assert(!"Unknown cmp predicate!");
Reid Spencerd9436b62006-11-20 01:22:35 +00002716 case ICMP_EQ: return ICMP_NE;
2717 case ICMP_NE: return ICMP_EQ;
2718 case ICMP_UGT: return ICMP_ULE;
2719 case ICMP_ULT: return ICMP_UGE;
2720 case ICMP_UGE: return ICMP_ULT;
2721 case ICMP_ULE: return ICMP_UGT;
2722 case ICMP_SGT: return ICMP_SLE;
2723 case ICMP_SLT: return ICMP_SGE;
2724 case ICMP_SGE: return ICMP_SLT;
2725 case ICMP_SLE: return ICMP_SGT;
Reid Spencerd9436b62006-11-20 01:22:35 +00002726
Dan Gohman4e724382008-05-31 02:47:54 +00002727 case FCMP_OEQ: return FCMP_UNE;
2728 case FCMP_ONE: return FCMP_UEQ;
2729 case FCMP_OGT: return FCMP_ULE;
2730 case FCMP_OLT: return FCMP_UGE;
2731 case FCMP_OGE: return FCMP_ULT;
2732 case FCMP_OLE: return FCMP_UGT;
2733 case FCMP_UEQ: return FCMP_ONE;
2734 case FCMP_UNE: return FCMP_OEQ;
2735 case FCMP_UGT: return FCMP_OLE;
2736 case FCMP_ULT: return FCMP_OGE;
2737 case FCMP_UGE: return FCMP_OLT;
2738 case FCMP_ULE: return FCMP_OGT;
2739 case FCMP_ORD: return FCMP_UNO;
2740 case FCMP_UNO: return FCMP_ORD;
2741 case FCMP_TRUE: return FCMP_FALSE;
2742 case FCMP_FALSE: return FCMP_TRUE;
Reid Spencerd9436b62006-11-20 01:22:35 +00002743 }
2744}
2745
Reid Spencer266e42b2006-12-23 06:05:41 +00002746ICmpInst::Predicate ICmpInst::getSignedPredicate(Predicate pred) {
2747 switch (pred) {
2748 default: assert(! "Unknown icmp predicate!");
2749 case ICMP_EQ: case ICMP_NE:
2750 case ICMP_SGT: case ICMP_SLT: case ICMP_SGE: case ICMP_SLE:
2751 return pred;
2752 case ICMP_UGT: return ICMP_SGT;
2753 case ICMP_ULT: return ICMP_SLT;
2754 case ICMP_UGE: return ICMP_SGE;
2755 case ICMP_ULE: return ICMP_SLE;
2756 }
2757}
2758
Nick Lewycky8ea81e82008-01-28 03:48:02 +00002759ICmpInst::Predicate ICmpInst::getUnsignedPredicate(Predicate pred) {
2760 switch (pred) {
2761 default: assert(! "Unknown icmp predicate!");
2762 case ICMP_EQ: case ICMP_NE:
2763 case ICMP_UGT: case ICMP_ULT: case ICMP_UGE: case ICMP_ULE:
2764 return pred;
2765 case ICMP_SGT: return ICMP_UGT;
2766 case ICMP_SLT: return ICMP_ULT;
2767 case ICMP_SGE: return ICMP_UGE;
2768 case ICMP_SLE: return ICMP_ULE;
2769 }
2770}
2771
Reid Spencer266e42b2006-12-23 06:05:41 +00002772bool ICmpInst::isSignedPredicate(Predicate pred) {
2773 switch (pred) {
2774 default: assert(! "Unknown icmp predicate!");
2775 case ICMP_SGT: case ICMP_SLT: case ICMP_SGE: case ICMP_SLE:
2776 return true;
2777 case ICMP_EQ: case ICMP_NE: case ICMP_UGT: case ICMP_ULT:
2778 case ICMP_UGE: case ICMP_ULE:
2779 return false;
2780 }
2781}
2782
Reid Spencer0286bc12007-02-28 22:00:54 +00002783/// Initialize a set of values that all satisfy the condition with C.
2784///
2785ConstantRange
2786ICmpInst::makeConstantRange(Predicate pred, const APInt &C) {
2787 APInt Lower(C);
2788 APInt Upper(C);
2789 uint32_t BitWidth = C.getBitWidth();
2790 switch (pred) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00002791 default: llvm_unreachable("Invalid ICmp opcode to ConstantRange ctor!");
Reid Spencer0286bc12007-02-28 22:00:54 +00002792 case ICmpInst::ICMP_EQ: Upper++; break;
2793 case ICmpInst::ICMP_NE: Lower++; break;
2794 case ICmpInst::ICMP_ULT: Lower = APInt::getMinValue(BitWidth); break;
2795 case ICmpInst::ICMP_SLT: Lower = APInt::getSignedMinValue(BitWidth); break;
2796 case ICmpInst::ICMP_UGT:
2797 Lower++; Upper = APInt::getMinValue(BitWidth); // Min = Next(Max)
2798 break;
2799 case ICmpInst::ICMP_SGT:
2800 Lower++; Upper = APInt::getSignedMinValue(BitWidth); // Min = Next(Max)
2801 break;
2802 case ICmpInst::ICMP_ULE:
2803 Lower = APInt::getMinValue(BitWidth); Upper++;
2804 break;
2805 case ICmpInst::ICMP_SLE:
2806 Lower = APInt::getSignedMinValue(BitWidth); Upper++;
2807 break;
2808 case ICmpInst::ICMP_UGE:
2809 Upper = APInt::getMinValue(BitWidth); // Min = Next(Max)
2810 break;
2811 case ICmpInst::ICMP_SGE:
2812 Upper = APInt::getSignedMinValue(BitWidth); // Min = Next(Max)
2813 break;
2814 }
2815 return ConstantRange(Lower, Upper);
2816}
2817
Dan Gohman4e724382008-05-31 02:47:54 +00002818CmpInst::Predicate CmpInst::getSwappedPredicate(Predicate pred) {
Reid Spencerd9436b62006-11-20 01:22:35 +00002819 switch (pred) {
Dan Gohman4e724382008-05-31 02:47:54 +00002820 default: assert(!"Unknown cmp predicate!");
2821 case ICMP_EQ: case ICMP_NE:
2822 return pred;
2823 case ICMP_SGT: return ICMP_SLT;
2824 case ICMP_SLT: return ICMP_SGT;
2825 case ICMP_SGE: return ICMP_SLE;
2826 case ICMP_SLE: return ICMP_SGE;
2827 case ICMP_UGT: return ICMP_ULT;
2828 case ICMP_ULT: return ICMP_UGT;
2829 case ICMP_UGE: return ICMP_ULE;
2830 case ICMP_ULE: return ICMP_UGE;
2831
Reid Spencerd9436b62006-11-20 01:22:35 +00002832 case FCMP_FALSE: case FCMP_TRUE:
2833 case FCMP_OEQ: case FCMP_ONE:
2834 case FCMP_UEQ: case FCMP_UNE:
2835 case FCMP_ORD: case FCMP_UNO:
2836 return pred;
2837 case FCMP_OGT: return FCMP_OLT;
2838 case FCMP_OLT: return FCMP_OGT;
2839 case FCMP_OGE: return FCMP_OLE;
2840 case FCMP_OLE: return FCMP_OGE;
2841 case FCMP_UGT: return FCMP_ULT;
2842 case FCMP_ULT: return FCMP_UGT;
2843 case FCMP_UGE: return FCMP_ULE;
2844 case FCMP_ULE: return FCMP_UGE;
2845 }
2846}
2847
Reid Spencer266e42b2006-12-23 06:05:41 +00002848bool CmpInst::isUnsigned(unsigned short predicate) {
2849 switch (predicate) {
2850 default: return false;
2851 case ICmpInst::ICMP_ULT: case ICmpInst::ICMP_ULE: case ICmpInst::ICMP_UGT:
2852 case ICmpInst::ICMP_UGE: return true;
2853 }
2854}
2855
2856bool CmpInst::isSigned(unsigned short predicate){
2857 switch (predicate) {
2858 default: return false;
2859 case ICmpInst::ICMP_SLT: case ICmpInst::ICMP_SLE: case ICmpInst::ICMP_SGT:
2860 case ICmpInst::ICMP_SGE: return true;
2861 }
2862}
2863
2864bool CmpInst::isOrdered(unsigned short predicate) {
2865 switch (predicate) {
2866 default: return false;
2867 case FCmpInst::FCMP_OEQ: case FCmpInst::FCMP_ONE: case FCmpInst::FCMP_OGT:
2868 case FCmpInst::FCMP_OLT: case FCmpInst::FCMP_OGE: case FCmpInst::FCMP_OLE:
2869 case FCmpInst::FCMP_ORD: return true;
2870 }
2871}
2872
2873bool CmpInst::isUnordered(unsigned short predicate) {
2874 switch (predicate) {
2875 default: return false;
2876 case FCmpInst::FCMP_UEQ: case FCmpInst::FCMP_UNE: case FCmpInst::FCMP_UGT:
2877 case FCmpInst::FCMP_ULT: case FCmpInst::FCMP_UGE: case FCmpInst::FCMP_ULE:
2878 case FCmpInst::FCMP_UNO: return true;
2879 }
2880}
2881
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002882//===----------------------------------------------------------------------===//
2883// SwitchInst Implementation
2884//===----------------------------------------------------------------------===//
2885
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002886void SwitchInst::init(Value *Value, BasicBlock *Default, unsigned NumCases) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002887 assert(Value && Default);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002888 ReservedSpace = 2+NumCases*2;
2889 NumOperands = 2;
Gabor Greiff6caff662008-05-10 08:32:32 +00002890 OperandList = allocHungoffUses(ReservedSpace);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002891
Gabor Greif2d3024d2008-05-26 21:33:52 +00002892 OperandList[0] = Value;
2893 OperandList[1] = Default;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002894}
2895
Chris Lattner2195fc42007-02-24 00:55:48 +00002896/// SwitchInst ctor - Create a new switch instruction, specifying a value to
2897/// switch on and a default destination. The number of additional cases can
2898/// be specified here to make memory allocation more efficient. This
2899/// constructor can also autoinsert before another instruction.
2900SwitchInst::SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
2901 Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +00002902 : TerminatorInst(Type::getVoidTy(Value->getContext()), Instruction::Switch,
2903 0, 0, InsertBefore) {
Chris Lattner2195fc42007-02-24 00:55:48 +00002904 init(Value, Default, NumCases);
2905}
2906
2907/// SwitchInst ctor - Create a new switch instruction, specifying a value to
2908/// switch on and a default destination. The number of additional cases can
2909/// be specified here to make memory allocation more efficient. This
2910/// constructor also autoinserts at the end of the specified BasicBlock.
2911SwitchInst::SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
2912 BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +00002913 : TerminatorInst(Type::getVoidTy(Value->getContext()), Instruction::Switch,
2914 0, 0, InsertAtEnd) {
Chris Lattner2195fc42007-02-24 00:55:48 +00002915 init(Value, Default, NumCases);
2916}
2917
Misha Brukmanb1c93172005-04-21 23:48:37 +00002918SwitchInst::SwitchInst(const SwitchInst &SI)
Owen Anderson55f1c092009-08-13 21:58:54 +00002919 : TerminatorInst(Type::getVoidTy(SI.getContext()), Instruction::Switch,
Gabor Greiff6caff662008-05-10 08:32:32 +00002920 allocHungoffUses(SI.getNumOperands()), SI.getNumOperands()) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002921 Use *OL = OperandList, *InOL = SI.OperandList;
2922 for (unsigned i = 0, E = SI.getNumOperands(); i != E; i+=2) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00002923 OL[i] = InOL[i];
2924 OL[i+1] = InOL[i+1];
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002925 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00002926 SubclassOptionalData = SI.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002927}
2928
Gordon Henriksen14a55692007-12-10 02:14:30 +00002929SwitchInst::~SwitchInst() {
Gabor Greiff6caff662008-05-10 08:32:32 +00002930 dropHungoffUses(OperandList);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002931}
2932
2933
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002934/// addCase - Add an entry to the switch instruction...
2935///
Chris Lattner47ac1872005-02-24 05:32:09 +00002936void SwitchInst::addCase(ConstantInt *OnVal, BasicBlock *Dest) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002937 unsigned OpNo = NumOperands;
2938 if (OpNo+2 > ReservedSpace)
2939 resizeOperands(0); // Get more space!
2940 // Initialize some new operands.
Chris Lattnerf711f8d2005-01-29 01:05:12 +00002941 assert(OpNo+1 < ReservedSpace && "Growing didn't work!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002942 NumOperands = OpNo+2;
Gabor Greif2d3024d2008-05-26 21:33:52 +00002943 OperandList[OpNo] = OnVal;
2944 OperandList[OpNo+1] = Dest;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002945}
2946
2947/// removeCase - This method removes the specified successor from the switch
2948/// instruction. Note that this cannot be used to remove the default
2949/// destination (successor #0).
2950///
2951void SwitchInst::removeCase(unsigned idx) {
2952 assert(idx != 0 && "Cannot remove the default case!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002953 assert(idx*2 < getNumOperands() && "Successor index out of range!!!");
2954
2955 unsigned NumOps = getNumOperands();
2956 Use *OL = OperandList;
2957
2958 // Move everything after this operand down.
2959 //
2960 // FIXME: we could just swap with the end of the list, then erase. However,
2961 // client might not expect this to happen. The code as it is thrashes the
2962 // use/def lists, which is kinda lame.
2963 for (unsigned i = (idx+1)*2; i != NumOps; i += 2) {
2964 OL[i-2] = OL[i];
2965 OL[i-2+1] = OL[i+1];
2966 }
2967
2968 // Nuke the last value.
2969 OL[NumOps-2].set(0);
2970 OL[NumOps-2+1].set(0);
2971 NumOperands = NumOps-2;
2972}
2973
2974/// resizeOperands - resize operands - This adjusts the length of the operands
2975/// list according to the following behavior:
2976/// 1. If NumOps == 0, grow the operand list in response to a push_back style
Gabor Greiff6caff662008-05-10 08:32:32 +00002977/// of operation. This grows the number of ops by 3 times.
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002978/// 2. If NumOps > NumOperands, reserve space for NumOps operands.
2979/// 3. If NumOps == NumOperands, trim the reserved space.
2980///
2981void SwitchInst::resizeOperands(unsigned NumOps) {
Gabor Greiff6caff662008-05-10 08:32:32 +00002982 unsigned e = getNumOperands();
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002983 if (NumOps == 0) {
Gabor Greiff6caff662008-05-10 08:32:32 +00002984 NumOps = e*3;
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002985 } else if (NumOps*2 > NumOperands) {
2986 // No resize needed.
2987 if (ReservedSpace >= NumOps) return;
2988 } else if (NumOps == NumOperands) {
2989 if (ReservedSpace == NumOps) return;
2990 } else {
Chris Lattnerf711f8d2005-01-29 01:05:12 +00002991 return;
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002992 }
2993
2994 ReservedSpace = NumOps;
Gabor Greiff6caff662008-05-10 08:32:32 +00002995 Use *NewOps = allocHungoffUses(NumOps);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002996 Use *OldOps = OperandList;
Gabor Greiff6caff662008-05-10 08:32:32 +00002997 for (unsigned i = 0; i != e; ++i) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00002998 NewOps[i] = OldOps[i];
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002999 }
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003000 OperandList = NewOps;
Gabor Greiff6caff662008-05-10 08:32:32 +00003001 if (OldOps) Use::zap(OldOps, OldOps + e, true);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003002}
3003
3004
3005BasicBlock *SwitchInst::getSuccessorV(unsigned idx) const {
3006 return getSuccessor(idx);
3007}
3008unsigned SwitchInst::getNumSuccessorsV() const {
3009 return getNumSuccessors();
3010}
3011void SwitchInst::setSuccessorV(unsigned idx, BasicBlock *B) {
3012 setSuccessor(idx, B);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003013}
Chris Lattnerf22be932004-10-15 23:52:53 +00003014
Chris Lattnerf22be932004-10-15 23:52:53 +00003015// Define these methods here so vtables don't get emitted into every translation
3016// unit that uses these classes.
3017
Nick Lewycky42fb7452009-09-27 07:38:41 +00003018GetElementPtrInst *GetElementPtrInst::clone() const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003019 GetElementPtrInst *New = new(getNumOperands()) GetElementPtrInst(*this);
3020 New->SubclassOptionalData = SubclassOptionalData;
Devang Pateladd58652009-09-23 18:32:25 +00003021 if (hasMetadata()) {
3022 LLVMContext &Context = getContext();
3023 Context.pImpl->TheMetadata.ValueIsCloned(this, New);
3024 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003025 return New;
Chris Lattnerf22be932004-10-15 23:52:53 +00003026}
3027
Nick Lewycky42fb7452009-09-27 07:38:41 +00003028BinaryOperator *BinaryOperator::clone() const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003029 BinaryOperator *New = Create(getOpcode(), Op<0>(), Op<1>());
3030 New->SubclassOptionalData = SubclassOptionalData;
Devang Pateladd58652009-09-23 18:32:25 +00003031 if (hasMetadata()) {
3032 LLVMContext &Context = getContext();
3033 Context.pImpl->TheMetadata.ValueIsCloned(this, New);
3034 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003035 return New;
Chris Lattnerf22be932004-10-15 23:52:53 +00003036}
3037
Nick Lewycky42fb7452009-09-27 07:38:41 +00003038FCmpInst* FCmpInst::clone() const {
Dan Gohmanad1f0a12009-08-25 23:17:54 +00003039 FCmpInst *New = new FCmpInst(getPredicate(), Op<0>(), Op<1>());
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003040 New->SubclassOptionalData = SubclassOptionalData;
Devang Pateladd58652009-09-23 18:32:25 +00003041 if (hasMetadata()) {
3042 LLVMContext &Context = getContext();
3043 Context.pImpl->TheMetadata.ValueIsCloned(this, New);
3044 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003045 return New;
Chris Lattner0b490b02007-08-24 20:48:18 +00003046}
Nick Lewycky42fb7452009-09-27 07:38:41 +00003047ICmpInst* ICmpInst::clone() const {
Dan Gohmanad1f0a12009-08-25 23:17:54 +00003048 ICmpInst *New = new ICmpInst(getPredicate(), Op<0>(), Op<1>());
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003049 New->SubclassOptionalData = SubclassOptionalData;
Devang Pateladd58652009-09-23 18:32:25 +00003050 if (hasMetadata()) {
3051 LLVMContext &Context = getContext();
3052 Context.pImpl->TheMetadata.ValueIsCloned(this, New);
3053 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003054 return New;
Reid Spencerd9436b62006-11-20 01:22:35 +00003055}
3056
Nick Lewycky42fb7452009-09-27 07:38:41 +00003057ExtractValueInst *ExtractValueInst::clone() const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003058 ExtractValueInst *New = new ExtractValueInst(*this);
3059 New->SubclassOptionalData = SubclassOptionalData;
Devang Pateladd58652009-09-23 18:32:25 +00003060 if (hasMetadata()) {
3061 LLVMContext &Context = getContext();
3062 Context.pImpl->TheMetadata.ValueIsCloned(this, New);
3063 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003064 return New;
Dan Gohman0752bff2008-05-23 00:36:11 +00003065}
Nick Lewycky42fb7452009-09-27 07:38:41 +00003066InsertValueInst *InsertValueInst::clone() const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003067 InsertValueInst *New = new InsertValueInst(*this);
3068 New->SubclassOptionalData = SubclassOptionalData;
Devang Pateladd58652009-09-23 18:32:25 +00003069 if (hasMetadata()) {
3070 LLVMContext &Context = getContext();
3071 Context.pImpl->TheMetadata.ValueIsCloned(this, New);
3072 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003073 return New;
Dan Gohman0752bff2008-05-23 00:36:11 +00003074}
3075
Nick Lewycky42fb7452009-09-27 07:38:41 +00003076MallocInst *MallocInst::clone() const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003077 MallocInst *New = new MallocInst(getAllocatedType(),
3078 (Value*)getOperand(0),
3079 getAlignment());
3080 New->SubclassOptionalData = SubclassOptionalData;
Devang Pateladd58652009-09-23 18:32:25 +00003081 if (hasMetadata()) {
3082 LLVMContext &Context = getContext();
3083 Context.pImpl->TheMetadata.ValueIsCloned(this, New);
3084 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003085 return New;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003086}
Dan Gohman0752bff2008-05-23 00:36:11 +00003087
Nick Lewycky42fb7452009-09-27 07:38:41 +00003088AllocaInst *AllocaInst::clone() const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003089 AllocaInst *New = new AllocaInst(getAllocatedType(),
3090 (Value*)getOperand(0),
3091 getAlignment());
3092 New->SubclassOptionalData = SubclassOptionalData;
Devang Pateladd58652009-09-23 18:32:25 +00003093 if (hasMetadata()) {
3094 LLVMContext &Context = getContext();
3095 Context.pImpl->TheMetadata.ValueIsCloned(this, New);
3096 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003097 return New;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003098}
3099
Nick Lewycky42fb7452009-09-27 07:38:41 +00003100FreeInst *FreeInst::clone() const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003101 FreeInst *New = new FreeInst(getOperand(0));
3102 New->SubclassOptionalData = SubclassOptionalData;
Devang Pateladd58652009-09-23 18:32:25 +00003103 if (hasMetadata()) {
3104 LLVMContext &Context = getContext();
3105 Context.pImpl->TheMetadata.ValueIsCloned(this, New);
3106 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003107 return New;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003108}
3109
Nick Lewycky42fb7452009-09-27 07:38:41 +00003110LoadInst *LoadInst::clone() const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003111 LoadInst *New = new LoadInst(getOperand(0),
3112 Twine(), isVolatile(),
3113 getAlignment());
3114 New->SubclassOptionalData = SubclassOptionalData;
Devang Pateladd58652009-09-23 18:32:25 +00003115 if (hasMetadata()) {
3116 LLVMContext &Context = getContext();
3117 Context.pImpl->TheMetadata.ValueIsCloned(this, New);
3118 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003119 return New;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003120}
3121
Nick Lewycky42fb7452009-09-27 07:38:41 +00003122StoreInst *StoreInst::clone() const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003123 StoreInst *New = new StoreInst(getOperand(0), getOperand(1),
3124 isVolatile(), getAlignment());
3125 New->SubclassOptionalData = SubclassOptionalData;
Devang Pateladd58652009-09-23 18:32:25 +00003126 if (hasMetadata()) {
3127 LLVMContext &Context = getContext();
3128 Context.pImpl->TheMetadata.ValueIsCloned(this, New);
3129 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003130 return New;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003131}
3132
Nick Lewycky42fb7452009-09-27 07:38:41 +00003133TruncInst *TruncInst::clone() const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003134 TruncInst *New = new TruncInst(getOperand(0), getType());
3135 New->SubclassOptionalData = SubclassOptionalData;
Devang Pateladd58652009-09-23 18:32:25 +00003136 if (hasMetadata()) {
3137 LLVMContext &Context = getContext();
3138 Context.pImpl->TheMetadata.ValueIsCloned(this, New);
3139 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003140 return New;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003141}
3142
Nick Lewycky42fb7452009-09-27 07:38:41 +00003143ZExtInst *ZExtInst::clone() const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003144 ZExtInst *New = new ZExtInst(getOperand(0), getType());
3145 New->SubclassOptionalData = SubclassOptionalData;
Devang Pateladd58652009-09-23 18:32:25 +00003146 if (hasMetadata()) {
3147 LLVMContext &Context = getContext();
3148 Context.pImpl->TheMetadata.ValueIsCloned(this, New);
3149 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003150 return New;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003151}
3152
Nick Lewycky42fb7452009-09-27 07:38:41 +00003153SExtInst *SExtInst::clone() const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003154 SExtInst *New = new SExtInst(getOperand(0), getType());
3155 New->SubclassOptionalData = SubclassOptionalData;
Devang Pateladd58652009-09-23 18:32:25 +00003156 if (hasMetadata()) {
3157 LLVMContext &Context = getContext();
3158 Context.pImpl->TheMetadata.ValueIsCloned(this, New);
3159 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003160 return New;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003161}
3162
Nick Lewycky42fb7452009-09-27 07:38:41 +00003163FPTruncInst *FPTruncInst::clone() const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003164 FPTruncInst *New = new FPTruncInst(getOperand(0), getType());
3165 New->SubclassOptionalData = SubclassOptionalData;
Devang Pateladd58652009-09-23 18:32:25 +00003166 if (hasMetadata()) {
3167 LLVMContext &Context = getContext();
3168 Context.pImpl->TheMetadata.ValueIsCloned(this, New);
3169 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003170 return New;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003171}
3172
Nick Lewycky42fb7452009-09-27 07:38:41 +00003173FPExtInst *FPExtInst::clone() const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003174 FPExtInst *New = new FPExtInst(getOperand(0), getType());
3175 New->SubclassOptionalData = SubclassOptionalData;
Devang Pateladd58652009-09-23 18:32:25 +00003176 if (hasMetadata()) {
3177 LLVMContext &Context = getContext();
3178 Context.pImpl->TheMetadata.ValueIsCloned(this, New);
3179 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003180 return New;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003181}
3182
Nick Lewycky42fb7452009-09-27 07:38:41 +00003183UIToFPInst *UIToFPInst::clone() const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003184 UIToFPInst *New = new UIToFPInst(getOperand(0), getType());
3185 New->SubclassOptionalData = SubclassOptionalData;
Devang Pateladd58652009-09-23 18:32:25 +00003186 if (hasMetadata()) {
3187 LLVMContext &Context = getContext();
3188 Context.pImpl->TheMetadata.ValueIsCloned(this, New);
3189 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003190 return New;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003191}
3192
Nick Lewycky42fb7452009-09-27 07:38:41 +00003193SIToFPInst *SIToFPInst::clone() const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003194 SIToFPInst *New = new SIToFPInst(getOperand(0), getType());
3195 New->SubclassOptionalData = SubclassOptionalData;
Devang Pateladd58652009-09-23 18:32:25 +00003196 if (hasMetadata()) {
3197 LLVMContext &Context = getContext();
3198 Context.pImpl->TheMetadata.ValueIsCloned(this, New);
3199 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003200 return New;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003201}
3202
Nick Lewycky42fb7452009-09-27 07:38:41 +00003203FPToUIInst *FPToUIInst::clone() const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003204 FPToUIInst *New = new FPToUIInst(getOperand(0), getType());
3205 New->SubclassOptionalData = SubclassOptionalData;
Devang Pateladd58652009-09-23 18:32:25 +00003206 if (hasMetadata()) {
3207 LLVMContext &Context = getContext();
3208 Context.pImpl->TheMetadata.ValueIsCloned(this, New);
3209 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003210 return New;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003211}
3212
Nick Lewycky42fb7452009-09-27 07:38:41 +00003213FPToSIInst *FPToSIInst::clone() const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003214 FPToSIInst *New = new FPToSIInst(getOperand(0), getType());
3215 New->SubclassOptionalData = SubclassOptionalData;
Devang Pateladd58652009-09-23 18:32:25 +00003216 if (hasMetadata()) {
3217 LLVMContext &Context = getContext();
3218 Context.pImpl->TheMetadata.ValueIsCloned(this, New);
3219 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003220 return New;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003221}
3222
Nick Lewycky42fb7452009-09-27 07:38:41 +00003223PtrToIntInst *PtrToIntInst::clone() const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003224 PtrToIntInst *New = new PtrToIntInst(getOperand(0), getType());
3225 New->SubclassOptionalData = SubclassOptionalData;
Devang Pateladd58652009-09-23 18:32:25 +00003226 if (hasMetadata()) {
3227 LLVMContext &Context = getContext();
3228 Context.pImpl->TheMetadata.ValueIsCloned(this, New);
3229 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003230 return New;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003231}
3232
Nick Lewycky42fb7452009-09-27 07:38:41 +00003233IntToPtrInst *IntToPtrInst::clone() const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003234 IntToPtrInst *New = new IntToPtrInst(getOperand(0), getType());
3235 New->SubclassOptionalData = SubclassOptionalData;
Devang Pateladd58652009-09-23 18:32:25 +00003236 if (hasMetadata()) {
3237 LLVMContext &Context = getContext();
3238 Context.pImpl->TheMetadata.ValueIsCloned(this, New);
3239 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003240 return New;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003241}
3242
Nick Lewycky42fb7452009-09-27 07:38:41 +00003243BitCastInst *BitCastInst::clone() const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003244 BitCastInst *New = new BitCastInst(getOperand(0), getType());
3245 New->SubclassOptionalData = SubclassOptionalData;
Devang Pateladd58652009-09-23 18:32:25 +00003246 if (hasMetadata()) {
3247 LLVMContext &Context = getContext();
3248 Context.pImpl->TheMetadata.ValueIsCloned(this, New);
3249 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003250 return New;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003251}
3252
Nick Lewycky42fb7452009-09-27 07:38:41 +00003253CallInst *CallInst::clone() const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003254 CallInst *New = new(getNumOperands()) CallInst(*this);
3255 New->SubclassOptionalData = SubclassOptionalData;
Devang Pateladd58652009-09-23 18:32:25 +00003256 if (hasMetadata()) {
3257 LLVMContext &Context = getContext();
3258 Context.pImpl->TheMetadata.ValueIsCloned(this, New);
3259 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003260 return New;
Gabor Greif697e94c2008-05-15 10:04:30 +00003261}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003262
Nick Lewycky42fb7452009-09-27 07:38:41 +00003263SelectInst *SelectInst::clone() const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003264 SelectInst *New = SelectInst::Create(getOperand(0),
3265 getOperand(1),
3266 getOperand(2));
3267 New->SubclassOptionalData = SubclassOptionalData;
Devang Pateladd58652009-09-23 18:32:25 +00003268 if (hasMetadata()) {
3269 LLVMContext &Context = getContext();
3270 Context.pImpl->TheMetadata.ValueIsCloned(this, New);
3271 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003272 return New;
Gabor Greif697e94c2008-05-15 10:04:30 +00003273}
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003274
Nick Lewycky42fb7452009-09-27 07:38:41 +00003275VAArgInst *VAArgInst::clone() const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003276 VAArgInst *New = new VAArgInst(getOperand(0), getType());
3277 New->SubclassOptionalData = SubclassOptionalData;
Devang Pateladd58652009-09-23 18:32:25 +00003278 if (hasMetadata()) {
3279 LLVMContext &Context = getContext();
3280 Context.pImpl->TheMetadata.ValueIsCloned(this, New);
3281 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003282 return New;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003283}
3284
Nick Lewycky42fb7452009-09-27 07:38:41 +00003285ExtractElementInst *ExtractElementInst::clone() const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003286 ExtractElementInst *New = ExtractElementInst::Create(getOperand(0),
3287 getOperand(1));
3288 New->SubclassOptionalData = SubclassOptionalData;
Devang Pateladd58652009-09-23 18:32:25 +00003289 if (hasMetadata()) {
3290 LLVMContext &Context = getContext();
3291 Context.pImpl->TheMetadata.ValueIsCloned(this, New);
3292 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003293 return New;
Chris Lattnerbbe0a422006-04-08 01:18:18 +00003294}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003295
Nick Lewycky42fb7452009-09-27 07:38:41 +00003296InsertElementInst *InsertElementInst::clone() const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003297 InsertElementInst *New = InsertElementInst::Create(getOperand(0),
3298 getOperand(1),
3299 getOperand(2));
3300 New->SubclassOptionalData = SubclassOptionalData;
Devang Pateladd58652009-09-23 18:32:25 +00003301 if (hasMetadata()) {
3302 LLVMContext &Context = getContext();
3303 Context.pImpl->TheMetadata.ValueIsCloned(this, New);
3304 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003305 return New;
Chris Lattnerbbe0a422006-04-08 01:18:18 +00003306}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003307
Nick Lewycky42fb7452009-09-27 07:38:41 +00003308ShuffleVectorInst *ShuffleVectorInst::clone() const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003309 ShuffleVectorInst *New = new ShuffleVectorInst(getOperand(0),
3310 getOperand(1),
3311 getOperand(2));
3312 New->SubclassOptionalData = SubclassOptionalData;
Devang Pateladd58652009-09-23 18:32:25 +00003313 if (hasMetadata()) {
3314 LLVMContext &Context = getContext();
3315 Context.pImpl->TheMetadata.ValueIsCloned(this, New);
3316 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003317 return New;
Chris Lattnerbbe0a422006-04-08 01:18:18 +00003318}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003319
Nick Lewycky42fb7452009-09-27 07:38:41 +00003320PHINode *PHINode::clone() const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003321 PHINode *New = new PHINode(*this);
3322 New->SubclassOptionalData = SubclassOptionalData;
Devang Pateladd58652009-09-23 18:32:25 +00003323 if (hasMetadata()) {
3324 LLVMContext &Context = getContext();
3325 Context.pImpl->TheMetadata.ValueIsCloned(this, New);
3326 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003327 return New;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003328}
3329
Nick Lewycky42fb7452009-09-27 07:38:41 +00003330ReturnInst *ReturnInst::clone() const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003331 ReturnInst *New = new(getNumOperands()) ReturnInst(*this);
3332 New->SubclassOptionalData = SubclassOptionalData;
Devang Pateladd58652009-09-23 18:32:25 +00003333 if (hasMetadata()) {
3334 LLVMContext &Context = getContext();
3335 Context.pImpl->TheMetadata.ValueIsCloned(this, New);
3336 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003337 return New;
Gabor Greif697e94c2008-05-15 10:04:30 +00003338}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003339
Nick Lewycky42fb7452009-09-27 07:38:41 +00003340BranchInst *BranchInst::clone() const {
Gabor Greifc91aa9b2009-03-12 18:34:49 +00003341 unsigned Ops(getNumOperands());
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003342 BranchInst *New = new(Ops, Ops == 1) BranchInst(*this);
3343 New->SubclassOptionalData = SubclassOptionalData;
Devang Pateladd58652009-09-23 18:32:25 +00003344 if (hasMetadata()) {
3345 LLVMContext &Context = getContext();
3346 Context.pImpl->TheMetadata.ValueIsCloned(this, New);
3347 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003348 return New;
Gabor Greif697e94c2008-05-15 10:04:30 +00003349}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003350
Nick Lewycky42fb7452009-09-27 07:38:41 +00003351SwitchInst *SwitchInst::clone() const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003352 SwitchInst *New = new SwitchInst(*this);
3353 New->SubclassOptionalData = SubclassOptionalData;
Devang Pateladd58652009-09-23 18:32:25 +00003354 if (hasMetadata()) {
3355 LLVMContext &Context = getContext();
3356 Context.pImpl->TheMetadata.ValueIsCloned(this, New);
3357 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003358 return New;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003359}
3360
Nick Lewycky42fb7452009-09-27 07:38:41 +00003361InvokeInst *InvokeInst::clone() const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003362 InvokeInst *New = new(getNumOperands()) InvokeInst(*this);
3363 New->SubclassOptionalData = SubclassOptionalData;
Devang Pateladd58652009-09-23 18:32:25 +00003364 if (hasMetadata()) {
3365 LLVMContext &Context = getContext();
3366 Context.pImpl->TheMetadata.ValueIsCloned(this, New);
3367 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003368 return New;
Gabor Greif697e94c2008-05-15 10:04:30 +00003369}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003370
Nick Lewycky42fb7452009-09-27 07:38:41 +00003371UnwindInst *UnwindInst::clone() const {
3372 LLVMContext &Context = getContext();
3373 UnwindInst *New = new UnwindInst(Context);
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003374 New->SubclassOptionalData = SubclassOptionalData;
Nick Lewycky42fb7452009-09-27 07:38:41 +00003375 if (hasMetadata())
Devang Pateladd58652009-09-23 18:32:25 +00003376 Context.pImpl->TheMetadata.ValueIsCloned(this, New);
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003377 return New;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003378}
3379
Nick Lewycky42fb7452009-09-27 07:38:41 +00003380UnreachableInst *UnreachableInst::clone() const {
3381 LLVMContext &Context = getContext();
3382 UnreachableInst *New = new UnreachableInst(Context);
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003383 New->SubclassOptionalData = SubclassOptionalData;
Nick Lewycky42fb7452009-09-27 07:38:41 +00003384 if (hasMetadata())
Devang Pateladd58652009-09-23 18:32:25 +00003385 Context.pImpl->TheMetadata.ValueIsCloned(this, New);
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003386 return New;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003387}