blob: 33acd0d040ac4647cba4846ba5eb0031133f9a7e [file] [log] [blame]
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001//===-- Instructions.cpp - Implement the LLVM instructions ----------------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanb1c93172005-04-21 23:48:37 +00007//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00008//===----------------------------------------------------------------------===//
9//
Chris Lattnerafdb3de2005-01-29 00:35:16 +000010// This file implements all of the non-inline methods for the LLVM instruction
11// classes.
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +000012//
13//===----------------------------------------------------------------------===//
14
Devang Pateladd58652009-09-23 18:32:25 +000015#include "LLVMContextImpl.h"
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +000016#include "llvm/Constants.h"
17#include "llvm/DerivedTypes.h"
18#include "llvm/Function.h"
19#include "llvm/Instructions.h"
Evan Cheng1d9d4bd2009-09-10 04:36:43 +000020#include "llvm/Module.h"
Dan Gohmand2a251f2009-07-17 21:33:58 +000021#include "llvm/Operator.h"
Torok Edwin6dd27302009-07-08 18:01:40 +000022#include "llvm/Support/ErrorHandling.h"
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +000023#include "llvm/Support/CallSite.h"
Reid Spencer0286bc12007-02-28 22:00:54 +000024#include "llvm/Support/ConstantRange.h"
Christopher Lamb84485702007-04-22 19:24:39 +000025#include "llvm/Support/MathExtras.h"
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +000026using namespace llvm;
27
Chris Lattner3e13b8c2008-01-02 23:42:30 +000028//===----------------------------------------------------------------------===//
29// CallSite Class
30//===----------------------------------------------------------------------===//
31
Gabor Greifa2fbc0a2010-03-24 13:21:49 +000032User::op_iterator CallSite::getCallee() const {
33 Instruction *II(getInstruction());
34 return isCall()
Gabor Greif638c8232010-08-05 21:25:49 +000035 ? cast<CallInst>(II)->op_end() - 1 // Skip Callee
Gabor Greif6d673952010-07-16 09:38:02 +000036 : cast<InvokeInst>(II)->op_end() - 3; // Skip BB, BB, Callee
Gabor Greifa2fbc0a2010-03-24 13:21:49 +000037}
38
Gordon Henriksen14a55692007-12-10 02:14:30 +000039//===----------------------------------------------------------------------===//
40// TerminatorInst Class
41//===----------------------------------------------------------------------===//
42
43// Out of line virtual method, so the vtable, etc has a home.
44TerminatorInst::~TerminatorInst() {
45}
46
Gabor Greiff6caff662008-05-10 08:32:32 +000047//===----------------------------------------------------------------------===//
48// UnaryInstruction Class
49//===----------------------------------------------------------------------===//
50
Gordon Henriksen14a55692007-12-10 02:14:30 +000051// Out of line virtual method, so the vtable, etc has a home.
52UnaryInstruction::~UnaryInstruction() {
53}
54
Chris Lattnerafdb3de2005-01-29 00:35:16 +000055//===----------------------------------------------------------------------===//
Chris Lattner88107952008-12-29 00:12:50 +000056// SelectInst Class
57//===----------------------------------------------------------------------===//
58
59/// areInvalidOperands - Return a string if the specified operands are invalid
60/// for a select operation, otherwise return null.
61const char *SelectInst::areInvalidOperands(Value *Op0, Value *Op1, Value *Op2) {
62 if (Op1->getType() != Op2->getType())
63 return "both values to select must have same type";
64
65 if (const VectorType *VT = dyn_cast<VectorType>(Op0->getType())) {
66 // Vector select.
Owen Anderson55f1c092009-08-13 21:58:54 +000067 if (VT->getElementType() != Type::getInt1Ty(Op0->getContext()))
Chris Lattner88107952008-12-29 00:12:50 +000068 return "vector select condition element type must be i1";
69 const VectorType *ET = dyn_cast<VectorType>(Op1->getType());
70 if (ET == 0)
71 return "selected values for vector select must be vectors";
72 if (ET->getNumElements() != VT->getNumElements())
73 return "vector select requires selected vectors to have "
74 "the same vector length as select condition";
Owen Anderson55f1c092009-08-13 21:58:54 +000075 } else if (Op0->getType() != Type::getInt1Ty(Op0->getContext())) {
Chris Lattner88107952008-12-29 00:12:50 +000076 return "select condition must be i1 or <n x i1>";
77 }
78 return 0;
79}
80
81
82//===----------------------------------------------------------------------===//
Chris Lattnerafdb3de2005-01-29 00:35:16 +000083// PHINode Class
84//===----------------------------------------------------------------------===//
85
86PHINode::PHINode(const PHINode &PN)
87 : Instruction(PN.getType(), Instruction::PHI,
Gabor Greiff6caff662008-05-10 08:32:32 +000088 allocHungoffUses(PN.getNumOperands()), PN.getNumOperands()),
Chris Lattnerafdb3de2005-01-29 00:35:16 +000089 ReservedSpace(PN.getNumOperands()) {
90 Use *OL = OperandList;
91 for (unsigned i = 0, e = PN.getNumOperands(); i != e; i+=2) {
Gabor Greif2d3024d2008-05-26 21:33:52 +000092 OL[i] = PN.getOperand(i);
93 OL[i+1] = PN.getOperand(i+1);
Chris Lattnerafdb3de2005-01-29 00:35:16 +000094 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +000095 SubclassOptionalData = PN.SubclassOptionalData;
Chris Lattnerafdb3de2005-01-29 00:35:16 +000096}
97
Gordon Henriksen14a55692007-12-10 02:14:30 +000098PHINode::~PHINode() {
Chris Lattner7d6aac82008-06-16 04:02:40 +000099 if (OperandList)
100 dropHungoffUses(OperandList);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000101}
102
103// removeIncomingValue - Remove an incoming value. This is useful if a
104// predecessor basic block is deleted.
105Value *PHINode::removeIncomingValue(unsigned Idx, bool DeletePHIIfEmpty) {
106 unsigned NumOps = getNumOperands();
107 Use *OL = OperandList;
108 assert(Idx*2 < NumOps && "BB not in PHI node!");
109 Value *Removed = OL[Idx*2];
110
111 // Move everything after this operand down.
112 //
113 // FIXME: we could just swap with the end of the list, then erase. However,
114 // client might not expect this to happen. The code as it is thrashes the
115 // use/def lists, which is kinda lame.
116 for (unsigned i = (Idx+1)*2; i != NumOps; i += 2) {
117 OL[i-2] = OL[i];
118 OL[i-2+1] = OL[i+1];
119 }
120
121 // Nuke the last value.
122 OL[NumOps-2].set(0);
123 OL[NumOps-2+1].set(0);
124 NumOperands = NumOps-2;
125
126 // If the PHI node is dead, because it has zero entries, nuke it now.
127 if (NumOps == 2 && DeletePHIIfEmpty) {
128 // If anyone is using this PHI, make them use a dummy value instead...
Owen Andersonb292b8c2009-07-30 23:03:37 +0000129 replaceAllUsesWith(UndefValue::get(getType()));
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000130 eraseFromParent();
131 }
132 return Removed;
133}
134
135/// resizeOperands - resize operands - This adjusts the length of the operands
136/// list according to the following behavior:
137/// 1. If NumOps == 0, grow the operand list in response to a push_back style
138/// of operation. This grows the number of ops by 1.5 times.
139/// 2. If NumOps > NumOperands, reserve space for NumOps operands.
140/// 3. If NumOps == NumOperands, trim the reserved space.
141///
142void PHINode::resizeOperands(unsigned NumOps) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000143 unsigned e = getNumOperands();
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000144 if (NumOps == 0) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000145 NumOps = e*3/2;
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000146 if (NumOps < 4) NumOps = 4; // 4 op PHI nodes are VERY common.
147 } else if (NumOps*2 > NumOperands) {
148 // No resize needed.
149 if (ReservedSpace >= NumOps) return;
150 } else if (NumOps == NumOperands) {
151 if (ReservedSpace == NumOps) return;
152 } else {
Misha Brukmanb1c93172005-04-21 23:48:37 +0000153 return;
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000154 }
155
156 ReservedSpace = NumOps;
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000157 Use *OldOps = OperandList;
Gabor Greiff6caff662008-05-10 08:32:32 +0000158 Use *NewOps = allocHungoffUses(NumOps);
Dan Gohman031f0bb2008-06-23 16:45:24 +0000159 std::copy(OldOps, OldOps + e, NewOps);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000160 OperandList = NewOps;
Gabor Greiff6caff662008-05-10 08:32:32 +0000161 if (OldOps) Use::zap(OldOps, OldOps + e, true);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000162}
163
Nate Begemanb3923212005-08-04 23:24:19 +0000164/// hasConstantValue - If the specified PHI node always merges together the same
165/// value, return the value, otherwise return null.
Duncan Sands7412f6e2010-11-17 04:30:22 +0000166Value *PHINode::hasConstantValue() const {
167 // Exploit the fact that phi nodes always have at least one entry.
168 Value *ConstantValue = getIncomingValue(0);
169 for (unsigned i = 1, e = getNumIncomingValues(); i != e; ++i)
170 if (getIncomingValue(i) != ConstantValue)
171 return 0; // Incoming values not all the same.
172 return ConstantValue;
Nate Begemanb3923212005-08-04 23:24:19 +0000173}
174
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000175
176//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000177// CallInst Implementation
178//===----------------------------------------------------------------------===//
179
Gordon Henriksen14a55692007-12-10 02:14:30 +0000180CallInst::~CallInst() {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000181}
182
Chris Lattner054ba2c2007-02-13 00:58:44 +0000183void CallInst::init(Value *Func, Value* const *Params, unsigned NumParams) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000184 assert(NumOperands == NumParams+1 && "NumOperands not set up?");
Gabor Greif6d673952010-07-16 09:38:02 +0000185 Op<-1>() = Func;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000186
Misha Brukmanb1c93172005-04-21 23:48:37 +0000187 const FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000188 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
Jeffrey Yasskin9b43f332010-12-23 00:58:24 +0000189 (void)FTy; // silence warning.
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000190
Chris Lattner054ba2c2007-02-13 00:58:44 +0000191 assert((NumParams == FTy->getNumParams() ||
192 (FTy->isVarArg() && NumParams > FTy->getNumParams())) &&
Chris Lattner667a0562006-05-03 00:48:22 +0000193 "Calling a function with bad signature!");
Chris Lattner054ba2c2007-02-13 00:58:44 +0000194 for (unsigned i = 0; i != NumParams; ++i) {
Chris Lattner667a0562006-05-03 00:48:22 +0000195 assert((i >= FTy->getNumParams() ||
196 FTy->getParamType(i) == Params[i]->getType()) &&
197 "Calling a function with a bad signature!");
Gabor Greif6d673952010-07-16 09:38:02 +0000198 OperandList[i] = Params[i];
Chris Lattner667a0562006-05-03 00:48:22 +0000199 }
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000200}
201
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000202void CallInst::init(Value *Func, Value *Actual1, Value *Actual2) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000203 assert(NumOperands == 3 && "NumOperands not set up?");
Gabor Greif6d673952010-07-16 09:38:02 +0000204 Op<-1>() = Func;
205 Op<0>() = Actual1;
206 Op<1>() = Actual2;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000207
208 const FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000209 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
Jeffrey Yasskin9b43f332010-12-23 00:58:24 +0000210 (void)FTy; // silence warning.
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000211
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000212 assert((FTy->getNumParams() == 2 ||
Chris Lattner667a0562006-05-03 00:48:22 +0000213 (FTy->isVarArg() && FTy->getNumParams() < 2)) &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000214 "Calling a function with bad signature");
Chris Lattner667a0562006-05-03 00:48:22 +0000215 assert((0 >= FTy->getNumParams() ||
216 FTy->getParamType(0) == Actual1->getType()) &&
217 "Calling a function with a bad signature!");
218 assert((1 >= FTy->getNumParams() ||
219 FTy->getParamType(1) == Actual2->getType()) &&
220 "Calling a function with a bad signature!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000221}
222
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000223void CallInst::init(Value *Func, Value *Actual) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000224 assert(NumOperands == 2 && "NumOperands not set up?");
Gabor Greif6d673952010-07-16 09:38:02 +0000225 Op<-1>() = Func;
226 Op<0>() = Actual;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000227
228 const FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000229 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
Jeffrey Yasskin9b43f332010-12-23 00:58:24 +0000230 (void)FTy; // silence warning.
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000231
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000232 assert((FTy->getNumParams() == 1 ||
233 (FTy->isVarArg() && FTy->getNumParams() == 0)) &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000234 "Calling a function with bad signature");
Chris Lattner667a0562006-05-03 00:48:22 +0000235 assert((0 == FTy->getNumParams() ||
236 FTy->getParamType(0) == Actual->getType()) &&
237 "Calling a function with a bad signature!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000238}
239
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000240void CallInst::init(Value *Func) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000241 assert(NumOperands == 1 && "NumOperands not set up?");
Gabor Greif6d673952010-07-16 09:38:02 +0000242 Op<-1>() = Func;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000243
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000244 const FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000245 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
Jeffrey Yasskin9b43f332010-12-23 00:58:24 +0000246 (void)FTy; // silence warning.
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000247
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000248 assert(FTy->getNumParams() == 0 && "Calling a function with bad signature");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000249}
250
Daniel Dunbar4975db62009-07-25 04:41:11 +0000251CallInst::CallInst(Value *Func, Value* Actual, const Twine &Name,
Chris Lattner2195fc42007-02-24 00:55:48 +0000252 Instruction *InsertBefore)
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000253 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
254 ->getElementType())->getReturnType(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000255 Instruction::Call,
256 OperandTraits<CallInst>::op_end(this) - 2,
257 2, InsertBefore) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000258 init(Func, Actual);
Chris Lattner2195fc42007-02-24 00:55:48 +0000259 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000260}
261
Daniel Dunbar4975db62009-07-25 04:41:11 +0000262CallInst::CallInst(Value *Func, Value* Actual, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000263 BasicBlock *InsertAtEnd)
264 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
265 ->getElementType())->getReturnType(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000266 Instruction::Call,
267 OperandTraits<CallInst>::op_end(this) - 2,
268 2, InsertAtEnd) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000269 init(Func, Actual);
Chris Lattner2195fc42007-02-24 00:55:48 +0000270 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000271}
Daniel Dunbar4975db62009-07-25 04:41:11 +0000272CallInst::CallInst(Value *Func, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000273 Instruction *InsertBefore)
274 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
275 ->getElementType())->getReturnType(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000276 Instruction::Call,
277 OperandTraits<CallInst>::op_end(this) - 1,
278 1, InsertBefore) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000279 init(Func);
Chris Lattner2195fc42007-02-24 00:55:48 +0000280 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000281}
282
Daniel Dunbar4975db62009-07-25 04:41:11 +0000283CallInst::CallInst(Value *Func, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000284 BasicBlock *InsertAtEnd)
285 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
286 ->getElementType())->getReturnType(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000287 Instruction::Call,
288 OperandTraits<CallInst>::op_end(this) - 1,
289 1, InsertAtEnd) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000290 init(Func);
Chris Lattner2195fc42007-02-24 00:55:48 +0000291 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000292}
293
Misha Brukmanb1c93172005-04-21 23:48:37 +0000294CallInst::CallInst(const CallInst &CI)
Gabor Greiff6caff662008-05-10 08:32:32 +0000295 : Instruction(CI.getType(), Instruction::Call,
296 OperandTraits<CallInst>::op_end(this) - CI.getNumOperands(),
Chris Lattner8a923e72008-03-12 17:45:29 +0000297 CI.getNumOperands()) {
Devang Patel4c758ea2008-09-25 21:00:45 +0000298 setAttributes(CI.getAttributes());
Chris Lattnerb9c86512009-12-29 02:14:09 +0000299 setTailCall(CI.isTailCall());
300 setCallingConv(CI.getCallingConv());
301
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000302 Use *OL = OperandList;
303 Use *InOL = CI.OperandList;
304 for (unsigned i = 0, e = CI.getNumOperands(); i != e; ++i)
Gabor Greif2d3024d2008-05-26 21:33:52 +0000305 OL[i] = InOL[i];
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000306 SubclassOptionalData = CI.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000307}
308
Devang Patel4c758ea2008-09-25 21:00:45 +0000309void CallInst::addAttribute(unsigned i, Attributes attr) {
310 AttrListPtr PAL = getAttributes();
Eric Christopher901b1a72008-05-16 20:39:43 +0000311 PAL = PAL.addAttr(i, attr);
Devang Patel4c758ea2008-09-25 21:00:45 +0000312 setAttributes(PAL);
Eric Christopher901b1a72008-05-16 20:39:43 +0000313}
314
Devang Patel4c758ea2008-09-25 21:00:45 +0000315void CallInst::removeAttribute(unsigned i, Attributes attr) {
316 AttrListPtr PAL = getAttributes();
Duncan Sands78c88722008-07-08 08:38:44 +0000317 PAL = PAL.removeAttr(i, attr);
Devang Patel4c758ea2008-09-25 21:00:45 +0000318 setAttributes(PAL);
Duncan Sands78c88722008-07-08 08:38:44 +0000319}
320
Devang Patelba3fa6c2008-09-23 23:03:40 +0000321bool CallInst::paramHasAttr(unsigned i, Attributes attr) const {
Devang Patel4c758ea2008-09-25 21:00:45 +0000322 if (AttributeList.paramHasAttr(i, attr))
Duncan Sands5208d1a2007-11-28 17:07:01 +0000323 return true;
Duncan Sands8dfcd592007-11-29 08:30:15 +0000324 if (const Function *F = getCalledFunction())
Dale Johannesen89268bc2008-02-19 21:38:47 +0000325 return F->paramHasAttr(i, attr);
Duncan Sands8dfcd592007-11-29 08:30:15 +0000326 return false;
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000327}
328
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000329/// IsConstantOne - Return true only if val is constant int 1
330static bool IsConstantOne(Value *val) {
331 assert(val && "IsConstantOne does not work with NULL val");
332 return isa<ConstantInt>(val) && cast<ConstantInt>(val)->isOne();
333}
334
Nick Lewyckybb1410e2009-10-17 23:52:26 +0000335static Instruction *createMalloc(Instruction *InsertBefore,
336 BasicBlock *InsertAtEnd, const Type *IntPtrTy,
Victor Hernandezf3db9152009-11-07 00:16:28 +0000337 const Type *AllocTy, Value *AllocSize,
338 Value *ArraySize, Function *MallocF,
339 const Twine &Name) {
Benjamin Kramer4bf4e862009-09-10 11:31:39 +0000340 assert(((!InsertBefore && InsertAtEnd) || (InsertBefore && !InsertAtEnd)) &&
Victor Hernandez788eaab2009-09-18 19:20:02 +0000341 "createMalloc needs either InsertBefore or InsertAtEnd");
342
343 // malloc(type) becomes:
344 // bitcast (i8* malloc(typeSize)) to type*
345 // malloc(type, arraySize) becomes:
346 // bitcast (i8 *malloc(typeSize*arraySize)) to type*
Victor Hernandezf3db9152009-11-07 00:16:28 +0000347 if (!ArraySize)
348 ArraySize = ConstantInt::get(IntPtrTy, 1);
349 else if (ArraySize->getType() != IntPtrTy) {
350 if (InsertBefore)
Victor Hernandeze04ed0c2009-11-07 00:36:50 +0000351 ArraySize = CastInst::CreateIntegerCast(ArraySize, IntPtrTy, false,
352 "", InsertBefore);
Victor Hernandezf3db9152009-11-07 00:16:28 +0000353 else
Victor Hernandeze04ed0c2009-11-07 00:36:50 +0000354 ArraySize = CastInst::CreateIntegerCast(ArraySize, IntPtrTy, false,
355 "", InsertAtEnd);
Victor Hernandezf3db9152009-11-07 00:16:28 +0000356 }
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000357
Benjamin Kramer4bf4e862009-09-10 11:31:39 +0000358 if (!IsConstantOne(ArraySize)) {
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000359 if (IsConstantOne(AllocSize)) {
360 AllocSize = ArraySize; // Operand * 1 = Operand
361 } else if (Constant *CO = dyn_cast<Constant>(ArraySize)) {
362 Constant *Scale = ConstantExpr::getIntegerCast(CO, IntPtrTy,
363 false /*ZExt*/);
364 // Malloc arg is constant product of type size and array size
365 AllocSize = ConstantExpr::getMul(Scale, cast<Constant>(AllocSize));
366 } else {
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000367 // Multiply type size by the array size...
368 if (InsertBefore)
Victor Hernandez788eaab2009-09-18 19:20:02 +0000369 AllocSize = BinaryOperator::CreateMul(ArraySize, AllocSize,
370 "mallocsize", InsertBefore);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000371 else
Victor Hernandez788eaab2009-09-18 19:20:02 +0000372 AllocSize = BinaryOperator::CreateMul(ArraySize, AllocSize,
373 "mallocsize", InsertAtEnd);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000374 }
Benjamin Kramer4bf4e862009-09-10 11:31:39 +0000375 }
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000376
Victor Hernandez788eaab2009-09-18 19:20:02 +0000377 assert(AllocSize->getType() == IntPtrTy && "malloc arg is wrong size");
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000378 // Create the call to Malloc.
379 BasicBlock* BB = InsertBefore ? InsertBefore->getParent() : InsertAtEnd;
380 Module* M = BB->getParent()->getParent();
Duncan Sands9ed7b162009-10-06 15:40:36 +0000381 const Type *BPTy = Type::getInt8PtrTy(BB->getContext());
Victor Hernandezbb336a12009-11-10 19:53:28 +0000382 Value *MallocFunc = MallocF;
383 if (!MallocFunc)
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000384 // prototype malloc as "void *malloc(size_t)"
Victor Hernandezbb336a12009-11-10 19:53:28 +0000385 MallocFunc = M->getOrInsertFunction("malloc", BPTy, IntPtrTy, NULL);
Victor Hernandez788eaab2009-09-18 19:20:02 +0000386 const PointerType *AllocPtrType = PointerType::getUnqual(AllocTy);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000387 CallInst *MCall = NULL;
Nick Lewyckybb1410e2009-10-17 23:52:26 +0000388 Instruction *Result = NULL;
Victor Hernandez788eaab2009-09-18 19:20:02 +0000389 if (InsertBefore) {
Victor Hernandezbb336a12009-11-10 19:53:28 +0000390 MCall = CallInst::Create(MallocFunc, AllocSize, "malloccall", InsertBefore);
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000391 Result = MCall;
392 if (Result->getType() != AllocPtrType)
393 // Create a cast instruction to convert to the right type...
Victor Hernandezf3db9152009-11-07 00:16:28 +0000394 Result = new BitCastInst(MCall, AllocPtrType, Name, InsertBefore);
Victor Hernandez788eaab2009-09-18 19:20:02 +0000395 } else {
Victor Hernandezbb336a12009-11-10 19:53:28 +0000396 MCall = CallInst::Create(MallocFunc, AllocSize, "malloccall");
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000397 Result = MCall;
398 if (Result->getType() != AllocPtrType) {
399 InsertAtEnd->getInstList().push_back(MCall);
400 // Create a cast instruction to convert to the right type...
Victor Hernandezf3db9152009-11-07 00:16:28 +0000401 Result = new BitCastInst(MCall, AllocPtrType, Name);
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000402 }
Victor Hernandez788eaab2009-09-18 19:20:02 +0000403 }
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000404 MCall->setTailCall();
Victor Hernandezbb336a12009-11-10 19:53:28 +0000405 if (Function *F = dyn_cast<Function>(MallocFunc)) {
406 MCall->setCallingConv(F->getCallingConv());
407 if (!F->doesNotAlias(0)) F->setDoesNotAlias(0);
408 }
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000409 assert(!MCall->getType()->isVoidTy() && "Malloc has void return type");
Victor Hernandez788eaab2009-09-18 19:20:02 +0000410
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000411 return Result;
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000412}
413
414/// CreateMalloc - Generate the IR for a call to malloc:
415/// 1. Compute the malloc call's argument as the specified type's size,
416/// possibly multiplied by the array size if the array size is not
417/// constant 1.
418/// 2. Call malloc with that argument.
419/// 3. Bitcast the result of the malloc call to the specified type.
Nick Lewyckybb1410e2009-10-17 23:52:26 +0000420Instruction *CallInst::CreateMalloc(Instruction *InsertBefore,
421 const Type *IntPtrTy, const Type *AllocTy,
Victor Hernandezf3db9152009-11-07 00:16:28 +0000422 Value *AllocSize, Value *ArraySize,
Duncan Sands41b4a6b2010-07-12 08:16:59 +0000423 Function * MallocF,
Victor Hernandezf3db9152009-11-07 00:16:28 +0000424 const Twine &Name) {
425 return createMalloc(InsertBefore, NULL, IntPtrTy, AllocTy, AllocSize,
Chris Lattner601e390a2010-07-12 00:57:28 +0000426 ArraySize, MallocF, Name);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000427}
428
429/// CreateMalloc - Generate the IR for a call to malloc:
430/// 1. Compute the malloc call's argument as the specified type's size,
431/// possibly multiplied by the array size if the array size is not
432/// constant 1.
433/// 2. Call malloc with that argument.
434/// 3. Bitcast the result of the malloc call to the specified type.
435/// Note: This function does not add the bitcast to the basic block, that is the
436/// responsibility of the caller.
Nick Lewyckybb1410e2009-10-17 23:52:26 +0000437Instruction *CallInst::CreateMalloc(BasicBlock *InsertAtEnd,
438 const Type *IntPtrTy, const Type *AllocTy,
Victor Hernandezf3db9152009-11-07 00:16:28 +0000439 Value *AllocSize, Value *ArraySize,
440 Function *MallocF, const Twine &Name) {
441 return createMalloc(NULL, InsertAtEnd, IntPtrTy, AllocTy, AllocSize,
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000442 ArraySize, MallocF, Name);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000443}
Duncan Sands5208d1a2007-11-28 17:07:01 +0000444
Victor Hernandeze2971492009-10-24 04:23:03 +0000445static Instruction* createFree(Value* Source, Instruction *InsertBefore,
446 BasicBlock *InsertAtEnd) {
447 assert(((!InsertBefore && InsertAtEnd) || (InsertBefore && !InsertAtEnd)) &&
448 "createFree needs either InsertBefore or InsertAtEnd");
Duncan Sands19d0b472010-02-16 11:11:14 +0000449 assert(Source->getType()->isPointerTy() &&
Victor Hernandeze2971492009-10-24 04:23:03 +0000450 "Can not free something of nonpointer type!");
451
452 BasicBlock* BB = InsertBefore ? InsertBefore->getParent() : InsertAtEnd;
453 Module* M = BB->getParent()->getParent();
454
455 const Type *VoidTy = Type::getVoidTy(M->getContext());
456 const Type *IntPtrTy = Type::getInt8PtrTy(M->getContext());
457 // prototype free as "void free(void*)"
Chris Lattner2156c222009-11-09 07:12:01 +0000458 Value *FreeFunc = M->getOrInsertFunction("free", VoidTy, IntPtrTy, NULL);
Victor Hernandeze2971492009-10-24 04:23:03 +0000459 CallInst* Result = NULL;
460 Value *PtrCast = Source;
461 if (InsertBefore) {
462 if (Source->getType() != IntPtrTy)
463 PtrCast = new BitCastInst(Source, IntPtrTy, "", InsertBefore);
464 Result = CallInst::Create(FreeFunc, PtrCast, "", InsertBefore);
465 } else {
466 if (Source->getType() != IntPtrTy)
467 PtrCast = new BitCastInst(Source, IntPtrTy, "", InsertAtEnd);
468 Result = CallInst::Create(FreeFunc, PtrCast, "");
469 }
470 Result->setTailCall();
Chris Lattner2156c222009-11-09 07:12:01 +0000471 if (Function *F = dyn_cast<Function>(FreeFunc))
472 Result->setCallingConv(F->getCallingConv());
Victor Hernandeze2971492009-10-24 04:23:03 +0000473
474 return Result;
475}
476
477/// CreateFree - Generate the IR for a call to the builtin free function.
Chris Lattner601e390a2010-07-12 00:57:28 +0000478Instruction * CallInst::CreateFree(Value* Source, Instruction *InsertBefore) {
479 return createFree(Source, InsertBefore, NULL);
Victor Hernandeze2971492009-10-24 04:23:03 +0000480}
481
482/// CreateFree - Generate the IR for a call to the builtin free function.
483/// Note: This function does not add the call to the basic block, that is the
484/// responsibility of the caller.
485Instruction* CallInst::CreateFree(Value* Source, BasicBlock *InsertAtEnd) {
486 Instruction* FreeCall = createFree(Source, NULL, InsertAtEnd);
487 assert(FreeCall && "CreateFree did not create a CallInst");
488 return FreeCall;
489}
490
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000491//===----------------------------------------------------------------------===//
492// InvokeInst Implementation
493//===----------------------------------------------------------------------===//
494
495void InvokeInst::init(Value *Fn, BasicBlock *IfNormal, BasicBlock *IfException,
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000496 Value* const *Args, unsigned NumArgs) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000497 assert(NumOperands == 3+NumArgs && "NumOperands not set up?");
Gabor Greifa2fbc0a2010-03-24 13:21:49 +0000498 Op<-3>() = Fn;
499 Op<-2>() = IfNormal;
500 Op<-1>() = IfException;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000501 const FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000502 cast<FunctionType>(cast<PointerType>(Fn->getType())->getElementType());
Jeffrey Yasskin9b43f332010-12-23 00:58:24 +0000503 (void)FTy; // silence warning.
Misha Brukmanb1c93172005-04-21 23:48:37 +0000504
Anton Korobeynikov579f0712008-02-20 11:08:44 +0000505 assert(((NumArgs == FTy->getNumParams()) ||
506 (FTy->isVarArg() && NumArgs > FTy->getNumParams())) &&
Gabor Greif668d7002010-03-23 13:45:54 +0000507 "Invoking a function with bad signature");
Misha Brukmanb1c93172005-04-21 23:48:37 +0000508
Gabor Greifa2fbc0a2010-03-24 13:21:49 +0000509 Use *OL = OperandList;
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000510 for (unsigned i = 0, e = NumArgs; i != e; i++) {
Chris Lattner667a0562006-05-03 00:48:22 +0000511 assert((i >= FTy->getNumParams() ||
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000512 FTy->getParamType(i) == Args[i]->getType()) &&
Chris Lattner667a0562006-05-03 00:48:22 +0000513 "Invoking a function with a bad signature!");
514
Gabor Greifa2fbc0a2010-03-24 13:21:49 +0000515 OL[i] = Args[i];
Chris Lattner667a0562006-05-03 00:48:22 +0000516 }
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000517}
518
Misha Brukmanb1c93172005-04-21 23:48:37 +0000519InvokeInst::InvokeInst(const InvokeInst &II)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000520 : TerminatorInst(II.getType(), Instruction::Invoke,
Gabor Greif697e94c2008-05-15 10:04:30 +0000521 OperandTraits<InvokeInst>::op_end(this)
522 - II.getNumOperands(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000523 II.getNumOperands()) {
Devang Patel4c758ea2008-09-25 21:00:45 +0000524 setAttributes(II.getAttributes());
Chris Lattnerb9c86512009-12-29 02:14:09 +0000525 setCallingConv(II.getCallingConv());
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000526 Use *OL = OperandList, *InOL = II.OperandList;
527 for (unsigned i = 0, e = II.getNumOperands(); i != e; ++i)
Gabor Greif2d3024d2008-05-26 21:33:52 +0000528 OL[i] = InOL[i];
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000529 SubclassOptionalData = II.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000530}
531
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000532BasicBlock *InvokeInst::getSuccessorV(unsigned idx) const {
533 return getSuccessor(idx);
534}
535unsigned InvokeInst::getNumSuccessorsV() const {
536 return getNumSuccessors();
537}
538void InvokeInst::setSuccessorV(unsigned idx, BasicBlock *B) {
539 return setSuccessor(idx, B);
540}
541
Devang Patelba3fa6c2008-09-23 23:03:40 +0000542bool InvokeInst::paramHasAttr(unsigned i, Attributes attr) const {
Devang Patel4c758ea2008-09-25 21:00:45 +0000543 if (AttributeList.paramHasAttr(i, attr))
Duncan Sands5208d1a2007-11-28 17:07:01 +0000544 return true;
Duncan Sands8dfcd592007-11-29 08:30:15 +0000545 if (const Function *F = getCalledFunction())
Dale Johannesen89268bc2008-02-19 21:38:47 +0000546 return F->paramHasAttr(i, attr);
Duncan Sands8dfcd592007-11-29 08:30:15 +0000547 return false;
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000548}
549
Devang Patel4c758ea2008-09-25 21:00:45 +0000550void InvokeInst::addAttribute(unsigned i, Attributes attr) {
551 AttrListPtr PAL = getAttributes();
Eric Christopher901b1a72008-05-16 20:39:43 +0000552 PAL = PAL.addAttr(i, attr);
Devang Patel4c758ea2008-09-25 21:00:45 +0000553 setAttributes(PAL);
Eric Christopher901b1a72008-05-16 20:39:43 +0000554}
555
Devang Patel4c758ea2008-09-25 21:00:45 +0000556void InvokeInst::removeAttribute(unsigned i, Attributes attr) {
557 AttrListPtr PAL = getAttributes();
Duncan Sands78c88722008-07-08 08:38:44 +0000558 PAL = PAL.removeAttr(i, attr);
Devang Patel4c758ea2008-09-25 21:00:45 +0000559 setAttributes(PAL);
Duncan Sandsaa31b922007-12-19 21:13:37 +0000560}
561
Duncan Sands5208d1a2007-11-28 17:07:01 +0000562
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000563//===----------------------------------------------------------------------===//
564// ReturnInst Implementation
565//===----------------------------------------------------------------------===//
566
Chris Lattner2195fc42007-02-24 00:55:48 +0000567ReturnInst::ReturnInst(const ReturnInst &RI)
Owen Anderson55f1c092009-08-13 21:58:54 +0000568 : TerminatorInst(Type::getVoidTy(RI.getContext()), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000569 OperandTraits<ReturnInst>::op_end(this) -
570 RI.getNumOperands(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000571 RI.getNumOperands()) {
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000572 if (RI.getNumOperands())
Gabor Greif2d3024d2008-05-26 21:33:52 +0000573 Op<0>() = RI.Op<0>();
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000574 SubclassOptionalData = RI.SubclassOptionalData;
Chris Lattner2195fc42007-02-24 00:55:48 +0000575}
576
Owen Anderson55f1c092009-08-13 21:58:54 +0000577ReturnInst::ReturnInst(LLVMContext &C, Value *retVal, Instruction *InsertBefore)
578 : TerminatorInst(Type::getVoidTy(C), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000579 OperandTraits<ReturnInst>::op_end(this) - !!retVal, !!retVal,
580 InsertBefore) {
Devang Patelc38eb522008-02-26 18:49:29 +0000581 if (retVal)
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000582 Op<0>() = retVal;
Chris Lattner2195fc42007-02-24 00:55:48 +0000583}
Owen Anderson55f1c092009-08-13 21:58:54 +0000584ReturnInst::ReturnInst(LLVMContext &C, Value *retVal, BasicBlock *InsertAtEnd)
585 : TerminatorInst(Type::getVoidTy(C), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000586 OperandTraits<ReturnInst>::op_end(this) - !!retVal, !!retVal,
587 InsertAtEnd) {
Devang Patelc38eb522008-02-26 18:49:29 +0000588 if (retVal)
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000589 Op<0>() = retVal;
Chris Lattner2195fc42007-02-24 00:55:48 +0000590}
Owen Anderson55f1c092009-08-13 21:58:54 +0000591ReturnInst::ReturnInst(LLVMContext &Context, BasicBlock *InsertAtEnd)
592 : TerminatorInst(Type::getVoidTy(Context), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000593 OperandTraits<ReturnInst>::op_end(this), 0, InsertAtEnd) {
Devang Patel59643e52008-02-23 00:35:18 +0000594}
595
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000596unsigned ReturnInst::getNumSuccessorsV() const {
597 return getNumSuccessors();
598}
599
Devang Patelae682fb2008-02-26 17:56:20 +0000600/// Out-of-line ReturnInst method, put here so the C++ compiler can choose to
601/// emit the vtable for the class in this translation unit.
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000602void ReturnInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000603 llvm_unreachable("ReturnInst has no successors!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000604}
605
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000606BasicBlock *ReturnInst::getSuccessorV(unsigned idx) const {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000607 llvm_unreachable("ReturnInst has no successors!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000608 return 0;
609}
610
Devang Patel59643e52008-02-23 00:35:18 +0000611ReturnInst::~ReturnInst() {
Devang Patel59643e52008-02-23 00:35:18 +0000612}
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000613
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000614//===----------------------------------------------------------------------===//
615// UnwindInst Implementation
616//===----------------------------------------------------------------------===//
617
Owen Anderson55f1c092009-08-13 21:58:54 +0000618UnwindInst::UnwindInst(LLVMContext &Context, Instruction *InsertBefore)
619 : TerminatorInst(Type::getVoidTy(Context), Instruction::Unwind,
620 0, 0, InsertBefore) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000621}
Owen Anderson55f1c092009-08-13 21:58:54 +0000622UnwindInst::UnwindInst(LLVMContext &Context, BasicBlock *InsertAtEnd)
623 : TerminatorInst(Type::getVoidTy(Context), Instruction::Unwind,
624 0, 0, InsertAtEnd) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000625}
626
627
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000628unsigned UnwindInst::getNumSuccessorsV() const {
629 return getNumSuccessors();
630}
631
632void UnwindInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000633 llvm_unreachable("UnwindInst has no successors!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000634}
635
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000636BasicBlock *UnwindInst::getSuccessorV(unsigned idx) const {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000637 llvm_unreachable("UnwindInst has no successors!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000638 return 0;
639}
640
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000641//===----------------------------------------------------------------------===//
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000642// UnreachableInst Implementation
643//===----------------------------------------------------------------------===//
644
Owen Anderson55f1c092009-08-13 21:58:54 +0000645UnreachableInst::UnreachableInst(LLVMContext &Context,
646 Instruction *InsertBefore)
647 : TerminatorInst(Type::getVoidTy(Context), Instruction::Unreachable,
648 0, 0, InsertBefore) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000649}
Owen Anderson55f1c092009-08-13 21:58:54 +0000650UnreachableInst::UnreachableInst(LLVMContext &Context, BasicBlock *InsertAtEnd)
651 : TerminatorInst(Type::getVoidTy(Context), Instruction::Unreachable,
652 0, 0, InsertAtEnd) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000653}
654
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000655unsigned UnreachableInst::getNumSuccessorsV() const {
656 return getNumSuccessors();
657}
658
659void UnreachableInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000660 llvm_unreachable("UnwindInst has no successors!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000661}
662
663BasicBlock *UnreachableInst::getSuccessorV(unsigned idx) const {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000664 llvm_unreachable("UnwindInst has no successors!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000665 return 0;
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000666}
667
668//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000669// BranchInst Implementation
670//===----------------------------------------------------------------------===//
671
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000672void BranchInst::AssertOK() {
673 if (isConditional())
Duncan Sands9dff9be2010-02-15 16:12:20 +0000674 assert(getCondition()->getType()->isIntegerTy(1) &&
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000675 "May only branch on boolean predicates!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000676}
677
Chris Lattner2195fc42007-02-24 00:55:48 +0000678BranchInst::BranchInst(BasicBlock *IfTrue, Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +0000679 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000680 OperandTraits<BranchInst>::op_end(this) - 1,
681 1, InsertBefore) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000682 assert(IfTrue != 0 && "Branch destination may not be null!");
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000683 Op<-1>() = IfTrue;
Chris Lattner2195fc42007-02-24 00:55:48 +0000684}
685BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
686 Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +0000687 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000688 OperandTraits<BranchInst>::op_end(this) - 3,
689 3, InsertBefore) {
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000690 Op<-1>() = IfTrue;
691 Op<-2>() = IfFalse;
692 Op<-3>() = Cond;
Chris Lattner2195fc42007-02-24 00:55:48 +0000693#ifndef NDEBUG
694 AssertOK();
695#endif
696}
697
698BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +0000699 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000700 OperandTraits<BranchInst>::op_end(this) - 1,
701 1, InsertAtEnd) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000702 assert(IfTrue != 0 && "Branch destination may not be null!");
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000703 Op<-1>() = IfTrue;
Chris Lattner2195fc42007-02-24 00:55:48 +0000704}
705
706BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
707 BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +0000708 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000709 OperandTraits<BranchInst>::op_end(this) - 3,
710 3, InsertAtEnd) {
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000711 Op<-1>() = IfTrue;
712 Op<-2>() = IfFalse;
713 Op<-3>() = Cond;
Chris Lattner2195fc42007-02-24 00:55:48 +0000714#ifndef NDEBUG
715 AssertOK();
716#endif
717}
718
719
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000720BranchInst::BranchInst(const BranchInst &BI) :
Owen Anderson55f1c092009-08-13 21:58:54 +0000721 TerminatorInst(Type::getVoidTy(BI.getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000722 OperandTraits<BranchInst>::op_end(this) - BI.getNumOperands(),
723 BI.getNumOperands()) {
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000724 Op<-1>() = BI.Op<-1>();
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000725 if (BI.getNumOperands() != 1) {
726 assert(BI.getNumOperands() == 3 && "BR can have 1 or 3 operands!");
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000727 Op<-3>() = BI.Op<-3>();
728 Op<-2>() = BI.Op<-2>();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000729 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000730 SubclassOptionalData = BI.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000731}
732
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000733BasicBlock *BranchInst::getSuccessorV(unsigned idx) const {
734 return getSuccessor(idx);
735}
736unsigned BranchInst::getNumSuccessorsV() const {
737 return getNumSuccessors();
738}
739void BranchInst::setSuccessorV(unsigned idx, BasicBlock *B) {
740 setSuccessor(idx, B);
741}
742
743
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000744//===----------------------------------------------------------------------===//
Victor Hernandez8acf2952009-10-23 21:09:37 +0000745// AllocaInst Implementation
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000746//===----------------------------------------------------------------------===//
747
Owen Andersonb6b25302009-07-14 23:09:55 +0000748static Value *getAISize(LLVMContext &Context, Value *Amt) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000749 if (!Amt)
Owen Anderson55f1c092009-08-13 21:58:54 +0000750 Amt = ConstantInt::get(Type::getInt32Ty(Context), 1);
Chris Lattnerbb7ff662006-05-10 04:32:43 +0000751 else {
752 assert(!isa<BasicBlock>(Amt) &&
Chris Lattner9b6ec772007-10-18 16:10:48 +0000753 "Passed basic block into allocation size parameter! Use other ctor");
Dan Gohman2140a742010-05-28 01:14:11 +0000754 assert(Amt->getType()->isIntegerTy() &&
755 "Allocation array size is not an integer!");
Chris Lattnerbb7ff662006-05-10 04:32:43 +0000756 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000757 return Amt;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000758}
759
Victor Hernandez8acf2952009-10-23 21:09:37 +0000760AllocaInst::AllocaInst(const Type *Ty, Value *ArraySize,
761 const Twine &Name, Instruction *InsertBefore)
762 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
763 getAISize(Ty->getContext(), ArraySize), InsertBefore) {
764 setAlignment(0);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000765 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Victor Hernandez8acf2952009-10-23 21:09:37 +0000766 setName(Name);
767}
768
769AllocaInst::AllocaInst(const Type *Ty, Value *ArraySize,
770 const Twine &Name, BasicBlock *InsertAtEnd)
771 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
772 getAISize(Ty->getContext(), ArraySize), InsertAtEnd) {
773 setAlignment(0);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000774 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Victor Hernandez8acf2952009-10-23 21:09:37 +0000775 setName(Name);
776}
777
778AllocaInst::AllocaInst(const Type *Ty, const Twine &Name,
779 Instruction *InsertBefore)
780 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
781 getAISize(Ty->getContext(), 0), InsertBefore) {
782 setAlignment(0);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000783 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Victor Hernandez8acf2952009-10-23 21:09:37 +0000784 setName(Name);
785}
786
787AllocaInst::AllocaInst(const Type *Ty, const Twine &Name,
788 BasicBlock *InsertAtEnd)
789 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
790 getAISize(Ty->getContext(), 0), InsertAtEnd) {
791 setAlignment(0);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000792 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Victor Hernandez8acf2952009-10-23 21:09:37 +0000793 setName(Name);
794}
795
796AllocaInst::AllocaInst(const Type *Ty, Value *ArraySize, unsigned Align,
797 const Twine &Name, Instruction *InsertBefore)
798 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
Owen Anderson4fdeba92009-07-15 23:53:25 +0000799 getAISize(Ty->getContext(), ArraySize), InsertBefore) {
Dan Gohmanaa583d72008-03-24 16:55:58 +0000800 setAlignment(Align);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000801 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Chris Lattner0f048162007-02-13 07:54:42 +0000802 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000803}
804
Victor Hernandez8acf2952009-10-23 21:09:37 +0000805AllocaInst::AllocaInst(const Type *Ty, Value *ArraySize, unsigned Align,
806 const Twine &Name, BasicBlock *InsertAtEnd)
807 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
Owen Anderson4fdeba92009-07-15 23:53:25 +0000808 getAISize(Ty->getContext(), ArraySize), InsertAtEnd) {
Dan Gohmanaa583d72008-03-24 16:55:58 +0000809 setAlignment(Align);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000810 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Chris Lattner0f048162007-02-13 07:54:42 +0000811 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000812}
813
Gordon Henriksen14a55692007-12-10 02:14:30 +0000814// Out of line virtual method, so the vtable, etc has a home.
Victor Hernandez8acf2952009-10-23 21:09:37 +0000815AllocaInst::~AllocaInst() {
Gordon Henriksen14a55692007-12-10 02:14:30 +0000816}
817
Victor Hernandez8acf2952009-10-23 21:09:37 +0000818void AllocaInst::setAlignment(unsigned Align) {
Dan Gohmanaa583d72008-03-24 16:55:58 +0000819 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
Dan Gohmana7e5a242010-07-28 20:12:04 +0000820 assert(Align <= MaximumAlignment &&
821 "Alignment is greater than MaximumAlignment!");
Chris Lattnerd8eb2cf2009-12-29 02:46:09 +0000822 setInstructionSubclassData(Log2_32(Align) + 1);
Dan Gohmanaa583d72008-03-24 16:55:58 +0000823 assert(getAlignment() == Align && "Alignment representation error!");
824}
825
Victor Hernandez8acf2952009-10-23 21:09:37 +0000826bool AllocaInst::isArrayAllocation() const {
Reid Spencera9e6e312007-03-01 20:27:41 +0000827 if (ConstantInt *CI = dyn_cast<ConstantInt>(getOperand(0)))
Dan Gohman9a1b8592010-09-27 15:15:44 +0000828 return !CI->isOne();
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000829 return true;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000830}
831
Victor Hernandez8acf2952009-10-23 21:09:37 +0000832const Type *AllocaInst::getAllocatedType() const {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000833 return getType()->getElementType();
834}
835
Chris Lattner8b291e62008-11-26 02:54:17 +0000836/// isStaticAlloca - Return true if this alloca is in the entry block of the
837/// function and is a constant size. If so, the code generator will fold it
838/// into the prolog/epilog code, so it is basically free.
839bool AllocaInst::isStaticAlloca() const {
840 // Must be constant size.
841 if (!isa<ConstantInt>(getArraySize())) return false;
842
843 // Must be in the entry block.
844 const BasicBlock *Parent = getParent();
845 return Parent == &Parent->getParent()->front();
846}
847
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000848//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000849// LoadInst Implementation
850//===----------------------------------------------------------------------===//
851
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000852void LoadInst::AssertOK() {
Duncan Sands19d0b472010-02-16 11:11:14 +0000853 assert(getOperand(0)->getType()->isPointerTy() &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000854 "Ptr must have pointer type.");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000855}
856
Daniel Dunbar4975db62009-07-25 04:41:11 +0000857LoadInst::LoadInst(Value *Ptr, const Twine &Name, Instruction *InsertBef)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000858 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000859 Load, Ptr, InsertBef) {
Chris Lattnerdf57a022005-02-05 01:38:38 +0000860 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000861 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000862 AssertOK();
Chris Lattner0f048162007-02-13 07:54:42 +0000863 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000864}
865
Daniel Dunbar4975db62009-07-25 04:41:11 +0000866LoadInst::LoadInst(Value *Ptr, const Twine &Name, BasicBlock *InsertAE)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000867 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000868 Load, Ptr, InsertAE) {
Chris Lattnerdf57a022005-02-05 01:38:38 +0000869 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000870 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000871 AssertOK();
Chris Lattner0f048162007-02-13 07:54:42 +0000872 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000873}
874
Daniel Dunbar4975db62009-07-25 04:41:11 +0000875LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000876 Instruction *InsertBef)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000877 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000878 Load, Ptr, InsertBef) {
Chris Lattnerdf57a022005-02-05 01:38:38 +0000879 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +0000880 setAlignment(0);
881 AssertOK();
882 setName(Name);
883}
884
Daniel Dunbar4975db62009-07-25 04:41:11 +0000885LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Christopher Lamb84485702007-04-22 19:24:39 +0000886 unsigned Align, Instruction *InsertBef)
887 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
888 Load, Ptr, InsertBef) {
889 setVolatile(isVolatile);
890 setAlignment(Align);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000891 AssertOK();
Chris Lattner0f048162007-02-13 07:54:42 +0000892 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000893}
894
Daniel Dunbar4975db62009-07-25 04:41:11 +0000895LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Dan Gohman68659282007-07-18 20:51:11 +0000896 unsigned Align, BasicBlock *InsertAE)
897 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
898 Load, Ptr, InsertAE) {
899 setVolatile(isVolatile);
900 setAlignment(Align);
901 AssertOK();
902 setName(Name);
903}
904
Daniel Dunbar4975db62009-07-25 04:41:11 +0000905LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000906 BasicBlock *InsertAE)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000907 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000908 Load, Ptr, InsertAE) {
Chris Lattner0f048162007-02-13 07:54:42 +0000909 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +0000910 setAlignment(0);
Chris Lattner0f048162007-02-13 07:54:42 +0000911 AssertOK();
912 setName(Name);
913}
914
Daniel Dunbar27096822009-08-11 18:11:15 +0000915
916
917LoadInst::LoadInst(Value *Ptr, const char *Name, Instruction *InsertBef)
918 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
919 Load, Ptr, InsertBef) {
920 setVolatile(false);
921 setAlignment(0);
922 AssertOK();
923 if (Name && Name[0]) setName(Name);
924}
925
926LoadInst::LoadInst(Value *Ptr, const char *Name, BasicBlock *InsertAE)
927 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
928 Load, Ptr, InsertAE) {
929 setVolatile(false);
930 setAlignment(0);
931 AssertOK();
932 if (Name && Name[0]) setName(Name);
933}
934
935LoadInst::LoadInst(Value *Ptr, const char *Name, bool isVolatile,
936 Instruction *InsertBef)
937: UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
938 Load, Ptr, InsertBef) {
939 setVolatile(isVolatile);
940 setAlignment(0);
941 AssertOK();
942 if (Name && Name[0]) setName(Name);
943}
944
945LoadInst::LoadInst(Value *Ptr, const char *Name, bool isVolatile,
946 BasicBlock *InsertAE)
947 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
948 Load, Ptr, InsertAE) {
949 setVolatile(isVolatile);
950 setAlignment(0);
951 AssertOK();
952 if (Name && Name[0]) setName(Name);
953}
954
Christopher Lamb84485702007-04-22 19:24:39 +0000955void LoadInst::setAlignment(unsigned Align) {
956 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
Dan Gohmana7e5a242010-07-28 20:12:04 +0000957 assert(Align <= MaximumAlignment &&
958 "Alignment is greater than MaximumAlignment!");
Chris Lattnerd8eb2cf2009-12-29 02:46:09 +0000959 setInstructionSubclassData((getSubclassDataFromInstruction() & 1) |
960 ((Log2_32(Align)+1)<<1));
Dan Gohmana7e5a242010-07-28 20:12:04 +0000961 assert(getAlignment() == Align && "Alignment representation error!");
Christopher Lamb84485702007-04-22 19:24:39 +0000962}
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000963
964//===----------------------------------------------------------------------===//
965// StoreInst Implementation
966//===----------------------------------------------------------------------===//
967
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000968void StoreInst::AssertOK() {
Nate Begemanfecbc8c2008-07-29 15:49:41 +0000969 assert(getOperand(0) && getOperand(1) && "Both operands must be non-null!");
Duncan Sands19d0b472010-02-16 11:11:14 +0000970 assert(getOperand(1)->getType()->isPointerTy() &&
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000971 "Ptr must have pointer type!");
972 assert(getOperand(0)->getType() ==
973 cast<PointerType>(getOperand(1)->getType())->getElementType()
Alkis Evlogimenos079fbde2004-08-06 14:33:37 +0000974 && "Ptr must be a pointer to Val type!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000975}
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000976
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000977
978StoreInst::StoreInst(Value *val, Value *addr, Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +0000979 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +0000980 OperandTraits<StoreInst>::op_begin(this),
981 OperandTraits<StoreInst>::operands(this),
982 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +0000983 Op<0>() = val;
984 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +0000985 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000986 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000987 AssertOK();
988}
989
990StoreInst::StoreInst(Value *val, Value *addr, BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +0000991 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +0000992 OperandTraits<StoreInst>::op_begin(this),
993 OperandTraits<StoreInst>::operands(this),
994 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +0000995 Op<0>() = val;
996 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +0000997 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000998 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000999 AssertOK();
1000}
1001
Misha Brukmanb1c93172005-04-21 23:48:37 +00001002StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001003 Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +00001004 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001005 OperandTraits<StoreInst>::op_begin(this),
1006 OperandTraits<StoreInst>::operands(this),
1007 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001008 Op<0>() = val;
1009 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +00001010 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +00001011 setAlignment(0);
1012 AssertOK();
1013}
1014
1015StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
1016 unsigned Align, Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +00001017 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001018 OperandTraits<StoreInst>::op_begin(this),
1019 OperandTraits<StoreInst>::operands(this),
1020 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001021 Op<0>() = val;
1022 Op<1>() = addr;
Christopher Lamb84485702007-04-22 19:24:39 +00001023 setVolatile(isVolatile);
1024 setAlignment(Align);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001025 AssertOK();
1026}
1027
Misha Brukmanb1c93172005-04-21 23:48:37 +00001028StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Dan Gohman68659282007-07-18 20:51:11 +00001029 unsigned Align, BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +00001030 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001031 OperandTraits<StoreInst>::op_begin(this),
1032 OperandTraits<StoreInst>::operands(this),
1033 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001034 Op<0>() = val;
1035 Op<1>() = addr;
Dan Gohman68659282007-07-18 20:51:11 +00001036 setVolatile(isVolatile);
1037 setAlignment(Align);
1038 AssertOK();
1039}
1040
1041StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001042 BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +00001043 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001044 OperandTraits<StoreInst>::op_begin(this),
1045 OperandTraits<StoreInst>::operands(this),
1046 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001047 Op<0>() = val;
1048 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +00001049 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +00001050 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001051 AssertOK();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001052}
1053
Christopher Lamb84485702007-04-22 19:24:39 +00001054void StoreInst::setAlignment(unsigned Align) {
1055 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
Dan Gohmana7e5a242010-07-28 20:12:04 +00001056 assert(Align <= MaximumAlignment &&
1057 "Alignment is greater than MaximumAlignment!");
Chris Lattnerd8eb2cf2009-12-29 02:46:09 +00001058 setInstructionSubclassData((getSubclassDataFromInstruction() & 1) |
1059 ((Log2_32(Align)+1) << 1));
Dan Gohmana7e5a242010-07-28 20:12:04 +00001060 assert(getAlignment() == Align && "Alignment representation error!");
Christopher Lamb84485702007-04-22 19:24:39 +00001061}
1062
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001063//===----------------------------------------------------------------------===//
1064// GetElementPtrInst Implementation
1065//===----------------------------------------------------------------------===//
1066
Christopher Lambedf07882007-12-17 01:12:55 +00001067static unsigned retrieveAddrSpace(const Value *Val) {
1068 return cast<PointerType>(Val->getType())->getAddressSpace();
1069}
1070
Gabor Greif21ba1842008-06-06 20:28:12 +00001071void GetElementPtrInst::init(Value *Ptr, Value* const *Idx, unsigned NumIdx,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001072 const Twine &Name) {
Gabor Greiff6caff662008-05-10 08:32:32 +00001073 assert(NumOperands == 1+NumIdx && "NumOperands not initialized?");
1074 Use *OL = OperandList;
Gabor Greif2d3024d2008-05-26 21:33:52 +00001075 OL[0] = Ptr;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001076
Chris Lattner79807c3d2007-01-31 19:47:18 +00001077 for (unsigned i = 0; i != NumIdx; ++i)
Gabor Greif2d3024d2008-05-26 21:33:52 +00001078 OL[i+1] = Idx[i];
Matthijs Kooijman76d8dec2008-06-04 16:14:12 +00001079
1080 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001081}
1082
Daniel Dunbar4975db62009-07-25 04:41:11 +00001083void GetElementPtrInst::init(Value *Ptr, Value *Idx, const Twine &Name) {
Gabor Greiff6caff662008-05-10 08:32:32 +00001084 assert(NumOperands == 2 && "NumOperands not initialized?");
1085 Use *OL = OperandList;
Gabor Greif2d3024d2008-05-26 21:33:52 +00001086 OL[0] = Ptr;
1087 OL[1] = Idx;
Matthijs Kooijman76d8dec2008-06-04 16:14:12 +00001088
1089 setName(Name);
Chris Lattner82981202005-05-03 05:43:30 +00001090}
1091
Gabor Greiff6caff662008-05-10 08:32:32 +00001092GetElementPtrInst::GetElementPtrInst(const GetElementPtrInst &GEPI)
Gabor Greife9408e62008-05-27 11:03:29 +00001093 : Instruction(GEPI.getType(), GetElementPtr,
Gabor Greif697e94c2008-05-15 10:04:30 +00001094 OperandTraits<GetElementPtrInst>::op_end(this)
1095 - GEPI.getNumOperands(),
Gabor Greiff6caff662008-05-10 08:32:32 +00001096 GEPI.getNumOperands()) {
1097 Use *OL = OperandList;
1098 Use *GEPIOL = GEPI.OperandList;
1099 for (unsigned i = 0, E = NumOperands; i != E; ++i)
Gabor Greif2d3024d2008-05-26 21:33:52 +00001100 OL[i] = GEPIOL[i];
Dan Gohmanc8a27f22009-08-25 22:11:20 +00001101 SubclassOptionalData = GEPI.SubclassOptionalData;
Gabor Greiff6caff662008-05-10 08:32:32 +00001102}
1103
Chris Lattner82981202005-05-03 05:43:30 +00001104GetElementPtrInst::GetElementPtrInst(Value *Ptr, Value *Idx,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001105 const Twine &Name, Instruction *InBe)
Owen Anderson4056ca92009-07-29 22:17:13 +00001106 : Instruction(PointerType::get(
Owen Andersond420fd42009-07-16 00:03:07 +00001107 checkType(getIndexedType(Ptr->getType(),Idx)), retrieveAddrSpace(Ptr)),
Gabor Greiff6caff662008-05-10 08:32:32 +00001108 GetElementPtr,
1109 OperandTraits<GetElementPtrInst>::op_end(this) - 2,
1110 2, InBe) {
Matthijs Kooijman76d8dec2008-06-04 16:14:12 +00001111 init(Ptr, Idx, Name);
Chris Lattner82981202005-05-03 05:43:30 +00001112}
1113
1114GetElementPtrInst::GetElementPtrInst(Value *Ptr, Value *Idx,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001115 const Twine &Name, BasicBlock *IAE)
Owen Anderson4056ca92009-07-29 22:17:13 +00001116 : Instruction(PointerType::get(
Owen Andersond420fd42009-07-16 00:03:07 +00001117 checkType(getIndexedType(Ptr->getType(),Idx)),
1118 retrieveAddrSpace(Ptr)),
Gabor Greiff6caff662008-05-10 08:32:32 +00001119 GetElementPtr,
1120 OperandTraits<GetElementPtrInst>::op_end(this) - 2,
1121 2, IAE) {
Matthijs Kooijman76d8dec2008-06-04 16:14:12 +00001122 init(Ptr, Idx, Name);
Chris Lattner82981202005-05-03 05:43:30 +00001123}
1124
Chris Lattner6090a422009-03-09 04:46:40 +00001125/// getIndexedType - Returns the type of the element that would be accessed with
1126/// a gep instruction with the specified parameters.
1127///
1128/// The Idxs pointer should point to a continuous piece of memory containing the
1129/// indices, either as Value* or uint64_t.
1130///
1131/// A null type is returned if the indices are invalid for the specified
1132/// pointer type.
1133///
Matthijs Kooijman04468622008-07-29 08:46:11 +00001134template <typename IndexTy>
Chris Lattner6090a422009-03-09 04:46:40 +00001135static const Type* getIndexedTypeInternal(const Type *Ptr, IndexTy const *Idxs,
1136 unsigned NumIdx) {
Dan Gohman12fce772008-05-15 19:50:34 +00001137 const PointerType *PTy = dyn_cast<PointerType>(Ptr);
1138 if (!PTy) return 0; // Type isn't a pointer type!
1139 const Type *Agg = PTy->getElementType();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001140
Chris Lattner6090a422009-03-09 04:46:40 +00001141 // Handle the special case of the empty set index set, which is always valid.
Dan Gohman12fce772008-05-15 19:50:34 +00001142 if (NumIdx == 0)
1143 return Agg;
Chris Lattner6090a422009-03-09 04:46:40 +00001144
1145 // If there is at least one index, the top level type must be sized, otherwise
Chris Lattner4a488152009-03-09 04:56:22 +00001146 // it cannot be 'stepped over'. We explicitly allow abstract types (those
1147 // that contain opaque types) under the assumption that it will be resolved to
1148 // a sane type later.
1149 if (!Agg->isSized() && !Agg->isAbstract())
Chris Lattner6090a422009-03-09 04:46:40 +00001150 return 0;
Misha Brukmanb1c93172005-04-21 23:48:37 +00001151
Dan Gohman1ecaf452008-05-31 00:58:22 +00001152 unsigned CurIdx = 1;
1153 for (; CurIdx != NumIdx; ++CurIdx) {
1154 const CompositeType *CT = dyn_cast<CompositeType>(Agg);
Duncan Sands19d0b472010-02-16 11:11:14 +00001155 if (!CT || CT->isPointerTy()) return 0;
Matthijs Kooijman04468622008-07-29 08:46:11 +00001156 IndexTy Index = Idxs[CurIdx];
Dan Gohman1ecaf452008-05-31 00:58:22 +00001157 if (!CT->indexValid(Index)) return 0;
1158 Agg = CT->getTypeAtIndex(Index);
1159
1160 // If the new type forwards to another type, then it is in the middle
1161 // of being refined to another type (and hence, may have dropped all
1162 // references to what it was using before). So, use the new forwarded
1163 // type.
1164 if (const Type *Ty = Agg->getForwardedType())
1165 Agg = Ty;
1166 }
1167 return CurIdx == NumIdx ? Agg : 0;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001168}
1169
Matthijs Kooijman04468622008-07-29 08:46:11 +00001170const Type* GetElementPtrInst::getIndexedType(const Type *Ptr,
1171 Value* const *Idxs,
1172 unsigned NumIdx) {
1173 return getIndexedTypeInternal(Ptr, Idxs, NumIdx);
1174}
1175
1176const Type* GetElementPtrInst::getIndexedType(const Type *Ptr,
1177 uint64_t const *Idxs,
1178 unsigned NumIdx) {
1179 return getIndexedTypeInternal(Ptr, Idxs, NumIdx);
1180}
1181
Chris Lattner82981202005-05-03 05:43:30 +00001182const Type* GetElementPtrInst::getIndexedType(const Type *Ptr, Value *Idx) {
1183 const PointerType *PTy = dyn_cast<PointerType>(Ptr);
1184 if (!PTy) return 0; // Type isn't a pointer type!
1185
1186 // Check the pointer index.
1187 if (!PTy->indexValid(Idx)) return 0;
1188
Chris Lattnerc2233332005-05-03 16:44:45 +00001189 return PTy->getElementType();
Chris Lattner82981202005-05-03 05:43:30 +00001190}
1191
Chris Lattner45f15572007-04-14 00:12:57 +00001192
1193/// hasAllZeroIndices - Return true if all of the indices of this GEP are
1194/// zeros. If so, the result pointer and the first operand have the same
1195/// value, just potentially different types.
1196bool GetElementPtrInst::hasAllZeroIndices() const {
1197 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
1198 if (ConstantInt *CI = dyn_cast<ConstantInt>(getOperand(i))) {
1199 if (!CI->isZero()) return false;
1200 } else {
1201 return false;
1202 }
1203 }
1204 return true;
1205}
1206
Chris Lattner27058292007-04-27 20:35:56 +00001207/// hasAllConstantIndices - Return true if all of the indices of this GEP are
1208/// constant integers. If so, the result pointer and the first operand have
1209/// a constant offset between them.
1210bool GetElementPtrInst::hasAllConstantIndices() const {
1211 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
1212 if (!isa<ConstantInt>(getOperand(i)))
1213 return false;
1214 }
1215 return true;
1216}
1217
Dan Gohman1b849082009-09-07 23:54:19 +00001218void GetElementPtrInst::setIsInBounds(bool B) {
1219 cast<GEPOperator>(this)->setIsInBounds(B);
1220}
Chris Lattner45f15572007-04-14 00:12:57 +00001221
Nick Lewycky28a5f252009-09-27 21:33:04 +00001222bool GetElementPtrInst::isInBounds() const {
1223 return cast<GEPOperator>(this)->isInBounds();
1224}
1225
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001226//===----------------------------------------------------------------------===//
Robert Bocchino23004482006-01-10 19:05:34 +00001227// ExtractElementInst Implementation
1228//===----------------------------------------------------------------------===//
1229
1230ExtractElementInst::ExtractElementInst(Value *Val, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001231 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001232 Instruction *InsertBef)
Reid Spencerd84d35b2007-02-15 02:26:10 +00001233 : Instruction(cast<VectorType>(Val->getType())->getElementType(),
Gabor Greiff6caff662008-05-10 08:32:32 +00001234 ExtractElement,
1235 OperandTraits<ExtractElementInst>::op_begin(this),
1236 2, InsertBef) {
Chris Lattner54865b32006-04-08 04:05:48 +00001237 assert(isValidOperands(Val, Index) &&
1238 "Invalid extractelement instruction operands!");
Gabor Greif2d3024d2008-05-26 21:33:52 +00001239 Op<0>() = Val;
1240 Op<1>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001241 setName(Name);
Robert Bocchino23004482006-01-10 19:05:34 +00001242}
1243
1244ExtractElementInst::ExtractElementInst(Value *Val, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001245 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001246 BasicBlock *InsertAE)
Reid Spencerd84d35b2007-02-15 02:26:10 +00001247 : Instruction(cast<VectorType>(Val->getType())->getElementType(),
Gabor Greiff6caff662008-05-10 08:32:32 +00001248 ExtractElement,
1249 OperandTraits<ExtractElementInst>::op_begin(this),
1250 2, InsertAE) {
Chris Lattner54865b32006-04-08 04:05:48 +00001251 assert(isValidOperands(Val, Index) &&
1252 "Invalid extractelement instruction operands!");
1253
Gabor Greif2d3024d2008-05-26 21:33:52 +00001254 Op<0>() = Val;
1255 Op<1>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001256 setName(Name);
Robert Bocchino23004482006-01-10 19:05:34 +00001257}
1258
Chris Lattner65511ff2006-10-05 06:24:58 +00001259
Chris Lattner54865b32006-04-08 04:05:48 +00001260bool ExtractElementInst::isValidOperands(const Value *Val, const Value *Index) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001261 if (!Val->getType()->isVectorTy() || !Index->getType()->isIntegerTy(32))
Chris Lattner54865b32006-04-08 04:05:48 +00001262 return false;
1263 return true;
1264}
1265
1266
Robert Bocchino23004482006-01-10 19:05:34 +00001267//===----------------------------------------------------------------------===//
Robert Bocchinoca27f032006-01-17 20:07:22 +00001268// InsertElementInst Implementation
1269//===----------------------------------------------------------------------===//
1270
Chris Lattner54865b32006-04-08 04:05:48 +00001271InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001272 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001273 Instruction *InsertBef)
Gabor Greiff6caff662008-05-10 08:32:32 +00001274 : Instruction(Vec->getType(), InsertElement,
1275 OperandTraits<InsertElementInst>::op_begin(this),
1276 3, InsertBef) {
Chris Lattner54865b32006-04-08 04:05:48 +00001277 assert(isValidOperands(Vec, Elt, Index) &&
1278 "Invalid insertelement instruction operands!");
Gabor Greif2d3024d2008-05-26 21:33:52 +00001279 Op<0>() = Vec;
1280 Op<1>() = Elt;
1281 Op<2>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001282 setName(Name);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001283}
1284
Chris Lattner54865b32006-04-08 04:05:48 +00001285InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001286 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001287 BasicBlock *InsertAE)
Gabor Greiff6caff662008-05-10 08:32:32 +00001288 : Instruction(Vec->getType(), InsertElement,
1289 OperandTraits<InsertElementInst>::op_begin(this),
1290 3, InsertAE) {
Chris Lattner54865b32006-04-08 04:05:48 +00001291 assert(isValidOperands(Vec, Elt, Index) &&
1292 "Invalid insertelement instruction operands!");
1293
Gabor Greif2d3024d2008-05-26 21:33:52 +00001294 Op<0>() = Vec;
1295 Op<1>() = Elt;
1296 Op<2>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001297 setName(Name);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001298}
1299
Chris Lattner54865b32006-04-08 04:05:48 +00001300bool InsertElementInst::isValidOperands(const Value *Vec, const Value *Elt,
1301 const Value *Index) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001302 if (!Vec->getType()->isVectorTy())
Reid Spencer09575ba2007-02-15 03:39:18 +00001303 return false; // First operand of insertelement must be vector type.
Chris Lattner54865b32006-04-08 04:05:48 +00001304
Reid Spencerd84d35b2007-02-15 02:26:10 +00001305 if (Elt->getType() != cast<VectorType>(Vec->getType())->getElementType())
Dan Gohmanfead7972007-05-11 21:43:24 +00001306 return false;// Second operand of insertelement must be vector element type.
Chris Lattner54865b32006-04-08 04:05:48 +00001307
Duncan Sands9dff9be2010-02-15 16:12:20 +00001308 if (!Index->getType()->isIntegerTy(32))
Dan Gohman4fe64de2009-06-14 23:30:43 +00001309 return false; // Third operand of insertelement must be i32.
Chris Lattner54865b32006-04-08 04:05:48 +00001310 return true;
1311}
1312
1313
Robert Bocchinoca27f032006-01-17 20:07:22 +00001314//===----------------------------------------------------------------------===//
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001315// ShuffleVectorInst Implementation
1316//===----------------------------------------------------------------------===//
1317
1318ShuffleVectorInst::ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001319 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001320 Instruction *InsertBefore)
Owen Anderson4056ca92009-07-29 22:17:13 +00001321: Instruction(VectorType::get(cast<VectorType>(V1->getType())->getElementType(),
Mon P Wang25f01062008-11-10 04:46:22 +00001322 cast<VectorType>(Mask->getType())->getNumElements()),
1323 ShuffleVector,
1324 OperandTraits<ShuffleVectorInst>::op_begin(this),
1325 OperandTraits<ShuffleVectorInst>::operands(this),
1326 InsertBefore) {
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001327 assert(isValidOperands(V1, V2, Mask) &&
1328 "Invalid shuffle vector instruction operands!");
Gabor Greif2d3024d2008-05-26 21:33:52 +00001329 Op<0>() = V1;
1330 Op<1>() = V2;
1331 Op<2>() = Mask;
Chris Lattner2195fc42007-02-24 00:55:48 +00001332 setName(Name);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001333}
1334
1335ShuffleVectorInst::ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001336 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001337 BasicBlock *InsertAtEnd)
Dan Gohmane5af8cd2009-08-25 23:27:45 +00001338: Instruction(VectorType::get(cast<VectorType>(V1->getType())->getElementType(),
1339 cast<VectorType>(Mask->getType())->getNumElements()),
1340 ShuffleVector,
1341 OperandTraits<ShuffleVectorInst>::op_begin(this),
1342 OperandTraits<ShuffleVectorInst>::operands(this),
1343 InsertAtEnd) {
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001344 assert(isValidOperands(V1, V2, Mask) &&
1345 "Invalid shuffle vector instruction operands!");
1346
Gabor Greif2d3024d2008-05-26 21:33:52 +00001347 Op<0>() = V1;
1348 Op<1>() = V2;
1349 Op<2>() = Mask;
Chris Lattner2195fc42007-02-24 00:55:48 +00001350 setName(Name);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001351}
1352
Mon P Wang25f01062008-11-10 04:46:22 +00001353bool ShuffleVectorInst::isValidOperands(const Value *V1, const Value *V2,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001354 const Value *Mask) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001355 if (!V1->getType()->isVectorTy() || V1->getType() != V2->getType())
Chris Lattnerf724e342008-03-02 05:28:33 +00001356 return false;
1357
1358 const VectorType *MaskTy = dyn_cast<VectorType>(Mask->getType());
Nate Begeman60a31c32010-08-13 00:16:46 +00001359 if (MaskTy == 0 || !MaskTy->getElementType()->isIntegerTy(32))
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001360 return false;
Nate Begeman60a31c32010-08-13 00:16:46 +00001361
1362 // Check to see if Mask is valid.
1363 if (const ConstantVector *MV = dyn_cast<ConstantVector>(Mask)) {
1364 const VectorType *VTy = cast<VectorType>(V1->getType());
1365 for (unsigned i = 0, e = MV->getNumOperands(); i != e; ++i) {
1366 if (ConstantInt* CI = dyn_cast<ConstantInt>(MV->getOperand(i))) {
1367 if (CI->uge(VTy->getNumElements()*2))
1368 return false;
1369 } else if (!isa<UndefValue>(MV->getOperand(i))) {
1370 return false;
1371 }
1372 }
1373 }
1374 else if (!isa<UndefValue>(Mask) && !isa<ConstantAggregateZero>(Mask))
1375 return false;
1376
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001377 return true;
1378}
1379
Chris Lattnerf724e342008-03-02 05:28:33 +00001380/// getMaskValue - Return the index from the shuffle mask for the specified
1381/// output result. This is either -1 if the element is undef or a number less
1382/// than 2*numelements.
1383int ShuffleVectorInst::getMaskValue(unsigned i) const {
1384 const Constant *Mask = cast<Constant>(getOperand(2));
1385 if (isa<UndefValue>(Mask)) return -1;
1386 if (isa<ConstantAggregateZero>(Mask)) return 0;
1387 const ConstantVector *MaskCV = cast<ConstantVector>(Mask);
1388 assert(i < MaskCV->getNumOperands() && "Index out of range");
1389
1390 if (isa<UndefValue>(MaskCV->getOperand(i)))
1391 return -1;
1392 return cast<ConstantInt>(MaskCV->getOperand(i))->getZExtValue();
1393}
1394
Dan Gohman12fce772008-05-15 19:50:34 +00001395//===----------------------------------------------------------------------===//
Dan Gohman0752bff2008-05-23 00:36:11 +00001396// InsertValueInst Class
1397//===----------------------------------------------------------------------===//
1398
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001399void InsertValueInst::init(Value *Agg, Value *Val, const unsigned *Idx,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001400 unsigned NumIdx, const Twine &Name) {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001401 assert(NumOperands == 2 && "NumOperands not initialized?");
Frits van Bommel16ebe772010-12-05 20:50:26 +00001402 assert(ExtractValueInst::getIndexedType(Agg->getType(), Idx, Idx + NumIdx) ==
1403 Val->getType() && "Inserted value must match indexed type!");
Dan Gohman1ecaf452008-05-31 00:58:22 +00001404 Op<0>() = Agg;
1405 Op<1>() = Val;
Dan Gohman0752bff2008-05-23 00:36:11 +00001406
Dan Gohmandd41bba2010-06-21 19:47:52 +00001407 Indices.append(Idx, Idx + NumIdx);
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001408 setName(Name);
Dan Gohman0752bff2008-05-23 00:36:11 +00001409}
1410
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001411void InsertValueInst::init(Value *Agg, Value *Val, unsigned Idx,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001412 const Twine &Name) {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001413 assert(NumOperands == 2 && "NumOperands not initialized?");
Frits van Bommel16ebe772010-12-05 20:50:26 +00001414 assert(ExtractValueInst::getIndexedType(Agg->getType(), Idx) == Val->getType()
1415 && "Inserted value must match indexed type!");
Dan Gohman1ecaf452008-05-31 00:58:22 +00001416 Op<0>() = Agg;
1417 Op<1>() = Val;
1418
1419 Indices.push_back(Idx);
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001420 setName(Name);
Dan Gohman0752bff2008-05-23 00:36:11 +00001421}
1422
1423InsertValueInst::InsertValueInst(const InsertValueInst &IVI)
Gabor Greife9408e62008-05-27 11:03:29 +00001424 : Instruction(IVI.getType(), InsertValue,
Dan Gohman1ecaf452008-05-31 00:58:22 +00001425 OperandTraits<InsertValueInst>::op_begin(this), 2),
1426 Indices(IVI.Indices) {
Dan Gohmand8ca05f2008-06-17 23:25:49 +00001427 Op<0>() = IVI.getOperand(0);
1428 Op<1>() = IVI.getOperand(1);
Dan Gohmanc8a27f22009-08-25 22:11:20 +00001429 SubclassOptionalData = IVI.SubclassOptionalData;
Dan Gohman0752bff2008-05-23 00:36:11 +00001430}
1431
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001432InsertValueInst::InsertValueInst(Value *Agg,
1433 Value *Val,
1434 unsigned Idx,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001435 const Twine &Name,
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001436 Instruction *InsertBefore)
1437 : Instruction(Agg->getType(), InsertValue,
1438 OperandTraits<InsertValueInst>::op_begin(this),
1439 2, InsertBefore) {
1440 init(Agg, Val, Idx, Name);
1441}
1442
1443InsertValueInst::InsertValueInst(Value *Agg,
1444 Value *Val,
1445 unsigned Idx,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001446 const Twine &Name,
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001447 BasicBlock *InsertAtEnd)
1448 : Instruction(Agg->getType(), InsertValue,
1449 OperandTraits<InsertValueInst>::op_begin(this),
1450 2, InsertAtEnd) {
1451 init(Agg, Val, Idx, Name);
1452}
1453
Dan Gohman0752bff2008-05-23 00:36:11 +00001454//===----------------------------------------------------------------------===//
Dan Gohman12fce772008-05-15 19:50:34 +00001455// ExtractValueInst Class
1456//===----------------------------------------------------------------------===//
1457
Gabor Greifcbcc4952008-06-06 21:06:32 +00001458void ExtractValueInst::init(const unsigned *Idx, unsigned NumIdx,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001459 const Twine &Name) {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001460 assert(NumOperands == 1 && "NumOperands not initialized?");
Dan Gohman0752bff2008-05-23 00:36:11 +00001461
Dan Gohmandd41bba2010-06-21 19:47:52 +00001462 Indices.append(Idx, Idx + NumIdx);
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001463 setName(Name);
Dan Gohman0752bff2008-05-23 00:36:11 +00001464}
1465
Daniel Dunbar4975db62009-07-25 04:41:11 +00001466void ExtractValueInst::init(unsigned Idx, const Twine &Name) {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001467 assert(NumOperands == 1 && "NumOperands not initialized?");
Dan Gohman1ecaf452008-05-31 00:58:22 +00001468
1469 Indices.push_back(Idx);
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001470 setName(Name);
Dan Gohman0752bff2008-05-23 00:36:11 +00001471}
1472
1473ExtractValueInst::ExtractValueInst(const ExtractValueInst &EVI)
Gabor Greif21ba1842008-06-06 20:28:12 +00001474 : UnaryInstruction(EVI.getType(), ExtractValue, EVI.getOperand(0)),
Dan Gohman1ecaf452008-05-31 00:58:22 +00001475 Indices(EVI.Indices) {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00001476 SubclassOptionalData = EVI.SubclassOptionalData;
Dan Gohman0752bff2008-05-23 00:36:11 +00001477}
1478
Dan Gohman12fce772008-05-15 19:50:34 +00001479// getIndexedType - Returns the type of the element that would be extracted
1480// with an extractvalue instruction with the specified parameters.
1481//
1482// A null type is returned if the indices are invalid for the specified
1483// pointer type.
1484//
1485const Type* ExtractValueInst::getIndexedType(const Type *Agg,
Dan Gohman1ecaf452008-05-31 00:58:22 +00001486 const unsigned *Idxs,
Dan Gohman12fce772008-05-15 19:50:34 +00001487 unsigned NumIdx) {
Frits van Bommel16ebe772010-12-05 20:50:26 +00001488 for (unsigned CurIdx = 0; CurIdx != NumIdx; ++CurIdx) {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001489 unsigned Index = Idxs[CurIdx];
Frits van Bommel16ebe772010-12-05 20:50:26 +00001490 // We can't use CompositeType::indexValid(Index) here.
1491 // indexValid() always returns true for arrays because getelementptr allows
1492 // out-of-bounds indices. Since we don't allow those for extractvalue and
1493 // insertvalue we need to check array indexing manually.
1494 // Since the only other types we can index into are struct types it's just
1495 // as easy to check those manually as well.
1496 if (const ArrayType *AT = dyn_cast<ArrayType>(Agg)) {
1497 if (Index >= AT->getNumElements())
1498 return 0;
1499 } else if (const StructType *ST = dyn_cast<StructType>(Agg)) {
1500 if (Index >= ST->getNumElements())
1501 return 0;
1502 } else {
1503 // Not a valid type to index into.
1504 return 0;
1505 }
1506
1507 Agg = cast<CompositeType>(Agg)->getTypeAtIndex(Index);
Dan Gohman12fce772008-05-15 19:50:34 +00001508
1509 // If the new type forwards to another type, then it is in the middle
1510 // of being refined to another type (and hence, may have dropped all
1511 // references to what it was using before). So, use the new forwarded
1512 // type.
1513 if (const Type *Ty = Agg->getForwardedType())
1514 Agg = Ty;
1515 }
Frits van Bommel16ebe772010-12-05 20:50:26 +00001516 return Agg;
Dan Gohman12fce772008-05-15 19:50:34 +00001517}
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001518
Dan Gohman4a3125b2008-06-17 21:07:55 +00001519const Type* ExtractValueInst::getIndexedType(const Type *Agg,
Dan Gohmand87e8132008-06-20 00:47:44 +00001520 unsigned Idx) {
1521 return getIndexedType(Agg, &Idx, 1);
Dan Gohman4a3125b2008-06-17 21:07:55 +00001522}
1523
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001524//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001525// BinaryOperator Class
1526//===----------------------------------------------------------------------===//
1527
Chris Lattner2195fc42007-02-24 00:55:48 +00001528BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001529 const Type *Ty, const Twine &Name,
Chris Lattner2195fc42007-02-24 00:55:48 +00001530 Instruction *InsertBefore)
Dan Gohmana2414ea2010-05-03 22:44:19 +00001531 : Instruction(Ty, iType,
Gabor Greiff6caff662008-05-10 08:32:32 +00001532 OperandTraits<BinaryOperator>::op_begin(this),
1533 OperandTraits<BinaryOperator>::operands(this),
1534 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001535 Op<0>() = S1;
1536 Op<1>() = S2;
Dan Gohmana2414ea2010-05-03 22:44:19 +00001537 init(iType);
Chris Lattner2195fc42007-02-24 00:55:48 +00001538 setName(Name);
1539}
1540
1541BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001542 const Type *Ty, const Twine &Name,
Chris Lattner2195fc42007-02-24 00:55:48 +00001543 BasicBlock *InsertAtEnd)
Dan Gohmana2414ea2010-05-03 22:44:19 +00001544 : Instruction(Ty, iType,
Gabor Greiff6caff662008-05-10 08:32:32 +00001545 OperandTraits<BinaryOperator>::op_begin(this),
1546 OperandTraits<BinaryOperator>::operands(this),
1547 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001548 Op<0>() = S1;
1549 Op<1>() = S2;
Dan Gohmana2414ea2010-05-03 22:44:19 +00001550 init(iType);
Chris Lattner2195fc42007-02-24 00:55:48 +00001551 setName(Name);
1552}
1553
1554
1555void BinaryOperator::init(BinaryOps iType) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001556 Value *LHS = getOperand(0), *RHS = getOperand(1);
Jeffrey Yasskin9b43f332010-12-23 00:58:24 +00001557 (void)LHS; (void)RHS; // Silence warnings.
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001558 assert(LHS->getType() == RHS->getType() &&
1559 "Binary operator operand types must match!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001560#ifndef NDEBUG
1561 switch (iType) {
1562 case Add: case Sub:
Dan Gohmana5b96452009-06-04 22:49:04 +00001563 case Mul:
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001564 assert(getType() == LHS->getType() &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001565 "Arithmetic operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001566 assert(getType()->isIntOrIntVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001567 "Tried to create an integer operation on a non-integer type!");
1568 break;
1569 case FAdd: case FSub:
1570 case FMul:
1571 assert(getType() == LHS->getType() &&
1572 "Arithmetic operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001573 assert(getType()->isFPOrFPVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001574 "Tried to create a floating-point operation on a "
1575 "non-floating-point type!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001576 break;
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001577 case UDiv:
1578 case SDiv:
1579 assert(getType() == LHS->getType() &&
1580 "Arithmetic operation should return same type as operands!");
Duncan Sands19d0b472010-02-16 11:11:14 +00001581 assert((getType()->isIntegerTy() || (getType()->isVectorTy() &&
Duncan Sands9dff9be2010-02-15 16:12:20 +00001582 cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001583 "Incorrect operand type (not integer) for S/UDIV");
1584 break;
1585 case FDiv:
1586 assert(getType() == LHS->getType() &&
1587 "Arithmetic operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001588 assert(getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001589 "Incorrect operand type (not floating point) for FDIV");
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001590 break;
Reid Spencer7eb55b32006-11-02 01:53:59 +00001591 case URem:
1592 case SRem:
1593 assert(getType() == LHS->getType() &&
1594 "Arithmetic operation should return same type as operands!");
Duncan Sands19d0b472010-02-16 11:11:14 +00001595 assert((getType()->isIntegerTy() || (getType()->isVectorTy() &&
Duncan Sands9dff9be2010-02-15 16:12:20 +00001596 cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
Reid Spencer7eb55b32006-11-02 01:53:59 +00001597 "Incorrect operand type (not integer) for S/UREM");
1598 break;
1599 case FRem:
1600 assert(getType() == LHS->getType() &&
1601 "Arithmetic operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001602 assert(getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001603 "Incorrect operand type (not floating point) for FREM");
Reid Spencer7eb55b32006-11-02 01:53:59 +00001604 break;
Reid Spencer2341c222007-02-02 02:16:23 +00001605 case Shl:
1606 case LShr:
1607 case AShr:
1608 assert(getType() == LHS->getType() &&
1609 "Shift operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001610 assert((getType()->isIntegerTy() ||
Duncan Sands19d0b472010-02-16 11:11:14 +00001611 (getType()->isVectorTy() &&
Duncan Sands9dff9be2010-02-15 16:12:20 +00001612 cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
Nate Begemanfecbc8c2008-07-29 15:49:41 +00001613 "Tried to create a shift operation on a non-integral type!");
Reid Spencer2341c222007-02-02 02:16:23 +00001614 break;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001615 case And: case Or:
1616 case Xor:
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001617 assert(getType() == LHS->getType() &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001618 "Logical operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001619 assert((getType()->isIntegerTy() ||
Duncan Sands19d0b472010-02-16 11:11:14 +00001620 (getType()->isVectorTy() &&
Duncan Sands9dff9be2010-02-15 16:12:20 +00001621 cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
Misha Brukman3852f652005-01-27 06:46:38 +00001622 "Tried to create a logical operation on a non-integral type!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001623 break;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001624 default:
1625 break;
1626 }
1627#endif
1628}
1629
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001630BinaryOperator *BinaryOperator::Create(BinaryOps Op, Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001631 const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001632 Instruction *InsertBefore) {
1633 assert(S1->getType() == S2->getType() &&
1634 "Cannot create binary operator with two operands of differing type!");
Reid Spencer266e42b2006-12-23 06:05:41 +00001635 return new BinaryOperator(Op, S1, S2, S1->getType(), Name, InsertBefore);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001636}
1637
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001638BinaryOperator *BinaryOperator::Create(BinaryOps Op, Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001639 const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001640 BasicBlock *InsertAtEnd) {
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001641 BinaryOperator *Res = Create(Op, S1, S2, Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001642 InsertAtEnd->getInstList().push_back(Res);
1643 return Res;
1644}
1645
Dan Gohman5476cfd2009-08-12 16:23:25 +00001646BinaryOperator *BinaryOperator::CreateNeg(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001647 Instruction *InsertBefore) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001648 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Reid Spencer2eadb532007-01-21 00:29:26 +00001649 return new BinaryOperator(Instruction::Sub,
1650 zero, Op,
1651 Op->getType(), Name, InsertBefore);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001652}
1653
Dan Gohman5476cfd2009-08-12 16:23:25 +00001654BinaryOperator *BinaryOperator::CreateNeg(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001655 BasicBlock *InsertAtEnd) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001656 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Reid Spencer2eadb532007-01-21 00:29:26 +00001657 return new BinaryOperator(Instruction::Sub,
1658 zero, Op,
1659 Op->getType(), Name, InsertAtEnd);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001660}
1661
Dan Gohman4ab44202009-12-18 02:58:50 +00001662BinaryOperator *BinaryOperator::CreateNSWNeg(Value *Op, const Twine &Name,
1663 Instruction *InsertBefore) {
1664 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1665 return BinaryOperator::CreateNSWSub(zero, Op, Name, InsertBefore);
1666}
1667
1668BinaryOperator *BinaryOperator::CreateNSWNeg(Value *Op, const Twine &Name,
1669 BasicBlock *InsertAtEnd) {
1670 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1671 return BinaryOperator::CreateNSWSub(zero, Op, Name, InsertAtEnd);
1672}
1673
Duncan Sandsfa5f5962010-02-02 12:53:04 +00001674BinaryOperator *BinaryOperator::CreateNUWNeg(Value *Op, const Twine &Name,
1675 Instruction *InsertBefore) {
1676 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1677 return BinaryOperator::CreateNUWSub(zero, Op, Name, InsertBefore);
1678}
1679
1680BinaryOperator *BinaryOperator::CreateNUWNeg(Value *Op, const Twine &Name,
1681 BasicBlock *InsertAtEnd) {
1682 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1683 return BinaryOperator::CreateNUWSub(zero, Op, Name, InsertAtEnd);
1684}
1685
Dan Gohman5476cfd2009-08-12 16:23:25 +00001686BinaryOperator *BinaryOperator::CreateFNeg(Value *Op, const Twine &Name,
Dan Gohmana5b96452009-06-04 22:49:04 +00001687 Instruction *InsertBefore) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001688 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Dan Gohmana5b96452009-06-04 22:49:04 +00001689 return new BinaryOperator(Instruction::FSub,
1690 zero, Op,
1691 Op->getType(), Name, InsertBefore);
1692}
1693
Dan Gohman5476cfd2009-08-12 16:23:25 +00001694BinaryOperator *BinaryOperator::CreateFNeg(Value *Op, const Twine &Name,
Dan Gohmana5b96452009-06-04 22:49:04 +00001695 BasicBlock *InsertAtEnd) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001696 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Dan Gohmana5b96452009-06-04 22:49:04 +00001697 return new BinaryOperator(Instruction::FSub,
1698 zero, Op,
1699 Op->getType(), Name, InsertAtEnd);
1700}
1701
Dan Gohman5476cfd2009-08-12 16:23:25 +00001702BinaryOperator *BinaryOperator::CreateNot(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001703 Instruction *InsertBefore) {
Chris Lattnere8e7ac42006-03-25 21:54:21 +00001704 Constant *C;
Reid Spencerd84d35b2007-02-15 02:26:10 +00001705 if (const VectorType *PTy = dyn_cast<VectorType>(Op->getType())) {
Owen Anderson5a1acd92009-07-31 20:28:14 +00001706 C = Constant::getAllOnesValue(PTy->getElementType());
Owen Anderson4aa32952009-07-28 21:19:26 +00001707 C = ConstantVector::get(
Owen Andersonf945a9e2009-07-15 21:51:10 +00001708 std::vector<Constant*>(PTy->getNumElements(), C));
Chris Lattnere8e7ac42006-03-25 21:54:21 +00001709 } else {
Owen Anderson5a1acd92009-07-31 20:28:14 +00001710 C = Constant::getAllOnesValue(Op->getType());
Chris Lattnere8e7ac42006-03-25 21:54:21 +00001711 }
1712
1713 return new BinaryOperator(Instruction::Xor, Op, C,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001714 Op->getType(), Name, InsertBefore);
1715}
1716
Dan Gohman5476cfd2009-08-12 16:23:25 +00001717BinaryOperator *BinaryOperator::CreateNot(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001718 BasicBlock *InsertAtEnd) {
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001719 Constant *AllOnes;
Reid Spencerd84d35b2007-02-15 02:26:10 +00001720 if (const VectorType *PTy = dyn_cast<VectorType>(Op->getType())) {
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001721 // Create a vector of all ones values.
Owen Anderson5a1acd92009-07-31 20:28:14 +00001722 Constant *Elt = Constant::getAllOnesValue(PTy->getElementType());
Owen Anderson4aa32952009-07-28 21:19:26 +00001723 AllOnes = ConstantVector::get(
Owen Andersonf945a9e2009-07-15 21:51:10 +00001724 std::vector<Constant*>(PTy->getNumElements(), Elt));
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001725 } else {
Owen Anderson5a1acd92009-07-31 20:28:14 +00001726 AllOnes = Constant::getAllOnesValue(Op->getType());
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001727 }
1728
1729 return new BinaryOperator(Instruction::Xor, Op, AllOnes,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001730 Op->getType(), Name, InsertAtEnd);
1731}
1732
1733
1734// isConstantAllOnes - Helper function for several functions below
1735static inline bool isConstantAllOnes(const Value *V) {
Chris Lattner1edec382007-06-15 06:04:24 +00001736 if (const ConstantInt *CI = dyn_cast<ConstantInt>(V))
1737 return CI->isAllOnesValue();
1738 if (const ConstantVector *CV = dyn_cast<ConstantVector>(V))
1739 return CV->isAllOnesValue();
1740 return false;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001741}
1742
Owen Andersonbb2501b2009-07-13 22:18:28 +00001743bool BinaryOperator::isNeg(const Value *V) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001744 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1745 if (Bop->getOpcode() == Instruction::Sub)
Owen Andersonbb2501b2009-07-13 22:18:28 +00001746 if (Constant* C = dyn_cast<Constant>(Bop->getOperand(0)))
1747 return C->isNegativeZeroValue();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001748 return false;
1749}
1750
Owen Andersonbb2501b2009-07-13 22:18:28 +00001751bool BinaryOperator::isFNeg(const Value *V) {
Dan Gohmana5b96452009-06-04 22:49:04 +00001752 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1753 if (Bop->getOpcode() == Instruction::FSub)
Owen Andersonbb2501b2009-07-13 22:18:28 +00001754 if (Constant* C = dyn_cast<Constant>(Bop->getOperand(0)))
Dan Gohman11ff5702009-09-11 00:05:10 +00001755 return C->isNegativeZeroValue();
Dan Gohmana5b96452009-06-04 22:49:04 +00001756 return false;
1757}
1758
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001759bool BinaryOperator::isNot(const Value *V) {
1760 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1761 return (Bop->getOpcode() == Instruction::Xor &&
1762 (isConstantAllOnes(Bop->getOperand(1)) ||
1763 isConstantAllOnes(Bop->getOperand(0))));
1764 return false;
1765}
1766
Chris Lattner2c7d1772005-04-24 07:28:37 +00001767Value *BinaryOperator::getNegArgument(Value *BinOp) {
Chris Lattner2c7d1772005-04-24 07:28:37 +00001768 return cast<BinaryOperator>(BinOp)->getOperand(1);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001769}
1770
Chris Lattner2c7d1772005-04-24 07:28:37 +00001771const Value *BinaryOperator::getNegArgument(const Value *BinOp) {
1772 return getNegArgument(const_cast<Value*>(BinOp));
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001773}
1774
Dan Gohmana5b96452009-06-04 22:49:04 +00001775Value *BinaryOperator::getFNegArgument(Value *BinOp) {
Dan Gohmana5b96452009-06-04 22:49:04 +00001776 return cast<BinaryOperator>(BinOp)->getOperand(1);
1777}
1778
1779const Value *BinaryOperator::getFNegArgument(const Value *BinOp) {
1780 return getFNegArgument(const_cast<Value*>(BinOp));
1781}
1782
Chris Lattner2c7d1772005-04-24 07:28:37 +00001783Value *BinaryOperator::getNotArgument(Value *BinOp) {
1784 assert(isNot(BinOp) && "getNotArgument on non-'not' instruction!");
1785 BinaryOperator *BO = cast<BinaryOperator>(BinOp);
1786 Value *Op0 = BO->getOperand(0);
1787 Value *Op1 = BO->getOperand(1);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001788 if (isConstantAllOnes(Op0)) return Op1;
1789
1790 assert(isConstantAllOnes(Op1));
1791 return Op0;
1792}
1793
Chris Lattner2c7d1772005-04-24 07:28:37 +00001794const Value *BinaryOperator::getNotArgument(const Value *BinOp) {
1795 return getNotArgument(const_cast<Value*>(BinOp));
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001796}
1797
1798
1799// swapOperands - Exchange the two operands to this instruction. This
1800// instruction is safe to use on any binary instruction and does not
1801// modify the semantics of the instruction. If the instruction is
1802// order dependent (SetLT f.e.) the opcode is changed.
1803//
1804bool BinaryOperator::swapOperands() {
Reid Spencer266e42b2006-12-23 06:05:41 +00001805 if (!isCommutative())
1806 return true; // Can't commute operands
Gabor Greif5ef74042008-05-13 22:51:52 +00001807 Op<0>().swap(Op<1>());
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001808 return false;
1809}
1810
Dan Gohman1b849082009-09-07 23:54:19 +00001811void BinaryOperator::setHasNoUnsignedWrap(bool b) {
1812 cast<OverflowingBinaryOperator>(this)->setHasNoUnsignedWrap(b);
1813}
1814
1815void BinaryOperator::setHasNoSignedWrap(bool b) {
1816 cast<OverflowingBinaryOperator>(this)->setHasNoSignedWrap(b);
1817}
1818
1819void BinaryOperator::setIsExact(bool b) {
1820 cast<SDivOperator>(this)->setIsExact(b);
1821}
1822
Nick Lewycky28a5f252009-09-27 21:33:04 +00001823bool BinaryOperator::hasNoUnsignedWrap() const {
1824 return cast<OverflowingBinaryOperator>(this)->hasNoUnsignedWrap();
1825}
1826
1827bool BinaryOperator::hasNoSignedWrap() const {
1828 return cast<OverflowingBinaryOperator>(this)->hasNoSignedWrap();
1829}
1830
1831bool BinaryOperator::isExact() const {
1832 return cast<SDivOperator>(this)->isExact();
1833}
1834
Chris Lattnerb0b8ddd2006-09-18 04:54:57 +00001835//===----------------------------------------------------------------------===//
1836// CastInst Class
1837//===----------------------------------------------------------------------===//
1838
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001839// Just determine if this cast only deals with integral->integral conversion.
1840bool CastInst::isIntegerCast() const {
1841 switch (getOpcode()) {
1842 default: return false;
1843 case Instruction::ZExt:
1844 case Instruction::SExt:
1845 case Instruction::Trunc:
1846 return true;
1847 case Instruction::BitCast:
Duncan Sands9dff9be2010-02-15 16:12:20 +00001848 return getOperand(0)->getType()->isIntegerTy() &&
1849 getType()->isIntegerTy();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001850 }
Chris Lattnerb0b8ddd2006-09-18 04:54:57 +00001851}
1852
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001853bool CastInst::isLosslessCast() const {
1854 // Only BitCast can be lossless, exit fast if we're not BitCast
1855 if (getOpcode() != Instruction::BitCast)
1856 return false;
1857
1858 // Identity cast is always lossless
1859 const Type* SrcTy = getOperand(0)->getType();
1860 const Type* DstTy = getType();
1861 if (SrcTy == DstTy)
1862 return true;
1863
Reid Spencer8d9336d2006-12-31 05:26:44 +00001864 // Pointer to pointer is always lossless.
Duncan Sands19d0b472010-02-16 11:11:14 +00001865 if (SrcTy->isPointerTy())
1866 return DstTy->isPointerTy();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001867 return false; // Other types have no identity values
1868}
1869
1870/// This function determines if the CastInst does not require any bits to be
1871/// changed in order to effect the cast. Essentially, it identifies cases where
1872/// no code gen is necessary for the cast, hence the name no-op cast. For
1873/// example, the following are all no-op casts:
Dan Gohmane9bc2ba2008-05-12 16:34:30 +00001874/// # bitcast i32* %x to i8*
1875/// # bitcast <2 x i32> %x to <4 x i16>
1876/// # ptrtoint i32* %x to i32 ; on 32-bit plaforms only
Dan Gohman0d7f3b82010-05-28 21:41:37 +00001877/// @brief Determine if the described cast is a no-op.
1878bool CastInst::isNoopCast(Instruction::CastOps Opcode,
1879 const Type *SrcTy,
1880 const Type *DestTy,
1881 const Type *IntPtrTy) {
1882 switch (Opcode) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001883 default:
1884 assert(!"Invalid CastOp");
1885 case Instruction::Trunc:
1886 case Instruction::ZExt:
1887 case Instruction::SExt:
1888 case Instruction::FPTrunc:
1889 case Instruction::FPExt:
1890 case Instruction::UIToFP:
1891 case Instruction::SIToFP:
1892 case Instruction::FPToUI:
1893 case Instruction::FPToSI:
1894 return false; // These always modify bits
1895 case Instruction::BitCast:
1896 return true; // BitCast never modifies bits.
1897 case Instruction::PtrToInt:
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001898 return IntPtrTy->getScalarSizeInBits() ==
Dan Gohman0d7f3b82010-05-28 21:41:37 +00001899 DestTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001900 case Instruction::IntToPtr:
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001901 return IntPtrTy->getScalarSizeInBits() ==
Dan Gohman0d7f3b82010-05-28 21:41:37 +00001902 SrcTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001903 }
1904}
1905
Dan Gohman0d7f3b82010-05-28 21:41:37 +00001906/// @brief Determine if a cast is a no-op.
1907bool CastInst::isNoopCast(const Type *IntPtrTy) const {
1908 return isNoopCast(getOpcode(), getOperand(0)->getType(), getType(), IntPtrTy);
1909}
1910
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001911/// This function determines if a pair of casts can be eliminated and what
1912/// opcode should be used in the elimination. This assumes that there are two
1913/// instructions like this:
1914/// * %F = firstOpcode SrcTy %x to MidTy
1915/// * %S = secondOpcode MidTy %F to DstTy
1916/// The function returns a resultOpcode so these two casts can be replaced with:
1917/// * %Replacement = resultOpcode %SrcTy %x to DstTy
1918/// If no such cast is permited, the function returns 0.
1919unsigned CastInst::isEliminableCastPair(
1920 Instruction::CastOps firstOp, Instruction::CastOps secondOp,
1921 const Type *SrcTy, const Type *MidTy, const Type *DstTy, const Type *IntPtrTy)
1922{
1923 // Define the 144 possibilities for these two cast instructions. The values
1924 // in this matrix determine what to do in a given situation and select the
1925 // case in the switch below. The rows correspond to firstOp, the columns
1926 // correspond to secondOp. In looking at the table below, keep in mind
1927 // the following cast properties:
1928 //
1929 // Size Compare Source Destination
1930 // Operator Src ? Size Type Sign Type Sign
1931 // -------- ------------ ------------------- ---------------------
1932 // TRUNC > Integer Any Integral Any
1933 // ZEXT < Integral Unsigned Integer Any
1934 // SEXT < Integral Signed Integer Any
1935 // FPTOUI n/a FloatPt n/a Integral Unsigned
1936 // FPTOSI n/a FloatPt n/a Integral Signed
1937 // UITOFP n/a Integral Unsigned FloatPt n/a
1938 // SITOFP n/a Integral Signed FloatPt n/a
1939 // FPTRUNC > FloatPt n/a FloatPt n/a
1940 // FPEXT < FloatPt n/a FloatPt n/a
1941 // PTRTOINT n/a Pointer n/a Integral Unsigned
1942 // INTTOPTR n/a Integral Unsigned Pointer n/a
Dan Gohmaneb7111b2010-04-07 23:22:42 +00001943 // BITCAST = FirstClass n/a FirstClass n/a
Chris Lattner6f6b4972006-12-05 23:43:59 +00001944 //
1945 // NOTE: some transforms are safe, but we consider them to be non-profitable.
Dan Gohman4fe64de2009-06-14 23:30:43 +00001946 // For example, we could merge "fptoui double to i32" + "zext i32 to i64",
1947 // into "fptoui double to i64", but this loses information about the range
Chris Lattner6f6b4972006-12-05 23:43:59 +00001948 // of the produced value (we no longer know the top-part is all zeros).
1949 // Further this conversion is often much more expensive for typical hardware,
1950 // and causes issues when building libgcc. We disallow fptosi+sext for the
1951 // same reason.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001952 const unsigned numCastOps =
1953 Instruction::CastOpsEnd - Instruction::CastOpsBegin;
1954 static const uint8_t CastResults[numCastOps][numCastOps] = {
1955 // T F F U S F F P I B -+
1956 // R Z S P P I I T P 2 N T |
1957 // U E E 2 2 2 2 R E I T C +- secondOp
1958 // N X X U S F F N X N 2 V |
1959 // C T T I I P P C T T P T -+
1960 { 1, 0, 0,99,99, 0, 0,99,99,99, 0, 3 }, // Trunc -+
1961 { 8, 1, 9,99,99, 2, 0,99,99,99, 2, 3 }, // ZExt |
1962 { 8, 0, 1,99,99, 0, 2,99,99,99, 0, 3 }, // SExt |
Chris Lattner6f6b4972006-12-05 23:43:59 +00001963 { 0, 0, 0,99,99, 0, 0,99,99,99, 0, 3 }, // FPToUI |
1964 { 0, 0, 0,99,99, 0, 0,99,99,99, 0, 3 }, // FPToSI |
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001965 { 99,99,99, 0, 0,99,99, 0, 0,99,99, 4 }, // UIToFP +- firstOp
1966 { 99,99,99, 0, 0,99,99, 0, 0,99,99, 4 }, // SIToFP |
1967 { 99,99,99, 0, 0,99,99, 1, 0,99,99, 4 }, // FPTrunc |
1968 { 99,99,99, 2, 2,99,99,10, 2,99,99, 4 }, // FPExt |
1969 { 1, 0, 0,99,99, 0, 0,99,99,99, 7, 3 }, // PtrToInt |
1970 { 99,99,99,99,99,99,99,99,99,13,99,12 }, // IntToPtr |
1971 { 5, 5, 5, 6, 6, 5, 5, 6, 6,11, 5, 1 }, // BitCast -+
1972 };
Chris Lattner25eea4d2010-07-12 01:19:22 +00001973
1974 // If either of the casts are a bitcast from scalar to vector, disallow the
1975 // merging.
1976 if ((firstOp == Instruction::BitCast &&
1977 isa<VectorType>(SrcTy) != isa<VectorType>(MidTy)) ||
1978 (secondOp == Instruction::BitCast &&
1979 isa<VectorType>(MidTy) != isa<VectorType>(DstTy)))
1980 return 0; // Disallowed
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001981
1982 int ElimCase = CastResults[firstOp-Instruction::CastOpsBegin]
1983 [secondOp-Instruction::CastOpsBegin];
1984 switch (ElimCase) {
1985 case 0:
1986 // categorically disallowed
1987 return 0;
1988 case 1:
1989 // allowed, use first cast's opcode
1990 return firstOp;
1991 case 2:
1992 // allowed, use second cast's opcode
1993 return secondOp;
1994 case 3:
1995 // no-op cast in second op implies firstOp as long as the DestTy
Mon P Wange04b4562010-01-23 04:35:57 +00001996 // is integer and we are not converting between a vector and a
Chris Lattner531732b2010-01-23 04:42:42 +00001997 // non vector type.
Duncan Sands19d0b472010-02-16 11:11:14 +00001998 if (!SrcTy->isVectorTy() && DstTy->isIntegerTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001999 return firstOp;
2000 return 0;
2001 case 4:
2002 // no-op cast in second op implies firstOp as long as the DestTy
Chris Lattner531732b2010-01-23 04:42:42 +00002003 // is floating point.
Duncan Sands9dff9be2010-02-15 16:12:20 +00002004 if (DstTy->isFloatingPointTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002005 return firstOp;
2006 return 0;
2007 case 5:
2008 // no-op cast in first op implies secondOp as long as the SrcTy
Chris Lattner531732b2010-01-23 04:42:42 +00002009 // is an integer.
Duncan Sands9dff9be2010-02-15 16:12:20 +00002010 if (SrcTy->isIntegerTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002011 return secondOp;
2012 return 0;
2013 case 6:
2014 // no-op cast in first op implies secondOp as long as the SrcTy
Chris Lattner531732b2010-01-23 04:42:42 +00002015 // is a floating point.
Duncan Sands9dff9be2010-02-15 16:12:20 +00002016 if (SrcTy->isFloatingPointTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002017 return secondOp;
2018 return 0;
2019 case 7: {
2020 // ptrtoint, inttoptr -> bitcast (ptr -> ptr) if int size is >= ptr size
Dan Gohman9413de12009-07-21 23:19:40 +00002021 if (!IntPtrTy)
2022 return 0;
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002023 unsigned PtrSize = IntPtrTy->getScalarSizeInBits();
2024 unsigned MidSize = MidTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002025 if (MidSize >= PtrSize)
2026 return Instruction::BitCast;
2027 return 0;
2028 }
2029 case 8: {
2030 // ext, trunc -> bitcast, if the SrcTy and DstTy are same size
2031 // ext, trunc -> ext, if sizeof(SrcTy) < sizeof(DstTy)
2032 // ext, trunc -> trunc, if sizeof(SrcTy) > sizeof(DstTy)
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002033 unsigned SrcSize = SrcTy->getScalarSizeInBits();
2034 unsigned DstSize = DstTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002035 if (SrcSize == DstSize)
2036 return Instruction::BitCast;
2037 else if (SrcSize < DstSize)
2038 return firstOp;
2039 return secondOp;
2040 }
2041 case 9: // zext, sext -> zext, because sext can't sign extend after zext
2042 return Instruction::ZExt;
2043 case 10:
2044 // fpext followed by ftrunc is allowed if the bit size returned to is
2045 // the same as the original, in which case its just a bitcast
2046 if (SrcTy == DstTy)
2047 return Instruction::BitCast;
2048 return 0; // If the types are not the same we can't eliminate it.
2049 case 11:
2050 // bitcast followed by ptrtoint is allowed as long as the bitcast
2051 // is a pointer to pointer cast.
Duncan Sands19d0b472010-02-16 11:11:14 +00002052 if (SrcTy->isPointerTy() && MidTy->isPointerTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002053 return secondOp;
2054 return 0;
2055 case 12:
2056 // inttoptr, bitcast -> intptr if bitcast is a ptr to ptr cast
Duncan Sands19d0b472010-02-16 11:11:14 +00002057 if (MidTy->isPointerTy() && DstTy->isPointerTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002058 return firstOp;
2059 return 0;
2060 case 13: {
2061 // inttoptr, ptrtoint -> bitcast if SrcSize<=PtrSize and SrcSize==DstSize
Dan Gohman9413de12009-07-21 23:19:40 +00002062 if (!IntPtrTy)
2063 return 0;
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002064 unsigned PtrSize = IntPtrTy->getScalarSizeInBits();
2065 unsigned SrcSize = SrcTy->getScalarSizeInBits();
2066 unsigned DstSize = DstTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002067 if (SrcSize <= PtrSize && SrcSize == DstSize)
2068 return Instruction::BitCast;
2069 return 0;
2070 }
2071 case 99:
2072 // cast combination can't happen (error in input). This is for all cases
2073 // where the MidTy is not the same for the two cast instructions.
2074 assert(!"Invalid Cast Combination");
2075 return 0;
2076 default:
2077 assert(!"Error in CastResults table!!!");
2078 return 0;
2079 }
2080 return 0;
2081}
2082
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002083CastInst *CastInst::Create(Instruction::CastOps op, Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002084 const Twine &Name, Instruction *InsertBefore) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002085 // Construct and return the appropriate CastInst subclass
2086 switch (op) {
2087 case Trunc: return new TruncInst (S, Ty, Name, InsertBefore);
2088 case ZExt: return new ZExtInst (S, Ty, Name, InsertBefore);
2089 case SExt: return new SExtInst (S, Ty, Name, InsertBefore);
2090 case FPTrunc: return new FPTruncInst (S, Ty, Name, InsertBefore);
2091 case FPExt: return new FPExtInst (S, Ty, Name, InsertBefore);
2092 case UIToFP: return new UIToFPInst (S, Ty, Name, InsertBefore);
2093 case SIToFP: return new SIToFPInst (S, Ty, Name, InsertBefore);
2094 case FPToUI: return new FPToUIInst (S, Ty, Name, InsertBefore);
2095 case FPToSI: return new FPToSIInst (S, Ty, Name, InsertBefore);
2096 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertBefore);
2097 case IntToPtr: return new IntToPtrInst (S, Ty, Name, InsertBefore);
2098 case BitCast: return new BitCastInst (S, Ty, Name, InsertBefore);
2099 default:
2100 assert(!"Invalid opcode provided");
2101 }
2102 return 0;
2103}
2104
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002105CastInst *CastInst::Create(Instruction::CastOps op, Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002106 const Twine &Name, BasicBlock *InsertAtEnd) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002107 // Construct and return the appropriate CastInst subclass
2108 switch (op) {
2109 case Trunc: return new TruncInst (S, Ty, Name, InsertAtEnd);
2110 case ZExt: return new ZExtInst (S, Ty, Name, InsertAtEnd);
2111 case SExt: return new SExtInst (S, Ty, Name, InsertAtEnd);
2112 case FPTrunc: return new FPTruncInst (S, Ty, Name, InsertAtEnd);
2113 case FPExt: return new FPExtInst (S, Ty, Name, InsertAtEnd);
2114 case UIToFP: return new UIToFPInst (S, Ty, Name, InsertAtEnd);
2115 case SIToFP: return new SIToFPInst (S, Ty, Name, InsertAtEnd);
2116 case FPToUI: return new FPToUIInst (S, Ty, Name, InsertAtEnd);
2117 case FPToSI: return new FPToSIInst (S, Ty, Name, InsertAtEnd);
2118 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertAtEnd);
2119 case IntToPtr: return new IntToPtrInst (S, Ty, Name, InsertAtEnd);
2120 case BitCast: return new BitCastInst (S, Ty, Name, InsertAtEnd);
2121 default:
2122 assert(!"Invalid opcode provided");
2123 }
2124 return 0;
2125}
2126
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002127CastInst *CastInst::CreateZExtOrBitCast(Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002128 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002129 Instruction *InsertBefore) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002130 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002131 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
2132 return Create(Instruction::ZExt, S, Ty, Name, InsertBefore);
Reid Spencer5c140882006-12-04 20:17:56 +00002133}
2134
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002135CastInst *CastInst::CreateZExtOrBitCast(Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002136 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002137 BasicBlock *InsertAtEnd) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002138 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002139 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
2140 return Create(Instruction::ZExt, S, Ty, Name, InsertAtEnd);
Reid Spencer5c140882006-12-04 20:17:56 +00002141}
2142
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002143CastInst *CastInst::CreateSExtOrBitCast(Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002144 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002145 Instruction *InsertBefore) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002146 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002147 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
2148 return Create(Instruction::SExt, S, Ty, Name, InsertBefore);
Reid Spencer5c140882006-12-04 20:17:56 +00002149}
2150
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002151CastInst *CastInst::CreateSExtOrBitCast(Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002152 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002153 BasicBlock *InsertAtEnd) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002154 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002155 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
2156 return Create(Instruction::SExt, S, Ty, Name, InsertAtEnd);
Reid Spencer5c140882006-12-04 20:17:56 +00002157}
2158
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002159CastInst *CastInst::CreateTruncOrBitCast(Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002160 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002161 Instruction *InsertBefore) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002162 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002163 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
2164 return Create(Instruction::Trunc, S, Ty, Name, InsertBefore);
Reid Spencer5c140882006-12-04 20:17:56 +00002165}
2166
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002167CastInst *CastInst::CreateTruncOrBitCast(Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002168 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002169 BasicBlock *InsertAtEnd) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002170 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002171 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
2172 return Create(Instruction::Trunc, S, Ty, Name, InsertAtEnd);
Reid Spencer5c140882006-12-04 20:17:56 +00002173}
2174
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002175CastInst *CastInst::CreatePointerCast(Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002176 const Twine &Name,
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002177 BasicBlock *InsertAtEnd) {
Duncan Sands19d0b472010-02-16 11:11:14 +00002178 assert(S->getType()->isPointerTy() && "Invalid cast");
2179 assert((Ty->isIntegerTy() || Ty->isPointerTy()) &&
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002180 "Invalid cast");
2181
Duncan Sands9dff9be2010-02-15 16:12:20 +00002182 if (Ty->isIntegerTy())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002183 return Create(Instruction::PtrToInt, S, Ty, Name, InsertAtEnd);
2184 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002185}
2186
2187/// @brief Create a BitCast or a PtrToInt cast instruction
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002188CastInst *CastInst::CreatePointerCast(Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002189 const Twine &Name,
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002190 Instruction *InsertBefore) {
Duncan Sands19d0b472010-02-16 11:11:14 +00002191 assert(S->getType()->isPointerTy() && "Invalid cast");
2192 assert((Ty->isIntegerTy() || Ty->isPointerTy()) &&
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002193 "Invalid cast");
2194
Duncan Sands9dff9be2010-02-15 16:12:20 +00002195 if (Ty->isIntegerTy())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002196 return Create(Instruction::PtrToInt, S, Ty, Name, InsertBefore);
2197 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002198}
2199
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002200CastInst *CastInst::CreateIntegerCast(Value *C, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002201 bool isSigned, const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002202 Instruction *InsertBefore) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002203 assert(C->getType()->isIntOrIntVectorTy() && Ty->isIntOrIntVectorTy() &&
Chris Lattner5370ae72010-01-10 20:21:42 +00002204 "Invalid integer cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002205 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2206 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002207 Instruction::CastOps opcode =
2208 (SrcBits == DstBits ? Instruction::BitCast :
2209 (SrcBits > DstBits ? Instruction::Trunc :
2210 (isSigned ? Instruction::SExt : Instruction::ZExt)));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002211 return Create(opcode, C, Ty, Name, InsertBefore);
Reid Spencer7e933472006-12-12 00:49:44 +00002212}
2213
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002214CastInst *CastInst::CreateIntegerCast(Value *C, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002215 bool isSigned, const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002216 BasicBlock *InsertAtEnd) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002217 assert(C->getType()->isIntOrIntVectorTy() && Ty->isIntOrIntVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00002218 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002219 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2220 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002221 Instruction::CastOps opcode =
2222 (SrcBits == DstBits ? Instruction::BitCast :
2223 (SrcBits > DstBits ? Instruction::Trunc :
2224 (isSigned ? Instruction::SExt : Instruction::ZExt)));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002225 return Create(opcode, C, Ty, Name, InsertAtEnd);
Reid Spencer7e933472006-12-12 00:49:44 +00002226}
2227
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002228CastInst *CastInst::CreateFPCast(Value *C, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002229 const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002230 Instruction *InsertBefore) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002231 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer7e933472006-12-12 00:49:44 +00002232 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002233 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2234 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002235 Instruction::CastOps opcode =
2236 (SrcBits == DstBits ? Instruction::BitCast :
2237 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002238 return Create(opcode, C, Ty, Name, InsertBefore);
Reid Spencer7e933472006-12-12 00:49:44 +00002239}
2240
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002241CastInst *CastInst::CreateFPCast(Value *C, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002242 const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002243 BasicBlock *InsertAtEnd) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002244 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer7e933472006-12-12 00:49:44 +00002245 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002246 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2247 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002248 Instruction::CastOps opcode =
2249 (SrcBits == DstBits ? Instruction::BitCast :
2250 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002251 return Create(opcode, C, Ty, Name, InsertAtEnd);
Reid Spencer7e933472006-12-12 00:49:44 +00002252}
2253
Duncan Sands55e50902008-01-06 10:12:28 +00002254// Check whether it is valid to call getCastOpcode for these types.
2255// This routine must be kept in sync with getCastOpcode.
2256bool CastInst::isCastable(const Type *SrcTy, const Type *DestTy) {
2257 if (!SrcTy->isFirstClassType() || !DestTy->isFirstClassType())
2258 return false;
2259
2260 if (SrcTy == DestTy)
2261 return true;
2262
2263 // Get the bit sizes, we'll need these
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002264 unsigned SrcBits = SrcTy->getScalarSizeInBits(); // 0 for ptr
2265 unsigned DestBits = DestTy->getScalarSizeInBits(); // 0 for ptr
Duncan Sands55e50902008-01-06 10:12:28 +00002266
2267 // Run through the possibilities ...
Duncan Sands9dff9be2010-02-15 16:12:20 +00002268 if (DestTy->isIntegerTy()) { // Casting to integral
2269 if (SrcTy->isIntegerTy()) { // Casting from integral
Duncan Sands55e50902008-01-06 10:12:28 +00002270 return true;
Duncan Sands9dff9be2010-02-15 16:12:20 +00002271 } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt
Duncan Sands55e50902008-01-06 10:12:28 +00002272 return true;
2273 } else if (const VectorType *PTy = dyn_cast<VectorType>(SrcTy)) {
Gabor Greif697e94c2008-05-15 10:04:30 +00002274 // Casting from vector
Duncan Sands55e50902008-01-06 10:12:28 +00002275 return DestBits == PTy->getBitWidth();
Gabor Greif697e94c2008-05-15 10:04:30 +00002276 } else { // Casting from something else
Duncan Sands19d0b472010-02-16 11:11:14 +00002277 return SrcTy->isPointerTy();
Duncan Sands55e50902008-01-06 10:12:28 +00002278 }
Duncan Sands9dff9be2010-02-15 16:12:20 +00002279 } else if (DestTy->isFloatingPointTy()) { // Casting to floating pt
2280 if (SrcTy->isIntegerTy()) { // Casting from integral
Duncan Sands55e50902008-01-06 10:12:28 +00002281 return true;
Duncan Sands9dff9be2010-02-15 16:12:20 +00002282 } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt
Duncan Sands55e50902008-01-06 10:12:28 +00002283 return true;
2284 } else if (const VectorType *PTy = dyn_cast<VectorType>(SrcTy)) {
Gabor Greif697e94c2008-05-15 10:04:30 +00002285 // Casting from vector
Duncan Sands55e50902008-01-06 10:12:28 +00002286 return DestBits == PTy->getBitWidth();
Gabor Greif697e94c2008-05-15 10:04:30 +00002287 } else { // Casting from something else
Duncan Sands55e50902008-01-06 10:12:28 +00002288 return false;
2289 }
2290 } else if (const VectorType *DestPTy = dyn_cast<VectorType>(DestTy)) {
Gabor Greif697e94c2008-05-15 10:04:30 +00002291 // Casting to vector
Duncan Sands55e50902008-01-06 10:12:28 +00002292 if (const VectorType *SrcPTy = dyn_cast<VectorType>(SrcTy)) {
Gabor Greif697e94c2008-05-15 10:04:30 +00002293 // Casting from vector
Duncan Sands55e50902008-01-06 10:12:28 +00002294 return DestPTy->getBitWidth() == SrcPTy->getBitWidth();
Gabor Greif697e94c2008-05-15 10:04:30 +00002295 } else { // Casting from something else
Duncan Sands55e50902008-01-06 10:12:28 +00002296 return DestPTy->getBitWidth() == SrcBits;
2297 }
Duncan Sands19d0b472010-02-16 11:11:14 +00002298 } else if (DestTy->isPointerTy()) { // Casting to pointer
2299 if (SrcTy->isPointerTy()) { // Casting from pointer
Duncan Sands55e50902008-01-06 10:12:28 +00002300 return true;
Duncan Sands9dff9be2010-02-15 16:12:20 +00002301 } else if (SrcTy->isIntegerTy()) { // Casting from integral
Duncan Sands55e50902008-01-06 10:12:28 +00002302 return true;
Gabor Greif697e94c2008-05-15 10:04:30 +00002303 } else { // Casting from something else
Duncan Sands55e50902008-01-06 10:12:28 +00002304 return false;
2305 }
Dale Johannesendd224d22010-09-30 23:57:10 +00002306 } else if (DestTy->isX86_MMXTy()) {
2307 return SrcBits == 64;
Gabor Greif697e94c2008-05-15 10:04:30 +00002308 } else { // Casting to something else
Duncan Sands55e50902008-01-06 10:12:28 +00002309 return false;
2310 }
2311}
2312
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002313// Provide a way to get a "cast" where the cast opcode is inferred from the
2314// types and size of the operand. This, basically, is a parallel of the
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002315// logic in the castIsValid function below. This axiom should hold:
2316// castIsValid( getCastOpcode(Val, Ty), Val, Ty)
2317// should not assert in castIsValid. In other words, this produces a "correct"
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002318// casting opcode for the arguments passed to it.
Duncan Sands55e50902008-01-06 10:12:28 +00002319// This routine must be kept in sync with isCastable.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002320Instruction::CastOps
Reid Spencerc4dacf22006-12-04 02:43:42 +00002321CastInst::getCastOpcode(
2322 const Value *Src, bool SrcIsSigned, const Type *DestTy, bool DestIsSigned) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002323 // Get the bit sizes, we'll need these
2324 const Type *SrcTy = Src->getType();
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002325 unsigned SrcBits = SrcTy->getScalarSizeInBits(); // 0 for ptr
2326 unsigned DestBits = DestTy->getScalarSizeInBits(); // 0 for ptr
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002327
Duncan Sands55e50902008-01-06 10:12:28 +00002328 assert(SrcTy->isFirstClassType() && DestTy->isFirstClassType() &&
2329 "Only first class types are castable!");
2330
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002331 // Run through the possibilities ...
Duncan Sands9dff9be2010-02-15 16:12:20 +00002332 if (DestTy->isIntegerTy()) { // Casting to integral
2333 if (SrcTy->isIntegerTy()) { // Casting from integral
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002334 if (DestBits < SrcBits)
2335 return Trunc; // int -> smaller int
2336 else if (DestBits > SrcBits) { // its an extension
Reid Spencerc4dacf22006-12-04 02:43:42 +00002337 if (SrcIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002338 return SExt; // signed -> SEXT
2339 else
2340 return ZExt; // unsigned -> ZEXT
2341 } else {
2342 return BitCast; // Same size, No-op cast
2343 }
Duncan Sands9dff9be2010-02-15 16:12:20 +00002344 } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt
Reid Spencerc4dacf22006-12-04 02:43:42 +00002345 if (DestIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002346 return FPToSI; // FP -> sint
2347 else
2348 return FPToUI; // FP -> uint
Reid Spencerd84d35b2007-02-15 02:26:10 +00002349 } else if (const VectorType *PTy = dyn_cast<VectorType>(SrcTy)) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002350 assert(DestBits == PTy->getBitWidth() &&
Dan Gohmanfead7972007-05-11 21:43:24 +00002351 "Casting vector to integer of different width");
Devang Patele9432132008-11-05 01:37:40 +00002352 PTy = NULL;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002353 return BitCast; // Same size, no-op cast
2354 } else {
Duncan Sands19d0b472010-02-16 11:11:14 +00002355 assert(SrcTy->isPointerTy() &&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002356 "Casting from a value that is not first-class type");
2357 return PtrToInt; // ptr -> int
2358 }
Duncan Sands9dff9be2010-02-15 16:12:20 +00002359 } else if (DestTy->isFloatingPointTy()) { // Casting to floating pt
2360 if (SrcTy->isIntegerTy()) { // Casting from integral
Reid Spencerc4dacf22006-12-04 02:43:42 +00002361 if (SrcIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002362 return SIToFP; // sint -> FP
2363 else
2364 return UIToFP; // uint -> FP
Duncan Sands9dff9be2010-02-15 16:12:20 +00002365 } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002366 if (DestBits < SrcBits) {
2367 return FPTrunc; // FP -> smaller FP
2368 } else if (DestBits > SrcBits) {
2369 return FPExt; // FP -> larger FP
2370 } else {
2371 return BitCast; // same size, no-op cast
2372 }
Reid Spencerd84d35b2007-02-15 02:26:10 +00002373 } else if (const VectorType *PTy = dyn_cast<VectorType>(SrcTy)) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002374 assert(DestBits == PTy->getBitWidth() &&
Dan Gohmanfead7972007-05-11 21:43:24 +00002375 "Casting vector to floating point of different width");
Devang Patele9432132008-11-05 01:37:40 +00002376 PTy = NULL;
2377 return BitCast; // same size, no-op cast
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002378 } else {
Torok Edwinfbcc6632009-07-14 16:55:14 +00002379 llvm_unreachable("Casting pointer or non-first class to float");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002380 }
Reid Spencerd84d35b2007-02-15 02:26:10 +00002381 } else if (const VectorType *DestPTy = dyn_cast<VectorType>(DestTy)) {
2382 if (const VectorType *SrcPTy = dyn_cast<VectorType>(SrcTy)) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002383 assert(DestPTy->getBitWidth() == SrcPTy->getBitWidth() &&
Dan Gohmanfead7972007-05-11 21:43:24 +00002384 "Casting vector to vector of different widths");
Devang Patelcb181bb2008-11-21 20:00:59 +00002385 SrcPTy = NULL;
Dan Gohmanfead7972007-05-11 21:43:24 +00002386 return BitCast; // vector -> vector
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002387 } else if (DestPTy->getBitWidth() == SrcBits) {
Dan Gohmanfead7972007-05-11 21:43:24 +00002388 return BitCast; // float/int -> vector
Dale Johannesendd224d22010-09-30 23:57:10 +00002389 } else if (SrcTy->isX86_MMXTy()) {
2390 assert(DestPTy->getBitWidth()==64 &&
2391 "Casting X86_MMX to vector of wrong width");
2392 return BitCast; // MMX to 64-bit vector
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002393 } else {
Dan Gohmanfead7972007-05-11 21:43:24 +00002394 assert(!"Illegal cast to vector (wrong type or size)");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002395 }
Duncan Sands19d0b472010-02-16 11:11:14 +00002396 } else if (DestTy->isPointerTy()) {
2397 if (SrcTy->isPointerTy()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002398 return BitCast; // ptr -> ptr
Duncan Sands9dff9be2010-02-15 16:12:20 +00002399 } else if (SrcTy->isIntegerTy()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002400 return IntToPtr; // int -> ptr
2401 } else {
2402 assert(!"Casting pointer to other than pointer or int");
2403 }
Dale Johannesendd224d22010-09-30 23:57:10 +00002404 } else if (DestTy->isX86_MMXTy()) {
Bill Wendling3c704172010-10-03 00:46:06 +00002405 if (isa<VectorType>(SrcTy)) {
2406 assert(cast<VectorType>(SrcTy)->getBitWidth() == 64 &&
Dale Johannesendd224d22010-09-30 23:57:10 +00002407 "Casting vector of wrong width to X86_MMX");
2408 return BitCast; // 64-bit vector to MMX
2409 } else {
2410 assert(!"Illegal cast to X86_MMX");
2411 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002412 } else {
2413 assert(!"Casting to type that is not first-class");
2414 }
2415
2416 // If we fall through to here we probably hit an assertion cast above
2417 // and assertions are not turned on. Anything we return is an error, so
2418 // BitCast is as good a choice as any.
2419 return BitCast;
2420}
2421
2422//===----------------------------------------------------------------------===//
2423// CastInst SubClass Constructors
2424//===----------------------------------------------------------------------===//
2425
2426/// Check that the construction parameters for a CastInst are correct. This
2427/// could be broken out into the separate constructors but it is useful to have
2428/// it in one place and to eliminate the redundant code for getting the sizes
2429/// of the types involved.
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002430bool
2431CastInst::castIsValid(Instruction::CastOps op, Value *S, const Type *DstTy) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002432
2433 // Check for type sanity on the arguments
2434 const Type *SrcTy = S->getType();
Chris Lattner37bc78a2010-01-26 21:51:43 +00002435 if (!SrcTy->isFirstClassType() || !DstTy->isFirstClassType() ||
2436 SrcTy->isAggregateType() || DstTy->isAggregateType())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002437 return false;
2438
2439 // Get the size of the types in bits, we'll need this later
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002440 unsigned SrcBitSize = SrcTy->getScalarSizeInBits();
2441 unsigned DstBitSize = DstTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002442
2443 // Switch on the opcode provided
2444 switch (op) {
2445 default: return false; // This is an input error
2446 case Instruction::Trunc:
Duncan Sands9dff9be2010-02-15 16:12:20 +00002447 return SrcTy->isIntOrIntVectorTy() &&
2448 DstTy->isIntOrIntVectorTy()&& SrcBitSize > DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002449 case Instruction::ZExt:
Duncan Sands9dff9be2010-02-15 16:12:20 +00002450 return SrcTy->isIntOrIntVectorTy() &&
2451 DstTy->isIntOrIntVectorTy()&& SrcBitSize < DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002452 case Instruction::SExt:
Duncan Sands9dff9be2010-02-15 16:12:20 +00002453 return SrcTy->isIntOrIntVectorTy() &&
2454 DstTy->isIntOrIntVectorTy()&& SrcBitSize < DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002455 case Instruction::FPTrunc:
Duncan Sands9dff9be2010-02-15 16:12:20 +00002456 return SrcTy->isFPOrFPVectorTy() &&
2457 DstTy->isFPOrFPVectorTy() &&
Dan Gohman550c9af2008-08-14 20:04:46 +00002458 SrcBitSize > DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002459 case Instruction::FPExt:
Duncan Sands9dff9be2010-02-15 16:12:20 +00002460 return SrcTy->isFPOrFPVectorTy() &&
2461 DstTy->isFPOrFPVectorTy() &&
Dan Gohman550c9af2008-08-14 20:04:46 +00002462 SrcBitSize < DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002463 case Instruction::UIToFP:
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002464 case Instruction::SIToFP:
Nate Begemand4d45c22007-11-17 03:58:34 +00002465 if (const VectorType *SVTy = dyn_cast<VectorType>(SrcTy)) {
2466 if (const VectorType *DVTy = dyn_cast<VectorType>(DstTy)) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002467 return SVTy->getElementType()->isIntOrIntVectorTy() &&
2468 DVTy->getElementType()->isFPOrFPVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00002469 SVTy->getNumElements() == DVTy->getNumElements();
2470 }
2471 }
Duncan Sands9dff9be2010-02-15 16:12:20 +00002472 return SrcTy->isIntOrIntVectorTy() && DstTy->isFPOrFPVectorTy();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002473 case Instruction::FPToUI:
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002474 case Instruction::FPToSI:
Nate Begemand4d45c22007-11-17 03:58:34 +00002475 if (const VectorType *SVTy = dyn_cast<VectorType>(SrcTy)) {
2476 if (const VectorType *DVTy = dyn_cast<VectorType>(DstTy)) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002477 return SVTy->getElementType()->isFPOrFPVectorTy() &&
2478 DVTy->getElementType()->isIntOrIntVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00002479 SVTy->getNumElements() == DVTy->getNumElements();
2480 }
2481 }
Duncan Sands9dff9be2010-02-15 16:12:20 +00002482 return SrcTy->isFPOrFPVectorTy() && DstTy->isIntOrIntVectorTy();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002483 case Instruction::PtrToInt:
Duncan Sands19d0b472010-02-16 11:11:14 +00002484 return SrcTy->isPointerTy() && DstTy->isIntegerTy();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002485 case Instruction::IntToPtr:
Duncan Sands19d0b472010-02-16 11:11:14 +00002486 return SrcTy->isIntegerTy() && DstTy->isPointerTy();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002487 case Instruction::BitCast:
2488 // BitCast implies a no-op cast of type only. No bits change.
2489 // However, you can't cast pointers to anything but pointers.
Duncan Sands19d0b472010-02-16 11:11:14 +00002490 if (SrcTy->isPointerTy() != DstTy->isPointerTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002491 return false;
2492
Duncan Sands55e50902008-01-06 10:12:28 +00002493 // Now we know we're not dealing with a pointer/non-pointer mismatch. In all
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002494 // these cases, the cast is okay if the source and destination bit widths
2495 // are identical.
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002496 return SrcTy->getPrimitiveSizeInBits() == DstTy->getPrimitiveSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002497 }
2498}
2499
2500TruncInst::TruncInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002501 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002502) : CastInst(Ty, Trunc, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002503 assert(castIsValid(getOpcode(), S, Ty) && "Illegal Trunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002504}
2505
2506TruncInst::TruncInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002507 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002508) : CastInst(Ty, Trunc, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002509 assert(castIsValid(getOpcode(), S, Ty) && "Illegal Trunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002510}
2511
2512ZExtInst::ZExtInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002513 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002514) : CastInst(Ty, ZExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002515 assert(castIsValid(getOpcode(), S, Ty) && "Illegal ZExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002516}
2517
2518ZExtInst::ZExtInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002519 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002520) : CastInst(Ty, ZExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002521 assert(castIsValid(getOpcode(), S, Ty) && "Illegal ZExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002522}
2523SExtInst::SExtInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002524 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002525) : CastInst(Ty, SExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002526 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002527}
2528
Jeff Cohencc08c832006-12-02 02:22:01 +00002529SExtInst::SExtInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002530 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002531) : CastInst(Ty, SExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002532 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002533}
2534
2535FPTruncInst::FPTruncInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002536 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002537) : CastInst(Ty, FPTrunc, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002538 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPTrunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002539}
2540
2541FPTruncInst::FPTruncInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002542 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002543) : CastInst(Ty, FPTrunc, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002544 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPTrunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002545}
2546
2547FPExtInst::FPExtInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002548 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002549) : CastInst(Ty, FPExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002550 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002551}
2552
2553FPExtInst::FPExtInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002554 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002555) : CastInst(Ty, FPExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002556 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002557}
2558
2559UIToFPInst::UIToFPInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002560 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002561) : CastInst(Ty, UIToFP, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002562 assert(castIsValid(getOpcode(), S, Ty) && "Illegal UIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002563}
2564
2565UIToFPInst::UIToFPInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002566 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002567) : CastInst(Ty, UIToFP, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002568 assert(castIsValid(getOpcode(), S, Ty) && "Illegal UIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002569}
2570
2571SIToFPInst::SIToFPInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002572 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002573) : CastInst(Ty, SIToFP, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002574 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002575}
2576
2577SIToFPInst::SIToFPInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002578 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002579) : CastInst(Ty, SIToFP, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002580 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002581}
2582
2583FPToUIInst::FPToUIInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002584 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002585) : CastInst(Ty, FPToUI, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002586 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToUI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002587}
2588
2589FPToUIInst::FPToUIInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002590 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002591) : CastInst(Ty, FPToUI, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002592 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToUI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002593}
2594
2595FPToSIInst::FPToSIInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002596 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002597) : CastInst(Ty, FPToSI, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002598 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToSI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002599}
2600
2601FPToSIInst::FPToSIInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002602 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002603) : CastInst(Ty, FPToSI, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002604 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToSI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002605}
2606
2607PtrToIntInst::PtrToIntInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002608 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002609) : CastInst(Ty, PtrToInt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002610 assert(castIsValid(getOpcode(), S, Ty) && "Illegal PtrToInt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002611}
2612
2613PtrToIntInst::PtrToIntInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002614 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002615) : CastInst(Ty, PtrToInt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002616 assert(castIsValid(getOpcode(), S, Ty) && "Illegal PtrToInt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002617}
2618
2619IntToPtrInst::IntToPtrInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002620 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002621) : CastInst(Ty, IntToPtr, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002622 assert(castIsValid(getOpcode(), S, Ty) && "Illegal IntToPtr");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002623}
2624
2625IntToPtrInst::IntToPtrInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002626 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002627) : CastInst(Ty, IntToPtr, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002628 assert(castIsValid(getOpcode(), S, Ty) && "Illegal IntToPtr");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002629}
2630
2631BitCastInst::BitCastInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002632 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002633) : CastInst(Ty, BitCast, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002634 assert(castIsValid(getOpcode(), S, Ty) && "Illegal BitCast");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002635}
2636
2637BitCastInst::BitCastInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002638 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002639) : CastInst(Ty, BitCast, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002640 assert(castIsValid(getOpcode(), S, Ty) && "Illegal BitCast");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002641}
Chris Lattnerf16dc002006-09-17 19:29:56 +00002642
2643//===----------------------------------------------------------------------===//
Reid Spencerd9436b62006-11-20 01:22:35 +00002644// CmpInst Classes
2645//===----------------------------------------------------------------------===//
2646
Chris Lattneraec33da2010-01-22 06:25:37 +00002647void CmpInst::Anchor() const {}
2648
Nate Begemand2195702008-05-12 19:01:56 +00002649CmpInst::CmpInst(const Type *ty, OtherOps op, unsigned short predicate,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002650 Value *LHS, Value *RHS, const Twine &Name,
Nate Begemand2195702008-05-12 19:01:56 +00002651 Instruction *InsertBefore)
Nate Begeman66d0a0e2008-05-12 20:11:05 +00002652 : Instruction(ty, op,
Gabor Greiff6caff662008-05-10 08:32:32 +00002653 OperandTraits<CmpInst>::op_begin(this),
2654 OperandTraits<CmpInst>::operands(this),
2655 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00002656 Op<0>() = LHS;
2657 Op<1>() = RHS;
Chris Lattnerb9c86512009-12-29 02:14:09 +00002658 setPredicate((Predicate)predicate);
Reid Spencer871a9ea2007-04-11 13:04:48 +00002659 setName(Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002660}
Gabor Greiff6caff662008-05-10 08:32:32 +00002661
Nate Begemand2195702008-05-12 19:01:56 +00002662CmpInst::CmpInst(const Type *ty, OtherOps op, unsigned short predicate,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002663 Value *LHS, Value *RHS, const Twine &Name,
Nate Begemand2195702008-05-12 19:01:56 +00002664 BasicBlock *InsertAtEnd)
Nate Begeman66d0a0e2008-05-12 20:11:05 +00002665 : Instruction(ty, op,
Gabor Greiff6caff662008-05-10 08:32:32 +00002666 OperandTraits<CmpInst>::op_begin(this),
2667 OperandTraits<CmpInst>::operands(this),
2668 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00002669 Op<0>() = LHS;
2670 Op<1>() = RHS;
Chris Lattnerb9c86512009-12-29 02:14:09 +00002671 setPredicate((Predicate)predicate);
Reid Spencer871a9ea2007-04-11 13:04:48 +00002672 setName(Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002673}
2674
2675CmpInst *
Dan Gohmanad1f0a12009-08-25 23:17:54 +00002676CmpInst::Create(OtherOps Op, unsigned short predicate,
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002677 Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002678 const Twine &Name, Instruction *InsertBefore) {
Reid Spencerd9436b62006-11-20 01:22:35 +00002679 if (Op == Instruction::ICmp) {
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002680 if (InsertBefore)
2681 return new ICmpInst(InsertBefore, CmpInst::Predicate(predicate),
2682 S1, S2, Name);
2683 else
Dan Gohmanad1f0a12009-08-25 23:17:54 +00002684 return new ICmpInst(CmpInst::Predicate(predicate),
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002685 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002686 }
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002687
2688 if (InsertBefore)
2689 return new FCmpInst(InsertBefore, CmpInst::Predicate(predicate),
2690 S1, S2, Name);
2691 else
Dan Gohmanad1f0a12009-08-25 23:17:54 +00002692 return new FCmpInst(CmpInst::Predicate(predicate),
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002693 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002694}
2695
2696CmpInst *
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002697CmpInst::Create(OtherOps Op, unsigned short predicate, Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002698 const Twine &Name, BasicBlock *InsertAtEnd) {
Reid Spencerd9436b62006-11-20 01:22:35 +00002699 if (Op == Instruction::ICmp) {
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002700 return new ICmpInst(*InsertAtEnd, CmpInst::Predicate(predicate),
2701 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002702 }
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002703 return new FCmpInst(*InsertAtEnd, CmpInst::Predicate(predicate),
2704 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002705}
2706
2707void CmpInst::swapOperands() {
2708 if (ICmpInst *IC = dyn_cast<ICmpInst>(this))
2709 IC->swapOperands();
2710 else
2711 cast<FCmpInst>(this)->swapOperands();
2712}
2713
Duncan Sands95c4ecc2011-01-04 12:52:29 +00002714bool CmpInst::isCommutative() const {
2715 if (const ICmpInst *IC = dyn_cast<ICmpInst>(this))
Reid Spencerd9436b62006-11-20 01:22:35 +00002716 return IC->isCommutative();
2717 return cast<FCmpInst>(this)->isCommutative();
2718}
2719
Duncan Sands95c4ecc2011-01-04 12:52:29 +00002720bool CmpInst::isEquality() const {
2721 if (const ICmpInst *IC = dyn_cast<ICmpInst>(this))
Reid Spencerd9436b62006-11-20 01:22:35 +00002722 return IC->isEquality();
2723 return cast<FCmpInst>(this)->isEquality();
2724}
2725
2726
Dan Gohman4e724382008-05-31 02:47:54 +00002727CmpInst::Predicate CmpInst::getInversePredicate(Predicate pred) {
Reid Spencerd9436b62006-11-20 01:22:35 +00002728 switch (pred) {
Dan Gohman4e724382008-05-31 02:47:54 +00002729 default: assert(!"Unknown cmp predicate!");
Reid Spencerd9436b62006-11-20 01:22:35 +00002730 case ICMP_EQ: return ICMP_NE;
2731 case ICMP_NE: return ICMP_EQ;
2732 case ICMP_UGT: return ICMP_ULE;
2733 case ICMP_ULT: return ICMP_UGE;
2734 case ICMP_UGE: return ICMP_ULT;
2735 case ICMP_ULE: return ICMP_UGT;
2736 case ICMP_SGT: return ICMP_SLE;
2737 case ICMP_SLT: return ICMP_SGE;
2738 case ICMP_SGE: return ICMP_SLT;
2739 case ICMP_SLE: return ICMP_SGT;
Reid Spencerd9436b62006-11-20 01:22:35 +00002740
Dan Gohman4e724382008-05-31 02:47:54 +00002741 case FCMP_OEQ: return FCMP_UNE;
2742 case FCMP_ONE: return FCMP_UEQ;
2743 case FCMP_OGT: return FCMP_ULE;
2744 case FCMP_OLT: return FCMP_UGE;
2745 case FCMP_OGE: return FCMP_ULT;
2746 case FCMP_OLE: return FCMP_UGT;
2747 case FCMP_UEQ: return FCMP_ONE;
2748 case FCMP_UNE: return FCMP_OEQ;
2749 case FCMP_UGT: return FCMP_OLE;
2750 case FCMP_ULT: return FCMP_OGE;
2751 case FCMP_UGE: return FCMP_OLT;
2752 case FCMP_ULE: return FCMP_OGT;
2753 case FCMP_ORD: return FCMP_UNO;
2754 case FCMP_UNO: return FCMP_ORD;
2755 case FCMP_TRUE: return FCMP_FALSE;
2756 case FCMP_FALSE: return FCMP_TRUE;
Reid Spencerd9436b62006-11-20 01:22:35 +00002757 }
2758}
2759
Reid Spencer266e42b2006-12-23 06:05:41 +00002760ICmpInst::Predicate ICmpInst::getSignedPredicate(Predicate pred) {
2761 switch (pred) {
2762 default: assert(! "Unknown icmp predicate!");
2763 case ICMP_EQ: case ICMP_NE:
2764 case ICMP_SGT: case ICMP_SLT: case ICMP_SGE: case ICMP_SLE:
2765 return pred;
2766 case ICMP_UGT: return ICMP_SGT;
2767 case ICMP_ULT: return ICMP_SLT;
2768 case ICMP_UGE: return ICMP_SGE;
2769 case ICMP_ULE: return ICMP_SLE;
2770 }
2771}
2772
Nick Lewycky8ea81e82008-01-28 03:48:02 +00002773ICmpInst::Predicate ICmpInst::getUnsignedPredicate(Predicate pred) {
2774 switch (pred) {
2775 default: assert(! "Unknown icmp predicate!");
2776 case ICMP_EQ: case ICMP_NE:
2777 case ICMP_UGT: case ICMP_ULT: case ICMP_UGE: case ICMP_ULE:
2778 return pred;
2779 case ICMP_SGT: return ICMP_UGT;
2780 case ICMP_SLT: return ICMP_ULT;
2781 case ICMP_SGE: return ICMP_UGE;
2782 case ICMP_SLE: return ICMP_ULE;
2783 }
2784}
2785
Reid Spencer0286bc12007-02-28 22:00:54 +00002786/// Initialize a set of values that all satisfy the condition with C.
2787///
2788ConstantRange
2789ICmpInst::makeConstantRange(Predicate pred, const APInt &C) {
2790 APInt Lower(C);
2791 APInt Upper(C);
2792 uint32_t BitWidth = C.getBitWidth();
2793 switch (pred) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00002794 default: llvm_unreachable("Invalid ICmp opcode to ConstantRange ctor!");
Reid Spencer0286bc12007-02-28 22:00:54 +00002795 case ICmpInst::ICMP_EQ: Upper++; break;
2796 case ICmpInst::ICMP_NE: Lower++; break;
Dan Gohmand86e2952010-01-26 16:04:20 +00002797 case ICmpInst::ICMP_ULT:
2798 Lower = APInt::getMinValue(BitWidth);
2799 // Check for an empty-set condition.
2800 if (Lower == Upper)
2801 return ConstantRange(BitWidth, /*isFullSet=*/false);
2802 break;
2803 case ICmpInst::ICMP_SLT:
2804 Lower = APInt::getSignedMinValue(BitWidth);
2805 // Check for an empty-set condition.
2806 if (Lower == Upper)
2807 return ConstantRange(BitWidth, /*isFullSet=*/false);
2808 break;
Reid Spencer0286bc12007-02-28 22:00:54 +00002809 case ICmpInst::ICMP_UGT:
2810 Lower++; Upper = APInt::getMinValue(BitWidth); // Min = Next(Max)
Dan Gohmand86e2952010-01-26 16:04:20 +00002811 // Check for an empty-set condition.
2812 if (Lower == Upper)
2813 return ConstantRange(BitWidth, /*isFullSet=*/false);
Reid Spencer0286bc12007-02-28 22:00:54 +00002814 break;
2815 case ICmpInst::ICMP_SGT:
2816 Lower++; Upper = APInt::getSignedMinValue(BitWidth); // Min = Next(Max)
Dan Gohmand86e2952010-01-26 16:04:20 +00002817 // Check for an empty-set condition.
2818 if (Lower == Upper)
2819 return ConstantRange(BitWidth, /*isFullSet=*/false);
Reid Spencer0286bc12007-02-28 22:00:54 +00002820 break;
2821 case ICmpInst::ICMP_ULE:
2822 Lower = APInt::getMinValue(BitWidth); Upper++;
Dan Gohmand86e2952010-01-26 16:04:20 +00002823 // Check for a full-set condition.
2824 if (Lower == Upper)
2825 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer0286bc12007-02-28 22:00:54 +00002826 break;
2827 case ICmpInst::ICMP_SLE:
2828 Lower = APInt::getSignedMinValue(BitWidth); Upper++;
Dan Gohmand86e2952010-01-26 16:04:20 +00002829 // Check for a full-set condition.
2830 if (Lower == Upper)
2831 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer0286bc12007-02-28 22:00:54 +00002832 break;
2833 case ICmpInst::ICMP_UGE:
2834 Upper = APInt::getMinValue(BitWidth); // Min = Next(Max)
Dan Gohmand86e2952010-01-26 16:04:20 +00002835 // Check for a full-set condition.
2836 if (Lower == Upper)
2837 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer0286bc12007-02-28 22:00:54 +00002838 break;
2839 case ICmpInst::ICMP_SGE:
2840 Upper = APInt::getSignedMinValue(BitWidth); // Min = Next(Max)
Dan Gohmand86e2952010-01-26 16:04:20 +00002841 // Check for a full-set condition.
2842 if (Lower == Upper)
2843 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer0286bc12007-02-28 22:00:54 +00002844 break;
2845 }
2846 return ConstantRange(Lower, Upper);
2847}
2848
Dan Gohman4e724382008-05-31 02:47:54 +00002849CmpInst::Predicate CmpInst::getSwappedPredicate(Predicate pred) {
Reid Spencerd9436b62006-11-20 01:22:35 +00002850 switch (pred) {
Dan Gohman4e724382008-05-31 02:47:54 +00002851 default: assert(!"Unknown cmp predicate!");
2852 case ICMP_EQ: case ICMP_NE:
2853 return pred;
2854 case ICMP_SGT: return ICMP_SLT;
2855 case ICMP_SLT: return ICMP_SGT;
2856 case ICMP_SGE: return ICMP_SLE;
2857 case ICMP_SLE: return ICMP_SGE;
2858 case ICMP_UGT: return ICMP_ULT;
2859 case ICMP_ULT: return ICMP_UGT;
2860 case ICMP_UGE: return ICMP_ULE;
2861 case ICMP_ULE: return ICMP_UGE;
2862
Reid Spencerd9436b62006-11-20 01:22:35 +00002863 case FCMP_FALSE: case FCMP_TRUE:
2864 case FCMP_OEQ: case FCMP_ONE:
2865 case FCMP_UEQ: case FCMP_UNE:
2866 case FCMP_ORD: case FCMP_UNO:
2867 return pred;
2868 case FCMP_OGT: return FCMP_OLT;
2869 case FCMP_OLT: return FCMP_OGT;
2870 case FCMP_OGE: return FCMP_OLE;
2871 case FCMP_OLE: return FCMP_OGE;
2872 case FCMP_UGT: return FCMP_ULT;
2873 case FCMP_ULT: return FCMP_UGT;
2874 case FCMP_UGE: return FCMP_ULE;
2875 case FCMP_ULE: return FCMP_UGE;
2876 }
2877}
2878
Reid Spencer266e42b2006-12-23 06:05:41 +00002879bool CmpInst::isUnsigned(unsigned short predicate) {
2880 switch (predicate) {
2881 default: return false;
2882 case ICmpInst::ICMP_ULT: case ICmpInst::ICMP_ULE: case ICmpInst::ICMP_UGT:
2883 case ICmpInst::ICMP_UGE: return true;
2884 }
2885}
2886
Nick Lewycky7494b3b2009-10-25 03:50:03 +00002887bool CmpInst::isSigned(unsigned short predicate) {
Reid Spencer266e42b2006-12-23 06:05:41 +00002888 switch (predicate) {
2889 default: return false;
2890 case ICmpInst::ICMP_SLT: case ICmpInst::ICMP_SLE: case ICmpInst::ICMP_SGT:
2891 case ICmpInst::ICMP_SGE: return true;
2892 }
2893}
2894
2895bool CmpInst::isOrdered(unsigned short predicate) {
2896 switch (predicate) {
2897 default: return false;
2898 case FCmpInst::FCMP_OEQ: case FCmpInst::FCMP_ONE: case FCmpInst::FCMP_OGT:
2899 case FCmpInst::FCMP_OLT: case FCmpInst::FCMP_OGE: case FCmpInst::FCMP_OLE:
2900 case FCmpInst::FCMP_ORD: return true;
2901 }
2902}
2903
2904bool CmpInst::isUnordered(unsigned short predicate) {
2905 switch (predicate) {
2906 default: return false;
2907 case FCmpInst::FCMP_UEQ: case FCmpInst::FCMP_UNE: case FCmpInst::FCMP_UGT:
2908 case FCmpInst::FCMP_ULT: case FCmpInst::FCMP_UGE: case FCmpInst::FCMP_ULE:
2909 case FCmpInst::FCMP_UNO: return true;
2910 }
2911}
2912
Nick Lewycky7494b3b2009-10-25 03:50:03 +00002913bool CmpInst::isTrueWhenEqual(unsigned short predicate) {
2914 switch(predicate) {
2915 default: return false;
2916 case ICMP_EQ: case ICMP_UGE: case ICMP_ULE: case ICMP_SGE: case ICMP_SLE:
2917 case FCMP_TRUE: case FCMP_UEQ: case FCMP_UGE: case FCMP_ULE: return true;
2918 }
2919}
2920
2921bool CmpInst::isFalseWhenEqual(unsigned short predicate) {
2922 switch(predicate) {
2923 case ICMP_NE: case ICMP_UGT: case ICMP_ULT: case ICMP_SGT: case ICMP_SLT:
2924 case FCMP_FALSE: case FCMP_ONE: case FCMP_OGT: case FCMP_OLT: return true;
2925 default: return false;
2926 }
2927}
2928
2929
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002930//===----------------------------------------------------------------------===//
2931// SwitchInst Implementation
2932//===----------------------------------------------------------------------===//
2933
Chris Lattnerbaf00152010-11-17 05:41:46 +00002934void SwitchInst::init(Value *Value, BasicBlock *Default, unsigned NumReserved) {
2935 assert(Value && Default && NumReserved);
2936 ReservedSpace = NumReserved;
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002937 NumOperands = 2;
Gabor Greiff6caff662008-05-10 08:32:32 +00002938 OperandList = allocHungoffUses(ReservedSpace);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002939
Gabor Greif2d3024d2008-05-26 21:33:52 +00002940 OperandList[0] = Value;
2941 OperandList[1] = Default;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002942}
2943
Chris Lattner2195fc42007-02-24 00:55:48 +00002944/// SwitchInst ctor - Create a new switch instruction, specifying a value to
2945/// switch on and a default destination. The number of additional cases can
2946/// be specified here to make memory allocation more efficient. This
2947/// constructor can also autoinsert before another instruction.
2948SwitchInst::SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
2949 Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +00002950 : TerminatorInst(Type::getVoidTy(Value->getContext()), Instruction::Switch,
2951 0, 0, InsertBefore) {
Chris Lattnerbaf00152010-11-17 05:41:46 +00002952 init(Value, Default, 2+NumCases*2);
Chris Lattner2195fc42007-02-24 00:55:48 +00002953}
2954
2955/// SwitchInst ctor - Create a new switch instruction, specifying a value to
2956/// switch on and a default destination. The number of additional cases can
2957/// be specified here to make memory allocation more efficient. This
2958/// constructor also autoinserts at the end of the specified BasicBlock.
2959SwitchInst::SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
2960 BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +00002961 : TerminatorInst(Type::getVoidTy(Value->getContext()), Instruction::Switch,
2962 0, 0, InsertAtEnd) {
Chris Lattnerbaf00152010-11-17 05:41:46 +00002963 init(Value, Default, 2+NumCases*2);
Chris Lattner2195fc42007-02-24 00:55:48 +00002964}
2965
Misha Brukmanb1c93172005-04-21 23:48:37 +00002966SwitchInst::SwitchInst(const SwitchInst &SI)
Chris Lattnerbaf00152010-11-17 05:41:46 +00002967 : TerminatorInst(SI.getType(), Instruction::Switch, 0, 0) {
2968 init(SI.getCondition(), SI.getDefaultDest(), SI.getNumOperands());
2969 NumOperands = SI.getNumOperands();
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002970 Use *OL = OperandList, *InOL = SI.OperandList;
Chris Lattnerbaf00152010-11-17 05:41:46 +00002971 for (unsigned i = 2, E = SI.getNumOperands(); i != E; i += 2) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00002972 OL[i] = InOL[i];
2973 OL[i+1] = InOL[i+1];
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002974 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00002975 SubclassOptionalData = SI.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002976}
2977
Gordon Henriksen14a55692007-12-10 02:14:30 +00002978SwitchInst::~SwitchInst() {
Gabor Greiff6caff662008-05-10 08:32:32 +00002979 dropHungoffUses(OperandList);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002980}
2981
2982
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002983/// addCase - Add an entry to the switch instruction...
2984///
Chris Lattner47ac1872005-02-24 05:32:09 +00002985void SwitchInst::addCase(ConstantInt *OnVal, BasicBlock *Dest) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002986 unsigned OpNo = NumOperands;
2987 if (OpNo+2 > ReservedSpace)
2988 resizeOperands(0); // Get more space!
2989 // Initialize some new operands.
Chris Lattnerf711f8d2005-01-29 01:05:12 +00002990 assert(OpNo+1 < ReservedSpace && "Growing didn't work!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002991 NumOperands = OpNo+2;
Gabor Greif2d3024d2008-05-26 21:33:52 +00002992 OperandList[OpNo] = OnVal;
2993 OperandList[OpNo+1] = Dest;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002994}
2995
2996/// removeCase - This method removes the specified successor from the switch
2997/// instruction. Note that this cannot be used to remove the default
2998/// destination (successor #0).
2999///
3000void SwitchInst::removeCase(unsigned idx) {
3001 assert(idx != 0 && "Cannot remove the default case!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003002 assert(idx*2 < getNumOperands() && "Successor index out of range!!!");
3003
3004 unsigned NumOps = getNumOperands();
3005 Use *OL = OperandList;
3006
3007 // Move everything after this operand down.
3008 //
3009 // FIXME: we could just swap with the end of the list, then erase. However,
3010 // client might not expect this to happen. The code as it is thrashes the
3011 // use/def lists, which is kinda lame.
3012 for (unsigned i = (idx+1)*2; i != NumOps; i += 2) {
3013 OL[i-2] = OL[i];
3014 OL[i-2+1] = OL[i+1];
3015 }
3016
3017 // Nuke the last value.
3018 OL[NumOps-2].set(0);
3019 OL[NumOps-2+1].set(0);
3020 NumOperands = NumOps-2;
3021}
3022
3023/// resizeOperands - resize operands - This adjusts the length of the operands
3024/// list according to the following behavior:
3025/// 1. If NumOps == 0, grow the operand list in response to a push_back style
Gabor Greiff6caff662008-05-10 08:32:32 +00003026/// of operation. This grows the number of ops by 3 times.
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003027/// 2. If NumOps > NumOperands, reserve space for NumOps operands.
3028/// 3. If NumOps == NumOperands, trim the reserved space.
3029///
3030void SwitchInst::resizeOperands(unsigned NumOps) {
Gabor Greiff6caff662008-05-10 08:32:32 +00003031 unsigned e = getNumOperands();
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003032 if (NumOps == 0) {
Gabor Greiff6caff662008-05-10 08:32:32 +00003033 NumOps = e*3;
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003034 } else if (NumOps*2 > NumOperands) {
3035 // No resize needed.
3036 if (ReservedSpace >= NumOps) return;
3037 } else if (NumOps == NumOperands) {
3038 if (ReservedSpace == NumOps) return;
3039 } else {
Chris Lattnerf711f8d2005-01-29 01:05:12 +00003040 return;
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003041 }
3042
3043 ReservedSpace = NumOps;
Gabor Greiff6caff662008-05-10 08:32:32 +00003044 Use *NewOps = allocHungoffUses(NumOps);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003045 Use *OldOps = OperandList;
Gabor Greiff6caff662008-05-10 08:32:32 +00003046 for (unsigned i = 0; i != e; ++i) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00003047 NewOps[i] = OldOps[i];
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003048 }
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003049 OperandList = NewOps;
Gabor Greiff6caff662008-05-10 08:32:32 +00003050 if (OldOps) Use::zap(OldOps, OldOps + e, true);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003051}
3052
3053
3054BasicBlock *SwitchInst::getSuccessorV(unsigned idx) const {
3055 return getSuccessor(idx);
3056}
3057unsigned SwitchInst::getNumSuccessorsV() const {
3058 return getNumSuccessors();
3059}
3060void SwitchInst::setSuccessorV(unsigned idx, BasicBlock *B) {
3061 setSuccessor(idx, B);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003062}
Chris Lattnerf22be932004-10-15 23:52:53 +00003063
Chris Lattner3ed871f2009-10-27 19:13:16 +00003064//===----------------------------------------------------------------------===//
3065// SwitchInst Implementation
3066//===----------------------------------------------------------------------===//
3067
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003068void IndirectBrInst::init(Value *Address, unsigned NumDests) {
Duncan Sands19d0b472010-02-16 11:11:14 +00003069 assert(Address && Address->getType()->isPointerTy() &&
Chris Lattner6747b4c2009-10-29 05:53:32 +00003070 "Address of indirectbr must be a pointer");
Chris Lattner3ed871f2009-10-27 19:13:16 +00003071 ReservedSpace = 1+NumDests;
3072 NumOperands = 1;
3073 OperandList = allocHungoffUses(ReservedSpace);
3074
3075 OperandList[0] = Address;
3076}
3077
3078
3079/// resizeOperands - resize operands - This adjusts the length of the operands
3080/// list according to the following behavior:
3081/// 1. If NumOps == 0, grow the operand list in response to a push_back style
3082/// of operation. This grows the number of ops by 2 times.
3083/// 2. If NumOps > NumOperands, reserve space for NumOps operands.
3084/// 3. If NumOps == NumOperands, trim the reserved space.
3085///
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003086void IndirectBrInst::resizeOperands(unsigned NumOps) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003087 unsigned e = getNumOperands();
3088 if (NumOps == 0) {
3089 NumOps = e*2;
3090 } else if (NumOps*2 > NumOperands) {
3091 // No resize needed.
3092 if (ReservedSpace >= NumOps) return;
3093 } else if (NumOps == NumOperands) {
3094 if (ReservedSpace == NumOps) return;
3095 } else {
3096 return;
3097 }
3098
3099 ReservedSpace = NumOps;
3100 Use *NewOps = allocHungoffUses(NumOps);
3101 Use *OldOps = OperandList;
3102 for (unsigned i = 0; i != e; ++i)
3103 NewOps[i] = OldOps[i];
3104 OperandList = NewOps;
3105 if (OldOps) Use::zap(OldOps, OldOps + e, true);
3106}
3107
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003108IndirectBrInst::IndirectBrInst(Value *Address, unsigned NumCases,
3109 Instruction *InsertBefore)
3110: TerminatorInst(Type::getVoidTy(Address->getContext()),Instruction::IndirectBr,
Chris Lattner3ed871f2009-10-27 19:13:16 +00003111 0, 0, InsertBefore) {
3112 init(Address, NumCases);
3113}
3114
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003115IndirectBrInst::IndirectBrInst(Value *Address, unsigned NumCases,
3116 BasicBlock *InsertAtEnd)
3117: TerminatorInst(Type::getVoidTy(Address->getContext()),Instruction::IndirectBr,
Chris Lattner3ed871f2009-10-27 19:13:16 +00003118 0, 0, InsertAtEnd) {
3119 init(Address, NumCases);
3120}
3121
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003122IndirectBrInst::IndirectBrInst(const IndirectBrInst &IBI)
3123 : TerminatorInst(Type::getVoidTy(IBI.getContext()), Instruction::IndirectBr,
Chris Lattner3ed871f2009-10-27 19:13:16 +00003124 allocHungoffUses(IBI.getNumOperands()),
3125 IBI.getNumOperands()) {
3126 Use *OL = OperandList, *InOL = IBI.OperandList;
3127 for (unsigned i = 0, E = IBI.getNumOperands(); i != E; ++i)
3128 OL[i] = InOL[i];
3129 SubclassOptionalData = IBI.SubclassOptionalData;
3130}
3131
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003132IndirectBrInst::~IndirectBrInst() {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003133 dropHungoffUses(OperandList);
3134}
3135
3136/// addDestination - Add a destination.
3137///
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003138void IndirectBrInst::addDestination(BasicBlock *DestBB) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003139 unsigned OpNo = NumOperands;
3140 if (OpNo+1 > ReservedSpace)
3141 resizeOperands(0); // Get more space!
3142 // Initialize some new operands.
3143 assert(OpNo < ReservedSpace && "Growing didn't work!");
3144 NumOperands = OpNo+1;
3145 OperandList[OpNo] = DestBB;
3146}
3147
3148/// removeDestination - This method removes the specified successor from the
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003149/// indirectbr instruction.
3150void IndirectBrInst::removeDestination(unsigned idx) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003151 assert(idx < getNumOperands()-1 && "Successor index out of range!");
3152
3153 unsigned NumOps = getNumOperands();
3154 Use *OL = OperandList;
3155
3156 // Replace this value with the last one.
3157 OL[idx+1] = OL[NumOps-1];
3158
3159 // Nuke the last value.
3160 OL[NumOps-1].set(0);
3161 NumOperands = NumOps-1;
3162}
3163
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003164BasicBlock *IndirectBrInst::getSuccessorV(unsigned idx) const {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003165 return getSuccessor(idx);
3166}
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003167unsigned IndirectBrInst::getNumSuccessorsV() const {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003168 return getNumSuccessors();
3169}
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003170void IndirectBrInst::setSuccessorV(unsigned idx, BasicBlock *B) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003171 setSuccessor(idx, B);
3172}
3173
3174//===----------------------------------------------------------------------===//
Devang Patel11cf3f42009-10-27 22:16:29 +00003175// clone_impl() implementations
Chris Lattner3ed871f2009-10-27 19:13:16 +00003176//===----------------------------------------------------------------------===//
3177
Chris Lattnerf22be932004-10-15 23:52:53 +00003178// Define these methods here so vtables don't get emitted into every translation
3179// unit that uses these classes.
3180
Devang Patel11cf3f42009-10-27 22:16:29 +00003181GetElementPtrInst *GetElementPtrInst::clone_impl() const {
3182 return new (getNumOperands()) GetElementPtrInst(*this);
Chris Lattnerf22be932004-10-15 23:52:53 +00003183}
3184
Devang Patel11cf3f42009-10-27 22:16:29 +00003185BinaryOperator *BinaryOperator::clone_impl() const {
3186 return Create(getOpcode(), Op<0>(), Op<1>());
Chris Lattnerf22be932004-10-15 23:52:53 +00003187}
3188
Devang Patel11cf3f42009-10-27 22:16:29 +00003189FCmpInst* FCmpInst::clone_impl() const {
3190 return new FCmpInst(getPredicate(), Op<0>(), Op<1>());
Reid Spencerd9436b62006-11-20 01:22:35 +00003191}
3192
Devang Patel11cf3f42009-10-27 22:16:29 +00003193ICmpInst* ICmpInst::clone_impl() const {
3194 return new ICmpInst(getPredicate(), Op<0>(), Op<1>());
Dan Gohman0752bff2008-05-23 00:36:11 +00003195}
3196
Devang Patel11cf3f42009-10-27 22:16:29 +00003197ExtractValueInst *ExtractValueInst::clone_impl() const {
3198 return new ExtractValueInst(*this);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003199}
3200
Devang Patel11cf3f42009-10-27 22:16:29 +00003201InsertValueInst *InsertValueInst::clone_impl() const {
3202 return new InsertValueInst(*this);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003203}
3204
Devang Patel11cf3f42009-10-27 22:16:29 +00003205AllocaInst *AllocaInst::clone_impl() const {
3206 return new AllocaInst(getAllocatedType(),
3207 (Value*)getOperand(0),
3208 getAlignment());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003209}
3210
Devang Patel11cf3f42009-10-27 22:16:29 +00003211LoadInst *LoadInst::clone_impl() const {
3212 return new LoadInst(getOperand(0),
3213 Twine(), isVolatile(),
3214 getAlignment());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003215}
3216
Devang Patel11cf3f42009-10-27 22:16:29 +00003217StoreInst *StoreInst::clone_impl() const {
3218 return new StoreInst(getOperand(0), getOperand(1),
3219 isVolatile(), getAlignment());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003220}
3221
Devang Patel11cf3f42009-10-27 22:16:29 +00003222TruncInst *TruncInst::clone_impl() const {
3223 return new TruncInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003224}
3225
Devang Patel11cf3f42009-10-27 22:16:29 +00003226ZExtInst *ZExtInst::clone_impl() const {
3227 return new ZExtInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003228}
3229
Devang Patel11cf3f42009-10-27 22:16:29 +00003230SExtInst *SExtInst::clone_impl() const {
3231 return new SExtInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003232}
3233
Devang Patel11cf3f42009-10-27 22:16:29 +00003234FPTruncInst *FPTruncInst::clone_impl() const {
3235 return new FPTruncInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003236}
3237
Devang Patel11cf3f42009-10-27 22:16:29 +00003238FPExtInst *FPExtInst::clone_impl() const {
3239 return new FPExtInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003240}
3241
Devang Patel11cf3f42009-10-27 22:16:29 +00003242UIToFPInst *UIToFPInst::clone_impl() const {
3243 return new UIToFPInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003244}
3245
Devang Patel11cf3f42009-10-27 22:16:29 +00003246SIToFPInst *SIToFPInst::clone_impl() const {
3247 return new SIToFPInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003248}
3249
Devang Patel11cf3f42009-10-27 22:16:29 +00003250FPToUIInst *FPToUIInst::clone_impl() const {
3251 return new FPToUIInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003252}
3253
Devang Patel11cf3f42009-10-27 22:16:29 +00003254FPToSIInst *FPToSIInst::clone_impl() const {
3255 return new FPToSIInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003256}
3257
Devang Patel11cf3f42009-10-27 22:16:29 +00003258PtrToIntInst *PtrToIntInst::clone_impl() const {
3259 return new PtrToIntInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003260}
3261
Devang Patel11cf3f42009-10-27 22:16:29 +00003262IntToPtrInst *IntToPtrInst::clone_impl() const {
3263 return new IntToPtrInst(getOperand(0), getType());
Gabor Greif697e94c2008-05-15 10:04:30 +00003264}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003265
Devang Patel11cf3f42009-10-27 22:16:29 +00003266BitCastInst *BitCastInst::clone_impl() const {
3267 return new BitCastInst(getOperand(0), getType());
Gabor Greif697e94c2008-05-15 10:04:30 +00003268}
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003269
Devang Patel11cf3f42009-10-27 22:16:29 +00003270CallInst *CallInst::clone_impl() const {
3271 return new(getNumOperands()) CallInst(*this);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003272}
3273
Devang Patel11cf3f42009-10-27 22:16:29 +00003274SelectInst *SelectInst::clone_impl() const {
3275 return SelectInst::Create(getOperand(0), getOperand(1), getOperand(2));
Chris Lattnerbbe0a422006-04-08 01:18:18 +00003276}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003277
Devang Patel11cf3f42009-10-27 22:16:29 +00003278VAArgInst *VAArgInst::clone_impl() const {
3279 return new VAArgInst(getOperand(0), getType());
Chris Lattnerbbe0a422006-04-08 01:18:18 +00003280}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003281
Devang Patel11cf3f42009-10-27 22:16:29 +00003282ExtractElementInst *ExtractElementInst::clone_impl() const {
3283 return ExtractElementInst::Create(getOperand(0), getOperand(1));
Chris Lattnerbbe0a422006-04-08 01:18:18 +00003284}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003285
Devang Patel11cf3f42009-10-27 22:16:29 +00003286InsertElementInst *InsertElementInst::clone_impl() const {
3287 return InsertElementInst::Create(getOperand(0),
3288 getOperand(1),
3289 getOperand(2));
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003290}
3291
Devang Patel11cf3f42009-10-27 22:16:29 +00003292ShuffleVectorInst *ShuffleVectorInst::clone_impl() const {
3293 return new ShuffleVectorInst(getOperand(0),
3294 getOperand(1),
3295 getOperand(2));
Gabor Greif697e94c2008-05-15 10:04:30 +00003296}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003297
Devang Patel11cf3f42009-10-27 22:16:29 +00003298PHINode *PHINode::clone_impl() const {
3299 return new PHINode(*this);
3300}
3301
3302ReturnInst *ReturnInst::clone_impl() const {
3303 return new(getNumOperands()) ReturnInst(*this);
3304}
3305
3306BranchInst *BranchInst::clone_impl() const {
Jay Foadd81f3c92011-01-07 20:29:02 +00003307 return new(getNumOperands()) BranchInst(*this);
Gabor Greif697e94c2008-05-15 10:04:30 +00003308}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003309
Devang Patel11cf3f42009-10-27 22:16:29 +00003310SwitchInst *SwitchInst::clone_impl() const {
3311 return new SwitchInst(*this);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003312}
3313
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003314IndirectBrInst *IndirectBrInst::clone_impl() const {
3315 return new IndirectBrInst(*this);
Chris Lattner3ed871f2009-10-27 19:13:16 +00003316}
3317
3318
Devang Patel11cf3f42009-10-27 22:16:29 +00003319InvokeInst *InvokeInst::clone_impl() const {
3320 return new(getNumOperands()) InvokeInst(*this);
Gabor Greif697e94c2008-05-15 10:04:30 +00003321}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003322
Devang Patel11cf3f42009-10-27 22:16:29 +00003323UnwindInst *UnwindInst::clone_impl() const {
Nick Lewycky42fb7452009-09-27 07:38:41 +00003324 LLVMContext &Context = getContext();
Devang Patel11cf3f42009-10-27 22:16:29 +00003325 return new UnwindInst(Context);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003326}
3327
Devang Patel11cf3f42009-10-27 22:16:29 +00003328UnreachableInst *UnreachableInst::clone_impl() const {
Nick Lewycky42fb7452009-09-27 07:38:41 +00003329 LLVMContext &Context = getContext();
Devang Patel11cf3f42009-10-27 22:16:29 +00003330 return new UnreachableInst(Context);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003331}