blob: 9d8e0477eed943eb853f3212c94e736f2c103e9c [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
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +000015#include "llvm/Constants.h"
16#include "llvm/DerivedTypes.h"
17#include "llvm/Function.h"
18#include "llvm/Instructions.h"
Dan Gohmand2a251f2009-07-17 21:33:58 +000019#include "llvm/Operator.h"
Dan Gohman22571482009-09-03 15:34:35 +000020#include "llvm/Analysis/Dominators.h"
Torok Edwin6dd27302009-07-08 18:01:40 +000021#include "llvm/Support/ErrorHandling.h"
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +000022#include "llvm/Support/CallSite.h"
Reid Spencer0286bc12007-02-28 22:00:54 +000023#include "llvm/Support/ConstantRange.h"
Christopher Lamb84485702007-04-22 19:24:39 +000024#include "llvm/Support/MathExtras.h"
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +000025using namespace llvm;
26
Chris Lattner3e13b8c2008-01-02 23:42:30 +000027//===----------------------------------------------------------------------===//
28// CallSite Class
29//===----------------------------------------------------------------------===//
30
Gabor Greif1b9921a2009-01-11 22:33:22 +000031#define CALLSITE_DELEGATE_GETTER(METHOD) \
32 Instruction *II(getInstruction()); \
33 return isCall() \
34 ? cast<CallInst>(II)->METHOD \
35 : cast<InvokeInst>(II)->METHOD
36
37#define CALLSITE_DELEGATE_SETTER(METHOD) \
38 Instruction *II(getInstruction()); \
39 if (isCall()) \
40 cast<CallInst>(II)->METHOD; \
41 else \
42 cast<InvokeInst>(II)->METHOD
43
Duncan Sands85fab3a2008-02-18 17:32:13 +000044CallSite::CallSite(Instruction *C) {
45 assert((isa<CallInst>(C) || isa<InvokeInst>(C)) && "Not a call!");
Gabor Greif1b9921a2009-01-11 22:33:22 +000046 I.setPointer(C);
47 I.setInt(isa<CallInst>(C));
Duncan Sands85fab3a2008-02-18 17:32:13 +000048}
Sandeep Patel68c5f472009-09-02 08:44:58 +000049CallingConv::ID CallSite::getCallingConv() const {
Gabor Greif1b9921a2009-01-11 22:33:22 +000050 CALLSITE_DELEGATE_GETTER(getCallingConv());
Chris Lattnerf7b6d312005-05-06 20:26:43 +000051}
Sandeep Patel68c5f472009-09-02 08:44:58 +000052void CallSite::setCallingConv(CallingConv::ID CC) {
Gabor Greif1b9921a2009-01-11 22:33:22 +000053 CALLSITE_DELEGATE_SETTER(setCallingConv(CC));
Chris Lattnerf7b6d312005-05-06 20:26:43 +000054}
Devang Patel4c758ea2008-09-25 21:00:45 +000055const AttrListPtr &CallSite::getAttributes() const {
Gabor Greif1b9921a2009-01-11 22:33:22 +000056 CALLSITE_DELEGATE_GETTER(getAttributes());
Duncan Sandsad0ea2d2007-11-27 13:23:08 +000057}
Devang Patel4c758ea2008-09-25 21:00:45 +000058void CallSite::setAttributes(const AttrListPtr &PAL) {
Gabor Greif1b9921a2009-01-11 22:33:22 +000059 CALLSITE_DELEGATE_SETTER(setAttributes(PAL));
Duncan Sandsad0ea2d2007-11-27 13:23:08 +000060}
Devang Patelba3fa6c2008-09-23 23:03:40 +000061bool CallSite::paramHasAttr(uint16_t i, Attributes attr) const {
Gabor Greif1b9921a2009-01-11 22:33:22 +000062 CALLSITE_DELEGATE_GETTER(paramHasAttr(i, attr));
Duncan Sands5208d1a2007-11-28 17:07:01 +000063}
Dale Johanneseneabc5f32008-02-22 17:49:45 +000064uint16_t CallSite::getParamAlignment(uint16_t i) const {
Gabor Greif1b9921a2009-01-11 22:33:22 +000065 CALLSITE_DELEGATE_GETTER(getParamAlignment(i));
Dale Johanneseneabc5f32008-02-22 17:49:45 +000066}
Duncan Sands38ef3a82007-12-03 20:06:50 +000067bool CallSite::doesNotAccessMemory() const {
Gabor Greif1b9921a2009-01-11 22:33:22 +000068 CALLSITE_DELEGATE_GETTER(doesNotAccessMemory());
Duncan Sands38ef3a82007-12-03 20:06:50 +000069}
Duncan Sands78c88722008-07-08 08:38:44 +000070void CallSite::setDoesNotAccessMemory(bool doesNotAccessMemory) {
Gabor Greif1b9921a2009-01-11 22:33:22 +000071 CALLSITE_DELEGATE_SETTER(setDoesNotAccessMemory(doesNotAccessMemory));
Duncan Sands78c88722008-07-08 08:38:44 +000072}
Duncan Sands38ef3a82007-12-03 20:06:50 +000073bool CallSite::onlyReadsMemory() const {
Gabor Greif1b9921a2009-01-11 22:33:22 +000074 CALLSITE_DELEGATE_GETTER(onlyReadsMemory());
Duncan Sands38ef3a82007-12-03 20:06:50 +000075}
Duncan Sands78c88722008-07-08 08:38:44 +000076void CallSite::setOnlyReadsMemory(bool onlyReadsMemory) {
Gabor Greif1b9921a2009-01-11 22:33:22 +000077 CALLSITE_DELEGATE_SETTER(setOnlyReadsMemory(onlyReadsMemory));
Duncan Sands78c88722008-07-08 08:38:44 +000078}
79bool CallSite::doesNotReturn() const {
Gabor Greif1b9921a2009-01-11 22:33:22 +000080 CALLSITE_DELEGATE_GETTER(doesNotReturn());
Duncan Sands78c88722008-07-08 08:38:44 +000081}
82void CallSite::setDoesNotReturn(bool doesNotReturn) {
Gabor Greif1b9921a2009-01-11 22:33:22 +000083 CALLSITE_DELEGATE_SETTER(setDoesNotReturn(doesNotReturn));
Duncan Sands78c88722008-07-08 08:38:44 +000084}
Duncan Sands3353ed02007-12-18 09:59:50 +000085bool CallSite::doesNotThrow() const {
Gabor Greif1b9921a2009-01-11 22:33:22 +000086 CALLSITE_DELEGATE_GETTER(doesNotThrow());
Duncan Sands8e4847e2007-12-16 15:51:49 +000087}
Duncan Sandsaa31b922007-12-19 21:13:37 +000088void CallSite::setDoesNotThrow(bool doesNotThrow) {
Gabor Greif1b9921a2009-01-11 22:33:22 +000089 CALLSITE_DELEGATE_SETTER(setDoesNotThrow(doesNotThrow));
Duncan Sandsaa31b922007-12-19 21:13:37 +000090}
Chris Lattnerf7b6d312005-05-06 20:26:43 +000091
Matthijs Kooijmanb0dffd62008-06-05 08:04:58 +000092bool CallSite::hasArgument(const Value *Arg) const {
Matthijs Kooijmand901e582008-06-04 16:31:12 +000093 for (arg_iterator AI = this->arg_begin(), E = this->arg_end(); AI != E; ++AI)
94 if (AI->get() == Arg)
95 return true;
96 return false;
97}
98
Gabor Greif1b9921a2009-01-11 22:33:22 +000099#undef CALLSITE_DELEGATE_GETTER
100#undef CALLSITE_DELEGATE_SETTER
101
Gordon Henriksen14a55692007-12-10 02:14:30 +0000102//===----------------------------------------------------------------------===//
103// TerminatorInst Class
104//===----------------------------------------------------------------------===//
105
106// Out of line virtual method, so the vtable, etc has a home.
107TerminatorInst::~TerminatorInst() {
108}
109
Gabor Greiff6caff662008-05-10 08:32:32 +0000110//===----------------------------------------------------------------------===//
111// UnaryInstruction Class
112//===----------------------------------------------------------------------===//
113
Gordon Henriksen14a55692007-12-10 02:14:30 +0000114// Out of line virtual method, so the vtable, etc has a home.
115UnaryInstruction::~UnaryInstruction() {
116}
117
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000118//===----------------------------------------------------------------------===//
Chris Lattner88107952008-12-29 00:12:50 +0000119// SelectInst Class
120//===----------------------------------------------------------------------===//
121
122/// areInvalidOperands - Return a string if the specified operands are invalid
123/// for a select operation, otherwise return null.
124const char *SelectInst::areInvalidOperands(Value *Op0, Value *Op1, Value *Op2) {
125 if (Op1->getType() != Op2->getType())
126 return "both values to select must have same type";
127
128 if (const VectorType *VT = dyn_cast<VectorType>(Op0->getType())) {
129 // Vector select.
Owen Anderson55f1c092009-08-13 21:58:54 +0000130 if (VT->getElementType() != Type::getInt1Ty(Op0->getContext()))
Chris Lattner88107952008-12-29 00:12:50 +0000131 return "vector select condition element type must be i1";
132 const VectorType *ET = dyn_cast<VectorType>(Op1->getType());
133 if (ET == 0)
134 return "selected values for vector select must be vectors";
135 if (ET->getNumElements() != VT->getNumElements())
136 return "vector select requires selected vectors to have "
137 "the same vector length as select condition";
Owen Anderson55f1c092009-08-13 21:58:54 +0000138 } else if (Op0->getType() != Type::getInt1Ty(Op0->getContext())) {
Chris Lattner88107952008-12-29 00:12:50 +0000139 return "select condition must be i1 or <n x i1>";
140 }
141 return 0;
142}
143
144
145//===----------------------------------------------------------------------===//
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000146// PHINode Class
147//===----------------------------------------------------------------------===//
148
149PHINode::PHINode(const PHINode &PN)
150 : Instruction(PN.getType(), Instruction::PHI,
Gabor Greiff6caff662008-05-10 08:32:32 +0000151 allocHungoffUses(PN.getNumOperands()), PN.getNumOperands()),
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000152 ReservedSpace(PN.getNumOperands()) {
153 Use *OL = OperandList;
154 for (unsigned i = 0, e = PN.getNumOperands(); i != e; i+=2) {
Gabor Greif2d3024d2008-05-26 21:33:52 +0000155 OL[i] = PN.getOperand(i);
156 OL[i+1] = PN.getOperand(i+1);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000157 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000158 SubclassOptionalData = PN.SubclassOptionalData;
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000159}
160
Gordon Henriksen14a55692007-12-10 02:14:30 +0000161PHINode::~PHINode() {
Chris Lattner7d6aac82008-06-16 04:02:40 +0000162 if (OperandList)
163 dropHungoffUses(OperandList);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000164}
165
166// removeIncomingValue - Remove an incoming value. This is useful if a
167// predecessor basic block is deleted.
168Value *PHINode::removeIncomingValue(unsigned Idx, bool DeletePHIIfEmpty) {
169 unsigned NumOps = getNumOperands();
170 Use *OL = OperandList;
171 assert(Idx*2 < NumOps && "BB not in PHI node!");
172 Value *Removed = OL[Idx*2];
173
174 // Move everything after this operand down.
175 //
176 // FIXME: we could just swap with the end of the list, then erase. However,
177 // client might not expect this to happen. The code as it is thrashes the
178 // use/def lists, which is kinda lame.
179 for (unsigned i = (Idx+1)*2; i != NumOps; i += 2) {
180 OL[i-2] = OL[i];
181 OL[i-2+1] = OL[i+1];
182 }
183
184 // Nuke the last value.
185 OL[NumOps-2].set(0);
186 OL[NumOps-2+1].set(0);
187 NumOperands = NumOps-2;
188
189 // If the PHI node is dead, because it has zero entries, nuke it now.
190 if (NumOps == 2 && DeletePHIIfEmpty) {
191 // If anyone is using this PHI, make them use a dummy value instead...
Owen Andersonb292b8c2009-07-30 23:03:37 +0000192 replaceAllUsesWith(UndefValue::get(getType()));
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000193 eraseFromParent();
194 }
195 return Removed;
196}
197
198/// resizeOperands - resize operands - This adjusts the length of the operands
199/// list according to the following behavior:
200/// 1. If NumOps == 0, grow the operand list in response to a push_back style
201/// of operation. This grows the number of ops by 1.5 times.
202/// 2. If NumOps > NumOperands, reserve space for NumOps operands.
203/// 3. If NumOps == NumOperands, trim the reserved space.
204///
205void PHINode::resizeOperands(unsigned NumOps) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000206 unsigned e = getNumOperands();
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000207 if (NumOps == 0) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000208 NumOps = e*3/2;
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000209 if (NumOps < 4) NumOps = 4; // 4 op PHI nodes are VERY common.
210 } else if (NumOps*2 > NumOperands) {
211 // No resize needed.
212 if (ReservedSpace >= NumOps) return;
213 } else if (NumOps == NumOperands) {
214 if (ReservedSpace == NumOps) return;
215 } else {
Misha Brukmanb1c93172005-04-21 23:48:37 +0000216 return;
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000217 }
218
219 ReservedSpace = NumOps;
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000220 Use *OldOps = OperandList;
Gabor Greiff6caff662008-05-10 08:32:32 +0000221 Use *NewOps = allocHungoffUses(NumOps);
Dan Gohman031f0bb2008-06-23 16:45:24 +0000222 std::copy(OldOps, OldOps + e, NewOps);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000223 OperandList = NewOps;
Gabor Greiff6caff662008-05-10 08:32:32 +0000224 if (OldOps) Use::zap(OldOps, OldOps + e, true);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000225}
226
Nate Begemanb3923212005-08-04 23:24:19 +0000227/// hasConstantValue - If the specified PHI node always merges together the same
228/// value, return the value, otherwise return null.
229///
Dan Gohman22571482009-09-03 15:34:35 +0000230/// If the PHI has undef operands, but all the rest of the operands are
231/// some unique value, return that value if it can be proved that the
232/// value dominates the PHI. If DT is null, use a conservative check,
233/// otherwise use DT to test for dominance.
234///
235Value *PHINode::hasConstantValue(DominatorTree *DT) const {
Nate Begemanb3923212005-08-04 23:24:19 +0000236 // If the PHI node only has one incoming value, eliminate the PHI node...
Anton Korobeynikov579f0712008-02-20 11:08:44 +0000237 if (getNumIncomingValues() == 1) {
Chris Lattner6e709c12005-08-05 15:37:31 +0000238 if (getIncomingValue(0) != this) // not X = phi X
239 return getIncomingValue(0);
240 else
Owen Andersonb292b8c2009-07-30 23:03:37 +0000241 return UndefValue::get(getType()); // Self cycle is dead.
Anton Korobeynikov579f0712008-02-20 11:08:44 +0000242 }
Chris Lattner6e709c12005-08-05 15:37:31 +0000243
Nate Begemanb3923212005-08-04 23:24:19 +0000244 // Otherwise if all of the incoming values are the same for the PHI, replace
245 // the PHI node with the incoming value.
246 //
247 Value *InVal = 0;
Chris Lattnerbcd8d2c2005-08-05 01:00:58 +0000248 bool HasUndefInput = false;
Nate Begemanb3923212005-08-04 23:24:19 +0000249 for (unsigned i = 0, e = getNumIncomingValues(); i != e; ++i)
Anton Korobeynikov579f0712008-02-20 11:08:44 +0000250 if (isa<UndefValue>(getIncomingValue(i))) {
Chris Lattnerbcd8d2c2005-08-05 01:00:58 +0000251 HasUndefInput = true;
Anton Korobeynikov579f0712008-02-20 11:08:44 +0000252 } else if (getIncomingValue(i) != this) { // Not the PHI node itself...
Nate Begemanb3923212005-08-04 23:24:19 +0000253 if (InVal && getIncomingValue(i) != InVal)
254 return 0; // Not the same, bail out.
255 else
256 InVal = getIncomingValue(i);
Anton Korobeynikov579f0712008-02-20 11:08:44 +0000257 }
Nate Begemanb3923212005-08-04 23:24:19 +0000258
259 // The only case that could cause InVal to be null is if we have a PHI node
260 // that only has entries for itself. In this case, there is no entry into the
261 // loop, so kill the PHI.
262 //
Owen Andersonb292b8c2009-07-30 23:03:37 +0000263 if (InVal == 0) InVal = UndefValue::get(getType());
Nate Begemanb3923212005-08-04 23:24:19 +0000264
Chris Lattnerbcd8d2c2005-08-05 01:00:58 +0000265 // If we have a PHI node like phi(X, undef, X), where X is defined by some
266 // instruction, we cannot always return X as the result of the PHI node. Only
267 // do this if X is not an instruction (thus it must dominate the PHI block),
268 // or if the client is prepared to deal with this possibility.
Dan Gohman22571482009-09-03 15:34:35 +0000269 if (HasUndefInput)
270 if (Instruction *IV = dyn_cast<Instruction>(InVal)) {
271 if (DT) {
272 // We have a DominatorTree. Do a precise test.
273 if (!DT->dominates(IV, this))
274 return 0;
275 } else {
276 // If it's in the entry block, it dominates everything.
277 if (IV->getParent() != &IV->getParent()->getParent()->getEntryBlock() ||
278 isa<InvokeInst>(IV))
279 return 0; // Cannot guarantee that InVal dominates this PHINode.
280 }
281 }
Chris Lattnerbcd8d2c2005-08-05 01:00:58 +0000282
Nate Begemanb3923212005-08-04 23:24:19 +0000283 // All of the incoming values are the same, return the value now.
284 return InVal;
285}
286
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000287
288//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000289// CallInst Implementation
290//===----------------------------------------------------------------------===//
291
Gordon Henriksen14a55692007-12-10 02:14:30 +0000292CallInst::~CallInst() {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000293}
294
Chris Lattner054ba2c2007-02-13 00:58:44 +0000295void CallInst::init(Value *Func, Value* const *Params, unsigned NumParams) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000296 assert(NumOperands == NumParams+1 && "NumOperands not set up?");
297 Use *OL = OperandList;
Gabor Greif2d3024d2008-05-26 21:33:52 +0000298 OL[0] = Func;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000299
Misha Brukmanb1c93172005-04-21 23:48:37 +0000300 const FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000301 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000302 FTy = FTy; // silence warning.
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000303
Chris Lattner054ba2c2007-02-13 00:58:44 +0000304 assert((NumParams == FTy->getNumParams() ||
305 (FTy->isVarArg() && NumParams > FTy->getNumParams())) &&
Chris Lattner667a0562006-05-03 00:48:22 +0000306 "Calling a function with bad signature!");
Chris Lattner054ba2c2007-02-13 00:58:44 +0000307 for (unsigned i = 0; i != NumParams; ++i) {
Chris Lattner667a0562006-05-03 00:48:22 +0000308 assert((i >= FTy->getNumParams() ||
309 FTy->getParamType(i) == Params[i]->getType()) &&
310 "Calling a function with a bad signature!");
Gabor Greif2d3024d2008-05-26 21:33:52 +0000311 OL[i+1] = Params[i];
Chris Lattner667a0562006-05-03 00:48:22 +0000312 }
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000313}
314
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000315void CallInst::init(Value *Func, Value *Actual1, Value *Actual2) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000316 assert(NumOperands == 3 && "NumOperands not set up?");
317 Use *OL = OperandList;
Gabor Greif2d3024d2008-05-26 21:33:52 +0000318 OL[0] = Func;
319 OL[1] = Actual1;
320 OL[2] = Actual2;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000321
322 const FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000323 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000324 FTy = FTy; // silence warning.
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000325
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000326 assert((FTy->getNumParams() == 2 ||
Chris Lattner667a0562006-05-03 00:48:22 +0000327 (FTy->isVarArg() && FTy->getNumParams() < 2)) &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000328 "Calling a function with bad signature");
Chris Lattner667a0562006-05-03 00:48:22 +0000329 assert((0 >= FTy->getNumParams() ||
330 FTy->getParamType(0) == Actual1->getType()) &&
331 "Calling a function with a bad signature!");
332 assert((1 >= FTy->getNumParams() ||
333 FTy->getParamType(1) == Actual2->getType()) &&
334 "Calling a function with a bad signature!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000335}
336
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000337void CallInst::init(Value *Func, Value *Actual) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000338 assert(NumOperands == 2 && "NumOperands not set up?");
339 Use *OL = OperandList;
Gabor Greif2d3024d2008-05-26 21:33:52 +0000340 OL[0] = Func;
341 OL[1] = Actual;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000342
343 const FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000344 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000345 FTy = FTy; // silence warning.
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000346
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000347 assert((FTy->getNumParams() == 1 ||
348 (FTy->isVarArg() && FTy->getNumParams() == 0)) &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000349 "Calling a function with bad signature");
Chris Lattner667a0562006-05-03 00:48:22 +0000350 assert((0 == FTy->getNumParams() ||
351 FTy->getParamType(0) == Actual->getType()) &&
352 "Calling a function with a bad signature!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000353}
354
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000355void CallInst::init(Value *Func) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000356 assert(NumOperands == 1 && "NumOperands not set up?");
357 Use *OL = OperandList;
Gabor Greif2d3024d2008-05-26 21:33:52 +0000358 OL[0] = Func;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000359
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000360 const FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000361 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000362 FTy = FTy; // silence warning.
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000363
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000364 assert(FTy->getNumParams() == 0 && "Calling a function with bad signature");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000365}
366
Daniel Dunbar4975db62009-07-25 04:41:11 +0000367CallInst::CallInst(Value *Func, Value* Actual, const Twine &Name,
Chris Lattner2195fc42007-02-24 00:55:48 +0000368 Instruction *InsertBefore)
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000369 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
370 ->getElementType())->getReturnType(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000371 Instruction::Call,
372 OperandTraits<CallInst>::op_end(this) - 2,
373 2, InsertBefore) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000374 init(Func, Actual);
Chris Lattner2195fc42007-02-24 00:55:48 +0000375 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000376}
377
Daniel Dunbar4975db62009-07-25 04:41:11 +0000378CallInst::CallInst(Value *Func, Value* Actual, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000379 BasicBlock *InsertAtEnd)
380 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
381 ->getElementType())->getReturnType(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000382 Instruction::Call,
383 OperandTraits<CallInst>::op_end(this) - 2,
384 2, InsertAtEnd) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000385 init(Func, Actual);
Chris Lattner2195fc42007-02-24 00:55:48 +0000386 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000387}
Daniel Dunbar4975db62009-07-25 04:41:11 +0000388CallInst::CallInst(Value *Func, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000389 Instruction *InsertBefore)
390 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
391 ->getElementType())->getReturnType(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000392 Instruction::Call,
393 OperandTraits<CallInst>::op_end(this) - 1,
394 1, InsertBefore) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000395 init(Func);
Chris Lattner2195fc42007-02-24 00:55:48 +0000396 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000397}
398
Daniel Dunbar4975db62009-07-25 04:41:11 +0000399CallInst::CallInst(Value *Func, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000400 BasicBlock *InsertAtEnd)
401 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
402 ->getElementType())->getReturnType(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000403 Instruction::Call,
404 OperandTraits<CallInst>::op_end(this) - 1,
405 1, InsertAtEnd) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000406 init(Func);
Chris Lattner2195fc42007-02-24 00:55:48 +0000407 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000408}
409
Misha Brukmanb1c93172005-04-21 23:48:37 +0000410CallInst::CallInst(const CallInst &CI)
Gabor Greiff6caff662008-05-10 08:32:32 +0000411 : Instruction(CI.getType(), Instruction::Call,
412 OperandTraits<CallInst>::op_end(this) - CI.getNumOperands(),
Chris Lattner8a923e72008-03-12 17:45:29 +0000413 CI.getNumOperands()) {
Devang Patel4c758ea2008-09-25 21:00:45 +0000414 setAttributes(CI.getAttributes());
Chris Lattnerf7b6d312005-05-06 20:26:43 +0000415 SubclassData = CI.SubclassData;
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000416 Use *OL = OperandList;
417 Use *InOL = CI.OperandList;
418 for (unsigned i = 0, e = CI.getNumOperands(); i != e; ++i)
Gabor Greif2d3024d2008-05-26 21:33:52 +0000419 OL[i] = InOL[i];
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000420 SubclassOptionalData = CI.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000421}
422
Devang Patel4c758ea2008-09-25 21:00:45 +0000423void CallInst::addAttribute(unsigned i, Attributes attr) {
424 AttrListPtr PAL = getAttributes();
Eric Christopher901b1a72008-05-16 20:39:43 +0000425 PAL = PAL.addAttr(i, attr);
Devang Patel4c758ea2008-09-25 21:00:45 +0000426 setAttributes(PAL);
Eric Christopher901b1a72008-05-16 20:39:43 +0000427}
428
Devang Patel4c758ea2008-09-25 21:00:45 +0000429void CallInst::removeAttribute(unsigned i, Attributes attr) {
430 AttrListPtr PAL = getAttributes();
Duncan Sands78c88722008-07-08 08:38:44 +0000431 PAL = PAL.removeAttr(i, attr);
Devang Patel4c758ea2008-09-25 21:00:45 +0000432 setAttributes(PAL);
Duncan Sands78c88722008-07-08 08:38:44 +0000433}
434
Devang Patelba3fa6c2008-09-23 23:03:40 +0000435bool CallInst::paramHasAttr(unsigned i, Attributes attr) const {
Devang Patel4c758ea2008-09-25 21:00:45 +0000436 if (AttributeList.paramHasAttr(i, attr))
Duncan Sands5208d1a2007-11-28 17:07:01 +0000437 return true;
Duncan Sands8dfcd592007-11-29 08:30:15 +0000438 if (const Function *F = getCalledFunction())
Dale Johannesen89268bc2008-02-19 21:38:47 +0000439 return F->paramHasAttr(i, attr);
Duncan Sands8dfcd592007-11-29 08:30:15 +0000440 return false;
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000441}
442
Duncan Sands5208d1a2007-11-28 17:07:01 +0000443
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000444//===----------------------------------------------------------------------===//
445// InvokeInst Implementation
446//===----------------------------------------------------------------------===//
447
448void InvokeInst::init(Value *Fn, BasicBlock *IfNormal, BasicBlock *IfException,
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000449 Value* const *Args, unsigned NumArgs) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000450 assert(NumOperands == 3+NumArgs && "NumOperands not set up?");
Gabor Greif2d60e1e2009-09-03 02:02:59 +0000451 Use *OL = OperandList;
452 OL[0] = Fn;
453 OL[1] = IfNormal;
454 OL[2] = IfException;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000455 const FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000456 cast<FunctionType>(cast<PointerType>(Fn->getType())->getElementType());
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000457 FTy = FTy; // silence warning.
Misha Brukmanb1c93172005-04-21 23:48:37 +0000458
Anton Korobeynikov579f0712008-02-20 11:08:44 +0000459 assert(((NumArgs == FTy->getNumParams()) ||
460 (FTy->isVarArg() && NumArgs > FTy->getNumParams())) &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000461 "Calling a function with bad signature");
Misha Brukmanb1c93172005-04-21 23:48:37 +0000462
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000463 for (unsigned i = 0, e = NumArgs; i != e; i++) {
Chris Lattner667a0562006-05-03 00:48:22 +0000464 assert((i >= FTy->getNumParams() ||
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000465 FTy->getParamType(i) == Args[i]->getType()) &&
Chris Lattner667a0562006-05-03 00:48:22 +0000466 "Invoking a function with a bad signature!");
467
Gabor Greif2d60e1e2009-09-03 02:02:59 +0000468 OL[i+3] = Args[i];
Chris Lattner667a0562006-05-03 00:48:22 +0000469 }
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000470}
471
Misha Brukmanb1c93172005-04-21 23:48:37 +0000472InvokeInst::InvokeInst(const InvokeInst &II)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000473 : TerminatorInst(II.getType(), Instruction::Invoke,
Gabor Greif697e94c2008-05-15 10:04:30 +0000474 OperandTraits<InvokeInst>::op_end(this)
475 - II.getNumOperands(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000476 II.getNumOperands()) {
Devang Patel4c758ea2008-09-25 21:00:45 +0000477 setAttributes(II.getAttributes());
Chris Lattnerf7b6d312005-05-06 20:26:43 +0000478 SubclassData = II.SubclassData;
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000479 Use *OL = OperandList, *InOL = II.OperandList;
480 for (unsigned i = 0, e = II.getNumOperands(); i != e; ++i)
Gabor Greif2d3024d2008-05-26 21:33:52 +0000481 OL[i] = InOL[i];
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000482 SubclassOptionalData = II.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000483}
484
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000485BasicBlock *InvokeInst::getSuccessorV(unsigned idx) const {
486 return getSuccessor(idx);
487}
488unsigned InvokeInst::getNumSuccessorsV() const {
489 return getNumSuccessors();
490}
491void InvokeInst::setSuccessorV(unsigned idx, BasicBlock *B) {
492 return setSuccessor(idx, B);
493}
494
Devang Patelba3fa6c2008-09-23 23:03:40 +0000495bool InvokeInst::paramHasAttr(unsigned i, Attributes attr) const {
Devang Patel4c758ea2008-09-25 21:00:45 +0000496 if (AttributeList.paramHasAttr(i, attr))
Duncan Sands5208d1a2007-11-28 17:07:01 +0000497 return true;
Duncan Sands8dfcd592007-11-29 08:30:15 +0000498 if (const Function *F = getCalledFunction())
Dale Johannesen89268bc2008-02-19 21:38:47 +0000499 return F->paramHasAttr(i, attr);
Duncan Sands8dfcd592007-11-29 08:30:15 +0000500 return false;
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000501}
502
Devang Patel4c758ea2008-09-25 21:00:45 +0000503void InvokeInst::addAttribute(unsigned i, Attributes attr) {
504 AttrListPtr PAL = getAttributes();
Eric Christopher901b1a72008-05-16 20:39:43 +0000505 PAL = PAL.addAttr(i, attr);
Devang Patel4c758ea2008-09-25 21:00:45 +0000506 setAttributes(PAL);
Eric Christopher901b1a72008-05-16 20:39:43 +0000507}
508
Devang Patel4c758ea2008-09-25 21:00:45 +0000509void InvokeInst::removeAttribute(unsigned i, Attributes attr) {
510 AttrListPtr PAL = getAttributes();
Duncan Sands78c88722008-07-08 08:38:44 +0000511 PAL = PAL.removeAttr(i, attr);
Devang Patel4c758ea2008-09-25 21:00:45 +0000512 setAttributes(PAL);
Duncan Sandsaa31b922007-12-19 21:13:37 +0000513}
514
Duncan Sands5208d1a2007-11-28 17:07:01 +0000515
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000516//===----------------------------------------------------------------------===//
517// ReturnInst Implementation
518//===----------------------------------------------------------------------===//
519
Chris Lattner2195fc42007-02-24 00:55:48 +0000520ReturnInst::ReturnInst(const ReturnInst &RI)
Owen Anderson55f1c092009-08-13 21:58:54 +0000521 : TerminatorInst(Type::getVoidTy(RI.getContext()), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000522 OperandTraits<ReturnInst>::op_end(this) -
523 RI.getNumOperands(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000524 RI.getNumOperands()) {
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000525 if (RI.getNumOperands())
Gabor Greif2d3024d2008-05-26 21:33:52 +0000526 Op<0>() = RI.Op<0>();
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000527 SubclassOptionalData = RI.SubclassOptionalData;
Chris Lattner2195fc42007-02-24 00:55:48 +0000528}
529
Owen Anderson55f1c092009-08-13 21:58:54 +0000530ReturnInst::ReturnInst(LLVMContext &C, Value *retVal, Instruction *InsertBefore)
531 : TerminatorInst(Type::getVoidTy(C), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000532 OperandTraits<ReturnInst>::op_end(this) - !!retVal, !!retVal,
533 InsertBefore) {
Devang Patelc38eb522008-02-26 18:49:29 +0000534 if (retVal)
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000535 Op<0>() = retVal;
Chris Lattner2195fc42007-02-24 00:55:48 +0000536}
Owen Anderson55f1c092009-08-13 21:58:54 +0000537ReturnInst::ReturnInst(LLVMContext &C, Value *retVal, BasicBlock *InsertAtEnd)
538 : TerminatorInst(Type::getVoidTy(C), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000539 OperandTraits<ReturnInst>::op_end(this) - !!retVal, !!retVal,
540 InsertAtEnd) {
Devang Patelc38eb522008-02-26 18:49:29 +0000541 if (retVal)
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000542 Op<0>() = retVal;
Chris Lattner2195fc42007-02-24 00:55:48 +0000543}
Owen Anderson55f1c092009-08-13 21:58:54 +0000544ReturnInst::ReturnInst(LLVMContext &Context, BasicBlock *InsertAtEnd)
545 : TerminatorInst(Type::getVoidTy(Context), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000546 OperandTraits<ReturnInst>::op_end(this), 0, InsertAtEnd) {
Devang Patel59643e52008-02-23 00:35:18 +0000547}
548
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000549unsigned ReturnInst::getNumSuccessorsV() const {
550 return getNumSuccessors();
551}
552
Devang Patelae682fb2008-02-26 17:56:20 +0000553/// Out-of-line ReturnInst method, put here so the C++ compiler can choose to
554/// emit the vtable for the class in this translation unit.
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000555void ReturnInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000556 llvm_unreachable("ReturnInst has no successors!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000557}
558
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000559BasicBlock *ReturnInst::getSuccessorV(unsigned idx) const {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000560 llvm_unreachable("ReturnInst has no successors!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000561 return 0;
562}
563
Devang Patel59643e52008-02-23 00:35:18 +0000564ReturnInst::~ReturnInst() {
Devang Patel59643e52008-02-23 00:35:18 +0000565}
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000566
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000567//===----------------------------------------------------------------------===//
568// UnwindInst Implementation
569//===----------------------------------------------------------------------===//
570
Owen Anderson55f1c092009-08-13 21:58:54 +0000571UnwindInst::UnwindInst(LLVMContext &Context, Instruction *InsertBefore)
572 : TerminatorInst(Type::getVoidTy(Context), Instruction::Unwind,
573 0, 0, InsertBefore) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000574}
Owen Anderson55f1c092009-08-13 21:58:54 +0000575UnwindInst::UnwindInst(LLVMContext &Context, BasicBlock *InsertAtEnd)
576 : TerminatorInst(Type::getVoidTy(Context), Instruction::Unwind,
577 0, 0, InsertAtEnd) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000578}
579
580
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000581unsigned UnwindInst::getNumSuccessorsV() const {
582 return getNumSuccessors();
583}
584
585void UnwindInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000586 llvm_unreachable("UnwindInst has no successors!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000587}
588
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000589BasicBlock *UnwindInst::getSuccessorV(unsigned idx) const {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000590 llvm_unreachable("UnwindInst has no successors!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000591 return 0;
592}
593
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000594//===----------------------------------------------------------------------===//
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000595// UnreachableInst Implementation
596//===----------------------------------------------------------------------===//
597
Owen Anderson55f1c092009-08-13 21:58:54 +0000598UnreachableInst::UnreachableInst(LLVMContext &Context,
599 Instruction *InsertBefore)
600 : TerminatorInst(Type::getVoidTy(Context), Instruction::Unreachable,
601 0, 0, InsertBefore) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000602}
Owen Anderson55f1c092009-08-13 21:58:54 +0000603UnreachableInst::UnreachableInst(LLVMContext &Context, BasicBlock *InsertAtEnd)
604 : TerminatorInst(Type::getVoidTy(Context), Instruction::Unreachable,
605 0, 0, InsertAtEnd) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000606}
607
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000608unsigned UnreachableInst::getNumSuccessorsV() const {
609 return getNumSuccessors();
610}
611
612void UnreachableInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000613 llvm_unreachable("UnwindInst has no successors!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000614}
615
616BasicBlock *UnreachableInst::getSuccessorV(unsigned idx) const {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000617 llvm_unreachable("UnwindInst has no successors!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000618 return 0;
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000619}
620
621//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000622// BranchInst Implementation
623//===----------------------------------------------------------------------===//
624
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000625void BranchInst::AssertOK() {
626 if (isConditional())
Owen Anderson55f1c092009-08-13 21:58:54 +0000627 assert(getCondition()->getType() == Type::getInt1Ty(getContext()) &&
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000628 "May only branch on boolean predicates!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000629}
630
Chris Lattner2195fc42007-02-24 00:55:48 +0000631BranchInst::BranchInst(BasicBlock *IfTrue, Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +0000632 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000633 OperandTraits<BranchInst>::op_end(this) - 1,
634 1, InsertBefore) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000635 assert(IfTrue != 0 && "Branch destination may not be null!");
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000636 Op<-1>() = IfTrue;
Chris Lattner2195fc42007-02-24 00:55:48 +0000637}
638BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
639 Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +0000640 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000641 OperandTraits<BranchInst>::op_end(this) - 3,
642 3, InsertBefore) {
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000643 Op<-1>() = IfTrue;
644 Op<-2>() = IfFalse;
645 Op<-3>() = Cond;
Chris Lattner2195fc42007-02-24 00:55:48 +0000646#ifndef NDEBUG
647 AssertOK();
648#endif
649}
650
651BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +0000652 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000653 OperandTraits<BranchInst>::op_end(this) - 1,
654 1, InsertAtEnd) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000655 assert(IfTrue != 0 && "Branch destination may not be null!");
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000656 Op<-1>() = IfTrue;
Chris Lattner2195fc42007-02-24 00:55:48 +0000657}
658
659BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
660 BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +0000661 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000662 OperandTraits<BranchInst>::op_end(this) - 3,
663 3, InsertAtEnd) {
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000664 Op<-1>() = IfTrue;
665 Op<-2>() = IfFalse;
666 Op<-3>() = Cond;
Chris Lattner2195fc42007-02-24 00:55:48 +0000667#ifndef NDEBUG
668 AssertOK();
669#endif
670}
671
672
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000673BranchInst::BranchInst(const BranchInst &BI) :
Owen Anderson55f1c092009-08-13 21:58:54 +0000674 TerminatorInst(Type::getVoidTy(BI.getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000675 OperandTraits<BranchInst>::op_end(this) - BI.getNumOperands(),
676 BI.getNumOperands()) {
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000677 Op<-1>() = BI.Op<-1>();
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000678 if (BI.getNumOperands() != 1) {
679 assert(BI.getNumOperands() == 3 && "BR can have 1 or 3 operands!");
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000680 Op<-3>() = BI.Op<-3>();
681 Op<-2>() = BI.Op<-2>();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000682 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000683 SubclassOptionalData = BI.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000684}
685
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000686
687Use* Use::getPrefix() {
688 PointerIntPair<Use**, 2, PrevPtrTag> &PotentialPrefix(this[-1].Prev);
689 if (PotentialPrefix.getOpaqueValue())
690 return 0;
691
692 return reinterpret_cast<Use*>((char*)&PotentialPrefix + 1);
693}
694
695BranchInst::~BranchInst() {
696 if (NumOperands == 1) {
697 if (Use *Prefix = OperandList->getPrefix()) {
698 Op<-1>() = 0;
699 //
700 // mark OperandList to have a special value for scrutiny
701 // by baseclass destructors and operator delete
702 OperandList = Prefix;
703 } else {
704 NumOperands = 3;
705 OperandList = op_begin();
706 }
707 }
708}
709
710
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000711BasicBlock *BranchInst::getSuccessorV(unsigned idx) const {
712 return getSuccessor(idx);
713}
714unsigned BranchInst::getNumSuccessorsV() const {
715 return getNumSuccessors();
716}
717void BranchInst::setSuccessorV(unsigned idx, BasicBlock *B) {
718 setSuccessor(idx, B);
719}
720
721
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000722//===----------------------------------------------------------------------===//
723// AllocationInst Implementation
724//===----------------------------------------------------------------------===//
725
Owen Andersonb6b25302009-07-14 23:09:55 +0000726static Value *getAISize(LLVMContext &Context, Value *Amt) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000727 if (!Amt)
Owen Anderson55f1c092009-08-13 21:58:54 +0000728 Amt = ConstantInt::get(Type::getInt32Ty(Context), 1);
Chris Lattnerbb7ff662006-05-10 04:32:43 +0000729 else {
730 assert(!isa<BasicBlock>(Amt) &&
Chris Lattner9b6ec772007-10-18 16:10:48 +0000731 "Passed basic block into allocation size parameter! Use other ctor");
Owen Anderson55f1c092009-08-13 21:58:54 +0000732 assert(Amt->getType() == Type::getInt32Ty(Context) &&
Reid Spencer7e16e232007-01-26 06:30:34 +0000733 "Malloc/Allocation array size is not a 32-bit integer!");
Chris Lattnerbb7ff662006-05-10 04:32:43 +0000734 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000735 return Amt;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000736}
737
Owen Anderson4fdeba92009-07-15 23:53:25 +0000738AllocationInst::AllocationInst(const Type *Ty, Value *ArraySize, unsigned iTy,
Daniel Dunbar4975db62009-07-25 04:41:11 +0000739 unsigned Align, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000740 Instruction *InsertBefore)
Owen Anderson4056ca92009-07-29 22:17:13 +0000741 : UnaryInstruction(PointerType::getUnqual(Ty), iTy,
Owen Anderson4fdeba92009-07-15 23:53:25 +0000742 getAISize(Ty->getContext(), ArraySize), InsertBefore) {
Dan Gohmanaa583d72008-03-24 16:55:58 +0000743 setAlignment(Align);
Owen Anderson55f1c092009-08-13 21:58:54 +0000744 assert(Ty != Type::getVoidTy(Ty->getContext()) && "Cannot allocate void!");
Chris Lattner0f048162007-02-13 07:54:42 +0000745 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000746}
747
Owen Anderson4fdeba92009-07-15 23:53:25 +0000748AllocationInst::AllocationInst(const Type *Ty, Value *ArraySize, unsigned iTy,
Daniel Dunbar4975db62009-07-25 04:41:11 +0000749 unsigned Align, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000750 BasicBlock *InsertAtEnd)
Owen Anderson4056ca92009-07-29 22:17:13 +0000751 : UnaryInstruction(PointerType::getUnqual(Ty), iTy,
Owen Anderson4fdeba92009-07-15 23:53:25 +0000752 getAISize(Ty->getContext(), ArraySize), InsertAtEnd) {
Dan Gohmanaa583d72008-03-24 16:55:58 +0000753 setAlignment(Align);
Owen Anderson55f1c092009-08-13 21:58:54 +0000754 assert(Ty != Type::getVoidTy(Ty->getContext()) && "Cannot allocate void!");
Chris Lattner0f048162007-02-13 07:54:42 +0000755 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000756}
757
Gordon Henriksen14a55692007-12-10 02:14:30 +0000758// Out of line virtual method, so the vtable, etc has a home.
759AllocationInst::~AllocationInst() {
760}
761
Dan Gohmanaa583d72008-03-24 16:55:58 +0000762void AllocationInst::setAlignment(unsigned Align) {
763 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
764 SubclassData = Log2_32(Align) + 1;
765 assert(getAlignment() == Align && "Alignment representation error!");
766}
767
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000768bool AllocationInst::isArrayAllocation() const {
Reid Spencera9e6e312007-03-01 20:27:41 +0000769 if (ConstantInt *CI = dyn_cast<ConstantInt>(getOperand(0)))
770 return CI->getZExtValue() != 1;
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000771 return true;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000772}
773
774const Type *AllocationInst::getAllocatedType() const {
775 return getType()->getElementType();
776}
777
Chris Lattner8b291e62008-11-26 02:54:17 +0000778/// isStaticAlloca - Return true if this alloca is in the entry block of the
779/// function and is a constant size. If so, the code generator will fold it
780/// into the prolog/epilog code, so it is basically free.
781bool AllocaInst::isStaticAlloca() const {
782 // Must be constant size.
783 if (!isa<ConstantInt>(getArraySize())) return false;
784
785 // Must be in the entry block.
786 const BasicBlock *Parent = getParent();
787 return Parent == &Parent->getParent()->front();
788}
789
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000790//===----------------------------------------------------------------------===//
791// FreeInst Implementation
792//===----------------------------------------------------------------------===//
793
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000794void FreeInst::AssertOK() {
795 assert(isa<PointerType>(getOperand(0)->getType()) &&
796 "Can not free something of nonpointer type!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000797}
798
799FreeInst::FreeInst(Value *Ptr, Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +0000800 : UnaryInstruction(Type::getVoidTy(Ptr->getContext()),
801 Free, Ptr, InsertBefore) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000802 AssertOK();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000803}
804
805FreeInst::FreeInst(Value *Ptr, BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +0000806 : UnaryInstruction(Type::getVoidTy(Ptr->getContext()),
807 Free, Ptr, InsertAtEnd) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000808 AssertOK();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000809}
810
811
812//===----------------------------------------------------------------------===//
813// LoadInst Implementation
814//===----------------------------------------------------------------------===//
815
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000816void LoadInst::AssertOK() {
Misha Brukmanb1c93172005-04-21 23:48:37 +0000817 assert(isa<PointerType>(getOperand(0)->getType()) &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000818 "Ptr must have pointer type.");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000819}
820
Daniel Dunbar4975db62009-07-25 04:41:11 +0000821LoadInst::LoadInst(Value *Ptr, const Twine &Name, Instruction *InsertBef)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000822 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000823 Load, Ptr, InsertBef) {
Chris Lattnerdf57a022005-02-05 01:38:38 +0000824 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000825 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000826 AssertOK();
Chris Lattner0f048162007-02-13 07:54:42 +0000827 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000828}
829
Daniel Dunbar4975db62009-07-25 04:41:11 +0000830LoadInst::LoadInst(Value *Ptr, const Twine &Name, BasicBlock *InsertAE)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000831 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000832 Load, Ptr, InsertAE) {
Chris Lattnerdf57a022005-02-05 01:38:38 +0000833 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000834 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000835 AssertOK();
Chris Lattner0f048162007-02-13 07:54:42 +0000836 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000837}
838
Daniel Dunbar4975db62009-07-25 04:41:11 +0000839LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000840 Instruction *InsertBef)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000841 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000842 Load, Ptr, InsertBef) {
Chris Lattnerdf57a022005-02-05 01:38:38 +0000843 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +0000844 setAlignment(0);
845 AssertOK();
846 setName(Name);
847}
848
Daniel Dunbar4975db62009-07-25 04:41:11 +0000849LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Christopher Lamb84485702007-04-22 19:24:39 +0000850 unsigned Align, Instruction *InsertBef)
851 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
852 Load, Ptr, InsertBef) {
853 setVolatile(isVolatile);
854 setAlignment(Align);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000855 AssertOK();
Chris Lattner0f048162007-02-13 07:54:42 +0000856 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000857}
858
Daniel Dunbar4975db62009-07-25 04:41:11 +0000859LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Dan Gohman68659282007-07-18 20:51:11 +0000860 unsigned Align, BasicBlock *InsertAE)
861 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
862 Load, Ptr, InsertAE) {
863 setVolatile(isVolatile);
864 setAlignment(Align);
865 AssertOK();
866 setName(Name);
867}
868
Daniel Dunbar4975db62009-07-25 04:41:11 +0000869LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000870 BasicBlock *InsertAE)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000871 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000872 Load, Ptr, InsertAE) {
Chris Lattner0f048162007-02-13 07:54:42 +0000873 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +0000874 setAlignment(0);
Chris Lattner0f048162007-02-13 07:54:42 +0000875 AssertOK();
876 setName(Name);
877}
878
Daniel Dunbar27096822009-08-11 18:11:15 +0000879
880
881LoadInst::LoadInst(Value *Ptr, const char *Name, Instruction *InsertBef)
882 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
883 Load, Ptr, InsertBef) {
884 setVolatile(false);
885 setAlignment(0);
886 AssertOK();
887 if (Name && Name[0]) setName(Name);
888}
889
890LoadInst::LoadInst(Value *Ptr, const char *Name, BasicBlock *InsertAE)
891 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
892 Load, Ptr, InsertAE) {
893 setVolatile(false);
894 setAlignment(0);
895 AssertOK();
896 if (Name && Name[0]) setName(Name);
897}
898
899LoadInst::LoadInst(Value *Ptr, const char *Name, bool isVolatile,
900 Instruction *InsertBef)
901: UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
902 Load, Ptr, InsertBef) {
903 setVolatile(isVolatile);
904 setAlignment(0);
905 AssertOK();
906 if (Name && Name[0]) setName(Name);
907}
908
909LoadInst::LoadInst(Value *Ptr, const char *Name, bool isVolatile,
910 BasicBlock *InsertAE)
911 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
912 Load, Ptr, InsertAE) {
913 setVolatile(isVolatile);
914 setAlignment(0);
915 AssertOK();
916 if (Name && Name[0]) setName(Name);
917}
918
Christopher Lamb84485702007-04-22 19:24:39 +0000919void LoadInst::setAlignment(unsigned Align) {
920 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
921 SubclassData = (SubclassData & 1) | ((Log2_32(Align)+1)<<1);
922}
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000923
924//===----------------------------------------------------------------------===//
925// StoreInst Implementation
926//===----------------------------------------------------------------------===//
927
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000928void StoreInst::AssertOK() {
Nate Begemanfecbc8c2008-07-29 15:49:41 +0000929 assert(getOperand(0) && getOperand(1) && "Both operands must be non-null!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000930 assert(isa<PointerType>(getOperand(1)->getType()) &&
931 "Ptr must have pointer type!");
932 assert(getOperand(0)->getType() ==
933 cast<PointerType>(getOperand(1)->getType())->getElementType()
Alkis Evlogimenos079fbde2004-08-06 14:33:37 +0000934 && "Ptr must be a pointer to Val type!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000935}
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000936
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000937
938StoreInst::StoreInst(Value *val, Value *addr, Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +0000939 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +0000940 OperandTraits<StoreInst>::op_begin(this),
941 OperandTraits<StoreInst>::operands(this),
942 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +0000943 Op<0>() = val;
944 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +0000945 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000946 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000947 AssertOK();
948}
949
950StoreInst::StoreInst(Value *val, Value *addr, BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +0000951 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +0000952 OperandTraits<StoreInst>::op_begin(this),
953 OperandTraits<StoreInst>::operands(this),
954 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +0000955 Op<0>() = val;
956 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +0000957 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000958 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000959 AssertOK();
960}
961
Misha Brukmanb1c93172005-04-21 23:48:37 +0000962StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000963 Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +0000964 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +0000965 OperandTraits<StoreInst>::op_begin(this),
966 OperandTraits<StoreInst>::operands(this),
967 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +0000968 Op<0>() = val;
969 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +0000970 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +0000971 setAlignment(0);
972 AssertOK();
973}
974
975StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
976 unsigned Align, Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +0000977 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +0000978 OperandTraits<StoreInst>::op_begin(this),
979 OperandTraits<StoreInst>::operands(this),
980 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +0000981 Op<0>() = val;
982 Op<1>() = addr;
Christopher Lamb84485702007-04-22 19:24:39 +0000983 setVolatile(isVolatile);
984 setAlignment(Align);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000985 AssertOK();
986}
987
Misha Brukmanb1c93172005-04-21 23:48:37 +0000988StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Dan Gohman68659282007-07-18 20:51:11 +0000989 unsigned Align, BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +0000990 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +0000991 OperandTraits<StoreInst>::op_begin(this),
992 OperandTraits<StoreInst>::operands(this),
993 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +0000994 Op<0>() = val;
995 Op<1>() = addr;
Dan Gohman68659282007-07-18 20:51:11 +0000996 setVolatile(isVolatile);
997 setAlignment(Align);
998 AssertOK();
999}
1000
1001StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001002 BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +00001003 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001004 OperandTraits<StoreInst>::op_begin(this),
1005 OperandTraits<StoreInst>::operands(this),
1006 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001007 Op<0>() = val;
1008 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +00001009 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +00001010 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001011 AssertOK();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001012}
1013
Christopher Lamb84485702007-04-22 19:24:39 +00001014void StoreInst::setAlignment(unsigned Align) {
1015 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
1016 SubclassData = (SubclassData & 1) | ((Log2_32(Align)+1)<<1);
1017}
1018
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001019//===----------------------------------------------------------------------===//
1020// GetElementPtrInst Implementation
1021//===----------------------------------------------------------------------===//
1022
Christopher Lambedf07882007-12-17 01:12:55 +00001023static unsigned retrieveAddrSpace(const Value *Val) {
1024 return cast<PointerType>(Val->getType())->getAddressSpace();
1025}
1026
Gabor Greif21ba1842008-06-06 20:28:12 +00001027void GetElementPtrInst::init(Value *Ptr, Value* const *Idx, unsigned NumIdx,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001028 const Twine &Name) {
Gabor Greiff6caff662008-05-10 08:32:32 +00001029 assert(NumOperands == 1+NumIdx && "NumOperands not initialized?");
1030 Use *OL = OperandList;
Gabor Greif2d3024d2008-05-26 21:33:52 +00001031 OL[0] = Ptr;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001032
Chris Lattner79807c3d2007-01-31 19:47:18 +00001033 for (unsigned i = 0; i != NumIdx; ++i)
Gabor Greif2d3024d2008-05-26 21:33:52 +00001034 OL[i+1] = Idx[i];
Matthijs Kooijman76d8dec2008-06-04 16:14:12 +00001035
1036 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001037}
1038
Daniel Dunbar4975db62009-07-25 04:41:11 +00001039void GetElementPtrInst::init(Value *Ptr, Value *Idx, const Twine &Name) {
Gabor Greiff6caff662008-05-10 08:32:32 +00001040 assert(NumOperands == 2 && "NumOperands not initialized?");
1041 Use *OL = OperandList;
Gabor Greif2d3024d2008-05-26 21:33:52 +00001042 OL[0] = Ptr;
1043 OL[1] = Idx;
Matthijs Kooijman76d8dec2008-06-04 16:14:12 +00001044
1045 setName(Name);
Chris Lattner82981202005-05-03 05:43:30 +00001046}
1047
Gabor Greiff6caff662008-05-10 08:32:32 +00001048GetElementPtrInst::GetElementPtrInst(const GetElementPtrInst &GEPI)
Gabor Greife9408e62008-05-27 11:03:29 +00001049 : Instruction(GEPI.getType(), GetElementPtr,
Gabor Greif697e94c2008-05-15 10:04:30 +00001050 OperandTraits<GetElementPtrInst>::op_end(this)
1051 - GEPI.getNumOperands(),
Gabor Greiff6caff662008-05-10 08:32:32 +00001052 GEPI.getNumOperands()) {
1053 Use *OL = OperandList;
1054 Use *GEPIOL = GEPI.OperandList;
1055 for (unsigned i = 0, E = NumOperands; i != E; ++i)
Gabor Greif2d3024d2008-05-26 21:33:52 +00001056 OL[i] = GEPIOL[i];
Dan Gohmanc8a27f22009-08-25 22:11:20 +00001057 SubclassOptionalData = GEPI.SubclassOptionalData;
Gabor Greiff6caff662008-05-10 08:32:32 +00001058}
1059
Chris Lattner82981202005-05-03 05:43:30 +00001060GetElementPtrInst::GetElementPtrInst(Value *Ptr, Value *Idx,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001061 const Twine &Name, Instruction *InBe)
Owen Anderson4056ca92009-07-29 22:17:13 +00001062 : Instruction(PointerType::get(
Owen Andersond420fd42009-07-16 00:03:07 +00001063 checkType(getIndexedType(Ptr->getType(),Idx)), retrieveAddrSpace(Ptr)),
Gabor Greiff6caff662008-05-10 08:32:32 +00001064 GetElementPtr,
1065 OperandTraits<GetElementPtrInst>::op_end(this) - 2,
1066 2, InBe) {
Matthijs Kooijman76d8dec2008-06-04 16:14:12 +00001067 init(Ptr, Idx, Name);
Chris Lattner82981202005-05-03 05:43:30 +00001068}
1069
1070GetElementPtrInst::GetElementPtrInst(Value *Ptr, Value *Idx,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001071 const Twine &Name, BasicBlock *IAE)
Owen Anderson4056ca92009-07-29 22:17:13 +00001072 : Instruction(PointerType::get(
Owen Andersond420fd42009-07-16 00:03:07 +00001073 checkType(getIndexedType(Ptr->getType(),Idx)),
1074 retrieveAddrSpace(Ptr)),
Gabor Greiff6caff662008-05-10 08:32:32 +00001075 GetElementPtr,
1076 OperandTraits<GetElementPtrInst>::op_end(this) - 2,
1077 2, IAE) {
Matthijs Kooijman76d8dec2008-06-04 16:14:12 +00001078 init(Ptr, Idx, Name);
Chris Lattner82981202005-05-03 05:43:30 +00001079}
1080
Chris Lattner6090a422009-03-09 04:46:40 +00001081/// getIndexedType - Returns the type of the element that would be accessed with
1082/// a gep instruction with the specified parameters.
1083///
1084/// The Idxs pointer should point to a continuous piece of memory containing the
1085/// indices, either as Value* or uint64_t.
1086///
1087/// A null type is returned if the indices are invalid for the specified
1088/// pointer type.
1089///
Matthijs Kooijman04468622008-07-29 08:46:11 +00001090template <typename IndexTy>
Chris Lattner6090a422009-03-09 04:46:40 +00001091static const Type* getIndexedTypeInternal(const Type *Ptr, IndexTy const *Idxs,
1092 unsigned NumIdx) {
Dan Gohman12fce772008-05-15 19:50:34 +00001093 const PointerType *PTy = dyn_cast<PointerType>(Ptr);
1094 if (!PTy) return 0; // Type isn't a pointer type!
1095 const Type *Agg = PTy->getElementType();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001096
Chris Lattner6090a422009-03-09 04:46:40 +00001097 // Handle the special case of the empty set index set, which is always valid.
Dan Gohman12fce772008-05-15 19:50:34 +00001098 if (NumIdx == 0)
1099 return Agg;
Chris Lattner6090a422009-03-09 04:46:40 +00001100
1101 // If there is at least one index, the top level type must be sized, otherwise
Chris Lattner4a488152009-03-09 04:56:22 +00001102 // it cannot be 'stepped over'. We explicitly allow abstract types (those
1103 // that contain opaque types) under the assumption that it will be resolved to
1104 // a sane type later.
1105 if (!Agg->isSized() && !Agg->isAbstract())
Chris Lattner6090a422009-03-09 04:46:40 +00001106 return 0;
Misha Brukmanb1c93172005-04-21 23:48:37 +00001107
Dan Gohman1ecaf452008-05-31 00:58:22 +00001108 unsigned CurIdx = 1;
1109 for (; CurIdx != NumIdx; ++CurIdx) {
1110 const CompositeType *CT = dyn_cast<CompositeType>(Agg);
1111 if (!CT || isa<PointerType>(CT)) return 0;
Matthijs Kooijman04468622008-07-29 08:46:11 +00001112 IndexTy Index = Idxs[CurIdx];
Dan Gohman1ecaf452008-05-31 00:58:22 +00001113 if (!CT->indexValid(Index)) return 0;
1114 Agg = CT->getTypeAtIndex(Index);
1115
1116 // If the new type forwards to another type, then it is in the middle
1117 // of being refined to another type (and hence, may have dropped all
1118 // references to what it was using before). So, use the new forwarded
1119 // type.
1120 if (const Type *Ty = Agg->getForwardedType())
1121 Agg = Ty;
1122 }
1123 return CurIdx == NumIdx ? Agg : 0;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001124}
1125
Matthijs Kooijman04468622008-07-29 08:46:11 +00001126const Type* GetElementPtrInst::getIndexedType(const Type *Ptr,
1127 Value* const *Idxs,
1128 unsigned NumIdx) {
1129 return getIndexedTypeInternal(Ptr, Idxs, NumIdx);
1130}
1131
1132const Type* GetElementPtrInst::getIndexedType(const Type *Ptr,
1133 uint64_t const *Idxs,
1134 unsigned NumIdx) {
1135 return getIndexedTypeInternal(Ptr, Idxs, NumIdx);
1136}
1137
Chris Lattner82981202005-05-03 05:43:30 +00001138const Type* GetElementPtrInst::getIndexedType(const Type *Ptr, Value *Idx) {
1139 const PointerType *PTy = dyn_cast<PointerType>(Ptr);
1140 if (!PTy) return 0; // Type isn't a pointer type!
1141
1142 // Check the pointer index.
1143 if (!PTy->indexValid(Idx)) return 0;
1144
Chris Lattnerc2233332005-05-03 16:44:45 +00001145 return PTy->getElementType();
Chris Lattner82981202005-05-03 05:43:30 +00001146}
1147
Chris Lattner45f15572007-04-14 00:12:57 +00001148
1149/// hasAllZeroIndices - Return true if all of the indices of this GEP are
1150/// zeros. If so, the result pointer and the first operand have the same
1151/// value, just potentially different types.
1152bool GetElementPtrInst::hasAllZeroIndices() const {
1153 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
1154 if (ConstantInt *CI = dyn_cast<ConstantInt>(getOperand(i))) {
1155 if (!CI->isZero()) return false;
1156 } else {
1157 return false;
1158 }
1159 }
1160 return true;
1161}
1162
Chris Lattner27058292007-04-27 20:35:56 +00001163/// hasAllConstantIndices - Return true if all of the indices of this GEP are
1164/// constant integers. If so, the result pointer and the first operand have
1165/// a constant offset between them.
1166bool GetElementPtrInst::hasAllConstantIndices() const {
1167 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
1168 if (!isa<ConstantInt>(getOperand(i)))
1169 return false;
1170 }
1171 return true;
1172}
1173
Dan Gohman1b849082009-09-07 23:54:19 +00001174void GetElementPtrInst::setIsInBounds(bool B) {
1175 cast<GEPOperator>(this)->setIsInBounds(B);
1176}
Chris Lattner45f15572007-04-14 00:12:57 +00001177
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001178//===----------------------------------------------------------------------===//
Robert Bocchino23004482006-01-10 19:05:34 +00001179// ExtractElementInst Implementation
1180//===----------------------------------------------------------------------===//
1181
1182ExtractElementInst::ExtractElementInst(Value *Val, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001183 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001184 Instruction *InsertBef)
Reid Spencerd84d35b2007-02-15 02:26:10 +00001185 : Instruction(cast<VectorType>(Val->getType())->getElementType(),
Gabor Greiff6caff662008-05-10 08:32:32 +00001186 ExtractElement,
1187 OperandTraits<ExtractElementInst>::op_begin(this),
1188 2, InsertBef) {
Chris Lattner54865b32006-04-08 04:05:48 +00001189 assert(isValidOperands(Val, Index) &&
1190 "Invalid extractelement instruction operands!");
Gabor Greif2d3024d2008-05-26 21:33:52 +00001191 Op<0>() = Val;
1192 Op<1>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001193 setName(Name);
Robert Bocchino23004482006-01-10 19:05:34 +00001194}
1195
1196ExtractElementInst::ExtractElementInst(Value *Val, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001197 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001198 BasicBlock *InsertAE)
Reid Spencerd84d35b2007-02-15 02:26:10 +00001199 : Instruction(cast<VectorType>(Val->getType())->getElementType(),
Gabor Greiff6caff662008-05-10 08:32:32 +00001200 ExtractElement,
1201 OperandTraits<ExtractElementInst>::op_begin(this),
1202 2, InsertAE) {
Chris Lattner54865b32006-04-08 04:05:48 +00001203 assert(isValidOperands(Val, Index) &&
1204 "Invalid extractelement instruction operands!");
1205
Gabor Greif2d3024d2008-05-26 21:33:52 +00001206 Op<0>() = Val;
1207 Op<1>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001208 setName(Name);
Robert Bocchino23004482006-01-10 19:05:34 +00001209}
1210
Chris Lattner65511ff2006-10-05 06:24:58 +00001211
Chris Lattner54865b32006-04-08 04:05:48 +00001212bool ExtractElementInst::isValidOperands(const Value *Val, const Value *Index) {
Owen Anderson55f1c092009-08-13 21:58:54 +00001213 if (!isa<VectorType>(Val->getType()) ||
1214 Index->getType() != Type::getInt32Ty(Val->getContext()))
Chris Lattner54865b32006-04-08 04:05:48 +00001215 return false;
1216 return true;
1217}
1218
1219
Robert Bocchino23004482006-01-10 19:05:34 +00001220//===----------------------------------------------------------------------===//
Robert Bocchinoca27f032006-01-17 20:07:22 +00001221// InsertElementInst Implementation
1222//===----------------------------------------------------------------------===//
1223
Chris Lattner54865b32006-04-08 04:05:48 +00001224InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001225 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001226 Instruction *InsertBef)
Gabor Greiff6caff662008-05-10 08:32:32 +00001227 : Instruction(Vec->getType(), InsertElement,
1228 OperandTraits<InsertElementInst>::op_begin(this),
1229 3, InsertBef) {
Chris Lattner54865b32006-04-08 04:05:48 +00001230 assert(isValidOperands(Vec, Elt, Index) &&
1231 "Invalid insertelement instruction operands!");
Gabor Greif2d3024d2008-05-26 21:33:52 +00001232 Op<0>() = Vec;
1233 Op<1>() = Elt;
1234 Op<2>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001235 setName(Name);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001236}
1237
Chris Lattner54865b32006-04-08 04:05:48 +00001238InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001239 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001240 BasicBlock *InsertAE)
Gabor Greiff6caff662008-05-10 08:32:32 +00001241 : Instruction(Vec->getType(), InsertElement,
1242 OperandTraits<InsertElementInst>::op_begin(this),
1243 3, InsertAE) {
Chris Lattner54865b32006-04-08 04:05:48 +00001244 assert(isValidOperands(Vec, Elt, Index) &&
1245 "Invalid insertelement instruction operands!");
1246
Gabor Greif2d3024d2008-05-26 21:33:52 +00001247 Op<0>() = Vec;
1248 Op<1>() = Elt;
1249 Op<2>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001250 setName(Name);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001251}
1252
Chris Lattner54865b32006-04-08 04:05:48 +00001253bool InsertElementInst::isValidOperands(const Value *Vec, const Value *Elt,
1254 const Value *Index) {
Reid Spencerd84d35b2007-02-15 02:26:10 +00001255 if (!isa<VectorType>(Vec->getType()))
Reid Spencer09575ba2007-02-15 03:39:18 +00001256 return false; // First operand of insertelement must be vector type.
Chris Lattner54865b32006-04-08 04:05:48 +00001257
Reid Spencerd84d35b2007-02-15 02:26:10 +00001258 if (Elt->getType() != cast<VectorType>(Vec->getType())->getElementType())
Dan Gohmanfead7972007-05-11 21:43:24 +00001259 return false;// Second operand of insertelement must be vector element type.
Chris Lattner54865b32006-04-08 04:05:48 +00001260
Owen Anderson55f1c092009-08-13 21:58:54 +00001261 if (Index->getType() != Type::getInt32Ty(Vec->getContext()))
Dan Gohman4fe64de2009-06-14 23:30:43 +00001262 return false; // Third operand of insertelement must be i32.
Chris Lattner54865b32006-04-08 04:05:48 +00001263 return true;
1264}
1265
1266
Robert Bocchinoca27f032006-01-17 20:07:22 +00001267//===----------------------------------------------------------------------===//
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001268// ShuffleVectorInst Implementation
1269//===----------------------------------------------------------------------===//
1270
1271ShuffleVectorInst::ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001272 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001273 Instruction *InsertBefore)
Owen Anderson4056ca92009-07-29 22:17:13 +00001274: Instruction(VectorType::get(cast<VectorType>(V1->getType())->getElementType(),
Mon P Wang25f01062008-11-10 04:46:22 +00001275 cast<VectorType>(Mask->getType())->getNumElements()),
1276 ShuffleVector,
1277 OperandTraits<ShuffleVectorInst>::op_begin(this),
1278 OperandTraits<ShuffleVectorInst>::operands(this),
1279 InsertBefore) {
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001280 assert(isValidOperands(V1, V2, Mask) &&
1281 "Invalid shuffle vector instruction operands!");
Gabor Greif2d3024d2008-05-26 21:33:52 +00001282 Op<0>() = V1;
1283 Op<1>() = V2;
1284 Op<2>() = Mask;
Chris Lattner2195fc42007-02-24 00:55:48 +00001285 setName(Name);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001286}
1287
1288ShuffleVectorInst::ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001289 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001290 BasicBlock *InsertAtEnd)
Dan Gohmane5af8cd2009-08-25 23:27:45 +00001291: Instruction(VectorType::get(cast<VectorType>(V1->getType())->getElementType(),
1292 cast<VectorType>(Mask->getType())->getNumElements()),
1293 ShuffleVector,
1294 OperandTraits<ShuffleVectorInst>::op_begin(this),
1295 OperandTraits<ShuffleVectorInst>::operands(this),
1296 InsertAtEnd) {
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001297 assert(isValidOperands(V1, V2, Mask) &&
1298 "Invalid shuffle vector instruction operands!");
1299
Gabor Greif2d3024d2008-05-26 21:33:52 +00001300 Op<0>() = V1;
1301 Op<1>() = V2;
1302 Op<2>() = Mask;
Chris Lattner2195fc42007-02-24 00:55:48 +00001303 setName(Name);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001304}
1305
Mon P Wang25f01062008-11-10 04:46:22 +00001306bool ShuffleVectorInst::isValidOperands(const Value *V1, const Value *V2,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001307 const Value *Mask) {
Mon P Wang25f01062008-11-10 04:46:22 +00001308 if (!isa<VectorType>(V1->getType()) || V1->getType() != V2->getType())
Chris Lattnerf724e342008-03-02 05:28:33 +00001309 return false;
1310
1311 const VectorType *MaskTy = dyn_cast<VectorType>(Mask->getType());
1312 if (!isa<Constant>(Mask) || MaskTy == 0 ||
Owen Anderson55f1c092009-08-13 21:58:54 +00001313 MaskTy->getElementType() != Type::getInt32Ty(V1->getContext()))
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001314 return false;
1315 return true;
1316}
1317
Chris Lattnerf724e342008-03-02 05:28:33 +00001318/// getMaskValue - Return the index from the shuffle mask for the specified
1319/// output result. This is either -1 if the element is undef or a number less
1320/// than 2*numelements.
1321int ShuffleVectorInst::getMaskValue(unsigned i) const {
1322 const Constant *Mask = cast<Constant>(getOperand(2));
1323 if (isa<UndefValue>(Mask)) return -1;
1324 if (isa<ConstantAggregateZero>(Mask)) return 0;
1325 const ConstantVector *MaskCV = cast<ConstantVector>(Mask);
1326 assert(i < MaskCV->getNumOperands() && "Index out of range");
1327
1328 if (isa<UndefValue>(MaskCV->getOperand(i)))
1329 return -1;
1330 return cast<ConstantInt>(MaskCV->getOperand(i))->getZExtValue();
1331}
1332
Dan Gohman12fce772008-05-15 19:50:34 +00001333//===----------------------------------------------------------------------===//
Dan Gohman0752bff2008-05-23 00:36:11 +00001334// InsertValueInst Class
1335//===----------------------------------------------------------------------===//
1336
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001337void InsertValueInst::init(Value *Agg, Value *Val, const unsigned *Idx,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001338 unsigned NumIdx, const Twine &Name) {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001339 assert(NumOperands == 2 && "NumOperands not initialized?");
1340 Op<0>() = Agg;
1341 Op<1>() = Val;
Dan Gohman0752bff2008-05-23 00:36:11 +00001342
Dan Gohman1ecaf452008-05-31 00:58:22 +00001343 Indices.insert(Indices.end(), Idx, Idx + NumIdx);
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001344 setName(Name);
Dan Gohman0752bff2008-05-23 00:36:11 +00001345}
1346
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001347void InsertValueInst::init(Value *Agg, Value *Val, unsigned Idx,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001348 const Twine &Name) {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001349 assert(NumOperands == 2 && "NumOperands not initialized?");
1350 Op<0>() = Agg;
1351 Op<1>() = Val;
1352
1353 Indices.push_back(Idx);
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001354 setName(Name);
Dan Gohman0752bff2008-05-23 00:36:11 +00001355}
1356
1357InsertValueInst::InsertValueInst(const InsertValueInst &IVI)
Gabor Greife9408e62008-05-27 11:03:29 +00001358 : Instruction(IVI.getType(), InsertValue,
Dan Gohman1ecaf452008-05-31 00:58:22 +00001359 OperandTraits<InsertValueInst>::op_begin(this), 2),
1360 Indices(IVI.Indices) {
Dan Gohmand8ca05f2008-06-17 23:25:49 +00001361 Op<0>() = IVI.getOperand(0);
1362 Op<1>() = IVI.getOperand(1);
Dan Gohmanc8a27f22009-08-25 22:11:20 +00001363 SubclassOptionalData = IVI.SubclassOptionalData;
Dan Gohman0752bff2008-05-23 00:36:11 +00001364}
1365
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001366InsertValueInst::InsertValueInst(Value *Agg,
1367 Value *Val,
1368 unsigned Idx,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001369 const Twine &Name,
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001370 Instruction *InsertBefore)
1371 : Instruction(Agg->getType(), InsertValue,
1372 OperandTraits<InsertValueInst>::op_begin(this),
1373 2, InsertBefore) {
1374 init(Agg, Val, Idx, Name);
1375}
1376
1377InsertValueInst::InsertValueInst(Value *Agg,
1378 Value *Val,
1379 unsigned Idx,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001380 const Twine &Name,
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001381 BasicBlock *InsertAtEnd)
1382 : Instruction(Agg->getType(), InsertValue,
1383 OperandTraits<InsertValueInst>::op_begin(this),
1384 2, InsertAtEnd) {
1385 init(Agg, Val, Idx, Name);
1386}
1387
Dan Gohman0752bff2008-05-23 00:36:11 +00001388//===----------------------------------------------------------------------===//
Dan Gohman12fce772008-05-15 19:50:34 +00001389// ExtractValueInst Class
1390//===----------------------------------------------------------------------===//
1391
Gabor Greifcbcc4952008-06-06 21:06:32 +00001392void ExtractValueInst::init(const unsigned *Idx, unsigned NumIdx,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001393 const Twine &Name) {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001394 assert(NumOperands == 1 && "NumOperands not initialized?");
Dan Gohman0752bff2008-05-23 00:36:11 +00001395
Dan Gohman1ecaf452008-05-31 00:58:22 +00001396 Indices.insert(Indices.end(), Idx, Idx + NumIdx);
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001397 setName(Name);
Dan Gohman0752bff2008-05-23 00:36:11 +00001398}
1399
Daniel Dunbar4975db62009-07-25 04:41:11 +00001400void ExtractValueInst::init(unsigned Idx, const Twine &Name) {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001401 assert(NumOperands == 1 && "NumOperands not initialized?");
Dan Gohman1ecaf452008-05-31 00:58:22 +00001402
1403 Indices.push_back(Idx);
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001404 setName(Name);
Dan Gohman0752bff2008-05-23 00:36:11 +00001405}
1406
1407ExtractValueInst::ExtractValueInst(const ExtractValueInst &EVI)
Gabor Greif21ba1842008-06-06 20:28:12 +00001408 : UnaryInstruction(EVI.getType(), ExtractValue, EVI.getOperand(0)),
Dan Gohman1ecaf452008-05-31 00:58:22 +00001409 Indices(EVI.Indices) {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00001410 SubclassOptionalData = EVI.SubclassOptionalData;
Dan Gohman0752bff2008-05-23 00:36:11 +00001411}
1412
Dan Gohman12fce772008-05-15 19:50:34 +00001413// getIndexedType - Returns the type of the element that would be extracted
1414// with an extractvalue instruction with the specified parameters.
1415//
1416// A null type is returned if the indices are invalid for the specified
1417// pointer type.
1418//
1419const Type* ExtractValueInst::getIndexedType(const Type *Agg,
Dan Gohman1ecaf452008-05-31 00:58:22 +00001420 const unsigned *Idxs,
Dan Gohman12fce772008-05-15 19:50:34 +00001421 unsigned NumIdx) {
1422 unsigned CurIdx = 0;
1423 for (; CurIdx != NumIdx; ++CurIdx) {
1424 const CompositeType *CT = dyn_cast<CompositeType>(Agg);
Dan Gohman1ecaf452008-05-31 00:58:22 +00001425 if (!CT || isa<PointerType>(CT) || isa<VectorType>(CT)) return 0;
1426 unsigned Index = Idxs[CurIdx];
Dan Gohman12fce772008-05-15 19:50:34 +00001427 if (!CT->indexValid(Index)) return 0;
1428 Agg = CT->getTypeAtIndex(Index);
1429
1430 // If the new type forwards to another type, then it is in the middle
1431 // of being refined to another type (and hence, may have dropped all
1432 // references to what it was using before). So, use the new forwarded
1433 // type.
1434 if (const Type *Ty = Agg->getForwardedType())
1435 Agg = Ty;
1436 }
1437 return CurIdx == NumIdx ? Agg : 0;
1438}
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001439
Dan Gohman4a3125b2008-06-17 21:07:55 +00001440const Type* ExtractValueInst::getIndexedType(const Type *Agg,
Dan Gohmand87e8132008-06-20 00:47:44 +00001441 unsigned Idx) {
1442 return getIndexedType(Agg, &Idx, 1);
Dan Gohman4a3125b2008-06-17 21:07:55 +00001443}
1444
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001445//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001446// BinaryOperator Class
1447//===----------------------------------------------------------------------===//
1448
Dan Gohmana5b96452009-06-04 22:49:04 +00001449/// AdjustIType - Map Add, Sub, and Mul to FAdd, FSub, and FMul when the
1450/// type is floating-point, to help provide compatibility with an older API.
1451///
1452static BinaryOperator::BinaryOps AdjustIType(BinaryOperator::BinaryOps iType,
1453 const Type *Ty) {
1454 // API compatibility: Adjust integer opcodes to floating-point opcodes.
1455 if (Ty->isFPOrFPVector()) {
1456 if (iType == BinaryOperator::Add) iType = BinaryOperator::FAdd;
1457 else if (iType == BinaryOperator::Sub) iType = BinaryOperator::FSub;
1458 else if (iType == BinaryOperator::Mul) iType = BinaryOperator::FMul;
1459 }
1460 return iType;
1461}
1462
Chris Lattner2195fc42007-02-24 00:55:48 +00001463BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001464 const Type *Ty, const Twine &Name,
Chris Lattner2195fc42007-02-24 00:55:48 +00001465 Instruction *InsertBefore)
Dan Gohmana5b96452009-06-04 22:49:04 +00001466 : Instruction(Ty, AdjustIType(iType, Ty),
Gabor Greiff6caff662008-05-10 08:32:32 +00001467 OperandTraits<BinaryOperator>::op_begin(this),
1468 OperandTraits<BinaryOperator>::operands(this),
1469 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001470 Op<0>() = S1;
1471 Op<1>() = S2;
Dan Gohmana5b96452009-06-04 22:49:04 +00001472 init(AdjustIType(iType, Ty));
Chris Lattner2195fc42007-02-24 00:55:48 +00001473 setName(Name);
1474}
1475
1476BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001477 const Type *Ty, const Twine &Name,
Chris Lattner2195fc42007-02-24 00:55:48 +00001478 BasicBlock *InsertAtEnd)
Dan Gohmana5b96452009-06-04 22:49:04 +00001479 : Instruction(Ty, AdjustIType(iType, Ty),
Gabor Greiff6caff662008-05-10 08:32:32 +00001480 OperandTraits<BinaryOperator>::op_begin(this),
1481 OperandTraits<BinaryOperator>::operands(this),
1482 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001483 Op<0>() = S1;
1484 Op<1>() = S2;
Dan Gohmana5b96452009-06-04 22:49:04 +00001485 init(AdjustIType(iType, Ty));
Chris Lattner2195fc42007-02-24 00:55:48 +00001486 setName(Name);
1487}
1488
1489
1490void BinaryOperator::init(BinaryOps iType) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001491 Value *LHS = getOperand(0), *RHS = getOperand(1);
Chris Lattnerf14c76c2007-02-01 04:59:37 +00001492 LHS = LHS; RHS = RHS; // Silence warnings.
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001493 assert(LHS->getType() == RHS->getType() &&
1494 "Binary operator operand types must match!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001495#ifndef NDEBUG
1496 switch (iType) {
1497 case Add: case Sub:
Dan Gohmana5b96452009-06-04 22:49:04 +00001498 case Mul:
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001499 assert(getType() == LHS->getType() &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001500 "Arithmetic operation should return same type as operands!");
Dan Gohmana5b96452009-06-04 22:49:04 +00001501 assert(getType()->isIntOrIntVector() &&
1502 "Tried to create an integer operation on a non-integer type!");
1503 break;
1504 case FAdd: case FSub:
1505 case FMul:
1506 assert(getType() == LHS->getType() &&
1507 "Arithmetic operation should return same type as operands!");
1508 assert(getType()->isFPOrFPVector() &&
1509 "Tried to create a floating-point operation on a "
1510 "non-floating-point type!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001511 break;
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001512 case UDiv:
1513 case SDiv:
1514 assert(getType() == LHS->getType() &&
1515 "Arithmetic operation should return same type as operands!");
Reid Spencerd84d35b2007-02-15 02:26:10 +00001516 assert((getType()->isInteger() || (isa<VectorType>(getType()) &&
1517 cast<VectorType>(getType())->getElementType()->isInteger())) &&
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001518 "Incorrect operand type (not integer) for S/UDIV");
1519 break;
1520 case FDiv:
1521 assert(getType() == LHS->getType() &&
1522 "Arithmetic operation should return same type as operands!");
Dan Gohman7889f2b2009-06-15 22:25:12 +00001523 assert(getType()->isFPOrFPVector() &&
1524 "Incorrect operand type (not floating point) for FDIV");
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001525 break;
Reid Spencer7eb55b32006-11-02 01:53:59 +00001526 case URem:
1527 case SRem:
1528 assert(getType() == LHS->getType() &&
1529 "Arithmetic operation should return same type as operands!");
Reid Spencerd84d35b2007-02-15 02:26:10 +00001530 assert((getType()->isInteger() || (isa<VectorType>(getType()) &&
1531 cast<VectorType>(getType())->getElementType()->isInteger())) &&
Reid Spencer7eb55b32006-11-02 01:53:59 +00001532 "Incorrect operand type (not integer) for S/UREM");
1533 break;
1534 case FRem:
1535 assert(getType() == LHS->getType() &&
1536 "Arithmetic operation should return same type as operands!");
Dan Gohman7889f2b2009-06-15 22:25:12 +00001537 assert(getType()->isFPOrFPVector() &&
1538 "Incorrect operand type (not floating point) for FREM");
Reid Spencer7eb55b32006-11-02 01:53:59 +00001539 break;
Reid Spencer2341c222007-02-02 02:16:23 +00001540 case Shl:
1541 case LShr:
1542 case AShr:
1543 assert(getType() == LHS->getType() &&
1544 "Shift operation should return same type as operands!");
Nate Begemanfecbc8c2008-07-29 15:49:41 +00001545 assert((getType()->isInteger() ||
1546 (isa<VectorType>(getType()) &&
1547 cast<VectorType>(getType())->getElementType()->isInteger())) &&
1548 "Tried to create a shift operation on a non-integral type!");
Reid Spencer2341c222007-02-02 02:16:23 +00001549 break;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001550 case And: case Or:
1551 case Xor:
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001552 assert(getType() == LHS->getType() &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001553 "Logical operation should return same type as operands!");
Chris Lattner03c49532007-01-15 02:27:26 +00001554 assert((getType()->isInteger() ||
Reid Spencerd84d35b2007-02-15 02:26:10 +00001555 (isa<VectorType>(getType()) &&
1556 cast<VectorType>(getType())->getElementType()->isInteger())) &&
Misha Brukman3852f652005-01-27 06:46:38 +00001557 "Tried to create a logical operation on a non-integral type!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001558 break;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001559 default:
1560 break;
1561 }
1562#endif
1563}
1564
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001565BinaryOperator *BinaryOperator::Create(BinaryOps Op, Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001566 const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001567 Instruction *InsertBefore) {
1568 assert(S1->getType() == S2->getType() &&
1569 "Cannot create binary operator with two operands of differing type!");
Reid Spencer266e42b2006-12-23 06:05:41 +00001570 return new BinaryOperator(Op, S1, S2, S1->getType(), Name, InsertBefore);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001571}
1572
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001573BinaryOperator *BinaryOperator::Create(BinaryOps Op, Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001574 const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001575 BasicBlock *InsertAtEnd) {
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001576 BinaryOperator *Res = Create(Op, S1, S2, Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001577 InsertAtEnd->getInstList().push_back(Res);
1578 return Res;
1579}
1580
Dan Gohman5476cfd2009-08-12 16:23:25 +00001581BinaryOperator *BinaryOperator::CreateNeg(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001582 Instruction *InsertBefore) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001583 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Reid Spencer2eadb532007-01-21 00:29:26 +00001584 return new BinaryOperator(Instruction::Sub,
1585 zero, Op,
1586 Op->getType(), Name, InsertBefore);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001587}
1588
Dan Gohman5476cfd2009-08-12 16:23:25 +00001589BinaryOperator *BinaryOperator::CreateNeg(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001590 BasicBlock *InsertAtEnd) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001591 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Reid Spencer2eadb532007-01-21 00:29:26 +00001592 return new BinaryOperator(Instruction::Sub,
1593 zero, Op,
1594 Op->getType(), Name, InsertAtEnd);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001595}
1596
Dan Gohman5476cfd2009-08-12 16:23:25 +00001597BinaryOperator *BinaryOperator::CreateFNeg(Value *Op, const Twine &Name,
Dan Gohmana5b96452009-06-04 22:49:04 +00001598 Instruction *InsertBefore) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001599 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Dan Gohmana5b96452009-06-04 22:49:04 +00001600 return new BinaryOperator(Instruction::FSub,
1601 zero, Op,
1602 Op->getType(), Name, InsertBefore);
1603}
1604
Dan Gohman5476cfd2009-08-12 16:23:25 +00001605BinaryOperator *BinaryOperator::CreateFNeg(Value *Op, const Twine &Name,
Dan Gohmana5b96452009-06-04 22:49:04 +00001606 BasicBlock *InsertAtEnd) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001607 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Dan Gohmana5b96452009-06-04 22:49:04 +00001608 return new BinaryOperator(Instruction::FSub,
1609 zero, Op,
1610 Op->getType(), Name, InsertAtEnd);
1611}
1612
Dan Gohman5476cfd2009-08-12 16:23:25 +00001613BinaryOperator *BinaryOperator::CreateNot(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001614 Instruction *InsertBefore) {
Chris Lattnere8e7ac42006-03-25 21:54:21 +00001615 Constant *C;
Reid Spencerd84d35b2007-02-15 02:26:10 +00001616 if (const VectorType *PTy = dyn_cast<VectorType>(Op->getType())) {
Owen Anderson5a1acd92009-07-31 20:28:14 +00001617 C = Constant::getAllOnesValue(PTy->getElementType());
Owen Anderson4aa32952009-07-28 21:19:26 +00001618 C = ConstantVector::get(
Owen Andersonf945a9e2009-07-15 21:51:10 +00001619 std::vector<Constant*>(PTy->getNumElements(), C));
Chris Lattnere8e7ac42006-03-25 21:54:21 +00001620 } else {
Owen Anderson5a1acd92009-07-31 20:28:14 +00001621 C = Constant::getAllOnesValue(Op->getType());
Chris Lattnere8e7ac42006-03-25 21:54:21 +00001622 }
1623
1624 return new BinaryOperator(Instruction::Xor, Op, C,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001625 Op->getType(), Name, InsertBefore);
1626}
1627
Dan Gohman5476cfd2009-08-12 16:23:25 +00001628BinaryOperator *BinaryOperator::CreateNot(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001629 BasicBlock *InsertAtEnd) {
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001630 Constant *AllOnes;
Reid Spencerd84d35b2007-02-15 02:26:10 +00001631 if (const VectorType *PTy = dyn_cast<VectorType>(Op->getType())) {
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001632 // Create a vector of all ones values.
Owen Anderson5a1acd92009-07-31 20:28:14 +00001633 Constant *Elt = Constant::getAllOnesValue(PTy->getElementType());
Owen Anderson4aa32952009-07-28 21:19:26 +00001634 AllOnes = ConstantVector::get(
Owen Andersonf945a9e2009-07-15 21:51:10 +00001635 std::vector<Constant*>(PTy->getNumElements(), Elt));
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001636 } else {
Owen Anderson5a1acd92009-07-31 20:28:14 +00001637 AllOnes = Constant::getAllOnesValue(Op->getType());
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001638 }
1639
1640 return new BinaryOperator(Instruction::Xor, Op, AllOnes,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001641 Op->getType(), Name, InsertAtEnd);
1642}
1643
1644
1645// isConstantAllOnes - Helper function for several functions below
1646static inline bool isConstantAllOnes(const Value *V) {
Chris Lattner1edec382007-06-15 06:04:24 +00001647 if (const ConstantInt *CI = dyn_cast<ConstantInt>(V))
1648 return CI->isAllOnesValue();
1649 if (const ConstantVector *CV = dyn_cast<ConstantVector>(V))
1650 return CV->isAllOnesValue();
1651 return false;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001652}
1653
Owen Andersonbb2501b2009-07-13 22:18:28 +00001654bool BinaryOperator::isNeg(const Value *V) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001655 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1656 if (Bop->getOpcode() == Instruction::Sub)
Owen Andersonbb2501b2009-07-13 22:18:28 +00001657 if (Constant* C = dyn_cast<Constant>(Bop->getOperand(0)))
1658 return C->isNegativeZeroValue();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001659 return false;
1660}
1661
Owen Andersonbb2501b2009-07-13 22:18:28 +00001662bool BinaryOperator::isFNeg(const Value *V) {
Dan Gohmana5b96452009-06-04 22:49:04 +00001663 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1664 if (Bop->getOpcode() == Instruction::FSub)
Owen Andersonbb2501b2009-07-13 22:18:28 +00001665 if (Constant* C = dyn_cast<Constant>(Bop->getOperand(0)))
1666 return C->isNegativeZeroValue();
Dan Gohmana5b96452009-06-04 22:49:04 +00001667 return false;
1668}
1669
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001670bool BinaryOperator::isNot(const Value *V) {
1671 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1672 return (Bop->getOpcode() == Instruction::Xor &&
1673 (isConstantAllOnes(Bop->getOperand(1)) ||
1674 isConstantAllOnes(Bop->getOperand(0))));
1675 return false;
1676}
1677
Chris Lattner2c7d1772005-04-24 07:28:37 +00001678Value *BinaryOperator::getNegArgument(Value *BinOp) {
Chris Lattner2c7d1772005-04-24 07:28:37 +00001679 return cast<BinaryOperator>(BinOp)->getOperand(1);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001680}
1681
Chris Lattner2c7d1772005-04-24 07:28:37 +00001682const Value *BinaryOperator::getNegArgument(const Value *BinOp) {
1683 return getNegArgument(const_cast<Value*>(BinOp));
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001684}
1685
Dan Gohmana5b96452009-06-04 22:49:04 +00001686Value *BinaryOperator::getFNegArgument(Value *BinOp) {
Dan Gohmana5b96452009-06-04 22:49:04 +00001687 return cast<BinaryOperator>(BinOp)->getOperand(1);
1688}
1689
1690const Value *BinaryOperator::getFNegArgument(const Value *BinOp) {
1691 return getFNegArgument(const_cast<Value*>(BinOp));
1692}
1693
Chris Lattner2c7d1772005-04-24 07:28:37 +00001694Value *BinaryOperator::getNotArgument(Value *BinOp) {
1695 assert(isNot(BinOp) && "getNotArgument on non-'not' instruction!");
1696 BinaryOperator *BO = cast<BinaryOperator>(BinOp);
1697 Value *Op0 = BO->getOperand(0);
1698 Value *Op1 = BO->getOperand(1);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001699 if (isConstantAllOnes(Op0)) return Op1;
1700
1701 assert(isConstantAllOnes(Op1));
1702 return Op0;
1703}
1704
Chris Lattner2c7d1772005-04-24 07:28:37 +00001705const Value *BinaryOperator::getNotArgument(const Value *BinOp) {
1706 return getNotArgument(const_cast<Value*>(BinOp));
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001707}
1708
1709
1710// swapOperands - Exchange the two operands to this instruction. This
1711// instruction is safe to use on any binary instruction and does not
1712// modify the semantics of the instruction. If the instruction is
1713// order dependent (SetLT f.e.) the opcode is changed.
1714//
1715bool BinaryOperator::swapOperands() {
Reid Spencer266e42b2006-12-23 06:05:41 +00001716 if (!isCommutative())
1717 return true; // Can't commute operands
Gabor Greif5ef74042008-05-13 22:51:52 +00001718 Op<0>().swap(Op<1>());
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001719 return false;
1720}
1721
Dan Gohman1b849082009-09-07 23:54:19 +00001722void BinaryOperator::setHasNoUnsignedWrap(bool b) {
1723 cast<OverflowingBinaryOperator>(this)->setHasNoUnsignedWrap(b);
1724}
1725
1726void BinaryOperator::setHasNoSignedWrap(bool b) {
1727 cast<OverflowingBinaryOperator>(this)->setHasNoSignedWrap(b);
1728}
1729
1730void BinaryOperator::setIsExact(bool b) {
1731 cast<SDivOperator>(this)->setIsExact(b);
1732}
1733
Chris Lattnerb0b8ddd2006-09-18 04:54:57 +00001734//===----------------------------------------------------------------------===//
1735// CastInst Class
1736//===----------------------------------------------------------------------===//
1737
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001738// Just determine if this cast only deals with integral->integral conversion.
1739bool CastInst::isIntegerCast() const {
1740 switch (getOpcode()) {
1741 default: return false;
1742 case Instruction::ZExt:
1743 case Instruction::SExt:
1744 case Instruction::Trunc:
1745 return true;
1746 case Instruction::BitCast:
Chris Lattner03c49532007-01-15 02:27:26 +00001747 return getOperand(0)->getType()->isInteger() && getType()->isInteger();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001748 }
Chris Lattnerb0b8ddd2006-09-18 04:54:57 +00001749}
1750
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001751bool CastInst::isLosslessCast() const {
1752 // Only BitCast can be lossless, exit fast if we're not BitCast
1753 if (getOpcode() != Instruction::BitCast)
1754 return false;
1755
1756 // Identity cast is always lossless
1757 const Type* SrcTy = getOperand(0)->getType();
1758 const Type* DstTy = getType();
1759 if (SrcTy == DstTy)
1760 return true;
1761
Reid Spencer8d9336d2006-12-31 05:26:44 +00001762 // Pointer to pointer is always lossless.
1763 if (isa<PointerType>(SrcTy))
1764 return isa<PointerType>(DstTy);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001765 return false; // Other types have no identity values
1766}
1767
1768/// This function determines if the CastInst does not require any bits to be
1769/// changed in order to effect the cast. Essentially, it identifies cases where
1770/// no code gen is necessary for the cast, hence the name no-op cast. For
1771/// example, the following are all no-op casts:
Dan Gohmane9bc2ba2008-05-12 16:34:30 +00001772/// # bitcast i32* %x to i8*
1773/// # bitcast <2 x i32> %x to <4 x i16>
1774/// # ptrtoint i32* %x to i32 ; on 32-bit plaforms only
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001775/// @brief Determine if a cast is a no-op.
1776bool CastInst::isNoopCast(const Type *IntPtrTy) const {
1777 switch (getOpcode()) {
1778 default:
1779 assert(!"Invalid CastOp");
1780 case Instruction::Trunc:
1781 case Instruction::ZExt:
1782 case Instruction::SExt:
1783 case Instruction::FPTrunc:
1784 case Instruction::FPExt:
1785 case Instruction::UIToFP:
1786 case Instruction::SIToFP:
1787 case Instruction::FPToUI:
1788 case Instruction::FPToSI:
1789 return false; // These always modify bits
1790 case Instruction::BitCast:
1791 return true; // BitCast never modifies bits.
1792 case Instruction::PtrToInt:
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001793 return IntPtrTy->getScalarSizeInBits() ==
1794 getType()->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001795 case Instruction::IntToPtr:
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001796 return IntPtrTy->getScalarSizeInBits() ==
1797 getOperand(0)->getType()->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001798 }
1799}
1800
1801/// This function determines if a pair of casts can be eliminated and what
1802/// opcode should be used in the elimination. This assumes that there are two
1803/// instructions like this:
1804/// * %F = firstOpcode SrcTy %x to MidTy
1805/// * %S = secondOpcode MidTy %F to DstTy
1806/// The function returns a resultOpcode so these two casts can be replaced with:
1807/// * %Replacement = resultOpcode %SrcTy %x to DstTy
1808/// If no such cast is permited, the function returns 0.
1809unsigned CastInst::isEliminableCastPair(
1810 Instruction::CastOps firstOp, Instruction::CastOps secondOp,
1811 const Type *SrcTy, const Type *MidTy, const Type *DstTy, const Type *IntPtrTy)
1812{
1813 // Define the 144 possibilities for these two cast instructions. The values
1814 // in this matrix determine what to do in a given situation and select the
1815 // case in the switch below. The rows correspond to firstOp, the columns
1816 // correspond to secondOp. In looking at the table below, keep in mind
1817 // the following cast properties:
1818 //
1819 // Size Compare Source Destination
1820 // Operator Src ? Size Type Sign Type Sign
1821 // -------- ------------ ------------------- ---------------------
1822 // TRUNC > Integer Any Integral Any
1823 // ZEXT < Integral Unsigned Integer Any
1824 // SEXT < Integral Signed Integer Any
1825 // FPTOUI n/a FloatPt n/a Integral Unsigned
1826 // FPTOSI n/a FloatPt n/a Integral Signed
1827 // UITOFP n/a Integral Unsigned FloatPt n/a
1828 // SITOFP n/a Integral Signed FloatPt n/a
1829 // FPTRUNC > FloatPt n/a FloatPt n/a
1830 // FPEXT < FloatPt n/a FloatPt n/a
1831 // PTRTOINT n/a Pointer n/a Integral Unsigned
1832 // INTTOPTR n/a Integral Unsigned Pointer n/a
1833 // BITCONVERT = FirstClass n/a FirstClass n/a
Chris Lattner6f6b4972006-12-05 23:43:59 +00001834 //
1835 // NOTE: some transforms are safe, but we consider them to be non-profitable.
Dan Gohman4fe64de2009-06-14 23:30:43 +00001836 // For example, we could merge "fptoui double to i32" + "zext i32 to i64",
1837 // into "fptoui double to i64", but this loses information about the range
Chris Lattner6f6b4972006-12-05 23:43:59 +00001838 // of the produced value (we no longer know the top-part is all zeros).
1839 // Further this conversion is often much more expensive for typical hardware,
1840 // and causes issues when building libgcc. We disallow fptosi+sext for the
1841 // same reason.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001842 const unsigned numCastOps =
1843 Instruction::CastOpsEnd - Instruction::CastOpsBegin;
1844 static const uint8_t CastResults[numCastOps][numCastOps] = {
1845 // T F F U S F F P I B -+
1846 // R Z S P P I I T P 2 N T |
1847 // U E E 2 2 2 2 R E I T C +- secondOp
1848 // N X X U S F F N X N 2 V |
1849 // C T T I I P P C T T P T -+
1850 { 1, 0, 0,99,99, 0, 0,99,99,99, 0, 3 }, // Trunc -+
1851 { 8, 1, 9,99,99, 2, 0,99,99,99, 2, 3 }, // ZExt |
1852 { 8, 0, 1,99,99, 0, 2,99,99,99, 0, 3 }, // SExt |
Chris Lattner6f6b4972006-12-05 23:43:59 +00001853 { 0, 0, 0,99,99, 0, 0,99,99,99, 0, 3 }, // FPToUI |
1854 { 0, 0, 0,99,99, 0, 0,99,99,99, 0, 3 }, // FPToSI |
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001855 { 99,99,99, 0, 0,99,99, 0, 0,99,99, 4 }, // UIToFP +- firstOp
1856 { 99,99,99, 0, 0,99,99, 0, 0,99,99, 4 }, // SIToFP |
1857 { 99,99,99, 0, 0,99,99, 1, 0,99,99, 4 }, // FPTrunc |
1858 { 99,99,99, 2, 2,99,99,10, 2,99,99, 4 }, // FPExt |
1859 { 1, 0, 0,99,99, 0, 0,99,99,99, 7, 3 }, // PtrToInt |
1860 { 99,99,99,99,99,99,99,99,99,13,99,12 }, // IntToPtr |
1861 { 5, 5, 5, 6, 6, 5, 5, 6, 6,11, 5, 1 }, // BitCast -+
1862 };
1863
1864 int ElimCase = CastResults[firstOp-Instruction::CastOpsBegin]
1865 [secondOp-Instruction::CastOpsBegin];
1866 switch (ElimCase) {
1867 case 0:
1868 // categorically disallowed
1869 return 0;
1870 case 1:
1871 // allowed, use first cast's opcode
1872 return firstOp;
1873 case 2:
1874 // allowed, use second cast's opcode
1875 return secondOp;
1876 case 3:
1877 // no-op cast in second op implies firstOp as long as the DestTy
1878 // is integer
Chris Lattner03c49532007-01-15 02:27:26 +00001879 if (DstTy->isInteger())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001880 return firstOp;
1881 return 0;
1882 case 4:
1883 // no-op cast in second op implies firstOp as long as the DestTy
1884 // is floating point
1885 if (DstTy->isFloatingPoint())
1886 return firstOp;
1887 return 0;
1888 case 5:
1889 // no-op cast in first op implies secondOp as long as the SrcTy
1890 // is an integer
Chris Lattner03c49532007-01-15 02:27:26 +00001891 if (SrcTy->isInteger())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001892 return secondOp;
1893 return 0;
1894 case 6:
1895 // no-op cast in first op implies secondOp as long as the SrcTy
1896 // is a floating point
1897 if (SrcTy->isFloatingPoint())
1898 return secondOp;
1899 return 0;
1900 case 7: {
1901 // ptrtoint, inttoptr -> bitcast (ptr -> ptr) if int size is >= ptr size
Dan Gohman9413de12009-07-21 23:19:40 +00001902 if (!IntPtrTy)
1903 return 0;
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001904 unsigned PtrSize = IntPtrTy->getScalarSizeInBits();
1905 unsigned MidSize = MidTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001906 if (MidSize >= PtrSize)
1907 return Instruction::BitCast;
1908 return 0;
1909 }
1910 case 8: {
1911 // ext, trunc -> bitcast, if the SrcTy and DstTy are same size
1912 // ext, trunc -> ext, if sizeof(SrcTy) < sizeof(DstTy)
1913 // ext, trunc -> trunc, if sizeof(SrcTy) > sizeof(DstTy)
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001914 unsigned SrcSize = SrcTy->getScalarSizeInBits();
1915 unsigned DstSize = DstTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001916 if (SrcSize == DstSize)
1917 return Instruction::BitCast;
1918 else if (SrcSize < DstSize)
1919 return firstOp;
1920 return secondOp;
1921 }
1922 case 9: // zext, sext -> zext, because sext can't sign extend after zext
1923 return Instruction::ZExt;
1924 case 10:
1925 // fpext followed by ftrunc is allowed if the bit size returned to is
1926 // the same as the original, in which case its just a bitcast
1927 if (SrcTy == DstTy)
1928 return Instruction::BitCast;
1929 return 0; // If the types are not the same we can't eliminate it.
1930 case 11:
1931 // bitcast followed by ptrtoint is allowed as long as the bitcast
1932 // is a pointer to pointer cast.
1933 if (isa<PointerType>(SrcTy) && isa<PointerType>(MidTy))
1934 return secondOp;
1935 return 0;
1936 case 12:
1937 // inttoptr, bitcast -> intptr if bitcast is a ptr to ptr cast
1938 if (isa<PointerType>(MidTy) && isa<PointerType>(DstTy))
1939 return firstOp;
1940 return 0;
1941 case 13: {
1942 // inttoptr, ptrtoint -> bitcast if SrcSize<=PtrSize and SrcSize==DstSize
Dan Gohman9413de12009-07-21 23:19:40 +00001943 if (!IntPtrTy)
1944 return 0;
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001945 unsigned PtrSize = IntPtrTy->getScalarSizeInBits();
1946 unsigned SrcSize = SrcTy->getScalarSizeInBits();
1947 unsigned DstSize = DstTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001948 if (SrcSize <= PtrSize && SrcSize == DstSize)
1949 return Instruction::BitCast;
1950 return 0;
1951 }
1952 case 99:
1953 // cast combination can't happen (error in input). This is for all cases
1954 // where the MidTy is not the same for the two cast instructions.
1955 assert(!"Invalid Cast Combination");
1956 return 0;
1957 default:
1958 assert(!"Error in CastResults table!!!");
1959 return 0;
1960 }
1961 return 0;
1962}
1963
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001964CastInst *CastInst::Create(Instruction::CastOps op, Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001965 const Twine &Name, Instruction *InsertBefore) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001966 // Construct and return the appropriate CastInst subclass
1967 switch (op) {
1968 case Trunc: return new TruncInst (S, Ty, Name, InsertBefore);
1969 case ZExt: return new ZExtInst (S, Ty, Name, InsertBefore);
1970 case SExt: return new SExtInst (S, Ty, Name, InsertBefore);
1971 case FPTrunc: return new FPTruncInst (S, Ty, Name, InsertBefore);
1972 case FPExt: return new FPExtInst (S, Ty, Name, InsertBefore);
1973 case UIToFP: return new UIToFPInst (S, Ty, Name, InsertBefore);
1974 case SIToFP: return new SIToFPInst (S, Ty, Name, InsertBefore);
1975 case FPToUI: return new FPToUIInst (S, Ty, Name, InsertBefore);
1976 case FPToSI: return new FPToSIInst (S, Ty, Name, InsertBefore);
1977 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertBefore);
1978 case IntToPtr: return new IntToPtrInst (S, Ty, Name, InsertBefore);
1979 case BitCast: return new BitCastInst (S, Ty, Name, InsertBefore);
1980 default:
1981 assert(!"Invalid opcode provided");
1982 }
1983 return 0;
1984}
1985
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001986CastInst *CastInst::Create(Instruction::CastOps op, Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001987 const Twine &Name, BasicBlock *InsertAtEnd) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001988 // Construct and return the appropriate CastInst subclass
1989 switch (op) {
1990 case Trunc: return new TruncInst (S, Ty, Name, InsertAtEnd);
1991 case ZExt: return new ZExtInst (S, Ty, Name, InsertAtEnd);
1992 case SExt: return new SExtInst (S, Ty, Name, InsertAtEnd);
1993 case FPTrunc: return new FPTruncInst (S, Ty, Name, InsertAtEnd);
1994 case FPExt: return new FPExtInst (S, Ty, Name, InsertAtEnd);
1995 case UIToFP: return new UIToFPInst (S, Ty, Name, InsertAtEnd);
1996 case SIToFP: return new SIToFPInst (S, Ty, Name, InsertAtEnd);
1997 case FPToUI: return new FPToUIInst (S, Ty, Name, InsertAtEnd);
1998 case FPToSI: return new FPToSIInst (S, Ty, Name, InsertAtEnd);
1999 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertAtEnd);
2000 case IntToPtr: return new IntToPtrInst (S, Ty, Name, InsertAtEnd);
2001 case BitCast: return new BitCastInst (S, Ty, Name, InsertAtEnd);
2002 default:
2003 assert(!"Invalid opcode provided");
2004 }
2005 return 0;
2006}
2007
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002008CastInst *CastInst::CreateZExtOrBitCast(Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002009 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002010 Instruction *InsertBefore) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002011 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002012 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
2013 return Create(Instruction::ZExt, S, Ty, Name, InsertBefore);
Reid Spencer5c140882006-12-04 20:17:56 +00002014}
2015
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002016CastInst *CastInst::CreateZExtOrBitCast(Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002017 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002018 BasicBlock *InsertAtEnd) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002019 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002020 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
2021 return Create(Instruction::ZExt, S, Ty, Name, InsertAtEnd);
Reid Spencer5c140882006-12-04 20:17:56 +00002022}
2023
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002024CastInst *CastInst::CreateSExtOrBitCast(Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002025 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002026 Instruction *InsertBefore) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002027 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002028 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
2029 return Create(Instruction::SExt, S, Ty, Name, InsertBefore);
Reid Spencer5c140882006-12-04 20:17:56 +00002030}
2031
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002032CastInst *CastInst::CreateSExtOrBitCast(Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002033 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002034 BasicBlock *InsertAtEnd) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002035 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002036 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
2037 return Create(Instruction::SExt, S, Ty, Name, InsertAtEnd);
Reid Spencer5c140882006-12-04 20:17:56 +00002038}
2039
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002040CastInst *CastInst::CreateTruncOrBitCast(Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002041 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002042 Instruction *InsertBefore) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002043 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002044 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
2045 return Create(Instruction::Trunc, S, Ty, Name, InsertBefore);
Reid Spencer5c140882006-12-04 20:17:56 +00002046}
2047
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002048CastInst *CastInst::CreateTruncOrBitCast(Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002049 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002050 BasicBlock *InsertAtEnd) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002051 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002052 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
2053 return Create(Instruction::Trunc, S, Ty, Name, InsertAtEnd);
Reid Spencer5c140882006-12-04 20:17:56 +00002054}
2055
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002056CastInst *CastInst::CreatePointerCast(Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002057 const Twine &Name,
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002058 BasicBlock *InsertAtEnd) {
2059 assert(isa<PointerType>(S->getType()) && "Invalid cast");
Chris Lattner03c49532007-01-15 02:27:26 +00002060 assert((Ty->isInteger() || isa<PointerType>(Ty)) &&
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002061 "Invalid cast");
2062
Chris Lattner03c49532007-01-15 02:27:26 +00002063 if (Ty->isInteger())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002064 return Create(Instruction::PtrToInt, S, Ty, Name, InsertAtEnd);
2065 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002066}
2067
2068/// @brief Create a BitCast or a PtrToInt cast instruction
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002069CastInst *CastInst::CreatePointerCast(Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002070 const Twine &Name,
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002071 Instruction *InsertBefore) {
2072 assert(isa<PointerType>(S->getType()) && "Invalid cast");
Chris Lattner03c49532007-01-15 02:27:26 +00002073 assert((Ty->isInteger() || isa<PointerType>(Ty)) &&
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002074 "Invalid cast");
2075
Chris Lattner03c49532007-01-15 02:27:26 +00002076 if (Ty->isInteger())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002077 return Create(Instruction::PtrToInt, S, Ty, Name, InsertBefore);
2078 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002079}
2080
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002081CastInst *CastInst::CreateIntegerCast(Value *C, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002082 bool isSigned, const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002083 Instruction *InsertBefore) {
Chris Lattner03c49532007-01-15 02:27:26 +00002084 assert(C->getType()->isInteger() && Ty->isInteger() && "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002085 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2086 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002087 Instruction::CastOps opcode =
2088 (SrcBits == DstBits ? Instruction::BitCast :
2089 (SrcBits > DstBits ? Instruction::Trunc :
2090 (isSigned ? Instruction::SExt : Instruction::ZExt)));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002091 return Create(opcode, C, Ty, Name, InsertBefore);
Reid Spencer7e933472006-12-12 00:49:44 +00002092}
2093
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002094CastInst *CastInst::CreateIntegerCast(Value *C, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002095 bool isSigned, const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002096 BasicBlock *InsertAtEnd) {
Dan Gohman7889f2b2009-06-15 22:25:12 +00002097 assert(C->getType()->isIntOrIntVector() && Ty->isIntOrIntVector() &&
2098 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002099 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2100 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002101 Instruction::CastOps opcode =
2102 (SrcBits == DstBits ? Instruction::BitCast :
2103 (SrcBits > DstBits ? Instruction::Trunc :
2104 (isSigned ? Instruction::SExt : Instruction::ZExt)));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002105 return Create(opcode, C, Ty, Name, InsertAtEnd);
Reid Spencer7e933472006-12-12 00:49:44 +00002106}
2107
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002108CastInst *CastInst::CreateFPCast(Value *C, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002109 const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002110 Instruction *InsertBefore) {
Dan Gohman7889f2b2009-06-15 22:25:12 +00002111 assert(C->getType()->isFPOrFPVector() && Ty->isFPOrFPVector() &&
Reid Spencer7e933472006-12-12 00:49:44 +00002112 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002113 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2114 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002115 Instruction::CastOps opcode =
2116 (SrcBits == DstBits ? Instruction::BitCast :
2117 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002118 return Create(opcode, C, Ty, Name, InsertBefore);
Reid Spencer7e933472006-12-12 00:49:44 +00002119}
2120
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002121CastInst *CastInst::CreateFPCast(Value *C, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002122 const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002123 BasicBlock *InsertAtEnd) {
Dan Gohman7889f2b2009-06-15 22:25:12 +00002124 assert(C->getType()->isFPOrFPVector() && Ty->isFPOrFPVector() &&
Reid Spencer7e933472006-12-12 00:49:44 +00002125 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002126 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2127 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002128 Instruction::CastOps opcode =
2129 (SrcBits == DstBits ? Instruction::BitCast :
2130 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002131 return Create(opcode, C, Ty, Name, InsertAtEnd);
Reid Spencer7e933472006-12-12 00:49:44 +00002132}
2133
Duncan Sands55e50902008-01-06 10:12:28 +00002134// Check whether it is valid to call getCastOpcode for these types.
2135// This routine must be kept in sync with getCastOpcode.
2136bool CastInst::isCastable(const Type *SrcTy, const Type *DestTy) {
2137 if (!SrcTy->isFirstClassType() || !DestTy->isFirstClassType())
2138 return false;
2139
2140 if (SrcTy == DestTy)
2141 return true;
2142
2143 // Get the bit sizes, we'll need these
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002144 unsigned SrcBits = SrcTy->getScalarSizeInBits(); // 0 for ptr
2145 unsigned DestBits = DestTy->getScalarSizeInBits(); // 0 for ptr
Duncan Sands55e50902008-01-06 10:12:28 +00002146
2147 // Run through the possibilities ...
Gabor Greif697e94c2008-05-15 10:04:30 +00002148 if (DestTy->isInteger()) { // Casting to integral
2149 if (SrcTy->isInteger()) { // Casting from integral
Duncan Sands55e50902008-01-06 10:12:28 +00002150 return true;
Gabor Greif697e94c2008-05-15 10:04:30 +00002151 } else if (SrcTy->isFloatingPoint()) { // Casting from floating pt
Duncan Sands55e50902008-01-06 10:12:28 +00002152 return true;
2153 } else if (const VectorType *PTy = dyn_cast<VectorType>(SrcTy)) {
Gabor Greif697e94c2008-05-15 10:04:30 +00002154 // Casting from vector
Duncan Sands55e50902008-01-06 10:12:28 +00002155 return DestBits == PTy->getBitWidth();
Gabor Greif697e94c2008-05-15 10:04:30 +00002156 } else { // Casting from something else
Duncan Sands55e50902008-01-06 10:12:28 +00002157 return isa<PointerType>(SrcTy);
2158 }
Gabor Greif697e94c2008-05-15 10:04:30 +00002159 } else if (DestTy->isFloatingPoint()) { // Casting to floating pt
2160 if (SrcTy->isInteger()) { // Casting from integral
Duncan Sands55e50902008-01-06 10:12:28 +00002161 return true;
Gabor Greif697e94c2008-05-15 10:04:30 +00002162 } else if (SrcTy->isFloatingPoint()) { // Casting from floating pt
Duncan Sands55e50902008-01-06 10:12:28 +00002163 return true;
2164 } else if (const VectorType *PTy = dyn_cast<VectorType>(SrcTy)) {
Gabor Greif697e94c2008-05-15 10:04:30 +00002165 // Casting from vector
Duncan Sands55e50902008-01-06 10:12:28 +00002166 return DestBits == PTy->getBitWidth();
Gabor Greif697e94c2008-05-15 10:04:30 +00002167 } else { // Casting from something else
Duncan Sands55e50902008-01-06 10:12:28 +00002168 return false;
2169 }
2170 } else if (const VectorType *DestPTy = dyn_cast<VectorType>(DestTy)) {
Gabor Greif697e94c2008-05-15 10:04:30 +00002171 // Casting to vector
Duncan Sands55e50902008-01-06 10:12:28 +00002172 if (const VectorType *SrcPTy = dyn_cast<VectorType>(SrcTy)) {
Gabor Greif697e94c2008-05-15 10:04:30 +00002173 // Casting from vector
Duncan Sands55e50902008-01-06 10:12:28 +00002174 return DestPTy->getBitWidth() == SrcPTy->getBitWidth();
Gabor Greif697e94c2008-05-15 10:04:30 +00002175 } else { // Casting from something else
Duncan Sands55e50902008-01-06 10:12:28 +00002176 return DestPTy->getBitWidth() == SrcBits;
2177 }
Gabor Greif697e94c2008-05-15 10:04:30 +00002178 } else if (isa<PointerType>(DestTy)) { // Casting to pointer
2179 if (isa<PointerType>(SrcTy)) { // Casting from pointer
Duncan Sands55e50902008-01-06 10:12:28 +00002180 return true;
Gabor Greif697e94c2008-05-15 10:04:30 +00002181 } else if (SrcTy->isInteger()) { // Casting from integral
Duncan Sands55e50902008-01-06 10:12:28 +00002182 return true;
Gabor Greif697e94c2008-05-15 10:04:30 +00002183 } else { // Casting from something else
Duncan Sands55e50902008-01-06 10:12:28 +00002184 return false;
2185 }
Gabor Greif697e94c2008-05-15 10:04:30 +00002186 } else { // Casting to something else
Duncan Sands55e50902008-01-06 10:12:28 +00002187 return false;
2188 }
2189}
2190
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002191// Provide a way to get a "cast" where the cast opcode is inferred from the
2192// types and size of the operand. This, basically, is a parallel of the
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002193// logic in the castIsValid function below. This axiom should hold:
2194// castIsValid( getCastOpcode(Val, Ty), Val, Ty)
2195// should not assert in castIsValid. In other words, this produces a "correct"
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002196// casting opcode for the arguments passed to it.
Duncan Sands55e50902008-01-06 10:12:28 +00002197// This routine must be kept in sync with isCastable.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002198Instruction::CastOps
Reid Spencerc4dacf22006-12-04 02:43:42 +00002199CastInst::getCastOpcode(
2200 const Value *Src, bool SrcIsSigned, const Type *DestTy, bool DestIsSigned) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002201 // Get the bit sizes, we'll need these
2202 const Type *SrcTy = Src->getType();
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002203 unsigned SrcBits = SrcTy->getScalarSizeInBits(); // 0 for ptr
2204 unsigned DestBits = DestTy->getScalarSizeInBits(); // 0 for ptr
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002205
Duncan Sands55e50902008-01-06 10:12:28 +00002206 assert(SrcTy->isFirstClassType() && DestTy->isFirstClassType() &&
2207 "Only first class types are castable!");
2208
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002209 // Run through the possibilities ...
Chris Lattner03c49532007-01-15 02:27:26 +00002210 if (DestTy->isInteger()) { // Casting to integral
2211 if (SrcTy->isInteger()) { // Casting from integral
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002212 if (DestBits < SrcBits)
2213 return Trunc; // int -> smaller int
2214 else if (DestBits > SrcBits) { // its an extension
Reid Spencerc4dacf22006-12-04 02:43:42 +00002215 if (SrcIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002216 return SExt; // signed -> SEXT
2217 else
2218 return ZExt; // unsigned -> ZEXT
2219 } else {
2220 return BitCast; // Same size, No-op cast
2221 }
2222 } else if (SrcTy->isFloatingPoint()) { // Casting from floating pt
Reid Spencerc4dacf22006-12-04 02:43:42 +00002223 if (DestIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002224 return FPToSI; // FP -> sint
2225 else
2226 return FPToUI; // FP -> uint
Reid Spencerd84d35b2007-02-15 02:26:10 +00002227 } else if (const VectorType *PTy = dyn_cast<VectorType>(SrcTy)) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002228 assert(DestBits == PTy->getBitWidth() &&
Dan Gohmanfead7972007-05-11 21:43:24 +00002229 "Casting vector to integer of different width");
Devang Patele9432132008-11-05 01:37:40 +00002230 PTy = NULL;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002231 return BitCast; // Same size, no-op cast
2232 } else {
2233 assert(isa<PointerType>(SrcTy) &&
2234 "Casting from a value that is not first-class type");
2235 return PtrToInt; // ptr -> int
2236 }
2237 } else if (DestTy->isFloatingPoint()) { // Casting to floating pt
Chris Lattner03c49532007-01-15 02:27:26 +00002238 if (SrcTy->isInteger()) { // Casting from integral
Reid Spencerc4dacf22006-12-04 02:43:42 +00002239 if (SrcIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002240 return SIToFP; // sint -> FP
2241 else
2242 return UIToFP; // uint -> FP
2243 } else if (SrcTy->isFloatingPoint()) { // Casting from floating pt
2244 if (DestBits < SrcBits) {
2245 return FPTrunc; // FP -> smaller FP
2246 } else if (DestBits > SrcBits) {
2247 return FPExt; // FP -> larger FP
2248 } else {
2249 return BitCast; // same size, no-op cast
2250 }
Reid Spencerd84d35b2007-02-15 02:26:10 +00002251 } else if (const VectorType *PTy = dyn_cast<VectorType>(SrcTy)) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002252 assert(DestBits == PTy->getBitWidth() &&
Dan Gohmanfead7972007-05-11 21:43:24 +00002253 "Casting vector to floating point of different width");
Devang Patele9432132008-11-05 01:37:40 +00002254 PTy = NULL;
2255 return BitCast; // same size, no-op cast
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002256 } else {
Torok Edwinfbcc6632009-07-14 16:55:14 +00002257 llvm_unreachable("Casting pointer or non-first class to float");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002258 }
Reid Spencerd84d35b2007-02-15 02:26:10 +00002259 } else if (const VectorType *DestPTy = dyn_cast<VectorType>(DestTy)) {
2260 if (const VectorType *SrcPTy = dyn_cast<VectorType>(SrcTy)) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002261 assert(DestPTy->getBitWidth() == SrcPTy->getBitWidth() &&
Dan Gohmanfead7972007-05-11 21:43:24 +00002262 "Casting vector to vector of different widths");
Devang Patelcb181bb2008-11-21 20:00:59 +00002263 SrcPTy = NULL;
Dan Gohmanfead7972007-05-11 21:43:24 +00002264 return BitCast; // vector -> vector
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002265 } else if (DestPTy->getBitWidth() == SrcBits) {
Dan Gohmanfead7972007-05-11 21:43:24 +00002266 return BitCast; // float/int -> vector
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002267 } else {
Dan Gohmanfead7972007-05-11 21:43:24 +00002268 assert(!"Illegal cast to vector (wrong type or size)");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002269 }
2270 } else if (isa<PointerType>(DestTy)) {
2271 if (isa<PointerType>(SrcTy)) {
2272 return BitCast; // ptr -> ptr
Chris Lattner03c49532007-01-15 02:27:26 +00002273 } else if (SrcTy->isInteger()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002274 return IntToPtr; // int -> ptr
2275 } else {
2276 assert(!"Casting pointer to other than pointer or int");
2277 }
2278 } else {
2279 assert(!"Casting to type that is not first-class");
2280 }
2281
2282 // If we fall through to here we probably hit an assertion cast above
2283 // and assertions are not turned on. Anything we return is an error, so
2284 // BitCast is as good a choice as any.
2285 return BitCast;
2286}
2287
2288//===----------------------------------------------------------------------===//
2289// CastInst SubClass Constructors
2290//===----------------------------------------------------------------------===//
2291
2292/// Check that the construction parameters for a CastInst are correct. This
2293/// could be broken out into the separate constructors but it is useful to have
2294/// it in one place and to eliminate the redundant code for getting the sizes
2295/// of the types involved.
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002296bool
2297CastInst::castIsValid(Instruction::CastOps op, Value *S, const Type *DstTy) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002298
2299 // Check for type sanity on the arguments
2300 const Type *SrcTy = S->getType();
2301 if (!SrcTy->isFirstClassType() || !DstTy->isFirstClassType())
2302 return false;
2303
2304 // Get the size of the types in bits, we'll need this later
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002305 unsigned SrcBitSize = SrcTy->getScalarSizeInBits();
2306 unsigned DstBitSize = DstTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002307
2308 // Switch on the opcode provided
2309 switch (op) {
2310 default: return false; // This is an input error
2311 case Instruction::Trunc:
Dan Gohman550c9af2008-08-14 20:04:46 +00002312 return SrcTy->isIntOrIntVector() &&
2313 DstTy->isIntOrIntVector()&& SrcBitSize > DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002314 case Instruction::ZExt:
Dan Gohman550c9af2008-08-14 20:04:46 +00002315 return SrcTy->isIntOrIntVector() &&
2316 DstTy->isIntOrIntVector()&& SrcBitSize < DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002317 case Instruction::SExt:
Dan Gohman550c9af2008-08-14 20:04:46 +00002318 return SrcTy->isIntOrIntVector() &&
2319 DstTy->isIntOrIntVector()&& SrcBitSize < DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002320 case Instruction::FPTrunc:
Dan Gohman550c9af2008-08-14 20:04:46 +00002321 return SrcTy->isFPOrFPVector() &&
2322 DstTy->isFPOrFPVector() &&
2323 SrcBitSize > DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002324 case Instruction::FPExt:
Dan Gohman550c9af2008-08-14 20:04:46 +00002325 return SrcTy->isFPOrFPVector() &&
2326 DstTy->isFPOrFPVector() &&
2327 SrcBitSize < DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002328 case Instruction::UIToFP:
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002329 case Instruction::SIToFP:
Nate Begemand4d45c22007-11-17 03:58:34 +00002330 if (const VectorType *SVTy = dyn_cast<VectorType>(SrcTy)) {
2331 if (const VectorType *DVTy = dyn_cast<VectorType>(DstTy)) {
Dan Gohman550c9af2008-08-14 20:04:46 +00002332 return SVTy->getElementType()->isIntOrIntVector() &&
2333 DVTy->getElementType()->isFPOrFPVector() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00002334 SVTy->getNumElements() == DVTy->getNumElements();
2335 }
2336 }
Dan Gohman550c9af2008-08-14 20:04:46 +00002337 return SrcTy->isIntOrIntVector() && DstTy->isFPOrFPVector();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002338 case Instruction::FPToUI:
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002339 case Instruction::FPToSI:
Nate Begemand4d45c22007-11-17 03:58:34 +00002340 if (const VectorType *SVTy = dyn_cast<VectorType>(SrcTy)) {
2341 if (const VectorType *DVTy = dyn_cast<VectorType>(DstTy)) {
Dan Gohman550c9af2008-08-14 20:04:46 +00002342 return SVTy->getElementType()->isFPOrFPVector() &&
2343 DVTy->getElementType()->isIntOrIntVector() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00002344 SVTy->getNumElements() == DVTy->getNumElements();
2345 }
2346 }
Dan Gohman550c9af2008-08-14 20:04:46 +00002347 return SrcTy->isFPOrFPVector() && DstTy->isIntOrIntVector();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002348 case Instruction::PtrToInt:
Chris Lattner03c49532007-01-15 02:27:26 +00002349 return isa<PointerType>(SrcTy) && DstTy->isInteger();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002350 case Instruction::IntToPtr:
Chris Lattner03c49532007-01-15 02:27:26 +00002351 return SrcTy->isInteger() && isa<PointerType>(DstTy);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002352 case Instruction::BitCast:
2353 // BitCast implies a no-op cast of type only. No bits change.
2354 // However, you can't cast pointers to anything but pointers.
2355 if (isa<PointerType>(SrcTy) != isa<PointerType>(DstTy))
2356 return false;
2357
Duncan Sands55e50902008-01-06 10:12:28 +00002358 // Now we know we're not dealing with a pointer/non-pointer mismatch. In all
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002359 // these cases, the cast is okay if the source and destination bit widths
2360 // are identical.
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002361 return SrcTy->getPrimitiveSizeInBits() == DstTy->getPrimitiveSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002362 }
2363}
2364
2365TruncInst::TruncInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002366 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002367) : CastInst(Ty, Trunc, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002368 assert(castIsValid(getOpcode(), S, Ty) && "Illegal Trunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002369}
2370
2371TruncInst::TruncInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002372 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002373) : CastInst(Ty, Trunc, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002374 assert(castIsValid(getOpcode(), S, Ty) && "Illegal Trunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002375}
2376
2377ZExtInst::ZExtInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002378 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002379) : CastInst(Ty, ZExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002380 assert(castIsValid(getOpcode(), S, Ty) && "Illegal ZExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002381}
2382
2383ZExtInst::ZExtInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002384 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002385) : CastInst(Ty, ZExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002386 assert(castIsValid(getOpcode(), S, Ty) && "Illegal ZExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002387}
2388SExtInst::SExtInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002389 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002390) : CastInst(Ty, SExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002391 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002392}
2393
Jeff Cohencc08c832006-12-02 02:22:01 +00002394SExtInst::SExtInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002395 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002396) : CastInst(Ty, SExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002397 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002398}
2399
2400FPTruncInst::FPTruncInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002401 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002402) : CastInst(Ty, FPTrunc, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002403 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPTrunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002404}
2405
2406FPTruncInst::FPTruncInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002407 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002408) : CastInst(Ty, FPTrunc, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002409 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPTrunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002410}
2411
2412FPExtInst::FPExtInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002413 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002414) : CastInst(Ty, FPExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002415 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002416}
2417
2418FPExtInst::FPExtInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002419 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002420) : CastInst(Ty, FPExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002421 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002422}
2423
2424UIToFPInst::UIToFPInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002425 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002426) : CastInst(Ty, UIToFP, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002427 assert(castIsValid(getOpcode(), S, Ty) && "Illegal UIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002428}
2429
2430UIToFPInst::UIToFPInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002431 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002432) : CastInst(Ty, UIToFP, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002433 assert(castIsValid(getOpcode(), S, Ty) && "Illegal UIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002434}
2435
2436SIToFPInst::SIToFPInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002437 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002438) : CastInst(Ty, SIToFP, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002439 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002440}
2441
2442SIToFPInst::SIToFPInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002443 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002444) : CastInst(Ty, SIToFP, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002445 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002446}
2447
2448FPToUIInst::FPToUIInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002449 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002450) : CastInst(Ty, FPToUI, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002451 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToUI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002452}
2453
2454FPToUIInst::FPToUIInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002455 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002456) : CastInst(Ty, FPToUI, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002457 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToUI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002458}
2459
2460FPToSIInst::FPToSIInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002461 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002462) : CastInst(Ty, FPToSI, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002463 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToSI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002464}
2465
2466FPToSIInst::FPToSIInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002467 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002468) : CastInst(Ty, FPToSI, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002469 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToSI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002470}
2471
2472PtrToIntInst::PtrToIntInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002473 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002474) : CastInst(Ty, PtrToInt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002475 assert(castIsValid(getOpcode(), S, Ty) && "Illegal PtrToInt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002476}
2477
2478PtrToIntInst::PtrToIntInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002479 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002480) : CastInst(Ty, PtrToInt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002481 assert(castIsValid(getOpcode(), S, Ty) && "Illegal PtrToInt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002482}
2483
2484IntToPtrInst::IntToPtrInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002485 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002486) : CastInst(Ty, IntToPtr, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002487 assert(castIsValid(getOpcode(), S, Ty) && "Illegal IntToPtr");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002488}
2489
2490IntToPtrInst::IntToPtrInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002491 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002492) : CastInst(Ty, IntToPtr, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002493 assert(castIsValid(getOpcode(), S, Ty) && "Illegal IntToPtr");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002494}
2495
2496BitCastInst::BitCastInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002497 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002498) : CastInst(Ty, BitCast, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002499 assert(castIsValid(getOpcode(), S, Ty) && "Illegal BitCast");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002500}
2501
2502BitCastInst::BitCastInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002503 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002504) : CastInst(Ty, BitCast, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002505 assert(castIsValid(getOpcode(), S, Ty) && "Illegal BitCast");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002506}
Chris Lattnerf16dc002006-09-17 19:29:56 +00002507
2508//===----------------------------------------------------------------------===//
Reid Spencerd9436b62006-11-20 01:22:35 +00002509// CmpInst Classes
2510//===----------------------------------------------------------------------===//
2511
Nate Begemand2195702008-05-12 19:01:56 +00002512CmpInst::CmpInst(const Type *ty, OtherOps op, unsigned short predicate,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002513 Value *LHS, Value *RHS, const Twine &Name,
Nate Begemand2195702008-05-12 19:01:56 +00002514 Instruction *InsertBefore)
Nate Begeman66d0a0e2008-05-12 20:11:05 +00002515 : Instruction(ty, op,
Gabor Greiff6caff662008-05-10 08:32:32 +00002516 OperandTraits<CmpInst>::op_begin(this),
2517 OperandTraits<CmpInst>::operands(this),
2518 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00002519 Op<0>() = LHS;
2520 Op<1>() = RHS;
Reid Spencerd9436b62006-11-20 01:22:35 +00002521 SubclassData = predicate;
Reid Spencer871a9ea2007-04-11 13:04:48 +00002522 setName(Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002523}
Gabor Greiff6caff662008-05-10 08:32:32 +00002524
Nate Begemand2195702008-05-12 19:01:56 +00002525CmpInst::CmpInst(const Type *ty, OtherOps op, unsigned short predicate,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002526 Value *LHS, Value *RHS, const Twine &Name,
Nate Begemand2195702008-05-12 19:01:56 +00002527 BasicBlock *InsertAtEnd)
Nate Begeman66d0a0e2008-05-12 20:11:05 +00002528 : Instruction(ty, op,
Gabor Greiff6caff662008-05-10 08:32:32 +00002529 OperandTraits<CmpInst>::op_begin(this),
2530 OperandTraits<CmpInst>::operands(this),
2531 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00002532 Op<0>() = LHS;
2533 Op<1>() = RHS;
Reid Spencerd9436b62006-11-20 01:22:35 +00002534 SubclassData = predicate;
Reid Spencer871a9ea2007-04-11 13:04:48 +00002535 setName(Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002536}
2537
2538CmpInst *
Dan Gohmanad1f0a12009-08-25 23:17:54 +00002539CmpInst::Create(OtherOps Op, unsigned short predicate,
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002540 Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002541 const Twine &Name, Instruction *InsertBefore) {
Reid Spencerd9436b62006-11-20 01:22:35 +00002542 if (Op == Instruction::ICmp) {
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002543 if (InsertBefore)
2544 return new ICmpInst(InsertBefore, CmpInst::Predicate(predicate),
2545 S1, S2, Name);
2546 else
Dan Gohmanad1f0a12009-08-25 23:17:54 +00002547 return new ICmpInst(CmpInst::Predicate(predicate),
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002548 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002549 }
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002550
2551 if (InsertBefore)
2552 return new FCmpInst(InsertBefore, CmpInst::Predicate(predicate),
2553 S1, S2, Name);
2554 else
Dan Gohmanad1f0a12009-08-25 23:17:54 +00002555 return new FCmpInst(CmpInst::Predicate(predicate),
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002556 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002557}
2558
2559CmpInst *
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002560CmpInst::Create(OtherOps Op, unsigned short predicate, Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002561 const Twine &Name, BasicBlock *InsertAtEnd) {
Reid Spencerd9436b62006-11-20 01:22:35 +00002562 if (Op == Instruction::ICmp) {
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002563 return new ICmpInst(*InsertAtEnd, CmpInst::Predicate(predicate),
2564 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002565 }
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002566 return new FCmpInst(*InsertAtEnd, CmpInst::Predicate(predicate),
2567 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002568}
2569
2570void CmpInst::swapOperands() {
2571 if (ICmpInst *IC = dyn_cast<ICmpInst>(this))
2572 IC->swapOperands();
2573 else
2574 cast<FCmpInst>(this)->swapOperands();
2575}
2576
2577bool CmpInst::isCommutative() {
2578 if (ICmpInst *IC = dyn_cast<ICmpInst>(this))
2579 return IC->isCommutative();
2580 return cast<FCmpInst>(this)->isCommutative();
2581}
2582
2583bool CmpInst::isEquality() {
2584 if (ICmpInst *IC = dyn_cast<ICmpInst>(this))
2585 return IC->isEquality();
2586 return cast<FCmpInst>(this)->isEquality();
2587}
2588
2589
Dan Gohman4e724382008-05-31 02:47:54 +00002590CmpInst::Predicate CmpInst::getInversePredicate(Predicate pred) {
Reid Spencerd9436b62006-11-20 01:22:35 +00002591 switch (pred) {
Dan Gohman4e724382008-05-31 02:47:54 +00002592 default: assert(!"Unknown cmp predicate!");
Reid Spencerd9436b62006-11-20 01:22:35 +00002593 case ICMP_EQ: return ICMP_NE;
2594 case ICMP_NE: return ICMP_EQ;
2595 case ICMP_UGT: return ICMP_ULE;
2596 case ICMP_ULT: return ICMP_UGE;
2597 case ICMP_UGE: return ICMP_ULT;
2598 case ICMP_ULE: return ICMP_UGT;
2599 case ICMP_SGT: return ICMP_SLE;
2600 case ICMP_SLT: return ICMP_SGE;
2601 case ICMP_SGE: return ICMP_SLT;
2602 case ICMP_SLE: return ICMP_SGT;
Reid Spencerd9436b62006-11-20 01:22:35 +00002603
Dan Gohman4e724382008-05-31 02:47:54 +00002604 case FCMP_OEQ: return FCMP_UNE;
2605 case FCMP_ONE: return FCMP_UEQ;
2606 case FCMP_OGT: return FCMP_ULE;
2607 case FCMP_OLT: return FCMP_UGE;
2608 case FCMP_OGE: return FCMP_ULT;
2609 case FCMP_OLE: return FCMP_UGT;
2610 case FCMP_UEQ: return FCMP_ONE;
2611 case FCMP_UNE: return FCMP_OEQ;
2612 case FCMP_UGT: return FCMP_OLE;
2613 case FCMP_ULT: return FCMP_OGE;
2614 case FCMP_UGE: return FCMP_OLT;
2615 case FCMP_ULE: return FCMP_OGT;
2616 case FCMP_ORD: return FCMP_UNO;
2617 case FCMP_UNO: return FCMP_ORD;
2618 case FCMP_TRUE: return FCMP_FALSE;
2619 case FCMP_FALSE: return FCMP_TRUE;
Reid Spencerd9436b62006-11-20 01:22:35 +00002620 }
2621}
2622
Reid Spencer266e42b2006-12-23 06:05:41 +00002623ICmpInst::Predicate ICmpInst::getSignedPredicate(Predicate pred) {
2624 switch (pred) {
2625 default: assert(! "Unknown icmp predicate!");
2626 case ICMP_EQ: case ICMP_NE:
2627 case ICMP_SGT: case ICMP_SLT: case ICMP_SGE: case ICMP_SLE:
2628 return pred;
2629 case ICMP_UGT: return ICMP_SGT;
2630 case ICMP_ULT: return ICMP_SLT;
2631 case ICMP_UGE: return ICMP_SGE;
2632 case ICMP_ULE: return ICMP_SLE;
2633 }
2634}
2635
Nick Lewycky8ea81e82008-01-28 03:48:02 +00002636ICmpInst::Predicate ICmpInst::getUnsignedPredicate(Predicate pred) {
2637 switch (pred) {
2638 default: assert(! "Unknown icmp predicate!");
2639 case ICMP_EQ: case ICMP_NE:
2640 case ICMP_UGT: case ICMP_ULT: case ICMP_UGE: case ICMP_ULE:
2641 return pred;
2642 case ICMP_SGT: return ICMP_UGT;
2643 case ICMP_SLT: return ICMP_ULT;
2644 case ICMP_SGE: return ICMP_UGE;
2645 case ICMP_SLE: return ICMP_ULE;
2646 }
2647}
2648
Reid Spencer266e42b2006-12-23 06:05:41 +00002649bool ICmpInst::isSignedPredicate(Predicate pred) {
2650 switch (pred) {
2651 default: assert(! "Unknown icmp predicate!");
2652 case ICMP_SGT: case ICMP_SLT: case ICMP_SGE: case ICMP_SLE:
2653 return true;
2654 case ICMP_EQ: case ICMP_NE: case ICMP_UGT: case ICMP_ULT:
2655 case ICMP_UGE: case ICMP_ULE:
2656 return false;
2657 }
2658}
2659
Reid Spencer0286bc12007-02-28 22:00:54 +00002660/// Initialize a set of values that all satisfy the condition with C.
2661///
2662ConstantRange
2663ICmpInst::makeConstantRange(Predicate pred, const APInt &C) {
2664 APInt Lower(C);
2665 APInt Upper(C);
2666 uint32_t BitWidth = C.getBitWidth();
2667 switch (pred) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00002668 default: llvm_unreachable("Invalid ICmp opcode to ConstantRange ctor!");
Reid Spencer0286bc12007-02-28 22:00:54 +00002669 case ICmpInst::ICMP_EQ: Upper++; break;
2670 case ICmpInst::ICMP_NE: Lower++; break;
2671 case ICmpInst::ICMP_ULT: Lower = APInt::getMinValue(BitWidth); break;
2672 case ICmpInst::ICMP_SLT: Lower = APInt::getSignedMinValue(BitWidth); break;
2673 case ICmpInst::ICMP_UGT:
2674 Lower++; Upper = APInt::getMinValue(BitWidth); // Min = Next(Max)
2675 break;
2676 case ICmpInst::ICMP_SGT:
2677 Lower++; Upper = APInt::getSignedMinValue(BitWidth); // Min = Next(Max)
2678 break;
2679 case ICmpInst::ICMP_ULE:
2680 Lower = APInt::getMinValue(BitWidth); Upper++;
2681 break;
2682 case ICmpInst::ICMP_SLE:
2683 Lower = APInt::getSignedMinValue(BitWidth); Upper++;
2684 break;
2685 case ICmpInst::ICMP_UGE:
2686 Upper = APInt::getMinValue(BitWidth); // Min = Next(Max)
2687 break;
2688 case ICmpInst::ICMP_SGE:
2689 Upper = APInt::getSignedMinValue(BitWidth); // Min = Next(Max)
2690 break;
2691 }
2692 return ConstantRange(Lower, Upper);
2693}
2694
Dan Gohman4e724382008-05-31 02:47:54 +00002695CmpInst::Predicate CmpInst::getSwappedPredicate(Predicate pred) {
Reid Spencerd9436b62006-11-20 01:22:35 +00002696 switch (pred) {
Dan Gohman4e724382008-05-31 02:47:54 +00002697 default: assert(!"Unknown cmp predicate!");
2698 case ICMP_EQ: case ICMP_NE:
2699 return pred;
2700 case ICMP_SGT: return ICMP_SLT;
2701 case ICMP_SLT: return ICMP_SGT;
2702 case ICMP_SGE: return ICMP_SLE;
2703 case ICMP_SLE: return ICMP_SGE;
2704 case ICMP_UGT: return ICMP_ULT;
2705 case ICMP_ULT: return ICMP_UGT;
2706 case ICMP_UGE: return ICMP_ULE;
2707 case ICMP_ULE: return ICMP_UGE;
2708
Reid Spencerd9436b62006-11-20 01:22:35 +00002709 case FCMP_FALSE: case FCMP_TRUE:
2710 case FCMP_OEQ: case FCMP_ONE:
2711 case FCMP_UEQ: case FCMP_UNE:
2712 case FCMP_ORD: case FCMP_UNO:
2713 return pred;
2714 case FCMP_OGT: return FCMP_OLT;
2715 case FCMP_OLT: return FCMP_OGT;
2716 case FCMP_OGE: return FCMP_OLE;
2717 case FCMP_OLE: return FCMP_OGE;
2718 case FCMP_UGT: return FCMP_ULT;
2719 case FCMP_ULT: return FCMP_UGT;
2720 case FCMP_UGE: return FCMP_ULE;
2721 case FCMP_ULE: return FCMP_UGE;
2722 }
2723}
2724
Reid Spencer266e42b2006-12-23 06:05:41 +00002725bool CmpInst::isUnsigned(unsigned short predicate) {
2726 switch (predicate) {
2727 default: return false;
2728 case ICmpInst::ICMP_ULT: case ICmpInst::ICMP_ULE: case ICmpInst::ICMP_UGT:
2729 case ICmpInst::ICMP_UGE: return true;
2730 }
2731}
2732
2733bool CmpInst::isSigned(unsigned short predicate){
2734 switch (predicate) {
2735 default: return false;
2736 case ICmpInst::ICMP_SLT: case ICmpInst::ICMP_SLE: case ICmpInst::ICMP_SGT:
2737 case ICmpInst::ICMP_SGE: return true;
2738 }
2739}
2740
2741bool CmpInst::isOrdered(unsigned short predicate) {
2742 switch (predicate) {
2743 default: return false;
2744 case FCmpInst::FCMP_OEQ: case FCmpInst::FCMP_ONE: case FCmpInst::FCMP_OGT:
2745 case FCmpInst::FCMP_OLT: case FCmpInst::FCMP_OGE: case FCmpInst::FCMP_OLE:
2746 case FCmpInst::FCMP_ORD: return true;
2747 }
2748}
2749
2750bool CmpInst::isUnordered(unsigned short predicate) {
2751 switch (predicate) {
2752 default: return false;
2753 case FCmpInst::FCMP_UEQ: case FCmpInst::FCMP_UNE: case FCmpInst::FCMP_UGT:
2754 case FCmpInst::FCMP_ULT: case FCmpInst::FCMP_UGE: case FCmpInst::FCMP_ULE:
2755 case FCmpInst::FCMP_UNO: return true;
2756 }
2757}
2758
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002759//===----------------------------------------------------------------------===//
2760// SwitchInst Implementation
2761//===----------------------------------------------------------------------===//
2762
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002763void SwitchInst::init(Value *Value, BasicBlock *Default, unsigned NumCases) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002764 assert(Value && Default);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002765 ReservedSpace = 2+NumCases*2;
2766 NumOperands = 2;
Gabor Greiff6caff662008-05-10 08:32:32 +00002767 OperandList = allocHungoffUses(ReservedSpace);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002768
Gabor Greif2d3024d2008-05-26 21:33:52 +00002769 OperandList[0] = Value;
2770 OperandList[1] = Default;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002771}
2772
Chris Lattner2195fc42007-02-24 00:55:48 +00002773/// SwitchInst ctor - Create a new switch instruction, specifying a value to
2774/// switch on and a default destination. The number of additional cases can
2775/// be specified here to make memory allocation more efficient. This
2776/// constructor can also autoinsert before another instruction.
2777SwitchInst::SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
2778 Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +00002779 : TerminatorInst(Type::getVoidTy(Value->getContext()), Instruction::Switch,
2780 0, 0, InsertBefore) {
Chris Lattner2195fc42007-02-24 00:55:48 +00002781 init(Value, Default, NumCases);
2782}
2783
2784/// SwitchInst ctor - Create a new switch instruction, specifying a value to
2785/// switch on and a default destination. The number of additional cases can
2786/// be specified here to make memory allocation more efficient. This
2787/// constructor also autoinserts at the end of the specified BasicBlock.
2788SwitchInst::SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
2789 BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +00002790 : TerminatorInst(Type::getVoidTy(Value->getContext()), Instruction::Switch,
2791 0, 0, InsertAtEnd) {
Chris Lattner2195fc42007-02-24 00:55:48 +00002792 init(Value, Default, NumCases);
2793}
2794
Misha Brukmanb1c93172005-04-21 23:48:37 +00002795SwitchInst::SwitchInst(const SwitchInst &SI)
Owen Anderson55f1c092009-08-13 21:58:54 +00002796 : TerminatorInst(Type::getVoidTy(SI.getContext()), Instruction::Switch,
Gabor Greiff6caff662008-05-10 08:32:32 +00002797 allocHungoffUses(SI.getNumOperands()), SI.getNumOperands()) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002798 Use *OL = OperandList, *InOL = SI.OperandList;
2799 for (unsigned i = 0, E = SI.getNumOperands(); i != E; i+=2) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00002800 OL[i] = InOL[i];
2801 OL[i+1] = InOL[i+1];
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002802 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00002803 SubclassOptionalData = SI.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002804}
2805
Gordon Henriksen14a55692007-12-10 02:14:30 +00002806SwitchInst::~SwitchInst() {
Gabor Greiff6caff662008-05-10 08:32:32 +00002807 dropHungoffUses(OperandList);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002808}
2809
2810
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002811/// addCase - Add an entry to the switch instruction...
2812///
Chris Lattner47ac1872005-02-24 05:32:09 +00002813void SwitchInst::addCase(ConstantInt *OnVal, BasicBlock *Dest) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002814 unsigned OpNo = NumOperands;
2815 if (OpNo+2 > ReservedSpace)
2816 resizeOperands(0); // Get more space!
2817 // Initialize some new operands.
Chris Lattnerf711f8d2005-01-29 01:05:12 +00002818 assert(OpNo+1 < ReservedSpace && "Growing didn't work!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002819 NumOperands = OpNo+2;
Gabor Greif2d3024d2008-05-26 21:33:52 +00002820 OperandList[OpNo] = OnVal;
2821 OperandList[OpNo+1] = Dest;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002822}
2823
2824/// removeCase - This method removes the specified successor from the switch
2825/// instruction. Note that this cannot be used to remove the default
2826/// destination (successor #0).
2827///
2828void SwitchInst::removeCase(unsigned idx) {
2829 assert(idx != 0 && "Cannot remove the default case!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002830 assert(idx*2 < getNumOperands() && "Successor index out of range!!!");
2831
2832 unsigned NumOps = getNumOperands();
2833 Use *OL = OperandList;
2834
2835 // Move everything after this operand down.
2836 //
2837 // FIXME: we could just swap with the end of the list, then erase. However,
2838 // client might not expect this to happen. The code as it is thrashes the
2839 // use/def lists, which is kinda lame.
2840 for (unsigned i = (idx+1)*2; i != NumOps; i += 2) {
2841 OL[i-2] = OL[i];
2842 OL[i-2+1] = OL[i+1];
2843 }
2844
2845 // Nuke the last value.
2846 OL[NumOps-2].set(0);
2847 OL[NumOps-2+1].set(0);
2848 NumOperands = NumOps-2;
2849}
2850
2851/// resizeOperands - resize operands - This adjusts the length of the operands
2852/// list according to the following behavior:
2853/// 1. If NumOps == 0, grow the operand list in response to a push_back style
Gabor Greiff6caff662008-05-10 08:32:32 +00002854/// of operation. This grows the number of ops by 3 times.
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002855/// 2. If NumOps > NumOperands, reserve space for NumOps operands.
2856/// 3. If NumOps == NumOperands, trim the reserved space.
2857///
2858void SwitchInst::resizeOperands(unsigned NumOps) {
Gabor Greiff6caff662008-05-10 08:32:32 +00002859 unsigned e = getNumOperands();
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002860 if (NumOps == 0) {
Gabor Greiff6caff662008-05-10 08:32:32 +00002861 NumOps = e*3;
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002862 } else if (NumOps*2 > NumOperands) {
2863 // No resize needed.
2864 if (ReservedSpace >= NumOps) return;
2865 } else if (NumOps == NumOperands) {
2866 if (ReservedSpace == NumOps) return;
2867 } else {
Chris Lattnerf711f8d2005-01-29 01:05:12 +00002868 return;
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002869 }
2870
2871 ReservedSpace = NumOps;
Gabor Greiff6caff662008-05-10 08:32:32 +00002872 Use *NewOps = allocHungoffUses(NumOps);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002873 Use *OldOps = OperandList;
Gabor Greiff6caff662008-05-10 08:32:32 +00002874 for (unsigned i = 0; i != e; ++i) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00002875 NewOps[i] = OldOps[i];
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002876 }
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002877 OperandList = NewOps;
Gabor Greiff6caff662008-05-10 08:32:32 +00002878 if (OldOps) Use::zap(OldOps, OldOps + e, true);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002879}
2880
2881
2882BasicBlock *SwitchInst::getSuccessorV(unsigned idx) const {
2883 return getSuccessor(idx);
2884}
2885unsigned SwitchInst::getNumSuccessorsV() const {
2886 return getNumSuccessors();
2887}
2888void SwitchInst::setSuccessorV(unsigned idx, BasicBlock *B) {
2889 setSuccessor(idx, B);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002890}
Chris Lattnerf22be932004-10-15 23:52:53 +00002891
Chris Lattnerf22be932004-10-15 23:52:53 +00002892// Define these methods here so vtables don't get emitted into every translation
2893// unit that uses these classes.
2894
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002895GetElementPtrInst *GetElementPtrInst::clone(LLVMContext&) const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00002896 GetElementPtrInst *New = new(getNumOperands()) GetElementPtrInst(*this);
2897 New->SubclassOptionalData = SubclassOptionalData;
2898 return New;
Chris Lattnerf22be932004-10-15 23:52:53 +00002899}
2900
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002901BinaryOperator *BinaryOperator::clone(LLVMContext&) const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00002902 BinaryOperator *New = Create(getOpcode(), Op<0>(), Op<1>());
2903 New->SubclassOptionalData = SubclassOptionalData;
2904 return New;
Chris Lattnerf22be932004-10-15 23:52:53 +00002905}
2906
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002907FCmpInst* FCmpInst::clone(LLVMContext &Context) const {
Dan Gohmanad1f0a12009-08-25 23:17:54 +00002908 FCmpInst *New = new FCmpInst(getPredicate(), Op<0>(), Op<1>());
Dan Gohmanc8a27f22009-08-25 22:11:20 +00002909 New->SubclassOptionalData = SubclassOptionalData;
2910 return New;
Chris Lattner0b490b02007-08-24 20:48:18 +00002911}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002912ICmpInst* ICmpInst::clone(LLVMContext &Context) const {
Dan Gohmanad1f0a12009-08-25 23:17:54 +00002913 ICmpInst *New = new ICmpInst(getPredicate(), Op<0>(), Op<1>());
Dan Gohmanc8a27f22009-08-25 22:11:20 +00002914 New->SubclassOptionalData = SubclassOptionalData;
2915 return New;
Reid Spencerd9436b62006-11-20 01:22:35 +00002916}
2917
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002918ExtractValueInst *ExtractValueInst::clone(LLVMContext&) const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00002919 ExtractValueInst *New = new ExtractValueInst(*this);
2920 New->SubclassOptionalData = SubclassOptionalData;
2921 return New;
Dan Gohman0752bff2008-05-23 00:36:11 +00002922}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002923InsertValueInst *InsertValueInst::clone(LLVMContext&) const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00002924 InsertValueInst *New = new InsertValueInst(*this);
2925 New->SubclassOptionalData = SubclassOptionalData;
2926 return New;
Dan Gohman0752bff2008-05-23 00:36:11 +00002927}
2928
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002929MallocInst *MallocInst::clone(LLVMContext&) const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00002930 MallocInst *New = new MallocInst(getAllocatedType(),
2931 (Value*)getOperand(0),
2932 getAlignment());
2933 New->SubclassOptionalData = SubclassOptionalData;
2934 return New;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002935}
Dan Gohman0752bff2008-05-23 00:36:11 +00002936
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002937AllocaInst *AllocaInst::clone(LLVMContext&) const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00002938 AllocaInst *New = new AllocaInst(getAllocatedType(),
2939 (Value*)getOperand(0),
2940 getAlignment());
2941 New->SubclassOptionalData = SubclassOptionalData;
2942 return New;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002943}
2944
2945FreeInst *FreeInst::clone(LLVMContext&) const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00002946 FreeInst *New = new FreeInst(getOperand(0));
2947 New->SubclassOptionalData = SubclassOptionalData;
2948 return New;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002949}
2950
2951LoadInst *LoadInst::clone(LLVMContext&) const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00002952 LoadInst *New = new LoadInst(getOperand(0),
2953 Twine(), isVolatile(),
2954 getAlignment());
2955 New->SubclassOptionalData = SubclassOptionalData;
2956 return New;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002957}
2958
2959StoreInst *StoreInst::clone(LLVMContext&) const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00002960 StoreInst *New = new StoreInst(getOperand(0), getOperand(1),
2961 isVolatile(), getAlignment());
2962 New->SubclassOptionalData = SubclassOptionalData;
2963 return New;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002964}
2965
Dan Gohmanfaf516f2009-08-25 22:29:08 +00002966TruncInst *TruncInst::clone(LLVMContext&) const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00002967 TruncInst *New = new TruncInst(getOperand(0), getType());
2968 New->SubclassOptionalData = SubclassOptionalData;
2969 return New;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002970}
2971
Dan Gohmanfaf516f2009-08-25 22:29:08 +00002972ZExtInst *ZExtInst::clone(LLVMContext&) const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00002973 ZExtInst *New = new ZExtInst(getOperand(0), getType());
2974 New->SubclassOptionalData = SubclassOptionalData;
2975 return New;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002976}
2977
Dan Gohmanfaf516f2009-08-25 22:29:08 +00002978SExtInst *SExtInst::clone(LLVMContext&) const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00002979 SExtInst *New = new SExtInst(getOperand(0), getType());
2980 New->SubclassOptionalData = SubclassOptionalData;
2981 return New;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002982}
2983
Dan Gohmanfaf516f2009-08-25 22:29:08 +00002984FPTruncInst *FPTruncInst::clone(LLVMContext&) const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00002985 FPTruncInst *New = new FPTruncInst(getOperand(0), getType());
2986 New->SubclassOptionalData = SubclassOptionalData;
2987 return New;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002988}
2989
Dan Gohmanfaf516f2009-08-25 22:29:08 +00002990FPExtInst *FPExtInst::clone(LLVMContext&) const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00002991 FPExtInst *New = new FPExtInst(getOperand(0), getType());
2992 New->SubclassOptionalData = SubclassOptionalData;
2993 return New;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002994}
2995
Dan Gohmanfaf516f2009-08-25 22:29:08 +00002996UIToFPInst *UIToFPInst::clone(LLVMContext&) const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00002997 UIToFPInst *New = new UIToFPInst(getOperand(0), getType());
2998 New->SubclassOptionalData = SubclassOptionalData;
2999 return New;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003000}
3001
Dan Gohmanfaf516f2009-08-25 22:29:08 +00003002SIToFPInst *SIToFPInst::clone(LLVMContext&) const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003003 SIToFPInst *New = new SIToFPInst(getOperand(0), getType());
3004 New->SubclassOptionalData = SubclassOptionalData;
3005 return New;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003006}
3007
Dan Gohmanfaf516f2009-08-25 22:29:08 +00003008FPToUIInst *FPToUIInst::clone(LLVMContext&) const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003009 FPToUIInst *New = new FPToUIInst(getOperand(0), getType());
3010 New->SubclassOptionalData = SubclassOptionalData;
3011 return New;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003012}
3013
Dan Gohmanfaf516f2009-08-25 22:29:08 +00003014FPToSIInst *FPToSIInst::clone(LLVMContext&) const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003015 FPToSIInst *New = new FPToSIInst(getOperand(0), getType());
3016 New->SubclassOptionalData = SubclassOptionalData;
3017 return New;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003018}
3019
Dan Gohmanfaf516f2009-08-25 22:29:08 +00003020PtrToIntInst *PtrToIntInst::clone(LLVMContext&) const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003021 PtrToIntInst *New = new PtrToIntInst(getOperand(0), getType());
3022 New->SubclassOptionalData = SubclassOptionalData;
3023 return New;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003024}
3025
Dan Gohmanfaf516f2009-08-25 22:29:08 +00003026IntToPtrInst *IntToPtrInst::clone(LLVMContext&) const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003027 IntToPtrInst *New = new IntToPtrInst(getOperand(0), getType());
3028 New->SubclassOptionalData = SubclassOptionalData;
3029 return New;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003030}
3031
Dan Gohmanfaf516f2009-08-25 22:29:08 +00003032BitCastInst *BitCastInst::clone(LLVMContext&) const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003033 BitCastInst *New = new BitCastInst(getOperand(0), getType());
3034 New->SubclassOptionalData = SubclassOptionalData;
3035 return New;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003036}
3037
3038CallInst *CallInst::clone(LLVMContext&) const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003039 CallInst *New = new(getNumOperands()) CallInst(*this);
3040 New->SubclassOptionalData = SubclassOptionalData;
3041 return New;
Gabor Greif697e94c2008-05-15 10:04:30 +00003042}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003043
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003044SelectInst *SelectInst::clone(LLVMContext&) const {
3045 SelectInst *New = SelectInst::Create(getOperand(0),
3046 getOperand(1),
3047 getOperand(2));
3048 New->SubclassOptionalData = SubclassOptionalData;
3049 return New;
Gabor Greif697e94c2008-05-15 10:04:30 +00003050}
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003051
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003052VAArgInst *VAArgInst::clone(LLVMContext&) const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003053 VAArgInst *New = new VAArgInst(getOperand(0), getType());
3054 New->SubclassOptionalData = SubclassOptionalData;
3055 return New;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003056}
3057
3058ExtractElementInst *ExtractElementInst::clone(LLVMContext&) const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003059 ExtractElementInst *New = ExtractElementInst::Create(getOperand(0),
3060 getOperand(1));
3061 New->SubclassOptionalData = SubclassOptionalData;
3062 return New;
Chris Lattnerbbe0a422006-04-08 01:18:18 +00003063}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003064
3065InsertElementInst *InsertElementInst::clone(LLVMContext&) const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003066 InsertElementInst *New = InsertElementInst::Create(getOperand(0),
3067 getOperand(1),
3068 getOperand(2));
3069 New->SubclassOptionalData = SubclassOptionalData;
3070 return New;
Chris Lattnerbbe0a422006-04-08 01:18:18 +00003071}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003072
3073ShuffleVectorInst *ShuffleVectorInst::clone(LLVMContext&) const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003074 ShuffleVectorInst *New = new ShuffleVectorInst(getOperand(0),
3075 getOperand(1),
3076 getOperand(2));
3077 New->SubclassOptionalData = SubclassOptionalData;
3078 return New;
Chris Lattnerbbe0a422006-04-08 01:18:18 +00003079}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003080
3081PHINode *PHINode::clone(LLVMContext&) const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003082 PHINode *New = new PHINode(*this);
3083 New->SubclassOptionalData = SubclassOptionalData;
3084 return New;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003085}
3086
3087ReturnInst *ReturnInst::clone(LLVMContext&) const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003088 ReturnInst *New = new(getNumOperands()) ReturnInst(*this);
3089 New->SubclassOptionalData = SubclassOptionalData;
3090 return New;
Gabor Greif697e94c2008-05-15 10:04:30 +00003091}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003092
3093BranchInst *BranchInst::clone(LLVMContext&) const {
Gabor Greifc91aa9b2009-03-12 18:34:49 +00003094 unsigned Ops(getNumOperands());
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003095 BranchInst *New = new(Ops, Ops == 1) BranchInst(*this);
3096 New->SubclassOptionalData = SubclassOptionalData;
3097 return New;
Gabor Greif697e94c2008-05-15 10:04:30 +00003098}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003099
3100SwitchInst *SwitchInst::clone(LLVMContext&) const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003101 SwitchInst *New = new SwitchInst(*this);
3102 New->SubclassOptionalData = SubclassOptionalData;
3103 return New;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003104}
3105
3106InvokeInst *InvokeInst::clone(LLVMContext&) const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003107 InvokeInst *New = new(getNumOperands()) InvokeInst(*this);
3108 New->SubclassOptionalData = SubclassOptionalData;
3109 return New;
Gabor Greif697e94c2008-05-15 10:04:30 +00003110}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003111
Owen Anderson55f1c092009-08-13 21:58:54 +00003112UnwindInst *UnwindInst::clone(LLVMContext &C) const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003113 UnwindInst *New = new UnwindInst(C);
3114 New->SubclassOptionalData = SubclassOptionalData;
3115 return New;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003116}
3117
Owen Anderson55f1c092009-08-13 21:58:54 +00003118UnreachableInst *UnreachableInst::clone(LLVMContext &C) const {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003119 UnreachableInst *New = new UnreachableInst(C);
3120 New->SubclassOptionalData = SubclassOptionalData;
3121 return New;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003122}