blob: 9e5fd239233ebb9b2755b49d9ef3ea018dd6159e [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"
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +000027using namespace llvm;
28
Chris Lattner3e13b8c2008-01-02 23:42:30 +000029//===----------------------------------------------------------------------===//
30// CallSite Class
31//===----------------------------------------------------------------------===//
32
Gabor Greifa2fbc0a2010-03-24 13:21:49 +000033User::op_iterator CallSite::getCallee() const {
34 Instruction *II(getInstruction());
35 return isCall()
Gabor Greif638c8232010-08-05 21:25:49 +000036 ? cast<CallInst>(II)->op_end() - 1 // Skip Callee
Gabor Greif6d673952010-07-16 09:38:02 +000037 : cast<InvokeInst>(II)->op_end() - 3; // Skip BB, BB, Callee
Gabor Greifa2fbc0a2010-03-24 13:21:49 +000038}
39
Gordon Henriksen14a55692007-12-10 02:14:30 +000040//===----------------------------------------------------------------------===//
41// TerminatorInst Class
42//===----------------------------------------------------------------------===//
43
44// Out of line virtual method, so the vtable, etc has a home.
45TerminatorInst::~TerminatorInst() {
46}
47
Gabor Greiff6caff662008-05-10 08:32:32 +000048//===----------------------------------------------------------------------===//
49// UnaryInstruction Class
50//===----------------------------------------------------------------------===//
51
Gordon Henriksen14a55692007-12-10 02:14:30 +000052// Out of line virtual method, so the vtable, etc has a home.
53UnaryInstruction::~UnaryInstruction() {
54}
55
Chris Lattnerafdb3de2005-01-29 00:35:16 +000056//===----------------------------------------------------------------------===//
Chris Lattner88107952008-12-29 00:12:50 +000057// SelectInst Class
58//===----------------------------------------------------------------------===//
59
60/// areInvalidOperands - Return a string if the specified operands are invalid
61/// for a select operation, otherwise return null.
62const char *SelectInst::areInvalidOperands(Value *Op0, Value *Op1, Value *Op2) {
63 if (Op1->getType() != Op2->getType())
64 return "both values to select must have same type";
65
66 if (const VectorType *VT = dyn_cast<VectorType>(Op0->getType())) {
67 // Vector select.
Owen Anderson55f1c092009-08-13 21:58:54 +000068 if (VT->getElementType() != Type::getInt1Ty(Op0->getContext()))
Chris Lattner88107952008-12-29 00:12:50 +000069 return "vector select condition element type must be i1";
70 const VectorType *ET = dyn_cast<VectorType>(Op1->getType());
71 if (ET == 0)
72 return "selected values for vector select must be vectors";
73 if (ET->getNumElements() != VT->getNumElements())
74 return "vector select requires selected vectors to have "
75 "the same vector length as select condition";
Owen Anderson55f1c092009-08-13 21:58:54 +000076 } else if (Op0->getType() != Type::getInt1Ty(Op0->getContext())) {
Chris Lattner88107952008-12-29 00:12:50 +000077 return "select condition must be i1 or <n x i1>";
78 }
79 return 0;
80}
81
82
83//===----------------------------------------------------------------------===//
Chris Lattnerafdb3de2005-01-29 00:35:16 +000084// PHINode Class
85//===----------------------------------------------------------------------===//
86
87PHINode::PHINode(const PHINode &PN)
88 : Instruction(PN.getType(), Instruction::PHI,
Gabor Greiff6caff662008-05-10 08:32:32 +000089 allocHungoffUses(PN.getNumOperands()), PN.getNumOperands()),
Chris Lattnerafdb3de2005-01-29 00:35:16 +000090 ReservedSpace(PN.getNumOperands()) {
91 Use *OL = OperandList;
92 for (unsigned i = 0, e = PN.getNumOperands(); i != e; i+=2) {
Gabor Greif2d3024d2008-05-26 21:33:52 +000093 OL[i] = PN.getOperand(i);
94 OL[i+1] = PN.getOperand(i+1);
Chris Lattnerafdb3de2005-01-29 00:35:16 +000095 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +000096 SubclassOptionalData = PN.SubclassOptionalData;
Chris Lattnerafdb3de2005-01-29 00:35:16 +000097}
98
Gordon Henriksen14a55692007-12-10 02:14:30 +000099PHINode::~PHINode() {
Chris Lattner7d6aac82008-06-16 04:02:40 +0000100 if (OperandList)
101 dropHungoffUses(OperandList);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000102}
103
104// removeIncomingValue - Remove an incoming value. This is useful if a
105// predecessor basic block is deleted.
106Value *PHINode::removeIncomingValue(unsigned Idx, bool DeletePHIIfEmpty) {
107 unsigned NumOps = getNumOperands();
108 Use *OL = OperandList;
109 assert(Idx*2 < NumOps && "BB not in PHI node!");
110 Value *Removed = OL[Idx*2];
111
112 // Move everything after this operand down.
113 //
114 // FIXME: we could just swap with the end of the list, then erase. However,
115 // client might not expect this to happen. The code as it is thrashes the
116 // use/def lists, which is kinda lame.
117 for (unsigned i = (Idx+1)*2; i != NumOps; i += 2) {
118 OL[i-2] = OL[i];
119 OL[i-2+1] = OL[i+1];
120 }
121
122 // Nuke the last value.
123 OL[NumOps-2].set(0);
124 OL[NumOps-2+1].set(0);
125 NumOperands = NumOps-2;
126
127 // If the PHI node is dead, because it has zero entries, nuke it now.
128 if (NumOps == 2 && DeletePHIIfEmpty) {
129 // If anyone is using this PHI, make them use a dummy value instead...
Owen Andersonb292b8c2009-07-30 23:03:37 +0000130 replaceAllUsesWith(UndefValue::get(getType()));
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000131 eraseFromParent();
132 }
133 return Removed;
134}
135
136/// resizeOperands - resize operands - This adjusts the length of the operands
137/// list according to the following behavior:
138/// 1. If NumOps == 0, grow the operand list in response to a push_back style
139/// of operation. This grows the number of ops by 1.5 times.
140/// 2. If NumOps > NumOperands, reserve space for NumOps operands.
141/// 3. If NumOps == NumOperands, trim the reserved space.
142///
143void PHINode::resizeOperands(unsigned NumOps) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000144 unsigned e = getNumOperands();
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000145 if (NumOps == 0) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000146 NumOps = e*3/2;
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000147 if (NumOps < 4) NumOps = 4; // 4 op PHI nodes are VERY common.
148 } else if (NumOps*2 > NumOperands) {
149 // No resize needed.
150 if (ReservedSpace >= NumOps) return;
151 } else if (NumOps == NumOperands) {
152 if (ReservedSpace == NumOps) return;
153 } else {
Misha Brukmanb1c93172005-04-21 23:48:37 +0000154 return;
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000155 }
156
157 ReservedSpace = NumOps;
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000158 Use *OldOps = OperandList;
Gabor Greiff6caff662008-05-10 08:32:32 +0000159 Use *NewOps = allocHungoffUses(NumOps);
Dan Gohman031f0bb2008-06-23 16:45:24 +0000160 std::copy(OldOps, OldOps + e, NewOps);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000161 OperandList = NewOps;
Gabor Greiff6caff662008-05-10 08:32:32 +0000162 if (OldOps) Use::zap(OldOps, OldOps + e, true);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000163}
164
Nate Begemanb3923212005-08-04 23:24:19 +0000165/// hasConstantValue - If the specified PHI node always merges together the same
166/// value, return the value, otherwise return null.
167///
Dan Gohman22571482009-09-03 15:34:35 +0000168/// If the PHI has undef operands, but all the rest of the operands are
169/// some unique value, return that value if it can be proved that the
170/// value dominates the PHI. If DT is null, use a conservative check,
171/// otherwise use DT to test for dominance.
172///
173Value *PHINode::hasConstantValue(DominatorTree *DT) const {
Chris Lattner7d08da62009-09-21 22:27:34 +0000174 // If the PHI node only has one incoming value, eliminate the PHI node.
Anton Korobeynikov579f0712008-02-20 11:08:44 +0000175 if (getNumIncomingValues() == 1) {
Chris Lattner6e709c12005-08-05 15:37:31 +0000176 if (getIncomingValue(0) != this) // not X = phi X
177 return getIncomingValue(0);
Chris Lattner7d08da62009-09-21 22:27:34 +0000178 return UndefValue::get(getType()); // Self cycle is dead.
Anton Korobeynikov579f0712008-02-20 11:08:44 +0000179 }
Chris Lattner6e709c12005-08-05 15:37:31 +0000180
Nate Begemanb3923212005-08-04 23:24:19 +0000181 // Otherwise if all of the incoming values are the same for the PHI, replace
182 // the PHI node with the incoming value.
183 //
184 Value *InVal = 0;
Chris Lattnerbcd8d2c2005-08-05 01:00:58 +0000185 bool HasUndefInput = false;
Nate Begemanb3923212005-08-04 23:24:19 +0000186 for (unsigned i = 0, e = getNumIncomingValues(); i != e; ++i)
Anton Korobeynikov579f0712008-02-20 11:08:44 +0000187 if (isa<UndefValue>(getIncomingValue(i))) {
Chris Lattnerbcd8d2c2005-08-05 01:00:58 +0000188 HasUndefInput = true;
Anton Korobeynikov579f0712008-02-20 11:08:44 +0000189 } else if (getIncomingValue(i) != this) { // Not the PHI node itself...
Nate Begemanb3923212005-08-04 23:24:19 +0000190 if (InVal && getIncomingValue(i) != InVal)
191 return 0; // Not the same, bail out.
Chris Lattner7d08da62009-09-21 22:27:34 +0000192 InVal = getIncomingValue(i);
Anton Korobeynikov579f0712008-02-20 11:08:44 +0000193 }
Nate Begemanb3923212005-08-04 23:24:19 +0000194
195 // The only case that could cause InVal to be null is if we have a PHI node
196 // that only has entries for itself. In this case, there is no entry into the
197 // loop, so kill the PHI.
198 //
Owen Andersonb292b8c2009-07-30 23:03:37 +0000199 if (InVal == 0) InVal = UndefValue::get(getType());
Nate Begemanb3923212005-08-04 23:24:19 +0000200
Chris Lattnerbcd8d2c2005-08-05 01:00:58 +0000201 // If we have a PHI node like phi(X, undef, X), where X is defined by some
202 // instruction, we cannot always return X as the result of the PHI node. Only
203 // do this if X is not an instruction (thus it must dominate the PHI block),
204 // or if the client is prepared to deal with this possibility.
Chris Lattner7d08da62009-09-21 22:27:34 +0000205 if (!HasUndefInput || !isa<Instruction>(InVal))
206 return InVal;
207
208 Instruction *IV = cast<Instruction>(InVal);
209 if (DT) {
210 // We have a DominatorTree. Do a precise test.
211 if (!DT->dominates(IV, this))
212 return 0;
213 } else {
214 // If it is in the entry block, it obviously dominates everything.
215 if (IV->getParent() != &IV->getParent()->getParent()->getEntryBlock() ||
216 isa<InvokeInst>(IV))
217 return 0; // Cannot guarantee that InVal dominates this PHINode.
218 }
Chris Lattnerbcd8d2c2005-08-05 01:00:58 +0000219
Nate Begemanb3923212005-08-04 23:24:19 +0000220 // All of the incoming values are the same, return the value now.
221 return InVal;
222}
223
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000224
225//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000226// CallInst Implementation
227//===----------------------------------------------------------------------===//
228
Gordon Henriksen14a55692007-12-10 02:14:30 +0000229CallInst::~CallInst() {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000230}
231
Chris Lattner054ba2c2007-02-13 00:58:44 +0000232void CallInst::init(Value *Func, Value* const *Params, unsigned NumParams) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000233 assert(NumOperands == NumParams+1 && "NumOperands not set up?");
Gabor Greif6d673952010-07-16 09:38:02 +0000234 Op<-1>() = Func;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000235
Misha Brukmanb1c93172005-04-21 23:48:37 +0000236 const FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000237 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000238 FTy = FTy; // silence warning.
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000239
Chris Lattner054ba2c2007-02-13 00:58:44 +0000240 assert((NumParams == FTy->getNumParams() ||
241 (FTy->isVarArg() && NumParams > FTy->getNumParams())) &&
Chris Lattner667a0562006-05-03 00:48:22 +0000242 "Calling a function with bad signature!");
Chris Lattner054ba2c2007-02-13 00:58:44 +0000243 for (unsigned i = 0; i != NumParams; ++i) {
Chris Lattner667a0562006-05-03 00:48:22 +0000244 assert((i >= FTy->getNumParams() ||
245 FTy->getParamType(i) == Params[i]->getType()) &&
246 "Calling a function with a bad signature!");
Gabor Greif6d673952010-07-16 09:38:02 +0000247 OperandList[i] = Params[i];
Chris Lattner667a0562006-05-03 00:48:22 +0000248 }
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000249}
250
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000251void CallInst::init(Value *Func, Value *Actual1, Value *Actual2) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000252 assert(NumOperands == 3 && "NumOperands not set up?");
Gabor Greif6d673952010-07-16 09:38:02 +0000253 Op<-1>() = Func;
254 Op<0>() = Actual1;
255 Op<1>() = Actual2;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000256
257 const FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000258 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000259 FTy = FTy; // silence warning.
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000260
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000261 assert((FTy->getNumParams() == 2 ||
Chris Lattner667a0562006-05-03 00:48:22 +0000262 (FTy->isVarArg() && FTy->getNumParams() < 2)) &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000263 "Calling a function with bad signature");
Chris Lattner667a0562006-05-03 00:48:22 +0000264 assert((0 >= FTy->getNumParams() ||
265 FTy->getParamType(0) == Actual1->getType()) &&
266 "Calling a function with a bad signature!");
267 assert((1 >= FTy->getNumParams() ||
268 FTy->getParamType(1) == Actual2->getType()) &&
269 "Calling a function with a bad signature!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000270}
271
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000272void CallInst::init(Value *Func, Value *Actual) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000273 assert(NumOperands == 2 && "NumOperands not set up?");
Gabor Greif6d673952010-07-16 09:38:02 +0000274 Op<-1>() = Func;
275 Op<0>() = Actual;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000276
277 const FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000278 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000279 FTy = FTy; // silence warning.
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000280
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000281 assert((FTy->getNumParams() == 1 ||
282 (FTy->isVarArg() && FTy->getNumParams() == 0)) &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000283 "Calling a function with bad signature");
Chris Lattner667a0562006-05-03 00:48:22 +0000284 assert((0 == FTy->getNumParams() ||
285 FTy->getParamType(0) == Actual->getType()) &&
286 "Calling a function with a bad signature!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000287}
288
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000289void CallInst::init(Value *Func) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000290 assert(NumOperands == 1 && "NumOperands not set up?");
Gabor Greif6d673952010-07-16 09:38:02 +0000291 Op<-1>() = Func;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000292
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000293 const FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000294 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000295 FTy = FTy; // silence warning.
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000296
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000297 assert(FTy->getNumParams() == 0 && "Calling a function with bad signature");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000298}
299
Daniel Dunbar4975db62009-07-25 04:41:11 +0000300CallInst::CallInst(Value *Func, Value* Actual, const Twine &Name,
Chris Lattner2195fc42007-02-24 00:55:48 +0000301 Instruction *InsertBefore)
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000302 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
303 ->getElementType())->getReturnType(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000304 Instruction::Call,
305 OperandTraits<CallInst>::op_end(this) - 2,
306 2, InsertBefore) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000307 init(Func, Actual);
Chris Lattner2195fc42007-02-24 00:55:48 +0000308 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000309}
310
Daniel Dunbar4975db62009-07-25 04:41:11 +0000311CallInst::CallInst(Value *Func, Value* Actual, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000312 BasicBlock *InsertAtEnd)
313 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
314 ->getElementType())->getReturnType(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000315 Instruction::Call,
316 OperandTraits<CallInst>::op_end(this) - 2,
317 2, InsertAtEnd) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000318 init(Func, Actual);
Chris Lattner2195fc42007-02-24 00:55:48 +0000319 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000320}
Daniel Dunbar4975db62009-07-25 04:41:11 +0000321CallInst::CallInst(Value *Func, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000322 Instruction *InsertBefore)
323 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
324 ->getElementType())->getReturnType(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000325 Instruction::Call,
326 OperandTraits<CallInst>::op_end(this) - 1,
327 1, InsertBefore) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000328 init(Func);
Chris Lattner2195fc42007-02-24 00:55:48 +0000329 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000330}
331
Daniel Dunbar4975db62009-07-25 04:41:11 +0000332CallInst::CallInst(Value *Func, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000333 BasicBlock *InsertAtEnd)
334 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
335 ->getElementType())->getReturnType(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000336 Instruction::Call,
337 OperandTraits<CallInst>::op_end(this) - 1,
338 1, InsertAtEnd) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000339 init(Func);
Chris Lattner2195fc42007-02-24 00:55:48 +0000340 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000341}
342
Misha Brukmanb1c93172005-04-21 23:48:37 +0000343CallInst::CallInst(const CallInst &CI)
Gabor Greiff6caff662008-05-10 08:32:32 +0000344 : Instruction(CI.getType(), Instruction::Call,
345 OperandTraits<CallInst>::op_end(this) - CI.getNumOperands(),
Chris Lattner8a923e72008-03-12 17:45:29 +0000346 CI.getNumOperands()) {
Devang Patel4c758ea2008-09-25 21:00:45 +0000347 setAttributes(CI.getAttributes());
Chris Lattnerb9c86512009-12-29 02:14:09 +0000348 setTailCall(CI.isTailCall());
349 setCallingConv(CI.getCallingConv());
350
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000351 Use *OL = OperandList;
352 Use *InOL = CI.OperandList;
353 for (unsigned i = 0, e = CI.getNumOperands(); i != e; ++i)
Gabor Greif2d3024d2008-05-26 21:33:52 +0000354 OL[i] = InOL[i];
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000355 SubclassOptionalData = CI.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000356}
357
Devang Patel4c758ea2008-09-25 21:00:45 +0000358void CallInst::addAttribute(unsigned i, Attributes attr) {
359 AttrListPtr PAL = getAttributes();
Eric Christopher901b1a72008-05-16 20:39:43 +0000360 PAL = PAL.addAttr(i, attr);
Devang Patel4c758ea2008-09-25 21:00:45 +0000361 setAttributes(PAL);
Eric Christopher901b1a72008-05-16 20:39:43 +0000362}
363
Devang Patel4c758ea2008-09-25 21:00:45 +0000364void CallInst::removeAttribute(unsigned i, Attributes attr) {
365 AttrListPtr PAL = getAttributes();
Duncan Sands78c88722008-07-08 08:38:44 +0000366 PAL = PAL.removeAttr(i, attr);
Devang Patel4c758ea2008-09-25 21:00:45 +0000367 setAttributes(PAL);
Duncan Sands78c88722008-07-08 08:38:44 +0000368}
369
Devang Patelba3fa6c2008-09-23 23:03:40 +0000370bool CallInst::paramHasAttr(unsigned i, Attributes attr) const {
Devang Patel4c758ea2008-09-25 21:00:45 +0000371 if (AttributeList.paramHasAttr(i, attr))
Duncan Sands5208d1a2007-11-28 17:07:01 +0000372 return true;
Duncan Sands8dfcd592007-11-29 08:30:15 +0000373 if (const Function *F = getCalledFunction())
Dale Johannesen89268bc2008-02-19 21:38:47 +0000374 return F->paramHasAttr(i, attr);
Duncan Sands8dfcd592007-11-29 08:30:15 +0000375 return false;
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000376}
377
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000378/// IsConstantOne - Return true only if val is constant int 1
379static bool IsConstantOne(Value *val) {
380 assert(val && "IsConstantOne does not work with NULL val");
381 return isa<ConstantInt>(val) && cast<ConstantInt>(val)->isOne();
382}
383
Nick Lewyckybb1410e2009-10-17 23:52:26 +0000384static Instruction *createMalloc(Instruction *InsertBefore,
385 BasicBlock *InsertAtEnd, const Type *IntPtrTy,
Victor Hernandezf3db9152009-11-07 00:16:28 +0000386 const Type *AllocTy, Value *AllocSize,
387 Value *ArraySize, Function *MallocF,
388 const Twine &Name) {
Benjamin Kramer4bf4e862009-09-10 11:31:39 +0000389 assert(((!InsertBefore && InsertAtEnd) || (InsertBefore && !InsertAtEnd)) &&
Victor Hernandez788eaab2009-09-18 19:20:02 +0000390 "createMalloc needs either InsertBefore or InsertAtEnd");
391
392 // malloc(type) becomes:
393 // bitcast (i8* malloc(typeSize)) to type*
394 // malloc(type, arraySize) becomes:
395 // bitcast (i8 *malloc(typeSize*arraySize)) to type*
Victor Hernandezf3db9152009-11-07 00:16:28 +0000396 if (!ArraySize)
397 ArraySize = ConstantInt::get(IntPtrTy, 1);
398 else if (ArraySize->getType() != IntPtrTy) {
399 if (InsertBefore)
Victor Hernandeze04ed0c2009-11-07 00:36:50 +0000400 ArraySize = CastInst::CreateIntegerCast(ArraySize, IntPtrTy, false,
401 "", InsertBefore);
Victor Hernandezf3db9152009-11-07 00:16:28 +0000402 else
Victor Hernandeze04ed0c2009-11-07 00:36:50 +0000403 ArraySize = CastInst::CreateIntegerCast(ArraySize, IntPtrTy, false,
404 "", InsertAtEnd);
Victor Hernandezf3db9152009-11-07 00:16:28 +0000405 }
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000406
Benjamin Kramer4bf4e862009-09-10 11:31:39 +0000407 if (!IsConstantOne(ArraySize)) {
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000408 if (IsConstantOne(AllocSize)) {
409 AllocSize = ArraySize; // Operand * 1 = Operand
410 } else if (Constant *CO = dyn_cast<Constant>(ArraySize)) {
411 Constant *Scale = ConstantExpr::getIntegerCast(CO, IntPtrTy,
412 false /*ZExt*/);
413 // Malloc arg is constant product of type size and array size
414 AllocSize = ConstantExpr::getMul(Scale, cast<Constant>(AllocSize));
415 } else {
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000416 // Multiply type size by the array size...
417 if (InsertBefore)
Victor Hernandez788eaab2009-09-18 19:20:02 +0000418 AllocSize = BinaryOperator::CreateMul(ArraySize, AllocSize,
419 "mallocsize", InsertBefore);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000420 else
Victor Hernandez788eaab2009-09-18 19:20:02 +0000421 AllocSize = BinaryOperator::CreateMul(ArraySize, AllocSize,
422 "mallocsize", InsertAtEnd);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000423 }
Benjamin Kramer4bf4e862009-09-10 11:31:39 +0000424 }
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000425
Victor Hernandez788eaab2009-09-18 19:20:02 +0000426 assert(AllocSize->getType() == IntPtrTy && "malloc arg is wrong size");
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000427 // Create the call to Malloc.
428 BasicBlock* BB = InsertBefore ? InsertBefore->getParent() : InsertAtEnd;
429 Module* M = BB->getParent()->getParent();
Duncan Sands9ed7b162009-10-06 15:40:36 +0000430 const Type *BPTy = Type::getInt8PtrTy(BB->getContext());
Victor Hernandezbb336a12009-11-10 19:53:28 +0000431 Value *MallocFunc = MallocF;
432 if (!MallocFunc)
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000433 // prototype malloc as "void *malloc(size_t)"
Victor Hernandezbb336a12009-11-10 19:53:28 +0000434 MallocFunc = M->getOrInsertFunction("malloc", BPTy, IntPtrTy, NULL);
Victor Hernandez788eaab2009-09-18 19:20:02 +0000435 const PointerType *AllocPtrType = PointerType::getUnqual(AllocTy);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000436 CallInst *MCall = NULL;
Nick Lewyckybb1410e2009-10-17 23:52:26 +0000437 Instruction *Result = NULL;
Victor Hernandez788eaab2009-09-18 19:20:02 +0000438 if (InsertBefore) {
Victor Hernandezbb336a12009-11-10 19:53:28 +0000439 MCall = CallInst::Create(MallocFunc, AllocSize, "malloccall", InsertBefore);
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000440 Result = MCall;
441 if (Result->getType() != AllocPtrType)
442 // Create a cast instruction to convert to the right type...
Victor Hernandezf3db9152009-11-07 00:16:28 +0000443 Result = new BitCastInst(MCall, AllocPtrType, Name, InsertBefore);
Victor Hernandez788eaab2009-09-18 19:20:02 +0000444 } else {
Victor Hernandezbb336a12009-11-10 19:53:28 +0000445 MCall = CallInst::Create(MallocFunc, AllocSize, "malloccall");
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000446 Result = MCall;
447 if (Result->getType() != AllocPtrType) {
448 InsertAtEnd->getInstList().push_back(MCall);
449 // Create a cast instruction to convert to the right type...
Victor Hernandezf3db9152009-11-07 00:16:28 +0000450 Result = new BitCastInst(MCall, AllocPtrType, Name);
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000451 }
Victor Hernandez788eaab2009-09-18 19:20:02 +0000452 }
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000453 MCall->setTailCall();
Victor Hernandezbb336a12009-11-10 19:53:28 +0000454 if (Function *F = dyn_cast<Function>(MallocFunc)) {
455 MCall->setCallingConv(F->getCallingConv());
456 if (!F->doesNotAlias(0)) F->setDoesNotAlias(0);
457 }
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000458 assert(!MCall->getType()->isVoidTy() && "Malloc has void return type");
Victor Hernandez788eaab2009-09-18 19:20:02 +0000459
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000460 return Result;
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000461}
462
463/// CreateMalloc - Generate the IR for a call to malloc:
464/// 1. Compute the malloc call's argument as the specified type's size,
465/// possibly multiplied by the array size if the array size is not
466/// constant 1.
467/// 2. Call malloc with that argument.
468/// 3. Bitcast the result of the malloc call to the specified type.
Nick Lewyckybb1410e2009-10-17 23:52:26 +0000469Instruction *CallInst::CreateMalloc(Instruction *InsertBefore,
470 const Type *IntPtrTy, const Type *AllocTy,
Victor Hernandezf3db9152009-11-07 00:16:28 +0000471 Value *AllocSize, Value *ArraySize,
Duncan Sands41b4a6b2010-07-12 08:16:59 +0000472 Function * MallocF,
Victor Hernandezf3db9152009-11-07 00:16:28 +0000473 const Twine &Name) {
474 return createMalloc(InsertBefore, NULL, IntPtrTy, AllocTy, AllocSize,
Chris Lattner601e390a2010-07-12 00:57:28 +0000475 ArraySize, MallocF, Name);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000476}
477
478/// CreateMalloc - Generate the IR for a call to malloc:
479/// 1. Compute the malloc call's argument as the specified type's size,
480/// possibly multiplied by the array size if the array size is not
481/// constant 1.
482/// 2. Call malloc with that argument.
483/// 3. Bitcast the result of the malloc call to the specified type.
484/// Note: This function does not add the bitcast to the basic block, that is the
485/// responsibility of the caller.
Nick Lewyckybb1410e2009-10-17 23:52:26 +0000486Instruction *CallInst::CreateMalloc(BasicBlock *InsertAtEnd,
487 const Type *IntPtrTy, const Type *AllocTy,
Victor Hernandezf3db9152009-11-07 00:16:28 +0000488 Value *AllocSize, Value *ArraySize,
489 Function *MallocF, const Twine &Name) {
490 return createMalloc(NULL, InsertAtEnd, IntPtrTy, AllocTy, AllocSize,
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000491 ArraySize, MallocF, Name);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000492}
Duncan Sands5208d1a2007-11-28 17:07:01 +0000493
Victor Hernandeze2971492009-10-24 04:23:03 +0000494static Instruction* createFree(Value* Source, Instruction *InsertBefore,
495 BasicBlock *InsertAtEnd) {
496 assert(((!InsertBefore && InsertAtEnd) || (InsertBefore && !InsertAtEnd)) &&
497 "createFree needs either InsertBefore or InsertAtEnd");
Duncan Sands19d0b472010-02-16 11:11:14 +0000498 assert(Source->getType()->isPointerTy() &&
Victor Hernandeze2971492009-10-24 04:23:03 +0000499 "Can not free something of nonpointer type!");
500
501 BasicBlock* BB = InsertBefore ? InsertBefore->getParent() : InsertAtEnd;
502 Module* M = BB->getParent()->getParent();
503
504 const Type *VoidTy = Type::getVoidTy(M->getContext());
505 const Type *IntPtrTy = Type::getInt8PtrTy(M->getContext());
506 // prototype free as "void free(void*)"
Chris Lattner2156c222009-11-09 07:12:01 +0000507 Value *FreeFunc = M->getOrInsertFunction("free", VoidTy, IntPtrTy, NULL);
Victor Hernandeze2971492009-10-24 04:23:03 +0000508 CallInst* Result = NULL;
509 Value *PtrCast = Source;
510 if (InsertBefore) {
511 if (Source->getType() != IntPtrTy)
512 PtrCast = new BitCastInst(Source, IntPtrTy, "", InsertBefore);
513 Result = CallInst::Create(FreeFunc, PtrCast, "", InsertBefore);
514 } else {
515 if (Source->getType() != IntPtrTy)
516 PtrCast = new BitCastInst(Source, IntPtrTy, "", InsertAtEnd);
517 Result = CallInst::Create(FreeFunc, PtrCast, "");
518 }
519 Result->setTailCall();
Chris Lattner2156c222009-11-09 07:12:01 +0000520 if (Function *F = dyn_cast<Function>(FreeFunc))
521 Result->setCallingConv(F->getCallingConv());
Victor Hernandeze2971492009-10-24 04:23:03 +0000522
523 return Result;
524}
525
526/// CreateFree - Generate the IR for a call to the builtin free function.
Chris Lattner601e390a2010-07-12 00:57:28 +0000527Instruction * CallInst::CreateFree(Value* Source, Instruction *InsertBefore) {
528 return createFree(Source, InsertBefore, NULL);
Victor Hernandeze2971492009-10-24 04:23:03 +0000529}
530
531/// CreateFree - Generate the IR for a call to the builtin free function.
532/// Note: This function does not add the call to the basic block, that is the
533/// responsibility of the caller.
534Instruction* CallInst::CreateFree(Value* Source, BasicBlock *InsertAtEnd) {
535 Instruction* FreeCall = createFree(Source, NULL, InsertAtEnd);
536 assert(FreeCall && "CreateFree did not create a CallInst");
537 return FreeCall;
538}
539
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000540//===----------------------------------------------------------------------===//
541// InvokeInst Implementation
542//===----------------------------------------------------------------------===//
543
544void InvokeInst::init(Value *Fn, BasicBlock *IfNormal, BasicBlock *IfException,
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000545 Value* const *Args, unsigned NumArgs) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000546 assert(NumOperands == 3+NumArgs && "NumOperands not set up?");
Gabor Greifa2fbc0a2010-03-24 13:21:49 +0000547 Op<-3>() = Fn;
548 Op<-2>() = IfNormal;
549 Op<-1>() = IfException;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000550 const FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000551 cast<FunctionType>(cast<PointerType>(Fn->getType())->getElementType());
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000552 FTy = FTy; // silence warning.
Misha Brukmanb1c93172005-04-21 23:48:37 +0000553
Anton Korobeynikov579f0712008-02-20 11:08:44 +0000554 assert(((NumArgs == FTy->getNumParams()) ||
555 (FTy->isVarArg() && NumArgs > FTy->getNumParams())) &&
Gabor Greif668d7002010-03-23 13:45:54 +0000556 "Invoking a function with bad signature");
Misha Brukmanb1c93172005-04-21 23:48:37 +0000557
Gabor Greifa2fbc0a2010-03-24 13:21:49 +0000558 Use *OL = OperandList;
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000559 for (unsigned i = 0, e = NumArgs; i != e; i++) {
Chris Lattner667a0562006-05-03 00:48:22 +0000560 assert((i >= FTy->getNumParams() ||
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000561 FTy->getParamType(i) == Args[i]->getType()) &&
Chris Lattner667a0562006-05-03 00:48:22 +0000562 "Invoking a function with a bad signature!");
563
Gabor Greifa2fbc0a2010-03-24 13:21:49 +0000564 OL[i] = Args[i];
Chris Lattner667a0562006-05-03 00:48:22 +0000565 }
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000566}
567
Misha Brukmanb1c93172005-04-21 23:48:37 +0000568InvokeInst::InvokeInst(const InvokeInst &II)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000569 : TerminatorInst(II.getType(), Instruction::Invoke,
Gabor Greif697e94c2008-05-15 10:04:30 +0000570 OperandTraits<InvokeInst>::op_end(this)
571 - II.getNumOperands(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000572 II.getNumOperands()) {
Devang Patel4c758ea2008-09-25 21:00:45 +0000573 setAttributes(II.getAttributes());
Chris Lattnerb9c86512009-12-29 02:14:09 +0000574 setCallingConv(II.getCallingConv());
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000575 Use *OL = OperandList, *InOL = II.OperandList;
576 for (unsigned i = 0, e = II.getNumOperands(); i != e; ++i)
Gabor Greif2d3024d2008-05-26 21:33:52 +0000577 OL[i] = InOL[i];
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000578 SubclassOptionalData = II.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000579}
580
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000581BasicBlock *InvokeInst::getSuccessorV(unsigned idx) const {
582 return getSuccessor(idx);
583}
584unsigned InvokeInst::getNumSuccessorsV() const {
585 return getNumSuccessors();
586}
587void InvokeInst::setSuccessorV(unsigned idx, BasicBlock *B) {
588 return setSuccessor(idx, B);
589}
590
Devang Patelba3fa6c2008-09-23 23:03:40 +0000591bool InvokeInst::paramHasAttr(unsigned i, Attributes attr) const {
Devang Patel4c758ea2008-09-25 21:00:45 +0000592 if (AttributeList.paramHasAttr(i, attr))
Duncan Sands5208d1a2007-11-28 17:07:01 +0000593 return true;
Duncan Sands8dfcd592007-11-29 08:30:15 +0000594 if (const Function *F = getCalledFunction())
Dale Johannesen89268bc2008-02-19 21:38:47 +0000595 return F->paramHasAttr(i, attr);
Duncan Sands8dfcd592007-11-29 08:30:15 +0000596 return false;
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000597}
598
Devang Patel4c758ea2008-09-25 21:00:45 +0000599void InvokeInst::addAttribute(unsigned i, Attributes attr) {
600 AttrListPtr PAL = getAttributes();
Eric Christopher901b1a72008-05-16 20:39:43 +0000601 PAL = PAL.addAttr(i, attr);
Devang Patel4c758ea2008-09-25 21:00:45 +0000602 setAttributes(PAL);
Eric Christopher901b1a72008-05-16 20:39:43 +0000603}
604
Devang Patel4c758ea2008-09-25 21:00:45 +0000605void InvokeInst::removeAttribute(unsigned i, Attributes attr) {
606 AttrListPtr PAL = getAttributes();
Duncan Sands78c88722008-07-08 08:38:44 +0000607 PAL = PAL.removeAttr(i, attr);
Devang Patel4c758ea2008-09-25 21:00:45 +0000608 setAttributes(PAL);
Duncan Sandsaa31b922007-12-19 21:13:37 +0000609}
610
Duncan Sands5208d1a2007-11-28 17:07:01 +0000611
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000612//===----------------------------------------------------------------------===//
613// ReturnInst Implementation
614//===----------------------------------------------------------------------===//
615
Chris Lattner2195fc42007-02-24 00:55:48 +0000616ReturnInst::ReturnInst(const ReturnInst &RI)
Owen Anderson55f1c092009-08-13 21:58:54 +0000617 : TerminatorInst(Type::getVoidTy(RI.getContext()), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000618 OperandTraits<ReturnInst>::op_end(this) -
619 RI.getNumOperands(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000620 RI.getNumOperands()) {
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000621 if (RI.getNumOperands())
Gabor Greif2d3024d2008-05-26 21:33:52 +0000622 Op<0>() = RI.Op<0>();
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000623 SubclassOptionalData = RI.SubclassOptionalData;
Chris Lattner2195fc42007-02-24 00:55:48 +0000624}
625
Owen Anderson55f1c092009-08-13 21:58:54 +0000626ReturnInst::ReturnInst(LLVMContext &C, Value *retVal, Instruction *InsertBefore)
627 : TerminatorInst(Type::getVoidTy(C), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000628 OperandTraits<ReturnInst>::op_end(this) - !!retVal, !!retVal,
629 InsertBefore) {
Devang Patelc38eb522008-02-26 18:49:29 +0000630 if (retVal)
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000631 Op<0>() = retVal;
Chris Lattner2195fc42007-02-24 00:55:48 +0000632}
Owen Anderson55f1c092009-08-13 21:58:54 +0000633ReturnInst::ReturnInst(LLVMContext &C, Value *retVal, BasicBlock *InsertAtEnd)
634 : TerminatorInst(Type::getVoidTy(C), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000635 OperandTraits<ReturnInst>::op_end(this) - !!retVal, !!retVal,
636 InsertAtEnd) {
Devang Patelc38eb522008-02-26 18:49:29 +0000637 if (retVal)
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000638 Op<0>() = retVal;
Chris Lattner2195fc42007-02-24 00:55:48 +0000639}
Owen Anderson55f1c092009-08-13 21:58:54 +0000640ReturnInst::ReturnInst(LLVMContext &Context, BasicBlock *InsertAtEnd)
641 : TerminatorInst(Type::getVoidTy(Context), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000642 OperandTraits<ReturnInst>::op_end(this), 0, InsertAtEnd) {
Devang Patel59643e52008-02-23 00:35:18 +0000643}
644
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000645unsigned ReturnInst::getNumSuccessorsV() const {
646 return getNumSuccessors();
647}
648
Devang Patelae682fb2008-02-26 17:56:20 +0000649/// Out-of-line ReturnInst method, put here so the C++ compiler can choose to
650/// emit the vtable for the class in this translation unit.
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000651void ReturnInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000652 llvm_unreachable("ReturnInst has no successors!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000653}
654
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000655BasicBlock *ReturnInst::getSuccessorV(unsigned idx) const {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000656 llvm_unreachable("ReturnInst has no successors!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000657 return 0;
658}
659
Devang Patel59643e52008-02-23 00:35:18 +0000660ReturnInst::~ReturnInst() {
Devang Patel59643e52008-02-23 00:35:18 +0000661}
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000662
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000663//===----------------------------------------------------------------------===//
664// UnwindInst Implementation
665//===----------------------------------------------------------------------===//
666
Owen Anderson55f1c092009-08-13 21:58:54 +0000667UnwindInst::UnwindInst(LLVMContext &Context, Instruction *InsertBefore)
668 : TerminatorInst(Type::getVoidTy(Context), Instruction::Unwind,
669 0, 0, InsertBefore) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000670}
Owen Anderson55f1c092009-08-13 21:58:54 +0000671UnwindInst::UnwindInst(LLVMContext &Context, BasicBlock *InsertAtEnd)
672 : TerminatorInst(Type::getVoidTy(Context), Instruction::Unwind,
673 0, 0, InsertAtEnd) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000674}
675
676
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000677unsigned UnwindInst::getNumSuccessorsV() const {
678 return getNumSuccessors();
679}
680
681void UnwindInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000682 llvm_unreachable("UnwindInst has no successors!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000683}
684
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000685BasicBlock *UnwindInst::getSuccessorV(unsigned idx) const {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000686 llvm_unreachable("UnwindInst has no successors!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000687 return 0;
688}
689
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000690//===----------------------------------------------------------------------===//
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000691// UnreachableInst Implementation
692//===----------------------------------------------------------------------===//
693
Owen Anderson55f1c092009-08-13 21:58:54 +0000694UnreachableInst::UnreachableInst(LLVMContext &Context,
695 Instruction *InsertBefore)
696 : TerminatorInst(Type::getVoidTy(Context), Instruction::Unreachable,
697 0, 0, InsertBefore) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000698}
Owen Anderson55f1c092009-08-13 21:58:54 +0000699UnreachableInst::UnreachableInst(LLVMContext &Context, BasicBlock *InsertAtEnd)
700 : TerminatorInst(Type::getVoidTy(Context), Instruction::Unreachable,
701 0, 0, InsertAtEnd) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000702}
703
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000704unsigned UnreachableInst::getNumSuccessorsV() const {
705 return getNumSuccessors();
706}
707
708void UnreachableInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000709 llvm_unreachable("UnwindInst has no successors!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000710}
711
712BasicBlock *UnreachableInst::getSuccessorV(unsigned idx) const {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000713 llvm_unreachable("UnwindInst has no successors!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000714 return 0;
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000715}
716
717//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000718// BranchInst Implementation
719//===----------------------------------------------------------------------===//
720
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000721void BranchInst::AssertOK() {
722 if (isConditional())
Duncan Sands9dff9be2010-02-15 16:12:20 +0000723 assert(getCondition()->getType()->isIntegerTy(1) &&
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000724 "May only branch on boolean predicates!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000725}
726
Chris Lattner2195fc42007-02-24 00:55:48 +0000727BranchInst::BranchInst(BasicBlock *IfTrue, Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +0000728 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000729 OperandTraits<BranchInst>::op_end(this) - 1,
730 1, InsertBefore) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000731 assert(IfTrue != 0 && "Branch destination may not be null!");
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000732 Op<-1>() = IfTrue;
Chris Lattner2195fc42007-02-24 00:55:48 +0000733}
734BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
735 Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +0000736 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000737 OperandTraits<BranchInst>::op_end(this) - 3,
738 3, InsertBefore) {
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000739 Op<-1>() = IfTrue;
740 Op<-2>() = IfFalse;
741 Op<-3>() = Cond;
Chris Lattner2195fc42007-02-24 00:55:48 +0000742#ifndef NDEBUG
743 AssertOK();
744#endif
745}
746
747BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +0000748 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000749 OperandTraits<BranchInst>::op_end(this) - 1,
750 1, InsertAtEnd) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000751 assert(IfTrue != 0 && "Branch destination may not be null!");
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000752 Op<-1>() = IfTrue;
Chris Lattner2195fc42007-02-24 00:55:48 +0000753}
754
755BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
756 BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +0000757 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000758 OperandTraits<BranchInst>::op_end(this) - 3,
759 3, InsertAtEnd) {
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000760 Op<-1>() = IfTrue;
761 Op<-2>() = IfFalse;
762 Op<-3>() = Cond;
Chris Lattner2195fc42007-02-24 00:55:48 +0000763#ifndef NDEBUG
764 AssertOK();
765#endif
766}
767
768
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000769BranchInst::BranchInst(const BranchInst &BI) :
Owen Anderson55f1c092009-08-13 21:58:54 +0000770 TerminatorInst(Type::getVoidTy(BI.getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000771 OperandTraits<BranchInst>::op_end(this) - BI.getNumOperands(),
772 BI.getNumOperands()) {
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000773 Op<-1>() = BI.Op<-1>();
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000774 if (BI.getNumOperands() != 1) {
775 assert(BI.getNumOperands() == 3 && "BR can have 1 or 3 operands!");
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000776 Op<-3>() = BI.Op<-3>();
777 Op<-2>() = BI.Op<-2>();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000778 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000779 SubclassOptionalData = BI.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000780}
781
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000782
783Use* Use::getPrefix() {
784 PointerIntPair<Use**, 2, PrevPtrTag> &PotentialPrefix(this[-1].Prev);
785 if (PotentialPrefix.getOpaqueValue())
786 return 0;
787
788 return reinterpret_cast<Use*>((char*)&PotentialPrefix + 1);
789}
790
791BranchInst::~BranchInst() {
792 if (NumOperands == 1) {
793 if (Use *Prefix = OperandList->getPrefix()) {
794 Op<-1>() = 0;
795 //
796 // mark OperandList to have a special value for scrutiny
797 // by baseclass destructors and operator delete
798 OperandList = Prefix;
799 } else {
800 NumOperands = 3;
801 OperandList = op_begin();
802 }
803 }
804}
805
806
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000807BasicBlock *BranchInst::getSuccessorV(unsigned idx) const {
808 return getSuccessor(idx);
809}
810unsigned BranchInst::getNumSuccessorsV() const {
811 return getNumSuccessors();
812}
813void BranchInst::setSuccessorV(unsigned idx, BasicBlock *B) {
814 setSuccessor(idx, B);
815}
816
817
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000818//===----------------------------------------------------------------------===//
Victor Hernandez8acf2952009-10-23 21:09:37 +0000819// AllocaInst Implementation
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000820//===----------------------------------------------------------------------===//
821
Owen Andersonb6b25302009-07-14 23:09:55 +0000822static Value *getAISize(LLVMContext &Context, Value *Amt) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000823 if (!Amt)
Owen Anderson55f1c092009-08-13 21:58:54 +0000824 Amt = ConstantInt::get(Type::getInt32Ty(Context), 1);
Chris Lattnerbb7ff662006-05-10 04:32:43 +0000825 else {
826 assert(!isa<BasicBlock>(Amt) &&
Chris Lattner9b6ec772007-10-18 16:10:48 +0000827 "Passed basic block into allocation size parameter! Use other ctor");
Dan Gohman2140a742010-05-28 01:14:11 +0000828 assert(Amt->getType()->isIntegerTy() &&
829 "Allocation array size is not an integer!");
Chris Lattnerbb7ff662006-05-10 04:32:43 +0000830 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000831 return Amt;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000832}
833
Victor Hernandez8acf2952009-10-23 21:09:37 +0000834AllocaInst::AllocaInst(const Type *Ty, Value *ArraySize,
835 const Twine &Name, Instruction *InsertBefore)
836 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
837 getAISize(Ty->getContext(), ArraySize), InsertBefore) {
838 setAlignment(0);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000839 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Victor Hernandez8acf2952009-10-23 21:09:37 +0000840 setName(Name);
841}
842
843AllocaInst::AllocaInst(const Type *Ty, Value *ArraySize,
844 const Twine &Name, BasicBlock *InsertAtEnd)
845 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
846 getAISize(Ty->getContext(), ArraySize), InsertAtEnd) {
847 setAlignment(0);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000848 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Victor Hernandez8acf2952009-10-23 21:09:37 +0000849 setName(Name);
850}
851
852AllocaInst::AllocaInst(const Type *Ty, const Twine &Name,
853 Instruction *InsertBefore)
854 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
855 getAISize(Ty->getContext(), 0), InsertBefore) {
856 setAlignment(0);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000857 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Victor Hernandez8acf2952009-10-23 21:09:37 +0000858 setName(Name);
859}
860
861AllocaInst::AllocaInst(const Type *Ty, const Twine &Name,
862 BasicBlock *InsertAtEnd)
863 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
864 getAISize(Ty->getContext(), 0), InsertAtEnd) {
865 setAlignment(0);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000866 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Victor Hernandez8acf2952009-10-23 21:09:37 +0000867 setName(Name);
868}
869
870AllocaInst::AllocaInst(const Type *Ty, Value *ArraySize, unsigned Align,
871 const Twine &Name, Instruction *InsertBefore)
872 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
Owen Anderson4fdeba92009-07-15 23:53:25 +0000873 getAISize(Ty->getContext(), ArraySize), InsertBefore) {
Dan Gohmanaa583d72008-03-24 16:55:58 +0000874 setAlignment(Align);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000875 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Chris Lattner0f048162007-02-13 07:54:42 +0000876 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000877}
878
Victor Hernandez8acf2952009-10-23 21:09:37 +0000879AllocaInst::AllocaInst(const Type *Ty, Value *ArraySize, unsigned Align,
880 const Twine &Name, BasicBlock *InsertAtEnd)
881 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
Owen Anderson4fdeba92009-07-15 23:53:25 +0000882 getAISize(Ty->getContext(), ArraySize), InsertAtEnd) {
Dan Gohmanaa583d72008-03-24 16:55:58 +0000883 setAlignment(Align);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000884 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Chris Lattner0f048162007-02-13 07:54:42 +0000885 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000886}
887
Gordon Henriksen14a55692007-12-10 02:14:30 +0000888// Out of line virtual method, so the vtable, etc has a home.
Victor Hernandez8acf2952009-10-23 21:09:37 +0000889AllocaInst::~AllocaInst() {
Gordon Henriksen14a55692007-12-10 02:14:30 +0000890}
891
Victor Hernandez8acf2952009-10-23 21:09:37 +0000892void AllocaInst::setAlignment(unsigned Align) {
Dan Gohmanaa583d72008-03-24 16:55:58 +0000893 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
Dan Gohmana7e5a242010-07-28 20:12:04 +0000894 assert(Align <= MaximumAlignment &&
895 "Alignment is greater than MaximumAlignment!");
Chris Lattnerd8eb2cf2009-12-29 02:46:09 +0000896 setInstructionSubclassData(Log2_32(Align) + 1);
Dan Gohmanaa583d72008-03-24 16:55:58 +0000897 assert(getAlignment() == Align && "Alignment representation error!");
898}
899
Victor Hernandez8acf2952009-10-23 21:09:37 +0000900bool AllocaInst::isArrayAllocation() const {
Reid Spencera9e6e312007-03-01 20:27:41 +0000901 if (ConstantInt *CI = dyn_cast<ConstantInt>(getOperand(0)))
902 return CI->getZExtValue() != 1;
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000903 return true;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000904}
905
Victor Hernandez8acf2952009-10-23 21:09:37 +0000906const Type *AllocaInst::getAllocatedType() const {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000907 return getType()->getElementType();
908}
909
Chris Lattner8b291e62008-11-26 02:54:17 +0000910/// isStaticAlloca - Return true if this alloca is in the entry block of the
911/// function and is a constant size. If so, the code generator will fold it
912/// into the prolog/epilog code, so it is basically free.
913bool AllocaInst::isStaticAlloca() const {
914 // Must be constant size.
915 if (!isa<ConstantInt>(getArraySize())) return false;
916
917 // Must be in the entry block.
918 const BasicBlock *Parent = getParent();
919 return Parent == &Parent->getParent()->front();
920}
921
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000922//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000923// LoadInst Implementation
924//===----------------------------------------------------------------------===//
925
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000926void LoadInst::AssertOK() {
Duncan Sands19d0b472010-02-16 11:11:14 +0000927 assert(getOperand(0)->getType()->isPointerTy() &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000928 "Ptr must have pointer type.");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000929}
930
Daniel Dunbar4975db62009-07-25 04:41:11 +0000931LoadInst::LoadInst(Value *Ptr, const Twine &Name, Instruction *InsertBef)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000932 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000933 Load, Ptr, InsertBef) {
Chris Lattnerdf57a022005-02-05 01:38:38 +0000934 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000935 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000936 AssertOK();
Chris Lattner0f048162007-02-13 07:54:42 +0000937 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000938}
939
Daniel Dunbar4975db62009-07-25 04:41:11 +0000940LoadInst::LoadInst(Value *Ptr, const Twine &Name, BasicBlock *InsertAE)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000941 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000942 Load, Ptr, InsertAE) {
Chris Lattnerdf57a022005-02-05 01:38:38 +0000943 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000944 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000945 AssertOK();
Chris Lattner0f048162007-02-13 07:54:42 +0000946 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000947}
948
Daniel Dunbar4975db62009-07-25 04:41:11 +0000949LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000950 Instruction *InsertBef)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000951 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000952 Load, Ptr, InsertBef) {
Chris Lattnerdf57a022005-02-05 01:38:38 +0000953 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +0000954 setAlignment(0);
955 AssertOK();
956 setName(Name);
957}
958
Daniel Dunbar4975db62009-07-25 04:41:11 +0000959LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Christopher Lamb84485702007-04-22 19:24:39 +0000960 unsigned Align, Instruction *InsertBef)
961 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
962 Load, Ptr, InsertBef) {
963 setVolatile(isVolatile);
964 setAlignment(Align);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000965 AssertOK();
Chris Lattner0f048162007-02-13 07:54:42 +0000966 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000967}
968
Daniel Dunbar4975db62009-07-25 04:41:11 +0000969LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Dan Gohman68659282007-07-18 20:51:11 +0000970 unsigned Align, BasicBlock *InsertAE)
971 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
972 Load, Ptr, InsertAE) {
973 setVolatile(isVolatile);
974 setAlignment(Align);
975 AssertOK();
976 setName(Name);
977}
978
Daniel Dunbar4975db62009-07-25 04:41:11 +0000979LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000980 BasicBlock *InsertAE)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000981 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000982 Load, Ptr, InsertAE) {
Chris Lattner0f048162007-02-13 07:54:42 +0000983 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +0000984 setAlignment(0);
Chris Lattner0f048162007-02-13 07:54:42 +0000985 AssertOK();
986 setName(Name);
987}
988
Daniel Dunbar27096822009-08-11 18:11:15 +0000989
990
991LoadInst::LoadInst(Value *Ptr, const char *Name, Instruction *InsertBef)
992 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
993 Load, Ptr, InsertBef) {
994 setVolatile(false);
995 setAlignment(0);
996 AssertOK();
997 if (Name && Name[0]) setName(Name);
998}
999
1000LoadInst::LoadInst(Value *Ptr, const char *Name, BasicBlock *InsertAE)
1001 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
1002 Load, Ptr, InsertAE) {
1003 setVolatile(false);
1004 setAlignment(0);
1005 AssertOK();
1006 if (Name && Name[0]) setName(Name);
1007}
1008
1009LoadInst::LoadInst(Value *Ptr, const char *Name, bool isVolatile,
1010 Instruction *InsertBef)
1011: UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
1012 Load, Ptr, InsertBef) {
1013 setVolatile(isVolatile);
1014 setAlignment(0);
1015 AssertOK();
1016 if (Name && Name[0]) setName(Name);
1017}
1018
1019LoadInst::LoadInst(Value *Ptr, const char *Name, bool isVolatile,
1020 BasicBlock *InsertAE)
1021 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
1022 Load, Ptr, InsertAE) {
1023 setVolatile(isVolatile);
1024 setAlignment(0);
1025 AssertOK();
1026 if (Name && Name[0]) setName(Name);
1027}
1028
Christopher Lamb84485702007-04-22 19:24:39 +00001029void LoadInst::setAlignment(unsigned Align) {
1030 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
Dan Gohmana7e5a242010-07-28 20:12:04 +00001031 assert(Align <= MaximumAlignment &&
1032 "Alignment is greater than MaximumAlignment!");
Chris Lattnerd8eb2cf2009-12-29 02:46:09 +00001033 setInstructionSubclassData((getSubclassDataFromInstruction() & 1) |
1034 ((Log2_32(Align)+1)<<1));
Dan Gohmana7e5a242010-07-28 20:12:04 +00001035 assert(getAlignment() == Align && "Alignment representation error!");
Christopher Lamb84485702007-04-22 19:24:39 +00001036}
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001037
1038//===----------------------------------------------------------------------===//
1039// StoreInst Implementation
1040//===----------------------------------------------------------------------===//
1041
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001042void StoreInst::AssertOK() {
Nate Begemanfecbc8c2008-07-29 15:49:41 +00001043 assert(getOperand(0) && getOperand(1) && "Both operands must be non-null!");
Duncan Sands19d0b472010-02-16 11:11:14 +00001044 assert(getOperand(1)->getType()->isPointerTy() &&
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001045 "Ptr must have pointer type!");
1046 assert(getOperand(0)->getType() ==
1047 cast<PointerType>(getOperand(1)->getType())->getElementType()
Alkis Evlogimenos079fbde2004-08-06 14:33:37 +00001048 && "Ptr must be a pointer to Val type!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001049}
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001050
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001051
1052StoreInst::StoreInst(Value *val, Value *addr, Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +00001053 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001054 OperandTraits<StoreInst>::op_begin(this),
1055 OperandTraits<StoreInst>::operands(this),
1056 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001057 Op<0>() = val;
1058 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +00001059 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +00001060 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001061 AssertOK();
1062}
1063
1064StoreInst::StoreInst(Value *val, Value *addr, BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +00001065 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001066 OperandTraits<StoreInst>::op_begin(this),
1067 OperandTraits<StoreInst>::operands(this),
1068 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001069 Op<0>() = val;
1070 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +00001071 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +00001072 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001073 AssertOK();
1074}
1075
Misha Brukmanb1c93172005-04-21 23:48:37 +00001076StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001077 Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +00001078 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001079 OperandTraits<StoreInst>::op_begin(this),
1080 OperandTraits<StoreInst>::operands(this),
1081 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001082 Op<0>() = val;
1083 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +00001084 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +00001085 setAlignment(0);
1086 AssertOK();
1087}
1088
1089StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
1090 unsigned Align, Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +00001091 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001092 OperandTraits<StoreInst>::op_begin(this),
1093 OperandTraits<StoreInst>::operands(this),
1094 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001095 Op<0>() = val;
1096 Op<1>() = addr;
Christopher Lamb84485702007-04-22 19:24:39 +00001097 setVolatile(isVolatile);
1098 setAlignment(Align);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001099 AssertOK();
1100}
1101
Misha Brukmanb1c93172005-04-21 23:48:37 +00001102StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Dan Gohman68659282007-07-18 20:51:11 +00001103 unsigned Align, BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +00001104 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001105 OperandTraits<StoreInst>::op_begin(this),
1106 OperandTraits<StoreInst>::operands(this),
1107 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001108 Op<0>() = val;
1109 Op<1>() = addr;
Dan Gohman68659282007-07-18 20:51:11 +00001110 setVolatile(isVolatile);
1111 setAlignment(Align);
1112 AssertOK();
1113}
1114
1115StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001116 BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +00001117 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001118 OperandTraits<StoreInst>::op_begin(this),
1119 OperandTraits<StoreInst>::operands(this),
1120 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001121 Op<0>() = val;
1122 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +00001123 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +00001124 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001125 AssertOK();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001126}
1127
Christopher Lamb84485702007-04-22 19:24:39 +00001128void StoreInst::setAlignment(unsigned Align) {
1129 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
Dan Gohmana7e5a242010-07-28 20:12:04 +00001130 assert(Align <= MaximumAlignment &&
1131 "Alignment is greater than MaximumAlignment!");
Chris Lattnerd8eb2cf2009-12-29 02:46:09 +00001132 setInstructionSubclassData((getSubclassDataFromInstruction() & 1) |
1133 ((Log2_32(Align)+1) << 1));
Dan Gohmana7e5a242010-07-28 20:12:04 +00001134 assert(getAlignment() == Align && "Alignment representation error!");
Christopher Lamb84485702007-04-22 19:24:39 +00001135}
1136
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001137//===----------------------------------------------------------------------===//
1138// GetElementPtrInst Implementation
1139//===----------------------------------------------------------------------===//
1140
Christopher Lambedf07882007-12-17 01:12:55 +00001141static unsigned retrieveAddrSpace(const Value *Val) {
1142 return cast<PointerType>(Val->getType())->getAddressSpace();
1143}
1144
Gabor Greif21ba1842008-06-06 20:28:12 +00001145void GetElementPtrInst::init(Value *Ptr, Value* const *Idx, unsigned NumIdx,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001146 const Twine &Name) {
Gabor Greiff6caff662008-05-10 08:32:32 +00001147 assert(NumOperands == 1+NumIdx && "NumOperands not initialized?");
1148 Use *OL = OperandList;
Gabor Greif2d3024d2008-05-26 21:33:52 +00001149 OL[0] = Ptr;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001150
Chris Lattner79807c3d2007-01-31 19:47:18 +00001151 for (unsigned i = 0; i != NumIdx; ++i)
Gabor Greif2d3024d2008-05-26 21:33:52 +00001152 OL[i+1] = Idx[i];
Matthijs Kooijman76d8dec2008-06-04 16:14:12 +00001153
1154 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001155}
1156
Daniel Dunbar4975db62009-07-25 04:41:11 +00001157void GetElementPtrInst::init(Value *Ptr, Value *Idx, const Twine &Name) {
Gabor Greiff6caff662008-05-10 08:32:32 +00001158 assert(NumOperands == 2 && "NumOperands not initialized?");
1159 Use *OL = OperandList;
Gabor Greif2d3024d2008-05-26 21:33:52 +00001160 OL[0] = Ptr;
1161 OL[1] = Idx;
Matthijs Kooijman76d8dec2008-06-04 16:14:12 +00001162
1163 setName(Name);
Chris Lattner82981202005-05-03 05:43:30 +00001164}
1165
Gabor Greiff6caff662008-05-10 08:32:32 +00001166GetElementPtrInst::GetElementPtrInst(const GetElementPtrInst &GEPI)
Gabor Greife9408e62008-05-27 11:03:29 +00001167 : Instruction(GEPI.getType(), GetElementPtr,
Gabor Greif697e94c2008-05-15 10:04:30 +00001168 OperandTraits<GetElementPtrInst>::op_end(this)
1169 - GEPI.getNumOperands(),
Gabor Greiff6caff662008-05-10 08:32:32 +00001170 GEPI.getNumOperands()) {
1171 Use *OL = OperandList;
1172 Use *GEPIOL = GEPI.OperandList;
1173 for (unsigned i = 0, E = NumOperands; i != E; ++i)
Gabor Greif2d3024d2008-05-26 21:33:52 +00001174 OL[i] = GEPIOL[i];
Dan Gohmanc8a27f22009-08-25 22:11:20 +00001175 SubclassOptionalData = GEPI.SubclassOptionalData;
Gabor Greiff6caff662008-05-10 08:32:32 +00001176}
1177
Chris Lattner82981202005-05-03 05:43:30 +00001178GetElementPtrInst::GetElementPtrInst(Value *Ptr, Value *Idx,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001179 const Twine &Name, Instruction *InBe)
Owen Anderson4056ca92009-07-29 22:17:13 +00001180 : Instruction(PointerType::get(
Owen Andersond420fd42009-07-16 00:03:07 +00001181 checkType(getIndexedType(Ptr->getType(),Idx)), retrieveAddrSpace(Ptr)),
Gabor Greiff6caff662008-05-10 08:32:32 +00001182 GetElementPtr,
1183 OperandTraits<GetElementPtrInst>::op_end(this) - 2,
1184 2, InBe) {
Matthijs Kooijman76d8dec2008-06-04 16:14:12 +00001185 init(Ptr, Idx, Name);
Chris Lattner82981202005-05-03 05:43:30 +00001186}
1187
1188GetElementPtrInst::GetElementPtrInst(Value *Ptr, Value *Idx,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001189 const Twine &Name, BasicBlock *IAE)
Owen Anderson4056ca92009-07-29 22:17:13 +00001190 : Instruction(PointerType::get(
Owen Andersond420fd42009-07-16 00:03:07 +00001191 checkType(getIndexedType(Ptr->getType(),Idx)),
1192 retrieveAddrSpace(Ptr)),
Gabor Greiff6caff662008-05-10 08:32:32 +00001193 GetElementPtr,
1194 OperandTraits<GetElementPtrInst>::op_end(this) - 2,
1195 2, IAE) {
Matthijs Kooijman76d8dec2008-06-04 16:14:12 +00001196 init(Ptr, Idx, Name);
Chris Lattner82981202005-05-03 05:43:30 +00001197}
1198
Chris Lattner6090a422009-03-09 04:46:40 +00001199/// getIndexedType - Returns the type of the element that would be accessed with
1200/// a gep instruction with the specified parameters.
1201///
1202/// The Idxs pointer should point to a continuous piece of memory containing the
1203/// indices, either as Value* or uint64_t.
1204///
1205/// A null type is returned if the indices are invalid for the specified
1206/// pointer type.
1207///
Matthijs Kooijman04468622008-07-29 08:46:11 +00001208template <typename IndexTy>
Chris Lattner6090a422009-03-09 04:46:40 +00001209static const Type* getIndexedTypeInternal(const Type *Ptr, IndexTy const *Idxs,
1210 unsigned NumIdx) {
Dan Gohman12fce772008-05-15 19:50:34 +00001211 const PointerType *PTy = dyn_cast<PointerType>(Ptr);
1212 if (!PTy) return 0; // Type isn't a pointer type!
1213 const Type *Agg = PTy->getElementType();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001214
Chris Lattner6090a422009-03-09 04:46:40 +00001215 // Handle the special case of the empty set index set, which is always valid.
Dan Gohman12fce772008-05-15 19:50:34 +00001216 if (NumIdx == 0)
1217 return Agg;
Chris Lattner6090a422009-03-09 04:46:40 +00001218
1219 // If there is at least one index, the top level type must be sized, otherwise
Chris Lattner4a488152009-03-09 04:56:22 +00001220 // it cannot be 'stepped over'. We explicitly allow abstract types (those
1221 // that contain opaque types) under the assumption that it will be resolved to
1222 // a sane type later.
1223 if (!Agg->isSized() && !Agg->isAbstract())
Chris Lattner6090a422009-03-09 04:46:40 +00001224 return 0;
Misha Brukmanb1c93172005-04-21 23:48:37 +00001225
Dan Gohman1ecaf452008-05-31 00:58:22 +00001226 unsigned CurIdx = 1;
1227 for (; CurIdx != NumIdx; ++CurIdx) {
1228 const CompositeType *CT = dyn_cast<CompositeType>(Agg);
Duncan Sands19d0b472010-02-16 11:11:14 +00001229 if (!CT || CT->isPointerTy()) return 0;
Matthijs Kooijman04468622008-07-29 08:46:11 +00001230 IndexTy Index = Idxs[CurIdx];
Dan Gohman1ecaf452008-05-31 00:58:22 +00001231 if (!CT->indexValid(Index)) return 0;
1232 Agg = CT->getTypeAtIndex(Index);
1233
1234 // If the new type forwards to another type, then it is in the middle
1235 // of being refined to another type (and hence, may have dropped all
1236 // references to what it was using before). So, use the new forwarded
1237 // type.
1238 if (const Type *Ty = Agg->getForwardedType())
1239 Agg = Ty;
1240 }
1241 return CurIdx == NumIdx ? Agg : 0;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001242}
1243
Matthijs Kooijman04468622008-07-29 08:46:11 +00001244const Type* GetElementPtrInst::getIndexedType(const Type *Ptr,
1245 Value* const *Idxs,
1246 unsigned NumIdx) {
1247 return getIndexedTypeInternal(Ptr, Idxs, NumIdx);
1248}
1249
1250const Type* GetElementPtrInst::getIndexedType(const Type *Ptr,
1251 uint64_t const *Idxs,
1252 unsigned NumIdx) {
1253 return getIndexedTypeInternal(Ptr, Idxs, NumIdx);
1254}
1255
Chris Lattner82981202005-05-03 05:43:30 +00001256const Type* GetElementPtrInst::getIndexedType(const Type *Ptr, Value *Idx) {
1257 const PointerType *PTy = dyn_cast<PointerType>(Ptr);
1258 if (!PTy) return 0; // Type isn't a pointer type!
1259
1260 // Check the pointer index.
1261 if (!PTy->indexValid(Idx)) return 0;
1262
Chris Lattnerc2233332005-05-03 16:44:45 +00001263 return PTy->getElementType();
Chris Lattner82981202005-05-03 05:43:30 +00001264}
1265
Chris Lattner45f15572007-04-14 00:12:57 +00001266
1267/// hasAllZeroIndices - Return true if all of the indices of this GEP are
1268/// zeros. If so, the result pointer and the first operand have the same
1269/// value, just potentially different types.
1270bool GetElementPtrInst::hasAllZeroIndices() const {
1271 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
1272 if (ConstantInt *CI = dyn_cast<ConstantInt>(getOperand(i))) {
1273 if (!CI->isZero()) return false;
1274 } else {
1275 return false;
1276 }
1277 }
1278 return true;
1279}
1280
Chris Lattner27058292007-04-27 20:35:56 +00001281/// hasAllConstantIndices - Return true if all of the indices of this GEP are
1282/// constant integers. If so, the result pointer and the first operand have
1283/// a constant offset between them.
1284bool GetElementPtrInst::hasAllConstantIndices() const {
1285 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
1286 if (!isa<ConstantInt>(getOperand(i)))
1287 return false;
1288 }
1289 return true;
1290}
1291
Dan Gohman1b849082009-09-07 23:54:19 +00001292void GetElementPtrInst::setIsInBounds(bool B) {
1293 cast<GEPOperator>(this)->setIsInBounds(B);
1294}
Chris Lattner45f15572007-04-14 00:12:57 +00001295
Nick Lewycky28a5f252009-09-27 21:33:04 +00001296bool GetElementPtrInst::isInBounds() const {
1297 return cast<GEPOperator>(this)->isInBounds();
1298}
1299
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001300//===----------------------------------------------------------------------===//
Robert Bocchino23004482006-01-10 19:05:34 +00001301// ExtractElementInst Implementation
1302//===----------------------------------------------------------------------===//
1303
1304ExtractElementInst::ExtractElementInst(Value *Val, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001305 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001306 Instruction *InsertBef)
Reid Spencerd84d35b2007-02-15 02:26:10 +00001307 : Instruction(cast<VectorType>(Val->getType())->getElementType(),
Gabor Greiff6caff662008-05-10 08:32:32 +00001308 ExtractElement,
1309 OperandTraits<ExtractElementInst>::op_begin(this),
1310 2, InsertBef) {
Chris Lattner54865b32006-04-08 04:05:48 +00001311 assert(isValidOperands(Val, Index) &&
1312 "Invalid extractelement instruction operands!");
Gabor Greif2d3024d2008-05-26 21:33:52 +00001313 Op<0>() = Val;
1314 Op<1>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001315 setName(Name);
Robert Bocchino23004482006-01-10 19:05:34 +00001316}
1317
1318ExtractElementInst::ExtractElementInst(Value *Val, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001319 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001320 BasicBlock *InsertAE)
Reid Spencerd84d35b2007-02-15 02:26:10 +00001321 : Instruction(cast<VectorType>(Val->getType())->getElementType(),
Gabor Greiff6caff662008-05-10 08:32:32 +00001322 ExtractElement,
1323 OperandTraits<ExtractElementInst>::op_begin(this),
1324 2, InsertAE) {
Chris Lattner54865b32006-04-08 04:05:48 +00001325 assert(isValidOperands(Val, Index) &&
1326 "Invalid extractelement instruction operands!");
1327
Gabor Greif2d3024d2008-05-26 21:33:52 +00001328 Op<0>() = Val;
1329 Op<1>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001330 setName(Name);
Robert Bocchino23004482006-01-10 19:05:34 +00001331}
1332
Chris Lattner65511ff2006-10-05 06:24:58 +00001333
Chris Lattner54865b32006-04-08 04:05:48 +00001334bool ExtractElementInst::isValidOperands(const Value *Val, const Value *Index) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001335 if (!Val->getType()->isVectorTy() || !Index->getType()->isIntegerTy(32))
Chris Lattner54865b32006-04-08 04:05:48 +00001336 return false;
1337 return true;
1338}
1339
1340
Robert Bocchino23004482006-01-10 19:05:34 +00001341//===----------------------------------------------------------------------===//
Robert Bocchinoca27f032006-01-17 20:07:22 +00001342// InsertElementInst Implementation
1343//===----------------------------------------------------------------------===//
1344
Chris Lattner54865b32006-04-08 04:05:48 +00001345InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001346 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001347 Instruction *InsertBef)
Gabor Greiff6caff662008-05-10 08:32:32 +00001348 : Instruction(Vec->getType(), InsertElement,
1349 OperandTraits<InsertElementInst>::op_begin(this),
1350 3, InsertBef) {
Chris Lattner54865b32006-04-08 04:05:48 +00001351 assert(isValidOperands(Vec, Elt, Index) &&
1352 "Invalid insertelement instruction operands!");
Gabor Greif2d3024d2008-05-26 21:33:52 +00001353 Op<0>() = Vec;
1354 Op<1>() = Elt;
1355 Op<2>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001356 setName(Name);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001357}
1358
Chris Lattner54865b32006-04-08 04:05:48 +00001359InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001360 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001361 BasicBlock *InsertAE)
Gabor Greiff6caff662008-05-10 08:32:32 +00001362 : Instruction(Vec->getType(), InsertElement,
1363 OperandTraits<InsertElementInst>::op_begin(this),
1364 3, InsertAE) {
Chris Lattner54865b32006-04-08 04:05:48 +00001365 assert(isValidOperands(Vec, Elt, Index) &&
1366 "Invalid insertelement instruction operands!");
1367
Gabor Greif2d3024d2008-05-26 21:33:52 +00001368 Op<0>() = Vec;
1369 Op<1>() = Elt;
1370 Op<2>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001371 setName(Name);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001372}
1373
Chris Lattner54865b32006-04-08 04:05:48 +00001374bool InsertElementInst::isValidOperands(const Value *Vec, const Value *Elt,
1375 const Value *Index) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001376 if (!Vec->getType()->isVectorTy())
Reid Spencer09575ba2007-02-15 03:39:18 +00001377 return false; // First operand of insertelement must be vector type.
Chris Lattner54865b32006-04-08 04:05:48 +00001378
Reid Spencerd84d35b2007-02-15 02:26:10 +00001379 if (Elt->getType() != cast<VectorType>(Vec->getType())->getElementType())
Dan Gohmanfead7972007-05-11 21:43:24 +00001380 return false;// Second operand of insertelement must be vector element type.
Chris Lattner54865b32006-04-08 04:05:48 +00001381
Duncan Sands9dff9be2010-02-15 16:12:20 +00001382 if (!Index->getType()->isIntegerTy(32))
Dan Gohman4fe64de2009-06-14 23:30:43 +00001383 return false; // Third operand of insertelement must be i32.
Chris Lattner54865b32006-04-08 04:05:48 +00001384 return true;
1385}
1386
1387
Robert Bocchinoca27f032006-01-17 20:07:22 +00001388//===----------------------------------------------------------------------===//
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001389// ShuffleVectorInst Implementation
1390//===----------------------------------------------------------------------===//
1391
1392ShuffleVectorInst::ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001393 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001394 Instruction *InsertBefore)
Owen Anderson4056ca92009-07-29 22:17:13 +00001395: Instruction(VectorType::get(cast<VectorType>(V1->getType())->getElementType(),
Mon P Wang25f01062008-11-10 04:46:22 +00001396 cast<VectorType>(Mask->getType())->getNumElements()),
1397 ShuffleVector,
1398 OperandTraits<ShuffleVectorInst>::op_begin(this),
1399 OperandTraits<ShuffleVectorInst>::operands(this),
1400 InsertBefore) {
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001401 assert(isValidOperands(V1, V2, Mask) &&
1402 "Invalid shuffle vector instruction operands!");
Gabor Greif2d3024d2008-05-26 21:33:52 +00001403 Op<0>() = V1;
1404 Op<1>() = V2;
1405 Op<2>() = Mask;
Chris Lattner2195fc42007-02-24 00:55:48 +00001406 setName(Name);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001407}
1408
1409ShuffleVectorInst::ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001410 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001411 BasicBlock *InsertAtEnd)
Dan Gohmane5af8cd2009-08-25 23:27:45 +00001412: Instruction(VectorType::get(cast<VectorType>(V1->getType())->getElementType(),
1413 cast<VectorType>(Mask->getType())->getNumElements()),
1414 ShuffleVector,
1415 OperandTraits<ShuffleVectorInst>::op_begin(this),
1416 OperandTraits<ShuffleVectorInst>::operands(this),
1417 InsertAtEnd) {
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001418 assert(isValidOperands(V1, V2, Mask) &&
1419 "Invalid shuffle vector instruction operands!");
1420
Gabor Greif2d3024d2008-05-26 21:33:52 +00001421 Op<0>() = V1;
1422 Op<1>() = V2;
1423 Op<2>() = Mask;
Chris Lattner2195fc42007-02-24 00:55:48 +00001424 setName(Name);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001425}
1426
Mon P Wang25f01062008-11-10 04:46:22 +00001427bool ShuffleVectorInst::isValidOperands(const Value *V1, const Value *V2,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001428 const Value *Mask) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001429 if (!V1->getType()->isVectorTy() || V1->getType() != V2->getType())
Chris Lattnerf724e342008-03-02 05:28:33 +00001430 return false;
1431
1432 const VectorType *MaskTy = dyn_cast<VectorType>(Mask->getType());
1433 if (!isa<Constant>(Mask) || MaskTy == 0 ||
Duncan Sands9dff9be2010-02-15 16:12:20 +00001434 !MaskTy->getElementType()->isIntegerTy(32))
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001435 return false;
1436 return true;
1437}
1438
Chris Lattnerf724e342008-03-02 05:28:33 +00001439/// getMaskValue - Return the index from the shuffle mask for the specified
1440/// output result. This is either -1 if the element is undef or a number less
1441/// than 2*numelements.
1442int ShuffleVectorInst::getMaskValue(unsigned i) const {
1443 const Constant *Mask = cast<Constant>(getOperand(2));
1444 if (isa<UndefValue>(Mask)) return -1;
1445 if (isa<ConstantAggregateZero>(Mask)) return 0;
1446 const ConstantVector *MaskCV = cast<ConstantVector>(Mask);
1447 assert(i < MaskCV->getNumOperands() && "Index out of range");
1448
1449 if (isa<UndefValue>(MaskCV->getOperand(i)))
1450 return -1;
1451 return cast<ConstantInt>(MaskCV->getOperand(i))->getZExtValue();
1452}
1453
Dan Gohman12fce772008-05-15 19:50:34 +00001454//===----------------------------------------------------------------------===//
Dan Gohman0752bff2008-05-23 00:36:11 +00001455// InsertValueInst Class
1456//===----------------------------------------------------------------------===//
1457
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001458void InsertValueInst::init(Value *Agg, Value *Val, const unsigned *Idx,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001459 unsigned NumIdx, 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;
Dan Gohman0752bff2008-05-23 00:36:11 +00001463
Dan Gohmandd41bba2010-06-21 19:47:52 +00001464 Indices.append(Idx, Idx + NumIdx);
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001465 setName(Name);
Dan Gohman0752bff2008-05-23 00:36:11 +00001466}
1467
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001468void InsertValueInst::init(Value *Agg, Value *Val, unsigned Idx,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001469 const Twine &Name) {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001470 assert(NumOperands == 2 && "NumOperands not initialized?");
1471 Op<0>() = Agg;
1472 Op<1>() = Val;
1473
1474 Indices.push_back(Idx);
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001475 setName(Name);
Dan Gohman0752bff2008-05-23 00:36:11 +00001476}
1477
1478InsertValueInst::InsertValueInst(const InsertValueInst &IVI)
Gabor Greife9408e62008-05-27 11:03:29 +00001479 : Instruction(IVI.getType(), InsertValue,
Dan Gohman1ecaf452008-05-31 00:58:22 +00001480 OperandTraits<InsertValueInst>::op_begin(this), 2),
1481 Indices(IVI.Indices) {
Dan Gohmand8ca05f2008-06-17 23:25:49 +00001482 Op<0>() = IVI.getOperand(0);
1483 Op<1>() = IVI.getOperand(1);
Dan Gohmanc8a27f22009-08-25 22:11:20 +00001484 SubclassOptionalData = IVI.SubclassOptionalData;
Dan Gohman0752bff2008-05-23 00:36:11 +00001485}
1486
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001487InsertValueInst::InsertValueInst(Value *Agg,
1488 Value *Val,
1489 unsigned Idx,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001490 const Twine &Name,
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001491 Instruction *InsertBefore)
1492 : Instruction(Agg->getType(), InsertValue,
1493 OperandTraits<InsertValueInst>::op_begin(this),
1494 2, InsertBefore) {
1495 init(Agg, Val, Idx, Name);
1496}
1497
1498InsertValueInst::InsertValueInst(Value *Agg,
1499 Value *Val,
1500 unsigned Idx,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001501 const Twine &Name,
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001502 BasicBlock *InsertAtEnd)
1503 : Instruction(Agg->getType(), InsertValue,
1504 OperandTraits<InsertValueInst>::op_begin(this),
1505 2, InsertAtEnd) {
1506 init(Agg, Val, Idx, Name);
1507}
1508
Dan Gohman0752bff2008-05-23 00:36:11 +00001509//===----------------------------------------------------------------------===//
Dan Gohman12fce772008-05-15 19:50:34 +00001510// ExtractValueInst Class
1511//===----------------------------------------------------------------------===//
1512
Gabor Greifcbcc4952008-06-06 21:06:32 +00001513void ExtractValueInst::init(const unsigned *Idx, unsigned NumIdx,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001514 const Twine &Name) {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001515 assert(NumOperands == 1 && "NumOperands not initialized?");
Dan Gohman0752bff2008-05-23 00:36:11 +00001516
Dan Gohmandd41bba2010-06-21 19:47:52 +00001517 Indices.append(Idx, Idx + NumIdx);
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001518 setName(Name);
Dan Gohman0752bff2008-05-23 00:36:11 +00001519}
1520
Daniel Dunbar4975db62009-07-25 04:41:11 +00001521void ExtractValueInst::init(unsigned Idx, const Twine &Name) {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001522 assert(NumOperands == 1 && "NumOperands not initialized?");
Dan Gohman1ecaf452008-05-31 00:58:22 +00001523
1524 Indices.push_back(Idx);
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001525 setName(Name);
Dan Gohman0752bff2008-05-23 00:36:11 +00001526}
1527
1528ExtractValueInst::ExtractValueInst(const ExtractValueInst &EVI)
Gabor Greif21ba1842008-06-06 20:28:12 +00001529 : UnaryInstruction(EVI.getType(), ExtractValue, EVI.getOperand(0)),
Dan Gohman1ecaf452008-05-31 00:58:22 +00001530 Indices(EVI.Indices) {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00001531 SubclassOptionalData = EVI.SubclassOptionalData;
Dan Gohman0752bff2008-05-23 00:36:11 +00001532}
1533
Dan Gohman12fce772008-05-15 19:50:34 +00001534// getIndexedType - Returns the type of the element that would be extracted
1535// with an extractvalue instruction with the specified parameters.
1536//
1537// A null type is returned if the indices are invalid for the specified
1538// pointer type.
1539//
1540const Type* ExtractValueInst::getIndexedType(const Type *Agg,
Dan Gohman1ecaf452008-05-31 00:58:22 +00001541 const unsigned *Idxs,
Dan Gohman12fce772008-05-15 19:50:34 +00001542 unsigned NumIdx) {
1543 unsigned CurIdx = 0;
1544 for (; CurIdx != NumIdx; ++CurIdx) {
1545 const CompositeType *CT = dyn_cast<CompositeType>(Agg);
Duncan Sands19d0b472010-02-16 11:11:14 +00001546 if (!CT || CT->isPointerTy() || CT->isVectorTy()) return 0;
Dan Gohman1ecaf452008-05-31 00:58:22 +00001547 unsigned Index = Idxs[CurIdx];
Dan Gohman12fce772008-05-15 19:50:34 +00001548 if (!CT->indexValid(Index)) return 0;
1549 Agg = CT->getTypeAtIndex(Index);
1550
1551 // If the new type forwards to another type, then it is in the middle
1552 // of being refined to another type (and hence, may have dropped all
1553 // references to what it was using before). So, use the new forwarded
1554 // type.
1555 if (const Type *Ty = Agg->getForwardedType())
1556 Agg = Ty;
1557 }
1558 return CurIdx == NumIdx ? Agg : 0;
1559}
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001560
Dan Gohman4a3125b2008-06-17 21:07:55 +00001561const Type* ExtractValueInst::getIndexedType(const Type *Agg,
Dan Gohmand87e8132008-06-20 00:47:44 +00001562 unsigned Idx) {
1563 return getIndexedType(Agg, &Idx, 1);
Dan Gohman4a3125b2008-06-17 21:07:55 +00001564}
1565
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001566//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001567// BinaryOperator Class
1568//===----------------------------------------------------------------------===//
1569
Chris Lattner2195fc42007-02-24 00:55:48 +00001570BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001571 const Type *Ty, const Twine &Name,
Chris Lattner2195fc42007-02-24 00:55:48 +00001572 Instruction *InsertBefore)
Dan Gohmana2414ea2010-05-03 22:44:19 +00001573 : Instruction(Ty, iType,
Gabor Greiff6caff662008-05-10 08:32:32 +00001574 OperandTraits<BinaryOperator>::op_begin(this),
1575 OperandTraits<BinaryOperator>::operands(this),
1576 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001577 Op<0>() = S1;
1578 Op<1>() = S2;
Dan Gohmana2414ea2010-05-03 22:44:19 +00001579 init(iType);
Chris Lattner2195fc42007-02-24 00:55:48 +00001580 setName(Name);
1581}
1582
1583BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001584 const Type *Ty, const Twine &Name,
Chris Lattner2195fc42007-02-24 00:55:48 +00001585 BasicBlock *InsertAtEnd)
Dan Gohmana2414ea2010-05-03 22:44:19 +00001586 : Instruction(Ty, iType,
Gabor Greiff6caff662008-05-10 08:32:32 +00001587 OperandTraits<BinaryOperator>::op_begin(this),
1588 OperandTraits<BinaryOperator>::operands(this),
1589 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001590 Op<0>() = S1;
1591 Op<1>() = S2;
Dan Gohmana2414ea2010-05-03 22:44:19 +00001592 init(iType);
Chris Lattner2195fc42007-02-24 00:55:48 +00001593 setName(Name);
1594}
1595
1596
1597void BinaryOperator::init(BinaryOps iType) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001598 Value *LHS = getOperand(0), *RHS = getOperand(1);
Chris Lattnerf14c76c2007-02-01 04:59:37 +00001599 LHS = LHS; RHS = RHS; // Silence warnings.
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001600 assert(LHS->getType() == RHS->getType() &&
1601 "Binary operator operand types must match!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001602#ifndef NDEBUG
1603 switch (iType) {
1604 case Add: case Sub:
Dan Gohmana5b96452009-06-04 22:49:04 +00001605 case Mul:
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001606 assert(getType() == LHS->getType() &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001607 "Arithmetic operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001608 assert(getType()->isIntOrIntVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001609 "Tried to create an integer operation on a non-integer type!");
1610 break;
1611 case FAdd: case FSub:
1612 case FMul:
1613 assert(getType() == LHS->getType() &&
1614 "Arithmetic operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001615 assert(getType()->isFPOrFPVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001616 "Tried to create a floating-point operation on a "
1617 "non-floating-point type!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001618 break;
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001619 case UDiv:
1620 case SDiv:
1621 assert(getType() == LHS->getType() &&
1622 "Arithmetic operation should return same type as operands!");
Duncan Sands19d0b472010-02-16 11:11:14 +00001623 assert((getType()->isIntegerTy() || (getType()->isVectorTy() &&
Duncan Sands9dff9be2010-02-15 16:12:20 +00001624 cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001625 "Incorrect operand type (not integer) for S/UDIV");
1626 break;
1627 case FDiv:
1628 assert(getType() == LHS->getType() &&
1629 "Arithmetic operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001630 assert(getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001631 "Incorrect operand type (not floating point) for FDIV");
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001632 break;
Reid Spencer7eb55b32006-11-02 01:53:59 +00001633 case URem:
1634 case SRem:
1635 assert(getType() == LHS->getType() &&
1636 "Arithmetic operation should return same type as operands!");
Duncan Sands19d0b472010-02-16 11:11:14 +00001637 assert((getType()->isIntegerTy() || (getType()->isVectorTy() &&
Duncan Sands9dff9be2010-02-15 16:12:20 +00001638 cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
Reid Spencer7eb55b32006-11-02 01:53:59 +00001639 "Incorrect operand type (not integer) for S/UREM");
1640 break;
1641 case FRem:
1642 assert(getType() == LHS->getType() &&
1643 "Arithmetic operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001644 assert(getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001645 "Incorrect operand type (not floating point) for FREM");
Reid Spencer7eb55b32006-11-02 01:53:59 +00001646 break;
Reid Spencer2341c222007-02-02 02:16:23 +00001647 case Shl:
1648 case LShr:
1649 case AShr:
1650 assert(getType() == LHS->getType() &&
1651 "Shift operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001652 assert((getType()->isIntegerTy() ||
Duncan Sands19d0b472010-02-16 11:11:14 +00001653 (getType()->isVectorTy() &&
Duncan Sands9dff9be2010-02-15 16:12:20 +00001654 cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
Nate Begemanfecbc8c2008-07-29 15:49:41 +00001655 "Tried to create a shift operation on a non-integral type!");
Reid Spencer2341c222007-02-02 02:16:23 +00001656 break;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001657 case And: case Or:
1658 case Xor:
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001659 assert(getType() == LHS->getType() &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001660 "Logical operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001661 assert((getType()->isIntegerTy() ||
Duncan Sands19d0b472010-02-16 11:11:14 +00001662 (getType()->isVectorTy() &&
Duncan Sands9dff9be2010-02-15 16:12:20 +00001663 cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
Misha Brukman3852f652005-01-27 06:46:38 +00001664 "Tried to create a logical operation on a non-integral type!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001665 break;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001666 default:
1667 break;
1668 }
1669#endif
1670}
1671
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001672BinaryOperator *BinaryOperator::Create(BinaryOps Op, Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001673 const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001674 Instruction *InsertBefore) {
1675 assert(S1->getType() == S2->getType() &&
1676 "Cannot create binary operator with two operands of differing type!");
Reid Spencer266e42b2006-12-23 06:05:41 +00001677 return new BinaryOperator(Op, S1, S2, S1->getType(), Name, InsertBefore);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001678}
1679
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001680BinaryOperator *BinaryOperator::Create(BinaryOps Op, Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001681 const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001682 BasicBlock *InsertAtEnd) {
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001683 BinaryOperator *Res = Create(Op, S1, S2, Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001684 InsertAtEnd->getInstList().push_back(Res);
1685 return Res;
1686}
1687
Dan Gohman5476cfd2009-08-12 16:23:25 +00001688BinaryOperator *BinaryOperator::CreateNeg(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001689 Instruction *InsertBefore) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001690 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Reid Spencer2eadb532007-01-21 00:29:26 +00001691 return new BinaryOperator(Instruction::Sub,
1692 zero, Op,
1693 Op->getType(), Name, InsertBefore);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001694}
1695
Dan Gohman5476cfd2009-08-12 16:23:25 +00001696BinaryOperator *BinaryOperator::CreateNeg(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001697 BasicBlock *InsertAtEnd) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001698 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Reid Spencer2eadb532007-01-21 00:29:26 +00001699 return new BinaryOperator(Instruction::Sub,
1700 zero, Op,
1701 Op->getType(), Name, InsertAtEnd);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001702}
1703
Dan Gohman4ab44202009-12-18 02:58:50 +00001704BinaryOperator *BinaryOperator::CreateNSWNeg(Value *Op, const Twine &Name,
1705 Instruction *InsertBefore) {
1706 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1707 return BinaryOperator::CreateNSWSub(zero, Op, Name, InsertBefore);
1708}
1709
1710BinaryOperator *BinaryOperator::CreateNSWNeg(Value *Op, const Twine &Name,
1711 BasicBlock *InsertAtEnd) {
1712 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1713 return BinaryOperator::CreateNSWSub(zero, Op, Name, InsertAtEnd);
1714}
1715
Duncan Sandsfa5f5962010-02-02 12:53:04 +00001716BinaryOperator *BinaryOperator::CreateNUWNeg(Value *Op, const Twine &Name,
1717 Instruction *InsertBefore) {
1718 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1719 return BinaryOperator::CreateNUWSub(zero, Op, Name, InsertBefore);
1720}
1721
1722BinaryOperator *BinaryOperator::CreateNUWNeg(Value *Op, const Twine &Name,
1723 BasicBlock *InsertAtEnd) {
1724 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1725 return BinaryOperator::CreateNUWSub(zero, Op, Name, InsertAtEnd);
1726}
1727
Dan Gohman5476cfd2009-08-12 16:23:25 +00001728BinaryOperator *BinaryOperator::CreateFNeg(Value *Op, const Twine &Name,
Dan Gohmana5b96452009-06-04 22:49:04 +00001729 Instruction *InsertBefore) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001730 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Dan Gohmana5b96452009-06-04 22:49:04 +00001731 return new BinaryOperator(Instruction::FSub,
1732 zero, Op,
1733 Op->getType(), Name, InsertBefore);
1734}
1735
Dan Gohman5476cfd2009-08-12 16:23:25 +00001736BinaryOperator *BinaryOperator::CreateFNeg(Value *Op, const Twine &Name,
Dan Gohmana5b96452009-06-04 22:49:04 +00001737 BasicBlock *InsertAtEnd) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001738 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Dan Gohmana5b96452009-06-04 22:49:04 +00001739 return new BinaryOperator(Instruction::FSub,
1740 zero, Op,
1741 Op->getType(), Name, InsertAtEnd);
1742}
1743
Dan Gohman5476cfd2009-08-12 16:23:25 +00001744BinaryOperator *BinaryOperator::CreateNot(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001745 Instruction *InsertBefore) {
Chris Lattnere8e7ac42006-03-25 21:54:21 +00001746 Constant *C;
Reid Spencerd84d35b2007-02-15 02:26:10 +00001747 if (const VectorType *PTy = dyn_cast<VectorType>(Op->getType())) {
Owen Anderson5a1acd92009-07-31 20:28:14 +00001748 C = Constant::getAllOnesValue(PTy->getElementType());
Owen Anderson4aa32952009-07-28 21:19:26 +00001749 C = ConstantVector::get(
Owen Andersonf945a9e2009-07-15 21:51:10 +00001750 std::vector<Constant*>(PTy->getNumElements(), C));
Chris Lattnere8e7ac42006-03-25 21:54:21 +00001751 } else {
Owen Anderson5a1acd92009-07-31 20:28:14 +00001752 C = Constant::getAllOnesValue(Op->getType());
Chris Lattnere8e7ac42006-03-25 21:54:21 +00001753 }
1754
1755 return new BinaryOperator(Instruction::Xor, Op, C,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001756 Op->getType(), Name, InsertBefore);
1757}
1758
Dan Gohman5476cfd2009-08-12 16:23:25 +00001759BinaryOperator *BinaryOperator::CreateNot(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001760 BasicBlock *InsertAtEnd) {
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001761 Constant *AllOnes;
Reid Spencerd84d35b2007-02-15 02:26:10 +00001762 if (const VectorType *PTy = dyn_cast<VectorType>(Op->getType())) {
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001763 // Create a vector of all ones values.
Owen Anderson5a1acd92009-07-31 20:28:14 +00001764 Constant *Elt = Constant::getAllOnesValue(PTy->getElementType());
Owen Anderson4aa32952009-07-28 21:19:26 +00001765 AllOnes = ConstantVector::get(
Owen Andersonf945a9e2009-07-15 21:51:10 +00001766 std::vector<Constant*>(PTy->getNumElements(), Elt));
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001767 } else {
Owen Anderson5a1acd92009-07-31 20:28:14 +00001768 AllOnes = Constant::getAllOnesValue(Op->getType());
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001769 }
1770
1771 return new BinaryOperator(Instruction::Xor, Op, AllOnes,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001772 Op->getType(), Name, InsertAtEnd);
1773}
1774
1775
1776// isConstantAllOnes - Helper function for several functions below
1777static inline bool isConstantAllOnes(const Value *V) {
Chris Lattner1edec382007-06-15 06:04:24 +00001778 if (const ConstantInt *CI = dyn_cast<ConstantInt>(V))
1779 return CI->isAllOnesValue();
1780 if (const ConstantVector *CV = dyn_cast<ConstantVector>(V))
1781 return CV->isAllOnesValue();
1782 return false;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001783}
1784
Owen Andersonbb2501b2009-07-13 22:18:28 +00001785bool BinaryOperator::isNeg(const Value *V) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001786 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1787 if (Bop->getOpcode() == Instruction::Sub)
Owen Andersonbb2501b2009-07-13 22:18:28 +00001788 if (Constant* C = dyn_cast<Constant>(Bop->getOperand(0)))
1789 return C->isNegativeZeroValue();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001790 return false;
1791}
1792
Owen Andersonbb2501b2009-07-13 22:18:28 +00001793bool BinaryOperator::isFNeg(const Value *V) {
Dan Gohmana5b96452009-06-04 22:49:04 +00001794 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1795 if (Bop->getOpcode() == Instruction::FSub)
Owen Andersonbb2501b2009-07-13 22:18:28 +00001796 if (Constant* C = dyn_cast<Constant>(Bop->getOperand(0)))
Dan Gohman11ff5702009-09-11 00:05:10 +00001797 return C->isNegativeZeroValue();
Dan Gohmana5b96452009-06-04 22:49:04 +00001798 return false;
1799}
1800
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001801bool BinaryOperator::isNot(const Value *V) {
1802 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1803 return (Bop->getOpcode() == Instruction::Xor &&
1804 (isConstantAllOnes(Bop->getOperand(1)) ||
1805 isConstantAllOnes(Bop->getOperand(0))));
1806 return false;
1807}
1808
Chris Lattner2c7d1772005-04-24 07:28:37 +00001809Value *BinaryOperator::getNegArgument(Value *BinOp) {
Chris Lattner2c7d1772005-04-24 07:28:37 +00001810 return cast<BinaryOperator>(BinOp)->getOperand(1);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001811}
1812
Chris Lattner2c7d1772005-04-24 07:28:37 +00001813const Value *BinaryOperator::getNegArgument(const Value *BinOp) {
1814 return getNegArgument(const_cast<Value*>(BinOp));
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001815}
1816
Dan Gohmana5b96452009-06-04 22:49:04 +00001817Value *BinaryOperator::getFNegArgument(Value *BinOp) {
Dan Gohmana5b96452009-06-04 22:49:04 +00001818 return cast<BinaryOperator>(BinOp)->getOperand(1);
1819}
1820
1821const Value *BinaryOperator::getFNegArgument(const Value *BinOp) {
1822 return getFNegArgument(const_cast<Value*>(BinOp));
1823}
1824
Chris Lattner2c7d1772005-04-24 07:28:37 +00001825Value *BinaryOperator::getNotArgument(Value *BinOp) {
1826 assert(isNot(BinOp) && "getNotArgument on non-'not' instruction!");
1827 BinaryOperator *BO = cast<BinaryOperator>(BinOp);
1828 Value *Op0 = BO->getOperand(0);
1829 Value *Op1 = BO->getOperand(1);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001830 if (isConstantAllOnes(Op0)) return Op1;
1831
1832 assert(isConstantAllOnes(Op1));
1833 return Op0;
1834}
1835
Chris Lattner2c7d1772005-04-24 07:28:37 +00001836const Value *BinaryOperator::getNotArgument(const Value *BinOp) {
1837 return getNotArgument(const_cast<Value*>(BinOp));
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001838}
1839
1840
1841// swapOperands - Exchange the two operands to this instruction. This
1842// instruction is safe to use on any binary instruction and does not
1843// modify the semantics of the instruction. If the instruction is
1844// order dependent (SetLT f.e.) the opcode is changed.
1845//
1846bool BinaryOperator::swapOperands() {
Reid Spencer266e42b2006-12-23 06:05:41 +00001847 if (!isCommutative())
1848 return true; // Can't commute operands
Gabor Greif5ef74042008-05-13 22:51:52 +00001849 Op<0>().swap(Op<1>());
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001850 return false;
1851}
1852
Dan Gohman1b849082009-09-07 23:54:19 +00001853void BinaryOperator::setHasNoUnsignedWrap(bool b) {
1854 cast<OverflowingBinaryOperator>(this)->setHasNoUnsignedWrap(b);
1855}
1856
1857void BinaryOperator::setHasNoSignedWrap(bool b) {
1858 cast<OverflowingBinaryOperator>(this)->setHasNoSignedWrap(b);
1859}
1860
1861void BinaryOperator::setIsExact(bool b) {
1862 cast<SDivOperator>(this)->setIsExact(b);
1863}
1864
Nick Lewycky28a5f252009-09-27 21:33:04 +00001865bool BinaryOperator::hasNoUnsignedWrap() const {
1866 return cast<OverflowingBinaryOperator>(this)->hasNoUnsignedWrap();
1867}
1868
1869bool BinaryOperator::hasNoSignedWrap() const {
1870 return cast<OverflowingBinaryOperator>(this)->hasNoSignedWrap();
1871}
1872
1873bool BinaryOperator::isExact() const {
1874 return cast<SDivOperator>(this)->isExact();
1875}
1876
Chris Lattnerb0b8ddd2006-09-18 04:54:57 +00001877//===----------------------------------------------------------------------===//
1878// CastInst Class
1879//===----------------------------------------------------------------------===//
1880
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001881// Just determine if this cast only deals with integral->integral conversion.
1882bool CastInst::isIntegerCast() const {
1883 switch (getOpcode()) {
1884 default: return false;
1885 case Instruction::ZExt:
1886 case Instruction::SExt:
1887 case Instruction::Trunc:
1888 return true;
1889 case Instruction::BitCast:
Duncan Sands9dff9be2010-02-15 16:12:20 +00001890 return getOperand(0)->getType()->isIntegerTy() &&
1891 getType()->isIntegerTy();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001892 }
Chris Lattnerb0b8ddd2006-09-18 04:54:57 +00001893}
1894
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001895bool CastInst::isLosslessCast() const {
1896 // Only BitCast can be lossless, exit fast if we're not BitCast
1897 if (getOpcode() != Instruction::BitCast)
1898 return false;
1899
1900 // Identity cast is always lossless
1901 const Type* SrcTy = getOperand(0)->getType();
1902 const Type* DstTy = getType();
1903 if (SrcTy == DstTy)
1904 return true;
1905
Reid Spencer8d9336d2006-12-31 05:26:44 +00001906 // Pointer to pointer is always lossless.
Duncan Sands19d0b472010-02-16 11:11:14 +00001907 if (SrcTy->isPointerTy())
1908 return DstTy->isPointerTy();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001909 return false; // Other types have no identity values
1910}
1911
1912/// This function determines if the CastInst does not require any bits to be
1913/// changed in order to effect the cast. Essentially, it identifies cases where
1914/// no code gen is necessary for the cast, hence the name no-op cast. For
1915/// example, the following are all no-op casts:
Dan Gohmane9bc2ba2008-05-12 16:34:30 +00001916/// # bitcast i32* %x to i8*
1917/// # bitcast <2 x i32> %x to <4 x i16>
1918/// # ptrtoint i32* %x to i32 ; on 32-bit plaforms only
Dan Gohman0d7f3b82010-05-28 21:41:37 +00001919/// @brief Determine if the described cast is a no-op.
1920bool CastInst::isNoopCast(Instruction::CastOps Opcode,
1921 const Type *SrcTy,
1922 const Type *DestTy,
1923 const Type *IntPtrTy) {
1924 switch (Opcode) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001925 default:
1926 assert(!"Invalid CastOp");
1927 case Instruction::Trunc:
1928 case Instruction::ZExt:
1929 case Instruction::SExt:
1930 case Instruction::FPTrunc:
1931 case Instruction::FPExt:
1932 case Instruction::UIToFP:
1933 case Instruction::SIToFP:
1934 case Instruction::FPToUI:
1935 case Instruction::FPToSI:
1936 return false; // These always modify bits
1937 case Instruction::BitCast:
1938 return true; // BitCast never modifies bits.
1939 case Instruction::PtrToInt:
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001940 return IntPtrTy->getScalarSizeInBits() ==
Dan Gohman0d7f3b82010-05-28 21:41:37 +00001941 DestTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001942 case Instruction::IntToPtr:
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001943 return IntPtrTy->getScalarSizeInBits() ==
Dan Gohman0d7f3b82010-05-28 21:41:37 +00001944 SrcTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001945 }
1946}
1947
Dan Gohman0d7f3b82010-05-28 21:41:37 +00001948/// @brief Determine if a cast is a no-op.
1949bool CastInst::isNoopCast(const Type *IntPtrTy) const {
1950 return isNoopCast(getOpcode(), getOperand(0)->getType(), getType(), IntPtrTy);
1951}
1952
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001953/// This function determines if a pair of casts can be eliminated and what
1954/// opcode should be used in the elimination. This assumes that there are two
1955/// instructions like this:
1956/// * %F = firstOpcode SrcTy %x to MidTy
1957/// * %S = secondOpcode MidTy %F to DstTy
1958/// The function returns a resultOpcode so these two casts can be replaced with:
1959/// * %Replacement = resultOpcode %SrcTy %x to DstTy
1960/// If no such cast is permited, the function returns 0.
1961unsigned CastInst::isEliminableCastPair(
1962 Instruction::CastOps firstOp, Instruction::CastOps secondOp,
1963 const Type *SrcTy, const Type *MidTy, const Type *DstTy, const Type *IntPtrTy)
1964{
1965 // Define the 144 possibilities for these two cast instructions. The values
1966 // in this matrix determine what to do in a given situation and select the
1967 // case in the switch below. The rows correspond to firstOp, the columns
1968 // correspond to secondOp. In looking at the table below, keep in mind
1969 // the following cast properties:
1970 //
1971 // Size Compare Source Destination
1972 // Operator Src ? Size Type Sign Type Sign
1973 // -------- ------------ ------------------- ---------------------
1974 // TRUNC > Integer Any Integral Any
1975 // ZEXT < Integral Unsigned Integer Any
1976 // SEXT < Integral Signed Integer Any
1977 // FPTOUI n/a FloatPt n/a Integral Unsigned
1978 // FPTOSI n/a FloatPt n/a Integral Signed
1979 // UITOFP n/a Integral Unsigned FloatPt n/a
1980 // SITOFP n/a Integral Signed FloatPt n/a
1981 // FPTRUNC > FloatPt n/a FloatPt n/a
1982 // FPEXT < FloatPt n/a FloatPt n/a
1983 // PTRTOINT n/a Pointer n/a Integral Unsigned
1984 // INTTOPTR n/a Integral Unsigned Pointer n/a
Dan Gohmaneb7111b2010-04-07 23:22:42 +00001985 // BITCAST = FirstClass n/a FirstClass n/a
Chris Lattner6f6b4972006-12-05 23:43:59 +00001986 //
1987 // NOTE: some transforms are safe, but we consider them to be non-profitable.
Dan Gohman4fe64de2009-06-14 23:30:43 +00001988 // For example, we could merge "fptoui double to i32" + "zext i32 to i64",
1989 // into "fptoui double to i64", but this loses information about the range
Chris Lattner6f6b4972006-12-05 23:43:59 +00001990 // of the produced value (we no longer know the top-part is all zeros).
1991 // Further this conversion is often much more expensive for typical hardware,
1992 // and causes issues when building libgcc. We disallow fptosi+sext for the
1993 // same reason.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001994 const unsigned numCastOps =
1995 Instruction::CastOpsEnd - Instruction::CastOpsBegin;
1996 static const uint8_t CastResults[numCastOps][numCastOps] = {
1997 // T F F U S F F P I B -+
1998 // R Z S P P I I T P 2 N T |
1999 // U E E 2 2 2 2 R E I T C +- secondOp
2000 // N X X U S F F N X N 2 V |
2001 // C T T I I P P C T T P T -+
2002 { 1, 0, 0,99,99, 0, 0,99,99,99, 0, 3 }, // Trunc -+
2003 { 8, 1, 9,99,99, 2, 0,99,99,99, 2, 3 }, // ZExt |
2004 { 8, 0, 1,99,99, 0, 2,99,99,99, 0, 3 }, // SExt |
Chris Lattner6f6b4972006-12-05 23:43:59 +00002005 { 0, 0, 0,99,99, 0, 0,99,99,99, 0, 3 }, // FPToUI |
2006 { 0, 0, 0,99,99, 0, 0,99,99,99, 0, 3 }, // FPToSI |
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002007 { 99,99,99, 0, 0,99,99, 0, 0,99,99, 4 }, // UIToFP +- firstOp
2008 { 99,99,99, 0, 0,99,99, 0, 0,99,99, 4 }, // SIToFP |
2009 { 99,99,99, 0, 0,99,99, 1, 0,99,99, 4 }, // FPTrunc |
2010 { 99,99,99, 2, 2,99,99,10, 2,99,99, 4 }, // FPExt |
2011 { 1, 0, 0,99,99, 0, 0,99,99,99, 7, 3 }, // PtrToInt |
2012 { 99,99,99,99,99,99,99,99,99,13,99,12 }, // IntToPtr |
2013 { 5, 5, 5, 6, 6, 5, 5, 6, 6,11, 5, 1 }, // BitCast -+
2014 };
Chris Lattner25eea4d2010-07-12 01:19:22 +00002015
2016 // If either of the casts are a bitcast from scalar to vector, disallow the
2017 // merging.
2018 if ((firstOp == Instruction::BitCast &&
2019 isa<VectorType>(SrcTy) != isa<VectorType>(MidTy)) ||
2020 (secondOp == Instruction::BitCast &&
2021 isa<VectorType>(MidTy) != isa<VectorType>(DstTy)))
2022 return 0; // Disallowed
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002023
2024 int ElimCase = CastResults[firstOp-Instruction::CastOpsBegin]
2025 [secondOp-Instruction::CastOpsBegin];
2026 switch (ElimCase) {
2027 case 0:
2028 // categorically disallowed
2029 return 0;
2030 case 1:
2031 // allowed, use first cast's opcode
2032 return firstOp;
2033 case 2:
2034 // allowed, use second cast's opcode
2035 return secondOp;
2036 case 3:
2037 // no-op cast in second op implies firstOp as long as the DestTy
Mon P Wange04b4562010-01-23 04:35:57 +00002038 // is integer and we are not converting between a vector and a
Chris Lattner531732b2010-01-23 04:42:42 +00002039 // non vector type.
Duncan Sands19d0b472010-02-16 11:11:14 +00002040 if (!SrcTy->isVectorTy() && DstTy->isIntegerTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002041 return firstOp;
2042 return 0;
2043 case 4:
2044 // no-op cast in second op implies firstOp as long as the DestTy
Chris Lattner531732b2010-01-23 04:42:42 +00002045 // is floating point.
Duncan Sands9dff9be2010-02-15 16:12:20 +00002046 if (DstTy->isFloatingPointTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002047 return firstOp;
2048 return 0;
2049 case 5:
2050 // no-op cast in first op implies secondOp as long as the SrcTy
Chris Lattner531732b2010-01-23 04:42:42 +00002051 // is an integer.
Duncan Sands9dff9be2010-02-15 16:12:20 +00002052 if (SrcTy->isIntegerTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002053 return secondOp;
2054 return 0;
2055 case 6:
2056 // no-op cast in first op implies secondOp as long as the SrcTy
Chris Lattner531732b2010-01-23 04:42:42 +00002057 // is a floating point.
Duncan Sands9dff9be2010-02-15 16:12:20 +00002058 if (SrcTy->isFloatingPointTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002059 return secondOp;
2060 return 0;
2061 case 7: {
2062 // ptrtoint, inttoptr -> bitcast (ptr -> ptr) if int size is >= ptr size
Dan Gohman9413de12009-07-21 23:19:40 +00002063 if (!IntPtrTy)
2064 return 0;
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002065 unsigned PtrSize = IntPtrTy->getScalarSizeInBits();
2066 unsigned MidSize = MidTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002067 if (MidSize >= PtrSize)
2068 return Instruction::BitCast;
2069 return 0;
2070 }
2071 case 8: {
2072 // ext, trunc -> bitcast, if the SrcTy and DstTy are same size
2073 // ext, trunc -> ext, if sizeof(SrcTy) < sizeof(DstTy)
2074 // ext, trunc -> trunc, if sizeof(SrcTy) > sizeof(DstTy)
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002075 unsigned SrcSize = SrcTy->getScalarSizeInBits();
2076 unsigned DstSize = DstTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002077 if (SrcSize == DstSize)
2078 return Instruction::BitCast;
2079 else if (SrcSize < DstSize)
2080 return firstOp;
2081 return secondOp;
2082 }
2083 case 9: // zext, sext -> zext, because sext can't sign extend after zext
2084 return Instruction::ZExt;
2085 case 10:
2086 // fpext followed by ftrunc is allowed if the bit size returned to is
2087 // the same as the original, in which case its just a bitcast
2088 if (SrcTy == DstTy)
2089 return Instruction::BitCast;
2090 return 0; // If the types are not the same we can't eliminate it.
2091 case 11:
2092 // bitcast followed by ptrtoint is allowed as long as the bitcast
2093 // is a pointer to pointer cast.
Duncan Sands19d0b472010-02-16 11:11:14 +00002094 if (SrcTy->isPointerTy() && MidTy->isPointerTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002095 return secondOp;
2096 return 0;
2097 case 12:
2098 // inttoptr, bitcast -> intptr if bitcast is a ptr to ptr cast
Duncan Sands19d0b472010-02-16 11:11:14 +00002099 if (MidTy->isPointerTy() && DstTy->isPointerTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002100 return firstOp;
2101 return 0;
2102 case 13: {
2103 // inttoptr, ptrtoint -> bitcast if SrcSize<=PtrSize and SrcSize==DstSize
Dan Gohman9413de12009-07-21 23:19:40 +00002104 if (!IntPtrTy)
2105 return 0;
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002106 unsigned PtrSize = IntPtrTy->getScalarSizeInBits();
2107 unsigned SrcSize = SrcTy->getScalarSizeInBits();
2108 unsigned DstSize = DstTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002109 if (SrcSize <= PtrSize && SrcSize == DstSize)
2110 return Instruction::BitCast;
2111 return 0;
2112 }
2113 case 99:
2114 // cast combination can't happen (error in input). This is for all cases
2115 // where the MidTy is not the same for the two cast instructions.
2116 assert(!"Invalid Cast Combination");
2117 return 0;
2118 default:
2119 assert(!"Error in CastResults table!!!");
2120 return 0;
2121 }
2122 return 0;
2123}
2124
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002125CastInst *CastInst::Create(Instruction::CastOps op, Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002126 const Twine &Name, Instruction *InsertBefore) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002127 // Construct and return the appropriate CastInst subclass
2128 switch (op) {
2129 case Trunc: return new TruncInst (S, Ty, Name, InsertBefore);
2130 case ZExt: return new ZExtInst (S, Ty, Name, InsertBefore);
2131 case SExt: return new SExtInst (S, Ty, Name, InsertBefore);
2132 case FPTrunc: return new FPTruncInst (S, Ty, Name, InsertBefore);
2133 case FPExt: return new FPExtInst (S, Ty, Name, InsertBefore);
2134 case UIToFP: return new UIToFPInst (S, Ty, Name, InsertBefore);
2135 case SIToFP: return new SIToFPInst (S, Ty, Name, InsertBefore);
2136 case FPToUI: return new FPToUIInst (S, Ty, Name, InsertBefore);
2137 case FPToSI: return new FPToSIInst (S, Ty, Name, InsertBefore);
2138 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertBefore);
2139 case IntToPtr: return new IntToPtrInst (S, Ty, Name, InsertBefore);
2140 case BitCast: return new BitCastInst (S, Ty, Name, InsertBefore);
2141 default:
2142 assert(!"Invalid opcode provided");
2143 }
2144 return 0;
2145}
2146
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002147CastInst *CastInst::Create(Instruction::CastOps op, Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002148 const Twine &Name, BasicBlock *InsertAtEnd) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002149 // Construct and return the appropriate CastInst subclass
2150 switch (op) {
2151 case Trunc: return new TruncInst (S, Ty, Name, InsertAtEnd);
2152 case ZExt: return new ZExtInst (S, Ty, Name, InsertAtEnd);
2153 case SExt: return new SExtInst (S, Ty, Name, InsertAtEnd);
2154 case FPTrunc: return new FPTruncInst (S, Ty, Name, InsertAtEnd);
2155 case FPExt: return new FPExtInst (S, Ty, Name, InsertAtEnd);
2156 case UIToFP: return new UIToFPInst (S, Ty, Name, InsertAtEnd);
2157 case SIToFP: return new SIToFPInst (S, Ty, Name, InsertAtEnd);
2158 case FPToUI: return new FPToUIInst (S, Ty, Name, InsertAtEnd);
2159 case FPToSI: return new FPToSIInst (S, Ty, Name, InsertAtEnd);
2160 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertAtEnd);
2161 case IntToPtr: return new IntToPtrInst (S, Ty, Name, InsertAtEnd);
2162 case BitCast: return new BitCastInst (S, Ty, Name, InsertAtEnd);
2163 default:
2164 assert(!"Invalid opcode provided");
2165 }
2166 return 0;
2167}
2168
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002169CastInst *CastInst::CreateZExtOrBitCast(Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002170 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002171 Instruction *InsertBefore) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002172 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002173 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
2174 return Create(Instruction::ZExt, S, Ty, Name, InsertBefore);
Reid Spencer5c140882006-12-04 20:17:56 +00002175}
2176
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002177CastInst *CastInst::CreateZExtOrBitCast(Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002178 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002179 BasicBlock *InsertAtEnd) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002180 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002181 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
2182 return Create(Instruction::ZExt, S, Ty, Name, InsertAtEnd);
Reid Spencer5c140882006-12-04 20:17:56 +00002183}
2184
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002185CastInst *CastInst::CreateSExtOrBitCast(Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002186 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002187 Instruction *InsertBefore) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002188 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002189 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
2190 return Create(Instruction::SExt, S, Ty, Name, InsertBefore);
Reid Spencer5c140882006-12-04 20:17:56 +00002191}
2192
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002193CastInst *CastInst::CreateSExtOrBitCast(Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002194 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002195 BasicBlock *InsertAtEnd) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002196 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002197 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
2198 return Create(Instruction::SExt, S, Ty, Name, InsertAtEnd);
Reid Spencer5c140882006-12-04 20:17:56 +00002199}
2200
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002201CastInst *CastInst::CreateTruncOrBitCast(Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002202 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002203 Instruction *InsertBefore) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002204 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002205 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
2206 return Create(Instruction::Trunc, S, Ty, Name, InsertBefore);
Reid Spencer5c140882006-12-04 20:17:56 +00002207}
2208
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002209CastInst *CastInst::CreateTruncOrBitCast(Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002210 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002211 BasicBlock *InsertAtEnd) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002212 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002213 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
2214 return Create(Instruction::Trunc, S, Ty, Name, InsertAtEnd);
Reid Spencer5c140882006-12-04 20:17:56 +00002215}
2216
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002217CastInst *CastInst::CreatePointerCast(Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002218 const Twine &Name,
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002219 BasicBlock *InsertAtEnd) {
Duncan Sands19d0b472010-02-16 11:11:14 +00002220 assert(S->getType()->isPointerTy() && "Invalid cast");
2221 assert((Ty->isIntegerTy() || Ty->isPointerTy()) &&
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002222 "Invalid cast");
2223
Duncan Sands9dff9be2010-02-15 16:12:20 +00002224 if (Ty->isIntegerTy())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002225 return Create(Instruction::PtrToInt, S, Ty, Name, InsertAtEnd);
2226 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002227}
2228
2229/// @brief Create a BitCast or a PtrToInt cast instruction
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002230CastInst *CastInst::CreatePointerCast(Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002231 const Twine &Name,
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002232 Instruction *InsertBefore) {
Duncan Sands19d0b472010-02-16 11:11:14 +00002233 assert(S->getType()->isPointerTy() && "Invalid cast");
2234 assert((Ty->isIntegerTy() || Ty->isPointerTy()) &&
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002235 "Invalid cast");
2236
Duncan Sands9dff9be2010-02-15 16:12:20 +00002237 if (Ty->isIntegerTy())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002238 return Create(Instruction::PtrToInt, S, Ty, Name, InsertBefore);
2239 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002240}
2241
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002242CastInst *CastInst::CreateIntegerCast(Value *C, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002243 bool isSigned, const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002244 Instruction *InsertBefore) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002245 assert(C->getType()->isIntOrIntVectorTy() && Ty->isIntOrIntVectorTy() &&
Chris Lattner5370ae72010-01-10 20:21:42 +00002246 "Invalid integer cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002247 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2248 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002249 Instruction::CastOps opcode =
2250 (SrcBits == DstBits ? Instruction::BitCast :
2251 (SrcBits > DstBits ? Instruction::Trunc :
2252 (isSigned ? Instruction::SExt : Instruction::ZExt)));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002253 return Create(opcode, C, Ty, Name, InsertBefore);
Reid Spencer7e933472006-12-12 00:49:44 +00002254}
2255
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002256CastInst *CastInst::CreateIntegerCast(Value *C, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002257 bool isSigned, const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002258 BasicBlock *InsertAtEnd) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002259 assert(C->getType()->isIntOrIntVectorTy() && Ty->isIntOrIntVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00002260 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002261 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2262 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002263 Instruction::CastOps opcode =
2264 (SrcBits == DstBits ? Instruction::BitCast :
2265 (SrcBits > DstBits ? Instruction::Trunc :
2266 (isSigned ? Instruction::SExt : Instruction::ZExt)));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002267 return Create(opcode, C, Ty, Name, InsertAtEnd);
Reid Spencer7e933472006-12-12 00:49:44 +00002268}
2269
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002270CastInst *CastInst::CreateFPCast(Value *C, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002271 const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002272 Instruction *InsertBefore) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002273 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer7e933472006-12-12 00:49:44 +00002274 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002275 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2276 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002277 Instruction::CastOps opcode =
2278 (SrcBits == DstBits ? Instruction::BitCast :
2279 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002280 return Create(opcode, C, Ty, Name, InsertBefore);
Reid Spencer7e933472006-12-12 00:49:44 +00002281}
2282
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002283CastInst *CastInst::CreateFPCast(Value *C, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002284 const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002285 BasicBlock *InsertAtEnd) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002286 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer7e933472006-12-12 00:49:44 +00002287 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002288 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2289 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002290 Instruction::CastOps opcode =
2291 (SrcBits == DstBits ? Instruction::BitCast :
2292 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002293 return Create(opcode, C, Ty, Name, InsertAtEnd);
Reid Spencer7e933472006-12-12 00:49:44 +00002294}
2295
Duncan Sands55e50902008-01-06 10:12:28 +00002296// Check whether it is valid to call getCastOpcode for these types.
2297// This routine must be kept in sync with getCastOpcode.
2298bool CastInst::isCastable(const Type *SrcTy, const Type *DestTy) {
2299 if (!SrcTy->isFirstClassType() || !DestTy->isFirstClassType())
2300 return false;
2301
2302 if (SrcTy == DestTy)
2303 return true;
2304
2305 // Get the bit sizes, we'll need these
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002306 unsigned SrcBits = SrcTy->getScalarSizeInBits(); // 0 for ptr
2307 unsigned DestBits = DestTy->getScalarSizeInBits(); // 0 for ptr
Duncan Sands55e50902008-01-06 10:12:28 +00002308
2309 // Run through the possibilities ...
Duncan Sands9dff9be2010-02-15 16:12:20 +00002310 if (DestTy->isIntegerTy()) { // Casting to integral
2311 if (SrcTy->isIntegerTy()) { // Casting from integral
Duncan Sands55e50902008-01-06 10:12:28 +00002312 return true;
Duncan Sands9dff9be2010-02-15 16:12:20 +00002313 } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt
Duncan Sands55e50902008-01-06 10:12:28 +00002314 return true;
2315 } else if (const VectorType *PTy = dyn_cast<VectorType>(SrcTy)) {
Gabor Greif697e94c2008-05-15 10:04:30 +00002316 // Casting from vector
Duncan Sands55e50902008-01-06 10:12:28 +00002317 return DestBits == PTy->getBitWidth();
Gabor Greif697e94c2008-05-15 10:04:30 +00002318 } else { // Casting from something else
Duncan Sands19d0b472010-02-16 11:11:14 +00002319 return SrcTy->isPointerTy();
Duncan Sands55e50902008-01-06 10:12:28 +00002320 }
Duncan Sands9dff9be2010-02-15 16:12:20 +00002321 } else if (DestTy->isFloatingPointTy()) { // Casting to floating pt
2322 if (SrcTy->isIntegerTy()) { // Casting from integral
Duncan Sands55e50902008-01-06 10:12:28 +00002323 return true;
Duncan Sands9dff9be2010-02-15 16:12:20 +00002324 } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt
Duncan Sands55e50902008-01-06 10:12:28 +00002325 return true;
2326 } else if (const VectorType *PTy = dyn_cast<VectorType>(SrcTy)) {
Gabor Greif697e94c2008-05-15 10:04:30 +00002327 // Casting from vector
Duncan Sands55e50902008-01-06 10:12:28 +00002328 return DestBits == PTy->getBitWidth();
Gabor Greif697e94c2008-05-15 10:04:30 +00002329 } else { // Casting from something else
Duncan Sands55e50902008-01-06 10:12:28 +00002330 return false;
2331 }
2332 } else if (const VectorType *DestPTy = dyn_cast<VectorType>(DestTy)) {
Gabor Greif697e94c2008-05-15 10:04:30 +00002333 // Casting to vector
Duncan Sands55e50902008-01-06 10:12:28 +00002334 if (const VectorType *SrcPTy = dyn_cast<VectorType>(SrcTy)) {
Gabor Greif697e94c2008-05-15 10:04:30 +00002335 // Casting from vector
Duncan Sands55e50902008-01-06 10:12:28 +00002336 return DestPTy->getBitWidth() == SrcPTy->getBitWidth();
Gabor Greif697e94c2008-05-15 10:04:30 +00002337 } else { // Casting from something else
Duncan Sands55e50902008-01-06 10:12:28 +00002338 return DestPTy->getBitWidth() == SrcBits;
2339 }
Duncan Sands19d0b472010-02-16 11:11:14 +00002340 } else if (DestTy->isPointerTy()) { // Casting to pointer
2341 if (SrcTy->isPointerTy()) { // Casting from pointer
Duncan Sands55e50902008-01-06 10:12:28 +00002342 return true;
Duncan Sands9dff9be2010-02-15 16:12:20 +00002343 } else if (SrcTy->isIntegerTy()) { // Casting from integral
Duncan Sands55e50902008-01-06 10:12:28 +00002344 return true;
Gabor Greif697e94c2008-05-15 10:04:30 +00002345 } else { // Casting from something else
Duncan Sands55e50902008-01-06 10:12:28 +00002346 return false;
2347 }
Gabor Greif697e94c2008-05-15 10:04:30 +00002348 } else { // Casting to something else
Duncan Sands55e50902008-01-06 10:12:28 +00002349 return false;
2350 }
2351}
2352
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002353// Provide a way to get a "cast" where the cast opcode is inferred from the
2354// types and size of the operand. This, basically, is a parallel of the
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002355// logic in the castIsValid function below. This axiom should hold:
2356// castIsValid( getCastOpcode(Val, Ty), Val, Ty)
2357// should not assert in castIsValid. In other words, this produces a "correct"
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002358// casting opcode for the arguments passed to it.
Duncan Sands55e50902008-01-06 10:12:28 +00002359// This routine must be kept in sync with isCastable.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002360Instruction::CastOps
Reid Spencerc4dacf22006-12-04 02:43:42 +00002361CastInst::getCastOpcode(
2362 const Value *Src, bool SrcIsSigned, const Type *DestTy, bool DestIsSigned) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002363 // Get the bit sizes, we'll need these
2364 const Type *SrcTy = Src->getType();
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002365 unsigned SrcBits = SrcTy->getScalarSizeInBits(); // 0 for ptr
2366 unsigned DestBits = DestTy->getScalarSizeInBits(); // 0 for ptr
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002367
Duncan Sands55e50902008-01-06 10:12:28 +00002368 assert(SrcTy->isFirstClassType() && DestTy->isFirstClassType() &&
2369 "Only first class types are castable!");
2370
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002371 // Run through the possibilities ...
Duncan Sands9dff9be2010-02-15 16:12:20 +00002372 if (DestTy->isIntegerTy()) { // Casting to integral
2373 if (SrcTy->isIntegerTy()) { // Casting from integral
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002374 if (DestBits < SrcBits)
2375 return Trunc; // int -> smaller int
2376 else if (DestBits > SrcBits) { // its an extension
Reid Spencerc4dacf22006-12-04 02:43:42 +00002377 if (SrcIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002378 return SExt; // signed -> SEXT
2379 else
2380 return ZExt; // unsigned -> ZEXT
2381 } else {
2382 return BitCast; // Same size, No-op cast
2383 }
Duncan Sands9dff9be2010-02-15 16:12:20 +00002384 } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt
Reid Spencerc4dacf22006-12-04 02:43:42 +00002385 if (DestIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002386 return FPToSI; // FP -> sint
2387 else
2388 return FPToUI; // FP -> uint
Reid Spencerd84d35b2007-02-15 02:26:10 +00002389 } else if (const VectorType *PTy = dyn_cast<VectorType>(SrcTy)) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002390 assert(DestBits == PTy->getBitWidth() &&
Dan Gohmanfead7972007-05-11 21:43:24 +00002391 "Casting vector to integer of different width");
Devang Patele9432132008-11-05 01:37:40 +00002392 PTy = NULL;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002393 return BitCast; // Same size, no-op cast
2394 } else {
Duncan Sands19d0b472010-02-16 11:11:14 +00002395 assert(SrcTy->isPointerTy() &&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002396 "Casting from a value that is not first-class type");
2397 return PtrToInt; // ptr -> int
2398 }
Duncan Sands9dff9be2010-02-15 16:12:20 +00002399 } else if (DestTy->isFloatingPointTy()) { // Casting to floating pt
2400 if (SrcTy->isIntegerTy()) { // Casting from integral
Reid Spencerc4dacf22006-12-04 02:43:42 +00002401 if (SrcIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002402 return SIToFP; // sint -> FP
2403 else
2404 return UIToFP; // uint -> FP
Duncan Sands9dff9be2010-02-15 16:12:20 +00002405 } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002406 if (DestBits < SrcBits) {
2407 return FPTrunc; // FP -> smaller FP
2408 } else if (DestBits > SrcBits) {
2409 return FPExt; // FP -> larger FP
2410 } else {
2411 return BitCast; // same size, no-op cast
2412 }
Reid Spencerd84d35b2007-02-15 02:26:10 +00002413 } else if (const VectorType *PTy = dyn_cast<VectorType>(SrcTy)) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002414 assert(DestBits == PTy->getBitWidth() &&
Dan Gohmanfead7972007-05-11 21:43:24 +00002415 "Casting vector to floating point of different width");
Devang Patele9432132008-11-05 01:37:40 +00002416 PTy = NULL;
2417 return BitCast; // same size, no-op cast
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002418 } else {
Torok Edwinfbcc6632009-07-14 16:55:14 +00002419 llvm_unreachable("Casting pointer or non-first class to float");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002420 }
Reid Spencerd84d35b2007-02-15 02:26:10 +00002421 } else if (const VectorType *DestPTy = dyn_cast<VectorType>(DestTy)) {
2422 if (const VectorType *SrcPTy = dyn_cast<VectorType>(SrcTy)) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002423 assert(DestPTy->getBitWidth() == SrcPTy->getBitWidth() &&
Dan Gohmanfead7972007-05-11 21:43:24 +00002424 "Casting vector to vector of different widths");
Devang Patelcb181bb2008-11-21 20:00:59 +00002425 SrcPTy = NULL;
Dan Gohmanfead7972007-05-11 21:43:24 +00002426 return BitCast; // vector -> vector
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002427 } else if (DestPTy->getBitWidth() == SrcBits) {
Dan Gohmanfead7972007-05-11 21:43:24 +00002428 return BitCast; // float/int -> vector
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002429 } else {
Dan Gohmanfead7972007-05-11 21:43:24 +00002430 assert(!"Illegal cast to vector (wrong type or size)");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002431 }
Duncan Sands19d0b472010-02-16 11:11:14 +00002432 } else if (DestTy->isPointerTy()) {
2433 if (SrcTy->isPointerTy()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002434 return BitCast; // ptr -> ptr
Duncan Sands9dff9be2010-02-15 16:12:20 +00002435 } else if (SrcTy->isIntegerTy()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002436 return IntToPtr; // int -> ptr
2437 } else {
2438 assert(!"Casting pointer to other than pointer or int");
2439 }
2440 } else {
2441 assert(!"Casting to type that is not first-class");
2442 }
2443
2444 // If we fall through to here we probably hit an assertion cast above
2445 // and assertions are not turned on. Anything we return is an error, so
2446 // BitCast is as good a choice as any.
2447 return BitCast;
2448}
2449
2450//===----------------------------------------------------------------------===//
2451// CastInst SubClass Constructors
2452//===----------------------------------------------------------------------===//
2453
2454/// Check that the construction parameters for a CastInst are correct. This
2455/// could be broken out into the separate constructors but it is useful to have
2456/// it in one place and to eliminate the redundant code for getting the sizes
2457/// of the types involved.
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002458bool
2459CastInst::castIsValid(Instruction::CastOps op, Value *S, const Type *DstTy) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002460
2461 // Check for type sanity on the arguments
2462 const Type *SrcTy = S->getType();
Chris Lattner37bc78a2010-01-26 21:51:43 +00002463 if (!SrcTy->isFirstClassType() || !DstTy->isFirstClassType() ||
2464 SrcTy->isAggregateType() || DstTy->isAggregateType())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002465 return false;
2466
2467 // Get the size of the types in bits, we'll need this later
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002468 unsigned SrcBitSize = SrcTy->getScalarSizeInBits();
2469 unsigned DstBitSize = DstTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002470
2471 // Switch on the opcode provided
2472 switch (op) {
2473 default: return false; // This is an input error
2474 case Instruction::Trunc:
Duncan Sands9dff9be2010-02-15 16:12:20 +00002475 return SrcTy->isIntOrIntVectorTy() &&
2476 DstTy->isIntOrIntVectorTy()&& SrcBitSize > DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002477 case Instruction::ZExt:
Duncan Sands9dff9be2010-02-15 16:12:20 +00002478 return SrcTy->isIntOrIntVectorTy() &&
2479 DstTy->isIntOrIntVectorTy()&& SrcBitSize < DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002480 case Instruction::SExt:
Duncan Sands9dff9be2010-02-15 16:12:20 +00002481 return SrcTy->isIntOrIntVectorTy() &&
2482 DstTy->isIntOrIntVectorTy()&& SrcBitSize < DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002483 case Instruction::FPTrunc:
Duncan Sands9dff9be2010-02-15 16:12:20 +00002484 return SrcTy->isFPOrFPVectorTy() &&
2485 DstTy->isFPOrFPVectorTy() &&
Dan Gohman550c9af2008-08-14 20:04:46 +00002486 SrcBitSize > DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002487 case Instruction::FPExt:
Duncan Sands9dff9be2010-02-15 16:12:20 +00002488 return SrcTy->isFPOrFPVectorTy() &&
2489 DstTy->isFPOrFPVectorTy() &&
Dan Gohman550c9af2008-08-14 20:04:46 +00002490 SrcBitSize < DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002491 case Instruction::UIToFP:
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002492 case Instruction::SIToFP:
Nate Begemand4d45c22007-11-17 03:58:34 +00002493 if (const VectorType *SVTy = dyn_cast<VectorType>(SrcTy)) {
2494 if (const VectorType *DVTy = dyn_cast<VectorType>(DstTy)) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002495 return SVTy->getElementType()->isIntOrIntVectorTy() &&
2496 DVTy->getElementType()->isFPOrFPVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00002497 SVTy->getNumElements() == DVTy->getNumElements();
2498 }
2499 }
Duncan Sands9dff9be2010-02-15 16:12:20 +00002500 return SrcTy->isIntOrIntVectorTy() && DstTy->isFPOrFPVectorTy();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002501 case Instruction::FPToUI:
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002502 case Instruction::FPToSI:
Nate Begemand4d45c22007-11-17 03:58:34 +00002503 if (const VectorType *SVTy = dyn_cast<VectorType>(SrcTy)) {
2504 if (const VectorType *DVTy = dyn_cast<VectorType>(DstTy)) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002505 return SVTy->getElementType()->isFPOrFPVectorTy() &&
2506 DVTy->getElementType()->isIntOrIntVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00002507 SVTy->getNumElements() == DVTy->getNumElements();
2508 }
2509 }
Duncan Sands9dff9be2010-02-15 16:12:20 +00002510 return SrcTy->isFPOrFPVectorTy() && DstTy->isIntOrIntVectorTy();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002511 case Instruction::PtrToInt:
Duncan Sands19d0b472010-02-16 11:11:14 +00002512 return SrcTy->isPointerTy() && DstTy->isIntegerTy();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002513 case Instruction::IntToPtr:
Duncan Sands19d0b472010-02-16 11:11:14 +00002514 return SrcTy->isIntegerTy() && DstTy->isPointerTy();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002515 case Instruction::BitCast:
2516 // BitCast implies a no-op cast of type only. No bits change.
2517 // However, you can't cast pointers to anything but pointers.
Duncan Sands19d0b472010-02-16 11:11:14 +00002518 if (SrcTy->isPointerTy() != DstTy->isPointerTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002519 return false;
2520
Duncan Sands55e50902008-01-06 10:12:28 +00002521 // Now we know we're not dealing with a pointer/non-pointer mismatch. In all
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002522 // these cases, the cast is okay if the source and destination bit widths
2523 // are identical.
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002524 return SrcTy->getPrimitiveSizeInBits() == DstTy->getPrimitiveSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002525 }
2526}
2527
2528TruncInst::TruncInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002529 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002530) : CastInst(Ty, Trunc, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002531 assert(castIsValid(getOpcode(), S, Ty) && "Illegal Trunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002532}
2533
2534TruncInst::TruncInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002535 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002536) : CastInst(Ty, Trunc, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002537 assert(castIsValid(getOpcode(), S, Ty) && "Illegal Trunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002538}
2539
2540ZExtInst::ZExtInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002541 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002542) : CastInst(Ty, ZExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002543 assert(castIsValid(getOpcode(), S, Ty) && "Illegal ZExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002544}
2545
2546ZExtInst::ZExtInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002547 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002548) : CastInst(Ty, ZExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002549 assert(castIsValid(getOpcode(), S, Ty) && "Illegal ZExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002550}
2551SExtInst::SExtInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002552 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002553) : CastInst(Ty, SExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002554 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002555}
2556
Jeff Cohencc08c832006-12-02 02:22:01 +00002557SExtInst::SExtInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002558 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002559) : CastInst(Ty, SExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002560 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002561}
2562
2563FPTruncInst::FPTruncInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002564 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002565) : CastInst(Ty, FPTrunc, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002566 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPTrunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002567}
2568
2569FPTruncInst::FPTruncInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002570 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002571) : CastInst(Ty, FPTrunc, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002572 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPTrunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002573}
2574
2575FPExtInst::FPExtInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002576 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002577) : CastInst(Ty, FPExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002578 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002579}
2580
2581FPExtInst::FPExtInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002582 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002583) : CastInst(Ty, FPExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002584 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002585}
2586
2587UIToFPInst::UIToFPInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002588 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002589) : CastInst(Ty, UIToFP, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002590 assert(castIsValid(getOpcode(), S, Ty) && "Illegal UIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002591}
2592
2593UIToFPInst::UIToFPInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002594 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002595) : CastInst(Ty, UIToFP, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002596 assert(castIsValid(getOpcode(), S, Ty) && "Illegal UIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002597}
2598
2599SIToFPInst::SIToFPInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002600 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002601) : CastInst(Ty, SIToFP, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002602 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002603}
2604
2605SIToFPInst::SIToFPInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002606 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002607) : CastInst(Ty, SIToFP, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002608 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002609}
2610
2611FPToUIInst::FPToUIInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002612 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002613) : CastInst(Ty, FPToUI, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002614 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToUI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002615}
2616
2617FPToUIInst::FPToUIInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002618 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002619) : CastInst(Ty, FPToUI, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002620 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToUI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002621}
2622
2623FPToSIInst::FPToSIInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002624 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002625) : CastInst(Ty, FPToSI, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002626 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToSI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002627}
2628
2629FPToSIInst::FPToSIInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002630 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002631) : CastInst(Ty, FPToSI, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002632 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToSI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002633}
2634
2635PtrToIntInst::PtrToIntInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002636 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002637) : CastInst(Ty, PtrToInt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002638 assert(castIsValid(getOpcode(), S, Ty) && "Illegal PtrToInt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002639}
2640
2641PtrToIntInst::PtrToIntInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002642 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002643) : CastInst(Ty, PtrToInt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002644 assert(castIsValid(getOpcode(), S, Ty) && "Illegal PtrToInt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002645}
2646
2647IntToPtrInst::IntToPtrInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002648 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002649) : CastInst(Ty, IntToPtr, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002650 assert(castIsValid(getOpcode(), S, Ty) && "Illegal IntToPtr");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002651}
2652
2653IntToPtrInst::IntToPtrInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002654 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002655) : CastInst(Ty, IntToPtr, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002656 assert(castIsValid(getOpcode(), S, Ty) && "Illegal IntToPtr");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002657}
2658
2659BitCastInst::BitCastInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002660 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002661) : CastInst(Ty, BitCast, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002662 assert(castIsValid(getOpcode(), S, Ty) && "Illegal BitCast");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002663}
2664
2665BitCastInst::BitCastInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002666 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002667) : CastInst(Ty, BitCast, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002668 assert(castIsValid(getOpcode(), S, Ty) && "Illegal BitCast");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002669}
Chris Lattnerf16dc002006-09-17 19:29:56 +00002670
2671//===----------------------------------------------------------------------===//
Reid Spencerd9436b62006-11-20 01:22:35 +00002672// CmpInst Classes
2673//===----------------------------------------------------------------------===//
2674
Chris Lattneraec33da2010-01-22 06:25:37 +00002675void CmpInst::Anchor() const {}
2676
Nate Begemand2195702008-05-12 19:01:56 +00002677CmpInst::CmpInst(const Type *ty, OtherOps op, unsigned short predicate,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002678 Value *LHS, Value *RHS, const Twine &Name,
Nate Begemand2195702008-05-12 19:01:56 +00002679 Instruction *InsertBefore)
Nate Begeman66d0a0e2008-05-12 20:11:05 +00002680 : Instruction(ty, op,
Gabor Greiff6caff662008-05-10 08:32:32 +00002681 OperandTraits<CmpInst>::op_begin(this),
2682 OperandTraits<CmpInst>::operands(this),
2683 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00002684 Op<0>() = LHS;
2685 Op<1>() = RHS;
Chris Lattnerb9c86512009-12-29 02:14:09 +00002686 setPredicate((Predicate)predicate);
Reid Spencer871a9ea2007-04-11 13:04:48 +00002687 setName(Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002688}
Gabor Greiff6caff662008-05-10 08:32:32 +00002689
Nate Begemand2195702008-05-12 19:01:56 +00002690CmpInst::CmpInst(const Type *ty, OtherOps op, unsigned short predicate,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002691 Value *LHS, Value *RHS, const Twine &Name,
Nate Begemand2195702008-05-12 19:01:56 +00002692 BasicBlock *InsertAtEnd)
Nate Begeman66d0a0e2008-05-12 20:11:05 +00002693 : Instruction(ty, op,
Gabor Greiff6caff662008-05-10 08:32:32 +00002694 OperandTraits<CmpInst>::op_begin(this),
2695 OperandTraits<CmpInst>::operands(this),
2696 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00002697 Op<0>() = LHS;
2698 Op<1>() = RHS;
Chris Lattnerb9c86512009-12-29 02:14:09 +00002699 setPredicate((Predicate)predicate);
Reid Spencer871a9ea2007-04-11 13:04:48 +00002700 setName(Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002701}
2702
2703CmpInst *
Dan Gohmanad1f0a12009-08-25 23:17:54 +00002704CmpInst::Create(OtherOps Op, unsigned short predicate,
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002705 Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002706 const Twine &Name, Instruction *InsertBefore) {
Reid Spencerd9436b62006-11-20 01:22:35 +00002707 if (Op == Instruction::ICmp) {
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002708 if (InsertBefore)
2709 return new ICmpInst(InsertBefore, CmpInst::Predicate(predicate),
2710 S1, S2, Name);
2711 else
Dan Gohmanad1f0a12009-08-25 23:17:54 +00002712 return new ICmpInst(CmpInst::Predicate(predicate),
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002713 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002714 }
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002715
2716 if (InsertBefore)
2717 return new FCmpInst(InsertBefore, CmpInst::Predicate(predicate),
2718 S1, S2, Name);
2719 else
Dan Gohmanad1f0a12009-08-25 23:17:54 +00002720 return new FCmpInst(CmpInst::Predicate(predicate),
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002721 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002722}
2723
2724CmpInst *
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002725CmpInst::Create(OtherOps Op, unsigned short predicate, Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002726 const Twine &Name, BasicBlock *InsertAtEnd) {
Reid Spencerd9436b62006-11-20 01:22:35 +00002727 if (Op == Instruction::ICmp) {
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002728 return new ICmpInst(*InsertAtEnd, CmpInst::Predicate(predicate),
2729 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002730 }
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002731 return new FCmpInst(*InsertAtEnd, CmpInst::Predicate(predicate),
2732 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002733}
2734
2735void CmpInst::swapOperands() {
2736 if (ICmpInst *IC = dyn_cast<ICmpInst>(this))
2737 IC->swapOperands();
2738 else
2739 cast<FCmpInst>(this)->swapOperands();
2740}
2741
2742bool CmpInst::isCommutative() {
2743 if (ICmpInst *IC = dyn_cast<ICmpInst>(this))
2744 return IC->isCommutative();
2745 return cast<FCmpInst>(this)->isCommutative();
2746}
2747
2748bool CmpInst::isEquality() {
2749 if (ICmpInst *IC = dyn_cast<ICmpInst>(this))
2750 return IC->isEquality();
2751 return cast<FCmpInst>(this)->isEquality();
2752}
2753
2754
Dan Gohman4e724382008-05-31 02:47:54 +00002755CmpInst::Predicate CmpInst::getInversePredicate(Predicate pred) {
Reid Spencerd9436b62006-11-20 01:22:35 +00002756 switch (pred) {
Dan Gohman4e724382008-05-31 02:47:54 +00002757 default: assert(!"Unknown cmp predicate!");
Reid Spencerd9436b62006-11-20 01:22:35 +00002758 case ICMP_EQ: return ICMP_NE;
2759 case ICMP_NE: return ICMP_EQ;
2760 case ICMP_UGT: return ICMP_ULE;
2761 case ICMP_ULT: return ICMP_UGE;
2762 case ICMP_UGE: return ICMP_ULT;
2763 case ICMP_ULE: return ICMP_UGT;
2764 case ICMP_SGT: return ICMP_SLE;
2765 case ICMP_SLT: return ICMP_SGE;
2766 case ICMP_SGE: return ICMP_SLT;
2767 case ICMP_SLE: return ICMP_SGT;
Reid Spencerd9436b62006-11-20 01:22:35 +00002768
Dan Gohman4e724382008-05-31 02:47:54 +00002769 case FCMP_OEQ: return FCMP_UNE;
2770 case FCMP_ONE: return FCMP_UEQ;
2771 case FCMP_OGT: return FCMP_ULE;
2772 case FCMP_OLT: return FCMP_UGE;
2773 case FCMP_OGE: return FCMP_ULT;
2774 case FCMP_OLE: return FCMP_UGT;
2775 case FCMP_UEQ: return FCMP_ONE;
2776 case FCMP_UNE: return FCMP_OEQ;
2777 case FCMP_UGT: return FCMP_OLE;
2778 case FCMP_ULT: return FCMP_OGE;
2779 case FCMP_UGE: return FCMP_OLT;
2780 case FCMP_ULE: return FCMP_OGT;
2781 case FCMP_ORD: return FCMP_UNO;
2782 case FCMP_UNO: return FCMP_ORD;
2783 case FCMP_TRUE: return FCMP_FALSE;
2784 case FCMP_FALSE: return FCMP_TRUE;
Reid Spencerd9436b62006-11-20 01:22:35 +00002785 }
2786}
2787
Reid Spencer266e42b2006-12-23 06:05:41 +00002788ICmpInst::Predicate ICmpInst::getSignedPredicate(Predicate pred) {
2789 switch (pred) {
2790 default: assert(! "Unknown icmp predicate!");
2791 case ICMP_EQ: case ICMP_NE:
2792 case ICMP_SGT: case ICMP_SLT: case ICMP_SGE: case ICMP_SLE:
2793 return pred;
2794 case ICMP_UGT: return ICMP_SGT;
2795 case ICMP_ULT: return ICMP_SLT;
2796 case ICMP_UGE: return ICMP_SGE;
2797 case ICMP_ULE: return ICMP_SLE;
2798 }
2799}
2800
Nick Lewycky8ea81e82008-01-28 03:48:02 +00002801ICmpInst::Predicate ICmpInst::getUnsignedPredicate(Predicate pred) {
2802 switch (pred) {
2803 default: assert(! "Unknown icmp predicate!");
2804 case ICMP_EQ: case ICMP_NE:
2805 case ICMP_UGT: case ICMP_ULT: case ICMP_UGE: case ICMP_ULE:
2806 return pred;
2807 case ICMP_SGT: return ICMP_UGT;
2808 case ICMP_SLT: return ICMP_ULT;
2809 case ICMP_SGE: return ICMP_UGE;
2810 case ICMP_SLE: return ICMP_ULE;
2811 }
2812}
2813
Reid Spencer0286bc12007-02-28 22:00:54 +00002814/// Initialize a set of values that all satisfy the condition with C.
2815///
2816ConstantRange
2817ICmpInst::makeConstantRange(Predicate pred, const APInt &C) {
2818 APInt Lower(C);
2819 APInt Upper(C);
2820 uint32_t BitWidth = C.getBitWidth();
2821 switch (pred) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00002822 default: llvm_unreachable("Invalid ICmp opcode to ConstantRange ctor!");
Reid Spencer0286bc12007-02-28 22:00:54 +00002823 case ICmpInst::ICMP_EQ: Upper++; break;
2824 case ICmpInst::ICMP_NE: Lower++; break;
Dan Gohmand86e2952010-01-26 16:04:20 +00002825 case ICmpInst::ICMP_ULT:
2826 Lower = APInt::getMinValue(BitWidth);
2827 // Check for an empty-set condition.
2828 if (Lower == Upper)
2829 return ConstantRange(BitWidth, /*isFullSet=*/false);
2830 break;
2831 case ICmpInst::ICMP_SLT:
2832 Lower = APInt::getSignedMinValue(BitWidth);
2833 // Check for an empty-set condition.
2834 if (Lower == Upper)
2835 return ConstantRange(BitWidth, /*isFullSet=*/false);
2836 break;
Reid Spencer0286bc12007-02-28 22:00:54 +00002837 case ICmpInst::ICMP_UGT:
2838 Lower++; Upper = APInt::getMinValue(BitWidth); // Min = Next(Max)
Dan Gohmand86e2952010-01-26 16:04:20 +00002839 // Check for an empty-set condition.
2840 if (Lower == Upper)
2841 return ConstantRange(BitWidth, /*isFullSet=*/false);
Reid Spencer0286bc12007-02-28 22:00:54 +00002842 break;
2843 case ICmpInst::ICMP_SGT:
2844 Lower++; Upper = APInt::getSignedMinValue(BitWidth); // Min = Next(Max)
Dan Gohmand86e2952010-01-26 16:04:20 +00002845 // Check for an empty-set condition.
2846 if (Lower == Upper)
2847 return ConstantRange(BitWidth, /*isFullSet=*/false);
Reid Spencer0286bc12007-02-28 22:00:54 +00002848 break;
2849 case ICmpInst::ICMP_ULE:
2850 Lower = APInt::getMinValue(BitWidth); Upper++;
Dan Gohmand86e2952010-01-26 16:04:20 +00002851 // Check for a full-set condition.
2852 if (Lower == Upper)
2853 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer0286bc12007-02-28 22:00:54 +00002854 break;
2855 case ICmpInst::ICMP_SLE:
2856 Lower = APInt::getSignedMinValue(BitWidth); Upper++;
Dan Gohmand86e2952010-01-26 16:04:20 +00002857 // Check for a full-set condition.
2858 if (Lower == Upper)
2859 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer0286bc12007-02-28 22:00:54 +00002860 break;
2861 case ICmpInst::ICMP_UGE:
2862 Upper = APInt::getMinValue(BitWidth); // Min = Next(Max)
Dan Gohmand86e2952010-01-26 16:04:20 +00002863 // Check for a full-set condition.
2864 if (Lower == Upper)
2865 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer0286bc12007-02-28 22:00:54 +00002866 break;
2867 case ICmpInst::ICMP_SGE:
2868 Upper = APInt::getSignedMinValue(BitWidth); // Min = Next(Max)
Dan Gohmand86e2952010-01-26 16:04:20 +00002869 // Check for a full-set condition.
2870 if (Lower == Upper)
2871 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer0286bc12007-02-28 22:00:54 +00002872 break;
2873 }
2874 return ConstantRange(Lower, Upper);
2875}
2876
Dan Gohman4e724382008-05-31 02:47:54 +00002877CmpInst::Predicate CmpInst::getSwappedPredicate(Predicate pred) {
Reid Spencerd9436b62006-11-20 01:22:35 +00002878 switch (pred) {
Dan Gohman4e724382008-05-31 02:47:54 +00002879 default: assert(!"Unknown cmp predicate!");
2880 case ICMP_EQ: case ICMP_NE:
2881 return pred;
2882 case ICMP_SGT: return ICMP_SLT;
2883 case ICMP_SLT: return ICMP_SGT;
2884 case ICMP_SGE: return ICMP_SLE;
2885 case ICMP_SLE: return ICMP_SGE;
2886 case ICMP_UGT: return ICMP_ULT;
2887 case ICMP_ULT: return ICMP_UGT;
2888 case ICMP_UGE: return ICMP_ULE;
2889 case ICMP_ULE: return ICMP_UGE;
2890
Reid Spencerd9436b62006-11-20 01:22:35 +00002891 case FCMP_FALSE: case FCMP_TRUE:
2892 case FCMP_OEQ: case FCMP_ONE:
2893 case FCMP_UEQ: case FCMP_UNE:
2894 case FCMP_ORD: case FCMP_UNO:
2895 return pred;
2896 case FCMP_OGT: return FCMP_OLT;
2897 case FCMP_OLT: return FCMP_OGT;
2898 case FCMP_OGE: return FCMP_OLE;
2899 case FCMP_OLE: return FCMP_OGE;
2900 case FCMP_UGT: return FCMP_ULT;
2901 case FCMP_ULT: return FCMP_UGT;
2902 case FCMP_UGE: return FCMP_ULE;
2903 case FCMP_ULE: return FCMP_UGE;
2904 }
2905}
2906
Reid Spencer266e42b2006-12-23 06:05:41 +00002907bool CmpInst::isUnsigned(unsigned short predicate) {
2908 switch (predicate) {
2909 default: return false;
2910 case ICmpInst::ICMP_ULT: case ICmpInst::ICMP_ULE: case ICmpInst::ICMP_UGT:
2911 case ICmpInst::ICMP_UGE: return true;
2912 }
2913}
2914
Nick Lewycky7494b3b2009-10-25 03:50:03 +00002915bool CmpInst::isSigned(unsigned short predicate) {
Reid Spencer266e42b2006-12-23 06:05:41 +00002916 switch (predicate) {
2917 default: return false;
2918 case ICmpInst::ICMP_SLT: case ICmpInst::ICMP_SLE: case ICmpInst::ICMP_SGT:
2919 case ICmpInst::ICMP_SGE: return true;
2920 }
2921}
2922
2923bool CmpInst::isOrdered(unsigned short predicate) {
2924 switch (predicate) {
2925 default: return false;
2926 case FCmpInst::FCMP_OEQ: case FCmpInst::FCMP_ONE: case FCmpInst::FCMP_OGT:
2927 case FCmpInst::FCMP_OLT: case FCmpInst::FCMP_OGE: case FCmpInst::FCMP_OLE:
2928 case FCmpInst::FCMP_ORD: return true;
2929 }
2930}
2931
2932bool CmpInst::isUnordered(unsigned short predicate) {
2933 switch (predicate) {
2934 default: return false;
2935 case FCmpInst::FCMP_UEQ: case FCmpInst::FCMP_UNE: case FCmpInst::FCMP_UGT:
2936 case FCmpInst::FCMP_ULT: case FCmpInst::FCMP_UGE: case FCmpInst::FCMP_ULE:
2937 case FCmpInst::FCMP_UNO: return true;
2938 }
2939}
2940
Nick Lewycky7494b3b2009-10-25 03:50:03 +00002941bool CmpInst::isTrueWhenEqual(unsigned short predicate) {
2942 switch(predicate) {
2943 default: return false;
2944 case ICMP_EQ: case ICMP_UGE: case ICMP_ULE: case ICMP_SGE: case ICMP_SLE:
2945 case FCMP_TRUE: case FCMP_UEQ: case FCMP_UGE: case FCMP_ULE: return true;
2946 }
2947}
2948
2949bool CmpInst::isFalseWhenEqual(unsigned short predicate) {
2950 switch(predicate) {
2951 case ICMP_NE: case ICMP_UGT: case ICMP_ULT: case ICMP_SGT: case ICMP_SLT:
2952 case FCMP_FALSE: case FCMP_ONE: case FCMP_OGT: case FCMP_OLT: return true;
2953 default: return false;
2954 }
2955}
2956
2957
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002958//===----------------------------------------------------------------------===//
2959// SwitchInst Implementation
2960//===----------------------------------------------------------------------===//
2961
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002962void SwitchInst::init(Value *Value, BasicBlock *Default, unsigned NumCases) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002963 assert(Value && Default);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002964 ReservedSpace = 2+NumCases*2;
2965 NumOperands = 2;
Gabor Greiff6caff662008-05-10 08:32:32 +00002966 OperandList = allocHungoffUses(ReservedSpace);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002967
Gabor Greif2d3024d2008-05-26 21:33:52 +00002968 OperandList[0] = Value;
2969 OperandList[1] = Default;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002970}
2971
Chris Lattner2195fc42007-02-24 00:55:48 +00002972/// SwitchInst ctor - Create a new switch instruction, specifying a value to
2973/// switch on and a default destination. The number of additional cases can
2974/// be specified here to make memory allocation more efficient. This
2975/// constructor can also autoinsert before another instruction.
2976SwitchInst::SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
2977 Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +00002978 : TerminatorInst(Type::getVoidTy(Value->getContext()), Instruction::Switch,
2979 0, 0, InsertBefore) {
Chris Lattner2195fc42007-02-24 00:55:48 +00002980 init(Value, Default, NumCases);
2981}
2982
2983/// SwitchInst ctor - Create a new switch instruction, specifying a value to
2984/// switch on and a default destination. The number of additional cases can
2985/// be specified here to make memory allocation more efficient. This
2986/// constructor also autoinserts at the end of the specified BasicBlock.
2987SwitchInst::SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
2988 BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +00002989 : TerminatorInst(Type::getVoidTy(Value->getContext()), Instruction::Switch,
2990 0, 0, InsertAtEnd) {
Chris Lattner2195fc42007-02-24 00:55:48 +00002991 init(Value, Default, NumCases);
2992}
2993
Misha Brukmanb1c93172005-04-21 23:48:37 +00002994SwitchInst::SwitchInst(const SwitchInst &SI)
Owen Anderson55f1c092009-08-13 21:58:54 +00002995 : TerminatorInst(Type::getVoidTy(SI.getContext()), Instruction::Switch,
Gabor Greiff6caff662008-05-10 08:32:32 +00002996 allocHungoffUses(SI.getNumOperands()), SI.getNumOperands()) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002997 Use *OL = OperandList, *InOL = SI.OperandList;
2998 for (unsigned i = 0, E = SI.getNumOperands(); i != E; i+=2) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00002999 OL[i] = InOL[i];
3000 OL[i+1] = InOL[i+1];
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003001 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003002 SubclassOptionalData = SI.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003003}
3004
Gordon Henriksen14a55692007-12-10 02:14:30 +00003005SwitchInst::~SwitchInst() {
Gabor Greiff6caff662008-05-10 08:32:32 +00003006 dropHungoffUses(OperandList);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003007}
3008
3009
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003010/// addCase - Add an entry to the switch instruction...
3011///
Chris Lattner47ac1872005-02-24 05:32:09 +00003012void SwitchInst::addCase(ConstantInt *OnVal, BasicBlock *Dest) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003013 unsigned OpNo = NumOperands;
3014 if (OpNo+2 > ReservedSpace)
3015 resizeOperands(0); // Get more space!
3016 // Initialize some new operands.
Chris Lattnerf711f8d2005-01-29 01:05:12 +00003017 assert(OpNo+1 < ReservedSpace && "Growing didn't work!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003018 NumOperands = OpNo+2;
Gabor Greif2d3024d2008-05-26 21:33:52 +00003019 OperandList[OpNo] = OnVal;
3020 OperandList[OpNo+1] = Dest;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003021}
3022
3023/// removeCase - This method removes the specified successor from the switch
3024/// instruction. Note that this cannot be used to remove the default
3025/// destination (successor #0).
3026///
3027void SwitchInst::removeCase(unsigned idx) {
3028 assert(idx != 0 && "Cannot remove the default case!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003029 assert(idx*2 < getNumOperands() && "Successor index out of range!!!");
3030
3031 unsigned NumOps = getNumOperands();
3032 Use *OL = OperandList;
3033
3034 // Move everything after this operand down.
3035 //
3036 // FIXME: we could just swap with the end of the list, then erase. However,
3037 // client might not expect this to happen. The code as it is thrashes the
3038 // use/def lists, which is kinda lame.
3039 for (unsigned i = (idx+1)*2; i != NumOps; i += 2) {
3040 OL[i-2] = OL[i];
3041 OL[i-2+1] = OL[i+1];
3042 }
3043
3044 // Nuke the last value.
3045 OL[NumOps-2].set(0);
3046 OL[NumOps-2+1].set(0);
3047 NumOperands = NumOps-2;
3048}
3049
3050/// resizeOperands - resize operands - This adjusts the length of the operands
3051/// list according to the following behavior:
3052/// 1. If NumOps == 0, grow the operand list in response to a push_back style
Gabor Greiff6caff662008-05-10 08:32:32 +00003053/// of operation. This grows the number of ops by 3 times.
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003054/// 2. If NumOps > NumOperands, reserve space for NumOps operands.
3055/// 3. If NumOps == NumOperands, trim the reserved space.
3056///
3057void SwitchInst::resizeOperands(unsigned NumOps) {
Gabor Greiff6caff662008-05-10 08:32:32 +00003058 unsigned e = getNumOperands();
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003059 if (NumOps == 0) {
Gabor Greiff6caff662008-05-10 08:32:32 +00003060 NumOps = e*3;
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003061 } else if (NumOps*2 > NumOperands) {
3062 // No resize needed.
3063 if (ReservedSpace >= NumOps) return;
3064 } else if (NumOps == NumOperands) {
3065 if (ReservedSpace == NumOps) return;
3066 } else {
Chris Lattnerf711f8d2005-01-29 01:05:12 +00003067 return;
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003068 }
3069
3070 ReservedSpace = NumOps;
Gabor Greiff6caff662008-05-10 08:32:32 +00003071 Use *NewOps = allocHungoffUses(NumOps);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003072 Use *OldOps = OperandList;
Gabor Greiff6caff662008-05-10 08:32:32 +00003073 for (unsigned i = 0; i != e; ++i) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00003074 NewOps[i] = OldOps[i];
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003075 }
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003076 OperandList = NewOps;
Gabor Greiff6caff662008-05-10 08:32:32 +00003077 if (OldOps) Use::zap(OldOps, OldOps + e, true);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003078}
3079
3080
3081BasicBlock *SwitchInst::getSuccessorV(unsigned idx) const {
3082 return getSuccessor(idx);
3083}
3084unsigned SwitchInst::getNumSuccessorsV() const {
3085 return getNumSuccessors();
3086}
3087void SwitchInst::setSuccessorV(unsigned idx, BasicBlock *B) {
3088 setSuccessor(idx, B);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003089}
Chris Lattnerf22be932004-10-15 23:52:53 +00003090
Chris Lattner3ed871f2009-10-27 19:13:16 +00003091//===----------------------------------------------------------------------===//
3092// SwitchInst Implementation
3093//===----------------------------------------------------------------------===//
3094
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003095void IndirectBrInst::init(Value *Address, unsigned NumDests) {
Duncan Sands19d0b472010-02-16 11:11:14 +00003096 assert(Address && Address->getType()->isPointerTy() &&
Chris Lattner6747b4c2009-10-29 05:53:32 +00003097 "Address of indirectbr must be a pointer");
Chris Lattner3ed871f2009-10-27 19:13:16 +00003098 ReservedSpace = 1+NumDests;
3099 NumOperands = 1;
3100 OperandList = allocHungoffUses(ReservedSpace);
3101
3102 OperandList[0] = Address;
3103}
3104
3105
3106/// resizeOperands - resize operands - This adjusts the length of the operands
3107/// list according to the following behavior:
3108/// 1. If NumOps == 0, grow the operand list in response to a push_back style
3109/// of operation. This grows the number of ops by 2 times.
3110/// 2. If NumOps > NumOperands, reserve space for NumOps operands.
3111/// 3. If NumOps == NumOperands, trim the reserved space.
3112///
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003113void IndirectBrInst::resizeOperands(unsigned NumOps) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003114 unsigned e = getNumOperands();
3115 if (NumOps == 0) {
3116 NumOps = e*2;
3117 } else if (NumOps*2 > NumOperands) {
3118 // No resize needed.
3119 if (ReservedSpace >= NumOps) return;
3120 } else if (NumOps == NumOperands) {
3121 if (ReservedSpace == NumOps) return;
3122 } else {
3123 return;
3124 }
3125
3126 ReservedSpace = NumOps;
3127 Use *NewOps = allocHungoffUses(NumOps);
3128 Use *OldOps = OperandList;
3129 for (unsigned i = 0; i != e; ++i)
3130 NewOps[i] = OldOps[i];
3131 OperandList = NewOps;
3132 if (OldOps) Use::zap(OldOps, OldOps + e, true);
3133}
3134
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003135IndirectBrInst::IndirectBrInst(Value *Address, unsigned NumCases,
3136 Instruction *InsertBefore)
3137: TerminatorInst(Type::getVoidTy(Address->getContext()),Instruction::IndirectBr,
Chris Lattner3ed871f2009-10-27 19:13:16 +00003138 0, 0, InsertBefore) {
3139 init(Address, NumCases);
3140}
3141
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003142IndirectBrInst::IndirectBrInst(Value *Address, unsigned NumCases,
3143 BasicBlock *InsertAtEnd)
3144: TerminatorInst(Type::getVoidTy(Address->getContext()),Instruction::IndirectBr,
Chris Lattner3ed871f2009-10-27 19:13:16 +00003145 0, 0, InsertAtEnd) {
3146 init(Address, NumCases);
3147}
3148
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003149IndirectBrInst::IndirectBrInst(const IndirectBrInst &IBI)
3150 : TerminatorInst(Type::getVoidTy(IBI.getContext()), Instruction::IndirectBr,
Chris Lattner3ed871f2009-10-27 19:13:16 +00003151 allocHungoffUses(IBI.getNumOperands()),
3152 IBI.getNumOperands()) {
3153 Use *OL = OperandList, *InOL = IBI.OperandList;
3154 for (unsigned i = 0, E = IBI.getNumOperands(); i != E; ++i)
3155 OL[i] = InOL[i];
3156 SubclassOptionalData = IBI.SubclassOptionalData;
3157}
3158
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003159IndirectBrInst::~IndirectBrInst() {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003160 dropHungoffUses(OperandList);
3161}
3162
3163/// addDestination - Add a destination.
3164///
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003165void IndirectBrInst::addDestination(BasicBlock *DestBB) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003166 unsigned OpNo = NumOperands;
3167 if (OpNo+1 > ReservedSpace)
3168 resizeOperands(0); // Get more space!
3169 // Initialize some new operands.
3170 assert(OpNo < ReservedSpace && "Growing didn't work!");
3171 NumOperands = OpNo+1;
3172 OperandList[OpNo] = DestBB;
3173}
3174
3175/// removeDestination - This method removes the specified successor from the
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003176/// indirectbr instruction.
3177void IndirectBrInst::removeDestination(unsigned idx) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003178 assert(idx < getNumOperands()-1 && "Successor index out of range!");
3179
3180 unsigned NumOps = getNumOperands();
3181 Use *OL = OperandList;
3182
3183 // Replace this value with the last one.
3184 OL[idx+1] = OL[NumOps-1];
3185
3186 // Nuke the last value.
3187 OL[NumOps-1].set(0);
3188 NumOperands = NumOps-1;
3189}
3190
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003191BasicBlock *IndirectBrInst::getSuccessorV(unsigned idx) const {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003192 return getSuccessor(idx);
3193}
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003194unsigned IndirectBrInst::getNumSuccessorsV() const {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003195 return getNumSuccessors();
3196}
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003197void IndirectBrInst::setSuccessorV(unsigned idx, BasicBlock *B) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003198 setSuccessor(idx, B);
3199}
3200
3201//===----------------------------------------------------------------------===//
Devang Patel11cf3f42009-10-27 22:16:29 +00003202// clone_impl() implementations
Chris Lattner3ed871f2009-10-27 19:13:16 +00003203//===----------------------------------------------------------------------===//
3204
Chris Lattnerf22be932004-10-15 23:52:53 +00003205// Define these methods here so vtables don't get emitted into every translation
3206// unit that uses these classes.
3207
Devang Patel11cf3f42009-10-27 22:16:29 +00003208GetElementPtrInst *GetElementPtrInst::clone_impl() const {
3209 return new (getNumOperands()) GetElementPtrInst(*this);
Chris Lattnerf22be932004-10-15 23:52:53 +00003210}
3211
Devang Patel11cf3f42009-10-27 22:16:29 +00003212BinaryOperator *BinaryOperator::clone_impl() const {
3213 return Create(getOpcode(), Op<0>(), Op<1>());
Chris Lattnerf22be932004-10-15 23:52:53 +00003214}
3215
Devang Patel11cf3f42009-10-27 22:16:29 +00003216FCmpInst* FCmpInst::clone_impl() const {
3217 return new FCmpInst(getPredicate(), Op<0>(), Op<1>());
Reid Spencerd9436b62006-11-20 01:22:35 +00003218}
3219
Devang Patel11cf3f42009-10-27 22:16:29 +00003220ICmpInst* ICmpInst::clone_impl() const {
3221 return new ICmpInst(getPredicate(), Op<0>(), Op<1>());
Dan Gohman0752bff2008-05-23 00:36:11 +00003222}
3223
Devang Patel11cf3f42009-10-27 22:16:29 +00003224ExtractValueInst *ExtractValueInst::clone_impl() const {
3225 return new ExtractValueInst(*this);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003226}
3227
Devang Patel11cf3f42009-10-27 22:16:29 +00003228InsertValueInst *InsertValueInst::clone_impl() const {
3229 return new InsertValueInst(*this);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003230}
3231
Devang Patel11cf3f42009-10-27 22:16:29 +00003232AllocaInst *AllocaInst::clone_impl() const {
3233 return new AllocaInst(getAllocatedType(),
3234 (Value*)getOperand(0),
3235 getAlignment());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003236}
3237
Devang Patel11cf3f42009-10-27 22:16:29 +00003238LoadInst *LoadInst::clone_impl() const {
3239 return new LoadInst(getOperand(0),
3240 Twine(), isVolatile(),
3241 getAlignment());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003242}
3243
Devang Patel11cf3f42009-10-27 22:16:29 +00003244StoreInst *StoreInst::clone_impl() const {
3245 return new StoreInst(getOperand(0), getOperand(1),
3246 isVolatile(), getAlignment());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003247}
3248
Devang Patel11cf3f42009-10-27 22:16:29 +00003249TruncInst *TruncInst::clone_impl() const {
3250 return new TruncInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003251}
3252
Devang Patel11cf3f42009-10-27 22:16:29 +00003253ZExtInst *ZExtInst::clone_impl() const {
3254 return new ZExtInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003255}
3256
Devang Patel11cf3f42009-10-27 22:16:29 +00003257SExtInst *SExtInst::clone_impl() const {
3258 return new SExtInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003259}
3260
Devang Patel11cf3f42009-10-27 22:16:29 +00003261FPTruncInst *FPTruncInst::clone_impl() const {
3262 return new FPTruncInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003263}
3264
Devang Patel11cf3f42009-10-27 22:16:29 +00003265FPExtInst *FPExtInst::clone_impl() const {
3266 return new FPExtInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003267}
3268
Devang Patel11cf3f42009-10-27 22:16:29 +00003269UIToFPInst *UIToFPInst::clone_impl() const {
3270 return new UIToFPInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003271}
3272
Devang Patel11cf3f42009-10-27 22:16:29 +00003273SIToFPInst *SIToFPInst::clone_impl() const {
3274 return new SIToFPInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003275}
3276
Devang Patel11cf3f42009-10-27 22:16:29 +00003277FPToUIInst *FPToUIInst::clone_impl() const {
3278 return new FPToUIInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003279}
3280
Devang Patel11cf3f42009-10-27 22:16:29 +00003281FPToSIInst *FPToSIInst::clone_impl() const {
3282 return new FPToSIInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003283}
3284
Devang Patel11cf3f42009-10-27 22:16:29 +00003285PtrToIntInst *PtrToIntInst::clone_impl() const {
3286 return new PtrToIntInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003287}
3288
Devang Patel11cf3f42009-10-27 22:16:29 +00003289IntToPtrInst *IntToPtrInst::clone_impl() const {
3290 return new IntToPtrInst(getOperand(0), getType());
Gabor Greif697e94c2008-05-15 10:04:30 +00003291}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003292
Devang Patel11cf3f42009-10-27 22:16:29 +00003293BitCastInst *BitCastInst::clone_impl() const {
3294 return new BitCastInst(getOperand(0), getType());
Gabor Greif697e94c2008-05-15 10:04:30 +00003295}
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003296
Devang Patel11cf3f42009-10-27 22:16:29 +00003297CallInst *CallInst::clone_impl() const {
3298 return new(getNumOperands()) CallInst(*this);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003299}
3300
Devang Patel11cf3f42009-10-27 22:16:29 +00003301SelectInst *SelectInst::clone_impl() const {
3302 return SelectInst::Create(getOperand(0), getOperand(1), getOperand(2));
Chris Lattnerbbe0a422006-04-08 01:18:18 +00003303}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003304
Devang Patel11cf3f42009-10-27 22:16:29 +00003305VAArgInst *VAArgInst::clone_impl() const {
3306 return new VAArgInst(getOperand(0), getType());
Chris Lattnerbbe0a422006-04-08 01:18:18 +00003307}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003308
Devang Patel11cf3f42009-10-27 22:16:29 +00003309ExtractElementInst *ExtractElementInst::clone_impl() const {
3310 return ExtractElementInst::Create(getOperand(0), getOperand(1));
Chris Lattnerbbe0a422006-04-08 01:18:18 +00003311}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003312
Devang Patel11cf3f42009-10-27 22:16:29 +00003313InsertElementInst *InsertElementInst::clone_impl() const {
3314 return InsertElementInst::Create(getOperand(0),
3315 getOperand(1),
3316 getOperand(2));
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003317}
3318
Devang Patel11cf3f42009-10-27 22:16:29 +00003319ShuffleVectorInst *ShuffleVectorInst::clone_impl() const {
3320 return new ShuffleVectorInst(getOperand(0),
3321 getOperand(1),
3322 getOperand(2));
Gabor Greif697e94c2008-05-15 10:04:30 +00003323}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003324
Devang Patel11cf3f42009-10-27 22:16:29 +00003325PHINode *PHINode::clone_impl() const {
3326 return new PHINode(*this);
3327}
3328
3329ReturnInst *ReturnInst::clone_impl() const {
3330 return new(getNumOperands()) ReturnInst(*this);
3331}
3332
3333BranchInst *BranchInst::clone_impl() const {
Gabor Greifc91aa9b2009-03-12 18:34:49 +00003334 unsigned Ops(getNumOperands());
Devang Patel11cf3f42009-10-27 22:16:29 +00003335 return new(Ops, Ops == 1) BranchInst(*this);
Gabor Greif697e94c2008-05-15 10:04:30 +00003336}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003337
Devang Patel11cf3f42009-10-27 22:16:29 +00003338SwitchInst *SwitchInst::clone_impl() const {
3339 return new SwitchInst(*this);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003340}
3341
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003342IndirectBrInst *IndirectBrInst::clone_impl() const {
3343 return new IndirectBrInst(*this);
Chris Lattner3ed871f2009-10-27 19:13:16 +00003344}
3345
3346
Devang Patel11cf3f42009-10-27 22:16:29 +00003347InvokeInst *InvokeInst::clone_impl() const {
3348 return new(getNumOperands()) InvokeInst(*this);
Gabor Greif697e94c2008-05-15 10:04:30 +00003349}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003350
Devang Patel11cf3f42009-10-27 22:16:29 +00003351UnwindInst *UnwindInst::clone_impl() const {
Nick Lewycky42fb7452009-09-27 07:38:41 +00003352 LLVMContext &Context = getContext();
Devang Patel11cf3f42009-10-27 22:16:29 +00003353 return new UnwindInst(Context);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003354}
3355
Devang Patel11cf3f42009-10-27 22:16:29 +00003356UnreachableInst *UnreachableInst::clone_impl() const {
Nick Lewycky42fb7452009-09-27 07:38:41 +00003357 LLVMContext &Context = getContext();
Devang Patel11cf3f42009-10-27 22:16:29 +00003358 return new UnreachableInst(Context);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003359}