blob: 968a565197c7a20e60ba010a3f0372f786789897 [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
Chris Lattner229907c2011-07-18 04:54:35 +000065 if (VectorType *VT = dyn_cast<VectorType>(Op0->getType())) {
Chris Lattner88107952008-12-29 00:12:50 +000066 // 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";
Chris Lattner229907c2011-07-18 04:54:35 +000069 VectorType *ET = dyn_cast<VectorType>(Op1->getType());
Chris Lattner88107952008-12-29 00:12:50 +000070 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 Foad61ea0e42011-06-23 09:09:15 +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 Foad61ea0e42011-06-23 09:09:15 +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 Foad61ea0e42011-06-23 09:09:15 +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 Foad61ea0e42011-06-23 09:09:15 +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 Foad61ea0e42011-06-23 09:09:15 +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 Foad61ea0e42011-06-23 09:09:15 +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 Foad61ea0e42011-06-23 09:09:15 +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 Foad61ea0e42011-06-23 09:09:15 +0000143 unsigned NumOps = e + e / 2;
144 if (NumOps < 2) NumOps = 2; // 2 op PHI nodes are VERY common.
145
146 Use *OldOps = op_begin();
147 BasicBlock **OldBlocks = block_begin();
Jay Foade03c05c2011-06-20 14:38:01 +0000148
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000149 ReservedSpace = NumOps;
Jay Foad61ea0e42011-06-23 09:09:15 +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
Bill Wendling6c923bb2011-07-27 20:18:04 +0000169//===----------------------------------------------------------------------===//
170// LandingPadInst Implementation
171//===----------------------------------------------------------------------===//
172
173void LandingPadInst::init(Value *PersFn, unsigned NumReservedValues,
174 const Twine &NameStr) {
175 ReservedSpace = NumReservedValues;
176 NumOperands = 1;
177 OperandList = allocHungoffUses(ReservedSpace);
178 OperandList[0] = PersFn;
179 setName(NameStr);
180}
181
182LandingPadInst::LandingPadInst(const LandingPadInst &LP)
183 : Instruction(LP.getType(), Instruction::LandingPad,
184 allocHungoffUses(LP.getNumOperands()), LP.getNumOperands()),
185 ReservedSpace(LP.getNumOperands()) {
186 Use *OL = OperandList, *InOL = LP.OperandList;
187 for (unsigned I = 0, E = ReservedSpace; I != E; ++I)
188 OL[I] = InOL[I];
189
190 for (SmallVectorImpl<ClauseType>::const_iterator
191 I = LP.ClauseIdxs.begin(), E = LP.ClauseIdxs.end(); I != E; ++I)
192 ClauseIdxs.push_back(*I);
193
194 IsCleanup = LP.IsCleanup;
195 SubclassOptionalData = LP.SubclassOptionalData;
196}
197
198LandingPadInst::~LandingPadInst() {
199 dropHungoffUses();
200}
201
202/// growOperands - grow operands - This grows the operand list in response to a
203/// push_back style of operation. This grows the number of ops by 2 times.
204void LandingPadInst::growOperands() {
205 unsigned e = getNumOperands();
206 ReservedSpace = e * 2;
207
208 Use *NewOps = allocHungoffUses(ReservedSpace);
209 Use *OldOps = OperandList;
210 for (unsigned i = 0; i != e; ++i)
211 NewOps[i] = OldOps[i];
212
213 OperandList = NewOps;
214 Use::zap(OldOps, OldOps + e, true);
215}
216
Bill Wendlinga8f04e32011-07-28 02:15:52 +0000217void LandingPadInst::reserveClauses(unsigned Size) {
218 unsigned e = getNumOperands() + Size;
219 if (ReservedSpace >= e) return;
220 ReservedSpace = e;
221
222 Use *NewOps = allocHungoffUses(ReservedSpace);
223 Use *OldOps = OperandList;
224 for (unsigned i = 0; i != e; ++i)
225 NewOps[i] = OldOps[i];
226
227 OperandList = NewOps;
228 Use::zap(OldOps, OldOps + e, true);
229}
230
Bill Wendling4c934882011-07-28 02:27:12 +0000231void LandingPadInst::addClause(ClauseType CT, Constant *ClauseVal) {
Bill Wendling6c923bb2011-07-27 20:18:04 +0000232 unsigned OpNo = getNumOperands();
233 if (OpNo + 1 > ReservedSpace)
234 growOperands();
235 assert(OpNo < ReservedSpace && "Growing didn't work!");
236 ClauseIdxs.push_back(CT);
237 ++NumOperands;
Bill Wendling4c934882011-07-28 02:27:12 +0000238 OperandList[OpNo] = (Value*)ClauseVal;
Bill Wendling6c923bb2011-07-27 20:18:04 +0000239}
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000240
241//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000242// CallInst Implementation
243//===----------------------------------------------------------------------===//
244
Gordon Henriksen14a55692007-12-10 02:14:30 +0000245CallInst::~CallInst() {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000246}
247
Jay Foad5bd375a2011-07-15 08:37:34 +0000248void CallInst::init(Value *Func, ArrayRef<Value *> Args, const Twine &NameStr) {
249 assert(NumOperands == Args.size() + 1 && "NumOperands not set up?");
Gabor Greif6d673952010-07-16 09:38:02 +0000250 Op<-1>() = Func;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000251
Jay Foad5bd375a2011-07-15 08:37:34 +0000252#ifndef NDEBUG
Chris Lattner229907c2011-07-18 04:54:35 +0000253 FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000254 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
255
Jay Foad5bd375a2011-07-15 08:37:34 +0000256 assert((Args.size() == FTy->getNumParams() ||
257 (FTy->isVarArg() && Args.size() > FTy->getNumParams())) &&
Chris Lattner667a0562006-05-03 00:48:22 +0000258 "Calling a function with bad signature!");
Jay Foad5bd375a2011-07-15 08:37:34 +0000259
260 for (unsigned i = 0; i != Args.size(); ++i)
Chris Lattner667a0562006-05-03 00:48:22 +0000261 assert((i >= FTy->getNumParams() ||
Jay Foad5bd375a2011-07-15 08:37:34 +0000262 FTy->getParamType(i) == Args[i]->getType()) &&
Chris Lattner667a0562006-05-03 00:48:22 +0000263 "Calling a function with a bad signature!");
Jay Foad5bd375a2011-07-15 08:37:34 +0000264#endif
265
266 std::copy(Args.begin(), Args.end(), op_begin());
267 setName(NameStr);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000268}
269
Jay Foad5bd375a2011-07-15 08:37:34 +0000270void CallInst::init(Value *Func, const Twine &NameStr) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000271 assert(NumOperands == 1 && "NumOperands not set up?");
Gabor Greif6d673952010-07-16 09:38:02 +0000272 Op<-1>() = Func;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000273
Jay Foad5bd375a2011-07-15 08:37:34 +0000274#ifndef NDEBUG
Chris Lattner229907c2011-07-18 04:54:35 +0000275 FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000276 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
277
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000278 assert(FTy->getNumParams() == 0 && "Calling a function with bad signature");
Jay Foad5bd375a2011-07-15 08:37:34 +0000279#endif
280
281 setName(NameStr);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000282}
283
Daniel Dunbar4975db62009-07-25 04:41:11 +0000284CallInst::CallInst(Value *Func, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000285 Instruction *InsertBefore)
286 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
287 ->getElementType())->getReturnType(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000288 Instruction::Call,
289 OperandTraits<CallInst>::op_end(this) - 1,
290 1, InsertBefore) {
Jay Foad5bd375a2011-07-15 08:37:34 +0000291 init(Func, Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000292}
293
Daniel Dunbar4975db62009-07-25 04:41:11 +0000294CallInst::CallInst(Value *Func, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000295 BasicBlock *InsertAtEnd)
296 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
297 ->getElementType())->getReturnType(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000298 Instruction::Call,
299 OperandTraits<CallInst>::op_end(this) - 1,
300 1, InsertAtEnd) {
Jay Foad5bd375a2011-07-15 08:37:34 +0000301 init(Func, Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000302}
303
Misha Brukmanb1c93172005-04-21 23:48:37 +0000304CallInst::CallInst(const CallInst &CI)
Gabor Greiff6caff662008-05-10 08:32:32 +0000305 : Instruction(CI.getType(), Instruction::Call,
306 OperandTraits<CallInst>::op_end(this) - CI.getNumOperands(),
Chris Lattner8a923e72008-03-12 17:45:29 +0000307 CI.getNumOperands()) {
Devang Patel4c758ea2008-09-25 21:00:45 +0000308 setAttributes(CI.getAttributes());
Chris Lattnerb9c86512009-12-29 02:14:09 +0000309 setTailCall(CI.isTailCall());
310 setCallingConv(CI.getCallingConv());
311
Jay Foad5bd375a2011-07-15 08:37:34 +0000312 std::copy(CI.op_begin(), CI.op_end(), op_begin());
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000313 SubclassOptionalData = CI.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000314}
315
Devang Patel4c758ea2008-09-25 21:00:45 +0000316void CallInst::addAttribute(unsigned i, Attributes attr) {
317 AttrListPtr PAL = getAttributes();
Eric Christopher901b1a72008-05-16 20:39:43 +0000318 PAL = PAL.addAttr(i, attr);
Devang Patel4c758ea2008-09-25 21:00:45 +0000319 setAttributes(PAL);
Eric Christopher901b1a72008-05-16 20:39:43 +0000320}
321
Devang Patel4c758ea2008-09-25 21:00:45 +0000322void CallInst::removeAttribute(unsigned i, Attributes attr) {
323 AttrListPtr PAL = getAttributes();
Duncan Sands78c88722008-07-08 08:38:44 +0000324 PAL = PAL.removeAttr(i, attr);
Devang Patel4c758ea2008-09-25 21:00:45 +0000325 setAttributes(PAL);
Duncan Sands78c88722008-07-08 08:38:44 +0000326}
327
Devang Patelba3fa6c2008-09-23 23:03:40 +0000328bool CallInst::paramHasAttr(unsigned i, Attributes attr) const {
Devang Patel4c758ea2008-09-25 21:00:45 +0000329 if (AttributeList.paramHasAttr(i, attr))
Duncan Sands5208d1a2007-11-28 17:07:01 +0000330 return true;
Duncan Sands8dfcd592007-11-29 08:30:15 +0000331 if (const Function *F = getCalledFunction())
Dale Johannesen89268bc2008-02-19 21:38:47 +0000332 return F->paramHasAttr(i, attr);
Duncan Sands8dfcd592007-11-29 08:30:15 +0000333 return false;
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000334}
335
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000336/// IsConstantOne - Return true only if val is constant int 1
337static bool IsConstantOne(Value *val) {
338 assert(val && "IsConstantOne does not work with NULL val");
339 return isa<ConstantInt>(val) && cast<ConstantInt>(val)->isOne();
340}
341
Nick Lewyckybb1410e2009-10-17 23:52:26 +0000342static Instruction *createMalloc(Instruction *InsertBefore,
Chris Lattner229907c2011-07-18 04:54:35 +0000343 BasicBlock *InsertAtEnd, Type *IntPtrTy,
344 Type *AllocTy, Value *AllocSize,
Victor Hernandezf3db9152009-11-07 00:16:28 +0000345 Value *ArraySize, Function *MallocF,
346 const Twine &Name) {
Benjamin Kramer4bf4e862009-09-10 11:31:39 +0000347 assert(((!InsertBefore && InsertAtEnd) || (InsertBefore && !InsertAtEnd)) &&
Victor Hernandez788eaab2009-09-18 19:20:02 +0000348 "createMalloc needs either InsertBefore or InsertAtEnd");
349
350 // malloc(type) becomes:
351 // bitcast (i8* malloc(typeSize)) to type*
352 // malloc(type, arraySize) becomes:
353 // bitcast (i8 *malloc(typeSize*arraySize)) to type*
Victor Hernandezf3db9152009-11-07 00:16:28 +0000354 if (!ArraySize)
355 ArraySize = ConstantInt::get(IntPtrTy, 1);
356 else if (ArraySize->getType() != IntPtrTy) {
357 if (InsertBefore)
Victor Hernandeze04ed0c2009-11-07 00:36:50 +0000358 ArraySize = CastInst::CreateIntegerCast(ArraySize, IntPtrTy, false,
359 "", InsertBefore);
Victor Hernandezf3db9152009-11-07 00:16:28 +0000360 else
Victor Hernandeze04ed0c2009-11-07 00:36:50 +0000361 ArraySize = CastInst::CreateIntegerCast(ArraySize, IntPtrTy, false,
362 "", InsertAtEnd);
Victor Hernandezf3db9152009-11-07 00:16:28 +0000363 }
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000364
Benjamin Kramer4bf4e862009-09-10 11:31:39 +0000365 if (!IsConstantOne(ArraySize)) {
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000366 if (IsConstantOne(AllocSize)) {
367 AllocSize = ArraySize; // Operand * 1 = Operand
368 } else if (Constant *CO = dyn_cast<Constant>(ArraySize)) {
369 Constant *Scale = ConstantExpr::getIntegerCast(CO, IntPtrTy,
370 false /*ZExt*/);
371 // Malloc arg is constant product of type size and array size
372 AllocSize = ConstantExpr::getMul(Scale, cast<Constant>(AllocSize));
373 } else {
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000374 // Multiply type size by the array size...
375 if (InsertBefore)
Victor Hernandez788eaab2009-09-18 19:20:02 +0000376 AllocSize = BinaryOperator::CreateMul(ArraySize, AllocSize,
377 "mallocsize", InsertBefore);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000378 else
Victor Hernandez788eaab2009-09-18 19:20:02 +0000379 AllocSize = BinaryOperator::CreateMul(ArraySize, AllocSize,
380 "mallocsize", InsertAtEnd);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000381 }
Benjamin Kramer4bf4e862009-09-10 11:31:39 +0000382 }
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000383
Victor Hernandez788eaab2009-09-18 19:20:02 +0000384 assert(AllocSize->getType() == IntPtrTy && "malloc arg is wrong size");
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000385 // Create the call to Malloc.
386 BasicBlock* BB = InsertBefore ? InsertBefore->getParent() : InsertAtEnd;
387 Module* M = BB->getParent()->getParent();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000388 Type *BPTy = Type::getInt8PtrTy(BB->getContext());
Victor Hernandezbb336a12009-11-10 19:53:28 +0000389 Value *MallocFunc = MallocF;
390 if (!MallocFunc)
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000391 // prototype malloc as "void *malloc(size_t)"
Victor Hernandezbb336a12009-11-10 19:53:28 +0000392 MallocFunc = M->getOrInsertFunction("malloc", BPTy, IntPtrTy, NULL);
Chris Lattner229907c2011-07-18 04:54:35 +0000393 PointerType *AllocPtrType = PointerType::getUnqual(AllocTy);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000394 CallInst *MCall = NULL;
Nick Lewyckybb1410e2009-10-17 23:52:26 +0000395 Instruction *Result = NULL;
Victor Hernandez788eaab2009-09-18 19:20:02 +0000396 if (InsertBefore) {
Victor Hernandezbb336a12009-11-10 19:53:28 +0000397 MCall = CallInst::Create(MallocFunc, AllocSize, "malloccall", InsertBefore);
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000398 Result = MCall;
399 if (Result->getType() != AllocPtrType)
400 // Create a cast instruction to convert to the right type...
Victor Hernandezf3db9152009-11-07 00:16:28 +0000401 Result = new BitCastInst(MCall, AllocPtrType, Name, InsertBefore);
Victor Hernandez788eaab2009-09-18 19:20:02 +0000402 } else {
Victor Hernandezbb336a12009-11-10 19:53:28 +0000403 MCall = CallInst::Create(MallocFunc, AllocSize, "malloccall");
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000404 Result = MCall;
405 if (Result->getType() != AllocPtrType) {
406 InsertAtEnd->getInstList().push_back(MCall);
407 // Create a cast instruction to convert to the right type...
Victor Hernandezf3db9152009-11-07 00:16:28 +0000408 Result = new BitCastInst(MCall, AllocPtrType, Name);
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000409 }
Victor Hernandez788eaab2009-09-18 19:20:02 +0000410 }
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000411 MCall->setTailCall();
Victor Hernandezbb336a12009-11-10 19:53:28 +0000412 if (Function *F = dyn_cast<Function>(MallocFunc)) {
413 MCall->setCallingConv(F->getCallingConv());
414 if (!F->doesNotAlias(0)) F->setDoesNotAlias(0);
415 }
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000416 assert(!MCall->getType()->isVoidTy() && "Malloc has void return type");
Victor Hernandez788eaab2009-09-18 19:20:02 +0000417
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000418 return Result;
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000419}
420
421/// CreateMalloc - Generate the IR for a call to malloc:
422/// 1. Compute the malloc call's argument as the specified type's size,
423/// possibly multiplied by the array size if the array size is not
424/// constant 1.
425/// 2. Call malloc with that argument.
426/// 3. Bitcast the result of the malloc call to the specified type.
Nick Lewyckybb1410e2009-10-17 23:52:26 +0000427Instruction *CallInst::CreateMalloc(Instruction *InsertBefore,
Chris Lattner229907c2011-07-18 04:54:35 +0000428 Type *IntPtrTy, Type *AllocTy,
Victor Hernandezf3db9152009-11-07 00:16:28 +0000429 Value *AllocSize, Value *ArraySize,
Duncan Sands41b4a6b2010-07-12 08:16:59 +0000430 Function * MallocF,
Victor Hernandezf3db9152009-11-07 00:16:28 +0000431 const Twine &Name) {
432 return createMalloc(InsertBefore, NULL, IntPtrTy, AllocTy, AllocSize,
Chris Lattner601e390a2010-07-12 00:57:28 +0000433 ArraySize, MallocF, Name);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000434}
435
436/// CreateMalloc - Generate the IR for a call to malloc:
437/// 1. Compute the malloc call's argument as the specified type's size,
438/// possibly multiplied by the array size if the array size is not
439/// constant 1.
440/// 2. Call malloc with that argument.
441/// 3. Bitcast the result of the malloc call to the specified type.
442/// Note: This function does not add the bitcast to the basic block, that is the
443/// responsibility of the caller.
Nick Lewyckybb1410e2009-10-17 23:52:26 +0000444Instruction *CallInst::CreateMalloc(BasicBlock *InsertAtEnd,
Chris Lattner229907c2011-07-18 04:54:35 +0000445 Type *IntPtrTy, Type *AllocTy,
Victor Hernandezf3db9152009-11-07 00:16:28 +0000446 Value *AllocSize, Value *ArraySize,
447 Function *MallocF, const Twine &Name) {
448 return createMalloc(NULL, InsertAtEnd, IntPtrTy, AllocTy, AllocSize,
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000449 ArraySize, MallocF, Name);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000450}
Duncan Sands5208d1a2007-11-28 17:07:01 +0000451
Victor Hernandeze2971492009-10-24 04:23:03 +0000452static Instruction* createFree(Value* Source, Instruction *InsertBefore,
453 BasicBlock *InsertAtEnd) {
454 assert(((!InsertBefore && InsertAtEnd) || (InsertBefore && !InsertAtEnd)) &&
455 "createFree needs either InsertBefore or InsertAtEnd");
Duncan Sands19d0b472010-02-16 11:11:14 +0000456 assert(Source->getType()->isPointerTy() &&
Victor Hernandeze2971492009-10-24 04:23:03 +0000457 "Can not free something of nonpointer type!");
458
459 BasicBlock* BB = InsertBefore ? InsertBefore->getParent() : InsertAtEnd;
460 Module* M = BB->getParent()->getParent();
461
Chris Lattner229907c2011-07-18 04:54:35 +0000462 Type *VoidTy = Type::getVoidTy(M->getContext());
463 Type *IntPtrTy = Type::getInt8PtrTy(M->getContext());
Victor Hernandeze2971492009-10-24 04:23:03 +0000464 // prototype free as "void free(void*)"
Chris Lattner2156c222009-11-09 07:12:01 +0000465 Value *FreeFunc = M->getOrInsertFunction("free", VoidTy, IntPtrTy, NULL);
Victor Hernandeze2971492009-10-24 04:23:03 +0000466 CallInst* Result = NULL;
467 Value *PtrCast = Source;
468 if (InsertBefore) {
469 if (Source->getType() != IntPtrTy)
470 PtrCast = new BitCastInst(Source, IntPtrTy, "", InsertBefore);
471 Result = CallInst::Create(FreeFunc, PtrCast, "", InsertBefore);
472 } else {
473 if (Source->getType() != IntPtrTy)
474 PtrCast = new BitCastInst(Source, IntPtrTy, "", InsertAtEnd);
475 Result = CallInst::Create(FreeFunc, PtrCast, "");
476 }
477 Result->setTailCall();
Chris Lattner2156c222009-11-09 07:12:01 +0000478 if (Function *F = dyn_cast<Function>(FreeFunc))
479 Result->setCallingConv(F->getCallingConv());
Victor Hernandeze2971492009-10-24 04:23:03 +0000480
481 return Result;
482}
483
484/// CreateFree - Generate the IR for a call to the builtin free function.
Chris Lattner601e390a2010-07-12 00:57:28 +0000485Instruction * CallInst::CreateFree(Value* Source, Instruction *InsertBefore) {
486 return createFree(Source, InsertBefore, NULL);
Victor Hernandeze2971492009-10-24 04:23:03 +0000487}
488
489/// CreateFree - Generate the IR for a call to the builtin free function.
490/// Note: This function does not add the call to the basic block, that is the
491/// responsibility of the caller.
492Instruction* CallInst::CreateFree(Value* Source, BasicBlock *InsertAtEnd) {
493 Instruction* FreeCall = createFree(Source, NULL, InsertAtEnd);
494 assert(FreeCall && "CreateFree did not create a CallInst");
495 return FreeCall;
496}
497
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000498//===----------------------------------------------------------------------===//
499// InvokeInst Implementation
500//===----------------------------------------------------------------------===//
501
502void InvokeInst::init(Value *Fn, BasicBlock *IfNormal, BasicBlock *IfException,
Jay Foad5bd375a2011-07-15 08:37:34 +0000503 ArrayRef<Value *> Args, const Twine &NameStr) {
504 assert(NumOperands == 3 + Args.size() && "NumOperands not set up?");
Gabor Greifa2fbc0a2010-03-24 13:21:49 +0000505 Op<-3>() = Fn;
506 Op<-2>() = IfNormal;
507 Op<-1>() = IfException;
Jay Foad5bd375a2011-07-15 08:37:34 +0000508
509#ifndef NDEBUG
Chris Lattner229907c2011-07-18 04:54:35 +0000510 FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000511 cast<FunctionType>(cast<PointerType>(Fn->getType())->getElementType());
Misha Brukmanb1c93172005-04-21 23:48:37 +0000512
Jay Foad5bd375a2011-07-15 08:37:34 +0000513 assert(((Args.size() == FTy->getNumParams()) ||
514 (FTy->isVarArg() && Args.size() > FTy->getNumParams())) &&
Gabor Greif668d7002010-03-23 13:45:54 +0000515 "Invoking a function with bad signature");
Misha Brukmanb1c93172005-04-21 23:48:37 +0000516
Jay Foad5bd375a2011-07-15 08:37:34 +0000517 for (unsigned i = 0, e = Args.size(); i != e; i++)
Chris Lattner667a0562006-05-03 00:48:22 +0000518 assert((i >= FTy->getNumParams() ||
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000519 FTy->getParamType(i) == Args[i]->getType()) &&
Chris Lattner667a0562006-05-03 00:48:22 +0000520 "Invoking a function with a bad signature!");
Jay Foad5bd375a2011-07-15 08:37:34 +0000521#endif
522
523 std::copy(Args.begin(), Args.end(), op_begin());
524 setName(NameStr);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000525}
526
Misha Brukmanb1c93172005-04-21 23:48:37 +0000527InvokeInst::InvokeInst(const InvokeInst &II)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000528 : TerminatorInst(II.getType(), Instruction::Invoke,
Gabor Greif697e94c2008-05-15 10:04:30 +0000529 OperandTraits<InvokeInst>::op_end(this)
530 - II.getNumOperands(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000531 II.getNumOperands()) {
Devang Patel4c758ea2008-09-25 21:00:45 +0000532 setAttributes(II.getAttributes());
Chris Lattnerb9c86512009-12-29 02:14:09 +0000533 setCallingConv(II.getCallingConv());
Jay Foad5bd375a2011-07-15 08:37:34 +0000534 std::copy(II.op_begin(), II.op_end(), op_begin());
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000535 SubclassOptionalData = II.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000536}
537
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000538BasicBlock *InvokeInst::getSuccessorV(unsigned idx) const {
539 return getSuccessor(idx);
540}
541unsigned InvokeInst::getNumSuccessorsV() const {
542 return getNumSuccessors();
543}
544void InvokeInst::setSuccessorV(unsigned idx, BasicBlock *B) {
545 return setSuccessor(idx, B);
546}
547
Devang Patelba3fa6c2008-09-23 23:03:40 +0000548bool InvokeInst::paramHasAttr(unsigned i, Attributes attr) const {
Devang Patel4c758ea2008-09-25 21:00:45 +0000549 if (AttributeList.paramHasAttr(i, attr))
Duncan Sands5208d1a2007-11-28 17:07:01 +0000550 return true;
Duncan Sands8dfcd592007-11-29 08:30:15 +0000551 if (const Function *F = getCalledFunction())
Dale Johannesen89268bc2008-02-19 21:38:47 +0000552 return F->paramHasAttr(i, attr);
Duncan Sands8dfcd592007-11-29 08:30:15 +0000553 return false;
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000554}
555
Devang Patel4c758ea2008-09-25 21:00:45 +0000556void InvokeInst::addAttribute(unsigned i, Attributes attr) {
557 AttrListPtr PAL = getAttributes();
Eric Christopher901b1a72008-05-16 20:39:43 +0000558 PAL = PAL.addAttr(i, attr);
Devang Patel4c758ea2008-09-25 21:00:45 +0000559 setAttributes(PAL);
Eric Christopher901b1a72008-05-16 20:39:43 +0000560}
561
Devang Patel4c758ea2008-09-25 21:00:45 +0000562void InvokeInst::removeAttribute(unsigned i, Attributes attr) {
563 AttrListPtr PAL = getAttributes();
Duncan Sands78c88722008-07-08 08:38:44 +0000564 PAL = PAL.removeAttr(i, attr);
Devang Patel4c758ea2008-09-25 21:00:45 +0000565 setAttributes(PAL);
Duncan Sandsaa31b922007-12-19 21:13:37 +0000566}
567
Bill Wendlinga8f04e32011-07-28 02:15:52 +0000568LandingPadInst *InvokeInst::getLandingPad() const {
569 return cast<LandingPadInst>(getUnwindDest()->getFirstNonPHI());
570}
Duncan Sands5208d1a2007-11-28 17:07:01 +0000571
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000572//===----------------------------------------------------------------------===//
573// ReturnInst Implementation
574//===----------------------------------------------------------------------===//
575
Chris Lattner2195fc42007-02-24 00:55:48 +0000576ReturnInst::ReturnInst(const ReturnInst &RI)
Owen Anderson55f1c092009-08-13 21:58:54 +0000577 : TerminatorInst(Type::getVoidTy(RI.getContext()), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000578 OperandTraits<ReturnInst>::op_end(this) -
579 RI.getNumOperands(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000580 RI.getNumOperands()) {
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000581 if (RI.getNumOperands())
Gabor Greif2d3024d2008-05-26 21:33:52 +0000582 Op<0>() = RI.Op<0>();
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000583 SubclassOptionalData = RI.SubclassOptionalData;
Chris Lattner2195fc42007-02-24 00:55:48 +0000584}
585
Owen Anderson55f1c092009-08-13 21:58:54 +0000586ReturnInst::ReturnInst(LLVMContext &C, Value *retVal, Instruction *InsertBefore)
587 : TerminatorInst(Type::getVoidTy(C), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000588 OperandTraits<ReturnInst>::op_end(this) - !!retVal, !!retVal,
589 InsertBefore) {
Devang Patelc38eb522008-02-26 18:49:29 +0000590 if (retVal)
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000591 Op<0>() = retVal;
Chris Lattner2195fc42007-02-24 00:55:48 +0000592}
Owen Anderson55f1c092009-08-13 21:58:54 +0000593ReturnInst::ReturnInst(LLVMContext &C, Value *retVal, BasicBlock *InsertAtEnd)
594 : TerminatorInst(Type::getVoidTy(C), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000595 OperandTraits<ReturnInst>::op_end(this) - !!retVal, !!retVal,
596 InsertAtEnd) {
Devang Patelc38eb522008-02-26 18:49:29 +0000597 if (retVal)
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000598 Op<0>() = retVal;
Chris Lattner2195fc42007-02-24 00:55:48 +0000599}
Owen Anderson55f1c092009-08-13 21:58:54 +0000600ReturnInst::ReturnInst(LLVMContext &Context, BasicBlock *InsertAtEnd)
601 : TerminatorInst(Type::getVoidTy(Context), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000602 OperandTraits<ReturnInst>::op_end(this), 0, InsertAtEnd) {
Devang Patel59643e52008-02-23 00:35:18 +0000603}
604
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000605unsigned ReturnInst::getNumSuccessorsV() const {
606 return getNumSuccessors();
607}
608
Devang Patelae682fb2008-02-26 17:56:20 +0000609/// Out-of-line ReturnInst method, put here so the C++ compiler can choose to
610/// emit the vtable for the class in this translation unit.
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000611void ReturnInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000612 llvm_unreachable("ReturnInst has no successors!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000613}
614
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000615BasicBlock *ReturnInst::getSuccessorV(unsigned idx) const {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000616 llvm_unreachable("ReturnInst has no successors!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000617 return 0;
618}
619
Devang Patel59643e52008-02-23 00:35:18 +0000620ReturnInst::~ReturnInst() {
Devang Patel59643e52008-02-23 00:35:18 +0000621}
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000622
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000623//===----------------------------------------------------------------------===//
624// UnwindInst Implementation
625//===----------------------------------------------------------------------===//
626
Owen Anderson55f1c092009-08-13 21:58:54 +0000627UnwindInst::UnwindInst(LLVMContext &Context, Instruction *InsertBefore)
628 : TerminatorInst(Type::getVoidTy(Context), Instruction::Unwind,
629 0, 0, InsertBefore) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000630}
Owen Anderson55f1c092009-08-13 21:58:54 +0000631UnwindInst::UnwindInst(LLVMContext &Context, BasicBlock *InsertAtEnd)
632 : TerminatorInst(Type::getVoidTy(Context), Instruction::Unwind,
633 0, 0, InsertAtEnd) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000634}
635
636
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000637unsigned UnwindInst::getNumSuccessorsV() const {
638 return getNumSuccessors();
639}
640
641void UnwindInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000642 llvm_unreachable("UnwindInst has no successors!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000643}
644
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000645BasicBlock *UnwindInst::getSuccessorV(unsigned idx) const {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000646 llvm_unreachable("UnwindInst has no successors!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000647 return 0;
648}
649
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000650//===----------------------------------------------------------------------===//
Bill Wendling6c923bb2011-07-27 20:18:04 +0000651// ResumeInst Implementation
652//===----------------------------------------------------------------------===//
653
654ResumeInst::ResumeInst(const ResumeInst &RI)
655 : TerminatorInst(Type::getVoidTy(RI.getContext()), Instruction::Resume,
656 OperandTraits<ResumeInst>::op_begin(this), 1) {
657 Op<0>() = RI.Op<0>();
658 SubclassOptionalData = RI.SubclassOptionalData;
659}
660
661ResumeInst::ResumeInst(LLVMContext &C, Value *Exn, Instruction *InsertBefore)
662 : TerminatorInst(Type::getVoidTy(C), Instruction::Resume,
663 OperandTraits<ResumeInst>::op_begin(this), 1, InsertBefore) {
664 Op<0>() = Exn;
665}
666
667ResumeInst::ResumeInst(LLVMContext &C, Value *Exn, BasicBlock *InsertAtEnd)
668 : TerminatorInst(Type::getVoidTy(C), Instruction::Resume,
669 OperandTraits<ResumeInst>::op_begin(this), 1, InsertAtEnd) {
670 Op<0>() = Exn;
671}
672
673unsigned ResumeInst::getNumSuccessorsV() const {
674 return getNumSuccessors();
675}
676
677void ResumeInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
678 llvm_unreachable("ResumeInst has no successors!");
679}
680
681BasicBlock *ResumeInst::getSuccessorV(unsigned idx) const {
682 llvm_unreachable("ResumeInst has no successors!");
683 return 0;
684}
685
686//===----------------------------------------------------------------------===//
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000687// UnreachableInst Implementation
688//===----------------------------------------------------------------------===//
689
Owen Anderson55f1c092009-08-13 21:58:54 +0000690UnreachableInst::UnreachableInst(LLVMContext &Context,
691 Instruction *InsertBefore)
692 : TerminatorInst(Type::getVoidTy(Context), Instruction::Unreachable,
693 0, 0, InsertBefore) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000694}
Owen Anderson55f1c092009-08-13 21:58:54 +0000695UnreachableInst::UnreachableInst(LLVMContext &Context, BasicBlock *InsertAtEnd)
696 : TerminatorInst(Type::getVoidTy(Context), Instruction::Unreachable,
697 0, 0, InsertAtEnd) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000698}
699
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000700unsigned UnreachableInst::getNumSuccessorsV() const {
701 return getNumSuccessors();
702}
703
704void UnreachableInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
Bill Wendling6c923bb2011-07-27 20:18:04 +0000705 llvm_unreachable("UnreachableInst has no successors!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000706}
707
708BasicBlock *UnreachableInst::getSuccessorV(unsigned idx) const {
Bill Wendling6c923bb2011-07-27 20:18:04 +0000709 llvm_unreachable("UnreachableInst has no successors!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000710 return 0;
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000711}
712
713//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000714// BranchInst Implementation
715//===----------------------------------------------------------------------===//
716
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000717void BranchInst::AssertOK() {
718 if (isConditional())
Duncan Sands9dff9be2010-02-15 16:12:20 +0000719 assert(getCondition()->getType()->isIntegerTy(1) &&
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000720 "May only branch on boolean predicates!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000721}
722
Chris Lattner2195fc42007-02-24 00:55:48 +0000723BranchInst::BranchInst(BasicBlock *IfTrue, Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +0000724 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000725 OperandTraits<BranchInst>::op_end(this) - 1,
726 1, InsertBefore) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000727 assert(IfTrue != 0 && "Branch destination may not be null!");
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000728 Op<-1>() = IfTrue;
Chris Lattner2195fc42007-02-24 00:55:48 +0000729}
730BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
731 Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +0000732 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000733 OperandTraits<BranchInst>::op_end(this) - 3,
734 3, InsertBefore) {
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000735 Op<-1>() = IfTrue;
736 Op<-2>() = IfFalse;
737 Op<-3>() = Cond;
Chris Lattner2195fc42007-02-24 00:55:48 +0000738#ifndef NDEBUG
739 AssertOK();
740#endif
741}
742
743BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +0000744 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000745 OperandTraits<BranchInst>::op_end(this) - 1,
746 1, InsertAtEnd) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000747 assert(IfTrue != 0 && "Branch destination may not be null!");
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000748 Op<-1>() = IfTrue;
Chris Lattner2195fc42007-02-24 00:55:48 +0000749}
750
751BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
752 BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +0000753 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000754 OperandTraits<BranchInst>::op_end(this) - 3,
755 3, InsertAtEnd) {
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000756 Op<-1>() = IfTrue;
757 Op<-2>() = IfFalse;
758 Op<-3>() = Cond;
Chris Lattner2195fc42007-02-24 00:55:48 +0000759#ifndef NDEBUG
760 AssertOK();
761#endif
762}
763
764
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000765BranchInst::BranchInst(const BranchInst &BI) :
Owen Anderson55f1c092009-08-13 21:58:54 +0000766 TerminatorInst(Type::getVoidTy(BI.getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000767 OperandTraits<BranchInst>::op_end(this) - BI.getNumOperands(),
768 BI.getNumOperands()) {
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000769 Op<-1>() = BI.Op<-1>();
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000770 if (BI.getNumOperands() != 1) {
771 assert(BI.getNumOperands() == 3 && "BR can have 1 or 3 operands!");
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000772 Op<-3>() = BI.Op<-3>();
773 Op<-2>() = BI.Op<-2>();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000774 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000775 SubclassOptionalData = BI.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000776}
777
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000778BasicBlock *BranchInst::getSuccessorV(unsigned idx) const {
779 return getSuccessor(idx);
780}
781unsigned BranchInst::getNumSuccessorsV() const {
782 return getNumSuccessors();
783}
784void BranchInst::setSuccessorV(unsigned idx, BasicBlock *B) {
785 setSuccessor(idx, B);
786}
787
788
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000789//===----------------------------------------------------------------------===//
Victor Hernandez8acf2952009-10-23 21:09:37 +0000790// AllocaInst Implementation
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000791//===----------------------------------------------------------------------===//
792
Owen Andersonb6b25302009-07-14 23:09:55 +0000793static Value *getAISize(LLVMContext &Context, Value *Amt) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000794 if (!Amt)
Owen Anderson55f1c092009-08-13 21:58:54 +0000795 Amt = ConstantInt::get(Type::getInt32Ty(Context), 1);
Chris Lattnerbb7ff662006-05-10 04:32:43 +0000796 else {
797 assert(!isa<BasicBlock>(Amt) &&
Chris Lattner9b6ec772007-10-18 16:10:48 +0000798 "Passed basic block into allocation size parameter! Use other ctor");
Dan Gohman2140a742010-05-28 01:14:11 +0000799 assert(Amt->getType()->isIntegerTy() &&
800 "Allocation array size is not an integer!");
Chris Lattnerbb7ff662006-05-10 04:32:43 +0000801 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000802 return Amt;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000803}
804
Chris Lattner229907c2011-07-18 04:54:35 +0000805AllocaInst::AllocaInst(Type *Ty, Value *ArraySize,
Victor Hernandez8acf2952009-10-23 21:09:37 +0000806 const Twine &Name, Instruction *InsertBefore)
807 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
808 getAISize(Ty->getContext(), ArraySize), InsertBefore) {
809 setAlignment(0);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000810 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Victor Hernandez8acf2952009-10-23 21:09:37 +0000811 setName(Name);
812}
813
Chris Lattner229907c2011-07-18 04:54:35 +0000814AllocaInst::AllocaInst(Type *Ty, Value *ArraySize,
Victor Hernandez8acf2952009-10-23 21:09:37 +0000815 const Twine &Name, BasicBlock *InsertAtEnd)
816 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
817 getAISize(Ty->getContext(), ArraySize), InsertAtEnd) {
818 setAlignment(0);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000819 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Victor Hernandez8acf2952009-10-23 21:09:37 +0000820 setName(Name);
821}
822
Chris Lattner229907c2011-07-18 04:54:35 +0000823AllocaInst::AllocaInst(Type *Ty, const Twine &Name,
Victor Hernandez8acf2952009-10-23 21:09:37 +0000824 Instruction *InsertBefore)
825 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
826 getAISize(Ty->getContext(), 0), InsertBefore) {
827 setAlignment(0);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000828 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Victor Hernandez8acf2952009-10-23 21:09:37 +0000829 setName(Name);
830}
831
Chris Lattner229907c2011-07-18 04:54:35 +0000832AllocaInst::AllocaInst(Type *Ty, const Twine &Name,
Victor Hernandez8acf2952009-10-23 21:09:37 +0000833 BasicBlock *InsertAtEnd)
834 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
835 getAISize(Ty->getContext(), 0), InsertAtEnd) {
836 setAlignment(0);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000837 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Victor Hernandez8acf2952009-10-23 21:09:37 +0000838 setName(Name);
839}
840
Chris Lattner229907c2011-07-18 04:54:35 +0000841AllocaInst::AllocaInst(Type *Ty, Value *ArraySize, unsigned Align,
Victor Hernandez8acf2952009-10-23 21:09:37 +0000842 const Twine &Name, Instruction *InsertBefore)
843 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
Owen Anderson4fdeba92009-07-15 23:53:25 +0000844 getAISize(Ty->getContext(), ArraySize), InsertBefore) {
Dan Gohmanaa583d72008-03-24 16:55:58 +0000845 setAlignment(Align);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000846 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Chris Lattner0f048162007-02-13 07:54:42 +0000847 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000848}
849
Chris Lattner229907c2011-07-18 04:54:35 +0000850AllocaInst::AllocaInst(Type *Ty, Value *ArraySize, unsigned Align,
Victor Hernandez8acf2952009-10-23 21:09:37 +0000851 const Twine &Name, BasicBlock *InsertAtEnd)
852 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
Owen Anderson4fdeba92009-07-15 23:53:25 +0000853 getAISize(Ty->getContext(), ArraySize), InsertAtEnd) {
Dan Gohmanaa583d72008-03-24 16:55:58 +0000854 setAlignment(Align);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000855 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Chris Lattner0f048162007-02-13 07:54:42 +0000856 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000857}
858
Gordon Henriksen14a55692007-12-10 02:14:30 +0000859// Out of line virtual method, so the vtable, etc has a home.
Victor Hernandez8acf2952009-10-23 21:09:37 +0000860AllocaInst::~AllocaInst() {
Gordon Henriksen14a55692007-12-10 02:14:30 +0000861}
862
Victor Hernandez8acf2952009-10-23 21:09:37 +0000863void AllocaInst::setAlignment(unsigned Align) {
Dan Gohmanaa583d72008-03-24 16:55:58 +0000864 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
Dan Gohmana7e5a242010-07-28 20:12:04 +0000865 assert(Align <= MaximumAlignment &&
866 "Alignment is greater than MaximumAlignment!");
Chris Lattnerd8eb2cf2009-12-29 02:46:09 +0000867 setInstructionSubclassData(Log2_32(Align) + 1);
Dan Gohmanaa583d72008-03-24 16:55:58 +0000868 assert(getAlignment() == Align && "Alignment representation error!");
869}
870
Victor Hernandez8acf2952009-10-23 21:09:37 +0000871bool AllocaInst::isArrayAllocation() const {
Reid Spencera9e6e312007-03-01 20:27:41 +0000872 if (ConstantInt *CI = dyn_cast<ConstantInt>(getOperand(0)))
Dan Gohman9a1b8592010-09-27 15:15:44 +0000873 return !CI->isOne();
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000874 return true;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000875}
876
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000877Type *AllocaInst::getAllocatedType() const {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000878 return getType()->getElementType();
879}
880
Chris Lattner8b291e62008-11-26 02:54:17 +0000881/// isStaticAlloca - Return true if this alloca is in the entry block of the
882/// function and is a constant size. If so, the code generator will fold it
883/// into the prolog/epilog code, so it is basically free.
884bool AllocaInst::isStaticAlloca() const {
885 // Must be constant size.
886 if (!isa<ConstantInt>(getArraySize())) return false;
887
888 // Must be in the entry block.
889 const BasicBlock *Parent = getParent();
890 return Parent == &Parent->getParent()->front();
891}
892
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000893//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000894// LoadInst Implementation
895//===----------------------------------------------------------------------===//
896
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000897void LoadInst::AssertOK() {
Duncan Sands19d0b472010-02-16 11:11:14 +0000898 assert(getOperand(0)->getType()->isPointerTy() &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000899 "Ptr must have pointer type.");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000900}
901
Daniel Dunbar4975db62009-07-25 04:41:11 +0000902LoadInst::LoadInst(Value *Ptr, const Twine &Name, Instruction *InsertBef)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000903 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000904 Load, Ptr, InsertBef) {
Chris Lattnerdf57a022005-02-05 01:38:38 +0000905 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000906 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000907 AssertOK();
Chris Lattner0f048162007-02-13 07:54:42 +0000908 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000909}
910
Daniel Dunbar4975db62009-07-25 04:41:11 +0000911LoadInst::LoadInst(Value *Ptr, const Twine &Name, BasicBlock *InsertAE)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000912 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000913 Load, Ptr, InsertAE) {
Chris Lattnerdf57a022005-02-05 01:38:38 +0000914 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000915 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000916 AssertOK();
Chris Lattner0f048162007-02-13 07:54:42 +0000917 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000918}
919
Daniel Dunbar4975db62009-07-25 04:41:11 +0000920LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000921 Instruction *InsertBef)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000922 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000923 Load, Ptr, InsertBef) {
Chris Lattnerdf57a022005-02-05 01:38:38 +0000924 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +0000925 setAlignment(0);
926 AssertOK();
927 setName(Name);
928}
929
Daniel Dunbar4975db62009-07-25 04:41:11 +0000930LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Christopher Lamb84485702007-04-22 19:24:39 +0000931 unsigned Align, Instruction *InsertBef)
932 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
933 Load, Ptr, InsertBef) {
934 setVolatile(isVolatile);
935 setAlignment(Align);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000936 AssertOK();
Chris Lattner0f048162007-02-13 07:54:42 +0000937 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000938}
939
Daniel Dunbar4975db62009-07-25 04:41:11 +0000940LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Dan Gohman68659282007-07-18 20:51:11 +0000941 unsigned Align, BasicBlock *InsertAE)
942 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
943 Load, Ptr, InsertAE) {
944 setVolatile(isVolatile);
945 setAlignment(Align);
946 AssertOK();
947 setName(Name);
948}
949
Daniel Dunbar4975db62009-07-25 04:41:11 +0000950LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000951 BasicBlock *InsertAE)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000952 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000953 Load, Ptr, InsertAE) {
Chris Lattner0f048162007-02-13 07:54:42 +0000954 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +0000955 setAlignment(0);
Chris Lattner0f048162007-02-13 07:54:42 +0000956 AssertOK();
957 setName(Name);
958}
959
Daniel Dunbar27096822009-08-11 18:11:15 +0000960
961
962LoadInst::LoadInst(Value *Ptr, const char *Name, Instruction *InsertBef)
963 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
964 Load, Ptr, InsertBef) {
965 setVolatile(false);
966 setAlignment(0);
967 AssertOK();
968 if (Name && Name[0]) setName(Name);
969}
970
971LoadInst::LoadInst(Value *Ptr, const char *Name, BasicBlock *InsertAE)
972 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
973 Load, Ptr, InsertAE) {
974 setVolatile(false);
975 setAlignment(0);
976 AssertOK();
977 if (Name && Name[0]) setName(Name);
978}
979
980LoadInst::LoadInst(Value *Ptr, const char *Name, bool isVolatile,
981 Instruction *InsertBef)
982: UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
983 Load, Ptr, InsertBef) {
984 setVolatile(isVolatile);
985 setAlignment(0);
986 AssertOK();
987 if (Name && Name[0]) setName(Name);
988}
989
990LoadInst::LoadInst(Value *Ptr, const char *Name, bool isVolatile,
991 BasicBlock *InsertAE)
992 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
993 Load, Ptr, InsertAE) {
994 setVolatile(isVolatile);
995 setAlignment(0);
996 AssertOK();
997 if (Name && Name[0]) setName(Name);
998}
999
Christopher Lamb84485702007-04-22 19:24:39 +00001000void LoadInst::setAlignment(unsigned Align) {
1001 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
Dan Gohmana7e5a242010-07-28 20:12:04 +00001002 assert(Align <= MaximumAlignment &&
1003 "Alignment is greater than MaximumAlignment!");
Chris Lattnerd8eb2cf2009-12-29 02:46:09 +00001004 setInstructionSubclassData((getSubclassDataFromInstruction() & 1) |
1005 ((Log2_32(Align)+1)<<1));
Dan Gohmana7e5a242010-07-28 20:12:04 +00001006 assert(getAlignment() == Align && "Alignment representation error!");
Christopher Lamb84485702007-04-22 19:24:39 +00001007}
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001008
1009//===----------------------------------------------------------------------===//
1010// StoreInst Implementation
1011//===----------------------------------------------------------------------===//
1012
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001013void StoreInst::AssertOK() {
Nate Begemanfecbc8c2008-07-29 15:49:41 +00001014 assert(getOperand(0) && getOperand(1) && "Both operands must be non-null!");
Duncan Sands19d0b472010-02-16 11:11:14 +00001015 assert(getOperand(1)->getType()->isPointerTy() &&
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001016 "Ptr must have pointer type!");
1017 assert(getOperand(0)->getType() ==
1018 cast<PointerType>(getOperand(1)->getType())->getElementType()
Alkis Evlogimenos079fbde2004-08-06 14:33:37 +00001019 && "Ptr must be a pointer to Val type!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001020}
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001021
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001022
1023StoreInst::StoreInst(Value *val, Value *addr, Instruction *InsertBefore)
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 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001028 Op<0>() = val;
1029 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +00001030 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +00001031 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001032 AssertOK();
1033}
1034
1035StoreInst::StoreInst(Value *val, Value *addr, BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +00001036 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001037 OperandTraits<StoreInst>::op_begin(this),
1038 OperandTraits<StoreInst>::operands(this),
1039 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001040 Op<0>() = val;
1041 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +00001042 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +00001043 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001044 AssertOK();
1045}
1046
Misha Brukmanb1c93172005-04-21 23:48:37 +00001047StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001048 Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +00001049 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001050 OperandTraits<StoreInst>::op_begin(this),
1051 OperandTraits<StoreInst>::operands(this),
1052 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001053 Op<0>() = val;
1054 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +00001055 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +00001056 setAlignment(0);
1057 AssertOK();
1058}
1059
1060StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
1061 unsigned Align, Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +00001062 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001063 OperandTraits<StoreInst>::op_begin(this),
1064 OperandTraits<StoreInst>::operands(this),
1065 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001066 Op<0>() = val;
1067 Op<1>() = addr;
Christopher Lamb84485702007-04-22 19:24:39 +00001068 setVolatile(isVolatile);
1069 setAlignment(Align);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001070 AssertOK();
1071}
1072
Misha Brukmanb1c93172005-04-21 23:48:37 +00001073StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Dan Gohman68659282007-07-18 20:51:11 +00001074 unsigned Align, BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +00001075 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001076 OperandTraits<StoreInst>::op_begin(this),
1077 OperandTraits<StoreInst>::operands(this),
1078 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001079 Op<0>() = val;
1080 Op<1>() = addr;
Dan Gohman68659282007-07-18 20:51:11 +00001081 setVolatile(isVolatile);
1082 setAlignment(Align);
1083 AssertOK();
1084}
1085
1086StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001087 BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +00001088 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001089 OperandTraits<StoreInst>::op_begin(this),
1090 OperandTraits<StoreInst>::operands(this),
1091 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001092 Op<0>() = val;
1093 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +00001094 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +00001095 setAlignment(0);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001096 AssertOK();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001097}
1098
Christopher Lamb84485702007-04-22 19:24:39 +00001099void StoreInst::setAlignment(unsigned Align) {
1100 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
Dan Gohmana7e5a242010-07-28 20:12:04 +00001101 assert(Align <= MaximumAlignment &&
1102 "Alignment is greater than MaximumAlignment!");
Chris Lattnerd8eb2cf2009-12-29 02:46:09 +00001103 setInstructionSubclassData((getSubclassDataFromInstruction() & 1) |
1104 ((Log2_32(Align)+1) << 1));
Dan Gohmana7e5a242010-07-28 20:12:04 +00001105 assert(getAlignment() == Align && "Alignment representation error!");
Christopher Lamb84485702007-04-22 19:24:39 +00001106}
1107
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001108//===----------------------------------------------------------------------===//
Eli Friedmanfee02c62011-07-25 23:16:38 +00001109// FenceInst Implementation
1110//===----------------------------------------------------------------------===//
1111
1112FenceInst::FenceInst(LLVMContext &C, AtomicOrdering Ordering,
1113 SynchronizationScope SynchScope,
1114 Instruction *InsertBefore)
1115 : Instruction(Type::getVoidTy(C), Fence, 0, 0, InsertBefore) {
1116 setOrdering(Ordering);
1117 setSynchScope(SynchScope);
1118}
1119
1120FenceInst::FenceInst(LLVMContext &C, AtomicOrdering Ordering,
1121 SynchronizationScope SynchScope,
1122 BasicBlock *InsertAtEnd)
1123 : Instruction(Type::getVoidTy(C), Fence, 0, 0, InsertAtEnd) {
1124 setOrdering(Ordering);
1125 setSynchScope(SynchScope);
1126}
1127
1128//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001129// GetElementPtrInst Implementation
1130//===----------------------------------------------------------------------===//
1131
Jay Foadd1b78492011-07-25 09:48:08 +00001132void GetElementPtrInst::init(Value *Ptr, ArrayRef<Value *> IdxList,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001133 const Twine &Name) {
Jay Foadd1b78492011-07-25 09:48:08 +00001134 assert(NumOperands == 1 + IdxList.size() && "NumOperands not initialized?");
1135 OperandList[0] = Ptr;
1136 std::copy(IdxList.begin(), IdxList.end(), op_begin() + 1);
Matthijs Kooijman76d8dec2008-06-04 16:14:12 +00001137 setName(Name);
Chris Lattner82981202005-05-03 05:43:30 +00001138}
1139
Gabor Greiff6caff662008-05-10 08:32:32 +00001140GetElementPtrInst::GetElementPtrInst(const GetElementPtrInst &GEPI)
Gabor Greife9408e62008-05-27 11:03:29 +00001141 : Instruction(GEPI.getType(), GetElementPtr,
Gabor Greif697e94c2008-05-15 10:04:30 +00001142 OperandTraits<GetElementPtrInst>::op_end(this)
1143 - GEPI.getNumOperands(),
Gabor Greiff6caff662008-05-10 08:32:32 +00001144 GEPI.getNumOperands()) {
Jay Foadd1b78492011-07-25 09:48:08 +00001145 std::copy(GEPI.op_begin(), GEPI.op_end(), op_begin());
Dan Gohmanc8a27f22009-08-25 22:11:20 +00001146 SubclassOptionalData = GEPI.SubclassOptionalData;
Gabor Greiff6caff662008-05-10 08:32:32 +00001147}
1148
Chris Lattner6090a422009-03-09 04:46:40 +00001149/// getIndexedType - Returns the type of the element that would be accessed with
1150/// a gep instruction with the specified parameters.
1151///
1152/// The Idxs pointer should point to a continuous piece of memory containing the
1153/// indices, either as Value* or uint64_t.
1154///
1155/// A null type is returned if the indices are invalid for the specified
1156/// pointer type.
1157///
Matthijs Kooijman04468622008-07-29 08:46:11 +00001158template <typename IndexTy>
Jay Foadd1b78492011-07-25 09:48:08 +00001159static Type *getIndexedTypeInternal(Type *Ptr, ArrayRef<IndexTy> IdxList) {
Chris Lattner229907c2011-07-18 04:54:35 +00001160 PointerType *PTy = dyn_cast<PointerType>(Ptr);
Dan Gohman12fce772008-05-15 19:50:34 +00001161 if (!PTy) return 0; // Type isn't a pointer type!
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001162 Type *Agg = PTy->getElementType();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001163
Chris Lattner6090a422009-03-09 04:46:40 +00001164 // Handle the special case of the empty set index set, which is always valid.
Jay Foadd1b78492011-07-25 09:48:08 +00001165 if (IdxList.empty())
Dan Gohman12fce772008-05-15 19:50:34 +00001166 return Agg;
Chris Lattner6090a422009-03-09 04:46:40 +00001167
1168 // If there is at least one index, the top level type must be sized, otherwise
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001169 // it cannot be 'stepped over'.
1170 if (!Agg->isSized())
Chris Lattner6090a422009-03-09 04:46:40 +00001171 return 0;
Misha Brukmanb1c93172005-04-21 23:48:37 +00001172
Dan Gohman1ecaf452008-05-31 00:58:22 +00001173 unsigned CurIdx = 1;
Jay Foadd1b78492011-07-25 09:48:08 +00001174 for (; CurIdx != IdxList.size(); ++CurIdx) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001175 CompositeType *CT = dyn_cast<CompositeType>(Agg);
Duncan Sands19d0b472010-02-16 11:11:14 +00001176 if (!CT || CT->isPointerTy()) return 0;
Jay Foadd1b78492011-07-25 09:48:08 +00001177 IndexTy Index = IdxList[CurIdx];
Dan Gohman1ecaf452008-05-31 00:58:22 +00001178 if (!CT->indexValid(Index)) return 0;
1179 Agg = CT->getTypeAtIndex(Index);
Dan Gohman1ecaf452008-05-31 00:58:22 +00001180 }
Jay Foadd1b78492011-07-25 09:48:08 +00001181 return CurIdx == IdxList.size() ? Agg : 0;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001182}
1183
Jay Foadd1b78492011-07-25 09:48:08 +00001184Type *GetElementPtrInst::getIndexedType(Type *Ptr, ArrayRef<Value *> IdxList) {
1185 return getIndexedTypeInternal(Ptr, IdxList);
Matthijs Kooijman04468622008-07-29 08:46:11 +00001186}
1187
Chris Lattner229907c2011-07-18 04:54:35 +00001188Type *GetElementPtrInst::getIndexedType(Type *Ptr,
Jay Foadd1b78492011-07-25 09:48:08 +00001189 ArrayRef<Constant *> IdxList) {
1190 return getIndexedTypeInternal(Ptr, IdxList);
Jay Foad1d4a8fe2011-01-14 08:07:43 +00001191}
1192
Jay Foadd1b78492011-07-25 09:48:08 +00001193Type *GetElementPtrInst::getIndexedType(Type *Ptr, ArrayRef<uint64_t> IdxList) {
1194 return getIndexedTypeInternal(Ptr, IdxList);
Matthijs Kooijman04468622008-07-29 08:46:11 +00001195}
1196
Chris Lattner45f15572007-04-14 00:12:57 +00001197/// hasAllZeroIndices - Return true if all of the indices of this GEP are
1198/// zeros. If so, the result pointer and the first operand have the same
1199/// value, just potentially different types.
1200bool GetElementPtrInst::hasAllZeroIndices() const {
1201 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
1202 if (ConstantInt *CI = dyn_cast<ConstantInt>(getOperand(i))) {
1203 if (!CI->isZero()) return false;
1204 } else {
1205 return false;
1206 }
1207 }
1208 return true;
1209}
1210
Chris Lattner27058292007-04-27 20:35:56 +00001211/// hasAllConstantIndices - Return true if all of the indices of this GEP are
1212/// constant integers. If so, the result pointer and the first operand have
1213/// a constant offset between them.
1214bool GetElementPtrInst::hasAllConstantIndices() const {
1215 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
1216 if (!isa<ConstantInt>(getOperand(i)))
1217 return false;
1218 }
1219 return true;
1220}
1221
Dan Gohman1b849082009-09-07 23:54:19 +00001222void GetElementPtrInst::setIsInBounds(bool B) {
1223 cast<GEPOperator>(this)->setIsInBounds(B);
1224}
Chris Lattner45f15572007-04-14 00:12:57 +00001225
Nick Lewycky28a5f252009-09-27 21:33:04 +00001226bool GetElementPtrInst::isInBounds() const {
1227 return cast<GEPOperator>(this)->isInBounds();
1228}
1229
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001230//===----------------------------------------------------------------------===//
Robert Bocchino23004482006-01-10 19:05:34 +00001231// ExtractElementInst Implementation
1232//===----------------------------------------------------------------------===//
1233
1234ExtractElementInst::ExtractElementInst(Value *Val, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001235 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001236 Instruction *InsertBef)
Reid Spencerd84d35b2007-02-15 02:26:10 +00001237 : Instruction(cast<VectorType>(Val->getType())->getElementType(),
Gabor Greiff6caff662008-05-10 08:32:32 +00001238 ExtractElement,
1239 OperandTraits<ExtractElementInst>::op_begin(this),
1240 2, InsertBef) {
Chris Lattner54865b32006-04-08 04:05:48 +00001241 assert(isValidOperands(Val, Index) &&
1242 "Invalid extractelement instruction operands!");
Gabor Greif2d3024d2008-05-26 21:33:52 +00001243 Op<0>() = Val;
1244 Op<1>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001245 setName(Name);
Robert Bocchino23004482006-01-10 19:05:34 +00001246}
1247
1248ExtractElementInst::ExtractElementInst(Value *Val, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001249 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001250 BasicBlock *InsertAE)
Reid Spencerd84d35b2007-02-15 02:26:10 +00001251 : Instruction(cast<VectorType>(Val->getType())->getElementType(),
Gabor Greiff6caff662008-05-10 08:32:32 +00001252 ExtractElement,
1253 OperandTraits<ExtractElementInst>::op_begin(this),
1254 2, InsertAE) {
Chris Lattner54865b32006-04-08 04:05:48 +00001255 assert(isValidOperands(Val, Index) &&
1256 "Invalid extractelement instruction operands!");
1257
Gabor Greif2d3024d2008-05-26 21:33:52 +00001258 Op<0>() = Val;
1259 Op<1>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001260 setName(Name);
Robert Bocchino23004482006-01-10 19:05:34 +00001261}
1262
Chris Lattner65511ff2006-10-05 06:24:58 +00001263
Chris Lattner54865b32006-04-08 04:05:48 +00001264bool ExtractElementInst::isValidOperands(const Value *Val, const Value *Index) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001265 if (!Val->getType()->isVectorTy() || !Index->getType()->isIntegerTy(32))
Chris Lattner54865b32006-04-08 04:05:48 +00001266 return false;
1267 return true;
1268}
1269
1270
Robert Bocchino23004482006-01-10 19:05:34 +00001271//===----------------------------------------------------------------------===//
Robert Bocchinoca27f032006-01-17 20:07:22 +00001272// InsertElementInst Implementation
1273//===----------------------------------------------------------------------===//
1274
Chris Lattner54865b32006-04-08 04:05:48 +00001275InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001276 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001277 Instruction *InsertBef)
Gabor Greiff6caff662008-05-10 08:32:32 +00001278 : Instruction(Vec->getType(), InsertElement,
1279 OperandTraits<InsertElementInst>::op_begin(this),
1280 3, InsertBef) {
Chris Lattner54865b32006-04-08 04:05:48 +00001281 assert(isValidOperands(Vec, Elt, Index) &&
1282 "Invalid insertelement instruction operands!");
Gabor Greif2d3024d2008-05-26 21:33:52 +00001283 Op<0>() = Vec;
1284 Op<1>() = Elt;
1285 Op<2>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001286 setName(Name);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001287}
1288
Chris Lattner54865b32006-04-08 04:05:48 +00001289InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001290 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001291 BasicBlock *InsertAE)
Gabor Greiff6caff662008-05-10 08:32:32 +00001292 : Instruction(Vec->getType(), InsertElement,
1293 OperandTraits<InsertElementInst>::op_begin(this),
1294 3, InsertAE) {
Chris Lattner54865b32006-04-08 04:05:48 +00001295 assert(isValidOperands(Vec, Elt, Index) &&
1296 "Invalid insertelement instruction operands!");
1297
Gabor Greif2d3024d2008-05-26 21:33:52 +00001298 Op<0>() = Vec;
1299 Op<1>() = Elt;
1300 Op<2>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001301 setName(Name);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001302}
1303
Chris Lattner54865b32006-04-08 04:05:48 +00001304bool InsertElementInst::isValidOperands(const Value *Vec, const Value *Elt,
1305 const Value *Index) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001306 if (!Vec->getType()->isVectorTy())
Reid Spencer09575ba2007-02-15 03:39:18 +00001307 return false; // First operand of insertelement must be vector type.
Chris Lattner54865b32006-04-08 04:05:48 +00001308
Reid Spencerd84d35b2007-02-15 02:26:10 +00001309 if (Elt->getType() != cast<VectorType>(Vec->getType())->getElementType())
Dan Gohmanfead7972007-05-11 21:43:24 +00001310 return false;// Second operand of insertelement must be vector element type.
Chris Lattner54865b32006-04-08 04:05:48 +00001311
Duncan Sands9dff9be2010-02-15 16:12:20 +00001312 if (!Index->getType()->isIntegerTy(32))
Dan Gohman4fe64de2009-06-14 23:30:43 +00001313 return false; // Third operand of insertelement must be i32.
Chris Lattner54865b32006-04-08 04:05:48 +00001314 return true;
1315}
1316
1317
Robert Bocchinoca27f032006-01-17 20:07:22 +00001318//===----------------------------------------------------------------------===//
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001319// ShuffleVectorInst Implementation
1320//===----------------------------------------------------------------------===//
1321
1322ShuffleVectorInst::ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001323 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001324 Instruction *InsertBefore)
Owen Anderson4056ca92009-07-29 22:17:13 +00001325: Instruction(VectorType::get(cast<VectorType>(V1->getType())->getElementType(),
Mon P Wang25f01062008-11-10 04:46:22 +00001326 cast<VectorType>(Mask->getType())->getNumElements()),
1327 ShuffleVector,
1328 OperandTraits<ShuffleVectorInst>::op_begin(this),
1329 OperandTraits<ShuffleVectorInst>::operands(this),
1330 InsertBefore) {
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001331 assert(isValidOperands(V1, V2, Mask) &&
1332 "Invalid shuffle vector instruction operands!");
Gabor Greif2d3024d2008-05-26 21:33:52 +00001333 Op<0>() = V1;
1334 Op<1>() = V2;
1335 Op<2>() = Mask;
Chris Lattner2195fc42007-02-24 00:55:48 +00001336 setName(Name);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001337}
1338
1339ShuffleVectorInst::ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001340 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001341 BasicBlock *InsertAtEnd)
Dan Gohmane5af8cd2009-08-25 23:27:45 +00001342: Instruction(VectorType::get(cast<VectorType>(V1->getType())->getElementType(),
1343 cast<VectorType>(Mask->getType())->getNumElements()),
1344 ShuffleVector,
1345 OperandTraits<ShuffleVectorInst>::op_begin(this),
1346 OperandTraits<ShuffleVectorInst>::operands(this),
1347 InsertAtEnd) {
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001348 assert(isValidOperands(V1, V2, Mask) &&
1349 "Invalid shuffle vector instruction operands!");
1350
Gabor Greif2d3024d2008-05-26 21:33:52 +00001351 Op<0>() = V1;
1352 Op<1>() = V2;
1353 Op<2>() = Mask;
Chris Lattner2195fc42007-02-24 00:55:48 +00001354 setName(Name);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001355}
1356
Mon P Wang25f01062008-11-10 04:46:22 +00001357bool ShuffleVectorInst::isValidOperands(const Value *V1, const Value *V2,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001358 const Value *Mask) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001359 if (!V1->getType()->isVectorTy() || V1->getType() != V2->getType())
Chris Lattnerf724e342008-03-02 05:28:33 +00001360 return false;
1361
Chris Lattner229907c2011-07-18 04:54:35 +00001362 VectorType *MaskTy = dyn_cast<VectorType>(Mask->getType());
Nate Begeman60a31c32010-08-13 00:16:46 +00001363 if (MaskTy == 0 || !MaskTy->getElementType()->isIntegerTy(32))
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001364 return false;
Nate Begeman60a31c32010-08-13 00:16:46 +00001365
1366 // Check to see if Mask is valid.
1367 if (const ConstantVector *MV = dyn_cast<ConstantVector>(Mask)) {
Chris Lattner229907c2011-07-18 04:54:35 +00001368 VectorType *VTy = cast<VectorType>(V1->getType());
Nate Begeman60a31c32010-08-13 00:16:46 +00001369 for (unsigned i = 0, e = MV->getNumOperands(); i != e; ++i) {
1370 if (ConstantInt* CI = dyn_cast<ConstantInt>(MV->getOperand(i))) {
1371 if (CI->uge(VTy->getNumElements()*2))
1372 return false;
1373 } else if (!isa<UndefValue>(MV->getOperand(i))) {
1374 return false;
1375 }
1376 }
1377 }
1378 else if (!isa<UndefValue>(Mask) && !isa<ConstantAggregateZero>(Mask))
1379 return false;
1380
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001381 return true;
1382}
1383
Chris Lattnerf724e342008-03-02 05:28:33 +00001384/// getMaskValue - Return the index from the shuffle mask for the specified
1385/// output result. This is either -1 if the element is undef or a number less
1386/// than 2*numelements.
1387int ShuffleVectorInst::getMaskValue(unsigned i) const {
1388 const Constant *Mask = cast<Constant>(getOperand(2));
1389 if (isa<UndefValue>(Mask)) return -1;
1390 if (isa<ConstantAggregateZero>(Mask)) return 0;
1391 const ConstantVector *MaskCV = cast<ConstantVector>(Mask);
1392 assert(i < MaskCV->getNumOperands() && "Index out of range");
1393
1394 if (isa<UndefValue>(MaskCV->getOperand(i)))
1395 return -1;
1396 return cast<ConstantInt>(MaskCV->getOperand(i))->getZExtValue();
1397}
1398
Dan Gohman12fce772008-05-15 19:50:34 +00001399//===----------------------------------------------------------------------===//
Dan Gohman0752bff2008-05-23 00:36:11 +00001400// InsertValueInst Class
1401//===----------------------------------------------------------------------===//
1402
Jay Foad57aa6362011-07-13 10:26:04 +00001403void InsertValueInst::init(Value *Agg, Value *Val, ArrayRef<unsigned> Idxs,
1404 const Twine &Name) {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001405 assert(NumOperands == 2 && "NumOperands not initialized?");
Jay Foad57aa6362011-07-13 10:26:04 +00001406
1407 // There's no fundamental reason why we require at least one index
1408 // (other than weirdness with &*IdxBegin being invalid; see
1409 // getelementptr's init routine for example). But there's no
1410 // present need to support it.
1411 assert(Idxs.size() > 0 && "InsertValueInst must have at least one index");
1412
1413 assert(ExtractValueInst::getIndexedType(Agg->getType(), Idxs) ==
Frits van Bommel16ebe772010-12-05 20:50:26 +00001414 Val->getType() && "Inserted value must match indexed type!");
Dan Gohman1ecaf452008-05-31 00:58:22 +00001415 Op<0>() = Agg;
1416 Op<1>() = Val;
Dan Gohman0752bff2008-05-23 00:36:11 +00001417
Jay Foad57aa6362011-07-13 10:26:04 +00001418 Indices.append(Idxs.begin(), Idxs.end());
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001419 setName(Name);
Dan Gohman0752bff2008-05-23 00:36:11 +00001420}
1421
1422InsertValueInst::InsertValueInst(const InsertValueInst &IVI)
Gabor Greife9408e62008-05-27 11:03:29 +00001423 : Instruction(IVI.getType(), InsertValue,
Dan Gohman1ecaf452008-05-31 00:58:22 +00001424 OperandTraits<InsertValueInst>::op_begin(this), 2),
1425 Indices(IVI.Indices) {
Dan Gohmand8ca05f2008-06-17 23:25:49 +00001426 Op<0>() = IVI.getOperand(0);
1427 Op<1>() = IVI.getOperand(1);
Dan Gohmanc8a27f22009-08-25 22:11:20 +00001428 SubclassOptionalData = IVI.SubclassOptionalData;
Dan Gohman0752bff2008-05-23 00:36:11 +00001429}
1430
1431//===----------------------------------------------------------------------===//
Dan Gohman12fce772008-05-15 19:50:34 +00001432// ExtractValueInst Class
1433//===----------------------------------------------------------------------===//
1434
Jay Foad57aa6362011-07-13 10:26:04 +00001435void ExtractValueInst::init(ArrayRef<unsigned> Idxs, const Twine &Name) {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001436 assert(NumOperands == 1 && "NumOperands not initialized?");
Dan Gohman0752bff2008-05-23 00:36:11 +00001437
Jay Foad57aa6362011-07-13 10:26:04 +00001438 // There's no fundamental reason why we require at least one index.
1439 // But there's no present need to support it.
1440 assert(Idxs.size() > 0 && "ExtractValueInst must have at least one index");
Dan Gohman0752bff2008-05-23 00:36:11 +00001441
Jay Foad57aa6362011-07-13 10:26:04 +00001442 Indices.append(Idxs.begin(), Idxs.end());
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001443 setName(Name);
Dan Gohman0752bff2008-05-23 00:36:11 +00001444}
1445
1446ExtractValueInst::ExtractValueInst(const ExtractValueInst &EVI)
Gabor Greif21ba1842008-06-06 20:28:12 +00001447 : UnaryInstruction(EVI.getType(), ExtractValue, EVI.getOperand(0)),
Dan Gohman1ecaf452008-05-31 00:58:22 +00001448 Indices(EVI.Indices) {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00001449 SubclassOptionalData = EVI.SubclassOptionalData;
Dan Gohman0752bff2008-05-23 00:36:11 +00001450}
1451
Dan Gohman12fce772008-05-15 19:50:34 +00001452// getIndexedType - Returns the type of the element that would be extracted
1453// with an extractvalue instruction with the specified parameters.
1454//
1455// A null type is returned if the indices are invalid for the specified
1456// pointer type.
1457//
Chris Lattner229907c2011-07-18 04:54:35 +00001458Type *ExtractValueInst::getIndexedType(Type *Agg,
Jay Foad57aa6362011-07-13 10:26:04 +00001459 ArrayRef<unsigned> Idxs) {
1460 for (unsigned CurIdx = 0; CurIdx != Idxs.size(); ++CurIdx) {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001461 unsigned Index = Idxs[CurIdx];
Frits van Bommel16ebe772010-12-05 20:50:26 +00001462 // We can't use CompositeType::indexValid(Index) here.
1463 // indexValid() always returns true for arrays because getelementptr allows
1464 // out-of-bounds indices. Since we don't allow those for extractvalue and
1465 // insertvalue we need to check array indexing manually.
1466 // Since the only other types we can index into are struct types it's just
1467 // as easy to check those manually as well.
Chris Lattner229907c2011-07-18 04:54:35 +00001468 if (ArrayType *AT = dyn_cast<ArrayType>(Agg)) {
Frits van Bommel16ebe772010-12-05 20:50:26 +00001469 if (Index >= AT->getNumElements())
1470 return 0;
Chris Lattner229907c2011-07-18 04:54:35 +00001471 } else if (StructType *ST = dyn_cast<StructType>(Agg)) {
Frits van Bommel16ebe772010-12-05 20:50:26 +00001472 if (Index >= ST->getNumElements())
1473 return 0;
1474 } else {
1475 // Not a valid type to index into.
1476 return 0;
1477 }
1478
1479 Agg = cast<CompositeType>(Agg)->getTypeAtIndex(Index);
Dan Gohman12fce772008-05-15 19:50:34 +00001480 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001481 return const_cast<Type*>(Agg);
Dan Gohman12fce772008-05-15 19:50:34 +00001482}
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001483
1484//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001485// BinaryOperator Class
1486//===----------------------------------------------------------------------===//
1487
Chris Lattner2195fc42007-02-24 00:55:48 +00001488BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2,
Chris Lattner229907c2011-07-18 04:54:35 +00001489 Type *Ty, const Twine &Name,
Chris Lattner2195fc42007-02-24 00:55:48 +00001490 Instruction *InsertBefore)
Dan Gohmana2414ea2010-05-03 22:44:19 +00001491 : Instruction(Ty, iType,
Gabor Greiff6caff662008-05-10 08:32:32 +00001492 OperandTraits<BinaryOperator>::op_begin(this),
1493 OperandTraits<BinaryOperator>::operands(this),
1494 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001495 Op<0>() = S1;
1496 Op<1>() = S2;
Dan Gohmana2414ea2010-05-03 22:44:19 +00001497 init(iType);
Chris Lattner2195fc42007-02-24 00:55:48 +00001498 setName(Name);
1499}
1500
1501BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2,
Chris Lattner229907c2011-07-18 04:54:35 +00001502 Type *Ty, const Twine &Name,
Chris Lattner2195fc42007-02-24 00:55:48 +00001503 BasicBlock *InsertAtEnd)
Dan Gohmana2414ea2010-05-03 22:44:19 +00001504 : Instruction(Ty, iType,
Gabor Greiff6caff662008-05-10 08:32:32 +00001505 OperandTraits<BinaryOperator>::op_begin(this),
1506 OperandTraits<BinaryOperator>::operands(this),
1507 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001508 Op<0>() = S1;
1509 Op<1>() = S2;
Dan Gohmana2414ea2010-05-03 22:44:19 +00001510 init(iType);
Chris Lattner2195fc42007-02-24 00:55:48 +00001511 setName(Name);
1512}
1513
1514
1515void BinaryOperator::init(BinaryOps iType) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001516 Value *LHS = getOperand(0), *RHS = getOperand(1);
Jeffrey Yasskin9b43f332010-12-23 00:58:24 +00001517 (void)LHS; (void)RHS; // Silence warnings.
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001518 assert(LHS->getType() == RHS->getType() &&
1519 "Binary operator operand types must match!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001520#ifndef NDEBUG
1521 switch (iType) {
1522 case Add: case Sub:
Dan Gohmana5b96452009-06-04 22:49:04 +00001523 case Mul:
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001524 assert(getType() == LHS->getType() &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001525 "Arithmetic operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001526 assert(getType()->isIntOrIntVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001527 "Tried to create an integer operation on a non-integer type!");
1528 break;
1529 case FAdd: case FSub:
1530 case FMul:
1531 assert(getType() == LHS->getType() &&
1532 "Arithmetic operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001533 assert(getType()->isFPOrFPVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001534 "Tried to create a floating-point operation on a "
1535 "non-floating-point type!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001536 break;
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001537 case UDiv:
1538 case SDiv:
1539 assert(getType() == LHS->getType() &&
1540 "Arithmetic operation should return same type as operands!");
Duncan Sands19d0b472010-02-16 11:11:14 +00001541 assert((getType()->isIntegerTy() || (getType()->isVectorTy() &&
Duncan Sands9dff9be2010-02-15 16:12:20 +00001542 cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001543 "Incorrect operand type (not integer) for S/UDIV");
1544 break;
1545 case FDiv:
1546 assert(getType() == LHS->getType() &&
1547 "Arithmetic operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001548 assert(getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001549 "Incorrect operand type (not floating point) for FDIV");
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001550 break;
Reid Spencer7eb55b32006-11-02 01:53:59 +00001551 case URem:
1552 case SRem:
1553 assert(getType() == LHS->getType() &&
1554 "Arithmetic operation should return same type as operands!");
Duncan Sands19d0b472010-02-16 11:11:14 +00001555 assert((getType()->isIntegerTy() || (getType()->isVectorTy() &&
Duncan Sands9dff9be2010-02-15 16:12:20 +00001556 cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
Reid Spencer7eb55b32006-11-02 01:53:59 +00001557 "Incorrect operand type (not integer) for S/UREM");
1558 break;
1559 case FRem:
1560 assert(getType() == LHS->getType() &&
1561 "Arithmetic operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001562 assert(getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001563 "Incorrect operand type (not floating point) for FREM");
Reid Spencer7eb55b32006-11-02 01:53:59 +00001564 break;
Reid Spencer2341c222007-02-02 02:16:23 +00001565 case Shl:
1566 case LShr:
1567 case AShr:
1568 assert(getType() == LHS->getType() &&
1569 "Shift operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001570 assert((getType()->isIntegerTy() ||
Duncan Sands19d0b472010-02-16 11:11:14 +00001571 (getType()->isVectorTy() &&
Duncan Sands9dff9be2010-02-15 16:12:20 +00001572 cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
Nate Begemanfecbc8c2008-07-29 15:49:41 +00001573 "Tried to create a shift operation on a non-integral type!");
Reid Spencer2341c222007-02-02 02:16:23 +00001574 break;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001575 case And: case Or:
1576 case Xor:
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001577 assert(getType() == LHS->getType() &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001578 "Logical operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001579 assert((getType()->isIntegerTy() ||
Duncan Sands19d0b472010-02-16 11:11:14 +00001580 (getType()->isVectorTy() &&
Duncan Sands9dff9be2010-02-15 16:12:20 +00001581 cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
Misha Brukman3852f652005-01-27 06:46:38 +00001582 "Tried to create a logical operation on a non-integral type!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001583 break;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001584 default:
1585 break;
1586 }
1587#endif
1588}
1589
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001590BinaryOperator *BinaryOperator::Create(BinaryOps Op, Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001591 const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001592 Instruction *InsertBefore) {
1593 assert(S1->getType() == S2->getType() &&
1594 "Cannot create binary operator with two operands of differing type!");
Reid Spencer266e42b2006-12-23 06:05:41 +00001595 return new BinaryOperator(Op, S1, S2, S1->getType(), Name, InsertBefore);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001596}
1597
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001598BinaryOperator *BinaryOperator::Create(BinaryOps Op, Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001599 const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001600 BasicBlock *InsertAtEnd) {
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001601 BinaryOperator *Res = Create(Op, S1, S2, Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001602 InsertAtEnd->getInstList().push_back(Res);
1603 return Res;
1604}
1605
Dan Gohman5476cfd2009-08-12 16:23:25 +00001606BinaryOperator *BinaryOperator::CreateNeg(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001607 Instruction *InsertBefore) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001608 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Reid Spencer2eadb532007-01-21 00:29:26 +00001609 return new BinaryOperator(Instruction::Sub,
1610 zero, Op,
1611 Op->getType(), Name, InsertBefore);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001612}
1613
Dan Gohman5476cfd2009-08-12 16:23:25 +00001614BinaryOperator *BinaryOperator::CreateNeg(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001615 BasicBlock *InsertAtEnd) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001616 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Reid Spencer2eadb532007-01-21 00:29:26 +00001617 return new BinaryOperator(Instruction::Sub,
1618 zero, Op,
1619 Op->getType(), Name, InsertAtEnd);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001620}
1621
Dan Gohman4ab44202009-12-18 02:58:50 +00001622BinaryOperator *BinaryOperator::CreateNSWNeg(Value *Op, const Twine &Name,
1623 Instruction *InsertBefore) {
1624 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1625 return BinaryOperator::CreateNSWSub(zero, Op, Name, InsertBefore);
1626}
1627
1628BinaryOperator *BinaryOperator::CreateNSWNeg(Value *Op, const Twine &Name,
1629 BasicBlock *InsertAtEnd) {
1630 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1631 return BinaryOperator::CreateNSWSub(zero, Op, Name, InsertAtEnd);
1632}
1633
Duncan Sandsfa5f5962010-02-02 12:53:04 +00001634BinaryOperator *BinaryOperator::CreateNUWNeg(Value *Op, const Twine &Name,
1635 Instruction *InsertBefore) {
1636 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1637 return BinaryOperator::CreateNUWSub(zero, Op, Name, InsertBefore);
1638}
1639
1640BinaryOperator *BinaryOperator::CreateNUWNeg(Value *Op, const Twine &Name,
1641 BasicBlock *InsertAtEnd) {
1642 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1643 return BinaryOperator::CreateNUWSub(zero, Op, Name, InsertAtEnd);
1644}
1645
Dan Gohman5476cfd2009-08-12 16:23:25 +00001646BinaryOperator *BinaryOperator::CreateFNeg(Value *Op, const Twine &Name,
Dan Gohmana5b96452009-06-04 22:49:04 +00001647 Instruction *InsertBefore) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001648 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Dan Gohmana5b96452009-06-04 22:49:04 +00001649 return new BinaryOperator(Instruction::FSub,
1650 zero, Op,
1651 Op->getType(), Name, InsertBefore);
1652}
1653
Dan Gohman5476cfd2009-08-12 16:23:25 +00001654BinaryOperator *BinaryOperator::CreateFNeg(Value *Op, const Twine &Name,
Dan Gohmana5b96452009-06-04 22:49:04 +00001655 BasicBlock *InsertAtEnd) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001656 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Dan Gohmana5b96452009-06-04 22:49:04 +00001657 return new BinaryOperator(Instruction::FSub,
1658 zero, Op,
1659 Op->getType(), Name, InsertAtEnd);
1660}
1661
Dan Gohman5476cfd2009-08-12 16:23:25 +00001662BinaryOperator *BinaryOperator::CreateNot(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001663 Instruction *InsertBefore) {
Chris Lattnere8e7ac42006-03-25 21:54:21 +00001664 Constant *C;
Chris Lattner229907c2011-07-18 04:54:35 +00001665 if (VectorType *PTy = dyn_cast<VectorType>(Op->getType())) {
Owen Anderson5a1acd92009-07-31 20:28:14 +00001666 C = Constant::getAllOnesValue(PTy->getElementType());
Owen Anderson4aa32952009-07-28 21:19:26 +00001667 C = ConstantVector::get(
Owen Andersonf945a9e2009-07-15 21:51:10 +00001668 std::vector<Constant*>(PTy->getNumElements(), C));
Chris Lattnere8e7ac42006-03-25 21:54:21 +00001669 } else {
Owen Anderson5a1acd92009-07-31 20:28:14 +00001670 C = Constant::getAllOnesValue(Op->getType());
Chris Lattnere8e7ac42006-03-25 21:54:21 +00001671 }
1672
1673 return new BinaryOperator(Instruction::Xor, Op, C,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001674 Op->getType(), Name, InsertBefore);
1675}
1676
Dan Gohman5476cfd2009-08-12 16:23:25 +00001677BinaryOperator *BinaryOperator::CreateNot(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001678 BasicBlock *InsertAtEnd) {
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001679 Constant *AllOnes;
Chris Lattner229907c2011-07-18 04:54:35 +00001680 if (VectorType *PTy = dyn_cast<VectorType>(Op->getType())) {
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001681 // Create a vector of all ones values.
Owen Anderson5a1acd92009-07-31 20:28:14 +00001682 Constant *Elt = Constant::getAllOnesValue(PTy->getElementType());
Owen Anderson4aa32952009-07-28 21:19:26 +00001683 AllOnes = ConstantVector::get(
Owen Andersonf945a9e2009-07-15 21:51:10 +00001684 std::vector<Constant*>(PTy->getNumElements(), Elt));
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001685 } else {
Owen Anderson5a1acd92009-07-31 20:28:14 +00001686 AllOnes = Constant::getAllOnesValue(Op->getType());
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001687 }
1688
1689 return new BinaryOperator(Instruction::Xor, Op, AllOnes,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001690 Op->getType(), Name, InsertAtEnd);
1691}
1692
1693
1694// isConstantAllOnes - Helper function for several functions below
1695static inline bool isConstantAllOnes(const Value *V) {
Chris Lattner1edec382007-06-15 06:04:24 +00001696 if (const ConstantInt *CI = dyn_cast<ConstantInt>(V))
1697 return CI->isAllOnesValue();
1698 if (const ConstantVector *CV = dyn_cast<ConstantVector>(V))
1699 return CV->isAllOnesValue();
1700 return false;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001701}
1702
Owen Andersonbb2501b2009-07-13 22:18:28 +00001703bool BinaryOperator::isNeg(const Value *V) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001704 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1705 if (Bop->getOpcode() == Instruction::Sub)
Owen Andersonbb2501b2009-07-13 22:18:28 +00001706 if (Constant* C = dyn_cast<Constant>(Bop->getOperand(0)))
1707 return C->isNegativeZeroValue();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001708 return false;
1709}
1710
Owen Andersonbb2501b2009-07-13 22:18:28 +00001711bool BinaryOperator::isFNeg(const Value *V) {
Dan Gohmana5b96452009-06-04 22:49:04 +00001712 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1713 if (Bop->getOpcode() == Instruction::FSub)
Owen Andersonbb2501b2009-07-13 22:18:28 +00001714 if (Constant* C = dyn_cast<Constant>(Bop->getOperand(0)))
Dan Gohman11ff5702009-09-11 00:05:10 +00001715 return C->isNegativeZeroValue();
Dan Gohmana5b96452009-06-04 22:49:04 +00001716 return false;
1717}
1718
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001719bool BinaryOperator::isNot(const Value *V) {
1720 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1721 return (Bop->getOpcode() == Instruction::Xor &&
1722 (isConstantAllOnes(Bop->getOperand(1)) ||
1723 isConstantAllOnes(Bop->getOperand(0))));
1724 return false;
1725}
1726
Chris Lattner2c7d1772005-04-24 07:28:37 +00001727Value *BinaryOperator::getNegArgument(Value *BinOp) {
Chris Lattner2c7d1772005-04-24 07:28:37 +00001728 return cast<BinaryOperator>(BinOp)->getOperand(1);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001729}
1730
Chris Lattner2c7d1772005-04-24 07:28:37 +00001731const Value *BinaryOperator::getNegArgument(const Value *BinOp) {
1732 return getNegArgument(const_cast<Value*>(BinOp));
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001733}
1734
Dan Gohmana5b96452009-06-04 22:49:04 +00001735Value *BinaryOperator::getFNegArgument(Value *BinOp) {
Dan Gohmana5b96452009-06-04 22:49:04 +00001736 return cast<BinaryOperator>(BinOp)->getOperand(1);
1737}
1738
1739const Value *BinaryOperator::getFNegArgument(const Value *BinOp) {
1740 return getFNegArgument(const_cast<Value*>(BinOp));
1741}
1742
Chris Lattner2c7d1772005-04-24 07:28:37 +00001743Value *BinaryOperator::getNotArgument(Value *BinOp) {
1744 assert(isNot(BinOp) && "getNotArgument on non-'not' instruction!");
1745 BinaryOperator *BO = cast<BinaryOperator>(BinOp);
1746 Value *Op0 = BO->getOperand(0);
1747 Value *Op1 = BO->getOperand(1);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001748 if (isConstantAllOnes(Op0)) return Op1;
1749
1750 assert(isConstantAllOnes(Op1));
1751 return Op0;
1752}
1753
Chris Lattner2c7d1772005-04-24 07:28:37 +00001754const Value *BinaryOperator::getNotArgument(const Value *BinOp) {
1755 return getNotArgument(const_cast<Value*>(BinOp));
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001756}
1757
1758
1759// swapOperands - Exchange the two operands to this instruction. This
1760// instruction is safe to use on any binary instruction and does not
1761// modify the semantics of the instruction. If the instruction is
1762// order dependent (SetLT f.e.) the opcode is changed.
1763//
1764bool BinaryOperator::swapOperands() {
Reid Spencer266e42b2006-12-23 06:05:41 +00001765 if (!isCommutative())
1766 return true; // Can't commute operands
Gabor Greif5ef74042008-05-13 22:51:52 +00001767 Op<0>().swap(Op<1>());
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001768 return false;
1769}
1770
Dan Gohman1b849082009-09-07 23:54:19 +00001771void BinaryOperator::setHasNoUnsignedWrap(bool b) {
1772 cast<OverflowingBinaryOperator>(this)->setHasNoUnsignedWrap(b);
1773}
1774
1775void BinaryOperator::setHasNoSignedWrap(bool b) {
1776 cast<OverflowingBinaryOperator>(this)->setHasNoSignedWrap(b);
1777}
1778
1779void BinaryOperator::setIsExact(bool b) {
Chris Lattner35315d02011-02-06 21:44:57 +00001780 cast<PossiblyExactOperator>(this)->setIsExact(b);
Dan Gohman1b849082009-09-07 23:54:19 +00001781}
1782
Nick Lewycky28a5f252009-09-27 21:33:04 +00001783bool BinaryOperator::hasNoUnsignedWrap() const {
1784 return cast<OverflowingBinaryOperator>(this)->hasNoUnsignedWrap();
1785}
1786
1787bool BinaryOperator::hasNoSignedWrap() const {
1788 return cast<OverflowingBinaryOperator>(this)->hasNoSignedWrap();
1789}
1790
1791bool BinaryOperator::isExact() const {
Chris Lattner35315d02011-02-06 21:44:57 +00001792 return cast<PossiblyExactOperator>(this)->isExact();
Nick Lewycky28a5f252009-09-27 21:33:04 +00001793}
1794
Chris Lattnerb0b8ddd2006-09-18 04:54:57 +00001795//===----------------------------------------------------------------------===//
1796// CastInst Class
1797//===----------------------------------------------------------------------===//
1798
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001799// Just determine if this cast only deals with integral->integral conversion.
1800bool CastInst::isIntegerCast() const {
1801 switch (getOpcode()) {
1802 default: return false;
1803 case Instruction::ZExt:
1804 case Instruction::SExt:
1805 case Instruction::Trunc:
1806 return true;
1807 case Instruction::BitCast:
Duncan Sands9dff9be2010-02-15 16:12:20 +00001808 return getOperand(0)->getType()->isIntegerTy() &&
1809 getType()->isIntegerTy();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001810 }
Chris Lattnerb0b8ddd2006-09-18 04:54:57 +00001811}
1812
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001813bool CastInst::isLosslessCast() const {
1814 // Only BitCast can be lossless, exit fast if we're not BitCast
1815 if (getOpcode() != Instruction::BitCast)
1816 return false;
1817
1818 // Identity cast is always lossless
Chris Lattner229907c2011-07-18 04:54:35 +00001819 Type* SrcTy = getOperand(0)->getType();
1820 Type* DstTy = getType();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001821 if (SrcTy == DstTy)
1822 return true;
1823
Reid Spencer8d9336d2006-12-31 05:26:44 +00001824 // Pointer to pointer is always lossless.
Duncan Sands19d0b472010-02-16 11:11:14 +00001825 if (SrcTy->isPointerTy())
1826 return DstTy->isPointerTy();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001827 return false; // Other types have no identity values
1828}
1829
1830/// This function determines if the CastInst does not require any bits to be
1831/// changed in order to effect the cast. Essentially, it identifies cases where
1832/// no code gen is necessary for the cast, hence the name no-op cast. For
1833/// example, the following are all no-op casts:
Dan Gohmane9bc2ba2008-05-12 16:34:30 +00001834/// # bitcast i32* %x to i8*
1835/// # bitcast <2 x i32> %x to <4 x i16>
1836/// # ptrtoint i32* %x to i32 ; on 32-bit plaforms only
Dan Gohman0d7f3b82010-05-28 21:41:37 +00001837/// @brief Determine if the described cast is a no-op.
1838bool CastInst::isNoopCast(Instruction::CastOps Opcode,
Chris Lattner229907c2011-07-18 04:54:35 +00001839 Type *SrcTy,
1840 Type *DestTy,
1841 Type *IntPtrTy) {
Dan Gohman0d7f3b82010-05-28 21:41:37 +00001842 switch (Opcode) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001843 default:
1844 assert(!"Invalid CastOp");
1845 case Instruction::Trunc:
1846 case Instruction::ZExt:
1847 case Instruction::SExt:
1848 case Instruction::FPTrunc:
1849 case Instruction::FPExt:
1850 case Instruction::UIToFP:
1851 case Instruction::SIToFP:
1852 case Instruction::FPToUI:
1853 case Instruction::FPToSI:
1854 return false; // These always modify bits
1855 case Instruction::BitCast:
1856 return true; // BitCast never modifies bits.
1857 case Instruction::PtrToInt:
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001858 return IntPtrTy->getScalarSizeInBits() ==
Dan Gohman0d7f3b82010-05-28 21:41:37 +00001859 DestTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001860 case Instruction::IntToPtr:
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001861 return IntPtrTy->getScalarSizeInBits() ==
Dan Gohman0d7f3b82010-05-28 21:41:37 +00001862 SrcTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001863 }
1864}
1865
Dan Gohman0d7f3b82010-05-28 21:41:37 +00001866/// @brief Determine if a cast is a no-op.
Chris Lattner229907c2011-07-18 04:54:35 +00001867bool CastInst::isNoopCast(Type *IntPtrTy) const {
Dan Gohman0d7f3b82010-05-28 21:41:37 +00001868 return isNoopCast(getOpcode(), getOperand(0)->getType(), getType(), IntPtrTy);
1869}
1870
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001871/// This function determines if a pair of casts can be eliminated and what
1872/// opcode should be used in the elimination. This assumes that there are two
1873/// instructions like this:
1874/// * %F = firstOpcode SrcTy %x to MidTy
1875/// * %S = secondOpcode MidTy %F to DstTy
1876/// The function returns a resultOpcode so these two casts can be replaced with:
1877/// * %Replacement = resultOpcode %SrcTy %x to DstTy
1878/// If no such cast is permited, the function returns 0.
1879unsigned CastInst::isEliminableCastPair(
1880 Instruction::CastOps firstOp, Instruction::CastOps secondOp,
Chris Lattner229907c2011-07-18 04:54:35 +00001881 Type *SrcTy, Type *MidTy, Type *DstTy, Type *IntPtrTy)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001882{
1883 // Define the 144 possibilities for these two cast instructions. The values
1884 // in this matrix determine what to do in a given situation and select the
1885 // case in the switch below. The rows correspond to firstOp, the columns
1886 // correspond to secondOp. In looking at the table below, keep in mind
1887 // the following cast properties:
1888 //
1889 // Size Compare Source Destination
1890 // Operator Src ? Size Type Sign Type Sign
1891 // -------- ------------ ------------------- ---------------------
1892 // TRUNC > Integer Any Integral Any
1893 // ZEXT < Integral Unsigned Integer Any
1894 // SEXT < Integral Signed Integer Any
1895 // FPTOUI n/a FloatPt n/a Integral Unsigned
1896 // FPTOSI n/a FloatPt n/a Integral Signed
1897 // UITOFP n/a Integral Unsigned FloatPt n/a
1898 // SITOFP n/a Integral Signed FloatPt n/a
1899 // FPTRUNC > FloatPt n/a FloatPt n/a
1900 // FPEXT < FloatPt n/a FloatPt n/a
1901 // PTRTOINT n/a Pointer n/a Integral Unsigned
1902 // INTTOPTR n/a Integral Unsigned Pointer n/a
Dan Gohmaneb7111b2010-04-07 23:22:42 +00001903 // BITCAST = FirstClass n/a FirstClass n/a
Chris Lattner6f6b4972006-12-05 23:43:59 +00001904 //
1905 // NOTE: some transforms are safe, but we consider them to be non-profitable.
Dan Gohman4fe64de2009-06-14 23:30:43 +00001906 // For example, we could merge "fptoui double to i32" + "zext i32 to i64",
1907 // into "fptoui double to i64", but this loses information about the range
Chris Lattner6f6b4972006-12-05 23:43:59 +00001908 // of the produced value (we no longer know the top-part is all zeros).
1909 // Further this conversion is often much more expensive for typical hardware,
1910 // and causes issues when building libgcc. We disallow fptosi+sext for the
1911 // same reason.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001912 const unsigned numCastOps =
1913 Instruction::CastOpsEnd - Instruction::CastOpsBegin;
1914 static const uint8_t CastResults[numCastOps][numCastOps] = {
1915 // T F F U S F F P I B -+
1916 // R Z S P P I I T P 2 N T |
1917 // U E E 2 2 2 2 R E I T C +- secondOp
1918 // N X X U S F F N X N 2 V |
1919 // C T T I I P P C T T P T -+
1920 { 1, 0, 0,99,99, 0, 0,99,99,99, 0, 3 }, // Trunc -+
1921 { 8, 1, 9,99,99, 2, 0,99,99,99, 2, 3 }, // ZExt |
1922 { 8, 0, 1,99,99, 0, 2,99,99,99, 0, 3 }, // SExt |
Chris Lattner6f6b4972006-12-05 23:43:59 +00001923 { 0, 0, 0,99,99, 0, 0,99,99,99, 0, 3 }, // FPToUI |
1924 { 0, 0, 0,99,99, 0, 0,99,99,99, 0, 3 }, // FPToSI |
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001925 { 99,99,99, 0, 0,99,99, 0, 0,99,99, 4 }, // UIToFP +- firstOp
1926 { 99,99,99, 0, 0,99,99, 0, 0,99,99, 4 }, // SIToFP |
1927 { 99,99,99, 0, 0,99,99, 1, 0,99,99, 4 }, // FPTrunc |
1928 { 99,99,99, 2, 2,99,99,10, 2,99,99, 4 }, // FPExt |
1929 { 1, 0, 0,99,99, 0, 0,99,99,99, 7, 3 }, // PtrToInt |
1930 { 99,99,99,99,99,99,99,99,99,13,99,12 }, // IntToPtr |
1931 { 5, 5, 5, 6, 6, 5, 5, 6, 6,11, 5, 1 }, // BitCast -+
1932 };
Chris Lattner25eea4d2010-07-12 01:19:22 +00001933
1934 // If either of the casts are a bitcast from scalar to vector, disallow the
1935 // merging.
1936 if ((firstOp == Instruction::BitCast &&
1937 isa<VectorType>(SrcTy) != isa<VectorType>(MidTy)) ||
1938 (secondOp == Instruction::BitCast &&
1939 isa<VectorType>(MidTy) != isa<VectorType>(DstTy)))
1940 return 0; // Disallowed
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001941
1942 int ElimCase = CastResults[firstOp-Instruction::CastOpsBegin]
1943 [secondOp-Instruction::CastOpsBegin];
1944 switch (ElimCase) {
1945 case 0:
1946 // categorically disallowed
1947 return 0;
1948 case 1:
1949 // allowed, use first cast's opcode
1950 return firstOp;
1951 case 2:
1952 // allowed, use second cast's opcode
1953 return secondOp;
1954 case 3:
1955 // no-op cast in second op implies firstOp as long as the DestTy
Mon P Wange04b4562010-01-23 04:35:57 +00001956 // is integer and we are not converting between a vector and a
Chris Lattner531732b2010-01-23 04:42:42 +00001957 // non vector type.
Duncan Sands19d0b472010-02-16 11:11:14 +00001958 if (!SrcTy->isVectorTy() && DstTy->isIntegerTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001959 return firstOp;
1960 return 0;
1961 case 4:
1962 // no-op cast in second op implies firstOp as long as the DestTy
Chris Lattner531732b2010-01-23 04:42:42 +00001963 // is floating point.
Duncan Sands9dff9be2010-02-15 16:12:20 +00001964 if (DstTy->isFloatingPointTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001965 return firstOp;
1966 return 0;
1967 case 5:
1968 // no-op cast in first op implies secondOp as long as the SrcTy
Chris Lattner531732b2010-01-23 04:42:42 +00001969 // is an integer.
Duncan Sands9dff9be2010-02-15 16:12:20 +00001970 if (SrcTy->isIntegerTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001971 return secondOp;
1972 return 0;
1973 case 6:
1974 // no-op cast in first op implies secondOp as long as the SrcTy
Chris Lattner531732b2010-01-23 04:42:42 +00001975 // is a floating point.
Duncan Sands9dff9be2010-02-15 16:12:20 +00001976 if (SrcTy->isFloatingPointTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001977 return secondOp;
1978 return 0;
1979 case 7: {
1980 // ptrtoint, inttoptr -> bitcast (ptr -> ptr) if int size is >= ptr size
Dan Gohman9413de12009-07-21 23:19:40 +00001981 if (!IntPtrTy)
1982 return 0;
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001983 unsigned PtrSize = IntPtrTy->getScalarSizeInBits();
1984 unsigned MidSize = MidTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001985 if (MidSize >= PtrSize)
1986 return Instruction::BitCast;
1987 return 0;
1988 }
1989 case 8: {
1990 // ext, trunc -> bitcast, if the SrcTy and DstTy are same size
1991 // ext, trunc -> ext, if sizeof(SrcTy) < sizeof(DstTy)
1992 // ext, trunc -> trunc, if sizeof(SrcTy) > sizeof(DstTy)
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001993 unsigned SrcSize = SrcTy->getScalarSizeInBits();
1994 unsigned DstSize = DstTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001995 if (SrcSize == DstSize)
1996 return Instruction::BitCast;
1997 else if (SrcSize < DstSize)
1998 return firstOp;
1999 return secondOp;
2000 }
2001 case 9: // zext, sext -> zext, because sext can't sign extend after zext
2002 return Instruction::ZExt;
2003 case 10:
2004 // fpext followed by ftrunc is allowed if the bit size returned to is
2005 // the same as the original, in which case its just a bitcast
2006 if (SrcTy == DstTy)
2007 return Instruction::BitCast;
2008 return 0; // If the types are not the same we can't eliminate it.
2009 case 11:
2010 // bitcast followed by ptrtoint is allowed as long as the bitcast
2011 // is a pointer to pointer cast.
Duncan Sands19d0b472010-02-16 11:11:14 +00002012 if (SrcTy->isPointerTy() && MidTy->isPointerTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002013 return secondOp;
2014 return 0;
2015 case 12:
2016 // inttoptr, bitcast -> intptr if bitcast is a ptr to ptr cast
Duncan Sands19d0b472010-02-16 11:11:14 +00002017 if (MidTy->isPointerTy() && DstTy->isPointerTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002018 return firstOp;
2019 return 0;
2020 case 13: {
2021 // inttoptr, ptrtoint -> bitcast if SrcSize<=PtrSize and SrcSize==DstSize
Dan Gohman9413de12009-07-21 23:19:40 +00002022 if (!IntPtrTy)
2023 return 0;
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002024 unsigned PtrSize = IntPtrTy->getScalarSizeInBits();
2025 unsigned SrcSize = SrcTy->getScalarSizeInBits();
2026 unsigned DstSize = DstTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002027 if (SrcSize <= PtrSize && SrcSize == DstSize)
2028 return Instruction::BitCast;
2029 return 0;
2030 }
2031 case 99:
2032 // cast combination can't happen (error in input). This is for all cases
2033 // where the MidTy is not the same for the two cast instructions.
2034 assert(!"Invalid Cast Combination");
2035 return 0;
2036 default:
2037 assert(!"Error in CastResults table!!!");
2038 return 0;
2039 }
2040 return 0;
2041}
2042
Chris Lattner229907c2011-07-18 04:54:35 +00002043CastInst *CastInst::Create(Instruction::CastOps op, Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002044 const Twine &Name, Instruction *InsertBefore) {
Duncan Sands7f646562011-05-18 09:21:57 +00002045 assert(castIsValid(op, S, Ty) && "Invalid cast!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002046 // Construct and return the appropriate CastInst subclass
2047 switch (op) {
2048 case Trunc: return new TruncInst (S, Ty, Name, InsertBefore);
2049 case ZExt: return new ZExtInst (S, Ty, Name, InsertBefore);
2050 case SExt: return new SExtInst (S, Ty, Name, InsertBefore);
2051 case FPTrunc: return new FPTruncInst (S, Ty, Name, InsertBefore);
2052 case FPExt: return new FPExtInst (S, Ty, Name, InsertBefore);
2053 case UIToFP: return new UIToFPInst (S, Ty, Name, InsertBefore);
2054 case SIToFP: return new SIToFPInst (S, Ty, Name, InsertBefore);
2055 case FPToUI: return new FPToUIInst (S, Ty, Name, InsertBefore);
2056 case FPToSI: return new FPToSIInst (S, Ty, Name, InsertBefore);
2057 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertBefore);
2058 case IntToPtr: return new IntToPtrInst (S, Ty, Name, InsertBefore);
2059 case BitCast: return new BitCastInst (S, Ty, Name, InsertBefore);
2060 default:
2061 assert(!"Invalid opcode provided");
2062 }
2063 return 0;
2064}
2065
Chris Lattner229907c2011-07-18 04:54:35 +00002066CastInst *CastInst::Create(Instruction::CastOps op, Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002067 const Twine &Name, BasicBlock *InsertAtEnd) {
Duncan Sands7f646562011-05-18 09:21:57 +00002068 assert(castIsValid(op, S, Ty) && "Invalid cast!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002069 // Construct and return the appropriate CastInst subclass
2070 switch (op) {
2071 case Trunc: return new TruncInst (S, Ty, Name, InsertAtEnd);
2072 case ZExt: return new ZExtInst (S, Ty, Name, InsertAtEnd);
2073 case SExt: return new SExtInst (S, Ty, Name, InsertAtEnd);
2074 case FPTrunc: return new FPTruncInst (S, Ty, Name, InsertAtEnd);
2075 case FPExt: return new FPExtInst (S, Ty, Name, InsertAtEnd);
2076 case UIToFP: return new UIToFPInst (S, Ty, Name, InsertAtEnd);
2077 case SIToFP: return new SIToFPInst (S, Ty, Name, InsertAtEnd);
2078 case FPToUI: return new FPToUIInst (S, Ty, Name, InsertAtEnd);
2079 case FPToSI: return new FPToSIInst (S, Ty, Name, InsertAtEnd);
2080 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertAtEnd);
2081 case IntToPtr: return new IntToPtrInst (S, Ty, Name, InsertAtEnd);
2082 case BitCast: return new BitCastInst (S, Ty, Name, InsertAtEnd);
2083 default:
2084 assert(!"Invalid opcode provided");
2085 }
2086 return 0;
2087}
2088
Chris Lattner229907c2011-07-18 04:54:35 +00002089CastInst *CastInst::CreateZExtOrBitCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002090 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002091 Instruction *InsertBefore) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002092 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002093 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
2094 return Create(Instruction::ZExt, S, Ty, Name, InsertBefore);
Reid Spencer5c140882006-12-04 20:17:56 +00002095}
2096
Chris Lattner229907c2011-07-18 04:54:35 +00002097CastInst *CastInst::CreateZExtOrBitCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002098 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002099 BasicBlock *InsertAtEnd) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002100 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002101 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
2102 return Create(Instruction::ZExt, S, Ty, Name, InsertAtEnd);
Reid Spencer5c140882006-12-04 20:17:56 +00002103}
2104
Chris Lattner229907c2011-07-18 04:54:35 +00002105CastInst *CastInst::CreateSExtOrBitCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002106 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002107 Instruction *InsertBefore) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002108 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002109 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
2110 return Create(Instruction::SExt, S, Ty, Name, InsertBefore);
Reid Spencer5c140882006-12-04 20:17:56 +00002111}
2112
Chris Lattner229907c2011-07-18 04:54:35 +00002113CastInst *CastInst::CreateSExtOrBitCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002114 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002115 BasicBlock *InsertAtEnd) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002116 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002117 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
2118 return Create(Instruction::SExt, S, Ty, Name, InsertAtEnd);
Reid Spencer5c140882006-12-04 20:17:56 +00002119}
2120
Chris Lattner229907c2011-07-18 04:54:35 +00002121CastInst *CastInst::CreateTruncOrBitCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002122 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002123 Instruction *InsertBefore) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002124 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002125 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
2126 return Create(Instruction::Trunc, S, Ty, Name, InsertBefore);
Reid Spencer5c140882006-12-04 20:17:56 +00002127}
2128
Chris Lattner229907c2011-07-18 04:54:35 +00002129CastInst *CastInst::CreateTruncOrBitCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002130 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002131 BasicBlock *InsertAtEnd) {
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, InsertAtEnd);
2134 return Create(Instruction::Trunc, S, Ty, Name, InsertAtEnd);
Reid Spencer5c140882006-12-04 20:17:56 +00002135}
2136
Chris Lattner229907c2011-07-18 04:54:35 +00002137CastInst *CastInst::CreatePointerCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002138 const Twine &Name,
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002139 BasicBlock *InsertAtEnd) {
Duncan Sands19d0b472010-02-16 11:11:14 +00002140 assert(S->getType()->isPointerTy() && "Invalid cast");
2141 assert((Ty->isIntegerTy() || Ty->isPointerTy()) &&
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002142 "Invalid cast");
2143
Duncan Sands9dff9be2010-02-15 16:12:20 +00002144 if (Ty->isIntegerTy())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002145 return Create(Instruction::PtrToInt, S, Ty, Name, InsertAtEnd);
2146 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002147}
2148
2149/// @brief Create a BitCast or a PtrToInt cast instruction
Chris Lattner229907c2011-07-18 04:54:35 +00002150CastInst *CastInst::CreatePointerCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002151 const Twine &Name,
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002152 Instruction *InsertBefore) {
Duncan Sands19d0b472010-02-16 11:11:14 +00002153 assert(S->getType()->isPointerTy() && "Invalid cast");
2154 assert((Ty->isIntegerTy() || Ty->isPointerTy()) &&
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002155 "Invalid cast");
2156
Duncan Sands9dff9be2010-02-15 16:12:20 +00002157 if (Ty->isIntegerTy())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002158 return Create(Instruction::PtrToInt, S, Ty, Name, InsertBefore);
2159 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002160}
2161
Chris Lattner229907c2011-07-18 04:54:35 +00002162CastInst *CastInst::CreateIntegerCast(Value *C, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002163 bool isSigned, const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002164 Instruction *InsertBefore) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002165 assert(C->getType()->isIntOrIntVectorTy() && Ty->isIntOrIntVectorTy() &&
Chris Lattner5370ae72010-01-10 20:21:42 +00002166 "Invalid integer cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002167 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2168 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002169 Instruction::CastOps opcode =
2170 (SrcBits == DstBits ? Instruction::BitCast :
2171 (SrcBits > DstBits ? Instruction::Trunc :
2172 (isSigned ? Instruction::SExt : Instruction::ZExt)));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002173 return Create(opcode, C, Ty, Name, InsertBefore);
Reid Spencer7e933472006-12-12 00:49:44 +00002174}
2175
Chris Lattner229907c2011-07-18 04:54:35 +00002176CastInst *CastInst::CreateIntegerCast(Value *C, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002177 bool isSigned, const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002178 BasicBlock *InsertAtEnd) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002179 assert(C->getType()->isIntOrIntVectorTy() && Ty->isIntOrIntVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00002180 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002181 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2182 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002183 Instruction::CastOps opcode =
2184 (SrcBits == DstBits ? Instruction::BitCast :
2185 (SrcBits > DstBits ? Instruction::Trunc :
2186 (isSigned ? Instruction::SExt : Instruction::ZExt)));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002187 return Create(opcode, C, Ty, Name, InsertAtEnd);
Reid Spencer7e933472006-12-12 00:49:44 +00002188}
2189
Chris Lattner229907c2011-07-18 04:54:35 +00002190CastInst *CastInst::CreateFPCast(Value *C, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002191 const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002192 Instruction *InsertBefore) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002193 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer7e933472006-12-12 00:49:44 +00002194 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002195 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2196 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002197 Instruction::CastOps opcode =
2198 (SrcBits == DstBits ? Instruction::BitCast :
2199 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002200 return Create(opcode, C, Ty, Name, InsertBefore);
Reid Spencer7e933472006-12-12 00:49:44 +00002201}
2202
Chris Lattner229907c2011-07-18 04:54:35 +00002203CastInst *CastInst::CreateFPCast(Value *C, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002204 const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002205 BasicBlock *InsertAtEnd) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002206 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer7e933472006-12-12 00:49:44 +00002207 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002208 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2209 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002210 Instruction::CastOps opcode =
2211 (SrcBits == DstBits ? Instruction::BitCast :
2212 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002213 return Create(opcode, C, Ty, Name, InsertAtEnd);
Reid Spencer7e933472006-12-12 00:49:44 +00002214}
2215
Duncan Sands55e50902008-01-06 10:12:28 +00002216// Check whether it is valid to call getCastOpcode for these types.
2217// This routine must be kept in sync with getCastOpcode.
Chris Lattner229907c2011-07-18 04:54:35 +00002218bool CastInst::isCastable(Type *SrcTy, Type *DestTy) {
Duncan Sands55e50902008-01-06 10:12:28 +00002219 if (!SrcTy->isFirstClassType() || !DestTy->isFirstClassType())
2220 return false;
2221
2222 if (SrcTy == DestTy)
2223 return true;
2224
Chris Lattner229907c2011-07-18 04:54:35 +00002225 if (VectorType *SrcVecTy = dyn_cast<VectorType>(SrcTy))
2226 if (VectorType *DestVecTy = dyn_cast<VectorType>(DestTy))
Duncan Sandsa8514532011-05-18 07:13:41 +00002227 if (SrcVecTy->getNumElements() == DestVecTy->getNumElements()) {
2228 // An element by element cast. Valid if casting the elements is valid.
2229 SrcTy = SrcVecTy->getElementType();
2230 DestTy = DestVecTy->getElementType();
2231 }
2232
Duncan Sands55e50902008-01-06 10:12:28 +00002233 // Get the bit sizes, we'll need these
Duncan Sands7f646562011-05-18 09:21:57 +00002234 unsigned SrcBits = SrcTy->getPrimitiveSizeInBits(); // 0 for ptr
2235 unsigned DestBits = DestTy->getPrimitiveSizeInBits(); // 0 for ptr
Duncan Sands55e50902008-01-06 10:12:28 +00002236
2237 // Run through the possibilities ...
Duncan Sands27bd0df2011-05-18 10:59:25 +00002238 if (DestTy->isIntegerTy()) { // Casting to integral
2239 if (SrcTy->isIntegerTy()) { // Casting from integral
Duncan Sands55e50902008-01-06 10:12:28 +00002240 return true;
Duncan Sands27bd0df2011-05-18 10:59:25 +00002241 } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt
Duncan Sands55e50902008-01-06 10:12:28 +00002242 return true;
Duncan Sands27bd0df2011-05-18 10:59:25 +00002243 } else if (SrcTy->isVectorTy()) { // Casting from vector
2244 return DestBits == SrcBits;
Gabor Greif697e94c2008-05-15 10:04:30 +00002245 } else { // Casting from something else
Duncan Sands19d0b472010-02-16 11:11:14 +00002246 return SrcTy->isPointerTy();
Duncan Sands55e50902008-01-06 10:12:28 +00002247 }
Duncan Sands27bd0df2011-05-18 10:59:25 +00002248 } else if (DestTy->isFloatingPointTy()) { // Casting to floating pt
2249 if (SrcTy->isIntegerTy()) { // Casting from integral
Duncan Sands55e50902008-01-06 10:12:28 +00002250 return true;
Duncan Sands27bd0df2011-05-18 10:59:25 +00002251 } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt
Duncan Sands55e50902008-01-06 10:12:28 +00002252 return true;
Duncan Sands27bd0df2011-05-18 10:59:25 +00002253 } else if (SrcTy->isVectorTy()) { // Casting from vector
2254 return DestBits == SrcBits;
Gabor Greif697e94c2008-05-15 10:04:30 +00002255 } else { // Casting from something else
Duncan Sands55e50902008-01-06 10:12:28 +00002256 return false;
2257 }
Duncan Sands27bd0df2011-05-18 10:59:25 +00002258 } else if (DestTy->isVectorTy()) { // Casting to vector
2259 return DestBits == SrcBits;
Duncan Sands19d0b472010-02-16 11:11:14 +00002260 } else if (DestTy->isPointerTy()) { // Casting to pointer
Duncan Sands27bd0df2011-05-18 10:59:25 +00002261 if (SrcTy->isPointerTy()) { // Casting from pointer
Duncan Sands55e50902008-01-06 10:12:28 +00002262 return true;
Duncan Sands27bd0df2011-05-18 10:59:25 +00002263 } else if (SrcTy->isIntegerTy()) { // Casting from integral
Duncan Sands55e50902008-01-06 10:12:28 +00002264 return true;
Duncan Sands27bd0df2011-05-18 10:59:25 +00002265 } else { // Casting from something else
Duncan Sands55e50902008-01-06 10:12:28 +00002266 return false;
2267 }
Duncan Sands2d3cdd62011-04-01 03:34:54 +00002268 } else if (DestTy->isX86_MMXTy()) {
Duncan Sands27bd0df2011-05-18 10:59:25 +00002269 if (SrcTy->isVectorTy()) {
2270 return DestBits == SrcBits; // 64-bit vector to MMX
Duncan Sands2d3cdd62011-04-01 03:34:54 +00002271 } else {
2272 return false;
2273 }
Duncan Sands27bd0df2011-05-18 10:59:25 +00002274 } else { // Casting to something else
Duncan Sands55e50902008-01-06 10:12:28 +00002275 return false;
2276 }
2277}
2278
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002279// Provide a way to get a "cast" where the cast opcode is inferred from the
2280// types and size of the operand. This, basically, is a parallel of the
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002281// logic in the castIsValid function below. This axiom should hold:
2282// castIsValid( getCastOpcode(Val, Ty), Val, Ty)
2283// should not assert in castIsValid. In other words, this produces a "correct"
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002284// casting opcode for the arguments passed to it.
Duncan Sands55e50902008-01-06 10:12:28 +00002285// This routine must be kept in sync with isCastable.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002286Instruction::CastOps
Reid Spencerc4dacf22006-12-04 02:43:42 +00002287CastInst::getCastOpcode(
Chris Lattner229907c2011-07-18 04:54:35 +00002288 const Value *Src, bool SrcIsSigned, Type *DestTy, bool DestIsSigned) {
2289 Type *SrcTy = Src->getType();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002290
Duncan Sands55e50902008-01-06 10:12:28 +00002291 assert(SrcTy->isFirstClassType() && DestTy->isFirstClassType() &&
2292 "Only first class types are castable!");
2293
Duncan Sandsa8514532011-05-18 07:13:41 +00002294 if (SrcTy == DestTy)
2295 return BitCast;
2296
Chris Lattner229907c2011-07-18 04:54:35 +00002297 if (VectorType *SrcVecTy = dyn_cast<VectorType>(SrcTy))
2298 if (VectorType *DestVecTy = dyn_cast<VectorType>(DestTy))
Duncan Sandsa8514532011-05-18 07:13:41 +00002299 if (SrcVecTy->getNumElements() == DestVecTy->getNumElements()) {
2300 // An element by element cast. Find the appropriate opcode based on the
2301 // element types.
2302 SrcTy = SrcVecTy->getElementType();
2303 DestTy = DestVecTy->getElementType();
2304 }
2305
2306 // Get the bit sizes, we'll need these
Duncan Sands7f646562011-05-18 09:21:57 +00002307 unsigned SrcBits = SrcTy->getPrimitiveSizeInBits(); // 0 for ptr
2308 unsigned DestBits = DestTy->getPrimitiveSizeInBits(); // 0 for ptr
Duncan Sandsa8514532011-05-18 07:13:41 +00002309
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002310 // Run through the possibilities ...
Duncan Sands9dff9be2010-02-15 16:12:20 +00002311 if (DestTy->isIntegerTy()) { // Casting to integral
2312 if (SrcTy->isIntegerTy()) { // Casting from integral
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002313 if (DestBits < SrcBits)
2314 return Trunc; // int -> smaller int
2315 else if (DestBits > SrcBits) { // its an extension
Reid Spencerc4dacf22006-12-04 02:43:42 +00002316 if (SrcIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002317 return SExt; // signed -> SEXT
2318 else
2319 return ZExt; // unsigned -> ZEXT
2320 } else {
2321 return BitCast; // Same size, No-op cast
2322 }
Duncan Sands9dff9be2010-02-15 16:12:20 +00002323 } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt
Reid Spencerc4dacf22006-12-04 02:43:42 +00002324 if (DestIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002325 return FPToSI; // FP -> sint
2326 else
2327 return FPToUI; // FP -> uint
Duncan Sands27bd0df2011-05-18 10:59:25 +00002328 } else if (SrcTy->isVectorTy()) {
2329 assert(DestBits == SrcBits &&
2330 "Casting vector to integer of different width");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002331 return BitCast; // Same size, no-op cast
2332 } else {
Duncan Sands19d0b472010-02-16 11:11:14 +00002333 assert(SrcTy->isPointerTy() &&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002334 "Casting from a value that is not first-class type");
2335 return PtrToInt; // ptr -> int
2336 }
Duncan Sands9dff9be2010-02-15 16:12:20 +00002337 } else if (DestTy->isFloatingPointTy()) { // Casting to floating pt
2338 if (SrcTy->isIntegerTy()) { // Casting from integral
Reid Spencerc4dacf22006-12-04 02:43:42 +00002339 if (SrcIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002340 return SIToFP; // sint -> FP
2341 else
2342 return UIToFP; // uint -> FP
Duncan Sands9dff9be2010-02-15 16:12:20 +00002343 } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002344 if (DestBits < SrcBits) {
2345 return FPTrunc; // FP -> smaller FP
2346 } else if (DestBits > SrcBits) {
2347 return FPExt; // FP -> larger FP
2348 } else {
2349 return BitCast; // same size, no-op cast
2350 }
Duncan Sands27bd0df2011-05-18 10:59:25 +00002351 } else if (SrcTy->isVectorTy()) {
2352 assert(DestBits == SrcBits &&
Dan Gohmanfead7972007-05-11 21:43:24 +00002353 "Casting vector to floating point of different width");
Devang Patele9432132008-11-05 01:37:40 +00002354 return BitCast; // same size, no-op cast
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002355 } else {
Torok Edwinfbcc6632009-07-14 16:55:14 +00002356 llvm_unreachable("Casting pointer or non-first class to float");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002357 }
Duncan Sands27bd0df2011-05-18 10:59:25 +00002358 } else if (DestTy->isVectorTy()) {
2359 assert(DestBits == SrcBits &&
2360 "Illegal cast to vector (wrong type or size)");
2361 return BitCast;
Duncan Sands19d0b472010-02-16 11:11:14 +00002362 } else if (DestTy->isPointerTy()) {
2363 if (SrcTy->isPointerTy()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002364 return BitCast; // ptr -> ptr
Duncan Sands9dff9be2010-02-15 16:12:20 +00002365 } else if (SrcTy->isIntegerTy()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002366 return IntToPtr; // int -> ptr
2367 } else {
2368 assert(!"Casting pointer to other than pointer or int");
2369 }
Dale Johannesendd224d22010-09-30 23:57:10 +00002370 } else if (DestTy->isX86_MMXTy()) {
Duncan Sands27bd0df2011-05-18 10:59:25 +00002371 if (SrcTy->isVectorTy()) {
2372 assert(DestBits == SrcBits && "Casting vector of wrong width to X86_MMX");
Dale Johannesendd224d22010-09-30 23:57:10 +00002373 return BitCast; // 64-bit vector to MMX
2374 } else {
2375 assert(!"Illegal cast to X86_MMX");
2376 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002377 } else {
2378 assert(!"Casting to type that is not first-class");
2379 }
2380
2381 // If we fall through to here we probably hit an assertion cast above
2382 // and assertions are not turned on. Anything we return is an error, so
2383 // BitCast is as good a choice as any.
2384 return BitCast;
2385}
2386
2387//===----------------------------------------------------------------------===//
2388// CastInst SubClass Constructors
2389//===----------------------------------------------------------------------===//
2390
2391/// Check that the construction parameters for a CastInst are correct. This
2392/// could be broken out into the separate constructors but it is useful to have
2393/// it in one place and to eliminate the redundant code for getting the sizes
2394/// of the types involved.
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002395bool
Chris Lattner229907c2011-07-18 04:54:35 +00002396CastInst::castIsValid(Instruction::CastOps op, Value *S, Type *DstTy) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002397
2398 // Check for type sanity on the arguments
Chris Lattner229907c2011-07-18 04:54:35 +00002399 Type *SrcTy = S->getType();
Chris Lattner37bc78a2010-01-26 21:51:43 +00002400 if (!SrcTy->isFirstClassType() || !DstTy->isFirstClassType() ||
2401 SrcTy->isAggregateType() || DstTy->isAggregateType())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002402 return false;
2403
2404 // Get the size of the types in bits, we'll need this later
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002405 unsigned SrcBitSize = SrcTy->getScalarSizeInBits();
2406 unsigned DstBitSize = DstTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002407
Duncan Sands7f646562011-05-18 09:21:57 +00002408 // If these are vector types, get the lengths of the vectors (using zero for
2409 // scalar types means that checking that vector lengths match also checks that
2410 // scalars are not being converted to vectors or vectors to scalars).
2411 unsigned SrcLength = SrcTy->isVectorTy() ?
2412 cast<VectorType>(SrcTy)->getNumElements() : 0;
2413 unsigned DstLength = DstTy->isVectorTy() ?
2414 cast<VectorType>(DstTy)->getNumElements() : 0;
2415
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002416 // Switch on the opcode provided
2417 switch (op) {
2418 default: return false; // This is an input error
2419 case Instruction::Trunc:
Duncan Sands7f646562011-05-18 09:21:57 +00002420 return SrcTy->isIntOrIntVectorTy() && DstTy->isIntOrIntVectorTy() &&
2421 SrcLength == DstLength && SrcBitSize > DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002422 case Instruction::ZExt:
Duncan Sands7f646562011-05-18 09:21:57 +00002423 return SrcTy->isIntOrIntVectorTy() && DstTy->isIntOrIntVectorTy() &&
2424 SrcLength == DstLength && SrcBitSize < DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002425 case Instruction::SExt:
Duncan Sands7f646562011-05-18 09:21:57 +00002426 return SrcTy->isIntOrIntVectorTy() && DstTy->isIntOrIntVectorTy() &&
2427 SrcLength == DstLength && SrcBitSize < DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002428 case Instruction::FPTrunc:
Duncan Sands7f646562011-05-18 09:21:57 +00002429 return SrcTy->isFPOrFPVectorTy() && DstTy->isFPOrFPVectorTy() &&
2430 SrcLength == DstLength && SrcBitSize > DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002431 case Instruction::FPExt:
Duncan Sands7f646562011-05-18 09:21:57 +00002432 return SrcTy->isFPOrFPVectorTy() && DstTy->isFPOrFPVectorTy() &&
2433 SrcLength == DstLength && SrcBitSize < DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002434 case Instruction::UIToFP:
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002435 case Instruction::SIToFP:
Duncan Sands7f646562011-05-18 09:21:57 +00002436 return SrcTy->isIntOrIntVectorTy() && DstTy->isFPOrFPVectorTy() &&
2437 SrcLength == DstLength;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002438 case Instruction::FPToUI:
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002439 case Instruction::FPToSI:
Duncan Sands7f646562011-05-18 09:21:57 +00002440 return SrcTy->isFPOrFPVectorTy() && DstTy->isIntOrIntVectorTy() &&
2441 SrcLength == DstLength;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002442 case Instruction::PtrToInt:
Duncan Sands19d0b472010-02-16 11:11:14 +00002443 return SrcTy->isPointerTy() && DstTy->isIntegerTy();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002444 case Instruction::IntToPtr:
Duncan Sands19d0b472010-02-16 11:11:14 +00002445 return SrcTy->isIntegerTy() && DstTy->isPointerTy();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002446 case Instruction::BitCast:
2447 // BitCast implies a no-op cast of type only. No bits change.
2448 // However, you can't cast pointers to anything but pointers.
Duncan Sands19d0b472010-02-16 11:11:14 +00002449 if (SrcTy->isPointerTy() != DstTy->isPointerTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002450 return false;
2451
Duncan Sands55e50902008-01-06 10:12:28 +00002452 // Now we know we're not dealing with a pointer/non-pointer mismatch. In all
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002453 // these cases, the cast is okay if the source and destination bit widths
2454 // are identical.
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002455 return SrcTy->getPrimitiveSizeInBits() == DstTy->getPrimitiveSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002456 }
2457}
2458
2459TruncInst::TruncInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002460 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002461) : CastInst(Ty, Trunc, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002462 assert(castIsValid(getOpcode(), S, Ty) && "Illegal Trunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002463}
2464
2465TruncInst::TruncInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002466 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002467) : CastInst(Ty, Trunc, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002468 assert(castIsValid(getOpcode(), S, Ty) && "Illegal Trunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002469}
2470
2471ZExtInst::ZExtInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002472 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002473) : CastInst(Ty, ZExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002474 assert(castIsValid(getOpcode(), S, Ty) && "Illegal ZExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002475}
2476
2477ZExtInst::ZExtInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002478 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002479) : CastInst(Ty, ZExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002480 assert(castIsValid(getOpcode(), S, Ty) && "Illegal ZExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002481}
2482SExtInst::SExtInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002483 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002484) : CastInst(Ty, SExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002485 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002486}
2487
Jeff Cohencc08c832006-12-02 02:22:01 +00002488SExtInst::SExtInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002489 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002490) : CastInst(Ty, SExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002491 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002492}
2493
2494FPTruncInst::FPTruncInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002495 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002496) : CastInst(Ty, FPTrunc, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002497 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPTrunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002498}
2499
2500FPTruncInst::FPTruncInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002501 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002502) : CastInst(Ty, FPTrunc, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002503 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPTrunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002504}
2505
2506FPExtInst::FPExtInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002507 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002508) : CastInst(Ty, FPExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002509 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002510}
2511
2512FPExtInst::FPExtInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002513 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002514) : CastInst(Ty, FPExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002515 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002516}
2517
2518UIToFPInst::UIToFPInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002519 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002520) : CastInst(Ty, UIToFP, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002521 assert(castIsValid(getOpcode(), S, Ty) && "Illegal UIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002522}
2523
2524UIToFPInst::UIToFPInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002525 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002526) : CastInst(Ty, UIToFP, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002527 assert(castIsValid(getOpcode(), S, Ty) && "Illegal UIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002528}
2529
2530SIToFPInst::SIToFPInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002531 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002532) : CastInst(Ty, SIToFP, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002533 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002534}
2535
2536SIToFPInst::SIToFPInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002537 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002538) : CastInst(Ty, SIToFP, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002539 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002540}
2541
2542FPToUIInst::FPToUIInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002543 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002544) : CastInst(Ty, FPToUI, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002545 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToUI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002546}
2547
2548FPToUIInst::FPToUIInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002549 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002550) : CastInst(Ty, FPToUI, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002551 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToUI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002552}
2553
2554FPToSIInst::FPToSIInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002555 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002556) : CastInst(Ty, FPToSI, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002557 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToSI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002558}
2559
2560FPToSIInst::FPToSIInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002561 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002562) : CastInst(Ty, FPToSI, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002563 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToSI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002564}
2565
2566PtrToIntInst::PtrToIntInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002567 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002568) : CastInst(Ty, PtrToInt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002569 assert(castIsValid(getOpcode(), S, Ty) && "Illegal PtrToInt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002570}
2571
2572PtrToIntInst::PtrToIntInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002573 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002574) : CastInst(Ty, PtrToInt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002575 assert(castIsValid(getOpcode(), S, Ty) && "Illegal PtrToInt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002576}
2577
2578IntToPtrInst::IntToPtrInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002579 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002580) : CastInst(Ty, IntToPtr, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002581 assert(castIsValid(getOpcode(), S, Ty) && "Illegal IntToPtr");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002582}
2583
2584IntToPtrInst::IntToPtrInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002585 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002586) : CastInst(Ty, IntToPtr, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002587 assert(castIsValid(getOpcode(), S, Ty) && "Illegal IntToPtr");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002588}
2589
2590BitCastInst::BitCastInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002591 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002592) : CastInst(Ty, BitCast, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002593 assert(castIsValid(getOpcode(), S, Ty) && "Illegal BitCast");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002594}
2595
2596BitCastInst::BitCastInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002597 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002598) : CastInst(Ty, BitCast, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002599 assert(castIsValid(getOpcode(), S, Ty) && "Illegal BitCast");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002600}
Chris Lattnerf16dc002006-09-17 19:29:56 +00002601
2602//===----------------------------------------------------------------------===//
Reid Spencerd9436b62006-11-20 01:22:35 +00002603// CmpInst Classes
2604//===----------------------------------------------------------------------===//
2605
Chris Lattneraec33da2010-01-22 06:25:37 +00002606void CmpInst::Anchor() const {}
2607
Chris Lattner229907c2011-07-18 04:54:35 +00002608CmpInst::CmpInst(Type *ty, OtherOps op, unsigned short predicate,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002609 Value *LHS, Value *RHS, const Twine &Name,
Nate Begemand2195702008-05-12 19:01:56 +00002610 Instruction *InsertBefore)
Nate Begeman66d0a0e2008-05-12 20:11:05 +00002611 : Instruction(ty, op,
Gabor Greiff6caff662008-05-10 08:32:32 +00002612 OperandTraits<CmpInst>::op_begin(this),
2613 OperandTraits<CmpInst>::operands(this),
2614 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00002615 Op<0>() = LHS;
2616 Op<1>() = RHS;
Chris Lattnerb9c86512009-12-29 02:14:09 +00002617 setPredicate((Predicate)predicate);
Reid Spencer871a9ea2007-04-11 13:04:48 +00002618 setName(Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002619}
Gabor Greiff6caff662008-05-10 08:32:32 +00002620
Chris Lattner229907c2011-07-18 04:54:35 +00002621CmpInst::CmpInst(Type *ty, OtherOps op, unsigned short predicate,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002622 Value *LHS, Value *RHS, const Twine &Name,
Nate Begemand2195702008-05-12 19:01:56 +00002623 BasicBlock *InsertAtEnd)
Nate Begeman66d0a0e2008-05-12 20:11:05 +00002624 : Instruction(ty, op,
Gabor Greiff6caff662008-05-10 08:32:32 +00002625 OperandTraits<CmpInst>::op_begin(this),
2626 OperandTraits<CmpInst>::operands(this),
2627 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00002628 Op<0>() = LHS;
2629 Op<1>() = RHS;
Chris Lattnerb9c86512009-12-29 02:14:09 +00002630 setPredicate((Predicate)predicate);
Reid Spencer871a9ea2007-04-11 13:04:48 +00002631 setName(Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002632}
2633
2634CmpInst *
Dan Gohmanad1f0a12009-08-25 23:17:54 +00002635CmpInst::Create(OtherOps Op, unsigned short predicate,
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002636 Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002637 const Twine &Name, Instruction *InsertBefore) {
Reid Spencerd9436b62006-11-20 01:22:35 +00002638 if (Op == Instruction::ICmp) {
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002639 if (InsertBefore)
2640 return new ICmpInst(InsertBefore, CmpInst::Predicate(predicate),
2641 S1, S2, Name);
2642 else
Dan Gohmanad1f0a12009-08-25 23:17:54 +00002643 return new ICmpInst(CmpInst::Predicate(predicate),
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002644 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002645 }
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002646
2647 if (InsertBefore)
2648 return new FCmpInst(InsertBefore, CmpInst::Predicate(predicate),
2649 S1, S2, Name);
2650 else
Dan Gohmanad1f0a12009-08-25 23:17:54 +00002651 return new FCmpInst(CmpInst::Predicate(predicate),
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002652 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002653}
2654
2655CmpInst *
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002656CmpInst::Create(OtherOps Op, unsigned short predicate, Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002657 const Twine &Name, BasicBlock *InsertAtEnd) {
Reid Spencerd9436b62006-11-20 01:22:35 +00002658 if (Op == Instruction::ICmp) {
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002659 return new ICmpInst(*InsertAtEnd, CmpInst::Predicate(predicate),
2660 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002661 }
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002662 return new FCmpInst(*InsertAtEnd, CmpInst::Predicate(predicate),
2663 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002664}
2665
2666void CmpInst::swapOperands() {
2667 if (ICmpInst *IC = dyn_cast<ICmpInst>(this))
2668 IC->swapOperands();
2669 else
2670 cast<FCmpInst>(this)->swapOperands();
2671}
2672
Duncan Sands95c4ecc2011-01-04 12:52:29 +00002673bool CmpInst::isCommutative() const {
2674 if (const ICmpInst *IC = dyn_cast<ICmpInst>(this))
Reid Spencerd9436b62006-11-20 01:22:35 +00002675 return IC->isCommutative();
2676 return cast<FCmpInst>(this)->isCommutative();
2677}
2678
Duncan Sands95c4ecc2011-01-04 12:52:29 +00002679bool CmpInst::isEquality() const {
2680 if (const ICmpInst *IC = dyn_cast<ICmpInst>(this))
Reid Spencerd9436b62006-11-20 01:22:35 +00002681 return IC->isEquality();
2682 return cast<FCmpInst>(this)->isEquality();
2683}
2684
2685
Dan Gohman4e724382008-05-31 02:47:54 +00002686CmpInst::Predicate CmpInst::getInversePredicate(Predicate pred) {
Reid Spencerd9436b62006-11-20 01:22:35 +00002687 switch (pred) {
Dan Gohman4e724382008-05-31 02:47:54 +00002688 default: assert(!"Unknown cmp predicate!");
Reid Spencerd9436b62006-11-20 01:22:35 +00002689 case ICMP_EQ: return ICMP_NE;
2690 case ICMP_NE: return ICMP_EQ;
2691 case ICMP_UGT: return ICMP_ULE;
2692 case ICMP_ULT: return ICMP_UGE;
2693 case ICMP_UGE: return ICMP_ULT;
2694 case ICMP_ULE: return ICMP_UGT;
2695 case ICMP_SGT: return ICMP_SLE;
2696 case ICMP_SLT: return ICMP_SGE;
2697 case ICMP_SGE: return ICMP_SLT;
2698 case ICMP_SLE: return ICMP_SGT;
Reid Spencerd9436b62006-11-20 01:22:35 +00002699
Dan Gohman4e724382008-05-31 02:47:54 +00002700 case FCMP_OEQ: return FCMP_UNE;
2701 case FCMP_ONE: return FCMP_UEQ;
2702 case FCMP_OGT: return FCMP_ULE;
2703 case FCMP_OLT: return FCMP_UGE;
2704 case FCMP_OGE: return FCMP_ULT;
2705 case FCMP_OLE: return FCMP_UGT;
2706 case FCMP_UEQ: return FCMP_ONE;
2707 case FCMP_UNE: return FCMP_OEQ;
2708 case FCMP_UGT: return FCMP_OLE;
2709 case FCMP_ULT: return FCMP_OGE;
2710 case FCMP_UGE: return FCMP_OLT;
2711 case FCMP_ULE: return FCMP_OGT;
2712 case FCMP_ORD: return FCMP_UNO;
2713 case FCMP_UNO: return FCMP_ORD;
2714 case FCMP_TRUE: return FCMP_FALSE;
2715 case FCMP_FALSE: return FCMP_TRUE;
Reid Spencerd9436b62006-11-20 01:22:35 +00002716 }
2717}
2718
Reid Spencer266e42b2006-12-23 06:05:41 +00002719ICmpInst::Predicate ICmpInst::getSignedPredicate(Predicate pred) {
2720 switch (pred) {
2721 default: assert(! "Unknown icmp predicate!");
2722 case ICMP_EQ: case ICMP_NE:
2723 case ICMP_SGT: case ICMP_SLT: case ICMP_SGE: case ICMP_SLE:
2724 return pred;
2725 case ICMP_UGT: return ICMP_SGT;
2726 case ICMP_ULT: return ICMP_SLT;
2727 case ICMP_UGE: return ICMP_SGE;
2728 case ICMP_ULE: return ICMP_SLE;
2729 }
2730}
2731
Nick Lewycky8ea81e82008-01-28 03:48:02 +00002732ICmpInst::Predicate ICmpInst::getUnsignedPredicate(Predicate pred) {
2733 switch (pred) {
2734 default: assert(! "Unknown icmp predicate!");
2735 case ICMP_EQ: case ICMP_NE:
2736 case ICMP_UGT: case ICMP_ULT: case ICMP_UGE: case ICMP_ULE:
2737 return pred;
2738 case ICMP_SGT: return ICMP_UGT;
2739 case ICMP_SLT: return ICMP_ULT;
2740 case ICMP_SGE: return ICMP_UGE;
2741 case ICMP_SLE: return ICMP_ULE;
2742 }
2743}
2744
Reid Spencer0286bc12007-02-28 22:00:54 +00002745/// Initialize a set of values that all satisfy the condition with C.
2746///
2747ConstantRange
2748ICmpInst::makeConstantRange(Predicate pred, const APInt &C) {
2749 APInt Lower(C);
2750 APInt Upper(C);
2751 uint32_t BitWidth = C.getBitWidth();
2752 switch (pred) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00002753 default: llvm_unreachable("Invalid ICmp opcode to ConstantRange ctor!");
Reid Spencer0286bc12007-02-28 22:00:54 +00002754 case ICmpInst::ICMP_EQ: Upper++; break;
2755 case ICmpInst::ICMP_NE: Lower++; break;
Dan Gohmand86e2952010-01-26 16:04:20 +00002756 case ICmpInst::ICMP_ULT:
2757 Lower = APInt::getMinValue(BitWidth);
2758 // Check for an empty-set condition.
2759 if (Lower == Upper)
2760 return ConstantRange(BitWidth, /*isFullSet=*/false);
2761 break;
2762 case ICmpInst::ICMP_SLT:
2763 Lower = APInt::getSignedMinValue(BitWidth);
2764 // Check for an empty-set condition.
2765 if (Lower == Upper)
2766 return ConstantRange(BitWidth, /*isFullSet=*/false);
2767 break;
Reid Spencer0286bc12007-02-28 22:00:54 +00002768 case ICmpInst::ICMP_UGT:
2769 Lower++; Upper = APInt::getMinValue(BitWidth); // Min = Next(Max)
Dan Gohmand86e2952010-01-26 16:04:20 +00002770 // Check for an empty-set condition.
2771 if (Lower == Upper)
2772 return ConstantRange(BitWidth, /*isFullSet=*/false);
Reid Spencer0286bc12007-02-28 22:00:54 +00002773 break;
2774 case ICmpInst::ICMP_SGT:
2775 Lower++; Upper = APInt::getSignedMinValue(BitWidth); // Min = Next(Max)
Dan Gohmand86e2952010-01-26 16:04:20 +00002776 // Check for an empty-set condition.
2777 if (Lower == Upper)
2778 return ConstantRange(BitWidth, /*isFullSet=*/false);
Reid Spencer0286bc12007-02-28 22:00:54 +00002779 break;
2780 case ICmpInst::ICMP_ULE:
2781 Lower = APInt::getMinValue(BitWidth); Upper++;
Dan Gohmand86e2952010-01-26 16:04:20 +00002782 // Check for a full-set condition.
2783 if (Lower == Upper)
2784 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer0286bc12007-02-28 22:00:54 +00002785 break;
2786 case ICmpInst::ICMP_SLE:
2787 Lower = APInt::getSignedMinValue(BitWidth); Upper++;
Dan Gohmand86e2952010-01-26 16:04:20 +00002788 // Check for a full-set condition.
2789 if (Lower == Upper)
2790 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer0286bc12007-02-28 22:00:54 +00002791 break;
2792 case ICmpInst::ICMP_UGE:
2793 Upper = APInt::getMinValue(BitWidth); // Min = Next(Max)
Dan Gohmand86e2952010-01-26 16:04:20 +00002794 // Check for a full-set condition.
2795 if (Lower == Upper)
2796 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer0286bc12007-02-28 22:00:54 +00002797 break;
2798 case ICmpInst::ICMP_SGE:
2799 Upper = APInt::getSignedMinValue(BitWidth); // Min = Next(Max)
Dan Gohmand86e2952010-01-26 16:04:20 +00002800 // Check for a full-set condition.
2801 if (Lower == Upper)
2802 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer0286bc12007-02-28 22:00:54 +00002803 break;
2804 }
2805 return ConstantRange(Lower, Upper);
2806}
2807
Dan Gohman4e724382008-05-31 02:47:54 +00002808CmpInst::Predicate CmpInst::getSwappedPredicate(Predicate pred) {
Reid Spencerd9436b62006-11-20 01:22:35 +00002809 switch (pred) {
Dan Gohman4e724382008-05-31 02:47:54 +00002810 default: assert(!"Unknown cmp predicate!");
2811 case ICMP_EQ: case ICMP_NE:
2812 return pred;
2813 case ICMP_SGT: return ICMP_SLT;
2814 case ICMP_SLT: return ICMP_SGT;
2815 case ICMP_SGE: return ICMP_SLE;
2816 case ICMP_SLE: return ICMP_SGE;
2817 case ICMP_UGT: return ICMP_ULT;
2818 case ICMP_ULT: return ICMP_UGT;
2819 case ICMP_UGE: return ICMP_ULE;
2820 case ICMP_ULE: return ICMP_UGE;
2821
Reid Spencerd9436b62006-11-20 01:22:35 +00002822 case FCMP_FALSE: case FCMP_TRUE:
2823 case FCMP_OEQ: case FCMP_ONE:
2824 case FCMP_UEQ: case FCMP_UNE:
2825 case FCMP_ORD: case FCMP_UNO:
2826 return pred;
2827 case FCMP_OGT: return FCMP_OLT;
2828 case FCMP_OLT: return FCMP_OGT;
2829 case FCMP_OGE: return FCMP_OLE;
2830 case FCMP_OLE: return FCMP_OGE;
2831 case FCMP_UGT: return FCMP_ULT;
2832 case FCMP_ULT: return FCMP_UGT;
2833 case FCMP_UGE: return FCMP_ULE;
2834 case FCMP_ULE: return FCMP_UGE;
2835 }
2836}
2837
Reid Spencer266e42b2006-12-23 06:05:41 +00002838bool CmpInst::isUnsigned(unsigned short predicate) {
2839 switch (predicate) {
2840 default: return false;
2841 case ICmpInst::ICMP_ULT: case ICmpInst::ICMP_ULE: case ICmpInst::ICMP_UGT:
2842 case ICmpInst::ICMP_UGE: return true;
2843 }
2844}
2845
Nick Lewycky7494b3b2009-10-25 03:50:03 +00002846bool CmpInst::isSigned(unsigned short predicate) {
Reid Spencer266e42b2006-12-23 06:05:41 +00002847 switch (predicate) {
2848 default: return false;
2849 case ICmpInst::ICMP_SLT: case ICmpInst::ICMP_SLE: case ICmpInst::ICMP_SGT:
2850 case ICmpInst::ICMP_SGE: return true;
2851 }
2852}
2853
2854bool CmpInst::isOrdered(unsigned short predicate) {
2855 switch (predicate) {
2856 default: return false;
2857 case FCmpInst::FCMP_OEQ: case FCmpInst::FCMP_ONE: case FCmpInst::FCMP_OGT:
2858 case FCmpInst::FCMP_OLT: case FCmpInst::FCMP_OGE: case FCmpInst::FCMP_OLE:
2859 case FCmpInst::FCMP_ORD: return true;
2860 }
2861}
2862
2863bool CmpInst::isUnordered(unsigned short predicate) {
2864 switch (predicate) {
2865 default: return false;
2866 case FCmpInst::FCMP_UEQ: case FCmpInst::FCMP_UNE: case FCmpInst::FCMP_UGT:
2867 case FCmpInst::FCMP_ULT: case FCmpInst::FCMP_UGE: case FCmpInst::FCMP_ULE:
2868 case FCmpInst::FCMP_UNO: return true;
2869 }
2870}
2871
Nick Lewycky7494b3b2009-10-25 03:50:03 +00002872bool CmpInst::isTrueWhenEqual(unsigned short predicate) {
2873 switch(predicate) {
2874 default: return false;
2875 case ICMP_EQ: case ICMP_UGE: case ICMP_ULE: case ICMP_SGE: case ICMP_SLE:
2876 case FCMP_TRUE: case FCMP_UEQ: case FCMP_UGE: case FCMP_ULE: return true;
2877 }
2878}
2879
2880bool CmpInst::isFalseWhenEqual(unsigned short predicate) {
2881 switch(predicate) {
2882 case ICMP_NE: case ICMP_UGT: case ICMP_ULT: case ICMP_SGT: case ICMP_SLT:
2883 case FCMP_FALSE: case FCMP_ONE: case FCMP_OGT: case FCMP_OLT: return true;
2884 default: return false;
2885 }
2886}
2887
2888
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002889//===----------------------------------------------------------------------===//
2890// SwitchInst Implementation
2891//===----------------------------------------------------------------------===//
2892
Chris Lattnerbaf00152010-11-17 05:41:46 +00002893void SwitchInst::init(Value *Value, BasicBlock *Default, unsigned NumReserved) {
2894 assert(Value && Default && NumReserved);
2895 ReservedSpace = NumReserved;
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002896 NumOperands = 2;
Gabor Greiff6caff662008-05-10 08:32:32 +00002897 OperandList = allocHungoffUses(ReservedSpace);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002898
Gabor Greif2d3024d2008-05-26 21:33:52 +00002899 OperandList[0] = Value;
2900 OperandList[1] = Default;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002901}
2902
Chris Lattner2195fc42007-02-24 00:55:48 +00002903/// SwitchInst ctor - Create a new switch instruction, specifying a value to
2904/// switch on and a default destination. The number of additional cases can
2905/// be specified here to make memory allocation more efficient. This
2906/// constructor can also autoinsert before another instruction.
2907SwitchInst::SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
2908 Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +00002909 : TerminatorInst(Type::getVoidTy(Value->getContext()), Instruction::Switch,
2910 0, 0, InsertBefore) {
Chris Lattnerbaf00152010-11-17 05:41:46 +00002911 init(Value, Default, 2+NumCases*2);
Chris Lattner2195fc42007-02-24 00:55:48 +00002912}
2913
2914/// SwitchInst ctor - Create a new switch instruction, specifying a value to
2915/// switch on and a default destination. The number of additional cases can
2916/// be specified here to make memory allocation more efficient. This
2917/// constructor also autoinserts at the end of the specified BasicBlock.
2918SwitchInst::SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
2919 BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +00002920 : TerminatorInst(Type::getVoidTy(Value->getContext()), Instruction::Switch,
2921 0, 0, InsertAtEnd) {
Chris Lattnerbaf00152010-11-17 05:41:46 +00002922 init(Value, Default, 2+NumCases*2);
Chris Lattner2195fc42007-02-24 00:55:48 +00002923}
2924
Misha Brukmanb1c93172005-04-21 23:48:37 +00002925SwitchInst::SwitchInst(const SwitchInst &SI)
Chris Lattnerbaf00152010-11-17 05:41:46 +00002926 : TerminatorInst(SI.getType(), Instruction::Switch, 0, 0) {
2927 init(SI.getCondition(), SI.getDefaultDest(), SI.getNumOperands());
2928 NumOperands = SI.getNumOperands();
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002929 Use *OL = OperandList, *InOL = SI.OperandList;
Chris Lattnerbaf00152010-11-17 05:41:46 +00002930 for (unsigned i = 2, E = SI.getNumOperands(); i != E; i += 2) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00002931 OL[i] = InOL[i];
2932 OL[i+1] = InOL[i+1];
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002933 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00002934 SubclassOptionalData = SI.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002935}
2936
Gordon Henriksen14a55692007-12-10 02:14:30 +00002937SwitchInst::~SwitchInst() {
Jay Foadbbb91f22011-01-16 15:30:52 +00002938 dropHungoffUses();
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002939}
2940
2941
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002942/// addCase - Add an entry to the switch instruction...
2943///
Chris Lattner47ac1872005-02-24 05:32:09 +00002944void SwitchInst::addCase(ConstantInt *OnVal, BasicBlock *Dest) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002945 unsigned OpNo = NumOperands;
2946 if (OpNo+2 > ReservedSpace)
Jay Foade98f29d2011-04-01 08:00:58 +00002947 growOperands(); // Get more space!
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002948 // Initialize some new operands.
Chris Lattnerf711f8d2005-01-29 01:05:12 +00002949 assert(OpNo+1 < ReservedSpace && "Growing didn't work!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002950 NumOperands = OpNo+2;
Gabor Greif2d3024d2008-05-26 21:33:52 +00002951 OperandList[OpNo] = OnVal;
2952 OperandList[OpNo+1] = Dest;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002953}
2954
2955/// removeCase - This method removes the specified successor from the switch
2956/// instruction. Note that this cannot be used to remove the default
2957/// destination (successor #0).
2958///
2959void SwitchInst::removeCase(unsigned idx) {
2960 assert(idx != 0 && "Cannot remove the default case!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002961 assert(idx*2 < getNumOperands() && "Successor index out of range!!!");
2962
2963 unsigned NumOps = getNumOperands();
2964 Use *OL = OperandList;
2965
Jay Foad14277722011-02-01 09:22:34 +00002966 // Overwrite this case with the end of the list.
2967 if ((idx + 1) * 2 != NumOps) {
2968 OL[idx * 2] = OL[NumOps - 2];
2969 OL[idx * 2 + 1] = OL[NumOps - 1];
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002970 }
2971
2972 // Nuke the last value.
2973 OL[NumOps-2].set(0);
2974 OL[NumOps-2+1].set(0);
2975 NumOperands = NumOps-2;
2976}
2977
Jay Foade98f29d2011-04-01 08:00:58 +00002978/// growOperands - grow operands - This grows the operand list in response
2979/// to a push_back style of operation. This grows the number of ops by 3 times.
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002980///
Jay Foade98f29d2011-04-01 08:00:58 +00002981void SwitchInst::growOperands() {
Gabor Greiff6caff662008-05-10 08:32:32 +00002982 unsigned e = getNumOperands();
Jay Foade98f29d2011-04-01 08:00:58 +00002983 unsigned NumOps = e*3;
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002984
2985 ReservedSpace = NumOps;
Gabor Greiff6caff662008-05-10 08:32:32 +00002986 Use *NewOps = allocHungoffUses(NumOps);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002987 Use *OldOps = OperandList;
Gabor Greiff6caff662008-05-10 08:32:32 +00002988 for (unsigned i = 0; i != e; ++i) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00002989 NewOps[i] = OldOps[i];
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002990 }
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002991 OperandList = NewOps;
Jay Foadbbb91f22011-01-16 15:30:52 +00002992 Use::zap(OldOps, OldOps + e, true);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002993}
2994
2995
2996BasicBlock *SwitchInst::getSuccessorV(unsigned idx) const {
2997 return getSuccessor(idx);
2998}
2999unsigned SwitchInst::getNumSuccessorsV() const {
3000 return getNumSuccessors();
3001}
3002void SwitchInst::setSuccessorV(unsigned idx, BasicBlock *B) {
3003 setSuccessor(idx, B);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003004}
Chris Lattnerf22be932004-10-15 23:52:53 +00003005
Chris Lattner3ed871f2009-10-27 19:13:16 +00003006//===----------------------------------------------------------------------===//
Jay Foadbbb91f22011-01-16 15:30:52 +00003007// IndirectBrInst Implementation
Chris Lattner3ed871f2009-10-27 19:13:16 +00003008//===----------------------------------------------------------------------===//
3009
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003010void IndirectBrInst::init(Value *Address, unsigned NumDests) {
Duncan Sands19d0b472010-02-16 11:11:14 +00003011 assert(Address && Address->getType()->isPointerTy() &&
Chris Lattner6747b4c2009-10-29 05:53:32 +00003012 "Address of indirectbr must be a pointer");
Chris Lattner3ed871f2009-10-27 19:13:16 +00003013 ReservedSpace = 1+NumDests;
3014 NumOperands = 1;
3015 OperandList = allocHungoffUses(ReservedSpace);
3016
3017 OperandList[0] = Address;
3018}
3019
3020
Jay Foade98f29d2011-04-01 08:00:58 +00003021/// growOperands - grow operands - This grows the operand list in response
3022/// to a push_back style of operation. This grows the number of ops by 2 times.
Chris Lattner3ed871f2009-10-27 19:13:16 +00003023///
Jay Foade98f29d2011-04-01 08:00:58 +00003024void IndirectBrInst::growOperands() {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003025 unsigned e = getNumOperands();
Jay Foade98f29d2011-04-01 08:00:58 +00003026 unsigned NumOps = e*2;
Chris Lattner3ed871f2009-10-27 19:13:16 +00003027
3028 ReservedSpace = NumOps;
3029 Use *NewOps = allocHungoffUses(NumOps);
3030 Use *OldOps = OperandList;
3031 for (unsigned i = 0; i != e; ++i)
3032 NewOps[i] = OldOps[i];
3033 OperandList = NewOps;
Jay Foadbbb91f22011-01-16 15:30:52 +00003034 Use::zap(OldOps, OldOps + e, true);
Chris Lattner3ed871f2009-10-27 19:13:16 +00003035}
3036
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003037IndirectBrInst::IndirectBrInst(Value *Address, unsigned NumCases,
3038 Instruction *InsertBefore)
3039: TerminatorInst(Type::getVoidTy(Address->getContext()),Instruction::IndirectBr,
Chris Lattner3ed871f2009-10-27 19:13:16 +00003040 0, 0, InsertBefore) {
3041 init(Address, NumCases);
3042}
3043
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003044IndirectBrInst::IndirectBrInst(Value *Address, unsigned NumCases,
3045 BasicBlock *InsertAtEnd)
3046: TerminatorInst(Type::getVoidTy(Address->getContext()),Instruction::IndirectBr,
Chris Lattner3ed871f2009-10-27 19:13:16 +00003047 0, 0, InsertAtEnd) {
3048 init(Address, NumCases);
3049}
3050
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003051IndirectBrInst::IndirectBrInst(const IndirectBrInst &IBI)
3052 : TerminatorInst(Type::getVoidTy(IBI.getContext()), Instruction::IndirectBr,
Chris Lattner3ed871f2009-10-27 19:13:16 +00003053 allocHungoffUses(IBI.getNumOperands()),
3054 IBI.getNumOperands()) {
3055 Use *OL = OperandList, *InOL = IBI.OperandList;
3056 for (unsigned i = 0, E = IBI.getNumOperands(); i != E; ++i)
3057 OL[i] = InOL[i];
3058 SubclassOptionalData = IBI.SubclassOptionalData;
3059}
3060
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003061IndirectBrInst::~IndirectBrInst() {
Jay Foadbbb91f22011-01-16 15:30:52 +00003062 dropHungoffUses();
Chris Lattner3ed871f2009-10-27 19:13:16 +00003063}
3064
3065/// addDestination - Add a destination.
3066///
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003067void IndirectBrInst::addDestination(BasicBlock *DestBB) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003068 unsigned OpNo = NumOperands;
3069 if (OpNo+1 > ReservedSpace)
Jay Foade98f29d2011-04-01 08:00:58 +00003070 growOperands(); // Get more space!
Chris Lattner3ed871f2009-10-27 19:13:16 +00003071 // Initialize some new operands.
3072 assert(OpNo < ReservedSpace && "Growing didn't work!");
3073 NumOperands = OpNo+1;
3074 OperandList[OpNo] = DestBB;
3075}
3076
3077/// removeDestination - This method removes the specified successor from the
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003078/// indirectbr instruction.
3079void IndirectBrInst::removeDestination(unsigned idx) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003080 assert(idx < getNumOperands()-1 && "Successor index out of range!");
3081
3082 unsigned NumOps = getNumOperands();
3083 Use *OL = OperandList;
3084
3085 // Replace this value with the last one.
3086 OL[idx+1] = OL[NumOps-1];
3087
3088 // Nuke the last value.
3089 OL[NumOps-1].set(0);
3090 NumOperands = NumOps-1;
3091}
3092
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003093BasicBlock *IndirectBrInst::getSuccessorV(unsigned idx) const {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003094 return getSuccessor(idx);
3095}
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003096unsigned IndirectBrInst::getNumSuccessorsV() const {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003097 return getNumSuccessors();
3098}
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003099void IndirectBrInst::setSuccessorV(unsigned idx, BasicBlock *B) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003100 setSuccessor(idx, B);
3101}
3102
3103//===----------------------------------------------------------------------===//
Devang Patel11cf3f42009-10-27 22:16:29 +00003104// clone_impl() implementations
Chris Lattner3ed871f2009-10-27 19:13:16 +00003105//===----------------------------------------------------------------------===//
3106
Chris Lattnerf22be932004-10-15 23:52:53 +00003107// Define these methods here so vtables don't get emitted into every translation
3108// unit that uses these classes.
3109
Devang Patel11cf3f42009-10-27 22:16:29 +00003110GetElementPtrInst *GetElementPtrInst::clone_impl() const {
3111 return new (getNumOperands()) GetElementPtrInst(*this);
Chris Lattnerf22be932004-10-15 23:52:53 +00003112}
3113
Devang Patel11cf3f42009-10-27 22:16:29 +00003114BinaryOperator *BinaryOperator::clone_impl() const {
3115 return Create(getOpcode(), Op<0>(), Op<1>());
Chris Lattnerf22be932004-10-15 23:52:53 +00003116}
3117
Devang Patel11cf3f42009-10-27 22:16:29 +00003118FCmpInst* FCmpInst::clone_impl() const {
3119 return new FCmpInst(getPredicate(), Op<0>(), Op<1>());
Reid Spencerd9436b62006-11-20 01:22:35 +00003120}
3121
Devang Patel11cf3f42009-10-27 22:16:29 +00003122ICmpInst* ICmpInst::clone_impl() const {
3123 return new ICmpInst(getPredicate(), Op<0>(), Op<1>());
Dan Gohman0752bff2008-05-23 00:36:11 +00003124}
3125
Devang Patel11cf3f42009-10-27 22:16:29 +00003126ExtractValueInst *ExtractValueInst::clone_impl() const {
3127 return new ExtractValueInst(*this);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003128}
3129
Devang Patel11cf3f42009-10-27 22:16:29 +00003130InsertValueInst *InsertValueInst::clone_impl() const {
3131 return new InsertValueInst(*this);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003132}
3133
Devang Patel11cf3f42009-10-27 22:16:29 +00003134AllocaInst *AllocaInst::clone_impl() const {
3135 return new AllocaInst(getAllocatedType(),
3136 (Value*)getOperand(0),
3137 getAlignment());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003138}
3139
Devang Patel11cf3f42009-10-27 22:16:29 +00003140LoadInst *LoadInst::clone_impl() const {
3141 return new LoadInst(getOperand(0),
3142 Twine(), isVolatile(),
3143 getAlignment());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003144}
3145
Devang Patel11cf3f42009-10-27 22:16:29 +00003146StoreInst *StoreInst::clone_impl() const {
3147 return new StoreInst(getOperand(0), getOperand(1),
3148 isVolatile(), getAlignment());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003149}
3150
Eli Friedmanfee02c62011-07-25 23:16:38 +00003151FenceInst *FenceInst::clone_impl() const {
3152 return new FenceInst(getContext(), getOrdering(), getSynchScope());
3153}
3154
Devang Patel11cf3f42009-10-27 22:16:29 +00003155TruncInst *TruncInst::clone_impl() const {
3156 return new TruncInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003157}
3158
Devang Patel11cf3f42009-10-27 22:16:29 +00003159ZExtInst *ZExtInst::clone_impl() const {
3160 return new ZExtInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003161}
3162
Devang Patel11cf3f42009-10-27 22:16:29 +00003163SExtInst *SExtInst::clone_impl() const {
3164 return new SExtInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003165}
3166
Devang Patel11cf3f42009-10-27 22:16:29 +00003167FPTruncInst *FPTruncInst::clone_impl() const {
3168 return new FPTruncInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003169}
3170
Devang Patel11cf3f42009-10-27 22:16:29 +00003171FPExtInst *FPExtInst::clone_impl() const {
3172 return new FPExtInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003173}
3174
Devang Patel11cf3f42009-10-27 22:16:29 +00003175UIToFPInst *UIToFPInst::clone_impl() const {
3176 return new UIToFPInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003177}
3178
Devang Patel11cf3f42009-10-27 22:16:29 +00003179SIToFPInst *SIToFPInst::clone_impl() const {
3180 return new SIToFPInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003181}
3182
Devang Patel11cf3f42009-10-27 22:16:29 +00003183FPToUIInst *FPToUIInst::clone_impl() const {
3184 return new FPToUIInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003185}
3186
Devang Patel11cf3f42009-10-27 22:16:29 +00003187FPToSIInst *FPToSIInst::clone_impl() const {
3188 return new FPToSIInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003189}
3190
Devang Patel11cf3f42009-10-27 22:16:29 +00003191PtrToIntInst *PtrToIntInst::clone_impl() const {
3192 return new PtrToIntInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003193}
3194
Devang Patel11cf3f42009-10-27 22:16:29 +00003195IntToPtrInst *IntToPtrInst::clone_impl() const {
3196 return new IntToPtrInst(getOperand(0), getType());
Gabor Greif697e94c2008-05-15 10:04:30 +00003197}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003198
Devang Patel11cf3f42009-10-27 22:16:29 +00003199BitCastInst *BitCastInst::clone_impl() const {
3200 return new BitCastInst(getOperand(0), getType());
Gabor Greif697e94c2008-05-15 10:04:30 +00003201}
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003202
Devang Patel11cf3f42009-10-27 22:16:29 +00003203CallInst *CallInst::clone_impl() const {
3204 return new(getNumOperands()) CallInst(*this);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003205}
3206
Devang Patel11cf3f42009-10-27 22:16:29 +00003207SelectInst *SelectInst::clone_impl() const {
3208 return SelectInst::Create(getOperand(0), getOperand(1), getOperand(2));
Chris Lattnerbbe0a422006-04-08 01:18:18 +00003209}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003210
Devang Patel11cf3f42009-10-27 22:16:29 +00003211VAArgInst *VAArgInst::clone_impl() const {
3212 return new VAArgInst(getOperand(0), getType());
Chris Lattnerbbe0a422006-04-08 01:18:18 +00003213}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003214
Devang Patel11cf3f42009-10-27 22:16:29 +00003215ExtractElementInst *ExtractElementInst::clone_impl() const {
3216 return ExtractElementInst::Create(getOperand(0), getOperand(1));
Chris Lattnerbbe0a422006-04-08 01:18:18 +00003217}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003218
Devang Patel11cf3f42009-10-27 22:16:29 +00003219InsertElementInst *InsertElementInst::clone_impl() const {
3220 return InsertElementInst::Create(getOperand(0),
3221 getOperand(1),
3222 getOperand(2));
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003223}
3224
Devang Patel11cf3f42009-10-27 22:16:29 +00003225ShuffleVectorInst *ShuffleVectorInst::clone_impl() const {
3226 return new ShuffleVectorInst(getOperand(0),
3227 getOperand(1),
3228 getOperand(2));
Gabor Greif697e94c2008-05-15 10:04:30 +00003229}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003230
Devang Patel11cf3f42009-10-27 22:16:29 +00003231PHINode *PHINode::clone_impl() const {
3232 return new PHINode(*this);
3233}
3234
Bill Wendling6c923bb2011-07-27 20:18:04 +00003235LandingPadInst *LandingPadInst::clone_impl() const {
3236 return new LandingPadInst(*this);
3237}
3238
Devang Patel11cf3f42009-10-27 22:16:29 +00003239ReturnInst *ReturnInst::clone_impl() const {
3240 return new(getNumOperands()) ReturnInst(*this);
3241}
3242
3243BranchInst *BranchInst::clone_impl() const {
Jay Foadd81f3c92011-01-07 20:29:02 +00003244 return new(getNumOperands()) BranchInst(*this);
Gabor Greif697e94c2008-05-15 10:04:30 +00003245}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003246
Devang Patel11cf3f42009-10-27 22:16:29 +00003247SwitchInst *SwitchInst::clone_impl() const {
3248 return new SwitchInst(*this);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003249}
3250
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003251IndirectBrInst *IndirectBrInst::clone_impl() const {
3252 return new IndirectBrInst(*this);
Chris Lattner3ed871f2009-10-27 19:13:16 +00003253}
3254
3255
Devang Patel11cf3f42009-10-27 22:16:29 +00003256InvokeInst *InvokeInst::clone_impl() const {
3257 return new(getNumOperands()) InvokeInst(*this);
Gabor Greif697e94c2008-05-15 10:04:30 +00003258}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003259
Bill Wendling6c923bb2011-07-27 20:18:04 +00003260ResumeInst *ResumeInst::clone_impl() const {
3261 return new(1) ResumeInst(*this);
3262}
3263
Devang Patel11cf3f42009-10-27 22:16:29 +00003264UnwindInst *UnwindInst::clone_impl() const {
Nick Lewycky42fb7452009-09-27 07:38:41 +00003265 LLVMContext &Context = getContext();
Devang Patel11cf3f42009-10-27 22:16:29 +00003266 return new UnwindInst(Context);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003267}
3268
Devang Patel11cf3f42009-10-27 22:16:29 +00003269UnreachableInst *UnreachableInst::clone_impl() const {
Nick Lewycky42fb7452009-09-27 07:38:41 +00003270 LLVMContext &Context = getContext();
Devang Patel11cf3f42009-10-27 22:16:29 +00003271 return new UnreachableInst(Context);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003272}