blob: 116a0d48c55dd6030d6b443dbd11085289df1b39 [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()) {
Jay Foade03c05c2011-06-20 14:38:01 +000090 std::copy(PN.op_begin(), PN.op_end(), op_begin());
91 std::copy(PN.block_begin(), PN.block_end(), block_begin());
Dan Gohmanc8a27f22009-08-25 22:11:20 +000092 SubclassOptionalData = PN.SubclassOptionalData;
Chris Lattnerafdb3de2005-01-29 00:35:16 +000093}
94
Gordon Henriksen14a55692007-12-10 02:14:30 +000095PHINode::~PHINode() {
Jay Foadbbb91f22011-01-16 15:30:52 +000096 dropHungoffUses();
Chris Lattnerafdb3de2005-01-29 00:35:16 +000097}
98
Jay Foade03c05c2011-06-20 14:38:01 +000099Use *PHINode::allocHungoffUses(unsigned N) const {
100 // Allocate the array of Uses of the incoming values, followed by a pointer
101 // (with bottom bit set) to the User, followed by the array of pointers to
102 // the incoming basic blocks.
103 size_t size = N * sizeof(Use) + sizeof(Use::UserRef)
104 + N * sizeof(BasicBlock*);
105 Use *Begin = static_cast<Use*>(::operator new(size));
106 Use *End = Begin + N;
107 (void) new(End) Use::UserRef(const_cast<PHINode*>(this), 1);
108 return Use::initTags(Begin, End);
109}
110
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000111// removeIncomingValue - Remove an incoming value. This is useful if a
112// predecessor basic block is deleted.
113Value *PHINode::removeIncomingValue(unsigned Idx, bool DeletePHIIfEmpty) {
Jay Foade03c05c2011-06-20 14:38:01 +0000114 Value *Removed = getIncomingValue(Idx);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000115
116 // Move everything after this operand down.
117 //
118 // FIXME: we could just swap with the end of the list, then erase. However,
Jay Foade03c05c2011-06-20 14:38:01 +0000119 // clients might not expect this to happen. The code as it is thrashes the
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000120 // use/def lists, which is kinda lame.
Jay Foade03c05c2011-06-20 14:38:01 +0000121 std::copy(op_begin() + Idx + 1, op_end(), op_begin() + Idx);
122 std::copy(block_begin() + Idx + 1, block_end(), block_begin() + Idx);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000123
124 // Nuke the last value.
Jay Foade03c05c2011-06-20 14:38:01 +0000125 Op<-1>().set(0);
126 --NumOperands;
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000127
128 // If the PHI node is dead, because it has zero entries, nuke it now.
Jay Foade03c05c2011-06-20 14:38:01 +0000129 if (getNumOperands() == 0 && DeletePHIIfEmpty) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000130 // If anyone is using this PHI, make them use a dummy value instead...
Owen Andersonb292b8c2009-07-30 23:03:37 +0000131 replaceAllUsesWith(UndefValue::get(getType()));
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000132 eraseFromParent();
133 }
134 return Removed;
135}
136
Jay Foade98f29d2011-04-01 08:00:58 +0000137/// growOperands - grow operands - This grows the operand list in response
138/// to a push_back style of operation. This grows the number of ops by 1.5
139/// times.
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000140///
Jay Foade98f29d2011-04-01 08:00:58 +0000141void PHINode::growOperands() {
Gabor Greiff6caff662008-05-10 08:32:32 +0000142 unsigned e = getNumOperands();
Jay Foade03c05c2011-06-20 14:38:01 +0000143 unsigned NumOps = e + e / 2;
Jay Foade98f29d2011-04-01 08:00:58 +0000144 if (NumOps < 4) NumOps = 4; // 4 op PHI nodes are VERY common.
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000145
Jay Foade03c05c2011-06-20 14:38:01 +0000146 Use *OldOps = op_begin();
147 BasicBlock **OldBlocks = block_begin();
148
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000149 ReservedSpace = NumOps;
Jay Foade03c05c2011-06-20 14:38:01 +0000150 OperandList = allocHungoffUses(ReservedSpace);
151
152 std::copy(OldOps, OldOps + e, op_begin());
153 std::copy(OldBlocks, OldBlocks + e, block_begin());
154
Jay Foadbbb91f22011-01-16 15:30:52 +0000155 Use::zap(OldOps, OldOps + e, true);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000156}
157
Nate Begemanb3923212005-08-04 23:24:19 +0000158/// hasConstantValue - If the specified PHI node always merges together the same
159/// value, return the value, otherwise return null.
Duncan Sands7412f6e2010-11-17 04:30:22 +0000160Value *PHINode::hasConstantValue() const {
161 // Exploit the fact that phi nodes always have at least one entry.
162 Value *ConstantValue = getIncomingValue(0);
163 for (unsigned i = 1, e = getNumIncomingValues(); i != e; ++i)
164 if (getIncomingValue(i) != ConstantValue)
165 return 0; // Incoming values not all the same.
166 return ConstantValue;
Nate Begemanb3923212005-08-04 23:24:19 +0000167}
168
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000169
170//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000171// CallInst Implementation
172//===----------------------------------------------------------------------===//
173
Gordon Henriksen14a55692007-12-10 02:14:30 +0000174CallInst::~CallInst() {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000175}
176
Chris Lattner054ba2c2007-02-13 00:58:44 +0000177void CallInst::init(Value *Func, Value* const *Params, unsigned NumParams) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000178 assert(NumOperands == NumParams+1 && "NumOperands not set up?");
Gabor Greif6d673952010-07-16 09:38:02 +0000179 Op<-1>() = Func;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000180
Misha Brukmanb1c93172005-04-21 23:48:37 +0000181 const FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000182 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
Jeffrey Yasskin9b43f332010-12-23 00:58:24 +0000183 (void)FTy; // silence warning.
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000184
Chris Lattner054ba2c2007-02-13 00:58:44 +0000185 assert((NumParams == FTy->getNumParams() ||
186 (FTy->isVarArg() && NumParams > FTy->getNumParams())) &&
Chris Lattner667a0562006-05-03 00:48:22 +0000187 "Calling a function with bad signature!");
Chris Lattner054ba2c2007-02-13 00:58:44 +0000188 for (unsigned i = 0; i != NumParams; ++i) {
Chris Lattner667a0562006-05-03 00:48:22 +0000189 assert((i >= FTy->getNumParams() ||
190 FTy->getParamType(i) == Params[i]->getType()) &&
191 "Calling a function with a bad signature!");
Gabor Greif6d673952010-07-16 09:38:02 +0000192 OperandList[i] = Params[i];
Chris Lattner667a0562006-05-03 00:48:22 +0000193 }
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000194}
195
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000196void CallInst::init(Value *Func, Value *Actual1, Value *Actual2) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000197 assert(NumOperands == 3 && "NumOperands not set up?");
Gabor Greif6d673952010-07-16 09:38:02 +0000198 Op<-1>() = Func;
199 Op<0>() = Actual1;
200 Op<1>() = Actual2;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000201
202 const FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000203 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
Jeffrey Yasskin9b43f332010-12-23 00:58:24 +0000204 (void)FTy; // silence warning.
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000205
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000206 assert((FTy->getNumParams() == 2 ||
Chris Lattner667a0562006-05-03 00:48:22 +0000207 (FTy->isVarArg() && FTy->getNumParams() < 2)) &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000208 "Calling a function with bad signature");
Chris Lattner667a0562006-05-03 00:48:22 +0000209 assert((0 >= FTy->getNumParams() ||
210 FTy->getParamType(0) == Actual1->getType()) &&
211 "Calling a function with a bad signature!");
212 assert((1 >= FTy->getNumParams() ||
213 FTy->getParamType(1) == Actual2->getType()) &&
214 "Calling a function with a bad signature!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000215}
216
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000217void CallInst::init(Value *Func, Value *Actual) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000218 assert(NumOperands == 2 && "NumOperands not set up?");
Gabor Greif6d673952010-07-16 09:38:02 +0000219 Op<-1>() = Func;
220 Op<0>() = Actual;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000221
222 const FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000223 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
Jeffrey Yasskin9b43f332010-12-23 00:58:24 +0000224 (void)FTy; // silence warning.
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000225
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000226 assert((FTy->getNumParams() == 1 ||
227 (FTy->isVarArg() && FTy->getNumParams() == 0)) &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000228 "Calling a function with bad signature");
Chris Lattner667a0562006-05-03 00:48:22 +0000229 assert((0 == FTy->getNumParams() ||
230 FTy->getParamType(0) == Actual->getType()) &&
231 "Calling a function with a bad signature!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000232}
233
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000234void CallInst::init(Value *Func) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000235 assert(NumOperands == 1 && "NumOperands not set up?");
Gabor Greif6d673952010-07-16 09:38:02 +0000236 Op<-1>() = Func;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000237
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000238 const FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000239 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
Jeffrey Yasskin9b43f332010-12-23 00:58:24 +0000240 (void)FTy; // silence warning.
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000241
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000242 assert(FTy->getNumParams() == 0 && "Calling a function with bad signature");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000243}
244
Daniel Dunbar4975db62009-07-25 04:41:11 +0000245CallInst::CallInst(Value *Func, Value* Actual, const Twine &Name,
Chris Lattner2195fc42007-02-24 00:55:48 +0000246 Instruction *InsertBefore)
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000247 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
248 ->getElementType())->getReturnType(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000249 Instruction::Call,
250 OperandTraits<CallInst>::op_end(this) - 2,
251 2, InsertBefore) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000252 init(Func, Actual);
Chris Lattner2195fc42007-02-24 00:55:48 +0000253 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000254}
255
Daniel Dunbar4975db62009-07-25 04:41:11 +0000256CallInst::CallInst(Value *Func, Value* Actual, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000257 BasicBlock *InsertAtEnd)
258 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
259 ->getElementType())->getReturnType(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000260 Instruction::Call,
261 OperandTraits<CallInst>::op_end(this) - 2,
262 2, InsertAtEnd) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000263 init(Func, Actual);
Chris Lattner2195fc42007-02-24 00:55:48 +0000264 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000265}
Daniel Dunbar4975db62009-07-25 04:41:11 +0000266CallInst::CallInst(Value *Func, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000267 Instruction *InsertBefore)
268 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
269 ->getElementType())->getReturnType(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000270 Instruction::Call,
271 OperandTraits<CallInst>::op_end(this) - 1,
272 1, InsertBefore) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000273 init(Func);
Chris Lattner2195fc42007-02-24 00:55:48 +0000274 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000275}
276
Daniel Dunbar4975db62009-07-25 04:41:11 +0000277CallInst::CallInst(Value *Func, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000278 BasicBlock *InsertAtEnd)
279 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
280 ->getElementType())->getReturnType(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000281 Instruction::Call,
282 OperandTraits<CallInst>::op_end(this) - 1,
283 1, InsertAtEnd) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000284 init(Func);
Chris Lattner2195fc42007-02-24 00:55:48 +0000285 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000286}
287
Misha Brukmanb1c93172005-04-21 23:48:37 +0000288CallInst::CallInst(const CallInst &CI)
Gabor Greiff6caff662008-05-10 08:32:32 +0000289 : Instruction(CI.getType(), Instruction::Call,
290 OperandTraits<CallInst>::op_end(this) - CI.getNumOperands(),
Chris Lattner8a923e72008-03-12 17:45:29 +0000291 CI.getNumOperands()) {
Devang Patel4c758ea2008-09-25 21:00:45 +0000292 setAttributes(CI.getAttributes());
Chris Lattnerb9c86512009-12-29 02:14:09 +0000293 setTailCall(CI.isTailCall());
294 setCallingConv(CI.getCallingConv());
295
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000296 Use *OL = OperandList;
297 Use *InOL = CI.OperandList;
298 for (unsigned i = 0, e = CI.getNumOperands(); i != e; ++i)
Gabor Greif2d3024d2008-05-26 21:33:52 +0000299 OL[i] = InOL[i];
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000300 SubclassOptionalData = CI.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000301}
302
Devang Patel4c758ea2008-09-25 21:00:45 +0000303void CallInst::addAttribute(unsigned i, Attributes attr) {
304 AttrListPtr PAL = getAttributes();
Eric Christopher901b1a72008-05-16 20:39:43 +0000305 PAL = PAL.addAttr(i, attr);
Devang Patel4c758ea2008-09-25 21:00:45 +0000306 setAttributes(PAL);
Eric Christopher901b1a72008-05-16 20:39:43 +0000307}
308
Devang Patel4c758ea2008-09-25 21:00:45 +0000309void CallInst::removeAttribute(unsigned i, Attributes attr) {
310 AttrListPtr PAL = getAttributes();
Duncan Sands78c88722008-07-08 08:38:44 +0000311 PAL = PAL.removeAttr(i, attr);
Devang Patel4c758ea2008-09-25 21:00:45 +0000312 setAttributes(PAL);
Duncan Sands78c88722008-07-08 08:38:44 +0000313}
314
Devang Patelba3fa6c2008-09-23 23:03:40 +0000315bool CallInst::paramHasAttr(unsigned i, Attributes attr) const {
Devang Patel4c758ea2008-09-25 21:00:45 +0000316 if (AttributeList.paramHasAttr(i, attr))
Duncan Sands5208d1a2007-11-28 17:07:01 +0000317 return true;
Duncan Sands8dfcd592007-11-29 08:30:15 +0000318 if (const Function *F = getCalledFunction())
Dale Johannesen89268bc2008-02-19 21:38:47 +0000319 return F->paramHasAttr(i, attr);
Duncan Sands8dfcd592007-11-29 08:30:15 +0000320 return false;
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000321}
322
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000323/// IsConstantOne - Return true only if val is constant int 1
324static bool IsConstantOne(Value *val) {
325 assert(val && "IsConstantOne does not work with NULL val");
326 return isa<ConstantInt>(val) && cast<ConstantInt>(val)->isOne();
327}
328
Nick Lewyckybb1410e2009-10-17 23:52:26 +0000329static Instruction *createMalloc(Instruction *InsertBefore,
330 BasicBlock *InsertAtEnd, const Type *IntPtrTy,
Victor Hernandezf3db9152009-11-07 00:16:28 +0000331 const Type *AllocTy, Value *AllocSize,
332 Value *ArraySize, Function *MallocF,
333 const Twine &Name) {
Benjamin Kramer4bf4e862009-09-10 11:31:39 +0000334 assert(((!InsertBefore && InsertAtEnd) || (InsertBefore && !InsertAtEnd)) &&
Victor Hernandez788eaab2009-09-18 19:20:02 +0000335 "createMalloc needs either InsertBefore or InsertAtEnd");
336
337 // malloc(type) becomes:
338 // bitcast (i8* malloc(typeSize)) to type*
339 // malloc(type, arraySize) becomes:
340 // bitcast (i8 *malloc(typeSize*arraySize)) to type*
Victor Hernandezf3db9152009-11-07 00:16:28 +0000341 if (!ArraySize)
342 ArraySize = ConstantInt::get(IntPtrTy, 1);
343 else if (ArraySize->getType() != IntPtrTy) {
344 if (InsertBefore)
Victor Hernandeze04ed0c2009-11-07 00:36:50 +0000345 ArraySize = CastInst::CreateIntegerCast(ArraySize, IntPtrTy, false,
346 "", InsertBefore);
Victor Hernandezf3db9152009-11-07 00:16:28 +0000347 else
Victor Hernandeze04ed0c2009-11-07 00:36:50 +0000348 ArraySize = CastInst::CreateIntegerCast(ArraySize, IntPtrTy, false,
349 "", InsertAtEnd);
Victor Hernandezf3db9152009-11-07 00:16:28 +0000350 }
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000351
Benjamin Kramer4bf4e862009-09-10 11:31:39 +0000352 if (!IsConstantOne(ArraySize)) {
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000353 if (IsConstantOne(AllocSize)) {
354 AllocSize = ArraySize; // Operand * 1 = Operand
355 } else if (Constant *CO = dyn_cast<Constant>(ArraySize)) {
356 Constant *Scale = ConstantExpr::getIntegerCast(CO, IntPtrTy,
357 false /*ZExt*/);
358 // Malloc arg is constant product of type size and array size
359 AllocSize = ConstantExpr::getMul(Scale, cast<Constant>(AllocSize));
360 } else {
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000361 // Multiply type size by the array size...
362 if (InsertBefore)
Victor Hernandez788eaab2009-09-18 19:20:02 +0000363 AllocSize = BinaryOperator::CreateMul(ArraySize, AllocSize,
364 "mallocsize", InsertBefore);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000365 else
Victor Hernandez788eaab2009-09-18 19:20:02 +0000366 AllocSize = BinaryOperator::CreateMul(ArraySize, AllocSize,
367 "mallocsize", InsertAtEnd);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000368 }
Benjamin Kramer4bf4e862009-09-10 11:31:39 +0000369 }
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000370
Victor Hernandez788eaab2009-09-18 19:20:02 +0000371 assert(AllocSize->getType() == IntPtrTy && "malloc arg is wrong size");
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000372 // Create the call to Malloc.
373 BasicBlock* BB = InsertBefore ? InsertBefore->getParent() : InsertAtEnd;
374 Module* M = BB->getParent()->getParent();
Duncan Sands9ed7b162009-10-06 15:40:36 +0000375 const Type *BPTy = Type::getInt8PtrTy(BB->getContext());
Victor Hernandezbb336a12009-11-10 19:53:28 +0000376 Value *MallocFunc = MallocF;
377 if (!MallocFunc)
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000378 // prototype malloc as "void *malloc(size_t)"
Victor Hernandezbb336a12009-11-10 19:53:28 +0000379 MallocFunc = M->getOrInsertFunction("malloc", BPTy, IntPtrTy, NULL);
Victor Hernandez788eaab2009-09-18 19:20:02 +0000380 const PointerType *AllocPtrType = PointerType::getUnqual(AllocTy);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000381 CallInst *MCall = NULL;
Nick Lewyckybb1410e2009-10-17 23:52:26 +0000382 Instruction *Result = NULL;
Victor Hernandez788eaab2009-09-18 19:20:02 +0000383 if (InsertBefore) {
Victor Hernandezbb336a12009-11-10 19:53:28 +0000384 MCall = CallInst::Create(MallocFunc, AllocSize, "malloccall", InsertBefore);
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000385 Result = MCall;
386 if (Result->getType() != AllocPtrType)
387 // Create a cast instruction to convert to the right type...
Victor Hernandezf3db9152009-11-07 00:16:28 +0000388 Result = new BitCastInst(MCall, AllocPtrType, Name, InsertBefore);
Victor Hernandez788eaab2009-09-18 19:20:02 +0000389 } else {
Victor Hernandezbb336a12009-11-10 19:53:28 +0000390 MCall = CallInst::Create(MallocFunc, AllocSize, "malloccall");
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000391 Result = MCall;
392 if (Result->getType() != AllocPtrType) {
393 InsertAtEnd->getInstList().push_back(MCall);
394 // Create a cast instruction to convert to the right type...
Victor Hernandezf3db9152009-11-07 00:16:28 +0000395 Result = new BitCastInst(MCall, AllocPtrType, Name);
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000396 }
Victor Hernandez788eaab2009-09-18 19:20:02 +0000397 }
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000398 MCall->setTailCall();
Victor Hernandezbb336a12009-11-10 19:53:28 +0000399 if (Function *F = dyn_cast<Function>(MallocFunc)) {
400 MCall->setCallingConv(F->getCallingConv());
401 if (!F->doesNotAlias(0)) F->setDoesNotAlias(0);
402 }
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000403 assert(!MCall->getType()->isVoidTy() && "Malloc has void return type");
Victor Hernandez788eaab2009-09-18 19:20:02 +0000404
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000405 return Result;
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000406}
407
408/// CreateMalloc - Generate the IR for a call to malloc:
409/// 1. Compute the malloc call's argument as the specified type's size,
410/// possibly multiplied by the array size if the array size is not
411/// constant 1.
412/// 2. Call malloc with that argument.
413/// 3. Bitcast the result of the malloc call to the specified type.
Nick Lewyckybb1410e2009-10-17 23:52:26 +0000414Instruction *CallInst::CreateMalloc(Instruction *InsertBefore,
415 const Type *IntPtrTy, const Type *AllocTy,
Victor Hernandezf3db9152009-11-07 00:16:28 +0000416 Value *AllocSize, Value *ArraySize,
Duncan Sands41b4a6b2010-07-12 08:16:59 +0000417 Function * MallocF,
Victor Hernandezf3db9152009-11-07 00:16:28 +0000418 const Twine &Name) {
419 return createMalloc(InsertBefore, NULL, IntPtrTy, AllocTy, AllocSize,
Chris Lattner601e390a2010-07-12 00:57:28 +0000420 ArraySize, MallocF, Name);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000421}
422
423/// CreateMalloc - Generate the IR for a call to malloc:
424/// 1. Compute the malloc call's argument as the specified type's size,
425/// possibly multiplied by the array size if the array size is not
426/// constant 1.
427/// 2. Call malloc with that argument.
428/// 3. Bitcast the result of the malloc call to the specified type.
429/// Note: This function does not add the bitcast to the basic block, that is the
430/// responsibility of the caller.
Nick Lewyckybb1410e2009-10-17 23:52:26 +0000431Instruction *CallInst::CreateMalloc(BasicBlock *InsertAtEnd,
432 const Type *IntPtrTy, const Type *AllocTy,
Victor Hernandezf3db9152009-11-07 00:16:28 +0000433 Value *AllocSize, Value *ArraySize,
434 Function *MallocF, const Twine &Name) {
435 return createMalloc(NULL, InsertAtEnd, IntPtrTy, AllocTy, AllocSize,
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000436 ArraySize, MallocF, Name);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000437}
Duncan Sands5208d1a2007-11-28 17:07:01 +0000438
Victor Hernandeze2971492009-10-24 04:23:03 +0000439static Instruction* createFree(Value* Source, Instruction *InsertBefore,
440 BasicBlock *InsertAtEnd) {
441 assert(((!InsertBefore && InsertAtEnd) || (InsertBefore && !InsertAtEnd)) &&
442 "createFree needs either InsertBefore or InsertAtEnd");
Duncan Sands19d0b472010-02-16 11:11:14 +0000443 assert(Source->getType()->isPointerTy() &&
Victor Hernandeze2971492009-10-24 04:23:03 +0000444 "Can not free something of nonpointer type!");
445
446 BasicBlock* BB = InsertBefore ? InsertBefore->getParent() : InsertAtEnd;
447 Module* M = BB->getParent()->getParent();
448
449 const Type *VoidTy = Type::getVoidTy(M->getContext());
450 const Type *IntPtrTy = Type::getInt8PtrTy(M->getContext());
451 // prototype free as "void free(void*)"
Chris Lattner2156c222009-11-09 07:12:01 +0000452 Value *FreeFunc = M->getOrInsertFunction("free", VoidTy, IntPtrTy, NULL);
Victor Hernandeze2971492009-10-24 04:23:03 +0000453 CallInst* Result = NULL;
454 Value *PtrCast = Source;
455 if (InsertBefore) {
456 if (Source->getType() != IntPtrTy)
457 PtrCast = new BitCastInst(Source, IntPtrTy, "", InsertBefore);
458 Result = CallInst::Create(FreeFunc, PtrCast, "", InsertBefore);
459 } else {
460 if (Source->getType() != IntPtrTy)
461 PtrCast = new BitCastInst(Source, IntPtrTy, "", InsertAtEnd);
462 Result = CallInst::Create(FreeFunc, PtrCast, "");
463 }
464 Result->setTailCall();
Chris Lattner2156c222009-11-09 07:12:01 +0000465 if (Function *F = dyn_cast<Function>(FreeFunc))
466 Result->setCallingConv(F->getCallingConv());
Victor Hernandeze2971492009-10-24 04:23:03 +0000467
468 return Result;
469}
470
471/// CreateFree - Generate the IR for a call to the builtin free function.
Chris Lattner601e390a2010-07-12 00:57:28 +0000472Instruction * CallInst::CreateFree(Value* Source, Instruction *InsertBefore) {
473 return createFree(Source, InsertBefore, NULL);
Victor Hernandeze2971492009-10-24 04:23:03 +0000474}
475
476/// CreateFree - Generate the IR for a call to the builtin free function.
477/// Note: This function does not add the call to the basic block, that is the
478/// responsibility of the caller.
479Instruction* CallInst::CreateFree(Value* Source, BasicBlock *InsertAtEnd) {
480 Instruction* FreeCall = createFree(Source, NULL, InsertAtEnd);
481 assert(FreeCall && "CreateFree did not create a CallInst");
482 return FreeCall;
483}
484
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000485//===----------------------------------------------------------------------===//
486// InvokeInst Implementation
487//===----------------------------------------------------------------------===//
488
489void InvokeInst::init(Value *Fn, BasicBlock *IfNormal, BasicBlock *IfException,
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000490 Value* const *Args, unsigned NumArgs) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000491 assert(NumOperands == 3+NumArgs && "NumOperands not set up?");
Gabor Greifa2fbc0a2010-03-24 13:21:49 +0000492 Op<-3>() = Fn;
493 Op<-2>() = IfNormal;
494 Op<-1>() = IfException;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000495 const FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000496 cast<FunctionType>(cast<PointerType>(Fn->getType())->getElementType());
Jeffrey Yasskin9b43f332010-12-23 00:58:24 +0000497 (void)FTy; // silence warning.
Misha Brukmanb1c93172005-04-21 23:48:37 +0000498
Anton Korobeynikov579f0712008-02-20 11:08:44 +0000499 assert(((NumArgs == FTy->getNumParams()) ||
500 (FTy->isVarArg() && NumArgs > FTy->getNumParams())) &&
Gabor Greif668d7002010-03-23 13:45:54 +0000501 "Invoking a function with bad signature");
Misha Brukmanb1c93172005-04-21 23:48:37 +0000502
Gabor Greifa2fbc0a2010-03-24 13:21:49 +0000503 Use *OL = OperandList;
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000504 for (unsigned i = 0, e = NumArgs; i != e; i++) {
Chris Lattner667a0562006-05-03 00:48:22 +0000505 assert((i >= FTy->getNumParams() ||
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000506 FTy->getParamType(i) == Args[i]->getType()) &&
Chris Lattner667a0562006-05-03 00:48:22 +0000507 "Invoking a function with a bad signature!");
508
Gabor Greifa2fbc0a2010-03-24 13:21:49 +0000509 OL[i] = Args[i];
Chris Lattner667a0562006-05-03 00:48:22 +0000510 }
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000511}
512
Misha Brukmanb1c93172005-04-21 23:48:37 +0000513InvokeInst::InvokeInst(const InvokeInst &II)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000514 : TerminatorInst(II.getType(), Instruction::Invoke,
Gabor Greif697e94c2008-05-15 10:04:30 +0000515 OperandTraits<InvokeInst>::op_end(this)
516 - II.getNumOperands(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000517 II.getNumOperands()) {
Devang Patel4c758ea2008-09-25 21:00:45 +0000518 setAttributes(II.getAttributes());
Chris Lattnerb9c86512009-12-29 02:14:09 +0000519 setCallingConv(II.getCallingConv());
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000520 Use *OL = OperandList, *InOL = II.OperandList;
521 for (unsigned i = 0, e = II.getNumOperands(); i != e; ++i)
Gabor Greif2d3024d2008-05-26 21:33:52 +0000522 OL[i] = InOL[i];
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000523 SubclassOptionalData = II.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000524}
525
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000526BasicBlock *InvokeInst::getSuccessorV(unsigned idx) const {
527 return getSuccessor(idx);
528}
529unsigned InvokeInst::getNumSuccessorsV() const {
530 return getNumSuccessors();
531}
532void InvokeInst::setSuccessorV(unsigned idx, BasicBlock *B) {
533 return setSuccessor(idx, B);
534}
535
Devang Patelba3fa6c2008-09-23 23:03:40 +0000536bool InvokeInst::paramHasAttr(unsigned i, Attributes attr) const {
Devang Patel4c758ea2008-09-25 21:00:45 +0000537 if (AttributeList.paramHasAttr(i, attr))
Duncan Sands5208d1a2007-11-28 17:07:01 +0000538 return true;
Duncan Sands8dfcd592007-11-29 08:30:15 +0000539 if (const Function *F = getCalledFunction())
Dale Johannesen89268bc2008-02-19 21:38:47 +0000540 return F->paramHasAttr(i, attr);
Duncan Sands8dfcd592007-11-29 08:30:15 +0000541 return false;
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000542}
543
Devang Patel4c758ea2008-09-25 21:00:45 +0000544void InvokeInst::addAttribute(unsigned i, Attributes attr) {
545 AttrListPtr PAL = getAttributes();
Eric Christopher901b1a72008-05-16 20:39:43 +0000546 PAL = PAL.addAttr(i, attr);
Devang Patel4c758ea2008-09-25 21:00:45 +0000547 setAttributes(PAL);
Eric Christopher901b1a72008-05-16 20:39:43 +0000548}
549
Devang Patel4c758ea2008-09-25 21:00:45 +0000550void InvokeInst::removeAttribute(unsigned i, Attributes attr) {
551 AttrListPtr PAL = getAttributes();
Duncan Sands78c88722008-07-08 08:38:44 +0000552 PAL = PAL.removeAttr(i, attr);
Devang Patel4c758ea2008-09-25 21:00:45 +0000553 setAttributes(PAL);
Duncan Sandsaa31b922007-12-19 21:13:37 +0000554}
555
Duncan Sands5208d1a2007-11-28 17:07:01 +0000556
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000557//===----------------------------------------------------------------------===//
558// ReturnInst Implementation
559//===----------------------------------------------------------------------===//
560
Chris Lattner2195fc42007-02-24 00:55:48 +0000561ReturnInst::ReturnInst(const ReturnInst &RI)
Owen Anderson55f1c092009-08-13 21:58:54 +0000562 : TerminatorInst(Type::getVoidTy(RI.getContext()), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000563 OperandTraits<ReturnInst>::op_end(this) -
564 RI.getNumOperands(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000565 RI.getNumOperands()) {
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000566 if (RI.getNumOperands())
Gabor Greif2d3024d2008-05-26 21:33:52 +0000567 Op<0>() = RI.Op<0>();
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000568 SubclassOptionalData = RI.SubclassOptionalData;
Chris Lattner2195fc42007-02-24 00:55:48 +0000569}
570
Owen Anderson55f1c092009-08-13 21:58:54 +0000571ReturnInst::ReturnInst(LLVMContext &C, Value *retVal, Instruction *InsertBefore)
572 : TerminatorInst(Type::getVoidTy(C), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000573 OperandTraits<ReturnInst>::op_end(this) - !!retVal, !!retVal,
574 InsertBefore) {
Devang Patelc38eb522008-02-26 18:49:29 +0000575 if (retVal)
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000576 Op<0>() = retVal;
Chris Lattner2195fc42007-02-24 00:55:48 +0000577}
Owen Anderson55f1c092009-08-13 21:58:54 +0000578ReturnInst::ReturnInst(LLVMContext &C, Value *retVal, BasicBlock *InsertAtEnd)
579 : TerminatorInst(Type::getVoidTy(C), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000580 OperandTraits<ReturnInst>::op_end(this) - !!retVal, !!retVal,
581 InsertAtEnd) {
Devang Patelc38eb522008-02-26 18:49:29 +0000582 if (retVal)
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000583 Op<0>() = retVal;
Chris Lattner2195fc42007-02-24 00:55:48 +0000584}
Owen Anderson55f1c092009-08-13 21:58:54 +0000585ReturnInst::ReturnInst(LLVMContext &Context, BasicBlock *InsertAtEnd)
586 : TerminatorInst(Type::getVoidTy(Context), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000587 OperandTraits<ReturnInst>::op_end(this), 0, InsertAtEnd) {
Devang Patel59643e52008-02-23 00:35:18 +0000588}
589
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000590unsigned ReturnInst::getNumSuccessorsV() const {
591 return getNumSuccessors();
592}
593
Devang Patelae682fb2008-02-26 17:56:20 +0000594/// Out-of-line ReturnInst method, put here so the C++ compiler can choose to
595/// emit the vtable for the class in this translation unit.
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000596void ReturnInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000597 llvm_unreachable("ReturnInst has no successors!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000598}
599
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000600BasicBlock *ReturnInst::getSuccessorV(unsigned idx) const {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000601 llvm_unreachable("ReturnInst has no successors!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000602 return 0;
603}
604
Devang Patel59643e52008-02-23 00:35:18 +0000605ReturnInst::~ReturnInst() {
Devang Patel59643e52008-02-23 00:35:18 +0000606}
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000607
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000608//===----------------------------------------------------------------------===//
609// UnwindInst Implementation
610//===----------------------------------------------------------------------===//
611
Owen Anderson55f1c092009-08-13 21:58:54 +0000612UnwindInst::UnwindInst(LLVMContext &Context, Instruction *InsertBefore)
613 : TerminatorInst(Type::getVoidTy(Context), Instruction::Unwind,
614 0, 0, InsertBefore) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000615}
Owen Anderson55f1c092009-08-13 21:58:54 +0000616UnwindInst::UnwindInst(LLVMContext &Context, BasicBlock *InsertAtEnd)
617 : TerminatorInst(Type::getVoidTy(Context), Instruction::Unwind,
618 0, 0, InsertAtEnd) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000619}
620
621
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000622unsigned UnwindInst::getNumSuccessorsV() const {
623 return getNumSuccessors();
624}
625
626void UnwindInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000627 llvm_unreachable("UnwindInst has no successors!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000628}
629
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000630BasicBlock *UnwindInst::getSuccessorV(unsigned idx) const {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000631 llvm_unreachable("UnwindInst has no successors!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000632 return 0;
633}
634
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000635//===----------------------------------------------------------------------===//
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000636// UnreachableInst Implementation
637//===----------------------------------------------------------------------===//
638
Owen Anderson55f1c092009-08-13 21:58:54 +0000639UnreachableInst::UnreachableInst(LLVMContext &Context,
640 Instruction *InsertBefore)
641 : TerminatorInst(Type::getVoidTy(Context), Instruction::Unreachable,
642 0, 0, InsertBefore) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000643}
Owen Anderson55f1c092009-08-13 21:58:54 +0000644UnreachableInst::UnreachableInst(LLVMContext &Context, BasicBlock *InsertAtEnd)
645 : TerminatorInst(Type::getVoidTy(Context), Instruction::Unreachable,
646 0, 0, InsertAtEnd) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000647}
648
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000649unsigned UnreachableInst::getNumSuccessorsV() const {
650 return getNumSuccessors();
651}
652
653void UnreachableInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000654 llvm_unreachable("UnwindInst has no successors!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000655}
656
657BasicBlock *UnreachableInst::getSuccessorV(unsigned idx) const {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000658 llvm_unreachable("UnwindInst has no successors!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000659 return 0;
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000660}
661
662//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000663// BranchInst Implementation
664//===----------------------------------------------------------------------===//
665
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000666void BranchInst::AssertOK() {
667 if (isConditional())
Duncan Sands9dff9be2010-02-15 16:12:20 +0000668 assert(getCondition()->getType()->isIntegerTy(1) &&
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000669 "May only branch on boolean predicates!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000670}
671
Chris Lattner2195fc42007-02-24 00:55:48 +0000672BranchInst::BranchInst(BasicBlock *IfTrue, Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +0000673 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000674 OperandTraits<BranchInst>::op_end(this) - 1,
675 1, InsertBefore) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000676 assert(IfTrue != 0 && "Branch destination may not be null!");
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000677 Op<-1>() = IfTrue;
Chris Lattner2195fc42007-02-24 00:55:48 +0000678}
679BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
680 Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +0000681 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000682 OperandTraits<BranchInst>::op_end(this) - 3,
683 3, InsertBefore) {
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000684 Op<-1>() = IfTrue;
685 Op<-2>() = IfFalse;
686 Op<-3>() = Cond;
Chris Lattner2195fc42007-02-24 00:55:48 +0000687#ifndef NDEBUG
688 AssertOK();
689#endif
690}
691
692BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +0000693 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000694 OperandTraits<BranchInst>::op_end(this) - 1,
695 1, InsertAtEnd) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000696 assert(IfTrue != 0 && "Branch destination may not be null!");
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000697 Op<-1>() = IfTrue;
Chris Lattner2195fc42007-02-24 00:55:48 +0000698}
699
700BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
701 BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +0000702 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000703 OperandTraits<BranchInst>::op_end(this) - 3,
704 3, InsertAtEnd) {
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000705 Op<-1>() = IfTrue;
706 Op<-2>() = IfFalse;
707 Op<-3>() = Cond;
Chris Lattner2195fc42007-02-24 00:55:48 +0000708#ifndef NDEBUG
709 AssertOK();
710#endif
711}
712
713
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000714BranchInst::BranchInst(const BranchInst &BI) :
Owen Anderson55f1c092009-08-13 21:58:54 +0000715 TerminatorInst(Type::getVoidTy(BI.getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000716 OperandTraits<BranchInst>::op_end(this) - BI.getNumOperands(),
717 BI.getNumOperands()) {
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000718 Op<-1>() = BI.Op<-1>();
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000719 if (BI.getNumOperands() != 1) {
720 assert(BI.getNumOperands() == 3 && "BR can have 1 or 3 operands!");
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000721 Op<-3>() = BI.Op<-3>();
722 Op<-2>() = BI.Op<-2>();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000723 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000724 SubclassOptionalData = BI.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000725}
726
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000727BasicBlock *BranchInst::getSuccessorV(unsigned idx) const {
728 return getSuccessor(idx);
729}
730unsigned BranchInst::getNumSuccessorsV() const {
731 return getNumSuccessors();
732}
733void BranchInst::setSuccessorV(unsigned idx, BasicBlock *B) {
734 setSuccessor(idx, B);
735}
736
737
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000738//===----------------------------------------------------------------------===//
Victor Hernandez8acf2952009-10-23 21:09:37 +0000739// AllocaInst Implementation
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000740//===----------------------------------------------------------------------===//
741
Owen Andersonb6b25302009-07-14 23:09:55 +0000742static Value *getAISize(LLVMContext &Context, Value *Amt) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000743 if (!Amt)
Owen Anderson55f1c092009-08-13 21:58:54 +0000744 Amt = ConstantInt::get(Type::getInt32Ty(Context), 1);
Chris Lattnerbb7ff662006-05-10 04:32:43 +0000745 else {
746 assert(!isa<BasicBlock>(Amt) &&
Chris Lattner9b6ec772007-10-18 16:10:48 +0000747 "Passed basic block into allocation size parameter! Use other ctor");
Dan Gohman2140a742010-05-28 01:14:11 +0000748 assert(Amt->getType()->isIntegerTy() &&
749 "Allocation array size is not an integer!");
Chris Lattnerbb7ff662006-05-10 04:32:43 +0000750 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000751 return Amt;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000752}
753
Victor Hernandez8acf2952009-10-23 21:09:37 +0000754AllocaInst::AllocaInst(const Type *Ty, Value *ArraySize,
755 const Twine &Name, Instruction *InsertBefore)
756 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
757 getAISize(Ty->getContext(), ArraySize), InsertBefore) {
758 setAlignment(0);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000759 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Victor Hernandez8acf2952009-10-23 21:09:37 +0000760 setName(Name);
761}
762
763AllocaInst::AllocaInst(const Type *Ty, Value *ArraySize,
764 const Twine &Name, BasicBlock *InsertAtEnd)
765 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
766 getAISize(Ty->getContext(), ArraySize), InsertAtEnd) {
767 setAlignment(0);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000768 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Victor Hernandez8acf2952009-10-23 21:09:37 +0000769 setName(Name);
770}
771
772AllocaInst::AllocaInst(const Type *Ty, const Twine &Name,
773 Instruction *InsertBefore)
774 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
775 getAISize(Ty->getContext(), 0), InsertBefore) {
776 setAlignment(0);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000777 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Victor Hernandez8acf2952009-10-23 21:09:37 +0000778 setName(Name);
779}
780
781AllocaInst::AllocaInst(const Type *Ty, const Twine &Name,
782 BasicBlock *InsertAtEnd)
783 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
784 getAISize(Ty->getContext(), 0), InsertAtEnd) {
785 setAlignment(0);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000786 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Victor Hernandez8acf2952009-10-23 21:09:37 +0000787 setName(Name);
788}
789
790AllocaInst::AllocaInst(const Type *Ty, Value *ArraySize, unsigned Align,
791 const Twine &Name, Instruction *InsertBefore)
792 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
Owen Anderson4fdeba92009-07-15 23:53:25 +0000793 getAISize(Ty->getContext(), ArraySize), InsertBefore) {
Dan Gohmanaa583d72008-03-24 16:55:58 +0000794 setAlignment(Align);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000795 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Chris Lattner0f048162007-02-13 07:54:42 +0000796 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000797}
798
Victor Hernandez8acf2952009-10-23 21:09:37 +0000799AllocaInst::AllocaInst(const Type *Ty, Value *ArraySize, unsigned Align,
800 const Twine &Name, BasicBlock *InsertAtEnd)
801 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
Owen Anderson4fdeba92009-07-15 23:53:25 +0000802 getAISize(Ty->getContext(), ArraySize), InsertAtEnd) {
Dan Gohmanaa583d72008-03-24 16:55:58 +0000803 setAlignment(Align);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000804 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Chris Lattner0f048162007-02-13 07:54:42 +0000805 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000806}
807
Gordon Henriksen14a55692007-12-10 02:14:30 +0000808// Out of line virtual method, so the vtable, etc has a home.
Victor Hernandez8acf2952009-10-23 21:09:37 +0000809AllocaInst::~AllocaInst() {
Gordon Henriksen14a55692007-12-10 02:14:30 +0000810}
811
Victor Hernandez8acf2952009-10-23 21:09:37 +0000812void AllocaInst::setAlignment(unsigned Align) {
Dan Gohmanaa583d72008-03-24 16:55:58 +0000813 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
Dan Gohmana7e5a242010-07-28 20:12:04 +0000814 assert(Align <= MaximumAlignment &&
815 "Alignment is greater than MaximumAlignment!");
Chris Lattnerd8eb2cf2009-12-29 02:46:09 +0000816 setInstructionSubclassData(Log2_32(Align) + 1);
Dan Gohmanaa583d72008-03-24 16:55:58 +0000817 assert(getAlignment() == Align && "Alignment representation error!");
818}
819
Victor Hernandez8acf2952009-10-23 21:09:37 +0000820bool AllocaInst::isArrayAllocation() const {
Reid Spencera9e6e312007-03-01 20:27:41 +0000821 if (ConstantInt *CI = dyn_cast<ConstantInt>(getOperand(0)))
Dan Gohman9a1b8592010-09-27 15:15:44 +0000822 return !CI->isOne();
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000823 return true;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000824}
825
Victor Hernandez8acf2952009-10-23 21:09:37 +0000826const Type *AllocaInst::getAllocatedType() const {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000827 return getType()->getElementType();
828}
829
Chris Lattner8b291e62008-11-26 02:54:17 +0000830/// isStaticAlloca - Return true if this alloca is in the entry block of the
831/// function and is a constant size. If so, the code generator will fold it
832/// into the prolog/epilog code, so it is basically free.
833bool AllocaInst::isStaticAlloca() const {
834 // Must be constant size.
835 if (!isa<ConstantInt>(getArraySize())) return false;
836
837 // Must be in the entry block.
838 const BasicBlock *Parent = getParent();
839 return Parent == &Parent->getParent()->front();
840}
841
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000842//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000843// LoadInst Implementation
844//===----------------------------------------------------------------------===//
845
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000846void LoadInst::AssertOK() {
Duncan Sands19d0b472010-02-16 11:11:14 +0000847 assert(getOperand(0)->getType()->isPointerTy() &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000848 "Ptr must have pointer type.");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000849}
850
Daniel Dunbar4975db62009-07-25 04:41:11 +0000851LoadInst::LoadInst(Value *Ptr, const Twine &Name, Instruction *InsertBef)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000852 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000853 Load, Ptr, InsertBef) {
Chris Lattnerdf57a022005-02-05 01:38:38 +0000854 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000855 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000856 AssertOK();
Chris Lattner0f048162007-02-13 07:54:42 +0000857 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000858}
859
Daniel Dunbar4975db62009-07-25 04:41:11 +0000860LoadInst::LoadInst(Value *Ptr, const Twine &Name, BasicBlock *InsertAE)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000861 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000862 Load, Ptr, InsertAE) {
Chris Lattnerdf57a022005-02-05 01:38:38 +0000863 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000864 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000865 AssertOK();
Chris Lattner0f048162007-02-13 07:54:42 +0000866 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000867}
868
Daniel Dunbar4975db62009-07-25 04:41:11 +0000869LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000870 Instruction *InsertBef)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000871 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000872 Load, Ptr, InsertBef) {
Chris Lattnerdf57a022005-02-05 01:38:38 +0000873 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +0000874 setAlignment(0);
875 AssertOK();
876 setName(Name);
877}
878
Daniel Dunbar4975db62009-07-25 04:41:11 +0000879LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Christopher Lamb84485702007-04-22 19:24:39 +0000880 unsigned Align, Instruction *InsertBef)
881 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
882 Load, Ptr, InsertBef) {
883 setVolatile(isVolatile);
884 setAlignment(Align);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000885 AssertOK();
Chris Lattner0f048162007-02-13 07:54:42 +0000886 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000887}
888
Daniel Dunbar4975db62009-07-25 04:41:11 +0000889LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Dan Gohman68659282007-07-18 20:51:11 +0000890 unsigned Align, BasicBlock *InsertAE)
891 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
892 Load, Ptr, InsertAE) {
893 setVolatile(isVolatile);
894 setAlignment(Align);
895 AssertOK();
896 setName(Name);
897}
898
Daniel Dunbar4975db62009-07-25 04:41:11 +0000899LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000900 BasicBlock *InsertAE)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000901 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000902 Load, Ptr, InsertAE) {
Chris Lattner0f048162007-02-13 07:54:42 +0000903 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +0000904 setAlignment(0);
Chris Lattner0f048162007-02-13 07:54:42 +0000905 AssertOK();
906 setName(Name);
907}
908
Daniel Dunbar27096822009-08-11 18:11:15 +0000909
910
911LoadInst::LoadInst(Value *Ptr, const char *Name, Instruction *InsertBef)
912 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
913 Load, Ptr, InsertBef) {
914 setVolatile(false);
915 setAlignment(0);
916 AssertOK();
917 if (Name && Name[0]) setName(Name);
918}
919
920LoadInst::LoadInst(Value *Ptr, const char *Name, BasicBlock *InsertAE)
921 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
922 Load, Ptr, InsertAE) {
923 setVolatile(false);
924 setAlignment(0);
925 AssertOK();
926 if (Name && Name[0]) setName(Name);
927}
928
929LoadInst::LoadInst(Value *Ptr, const char *Name, bool isVolatile,
930 Instruction *InsertBef)
931: UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
932 Load, Ptr, InsertBef) {
933 setVolatile(isVolatile);
934 setAlignment(0);
935 AssertOK();
936 if (Name && Name[0]) setName(Name);
937}
938
939LoadInst::LoadInst(Value *Ptr, const char *Name, bool isVolatile,
940 BasicBlock *InsertAE)
941 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
942 Load, Ptr, InsertAE) {
943 setVolatile(isVolatile);
944 setAlignment(0);
945 AssertOK();
946 if (Name && Name[0]) setName(Name);
947}
948
Christopher Lamb84485702007-04-22 19:24:39 +0000949void LoadInst::setAlignment(unsigned Align) {
950 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
Dan Gohmana7e5a242010-07-28 20:12:04 +0000951 assert(Align <= MaximumAlignment &&
952 "Alignment is greater than MaximumAlignment!");
Chris Lattnerd8eb2cf2009-12-29 02:46:09 +0000953 setInstructionSubclassData((getSubclassDataFromInstruction() & 1) |
954 ((Log2_32(Align)+1)<<1));
Dan Gohmana7e5a242010-07-28 20:12:04 +0000955 assert(getAlignment() == Align && "Alignment representation error!");
Christopher Lamb84485702007-04-22 19:24:39 +0000956}
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000957
958//===----------------------------------------------------------------------===//
959// StoreInst Implementation
960//===----------------------------------------------------------------------===//
961
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000962void StoreInst::AssertOK() {
Nate Begemanfecbc8c2008-07-29 15:49:41 +0000963 assert(getOperand(0) && getOperand(1) && "Both operands must be non-null!");
Duncan Sands19d0b472010-02-16 11:11:14 +0000964 assert(getOperand(1)->getType()->isPointerTy() &&
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000965 "Ptr must have pointer type!");
966 assert(getOperand(0)->getType() ==
967 cast<PointerType>(getOperand(1)->getType())->getElementType()
Alkis Evlogimenos079fbde2004-08-06 14:33:37 +0000968 && "Ptr must be a pointer to Val type!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000969}
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000970
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000971
972StoreInst::StoreInst(Value *val, Value *addr, Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +0000973 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +0000974 OperandTraits<StoreInst>::op_begin(this),
975 OperandTraits<StoreInst>::operands(this),
976 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +0000977 Op<0>() = val;
978 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +0000979 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000980 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000981 AssertOK();
982}
983
984StoreInst::StoreInst(Value *val, Value *addr, BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +0000985 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +0000986 OperandTraits<StoreInst>::op_begin(this),
987 OperandTraits<StoreInst>::operands(this),
988 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +0000989 Op<0>() = val;
990 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +0000991 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000992 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000993 AssertOK();
994}
995
Misha Brukmanb1c93172005-04-21 23:48:37 +0000996StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000997 Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +0000998 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +0000999 OperandTraits<StoreInst>::op_begin(this),
1000 OperandTraits<StoreInst>::operands(this),
1001 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001002 Op<0>() = val;
1003 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +00001004 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +00001005 setAlignment(0);
1006 AssertOK();
1007}
1008
1009StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
1010 unsigned Align, Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +00001011 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001012 OperandTraits<StoreInst>::op_begin(this),
1013 OperandTraits<StoreInst>::operands(this),
1014 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001015 Op<0>() = val;
1016 Op<1>() = addr;
Christopher Lamb84485702007-04-22 19:24:39 +00001017 setVolatile(isVolatile);
1018 setAlignment(Align);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001019 AssertOK();
1020}
1021
Misha Brukmanb1c93172005-04-21 23:48:37 +00001022StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Dan Gohman68659282007-07-18 20:51:11 +00001023 unsigned Align, BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +00001024 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001025 OperandTraits<StoreInst>::op_begin(this),
1026 OperandTraits<StoreInst>::operands(this),
1027 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001028 Op<0>() = val;
1029 Op<1>() = addr;
Dan Gohman68659282007-07-18 20:51:11 +00001030 setVolatile(isVolatile);
1031 setAlignment(Align);
1032 AssertOK();
1033}
1034
1035StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001036 BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +00001037 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001038 OperandTraits<StoreInst>::op_begin(this),
1039 OperandTraits<StoreInst>::operands(this),
1040 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001041 Op<0>() = val;
1042 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +00001043 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +00001044 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001045 AssertOK();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001046}
1047
Christopher Lamb84485702007-04-22 19:24:39 +00001048void StoreInst::setAlignment(unsigned Align) {
1049 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
Dan Gohmana7e5a242010-07-28 20:12:04 +00001050 assert(Align <= MaximumAlignment &&
1051 "Alignment is greater than MaximumAlignment!");
Chris Lattnerd8eb2cf2009-12-29 02:46:09 +00001052 setInstructionSubclassData((getSubclassDataFromInstruction() & 1) |
1053 ((Log2_32(Align)+1) << 1));
Dan Gohmana7e5a242010-07-28 20:12:04 +00001054 assert(getAlignment() == Align && "Alignment representation error!");
Christopher Lamb84485702007-04-22 19:24:39 +00001055}
1056
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001057//===----------------------------------------------------------------------===//
1058// GetElementPtrInst Implementation
1059//===----------------------------------------------------------------------===//
1060
Christopher Lambedf07882007-12-17 01:12:55 +00001061static unsigned retrieveAddrSpace(const Value *Val) {
1062 return cast<PointerType>(Val->getType())->getAddressSpace();
1063}
1064
Gabor Greif21ba1842008-06-06 20:28:12 +00001065void GetElementPtrInst::init(Value *Ptr, Value* const *Idx, unsigned NumIdx,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001066 const Twine &Name) {
Gabor Greiff6caff662008-05-10 08:32:32 +00001067 assert(NumOperands == 1+NumIdx && "NumOperands not initialized?");
1068 Use *OL = OperandList;
Gabor Greif2d3024d2008-05-26 21:33:52 +00001069 OL[0] = Ptr;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001070
Chris Lattner79807c3d2007-01-31 19:47:18 +00001071 for (unsigned i = 0; i != NumIdx; ++i)
Gabor Greif2d3024d2008-05-26 21:33:52 +00001072 OL[i+1] = Idx[i];
Matthijs Kooijman76d8dec2008-06-04 16:14:12 +00001073
1074 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001075}
1076
Daniel Dunbar4975db62009-07-25 04:41:11 +00001077void GetElementPtrInst::init(Value *Ptr, Value *Idx, const Twine &Name) {
Gabor Greiff6caff662008-05-10 08:32:32 +00001078 assert(NumOperands == 2 && "NumOperands not initialized?");
1079 Use *OL = OperandList;
Gabor Greif2d3024d2008-05-26 21:33:52 +00001080 OL[0] = Ptr;
1081 OL[1] = Idx;
Matthijs Kooijman76d8dec2008-06-04 16:14:12 +00001082
1083 setName(Name);
Chris Lattner82981202005-05-03 05:43:30 +00001084}
1085
Gabor Greiff6caff662008-05-10 08:32:32 +00001086GetElementPtrInst::GetElementPtrInst(const GetElementPtrInst &GEPI)
Gabor Greife9408e62008-05-27 11:03:29 +00001087 : Instruction(GEPI.getType(), GetElementPtr,
Gabor Greif697e94c2008-05-15 10:04:30 +00001088 OperandTraits<GetElementPtrInst>::op_end(this)
1089 - GEPI.getNumOperands(),
Gabor Greiff6caff662008-05-10 08:32:32 +00001090 GEPI.getNumOperands()) {
1091 Use *OL = OperandList;
1092 Use *GEPIOL = GEPI.OperandList;
1093 for (unsigned i = 0, E = NumOperands; i != E; ++i)
Gabor Greif2d3024d2008-05-26 21:33:52 +00001094 OL[i] = GEPIOL[i];
Dan Gohmanc8a27f22009-08-25 22:11:20 +00001095 SubclassOptionalData = GEPI.SubclassOptionalData;
Gabor Greiff6caff662008-05-10 08:32:32 +00001096}
1097
Chris Lattner82981202005-05-03 05:43:30 +00001098GetElementPtrInst::GetElementPtrInst(Value *Ptr, Value *Idx,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001099 const Twine &Name, Instruction *InBe)
Owen Anderson4056ca92009-07-29 22:17:13 +00001100 : Instruction(PointerType::get(
Owen Andersond420fd42009-07-16 00:03:07 +00001101 checkType(getIndexedType(Ptr->getType(),Idx)), retrieveAddrSpace(Ptr)),
Gabor Greiff6caff662008-05-10 08:32:32 +00001102 GetElementPtr,
1103 OperandTraits<GetElementPtrInst>::op_end(this) - 2,
1104 2, InBe) {
Matthijs Kooijman76d8dec2008-06-04 16:14:12 +00001105 init(Ptr, Idx, Name);
Chris Lattner82981202005-05-03 05:43:30 +00001106}
1107
1108GetElementPtrInst::GetElementPtrInst(Value *Ptr, Value *Idx,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001109 const Twine &Name, BasicBlock *IAE)
Owen Anderson4056ca92009-07-29 22:17:13 +00001110 : Instruction(PointerType::get(
Owen Andersond420fd42009-07-16 00:03:07 +00001111 checkType(getIndexedType(Ptr->getType(),Idx)),
1112 retrieveAddrSpace(Ptr)),
Gabor Greiff6caff662008-05-10 08:32:32 +00001113 GetElementPtr,
1114 OperandTraits<GetElementPtrInst>::op_end(this) - 2,
1115 2, IAE) {
Matthijs Kooijman76d8dec2008-06-04 16:14:12 +00001116 init(Ptr, Idx, Name);
Chris Lattner82981202005-05-03 05:43:30 +00001117}
1118
Chris Lattner6090a422009-03-09 04:46:40 +00001119/// getIndexedType - Returns the type of the element that would be accessed with
1120/// a gep instruction with the specified parameters.
1121///
1122/// The Idxs pointer should point to a continuous piece of memory containing the
1123/// indices, either as Value* or uint64_t.
1124///
1125/// A null type is returned if the indices are invalid for the specified
1126/// pointer type.
1127///
Matthijs Kooijman04468622008-07-29 08:46:11 +00001128template <typename IndexTy>
Chris Lattner6090a422009-03-09 04:46:40 +00001129static const Type* getIndexedTypeInternal(const Type *Ptr, IndexTy const *Idxs,
1130 unsigned NumIdx) {
Dan Gohman12fce772008-05-15 19:50:34 +00001131 const PointerType *PTy = dyn_cast<PointerType>(Ptr);
1132 if (!PTy) return 0; // Type isn't a pointer type!
1133 const Type *Agg = PTy->getElementType();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001134
Chris Lattner6090a422009-03-09 04:46:40 +00001135 // Handle the special case of the empty set index set, which is always valid.
Dan Gohman12fce772008-05-15 19:50:34 +00001136 if (NumIdx == 0)
1137 return Agg;
Chris Lattner6090a422009-03-09 04:46:40 +00001138
1139 // If there is at least one index, the top level type must be sized, otherwise
Chris Lattner4a488152009-03-09 04:56:22 +00001140 // it cannot be 'stepped over'. We explicitly allow abstract types (those
1141 // that contain opaque types) under the assumption that it will be resolved to
1142 // a sane type later.
1143 if (!Agg->isSized() && !Agg->isAbstract())
Chris Lattner6090a422009-03-09 04:46:40 +00001144 return 0;
Misha Brukmanb1c93172005-04-21 23:48:37 +00001145
Dan Gohman1ecaf452008-05-31 00:58:22 +00001146 unsigned CurIdx = 1;
1147 for (; CurIdx != NumIdx; ++CurIdx) {
1148 const CompositeType *CT = dyn_cast<CompositeType>(Agg);
Duncan Sands19d0b472010-02-16 11:11:14 +00001149 if (!CT || CT->isPointerTy()) return 0;
Matthijs Kooijman04468622008-07-29 08:46:11 +00001150 IndexTy Index = Idxs[CurIdx];
Dan Gohman1ecaf452008-05-31 00:58:22 +00001151 if (!CT->indexValid(Index)) return 0;
1152 Agg = CT->getTypeAtIndex(Index);
1153
1154 // If the new type forwards to another type, then it is in the middle
1155 // of being refined to another type (and hence, may have dropped all
1156 // references to what it was using before). So, use the new forwarded
1157 // type.
1158 if (const Type *Ty = Agg->getForwardedType())
1159 Agg = Ty;
1160 }
1161 return CurIdx == NumIdx ? Agg : 0;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001162}
1163
Matthijs Kooijman04468622008-07-29 08:46:11 +00001164const Type* GetElementPtrInst::getIndexedType(const Type *Ptr,
1165 Value* const *Idxs,
1166 unsigned NumIdx) {
1167 return getIndexedTypeInternal(Ptr, Idxs, NumIdx);
1168}
1169
1170const Type* GetElementPtrInst::getIndexedType(const Type *Ptr,
Jay Foad1d4a8fe2011-01-14 08:07:43 +00001171 Constant* const *Idxs,
1172 unsigned NumIdx) {
1173 return getIndexedTypeInternal(Ptr, Idxs, NumIdx);
1174}
1175
1176const Type* GetElementPtrInst::getIndexedType(const Type *Ptr,
Matthijs Kooijman04468622008-07-29 08:46:11 +00001177 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) {
Chris Lattner35315d02011-02-06 21:44:57 +00001820 cast<PossiblyExactOperator>(this)->setIsExact(b);
Dan Gohman1b849082009-09-07 23:54:19 +00001821}
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 {
Chris Lattner35315d02011-02-06 21:44:57 +00001832 return cast<PossiblyExactOperator>(this)->isExact();
Nick Lewycky28a5f252009-09-27 21:33:04 +00001833}
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) {
Duncan Sands7f646562011-05-18 09:21:57 +00002085 assert(castIsValid(op, S, Ty) && "Invalid cast!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002086 // Construct and return the appropriate CastInst subclass
2087 switch (op) {
2088 case Trunc: return new TruncInst (S, Ty, Name, InsertBefore);
2089 case ZExt: return new ZExtInst (S, Ty, Name, InsertBefore);
2090 case SExt: return new SExtInst (S, Ty, Name, InsertBefore);
2091 case FPTrunc: return new FPTruncInst (S, Ty, Name, InsertBefore);
2092 case FPExt: return new FPExtInst (S, Ty, Name, InsertBefore);
2093 case UIToFP: return new UIToFPInst (S, Ty, Name, InsertBefore);
2094 case SIToFP: return new SIToFPInst (S, Ty, Name, InsertBefore);
2095 case FPToUI: return new FPToUIInst (S, Ty, Name, InsertBefore);
2096 case FPToSI: return new FPToSIInst (S, Ty, Name, InsertBefore);
2097 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertBefore);
2098 case IntToPtr: return new IntToPtrInst (S, Ty, Name, InsertBefore);
2099 case BitCast: return new BitCastInst (S, Ty, Name, InsertBefore);
2100 default:
2101 assert(!"Invalid opcode provided");
2102 }
2103 return 0;
2104}
2105
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002106CastInst *CastInst::Create(Instruction::CastOps op, Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002107 const Twine &Name, BasicBlock *InsertAtEnd) {
Duncan Sands7f646562011-05-18 09:21:57 +00002108 assert(castIsValid(op, S, Ty) && "Invalid cast!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002109 // Construct and return the appropriate CastInst subclass
2110 switch (op) {
2111 case Trunc: return new TruncInst (S, Ty, Name, InsertAtEnd);
2112 case ZExt: return new ZExtInst (S, Ty, Name, InsertAtEnd);
2113 case SExt: return new SExtInst (S, Ty, Name, InsertAtEnd);
2114 case FPTrunc: return new FPTruncInst (S, Ty, Name, InsertAtEnd);
2115 case FPExt: return new FPExtInst (S, Ty, Name, InsertAtEnd);
2116 case UIToFP: return new UIToFPInst (S, Ty, Name, InsertAtEnd);
2117 case SIToFP: return new SIToFPInst (S, Ty, Name, InsertAtEnd);
2118 case FPToUI: return new FPToUIInst (S, Ty, Name, InsertAtEnd);
2119 case FPToSI: return new FPToSIInst (S, Ty, Name, InsertAtEnd);
2120 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertAtEnd);
2121 case IntToPtr: return new IntToPtrInst (S, Ty, Name, InsertAtEnd);
2122 case BitCast: return new BitCastInst (S, Ty, Name, InsertAtEnd);
2123 default:
2124 assert(!"Invalid opcode provided");
2125 }
2126 return 0;
2127}
2128
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002129CastInst *CastInst::CreateZExtOrBitCast(Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002130 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002131 Instruction *InsertBefore) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002132 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002133 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
2134 return Create(Instruction::ZExt, S, Ty, Name, InsertBefore);
Reid Spencer5c140882006-12-04 20:17:56 +00002135}
2136
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002137CastInst *CastInst::CreateZExtOrBitCast(Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002138 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002139 BasicBlock *InsertAtEnd) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002140 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002141 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
2142 return Create(Instruction::ZExt, S, Ty, Name, InsertAtEnd);
Reid Spencer5c140882006-12-04 20:17:56 +00002143}
2144
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002145CastInst *CastInst::CreateSExtOrBitCast(Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002146 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002147 Instruction *InsertBefore) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002148 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002149 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
2150 return Create(Instruction::SExt, S, Ty, Name, InsertBefore);
Reid Spencer5c140882006-12-04 20:17:56 +00002151}
2152
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002153CastInst *CastInst::CreateSExtOrBitCast(Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002154 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002155 BasicBlock *InsertAtEnd) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002156 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002157 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
2158 return Create(Instruction::SExt, S, Ty, Name, InsertAtEnd);
Reid Spencer5c140882006-12-04 20:17:56 +00002159}
2160
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002161CastInst *CastInst::CreateTruncOrBitCast(Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002162 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002163 Instruction *InsertBefore) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002164 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002165 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
2166 return Create(Instruction::Trunc, S, Ty, Name, InsertBefore);
Reid Spencer5c140882006-12-04 20:17:56 +00002167}
2168
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002169CastInst *CastInst::CreateTruncOrBitCast(Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002170 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002171 BasicBlock *InsertAtEnd) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002172 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002173 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
2174 return Create(Instruction::Trunc, S, Ty, Name, InsertAtEnd);
Reid Spencer5c140882006-12-04 20:17:56 +00002175}
2176
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002177CastInst *CastInst::CreatePointerCast(Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002178 const Twine &Name,
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002179 BasicBlock *InsertAtEnd) {
Duncan Sands19d0b472010-02-16 11:11:14 +00002180 assert(S->getType()->isPointerTy() && "Invalid cast");
2181 assert((Ty->isIntegerTy() || Ty->isPointerTy()) &&
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002182 "Invalid cast");
2183
Duncan Sands9dff9be2010-02-15 16:12:20 +00002184 if (Ty->isIntegerTy())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002185 return Create(Instruction::PtrToInt, S, Ty, Name, InsertAtEnd);
2186 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002187}
2188
2189/// @brief Create a BitCast or a PtrToInt cast instruction
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002190CastInst *CastInst::CreatePointerCast(Value *S, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002191 const Twine &Name,
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002192 Instruction *InsertBefore) {
Duncan Sands19d0b472010-02-16 11:11:14 +00002193 assert(S->getType()->isPointerTy() && "Invalid cast");
2194 assert((Ty->isIntegerTy() || Ty->isPointerTy()) &&
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002195 "Invalid cast");
2196
Duncan Sands9dff9be2010-02-15 16:12:20 +00002197 if (Ty->isIntegerTy())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002198 return Create(Instruction::PtrToInt, S, Ty, Name, InsertBefore);
2199 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002200}
2201
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002202CastInst *CastInst::CreateIntegerCast(Value *C, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002203 bool isSigned, const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002204 Instruction *InsertBefore) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002205 assert(C->getType()->isIntOrIntVectorTy() && Ty->isIntOrIntVectorTy() &&
Chris Lattner5370ae72010-01-10 20:21:42 +00002206 "Invalid integer cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002207 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2208 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002209 Instruction::CastOps opcode =
2210 (SrcBits == DstBits ? Instruction::BitCast :
2211 (SrcBits > DstBits ? Instruction::Trunc :
2212 (isSigned ? Instruction::SExt : Instruction::ZExt)));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002213 return Create(opcode, C, Ty, Name, InsertBefore);
Reid Spencer7e933472006-12-12 00:49:44 +00002214}
2215
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002216CastInst *CastInst::CreateIntegerCast(Value *C, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002217 bool isSigned, const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002218 BasicBlock *InsertAtEnd) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002219 assert(C->getType()->isIntOrIntVectorTy() && Ty->isIntOrIntVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00002220 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002221 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2222 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002223 Instruction::CastOps opcode =
2224 (SrcBits == DstBits ? Instruction::BitCast :
2225 (SrcBits > DstBits ? Instruction::Trunc :
2226 (isSigned ? Instruction::SExt : Instruction::ZExt)));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002227 return Create(opcode, C, Ty, Name, InsertAtEnd);
Reid Spencer7e933472006-12-12 00:49:44 +00002228}
2229
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002230CastInst *CastInst::CreateFPCast(Value *C, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002231 const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002232 Instruction *InsertBefore) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002233 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer7e933472006-12-12 00:49:44 +00002234 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002235 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2236 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002237 Instruction::CastOps opcode =
2238 (SrcBits == DstBits ? Instruction::BitCast :
2239 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002240 return Create(opcode, C, Ty, Name, InsertBefore);
Reid Spencer7e933472006-12-12 00:49:44 +00002241}
2242
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002243CastInst *CastInst::CreateFPCast(Value *C, const Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002244 const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002245 BasicBlock *InsertAtEnd) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002246 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer7e933472006-12-12 00:49:44 +00002247 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002248 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2249 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002250 Instruction::CastOps opcode =
2251 (SrcBits == DstBits ? Instruction::BitCast :
2252 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002253 return Create(opcode, C, Ty, Name, InsertAtEnd);
Reid Spencer7e933472006-12-12 00:49:44 +00002254}
2255
Duncan Sands55e50902008-01-06 10:12:28 +00002256// Check whether it is valid to call getCastOpcode for these types.
2257// This routine must be kept in sync with getCastOpcode.
2258bool CastInst::isCastable(const Type *SrcTy, const Type *DestTy) {
2259 if (!SrcTy->isFirstClassType() || !DestTy->isFirstClassType())
2260 return false;
2261
2262 if (SrcTy == DestTy)
2263 return true;
2264
Duncan Sandsa8514532011-05-18 07:13:41 +00002265 if (const VectorType *SrcVecTy = dyn_cast<VectorType>(SrcTy))
2266 if (const VectorType *DestVecTy = dyn_cast<VectorType>(DestTy))
2267 if (SrcVecTy->getNumElements() == DestVecTy->getNumElements()) {
2268 // An element by element cast. Valid if casting the elements is valid.
2269 SrcTy = SrcVecTy->getElementType();
2270 DestTy = DestVecTy->getElementType();
2271 }
2272
Duncan Sands55e50902008-01-06 10:12:28 +00002273 // Get the bit sizes, we'll need these
Duncan Sands7f646562011-05-18 09:21:57 +00002274 unsigned SrcBits = SrcTy->getPrimitiveSizeInBits(); // 0 for ptr
2275 unsigned DestBits = DestTy->getPrimitiveSizeInBits(); // 0 for ptr
Duncan Sands55e50902008-01-06 10:12:28 +00002276
2277 // Run through the possibilities ...
Duncan Sands27bd0df2011-05-18 10:59:25 +00002278 if (DestTy->isIntegerTy()) { // Casting to integral
2279 if (SrcTy->isIntegerTy()) { // Casting from integral
Duncan Sands55e50902008-01-06 10:12:28 +00002280 return true;
Duncan Sands27bd0df2011-05-18 10:59:25 +00002281 } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt
Duncan Sands55e50902008-01-06 10:12:28 +00002282 return true;
Duncan Sands27bd0df2011-05-18 10:59:25 +00002283 } else if (SrcTy->isVectorTy()) { // Casting from vector
2284 return DestBits == SrcBits;
Gabor Greif697e94c2008-05-15 10:04:30 +00002285 } else { // Casting from something else
Duncan Sands19d0b472010-02-16 11:11:14 +00002286 return SrcTy->isPointerTy();
Duncan Sands55e50902008-01-06 10:12:28 +00002287 }
Duncan Sands27bd0df2011-05-18 10:59:25 +00002288 } else if (DestTy->isFloatingPointTy()) { // Casting to floating pt
2289 if (SrcTy->isIntegerTy()) { // Casting from integral
Duncan Sands55e50902008-01-06 10:12:28 +00002290 return true;
Duncan Sands27bd0df2011-05-18 10:59:25 +00002291 } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt
Duncan Sands55e50902008-01-06 10:12:28 +00002292 return true;
Duncan Sands27bd0df2011-05-18 10:59:25 +00002293 } else if (SrcTy->isVectorTy()) { // Casting from vector
2294 return DestBits == SrcBits;
Gabor Greif697e94c2008-05-15 10:04:30 +00002295 } else { // Casting from something else
Duncan Sands55e50902008-01-06 10:12:28 +00002296 return false;
2297 }
Duncan Sands27bd0df2011-05-18 10:59:25 +00002298 } else if (DestTy->isVectorTy()) { // Casting to vector
2299 return DestBits == SrcBits;
Duncan Sands19d0b472010-02-16 11:11:14 +00002300 } else if (DestTy->isPointerTy()) { // Casting to pointer
Duncan Sands27bd0df2011-05-18 10:59:25 +00002301 if (SrcTy->isPointerTy()) { // Casting from pointer
Duncan Sands55e50902008-01-06 10:12:28 +00002302 return true;
Duncan Sands27bd0df2011-05-18 10:59:25 +00002303 } else if (SrcTy->isIntegerTy()) { // Casting from integral
Duncan Sands55e50902008-01-06 10:12:28 +00002304 return true;
Duncan Sands27bd0df2011-05-18 10:59:25 +00002305 } else { // Casting from something else
Duncan Sands55e50902008-01-06 10:12:28 +00002306 return false;
2307 }
Duncan Sands2d3cdd62011-04-01 03:34:54 +00002308 } else if (DestTy->isX86_MMXTy()) {
Duncan Sands27bd0df2011-05-18 10:59:25 +00002309 if (SrcTy->isVectorTy()) {
2310 return DestBits == SrcBits; // 64-bit vector to MMX
Duncan Sands2d3cdd62011-04-01 03:34:54 +00002311 } else {
2312 return false;
2313 }
Duncan Sands27bd0df2011-05-18 10:59:25 +00002314 } else { // Casting to something else
Duncan Sands55e50902008-01-06 10:12:28 +00002315 return false;
2316 }
2317}
2318
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002319// Provide a way to get a "cast" where the cast opcode is inferred from the
2320// types and size of the operand. This, basically, is a parallel of the
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002321// logic in the castIsValid function below. This axiom should hold:
2322// castIsValid( getCastOpcode(Val, Ty), Val, Ty)
2323// should not assert in castIsValid. In other words, this produces a "correct"
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002324// casting opcode for the arguments passed to it.
Duncan Sands55e50902008-01-06 10:12:28 +00002325// This routine must be kept in sync with isCastable.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002326Instruction::CastOps
Reid Spencerc4dacf22006-12-04 02:43:42 +00002327CastInst::getCastOpcode(
2328 const Value *Src, bool SrcIsSigned, const Type *DestTy, bool DestIsSigned) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002329 const Type *SrcTy = Src->getType();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002330
Duncan Sands55e50902008-01-06 10:12:28 +00002331 assert(SrcTy->isFirstClassType() && DestTy->isFirstClassType() &&
2332 "Only first class types are castable!");
2333
Duncan Sandsa8514532011-05-18 07:13:41 +00002334 if (SrcTy == DestTy)
2335 return BitCast;
2336
2337 if (const VectorType *SrcVecTy = dyn_cast<VectorType>(SrcTy))
2338 if (const VectorType *DestVecTy = dyn_cast<VectorType>(DestTy))
2339 if (SrcVecTy->getNumElements() == DestVecTy->getNumElements()) {
2340 // An element by element cast. Find the appropriate opcode based on the
2341 // element types.
2342 SrcTy = SrcVecTy->getElementType();
2343 DestTy = DestVecTy->getElementType();
2344 }
2345
2346 // Get the bit sizes, we'll need these
Duncan Sands7f646562011-05-18 09:21:57 +00002347 unsigned SrcBits = SrcTy->getPrimitiveSizeInBits(); // 0 for ptr
2348 unsigned DestBits = DestTy->getPrimitiveSizeInBits(); // 0 for ptr
Duncan Sandsa8514532011-05-18 07:13:41 +00002349
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002350 // Run through the possibilities ...
Duncan Sands9dff9be2010-02-15 16:12:20 +00002351 if (DestTy->isIntegerTy()) { // Casting to integral
2352 if (SrcTy->isIntegerTy()) { // Casting from integral
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002353 if (DestBits < SrcBits)
2354 return Trunc; // int -> smaller int
2355 else if (DestBits > SrcBits) { // its an extension
Reid Spencerc4dacf22006-12-04 02:43:42 +00002356 if (SrcIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002357 return SExt; // signed -> SEXT
2358 else
2359 return ZExt; // unsigned -> ZEXT
2360 } else {
2361 return BitCast; // Same size, No-op cast
2362 }
Duncan Sands9dff9be2010-02-15 16:12:20 +00002363 } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt
Reid Spencerc4dacf22006-12-04 02:43:42 +00002364 if (DestIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002365 return FPToSI; // FP -> sint
2366 else
2367 return FPToUI; // FP -> uint
Duncan Sands27bd0df2011-05-18 10:59:25 +00002368 } else if (SrcTy->isVectorTy()) {
2369 assert(DestBits == SrcBits &&
2370 "Casting vector to integer of different width");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002371 return BitCast; // Same size, no-op cast
2372 } else {
Duncan Sands19d0b472010-02-16 11:11:14 +00002373 assert(SrcTy->isPointerTy() &&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002374 "Casting from a value that is not first-class type");
2375 return PtrToInt; // ptr -> int
2376 }
Duncan Sands9dff9be2010-02-15 16:12:20 +00002377 } else if (DestTy->isFloatingPointTy()) { // Casting to floating pt
2378 if (SrcTy->isIntegerTy()) { // Casting from integral
Reid Spencerc4dacf22006-12-04 02:43:42 +00002379 if (SrcIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002380 return SIToFP; // sint -> FP
2381 else
2382 return UIToFP; // uint -> FP
Duncan Sands9dff9be2010-02-15 16:12:20 +00002383 } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002384 if (DestBits < SrcBits) {
2385 return FPTrunc; // FP -> smaller FP
2386 } else if (DestBits > SrcBits) {
2387 return FPExt; // FP -> larger FP
2388 } else {
2389 return BitCast; // same size, no-op cast
2390 }
Duncan Sands27bd0df2011-05-18 10:59:25 +00002391 } else if (SrcTy->isVectorTy()) {
2392 assert(DestBits == SrcBits &&
Dan Gohmanfead7972007-05-11 21:43:24 +00002393 "Casting vector to floating point of different width");
Devang Patele9432132008-11-05 01:37:40 +00002394 return BitCast; // same size, no-op cast
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002395 } else {
Torok Edwinfbcc6632009-07-14 16:55:14 +00002396 llvm_unreachable("Casting pointer or non-first class to float");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002397 }
Duncan Sands27bd0df2011-05-18 10:59:25 +00002398 } else if (DestTy->isVectorTy()) {
2399 assert(DestBits == SrcBits &&
2400 "Illegal cast to vector (wrong type or size)");
2401 return BitCast;
Duncan Sands19d0b472010-02-16 11:11:14 +00002402 } else if (DestTy->isPointerTy()) {
2403 if (SrcTy->isPointerTy()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002404 return BitCast; // ptr -> ptr
Duncan Sands9dff9be2010-02-15 16:12:20 +00002405 } else if (SrcTy->isIntegerTy()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002406 return IntToPtr; // int -> ptr
2407 } else {
2408 assert(!"Casting pointer to other than pointer or int");
2409 }
Dale Johannesendd224d22010-09-30 23:57:10 +00002410 } else if (DestTy->isX86_MMXTy()) {
Duncan Sands27bd0df2011-05-18 10:59:25 +00002411 if (SrcTy->isVectorTy()) {
2412 assert(DestBits == SrcBits && "Casting vector of wrong width to X86_MMX");
Dale Johannesendd224d22010-09-30 23:57:10 +00002413 return BitCast; // 64-bit vector to MMX
2414 } else {
2415 assert(!"Illegal cast to X86_MMX");
2416 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002417 } else {
2418 assert(!"Casting to type that is not first-class");
2419 }
2420
2421 // If we fall through to here we probably hit an assertion cast above
2422 // and assertions are not turned on. Anything we return is an error, so
2423 // BitCast is as good a choice as any.
2424 return BitCast;
2425}
2426
2427//===----------------------------------------------------------------------===//
2428// CastInst SubClass Constructors
2429//===----------------------------------------------------------------------===//
2430
2431/// Check that the construction parameters for a CastInst are correct. This
2432/// could be broken out into the separate constructors but it is useful to have
2433/// it in one place and to eliminate the redundant code for getting the sizes
2434/// of the types involved.
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002435bool
2436CastInst::castIsValid(Instruction::CastOps op, Value *S, const Type *DstTy) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002437
2438 // Check for type sanity on the arguments
2439 const Type *SrcTy = S->getType();
Chris Lattner37bc78a2010-01-26 21:51:43 +00002440 if (!SrcTy->isFirstClassType() || !DstTy->isFirstClassType() ||
2441 SrcTy->isAggregateType() || DstTy->isAggregateType())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002442 return false;
2443
2444 // Get the size of the types in bits, we'll need this later
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002445 unsigned SrcBitSize = SrcTy->getScalarSizeInBits();
2446 unsigned DstBitSize = DstTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002447
Duncan Sands7f646562011-05-18 09:21:57 +00002448 // If these are vector types, get the lengths of the vectors (using zero for
2449 // scalar types means that checking that vector lengths match also checks that
2450 // scalars are not being converted to vectors or vectors to scalars).
2451 unsigned SrcLength = SrcTy->isVectorTy() ?
2452 cast<VectorType>(SrcTy)->getNumElements() : 0;
2453 unsigned DstLength = DstTy->isVectorTy() ?
2454 cast<VectorType>(DstTy)->getNumElements() : 0;
2455
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002456 // Switch on the opcode provided
2457 switch (op) {
2458 default: return false; // This is an input error
2459 case Instruction::Trunc:
Duncan Sands7f646562011-05-18 09:21:57 +00002460 return SrcTy->isIntOrIntVectorTy() && DstTy->isIntOrIntVectorTy() &&
2461 SrcLength == DstLength && SrcBitSize > DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002462 case Instruction::ZExt:
Duncan Sands7f646562011-05-18 09:21:57 +00002463 return SrcTy->isIntOrIntVectorTy() && DstTy->isIntOrIntVectorTy() &&
2464 SrcLength == DstLength && SrcBitSize < DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002465 case Instruction::SExt:
Duncan Sands7f646562011-05-18 09:21:57 +00002466 return SrcTy->isIntOrIntVectorTy() && DstTy->isIntOrIntVectorTy() &&
2467 SrcLength == DstLength && SrcBitSize < DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002468 case Instruction::FPTrunc:
Duncan Sands7f646562011-05-18 09:21:57 +00002469 return SrcTy->isFPOrFPVectorTy() && DstTy->isFPOrFPVectorTy() &&
2470 SrcLength == DstLength && SrcBitSize > DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002471 case Instruction::FPExt:
Duncan Sands7f646562011-05-18 09:21:57 +00002472 return SrcTy->isFPOrFPVectorTy() && DstTy->isFPOrFPVectorTy() &&
2473 SrcLength == DstLength && SrcBitSize < DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002474 case Instruction::UIToFP:
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002475 case Instruction::SIToFP:
Duncan Sands7f646562011-05-18 09:21:57 +00002476 return SrcTy->isIntOrIntVectorTy() && DstTy->isFPOrFPVectorTy() &&
2477 SrcLength == DstLength;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002478 case Instruction::FPToUI:
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002479 case Instruction::FPToSI:
Duncan Sands7f646562011-05-18 09:21:57 +00002480 return SrcTy->isFPOrFPVectorTy() && DstTy->isIntOrIntVectorTy() &&
2481 SrcLength == DstLength;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002482 case Instruction::PtrToInt:
Duncan Sands19d0b472010-02-16 11:11:14 +00002483 return SrcTy->isPointerTy() && DstTy->isIntegerTy();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002484 case Instruction::IntToPtr:
Duncan Sands19d0b472010-02-16 11:11:14 +00002485 return SrcTy->isIntegerTy() && DstTy->isPointerTy();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002486 case Instruction::BitCast:
2487 // BitCast implies a no-op cast of type only. No bits change.
2488 // However, you can't cast pointers to anything but pointers.
Duncan Sands19d0b472010-02-16 11:11:14 +00002489 if (SrcTy->isPointerTy() != DstTy->isPointerTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002490 return false;
2491
Duncan Sands55e50902008-01-06 10:12:28 +00002492 // Now we know we're not dealing with a pointer/non-pointer mismatch. In all
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002493 // these cases, the cast is okay if the source and destination bit widths
2494 // are identical.
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002495 return SrcTy->getPrimitiveSizeInBits() == DstTy->getPrimitiveSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002496 }
2497}
2498
2499TruncInst::TruncInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002500 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002501) : CastInst(Ty, Trunc, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002502 assert(castIsValid(getOpcode(), S, Ty) && "Illegal Trunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002503}
2504
2505TruncInst::TruncInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002506 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002507) : CastInst(Ty, Trunc, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002508 assert(castIsValid(getOpcode(), S, Ty) && "Illegal Trunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002509}
2510
2511ZExtInst::ZExtInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002512 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002513) : CastInst(Ty, ZExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002514 assert(castIsValid(getOpcode(), S, Ty) && "Illegal ZExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002515}
2516
2517ZExtInst::ZExtInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002518 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002519) : CastInst(Ty, ZExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002520 assert(castIsValid(getOpcode(), S, Ty) && "Illegal ZExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002521}
2522SExtInst::SExtInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002523 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002524) : CastInst(Ty, SExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002525 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002526}
2527
Jeff Cohencc08c832006-12-02 02:22:01 +00002528SExtInst::SExtInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002529 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002530) : CastInst(Ty, SExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002531 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002532}
2533
2534FPTruncInst::FPTruncInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002535 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002536) : CastInst(Ty, FPTrunc, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002537 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPTrunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002538}
2539
2540FPTruncInst::FPTruncInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002541 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002542) : CastInst(Ty, FPTrunc, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002543 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPTrunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002544}
2545
2546FPExtInst::FPExtInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002547 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002548) : CastInst(Ty, FPExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002549 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002550}
2551
2552FPExtInst::FPExtInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002553 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002554) : CastInst(Ty, FPExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002555 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002556}
2557
2558UIToFPInst::UIToFPInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002559 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002560) : CastInst(Ty, UIToFP, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002561 assert(castIsValid(getOpcode(), S, Ty) && "Illegal UIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002562}
2563
2564UIToFPInst::UIToFPInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002565 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002566) : CastInst(Ty, UIToFP, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002567 assert(castIsValid(getOpcode(), S, Ty) && "Illegal UIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002568}
2569
2570SIToFPInst::SIToFPInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002571 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002572) : CastInst(Ty, SIToFP, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002573 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002574}
2575
2576SIToFPInst::SIToFPInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002577 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002578) : CastInst(Ty, SIToFP, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002579 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002580}
2581
2582FPToUIInst::FPToUIInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002583 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002584) : CastInst(Ty, FPToUI, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002585 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToUI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002586}
2587
2588FPToUIInst::FPToUIInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002589 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002590) : CastInst(Ty, FPToUI, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002591 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToUI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002592}
2593
2594FPToSIInst::FPToSIInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002595 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002596) : CastInst(Ty, FPToSI, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002597 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToSI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002598}
2599
2600FPToSIInst::FPToSIInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002601 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002602) : CastInst(Ty, FPToSI, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002603 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToSI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002604}
2605
2606PtrToIntInst::PtrToIntInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002607 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002608) : CastInst(Ty, PtrToInt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002609 assert(castIsValid(getOpcode(), S, Ty) && "Illegal PtrToInt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002610}
2611
2612PtrToIntInst::PtrToIntInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002613 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002614) : CastInst(Ty, PtrToInt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002615 assert(castIsValid(getOpcode(), S, Ty) && "Illegal PtrToInt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002616}
2617
2618IntToPtrInst::IntToPtrInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002619 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002620) : CastInst(Ty, IntToPtr, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002621 assert(castIsValid(getOpcode(), S, Ty) && "Illegal IntToPtr");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002622}
2623
2624IntToPtrInst::IntToPtrInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002625 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002626) : CastInst(Ty, IntToPtr, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002627 assert(castIsValid(getOpcode(), S, Ty) && "Illegal IntToPtr");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002628}
2629
2630BitCastInst::BitCastInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002631 Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002632) : CastInst(Ty, BitCast, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002633 assert(castIsValid(getOpcode(), S, Ty) && "Illegal BitCast");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002634}
2635
2636BitCastInst::BitCastInst(
Daniel Dunbar4975db62009-07-25 04:41:11 +00002637 Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002638) : CastInst(Ty, BitCast, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002639 assert(castIsValid(getOpcode(), S, Ty) && "Illegal BitCast");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002640}
Chris Lattnerf16dc002006-09-17 19:29:56 +00002641
2642//===----------------------------------------------------------------------===//
Reid Spencerd9436b62006-11-20 01:22:35 +00002643// CmpInst Classes
2644//===----------------------------------------------------------------------===//
2645
Chris Lattneraec33da2010-01-22 06:25:37 +00002646void CmpInst::Anchor() const {}
2647
Nate Begemand2195702008-05-12 19:01:56 +00002648CmpInst::CmpInst(const Type *ty, OtherOps op, unsigned short predicate,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002649 Value *LHS, Value *RHS, const Twine &Name,
Nate Begemand2195702008-05-12 19:01:56 +00002650 Instruction *InsertBefore)
Nate Begeman66d0a0e2008-05-12 20:11:05 +00002651 : Instruction(ty, op,
Gabor Greiff6caff662008-05-10 08:32:32 +00002652 OperandTraits<CmpInst>::op_begin(this),
2653 OperandTraits<CmpInst>::operands(this),
2654 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00002655 Op<0>() = LHS;
2656 Op<1>() = RHS;
Chris Lattnerb9c86512009-12-29 02:14:09 +00002657 setPredicate((Predicate)predicate);
Reid Spencer871a9ea2007-04-11 13:04:48 +00002658 setName(Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002659}
Gabor Greiff6caff662008-05-10 08:32:32 +00002660
Nate Begemand2195702008-05-12 19:01:56 +00002661CmpInst::CmpInst(const Type *ty, OtherOps op, unsigned short predicate,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002662 Value *LHS, Value *RHS, const Twine &Name,
Nate Begemand2195702008-05-12 19:01:56 +00002663 BasicBlock *InsertAtEnd)
Nate Begeman66d0a0e2008-05-12 20:11:05 +00002664 : Instruction(ty, op,
Gabor Greiff6caff662008-05-10 08:32:32 +00002665 OperandTraits<CmpInst>::op_begin(this),
2666 OperandTraits<CmpInst>::operands(this),
2667 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00002668 Op<0>() = LHS;
2669 Op<1>() = RHS;
Chris Lattnerb9c86512009-12-29 02:14:09 +00002670 setPredicate((Predicate)predicate);
Reid Spencer871a9ea2007-04-11 13:04:48 +00002671 setName(Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002672}
2673
2674CmpInst *
Dan Gohmanad1f0a12009-08-25 23:17:54 +00002675CmpInst::Create(OtherOps Op, unsigned short predicate,
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002676 Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002677 const Twine &Name, Instruction *InsertBefore) {
Reid Spencerd9436b62006-11-20 01:22:35 +00002678 if (Op == Instruction::ICmp) {
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002679 if (InsertBefore)
2680 return new ICmpInst(InsertBefore, CmpInst::Predicate(predicate),
2681 S1, S2, Name);
2682 else
Dan Gohmanad1f0a12009-08-25 23:17:54 +00002683 return new ICmpInst(CmpInst::Predicate(predicate),
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002684 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002685 }
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002686
2687 if (InsertBefore)
2688 return new FCmpInst(InsertBefore, CmpInst::Predicate(predicate),
2689 S1, S2, Name);
2690 else
Dan Gohmanad1f0a12009-08-25 23:17:54 +00002691 return new FCmpInst(CmpInst::Predicate(predicate),
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002692 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002693}
2694
2695CmpInst *
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002696CmpInst::Create(OtherOps Op, unsigned short predicate, Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002697 const Twine &Name, BasicBlock *InsertAtEnd) {
Reid Spencerd9436b62006-11-20 01:22:35 +00002698 if (Op == Instruction::ICmp) {
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002699 return new ICmpInst(*InsertAtEnd, CmpInst::Predicate(predicate),
2700 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002701 }
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002702 return new FCmpInst(*InsertAtEnd, CmpInst::Predicate(predicate),
2703 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002704}
2705
2706void CmpInst::swapOperands() {
2707 if (ICmpInst *IC = dyn_cast<ICmpInst>(this))
2708 IC->swapOperands();
2709 else
2710 cast<FCmpInst>(this)->swapOperands();
2711}
2712
Duncan Sands95c4ecc2011-01-04 12:52:29 +00002713bool CmpInst::isCommutative() const {
2714 if (const ICmpInst *IC = dyn_cast<ICmpInst>(this))
Reid Spencerd9436b62006-11-20 01:22:35 +00002715 return IC->isCommutative();
2716 return cast<FCmpInst>(this)->isCommutative();
2717}
2718
Duncan Sands95c4ecc2011-01-04 12:52:29 +00002719bool CmpInst::isEquality() const {
2720 if (const ICmpInst *IC = dyn_cast<ICmpInst>(this))
Reid Spencerd9436b62006-11-20 01:22:35 +00002721 return IC->isEquality();
2722 return cast<FCmpInst>(this)->isEquality();
2723}
2724
2725
Dan Gohman4e724382008-05-31 02:47:54 +00002726CmpInst::Predicate CmpInst::getInversePredicate(Predicate pred) {
Reid Spencerd9436b62006-11-20 01:22:35 +00002727 switch (pred) {
Dan Gohman4e724382008-05-31 02:47:54 +00002728 default: assert(!"Unknown cmp predicate!");
Reid Spencerd9436b62006-11-20 01:22:35 +00002729 case ICMP_EQ: return ICMP_NE;
2730 case ICMP_NE: return ICMP_EQ;
2731 case ICMP_UGT: return ICMP_ULE;
2732 case ICMP_ULT: return ICMP_UGE;
2733 case ICMP_UGE: return ICMP_ULT;
2734 case ICMP_ULE: return ICMP_UGT;
2735 case ICMP_SGT: return ICMP_SLE;
2736 case ICMP_SLT: return ICMP_SGE;
2737 case ICMP_SGE: return ICMP_SLT;
2738 case ICMP_SLE: return ICMP_SGT;
Reid Spencerd9436b62006-11-20 01:22:35 +00002739
Dan Gohman4e724382008-05-31 02:47:54 +00002740 case FCMP_OEQ: return FCMP_UNE;
2741 case FCMP_ONE: return FCMP_UEQ;
2742 case FCMP_OGT: return FCMP_ULE;
2743 case FCMP_OLT: return FCMP_UGE;
2744 case FCMP_OGE: return FCMP_ULT;
2745 case FCMP_OLE: return FCMP_UGT;
2746 case FCMP_UEQ: return FCMP_ONE;
2747 case FCMP_UNE: return FCMP_OEQ;
2748 case FCMP_UGT: return FCMP_OLE;
2749 case FCMP_ULT: return FCMP_OGE;
2750 case FCMP_UGE: return FCMP_OLT;
2751 case FCMP_ULE: return FCMP_OGT;
2752 case FCMP_ORD: return FCMP_UNO;
2753 case FCMP_UNO: return FCMP_ORD;
2754 case FCMP_TRUE: return FCMP_FALSE;
2755 case FCMP_FALSE: return FCMP_TRUE;
Reid Spencerd9436b62006-11-20 01:22:35 +00002756 }
2757}
2758
Reid Spencer266e42b2006-12-23 06:05:41 +00002759ICmpInst::Predicate ICmpInst::getSignedPredicate(Predicate pred) {
2760 switch (pred) {
2761 default: assert(! "Unknown icmp predicate!");
2762 case ICMP_EQ: case ICMP_NE:
2763 case ICMP_SGT: case ICMP_SLT: case ICMP_SGE: case ICMP_SLE:
2764 return pred;
2765 case ICMP_UGT: return ICMP_SGT;
2766 case ICMP_ULT: return ICMP_SLT;
2767 case ICMP_UGE: return ICMP_SGE;
2768 case ICMP_ULE: return ICMP_SLE;
2769 }
2770}
2771
Nick Lewycky8ea81e82008-01-28 03:48:02 +00002772ICmpInst::Predicate ICmpInst::getUnsignedPredicate(Predicate pred) {
2773 switch (pred) {
2774 default: assert(! "Unknown icmp predicate!");
2775 case ICMP_EQ: case ICMP_NE:
2776 case ICMP_UGT: case ICMP_ULT: case ICMP_UGE: case ICMP_ULE:
2777 return pred;
2778 case ICMP_SGT: return ICMP_UGT;
2779 case ICMP_SLT: return ICMP_ULT;
2780 case ICMP_SGE: return ICMP_UGE;
2781 case ICMP_SLE: return ICMP_ULE;
2782 }
2783}
2784
Reid Spencer0286bc12007-02-28 22:00:54 +00002785/// Initialize a set of values that all satisfy the condition with C.
2786///
2787ConstantRange
2788ICmpInst::makeConstantRange(Predicate pred, const APInt &C) {
2789 APInt Lower(C);
2790 APInt Upper(C);
2791 uint32_t BitWidth = C.getBitWidth();
2792 switch (pred) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00002793 default: llvm_unreachable("Invalid ICmp opcode to ConstantRange ctor!");
Reid Spencer0286bc12007-02-28 22:00:54 +00002794 case ICmpInst::ICMP_EQ: Upper++; break;
2795 case ICmpInst::ICMP_NE: Lower++; break;
Dan Gohmand86e2952010-01-26 16:04:20 +00002796 case ICmpInst::ICMP_ULT:
2797 Lower = APInt::getMinValue(BitWidth);
2798 // Check for an empty-set condition.
2799 if (Lower == Upper)
2800 return ConstantRange(BitWidth, /*isFullSet=*/false);
2801 break;
2802 case ICmpInst::ICMP_SLT:
2803 Lower = APInt::getSignedMinValue(BitWidth);
2804 // Check for an empty-set condition.
2805 if (Lower == Upper)
2806 return ConstantRange(BitWidth, /*isFullSet=*/false);
2807 break;
Reid Spencer0286bc12007-02-28 22:00:54 +00002808 case ICmpInst::ICMP_UGT:
2809 Lower++; Upper = APInt::getMinValue(BitWidth); // Min = Next(Max)
Dan Gohmand86e2952010-01-26 16:04:20 +00002810 // Check for an empty-set condition.
2811 if (Lower == Upper)
2812 return ConstantRange(BitWidth, /*isFullSet=*/false);
Reid Spencer0286bc12007-02-28 22:00:54 +00002813 break;
2814 case ICmpInst::ICMP_SGT:
2815 Lower++; Upper = APInt::getSignedMinValue(BitWidth); // Min = Next(Max)
Dan Gohmand86e2952010-01-26 16:04:20 +00002816 // Check for an empty-set condition.
2817 if (Lower == Upper)
2818 return ConstantRange(BitWidth, /*isFullSet=*/false);
Reid Spencer0286bc12007-02-28 22:00:54 +00002819 break;
2820 case ICmpInst::ICMP_ULE:
2821 Lower = APInt::getMinValue(BitWidth); Upper++;
Dan Gohmand86e2952010-01-26 16:04:20 +00002822 // Check for a full-set condition.
2823 if (Lower == Upper)
2824 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer0286bc12007-02-28 22:00:54 +00002825 break;
2826 case ICmpInst::ICMP_SLE:
2827 Lower = APInt::getSignedMinValue(BitWidth); Upper++;
Dan Gohmand86e2952010-01-26 16:04:20 +00002828 // Check for a full-set condition.
2829 if (Lower == Upper)
2830 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer0286bc12007-02-28 22:00:54 +00002831 break;
2832 case ICmpInst::ICMP_UGE:
2833 Upper = APInt::getMinValue(BitWidth); // Min = Next(Max)
Dan Gohmand86e2952010-01-26 16:04:20 +00002834 // Check for a full-set condition.
2835 if (Lower == Upper)
2836 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer0286bc12007-02-28 22:00:54 +00002837 break;
2838 case ICmpInst::ICMP_SGE:
2839 Upper = APInt::getSignedMinValue(BitWidth); // Min = Next(Max)
Dan Gohmand86e2952010-01-26 16:04:20 +00002840 // Check for a full-set condition.
2841 if (Lower == Upper)
2842 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer0286bc12007-02-28 22:00:54 +00002843 break;
2844 }
2845 return ConstantRange(Lower, Upper);
2846}
2847
Dan Gohman4e724382008-05-31 02:47:54 +00002848CmpInst::Predicate CmpInst::getSwappedPredicate(Predicate pred) {
Reid Spencerd9436b62006-11-20 01:22:35 +00002849 switch (pred) {
Dan Gohman4e724382008-05-31 02:47:54 +00002850 default: assert(!"Unknown cmp predicate!");
2851 case ICMP_EQ: case ICMP_NE:
2852 return pred;
2853 case ICMP_SGT: return ICMP_SLT;
2854 case ICMP_SLT: return ICMP_SGT;
2855 case ICMP_SGE: return ICMP_SLE;
2856 case ICMP_SLE: return ICMP_SGE;
2857 case ICMP_UGT: return ICMP_ULT;
2858 case ICMP_ULT: return ICMP_UGT;
2859 case ICMP_UGE: return ICMP_ULE;
2860 case ICMP_ULE: return ICMP_UGE;
2861
Reid Spencerd9436b62006-11-20 01:22:35 +00002862 case FCMP_FALSE: case FCMP_TRUE:
2863 case FCMP_OEQ: case FCMP_ONE:
2864 case FCMP_UEQ: case FCMP_UNE:
2865 case FCMP_ORD: case FCMP_UNO:
2866 return pred;
2867 case FCMP_OGT: return FCMP_OLT;
2868 case FCMP_OLT: return FCMP_OGT;
2869 case FCMP_OGE: return FCMP_OLE;
2870 case FCMP_OLE: return FCMP_OGE;
2871 case FCMP_UGT: return FCMP_ULT;
2872 case FCMP_ULT: return FCMP_UGT;
2873 case FCMP_UGE: return FCMP_ULE;
2874 case FCMP_ULE: return FCMP_UGE;
2875 }
2876}
2877
Reid Spencer266e42b2006-12-23 06:05:41 +00002878bool CmpInst::isUnsigned(unsigned short predicate) {
2879 switch (predicate) {
2880 default: return false;
2881 case ICmpInst::ICMP_ULT: case ICmpInst::ICMP_ULE: case ICmpInst::ICMP_UGT:
2882 case ICmpInst::ICMP_UGE: return true;
2883 }
2884}
2885
Nick Lewycky7494b3b2009-10-25 03:50:03 +00002886bool CmpInst::isSigned(unsigned short predicate) {
Reid Spencer266e42b2006-12-23 06:05:41 +00002887 switch (predicate) {
2888 default: return false;
2889 case ICmpInst::ICMP_SLT: case ICmpInst::ICMP_SLE: case ICmpInst::ICMP_SGT:
2890 case ICmpInst::ICMP_SGE: return true;
2891 }
2892}
2893
2894bool CmpInst::isOrdered(unsigned short predicate) {
2895 switch (predicate) {
2896 default: return false;
2897 case FCmpInst::FCMP_OEQ: case FCmpInst::FCMP_ONE: case FCmpInst::FCMP_OGT:
2898 case FCmpInst::FCMP_OLT: case FCmpInst::FCMP_OGE: case FCmpInst::FCMP_OLE:
2899 case FCmpInst::FCMP_ORD: return true;
2900 }
2901}
2902
2903bool CmpInst::isUnordered(unsigned short predicate) {
2904 switch (predicate) {
2905 default: return false;
2906 case FCmpInst::FCMP_UEQ: case FCmpInst::FCMP_UNE: case FCmpInst::FCMP_UGT:
2907 case FCmpInst::FCMP_ULT: case FCmpInst::FCMP_UGE: case FCmpInst::FCMP_ULE:
2908 case FCmpInst::FCMP_UNO: return true;
2909 }
2910}
2911
Nick Lewycky7494b3b2009-10-25 03:50:03 +00002912bool CmpInst::isTrueWhenEqual(unsigned short predicate) {
2913 switch(predicate) {
2914 default: return false;
2915 case ICMP_EQ: case ICMP_UGE: case ICMP_ULE: case ICMP_SGE: case ICMP_SLE:
2916 case FCMP_TRUE: case FCMP_UEQ: case FCMP_UGE: case FCMP_ULE: return true;
2917 }
2918}
2919
2920bool CmpInst::isFalseWhenEqual(unsigned short predicate) {
2921 switch(predicate) {
2922 case ICMP_NE: case ICMP_UGT: case ICMP_ULT: case ICMP_SGT: case ICMP_SLT:
2923 case FCMP_FALSE: case FCMP_ONE: case FCMP_OGT: case FCMP_OLT: return true;
2924 default: return false;
2925 }
2926}
2927
2928
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002929//===----------------------------------------------------------------------===//
2930// SwitchInst Implementation
2931//===----------------------------------------------------------------------===//
2932
Chris Lattnerbaf00152010-11-17 05:41:46 +00002933void SwitchInst::init(Value *Value, BasicBlock *Default, unsigned NumReserved) {
2934 assert(Value && Default && NumReserved);
2935 ReservedSpace = NumReserved;
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002936 NumOperands = 2;
Gabor Greiff6caff662008-05-10 08:32:32 +00002937 OperandList = allocHungoffUses(ReservedSpace);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002938
Gabor Greif2d3024d2008-05-26 21:33:52 +00002939 OperandList[0] = Value;
2940 OperandList[1] = Default;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002941}
2942
Chris Lattner2195fc42007-02-24 00:55:48 +00002943/// SwitchInst ctor - Create a new switch instruction, specifying a value to
2944/// switch on and a default destination. The number of additional cases can
2945/// be specified here to make memory allocation more efficient. This
2946/// constructor can also autoinsert before another instruction.
2947SwitchInst::SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
2948 Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +00002949 : TerminatorInst(Type::getVoidTy(Value->getContext()), Instruction::Switch,
2950 0, 0, InsertBefore) {
Chris Lattnerbaf00152010-11-17 05:41:46 +00002951 init(Value, Default, 2+NumCases*2);
Chris Lattner2195fc42007-02-24 00:55:48 +00002952}
2953
2954/// SwitchInst ctor - Create a new switch instruction, specifying a value to
2955/// switch on and a default destination. The number of additional cases can
2956/// be specified here to make memory allocation more efficient. This
2957/// constructor also autoinserts at the end of the specified BasicBlock.
2958SwitchInst::SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
2959 BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +00002960 : TerminatorInst(Type::getVoidTy(Value->getContext()), Instruction::Switch,
2961 0, 0, InsertAtEnd) {
Chris Lattnerbaf00152010-11-17 05:41:46 +00002962 init(Value, Default, 2+NumCases*2);
Chris Lattner2195fc42007-02-24 00:55:48 +00002963}
2964
Misha Brukmanb1c93172005-04-21 23:48:37 +00002965SwitchInst::SwitchInst(const SwitchInst &SI)
Chris Lattnerbaf00152010-11-17 05:41:46 +00002966 : TerminatorInst(SI.getType(), Instruction::Switch, 0, 0) {
2967 init(SI.getCondition(), SI.getDefaultDest(), SI.getNumOperands());
2968 NumOperands = SI.getNumOperands();
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002969 Use *OL = OperandList, *InOL = SI.OperandList;
Chris Lattnerbaf00152010-11-17 05:41:46 +00002970 for (unsigned i = 2, E = SI.getNumOperands(); i != E; i += 2) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00002971 OL[i] = InOL[i];
2972 OL[i+1] = InOL[i+1];
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002973 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00002974 SubclassOptionalData = SI.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002975}
2976
Gordon Henriksen14a55692007-12-10 02:14:30 +00002977SwitchInst::~SwitchInst() {
Jay Foadbbb91f22011-01-16 15:30:52 +00002978 dropHungoffUses();
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002979}
2980
2981
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002982/// addCase - Add an entry to the switch instruction...
2983///
Chris Lattner47ac1872005-02-24 05:32:09 +00002984void SwitchInst::addCase(ConstantInt *OnVal, BasicBlock *Dest) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002985 unsigned OpNo = NumOperands;
2986 if (OpNo+2 > ReservedSpace)
Jay Foade98f29d2011-04-01 08:00:58 +00002987 growOperands(); // Get more space!
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002988 // Initialize some new operands.
Chris Lattnerf711f8d2005-01-29 01:05:12 +00002989 assert(OpNo+1 < ReservedSpace && "Growing didn't work!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002990 NumOperands = OpNo+2;
Gabor Greif2d3024d2008-05-26 21:33:52 +00002991 OperandList[OpNo] = OnVal;
2992 OperandList[OpNo+1] = Dest;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002993}
2994
2995/// removeCase - This method removes the specified successor from the switch
2996/// instruction. Note that this cannot be used to remove the default
2997/// destination (successor #0).
2998///
2999void SwitchInst::removeCase(unsigned idx) {
3000 assert(idx != 0 && "Cannot remove the default case!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003001 assert(idx*2 < getNumOperands() && "Successor index out of range!!!");
3002
3003 unsigned NumOps = getNumOperands();
3004 Use *OL = OperandList;
3005
Jay Foad14277722011-02-01 09:22:34 +00003006 // Overwrite this case with the end of the list.
3007 if ((idx + 1) * 2 != NumOps) {
3008 OL[idx * 2] = OL[NumOps - 2];
3009 OL[idx * 2 + 1] = OL[NumOps - 1];
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003010 }
3011
3012 // Nuke the last value.
3013 OL[NumOps-2].set(0);
3014 OL[NumOps-2+1].set(0);
3015 NumOperands = NumOps-2;
3016}
3017
Jay Foade98f29d2011-04-01 08:00:58 +00003018/// growOperands - grow operands - This grows the operand list in response
3019/// to a push_back style of operation. This grows the number of ops by 3 times.
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003020///
Jay Foade98f29d2011-04-01 08:00:58 +00003021void SwitchInst::growOperands() {
Gabor Greiff6caff662008-05-10 08:32:32 +00003022 unsigned e = getNumOperands();
Jay Foade98f29d2011-04-01 08:00:58 +00003023 unsigned NumOps = e*3;
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003024
3025 ReservedSpace = NumOps;
Gabor Greiff6caff662008-05-10 08:32:32 +00003026 Use *NewOps = allocHungoffUses(NumOps);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003027 Use *OldOps = OperandList;
Gabor Greiff6caff662008-05-10 08:32:32 +00003028 for (unsigned i = 0; i != e; ++i) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00003029 NewOps[i] = OldOps[i];
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003030 }
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003031 OperandList = NewOps;
Jay Foadbbb91f22011-01-16 15:30:52 +00003032 Use::zap(OldOps, OldOps + e, true);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003033}
3034
3035
3036BasicBlock *SwitchInst::getSuccessorV(unsigned idx) const {
3037 return getSuccessor(idx);
3038}
3039unsigned SwitchInst::getNumSuccessorsV() const {
3040 return getNumSuccessors();
3041}
3042void SwitchInst::setSuccessorV(unsigned idx, BasicBlock *B) {
3043 setSuccessor(idx, B);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003044}
Chris Lattnerf22be932004-10-15 23:52:53 +00003045
Chris Lattner3ed871f2009-10-27 19:13:16 +00003046//===----------------------------------------------------------------------===//
Jay Foadbbb91f22011-01-16 15:30:52 +00003047// IndirectBrInst Implementation
Chris Lattner3ed871f2009-10-27 19:13:16 +00003048//===----------------------------------------------------------------------===//
3049
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003050void IndirectBrInst::init(Value *Address, unsigned NumDests) {
Duncan Sands19d0b472010-02-16 11:11:14 +00003051 assert(Address && Address->getType()->isPointerTy() &&
Chris Lattner6747b4c2009-10-29 05:53:32 +00003052 "Address of indirectbr must be a pointer");
Chris Lattner3ed871f2009-10-27 19:13:16 +00003053 ReservedSpace = 1+NumDests;
3054 NumOperands = 1;
3055 OperandList = allocHungoffUses(ReservedSpace);
3056
3057 OperandList[0] = Address;
3058}
3059
3060
Jay Foade98f29d2011-04-01 08:00:58 +00003061/// growOperands - grow operands - This grows the operand list in response
3062/// to a push_back style of operation. This grows the number of ops by 2 times.
Chris Lattner3ed871f2009-10-27 19:13:16 +00003063///
Jay Foade98f29d2011-04-01 08:00:58 +00003064void IndirectBrInst::growOperands() {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003065 unsigned e = getNumOperands();
Jay Foade98f29d2011-04-01 08:00:58 +00003066 unsigned NumOps = e*2;
Chris Lattner3ed871f2009-10-27 19:13:16 +00003067
3068 ReservedSpace = NumOps;
3069 Use *NewOps = allocHungoffUses(NumOps);
3070 Use *OldOps = OperandList;
3071 for (unsigned i = 0; i != e; ++i)
3072 NewOps[i] = OldOps[i];
3073 OperandList = NewOps;
Jay Foadbbb91f22011-01-16 15:30:52 +00003074 Use::zap(OldOps, OldOps + e, true);
Chris Lattner3ed871f2009-10-27 19:13:16 +00003075}
3076
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003077IndirectBrInst::IndirectBrInst(Value *Address, unsigned NumCases,
3078 Instruction *InsertBefore)
3079: TerminatorInst(Type::getVoidTy(Address->getContext()),Instruction::IndirectBr,
Chris Lattner3ed871f2009-10-27 19:13:16 +00003080 0, 0, InsertBefore) {
3081 init(Address, NumCases);
3082}
3083
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003084IndirectBrInst::IndirectBrInst(Value *Address, unsigned NumCases,
3085 BasicBlock *InsertAtEnd)
3086: TerminatorInst(Type::getVoidTy(Address->getContext()),Instruction::IndirectBr,
Chris Lattner3ed871f2009-10-27 19:13:16 +00003087 0, 0, InsertAtEnd) {
3088 init(Address, NumCases);
3089}
3090
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003091IndirectBrInst::IndirectBrInst(const IndirectBrInst &IBI)
3092 : TerminatorInst(Type::getVoidTy(IBI.getContext()), Instruction::IndirectBr,
Chris Lattner3ed871f2009-10-27 19:13:16 +00003093 allocHungoffUses(IBI.getNumOperands()),
3094 IBI.getNumOperands()) {
3095 Use *OL = OperandList, *InOL = IBI.OperandList;
3096 for (unsigned i = 0, E = IBI.getNumOperands(); i != E; ++i)
3097 OL[i] = InOL[i];
3098 SubclassOptionalData = IBI.SubclassOptionalData;
3099}
3100
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003101IndirectBrInst::~IndirectBrInst() {
Jay Foadbbb91f22011-01-16 15:30:52 +00003102 dropHungoffUses();
Chris Lattner3ed871f2009-10-27 19:13:16 +00003103}
3104
3105/// addDestination - Add a destination.
3106///
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003107void IndirectBrInst::addDestination(BasicBlock *DestBB) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003108 unsigned OpNo = NumOperands;
3109 if (OpNo+1 > ReservedSpace)
Jay Foade98f29d2011-04-01 08:00:58 +00003110 growOperands(); // Get more space!
Chris Lattner3ed871f2009-10-27 19:13:16 +00003111 // Initialize some new operands.
3112 assert(OpNo < ReservedSpace && "Growing didn't work!");
3113 NumOperands = OpNo+1;
3114 OperandList[OpNo] = DestBB;
3115}
3116
3117/// removeDestination - This method removes the specified successor from the
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003118/// indirectbr instruction.
3119void IndirectBrInst::removeDestination(unsigned idx) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003120 assert(idx < getNumOperands()-1 && "Successor index out of range!");
3121
3122 unsigned NumOps = getNumOperands();
3123 Use *OL = OperandList;
3124
3125 // Replace this value with the last one.
3126 OL[idx+1] = OL[NumOps-1];
3127
3128 // Nuke the last value.
3129 OL[NumOps-1].set(0);
3130 NumOperands = NumOps-1;
3131}
3132
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003133BasicBlock *IndirectBrInst::getSuccessorV(unsigned idx) const {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003134 return getSuccessor(idx);
3135}
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003136unsigned IndirectBrInst::getNumSuccessorsV() const {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003137 return getNumSuccessors();
3138}
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003139void IndirectBrInst::setSuccessorV(unsigned idx, BasicBlock *B) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003140 setSuccessor(idx, B);
3141}
3142
3143//===----------------------------------------------------------------------===//
Devang Patel11cf3f42009-10-27 22:16:29 +00003144// clone_impl() implementations
Chris Lattner3ed871f2009-10-27 19:13:16 +00003145//===----------------------------------------------------------------------===//
3146
Chris Lattnerf22be932004-10-15 23:52:53 +00003147// Define these methods here so vtables don't get emitted into every translation
3148// unit that uses these classes.
3149
Devang Patel11cf3f42009-10-27 22:16:29 +00003150GetElementPtrInst *GetElementPtrInst::clone_impl() const {
3151 return new (getNumOperands()) GetElementPtrInst(*this);
Chris Lattnerf22be932004-10-15 23:52:53 +00003152}
3153
Devang Patel11cf3f42009-10-27 22:16:29 +00003154BinaryOperator *BinaryOperator::clone_impl() const {
3155 return Create(getOpcode(), Op<0>(), Op<1>());
Chris Lattnerf22be932004-10-15 23:52:53 +00003156}
3157
Devang Patel11cf3f42009-10-27 22:16:29 +00003158FCmpInst* FCmpInst::clone_impl() const {
3159 return new FCmpInst(getPredicate(), Op<0>(), Op<1>());
Reid Spencerd9436b62006-11-20 01:22:35 +00003160}
3161
Devang Patel11cf3f42009-10-27 22:16:29 +00003162ICmpInst* ICmpInst::clone_impl() const {
3163 return new ICmpInst(getPredicate(), Op<0>(), Op<1>());
Dan Gohman0752bff2008-05-23 00:36:11 +00003164}
3165
Devang Patel11cf3f42009-10-27 22:16:29 +00003166ExtractValueInst *ExtractValueInst::clone_impl() const {
3167 return new ExtractValueInst(*this);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003168}
3169
Devang Patel11cf3f42009-10-27 22:16:29 +00003170InsertValueInst *InsertValueInst::clone_impl() const {
3171 return new InsertValueInst(*this);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003172}
3173
Devang Patel11cf3f42009-10-27 22:16:29 +00003174AllocaInst *AllocaInst::clone_impl() const {
3175 return new AllocaInst(getAllocatedType(),
3176 (Value*)getOperand(0),
3177 getAlignment());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003178}
3179
Devang Patel11cf3f42009-10-27 22:16:29 +00003180LoadInst *LoadInst::clone_impl() const {
3181 return new LoadInst(getOperand(0),
3182 Twine(), isVolatile(),
3183 getAlignment());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003184}
3185
Devang Patel11cf3f42009-10-27 22:16:29 +00003186StoreInst *StoreInst::clone_impl() const {
3187 return new StoreInst(getOperand(0), getOperand(1),
3188 isVolatile(), getAlignment());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003189}
3190
Devang Patel11cf3f42009-10-27 22:16:29 +00003191TruncInst *TruncInst::clone_impl() const {
3192 return new TruncInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003193}
3194
Devang Patel11cf3f42009-10-27 22:16:29 +00003195ZExtInst *ZExtInst::clone_impl() const {
3196 return new ZExtInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003197}
3198
Devang Patel11cf3f42009-10-27 22:16:29 +00003199SExtInst *SExtInst::clone_impl() const {
3200 return new SExtInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003201}
3202
Devang Patel11cf3f42009-10-27 22:16:29 +00003203FPTruncInst *FPTruncInst::clone_impl() const {
3204 return new FPTruncInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003205}
3206
Devang Patel11cf3f42009-10-27 22:16:29 +00003207FPExtInst *FPExtInst::clone_impl() const {
3208 return new FPExtInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003209}
3210
Devang Patel11cf3f42009-10-27 22:16:29 +00003211UIToFPInst *UIToFPInst::clone_impl() const {
3212 return new UIToFPInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003213}
3214
Devang Patel11cf3f42009-10-27 22:16:29 +00003215SIToFPInst *SIToFPInst::clone_impl() const {
3216 return new SIToFPInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003217}
3218
Devang Patel11cf3f42009-10-27 22:16:29 +00003219FPToUIInst *FPToUIInst::clone_impl() const {
3220 return new FPToUIInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003221}
3222
Devang Patel11cf3f42009-10-27 22:16:29 +00003223FPToSIInst *FPToSIInst::clone_impl() const {
3224 return new FPToSIInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003225}
3226
Devang Patel11cf3f42009-10-27 22:16:29 +00003227PtrToIntInst *PtrToIntInst::clone_impl() const {
3228 return new PtrToIntInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003229}
3230
Devang Patel11cf3f42009-10-27 22:16:29 +00003231IntToPtrInst *IntToPtrInst::clone_impl() const {
3232 return new IntToPtrInst(getOperand(0), getType());
Gabor Greif697e94c2008-05-15 10:04:30 +00003233}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003234
Devang Patel11cf3f42009-10-27 22:16:29 +00003235BitCastInst *BitCastInst::clone_impl() const {
3236 return new BitCastInst(getOperand(0), getType());
Gabor Greif697e94c2008-05-15 10:04:30 +00003237}
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003238
Devang Patel11cf3f42009-10-27 22:16:29 +00003239CallInst *CallInst::clone_impl() const {
3240 return new(getNumOperands()) CallInst(*this);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003241}
3242
Devang Patel11cf3f42009-10-27 22:16:29 +00003243SelectInst *SelectInst::clone_impl() const {
3244 return SelectInst::Create(getOperand(0), getOperand(1), getOperand(2));
Chris Lattnerbbe0a422006-04-08 01:18:18 +00003245}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003246
Devang Patel11cf3f42009-10-27 22:16:29 +00003247VAArgInst *VAArgInst::clone_impl() const {
3248 return new VAArgInst(getOperand(0), getType());
Chris Lattnerbbe0a422006-04-08 01:18:18 +00003249}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003250
Devang Patel11cf3f42009-10-27 22:16:29 +00003251ExtractElementInst *ExtractElementInst::clone_impl() const {
3252 return ExtractElementInst::Create(getOperand(0), getOperand(1));
Chris Lattnerbbe0a422006-04-08 01:18:18 +00003253}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003254
Devang Patel11cf3f42009-10-27 22:16:29 +00003255InsertElementInst *InsertElementInst::clone_impl() const {
3256 return InsertElementInst::Create(getOperand(0),
3257 getOperand(1),
3258 getOperand(2));
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003259}
3260
Devang Patel11cf3f42009-10-27 22:16:29 +00003261ShuffleVectorInst *ShuffleVectorInst::clone_impl() const {
3262 return new ShuffleVectorInst(getOperand(0),
3263 getOperand(1),
3264 getOperand(2));
Gabor Greif697e94c2008-05-15 10:04:30 +00003265}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003266
Devang Patel11cf3f42009-10-27 22:16:29 +00003267PHINode *PHINode::clone_impl() const {
3268 return new PHINode(*this);
3269}
3270
3271ReturnInst *ReturnInst::clone_impl() const {
3272 return new(getNumOperands()) ReturnInst(*this);
3273}
3274
3275BranchInst *BranchInst::clone_impl() const {
Jay Foadd81f3c92011-01-07 20:29:02 +00003276 return new(getNumOperands()) BranchInst(*this);
Gabor Greif697e94c2008-05-15 10:04:30 +00003277}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003278
Devang Patel11cf3f42009-10-27 22:16:29 +00003279SwitchInst *SwitchInst::clone_impl() const {
3280 return new SwitchInst(*this);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003281}
3282
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003283IndirectBrInst *IndirectBrInst::clone_impl() const {
3284 return new IndirectBrInst(*this);
Chris Lattner3ed871f2009-10-27 19:13:16 +00003285}
3286
3287
Devang Patel11cf3f42009-10-27 22:16:29 +00003288InvokeInst *InvokeInst::clone_impl() const {
3289 return new(getNumOperands()) InvokeInst(*this);
Gabor Greif697e94c2008-05-15 10:04:30 +00003290}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003291
Devang Patel11cf3f42009-10-27 22:16:29 +00003292UnwindInst *UnwindInst::clone_impl() const {
Nick Lewycky42fb7452009-09-27 07:38:41 +00003293 LLVMContext &Context = getContext();
Devang Patel11cf3f42009-10-27 22:16:29 +00003294 return new UnwindInst(Context);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003295}
3296
Devang Patel11cf3f42009-10-27 22:16:29 +00003297UnreachableInst *UnreachableInst::clone_impl() const {
Nick Lewycky42fb7452009-09-27 07:38:41 +00003298 LLVMContext &Context = getContext();
Devang Patel11cf3f42009-10-27 22:16:29 +00003299 return new UnreachableInst(Context);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003300}