blob: 8a6b77ba37dea89427e2f3912aed5e0499b84774 [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
Chandler Carruth9fb823b2013-01-02 11:36:10 +000015#include "llvm/IR/Instructions.h"
Devang Pateladd58652009-09-23 18:32:25 +000016#include "LLVMContextImpl.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000017#include "llvm/IR/Constants.h"
18#include "llvm/IR/DataLayout.h"
19#include "llvm/IR/DerivedTypes.h"
20#include "llvm/IR/Function.h"
21#include "llvm/IR/Module.h"
22#include "llvm/IR/Operator.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"
Chandler Carruthed0881b2012-12-03 16:50:05 +000025#include "llvm/Support/ErrorHandling.h"
Christopher Lamb84485702007-04-22 19:24:39 +000026#include "llvm/Support/MathExtras.h"
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +000027using namespace llvm;
28
Chris Lattner3e13b8c2008-01-02 23:42:30 +000029//===----------------------------------------------------------------------===//
30// CallSite Class
31//===----------------------------------------------------------------------===//
32
Gabor Greifa2fbc0a2010-03-24 13:21:49 +000033User::op_iterator CallSite::getCallee() const {
34 Instruction *II(getInstruction());
35 return isCall()
Gabor Greif638c8232010-08-05 21:25:49 +000036 ? cast<CallInst>(II)->op_end() - 1 // Skip Callee
Gabor Greif6d673952010-07-16 09:38:02 +000037 : cast<InvokeInst>(II)->op_end() - 3; // Skip BB, BB, Callee
Gabor Greifa2fbc0a2010-03-24 13:21:49 +000038}
39
Gordon Henriksen14a55692007-12-10 02:14:30 +000040//===----------------------------------------------------------------------===//
41// TerminatorInst Class
42//===----------------------------------------------------------------------===//
43
44// Out of line virtual method, so the vtable, etc has a home.
45TerminatorInst::~TerminatorInst() {
46}
47
Gabor Greiff6caff662008-05-10 08:32:32 +000048//===----------------------------------------------------------------------===//
49// UnaryInstruction Class
50//===----------------------------------------------------------------------===//
51
Gordon Henriksen14a55692007-12-10 02:14:30 +000052// Out of line virtual method, so the vtable, etc has a home.
53UnaryInstruction::~UnaryInstruction() {
54}
55
Chris Lattnerafdb3de2005-01-29 00:35:16 +000056//===----------------------------------------------------------------------===//
Chris Lattner88107952008-12-29 00:12:50 +000057// SelectInst Class
58//===----------------------------------------------------------------------===//
59
60/// areInvalidOperands - Return a string if the specified operands are invalid
61/// for a select operation, otherwise return null.
62const char *SelectInst::areInvalidOperands(Value *Op0, Value *Op1, Value *Op2) {
63 if (Op1->getType() != Op2->getType())
64 return "both values to select must have same type";
65
Chris Lattner229907c2011-07-18 04:54:35 +000066 if (VectorType *VT = dyn_cast<VectorType>(Op0->getType())) {
Chris Lattner88107952008-12-29 00:12:50 +000067 // Vector select.
Owen Anderson55f1c092009-08-13 21:58:54 +000068 if (VT->getElementType() != Type::getInt1Ty(Op0->getContext()))
Chris Lattner88107952008-12-29 00:12:50 +000069 return "vector select condition element type must be i1";
Chris Lattner229907c2011-07-18 04:54:35 +000070 VectorType *ET = dyn_cast<VectorType>(Op1->getType());
Chris Lattner88107952008-12-29 00:12:50 +000071 if (ET == 0)
72 return "selected values for vector select must be vectors";
73 if (ET->getNumElements() != VT->getNumElements())
74 return "vector select requires selected vectors to have "
75 "the same vector length as select condition";
Owen Anderson55f1c092009-08-13 21:58:54 +000076 } else if (Op0->getType() != Type::getInt1Ty(Op0->getContext())) {
Chris Lattner88107952008-12-29 00:12:50 +000077 return "select condition must be i1 or <n x i1>";
78 }
79 return 0;
80}
81
82
83//===----------------------------------------------------------------------===//
Chris Lattnerafdb3de2005-01-29 00:35:16 +000084// PHINode Class
85//===----------------------------------------------------------------------===//
86
87PHINode::PHINode(const PHINode &PN)
88 : Instruction(PN.getType(), Instruction::PHI,
Gabor Greiff6caff662008-05-10 08:32:32 +000089 allocHungoffUses(PN.getNumOperands()), PN.getNumOperands()),
Chris Lattnerafdb3de2005-01-29 00:35:16 +000090 ReservedSpace(PN.getNumOperands()) {
Jay Foad61ea0e42011-06-23 09:09:15 +000091 std::copy(PN.op_begin(), PN.op_end(), op_begin());
92 std::copy(PN.block_begin(), PN.block_end(), block_begin());
Dan Gohmanc8a27f22009-08-25 22:11:20 +000093 SubclassOptionalData = PN.SubclassOptionalData;
Chris Lattnerafdb3de2005-01-29 00:35:16 +000094}
95
Gordon Henriksen14a55692007-12-10 02:14:30 +000096PHINode::~PHINode() {
Jay Foadbbb91f22011-01-16 15:30:52 +000097 dropHungoffUses();
Chris Lattnerafdb3de2005-01-29 00:35:16 +000098}
99
Jay Foad61ea0e42011-06-23 09:09:15 +0000100Use *PHINode::allocHungoffUses(unsigned N) const {
101 // Allocate the array of Uses of the incoming values, followed by a pointer
102 // (with bottom bit set) to the User, followed by the array of pointers to
103 // the incoming basic blocks.
104 size_t size = N * sizeof(Use) + sizeof(Use::UserRef)
105 + N * sizeof(BasicBlock*);
106 Use *Begin = static_cast<Use*>(::operator new(size));
107 Use *End = Begin + N;
108 (void) new(End) Use::UserRef(const_cast<PHINode*>(this), 1);
109 return Use::initTags(Begin, End);
110}
111
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000112// removeIncomingValue - Remove an incoming value. This is useful if a
113// predecessor basic block is deleted.
114Value *PHINode::removeIncomingValue(unsigned Idx, bool DeletePHIIfEmpty) {
Jay Foad61ea0e42011-06-23 09:09:15 +0000115 Value *Removed = getIncomingValue(Idx);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000116
117 // Move everything after this operand down.
118 //
119 // FIXME: we could just swap with the end of the list, then erase. However,
Jay Foad61ea0e42011-06-23 09:09:15 +0000120 // clients might not expect this to happen. The code as it is thrashes the
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000121 // use/def lists, which is kinda lame.
Jay Foad61ea0e42011-06-23 09:09:15 +0000122 std::copy(op_begin() + Idx + 1, op_end(), op_begin() + Idx);
123 std::copy(block_begin() + Idx + 1, block_end(), block_begin() + Idx);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000124
125 // Nuke the last value.
Jay Foad61ea0e42011-06-23 09:09:15 +0000126 Op<-1>().set(0);
127 --NumOperands;
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000128
129 // If the PHI node is dead, because it has zero entries, nuke it now.
Jay Foad61ea0e42011-06-23 09:09:15 +0000130 if (getNumOperands() == 0 && DeletePHIIfEmpty) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000131 // If anyone is using this PHI, make them use a dummy value instead...
Owen Andersonb292b8c2009-07-30 23:03:37 +0000132 replaceAllUsesWith(UndefValue::get(getType()));
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000133 eraseFromParent();
134 }
135 return Removed;
136}
137
Jay Foade98f29d2011-04-01 08:00:58 +0000138/// growOperands - grow operands - This grows the operand list in response
139/// to a push_back style of operation. This grows the number of ops by 1.5
140/// times.
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000141///
Jay Foade98f29d2011-04-01 08:00:58 +0000142void PHINode::growOperands() {
Gabor Greiff6caff662008-05-10 08:32:32 +0000143 unsigned e = getNumOperands();
Jay Foad61ea0e42011-06-23 09:09:15 +0000144 unsigned NumOps = e + e / 2;
145 if (NumOps < 2) NumOps = 2; // 2 op PHI nodes are VERY common.
146
147 Use *OldOps = op_begin();
148 BasicBlock **OldBlocks = block_begin();
Jay Foade03c05c2011-06-20 14:38:01 +0000149
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000150 ReservedSpace = NumOps;
Jay Foad61ea0e42011-06-23 09:09:15 +0000151 OperandList = allocHungoffUses(ReservedSpace);
152
153 std::copy(OldOps, OldOps + e, op_begin());
154 std::copy(OldBlocks, OldBlocks + e, block_begin());
155
Jay Foadbbb91f22011-01-16 15:30:52 +0000156 Use::zap(OldOps, OldOps + e, true);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000157}
158
Nate Begemanb3923212005-08-04 23:24:19 +0000159/// hasConstantValue - If the specified PHI node always merges together the same
160/// value, return the value, otherwise return null.
Duncan Sands7412f6e2010-11-17 04:30:22 +0000161Value *PHINode::hasConstantValue() const {
162 // Exploit the fact that phi nodes always have at least one entry.
163 Value *ConstantValue = getIncomingValue(0);
164 for (unsigned i = 1, e = getNumIncomingValues(); i != e; ++i)
Nuno Lopes90c76df2012-07-03 17:10:28 +0000165 if (getIncomingValue(i) != ConstantValue && getIncomingValue(i) != this) {
166 if (ConstantValue != this)
167 return 0; // Incoming values not all the same.
168 // The case where the first value is this PHI.
169 ConstantValue = getIncomingValue(i);
170 }
Nuno Lopes0d44a502012-07-03 21:15:40 +0000171 if (ConstantValue == this)
172 return UndefValue::get(getType());
Duncan Sands7412f6e2010-11-17 04:30:22 +0000173 return ConstantValue;
Nate Begemanb3923212005-08-04 23:24:19 +0000174}
175
Bill Wendlingfae14752011-08-12 20:24:12 +0000176//===----------------------------------------------------------------------===//
177// LandingPadInst Implementation
178//===----------------------------------------------------------------------===//
179
180LandingPadInst::LandingPadInst(Type *RetTy, Value *PersonalityFn,
181 unsigned NumReservedValues, const Twine &NameStr,
182 Instruction *InsertBefore)
183 : Instruction(RetTy, Instruction::LandingPad, 0, 0, InsertBefore) {
184 init(PersonalityFn, 1 + NumReservedValues, NameStr);
185}
186
187LandingPadInst::LandingPadInst(Type *RetTy, Value *PersonalityFn,
188 unsigned NumReservedValues, const Twine &NameStr,
189 BasicBlock *InsertAtEnd)
190 : Instruction(RetTy, Instruction::LandingPad, 0, 0, InsertAtEnd) {
191 init(PersonalityFn, 1 + NumReservedValues, NameStr);
192}
193
194LandingPadInst::LandingPadInst(const LandingPadInst &LP)
195 : Instruction(LP.getType(), Instruction::LandingPad,
196 allocHungoffUses(LP.getNumOperands()), LP.getNumOperands()),
197 ReservedSpace(LP.getNumOperands()) {
198 Use *OL = OperandList, *InOL = LP.OperandList;
199 for (unsigned I = 0, E = ReservedSpace; I != E; ++I)
200 OL[I] = InOL[I];
201
202 setCleanup(LP.isCleanup());
203}
204
205LandingPadInst::~LandingPadInst() {
206 dropHungoffUses();
207}
208
209LandingPadInst *LandingPadInst::Create(Type *RetTy, Value *PersonalityFn,
210 unsigned NumReservedClauses,
211 const Twine &NameStr,
212 Instruction *InsertBefore) {
213 return new LandingPadInst(RetTy, PersonalityFn, NumReservedClauses, NameStr,
214 InsertBefore);
215}
216
217LandingPadInst *LandingPadInst::Create(Type *RetTy, Value *PersonalityFn,
218 unsigned NumReservedClauses,
219 const Twine &NameStr,
220 BasicBlock *InsertAtEnd) {
221 return new LandingPadInst(RetTy, PersonalityFn, NumReservedClauses, NameStr,
222 InsertAtEnd);
223}
224
225void LandingPadInst::init(Value *PersFn, unsigned NumReservedValues,
226 const Twine &NameStr) {
227 ReservedSpace = NumReservedValues;
228 NumOperands = 1;
229 OperandList = allocHungoffUses(ReservedSpace);
230 OperandList[0] = PersFn;
231 setName(NameStr);
232 setCleanup(false);
233}
234
235/// growOperands - grow operands - This grows the operand list in response to a
236/// push_back style of operation. This grows the number of ops by 2 times.
237void LandingPadInst::growOperands(unsigned Size) {
238 unsigned e = getNumOperands();
239 if (ReservedSpace >= e + Size) return;
240 ReservedSpace = (e + Size / 2) * 2;
241
242 Use *NewOps = allocHungoffUses(ReservedSpace);
243 Use *OldOps = OperandList;
244 for (unsigned i = 0; i != e; ++i)
245 NewOps[i] = OldOps[i];
246
247 OperandList = NewOps;
248 Use::zap(OldOps, OldOps + e, true);
249}
250
251void LandingPadInst::addClause(Value *Val) {
252 unsigned OpNo = getNumOperands();
253 growOperands(1);
254 assert(OpNo < ReservedSpace && "Growing didn't work!");
255 ++NumOperands;
256 OperandList[OpNo] = Val;
257}
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000258
259//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000260// CallInst Implementation
261//===----------------------------------------------------------------------===//
262
Gordon Henriksen14a55692007-12-10 02:14:30 +0000263CallInst::~CallInst() {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000264}
265
Jay Foad5bd375a2011-07-15 08:37:34 +0000266void CallInst::init(Value *Func, ArrayRef<Value *> Args, const Twine &NameStr) {
267 assert(NumOperands == Args.size() + 1 && "NumOperands not set up?");
Gabor Greif6d673952010-07-16 09:38:02 +0000268 Op<-1>() = Func;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000269
Jay Foad5bd375a2011-07-15 08:37:34 +0000270#ifndef NDEBUG
Chris Lattner229907c2011-07-18 04:54:35 +0000271 FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000272 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
273
Jay Foad5bd375a2011-07-15 08:37:34 +0000274 assert((Args.size() == FTy->getNumParams() ||
275 (FTy->isVarArg() && Args.size() > FTy->getNumParams())) &&
Chris Lattner667a0562006-05-03 00:48:22 +0000276 "Calling a function with bad signature!");
Jay Foad5bd375a2011-07-15 08:37:34 +0000277
278 for (unsigned i = 0; i != Args.size(); ++i)
Chris Lattner667a0562006-05-03 00:48:22 +0000279 assert((i >= FTy->getNumParams() ||
Jay Foad5bd375a2011-07-15 08:37:34 +0000280 FTy->getParamType(i) == Args[i]->getType()) &&
Chris Lattner667a0562006-05-03 00:48:22 +0000281 "Calling a function with a bad signature!");
Jay Foad5bd375a2011-07-15 08:37:34 +0000282#endif
283
284 std::copy(Args.begin(), Args.end(), op_begin());
285 setName(NameStr);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000286}
287
Jay Foad5bd375a2011-07-15 08:37:34 +0000288void CallInst::init(Value *Func, const Twine &NameStr) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000289 assert(NumOperands == 1 && "NumOperands not set up?");
Gabor Greif6d673952010-07-16 09:38:02 +0000290 Op<-1>() = Func;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000291
Jay Foad5bd375a2011-07-15 08:37:34 +0000292#ifndef NDEBUG
Chris Lattner229907c2011-07-18 04:54:35 +0000293 FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000294 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
295
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000296 assert(FTy->getNumParams() == 0 && "Calling a function with bad signature");
Jay Foad5bd375a2011-07-15 08:37:34 +0000297#endif
298
299 setName(NameStr);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000300}
301
Daniel Dunbar4975db62009-07-25 04:41:11 +0000302CallInst::CallInst(Value *Func, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000303 Instruction *InsertBefore)
304 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
305 ->getElementType())->getReturnType(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000306 Instruction::Call,
307 OperandTraits<CallInst>::op_end(this) - 1,
308 1, InsertBefore) {
Jay Foad5bd375a2011-07-15 08:37:34 +0000309 init(Func, Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000310}
311
Daniel Dunbar4975db62009-07-25 04:41:11 +0000312CallInst::CallInst(Value *Func, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000313 BasicBlock *InsertAtEnd)
314 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
315 ->getElementType())->getReturnType(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000316 Instruction::Call,
317 OperandTraits<CallInst>::op_end(this) - 1,
318 1, InsertAtEnd) {
Jay Foad5bd375a2011-07-15 08:37:34 +0000319 init(Func, Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000320}
321
Misha Brukmanb1c93172005-04-21 23:48:37 +0000322CallInst::CallInst(const CallInst &CI)
Gabor Greiff6caff662008-05-10 08:32:32 +0000323 : Instruction(CI.getType(), Instruction::Call,
324 OperandTraits<CallInst>::op_end(this) - CI.getNumOperands(),
Chris Lattner8a923e72008-03-12 17:45:29 +0000325 CI.getNumOperands()) {
Devang Patel4c758ea2008-09-25 21:00:45 +0000326 setAttributes(CI.getAttributes());
Chris Lattnerb9c86512009-12-29 02:14:09 +0000327 setTailCall(CI.isTailCall());
328 setCallingConv(CI.getCallingConv());
329
Jay Foad5bd375a2011-07-15 08:37:34 +0000330 std::copy(CI.op_begin(), CI.op_end(), op_begin());
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000331 SubclassOptionalData = CI.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000332}
333
Peter Collingbourne1b97a9c2013-03-02 01:20:18 +0000334void CallInst::addAttribute(unsigned i, Attribute::AttrKind attr) {
Bill Wendlinge94d8432012-12-07 23:16:57 +0000335 AttributeSet PAL = getAttributes();
Peter Collingbourne1b97a9c2013-03-02 01:20:18 +0000336 PAL = PAL.addAttribute(getContext(), i, attr);
Devang Patel4c758ea2008-09-25 21:00:45 +0000337 setAttributes(PAL);
Eric Christopher901b1a72008-05-16 20:39:43 +0000338}
339
Bill Wendling3d7b0b82012-12-19 07:18:57 +0000340void CallInst::removeAttribute(unsigned i, Attribute attr) {
Bill Wendlinge94d8432012-12-07 23:16:57 +0000341 AttributeSet PAL = getAttributes();
Bill Wendling430fa9b2013-01-23 00:45:55 +0000342 AttrBuilder B(attr);
343 LLVMContext &Context = getContext();
344 PAL = PAL.removeAttributes(Context, i,
345 AttributeSet::get(Context, i, B));
Devang Patel4c758ea2008-09-25 21:00:45 +0000346 setAttributes(PAL);
Duncan Sands78c88722008-07-08 08:38:44 +0000347}
348
Michael Gottesman41748d72013-06-27 00:25:01 +0000349bool CallInst::hasFnAttrImpl(Attribute::AttrKind A) const {
Bill Wendling749a43d2012-12-30 13:50:49 +0000350 if (AttributeList.hasAttribute(AttributeSet::FunctionIndex, A))
Bill Wendling375eb1f2012-10-09 00:28:54 +0000351 return true;
352 if (const Function *F = getCalledFunction())
Bill Wendling94dcaf82012-12-30 12:45:13 +0000353 return F->getAttributes().hasAttribute(AttributeSet::FunctionIndex, A);
Bill Wendling375eb1f2012-10-09 00:28:54 +0000354 return false;
355}
356
Bill Wendlingc79e42c2012-12-22 00:37:52 +0000357bool CallInst::paramHasAttr(unsigned i, Attribute::AttrKind A) const {
Bill Wendling749a43d2012-12-30 13:50:49 +0000358 if (AttributeList.hasAttribute(i, A))
Bill Wendling8baa61d2012-10-03 17:54:26 +0000359 return true;
360 if (const Function *F = getCalledFunction())
Bill Wendling94dcaf82012-12-30 12:45:13 +0000361 return F->getAttributes().hasAttribute(i, A);
Bill Wendlingdaf8e382012-10-04 07:18:12 +0000362 return false;
363}
364
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000365/// IsConstantOne - Return true only if val is constant int 1
366static bool IsConstantOne(Value *val) {
367 assert(val && "IsConstantOne does not work with NULL val");
368 return isa<ConstantInt>(val) && cast<ConstantInt>(val)->isOne();
369}
370
Nick Lewyckybb1410e2009-10-17 23:52:26 +0000371static Instruction *createMalloc(Instruction *InsertBefore,
Chris Lattner229907c2011-07-18 04:54:35 +0000372 BasicBlock *InsertAtEnd, Type *IntPtrTy,
373 Type *AllocTy, Value *AllocSize,
Victor Hernandezf3db9152009-11-07 00:16:28 +0000374 Value *ArraySize, Function *MallocF,
375 const Twine &Name) {
Benjamin Kramer4bf4e862009-09-10 11:31:39 +0000376 assert(((!InsertBefore && InsertAtEnd) || (InsertBefore && !InsertAtEnd)) &&
Victor Hernandez788eaab2009-09-18 19:20:02 +0000377 "createMalloc needs either InsertBefore or InsertAtEnd");
378
379 // malloc(type) becomes:
380 // bitcast (i8* malloc(typeSize)) to type*
381 // malloc(type, arraySize) becomes:
382 // bitcast (i8 *malloc(typeSize*arraySize)) to type*
Victor Hernandezf3db9152009-11-07 00:16:28 +0000383 if (!ArraySize)
384 ArraySize = ConstantInt::get(IntPtrTy, 1);
385 else if (ArraySize->getType() != IntPtrTy) {
386 if (InsertBefore)
Victor Hernandeze04ed0c2009-11-07 00:36:50 +0000387 ArraySize = CastInst::CreateIntegerCast(ArraySize, IntPtrTy, false,
388 "", InsertBefore);
Victor Hernandezf3db9152009-11-07 00:16:28 +0000389 else
Victor Hernandeze04ed0c2009-11-07 00:36:50 +0000390 ArraySize = CastInst::CreateIntegerCast(ArraySize, IntPtrTy, false,
391 "", InsertAtEnd);
Victor Hernandezf3db9152009-11-07 00:16:28 +0000392 }
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000393
Benjamin Kramer4bf4e862009-09-10 11:31:39 +0000394 if (!IsConstantOne(ArraySize)) {
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000395 if (IsConstantOne(AllocSize)) {
396 AllocSize = ArraySize; // Operand * 1 = Operand
397 } else if (Constant *CO = dyn_cast<Constant>(ArraySize)) {
398 Constant *Scale = ConstantExpr::getIntegerCast(CO, IntPtrTy,
399 false /*ZExt*/);
400 // Malloc arg is constant product of type size and array size
401 AllocSize = ConstantExpr::getMul(Scale, cast<Constant>(AllocSize));
402 } else {
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000403 // Multiply type size by the array size...
404 if (InsertBefore)
Victor Hernandez788eaab2009-09-18 19:20:02 +0000405 AllocSize = BinaryOperator::CreateMul(ArraySize, AllocSize,
406 "mallocsize", InsertBefore);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000407 else
Victor Hernandez788eaab2009-09-18 19:20:02 +0000408 AllocSize = BinaryOperator::CreateMul(ArraySize, AllocSize,
409 "mallocsize", InsertAtEnd);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000410 }
Benjamin Kramer4bf4e862009-09-10 11:31:39 +0000411 }
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000412
Victor Hernandez788eaab2009-09-18 19:20:02 +0000413 assert(AllocSize->getType() == IntPtrTy && "malloc arg is wrong size");
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000414 // Create the call to Malloc.
415 BasicBlock* BB = InsertBefore ? InsertBefore->getParent() : InsertAtEnd;
416 Module* M = BB->getParent()->getParent();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000417 Type *BPTy = Type::getInt8PtrTy(BB->getContext());
Victor Hernandezbb336a12009-11-10 19:53:28 +0000418 Value *MallocFunc = MallocF;
419 if (!MallocFunc)
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000420 // prototype malloc as "void *malloc(size_t)"
Victor Hernandezbb336a12009-11-10 19:53:28 +0000421 MallocFunc = M->getOrInsertFunction("malloc", BPTy, IntPtrTy, NULL);
Chris Lattner229907c2011-07-18 04:54:35 +0000422 PointerType *AllocPtrType = PointerType::getUnqual(AllocTy);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000423 CallInst *MCall = NULL;
Nick Lewyckybb1410e2009-10-17 23:52:26 +0000424 Instruction *Result = NULL;
Victor Hernandez788eaab2009-09-18 19:20:02 +0000425 if (InsertBefore) {
Victor Hernandezbb336a12009-11-10 19:53:28 +0000426 MCall = CallInst::Create(MallocFunc, AllocSize, "malloccall", InsertBefore);
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000427 Result = MCall;
428 if (Result->getType() != AllocPtrType)
429 // Create a cast instruction to convert to the right type...
Victor Hernandezf3db9152009-11-07 00:16:28 +0000430 Result = new BitCastInst(MCall, AllocPtrType, Name, InsertBefore);
Victor Hernandez788eaab2009-09-18 19:20:02 +0000431 } else {
Victor Hernandezbb336a12009-11-10 19:53:28 +0000432 MCall = CallInst::Create(MallocFunc, AllocSize, "malloccall");
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000433 Result = MCall;
434 if (Result->getType() != AllocPtrType) {
435 InsertAtEnd->getInstList().push_back(MCall);
436 // Create a cast instruction to convert to the right type...
Victor Hernandezf3db9152009-11-07 00:16:28 +0000437 Result = new BitCastInst(MCall, AllocPtrType, Name);
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000438 }
Victor Hernandez788eaab2009-09-18 19:20:02 +0000439 }
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000440 MCall->setTailCall();
Victor Hernandezbb336a12009-11-10 19:53:28 +0000441 if (Function *F = dyn_cast<Function>(MallocFunc)) {
442 MCall->setCallingConv(F->getCallingConv());
443 if (!F->doesNotAlias(0)) F->setDoesNotAlias(0);
444 }
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000445 assert(!MCall->getType()->isVoidTy() && "Malloc has void return type");
Victor Hernandez788eaab2009-09-18 19:20:02 +0000446
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000447 return Result;
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000448}
449
450/// CreateMalloc - Generate the IR for a call to malloc:
451/// 1. Compute the malloc call's argument as the specified type's size,
452/// possibly multiplied by the array size if the array size is not
453/// constant 1.
454/// 2. Call malloc with that argument.
455/// 3. Bitcast the result of the malloc call to the specified type.
Nick Lewyckybb1410e2009-10-17 23:52:26 +0000456Instruction *CallInst::CreateMalloc(Instruction *InsertBefore,
Chris Lattner229907c2011-07-18 04:54:35 +0000457 Type *IntPtrTy, Type *AllocTy,
Victor Hernandezf3db9152009-11-07 00:16:28 +0000458 Value *AllocSize, Value *ArraySize,
Duncan Sands41b4a6b2010-07-12 08:16:59 +0000459 Function * MallocF,
Victor Hernandezf3db9152009-11-07 00:16:28 +0000460 const Twine &Name) {
461 return createMalloc(InsertBefore, NULL, IntPtrTy, AllocTy, AllocSize,
Chris Lattner601e390a2010-07-12 00:57:28 +0000462 ArraySize, MallocF, Name);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000463}
464
465/// CreateMalloc - Generate the IR for a call to malloc:
466/// 1. Compute the malloc call's argument as the specified type's size,
467/// possibly multiplied by the array size if the array size is not
468/// constant 1.
469/// 2. Call malloc with that argument.
470/// 3. Bitcast the result of the malloc call to the specified type.
471/// Note: This function does not add the bitcast to the basic block, that is the
472/// responsibility of the caller.
Nick Lewyckybb1410e2009-10-17 23:52:26 +0000473Instruction *CallInst::CreateMalloc(BasicBlock *InsertAtEnd,
Chris Lattner229907c2011-07-18 04:54:35 +0000474 Type *IntPtrTy, Type *AllocTy,
Victor Hernandezf3db9152009-11-07 00:16:28 +0000475 Value *AllocSize, Value *ArraySize,
476 Function *MallocF, const Twine &Name) {
477 return createMalloc(NULL, InsertAtEnd, IntPtrTy, AllocTy, AllocSize,
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000478 ArraySize, MallocF, Name);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000479}
Duncan Sands5208d1a2007-11-28 17:07:01 +0000480
Victor Hernandeze2971492009-10-24 04:23:03 +0000481static Instruction* createFree(Value* Source, Instruction *InsertBefore,
482 BasicBlock *InsertAtEnd) {
483 assert(((!InsertBefore && InsertAtEnd) || (InsertBefore && !InsertAtEnd)) &&
484 "createFree needs either InsertBefore or InsertAtEnd");
Duncan Sands19d0b472010-02-16 11:11:14 +0000485 assert(Source->getType()->isPointerTy() &&
Victor Hernandeze2971492009-10-24 04:23:03 +0000486 "Can not free something of nonpointer type!");
487
488 BasicBlock* BB = InsertBefore ? InsertBefore->getParent() : InsertAtEnd;
489 Module* M = BB->getParent()->getParent();
490
Chris Lattner229907c2011-07-18 04:54:35 +0000491 Type *VoidTy = Type::getVoidTy(M->getContext());
492 Type *IntPtrTy = Type::getInt8PtrTy(M->getContext());
Victor Hernandeze2971492009-10-24 04:23:03 +0000493 // prototype free as "void free(void*)"
Chris Lattner2156c222009-11-09 07:12:01 +0000494 Value *FreeFunc = M->getOrInsertFunction("free", VoidTy, IntPtrTy, NULL);
Victor Hernandeze2971492009-10-24 04:23:03 +0000495 CallInst* Result = NULL;
496 Value *PtrCast = Source;
497 if (InsertBefore) {
498 if (Source->getType() != IntPtrTy)
499 PtrCast = new BitCastInst(Source, IntPtrTy, "", InsertBefore);
500 Result = CallInst::Create(FreeFunc, PtrCast, "", InsertBefore);
501 } else {
502 if (Source->getType() != IntPtrTy)
503 PtrCast = new BitCastInst(Source, IntPtrTy, "", InsertAtEnd);
504 Result = CallInst::Create(FreeFunc, PtrCast, "");
505 }
506 Result->setTailCall();
Chris Lattner2156c222009-11-09 07:12:01 +0000507 if (Function *F = dyn_cast<Function>(FreeFunc))
508 Result->setCallingConv(F->getCallingConv());
Victor Hernandeze2971492009-10-24 04:23:03 +0000509
510 return Result;
511}
512
513/// CreateFree - Generate the IR for a call to the builtin free function.
Chris Lattner601e390a2010-07-12 00:57:28 +0000514Instruction * CallInst::CreateFree(Value* Source, Instruction *InsertBefore) {
515 return createFree(Source, InsertBefore, NULL);
Victor Hernandeze2971492009-10-24 04:23:03 +0000516}
517
518/// CreateFree - Generate the IR for a call to the builtin free function.
519/// Note: This function does not add the call to the basic block, that is the
520/// responsibility of the caller.
521Instruction* CallInst::CreateFree(Value* Source, BasicBlock *InsertAtEnd) {
522 Instruction* FreeCall = createFree(Source, NULL, InsertAtEnd);
523 assert(FreeCall && "CreateFree did not create a CallInst");
524 return FreeCall;
525}
526
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000527//===----------------------------------------------------------------------===//
528// InvokeInst Implementation
529//===----------------------------------------------------------------------===//
530
531void InvokeInst::init(Value *Fn, BasicBlock *IfNormal, BasicBlock *IfException,
Jay Foad5bd375a2011-07-15 08:37:34 +0000532 ArrayRef<Value *> Args, const Twine &NameStr) {
533 assert(NumOperands == 3 + Args.size() && "NumOperands not set up?");
Gabor Greifa2fbc0a2010-03-24 13:21:49 +0000534 Op<-3>() = Fn;
535 Op<-2>() = IfNormal;
536 Op<-1>() = IfException;
Jay Foad5bd375a2011-07-15 08:37:34 +0000537
538#ifndef NDEBUG
Chris Lattner229907c2011-07-18 04:54:35 +0000539 FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000540 cast<FunctionType>(cast<PointerType>(Fn->getType())->getElementType());
Misha Brukmanb1c93172005-04-21 23:48:37 +0000541
Jay Foad5bd375a2011-07-15 08:37:34 +0000542 assert(((Args.size() == FTy->getNumParams()) ||
543 (FTy->isVarArg() && Args.size() > FTy->getNumParams())) &&
Gabor Greif668d7002010-03-23 13:45:54 +0000544 "Invoking a function with bad signature");
Misha Brukmanb1c93172005-04-21 23:48:37 +0000545
Jay Foad5bd375a2011-07-15 08:37:34 +0000546 for (unsigned i = 0, e = Args.size(); i != e; i++)
Chris Lattner667a0562006-05-03 00:48:22 +0000547 assert((i >= FTy->getNumParams() ||
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000548 FTy->getParamType(i) == Args[i]->getType()) &&
Chris Lattner667a0562006-05-03 00:48:22 +0000549 "Invoking a function with a bad signature!");
Jay Foad5bd375a2011-07-15 08:37:34 +0000550#endif
551
552 std::copy(Args.begin(), Args.end(), op_begin());
553 setName(NameStr);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000554}
555
Misha Brukmanb1c93172005-04-21 23:48:37 +0000556InvokeInst::InvokeInst(const InvokeInst &II)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000557 : TerminatorInst(II.getType(), Instruction::Invoke,
Gabor Greif697e94c2008-05-15 10:04:30 +0000558 OperandTraits<InvokeInst>::op_end(this)
559 - II.getNumOperands(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000560 II.getNumOperands()) {
Devang Patel4c758ea2008-09-25 21:00:45 +0000561 setAttributes(II.getAttributes());
Chris Lattnerb9c86512009-12-29 02:14:09 +0000562 setCallingConv(II.getCallingConv());
Jay Foad5bd375a2011-07-15 08:37:34 +0000563 std::copy(II.op_begin(), II.op_end(), op_begin());
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000564 SubclassOptionalData = II.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000565}
566
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000567BasicBlock *InvokeInst::getSuccessorV(unsigned idx) const {
568 return getSuccessor(idx);
569}
570unsigned InvokeInst::getNumSuccessorsV() const {
571 return getNumSuccessors();
572}
573void InvokeInst::setSuccessorV(unsigned idx, BasicBlock *B) {
574 return setSuccessor(idx, B);
575}
576
Michael Gottesman41748d72013-06-27 00:25:01 +0000577bool InvokeInst::hasFnAttrImpl(Attribute::AttrKind A) const {
Bill Wendling749a43d2012-12-30 13:50:49 +0000578 if (AttributeList.hasAttribute(AttributeSet::FunctionIndex, A))
Bill Wendling375eb1f2012-10-09 00:28:54 +0000579 return true;
580 if (const Function *F = getCalledFunction())
Bill Wendling94dcaf82012-12-30 12:45:13 +0000581 return F->getAttributes().hasAttribute(AttributeSet::FunctionIndex, A);
Bill Wendling375eb1f2012-10-09 00:28:54 +0000582 return false;
583}
584
Bill Wendlingc79e42c2012-12-22 00:37:52 +0000585bool InvokeInst::paramHasAttr(unsigned i, Attribute::AttrKind A) const {
Bill Wendling749a43d2012-12-30 13:50:49 +0000586 if (AttributeList.hasAttribute(i, A))
Bill Wendling8baa61d2012-10-03 17:54:26 +0000587 return true;
588 if (const Function *F = getCalledFunction())
Bill Wendling94dcaf82012-12-30 12:45:13 +0000589 return F->getAttributes().hasAttribute(i, A);
Bill Wendlingdaf8e382012-10-04 07:18:12 +0000590 return false;
591}
592
Peter Collingbourne1b97a9c2013-03-02 01:20:18 +0000593void InvokeInst::addAttribute(unsigned i, Attribute::AttrKind attr) {
Bill Wendlinge94d8432012-12-07 23:16:57 +0000594 AttributeSet PAL = getAttributes();
Peter Collingbourne1b97a9c2013-03-02 01:20:18 +0000595 PAL = PAL.addAttribute(getContext(), i, attr);
Devang Patel4c758ea2008-09-25 21:00:45 +0000596 setAttributes(PAL);
Eric Christopher901b1a72008-05-16 20:39:43 +0000597}
598
Bill Wendling3d7b0b82012-12-19 07:18:57 +0000599void InvokeInst::removeAttribute(unsigned i, Attribute attr) {
Bill Wendlinge94d8432012-12-07 23:16:57 +0000600 AttributeSet PAL = getAttributes();
Bill Wendling430fa9b2013-01-23 00:45:55 +0000601 AttrBuilder B(attr);
602 PAL = PAL.removeAttributes(getContext(), i,
603 AttributeSet::get(getContext(), i, B));
Devang Patel4c758ea2008-09-25 21:00:45 +0000604 setAttributes(PAL);
Duncan Sandsaa31b922007-12-19 21:13:37 +0000605}
606
Bill Wendlingfae14752011-08-12 20:24:12 +0000607LandingPadInst *InvokeInst::getLandingPadInst() const {
608 return cast<LandingPadInst>(getUnwindDest()->getFirstNonPHI());
609}
Duncan Sands5208d1a2007-11-28 17:07:01 +0000610
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000611//===----------------------------------------------------------------------===//
612// ReturnInst Implementation
613//===----------------------------------------------------------------------===//
614
Chris Lattner2195fc42007-02-24 00:55:48 +0000615ReturnInst::ReturnInst(const ReturnInst &RI)
Owen Anderson55f1c092009-08-13 21:58:54 +0000616 : TerminatorInst(Type::getVoidTy(RI.getContext()), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000617 OperandTraits<ReturnInst>::op_end(this) -
618 RI.getNumOperands(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000619 RI.getNumOperands()) {
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000620 if (RI.getNumOperands())
Gabor Greif2d3024d2008-05-26 21:33:52 +0000621 Op<0>() = RI.Op<0>();
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000622 SubclassOptionalData = RI.SubclassOptionalData;
Chris Lattner2195fc42007-02-24 00:55:48 +0000623}
624
Owen Anderson55f1c092009-08-13 21:58:54 +0000625ReturnInst::ReturnInst(LLVMContext &C, Value *retVal, Instruction *InsertBefore)
626 : TerminatorInst(Type::getVoidTy(C), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000627 OperandTraits<ReturnInst>::op_end(this) - !!retVal, !!retVal,
628 InsertBefore) {
Devang Patelc38eb522008-02-26 18:49:29 +0000629 if (retVal)
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000630 Op<0>() = retVal;
Chris Lattner2195fc42007-02-24 00:55:48 +0000631}
Owen Anderson55f1c092009-08-13 21:58:54 +0000632ReturnInst::ReturnInst(LLVMContext &C, Value *retVal, BasicBlock *InsertAtEnd)
633 : TerminatorInst(Type::getVoidTy(C), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000634 OperandTraits<ReturnInst>::op_end(this) - !!retVal, !!retVal,
635 InsertAtEnd) {
Devang Patelc38eb522008-02-26 18:49:29 +0000636 if (retVal)
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000637 Op<0>() = retVal;
Chris Lattner2195fc42007-02-24 00:55:48 +0000638}
Owen Anderson55f1c092009-08-13 21:58:54 +0000639ReturnInst::ReturnInst(LLVMContext &Context, BasicBlock *InsertAtEnd)
640 : TerminatorInst(Type::getVoidTy(Context), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000641 OperandTraits<ReturnInst>::op_end(this), 0, InsertAtEnd) {
Devang Patel59643e52008-02-23 00:35:18 +0000642}
643
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000644unsigned ReturnInst::getNumSuccessorsV() const {
645 return getNumSuccessors();
646}
647
Devang Patelae682fb2008-02-26 17:56:20 +0000648/// Out-of-line ReturnInst method, put here so the C++ compiler can choose to
649/// emit the vtable for the class in this translation unit.
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000650void ReturnInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000651 llvm_unreachable("ReturnInst has no successors!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000652}
653
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000654BasicBlock *ReturnInst::getSuccessorV(unsigned idx) const {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000655 llvm_unreachable("ReturnInst has no successors!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000656}
657
Devang Patel59643e52008-02-23 00:35:18 +0000658ReturnInst::~ReturnInst() {
Devang Patel59643e52008-02-23 00:35:18 +0000659}
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000660
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000661//===----------------------------------------------------------------------===//
Bill Wendlingf891bf82011-07-31 06:30:59 +0000662// ResumeInst Implementation
663//===----------------------------------------------------------------------===//
664
665ResumeInst::ResumeInst(const ResumeInst &RI)
666 : TerminatorInst(Type::getVoidTy(RI.getContext()), Instruction::Resume,
667 OperandTraits<ResumeInst>::op_begin(this), 1) {
668 Op<0>() = RI.Op<0>();
669}
670
671ResumeInst::ResumeInst(Value *Exn, Instruction *InsertBefore)
672 : TerminatorInst(Type::getVoidTy(Exn->getContext()), Instruction::Resume,
673 OperandTraits<ResumeInst>::op_begin(this), 1, InsertBefore) {
674 Op<0>() = Exn;
675}
676
677ResumeInst::ResumeInst(Value *Exn, BasicBlock *InsertAtEnd)
678 : TerminatorInst(Type::getVoidTy(Exn->getContext()), Instruction::Resume,
679 OperandTraits<ResumeInst>::op_begin(this), 1, InsertAtEnd) {
680 Op<0>() = Exn;
681}
682
683unsigned ResumeInst::getNumSuccessorsV() const {
684 return getNumSuccessors();
685}
686
687void ResumeInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
688 llvm_unreachable("ResumeInst has no successors!");
689}
690
691BasicBlock *ResumeInst::getSuccessorV(unsigned idx) const {
692 llvm_unreachable("ResumeInst has no successors!");
Bill Wendlingf891bf82011-07-31 06:30:59 +0000693}
694
695//===----------------------------------------------------------------------===//
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000696// UnreachableInst Implementation
697//===----------------------------------------------------------------------===//
698
Owen Anderson55f1c092009-08-13 21:58:54 +0000699UnreachableInst::UnreachableInst(LLVMContext &Context,
700 Instruction *InsertBefore)
701 : TerminatorInst(Type::getVoidTy(Context), Instruction::Unreachable,
702 0, 0, InsertBefore) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000703}
Owen Anderson55f1c092009-08-13 21:58:54 +0000704UnreachableInst::UnreachableInst(LLVMContext &Context, BasicBlock *InsertAtEnd)
705 : TerminatorInst(Type::getVoidTy(Context), Instruction::Unreachable,
706 0, 0, InsertAtEnd) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000707}
708
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000709unsigned UnreachableInst::getNumSuccessorsV() const {
710 return getNumSuccessors();
711}
712
713void UnreachableInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
Bill Wendling0aef16a2012-02-06 21:44:22 +0000714 llvm_unreachable("UnreachableInst has no successors!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000715}
716
717BasicBlock *UnreachableInst::getSuccessorV(unsigned idx) const {
Bill Wendling0aef16a2012-02-06 21:44:22 +0000718 llvm_unreachable("UnreachableInst has no successors!");
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000719}
720
721//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000722// BranchInst Implementation
723//===----------------------------------------------------------------------===//
724
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000725void BranchInst::AssertOK() {
726 if (isConditional())
Duncan Sands9dff9be2010-02-15 16:12:20 +0000727 assert(getCondition()->getType()->isIntegerTy(1) &&
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000728 "May only branch on boolean predicates!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000729}
730
Chris Lattner2195fc42007-02-24 00:55:48 +0000731BranchInst::BranchInst(BasicBlock *IfTrue, 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) - 1,
734 1, InsertBefore) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000735 assert(IfTrue != 0 && "Branch destination may not be null!");
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000736 Op<-1>() = IfTrue;
Chris Lattner2195fc42007-02-24 00:55:48 +0000737}
738BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
739 Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +0000740 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000741 OperandTraits<BranchInst>::op_end(this) - 3,
742 3, InsertBefore) {
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000743 Op<-1>() = IfTrue;
744 Op<-2>() = IfFalse;
745 Op<-3>() = Cond;
Chris Lattner2195fc42007-02-24 00:55:48 +0000746#ifndef NDEBUG
747 AssertOK();
748#endif
749}
750
751BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +0000752 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000753 OperandTraits<BranchInst>::op_end(this) - 1,
754 1, InsertAtEnd) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000755 assert(IfTrue != 0 && "Branch destination may not be null!");
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000756 Op<-1>() = IfTrue;
Chris Lattner2195fc42007-02-24 00:55:48 +0000757}
758
759BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
760 BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +0000761 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000762 OperandTraits<BranchInst>::op_end(this) - 3,
763 3, InsertAtEnd) {
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000764 Op<-1>() = IfTrue;
765 Op<-2>() = IfFalse;
766 Op<-3>() = Cond;
Chris Lattner2195fc42007-02-24 00:55:48 +0000767#ifndef NDEBUG
768 AssertOK();
769#endif
770}
771
772
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000773BranchInst::BranchInst(const BranchInst &BI) :
Owen Anderson55f1c092009-08-13 21:58:54 +0000774 TerminatorInst(Type::getVoidTy(BI.getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000775 OperandTraits<BranchInst>::op_end(this) - BI.getNumOperands(),
776 BI.getNumOperands()) {
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000777 Op<-1>() = BI.Op<-1>();
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000778 if (BI.getNumOperands() != 1) {
779 assert(BI.getNumOperands() == 3 && "BR can have 1 or 3 operands!");
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000780 Op<-3>() = BI.Op<-3>();
781 Op<-2>() = BI.Op<-2>();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000782 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000783 SubclassOptionalData = BI.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000784}
785
Chandler Carruth3e8aa652011-10-17 01:11:57 +0000786void BranchInst::swapSuccessors() {
787 assert(isConditional() &&
788 "Cannot swap successors of an unconditional branch");
789 Op<-1>().swap(Op<-2>());
790
791 // Update profile metadata if present and it matches our structural
792 // expectations.
793 MDNode *ProfileData = getMetadata(LLVMContext::MD_prof);
794 if (!ProfileData || ProfileData->getNumOperands() != 3)
795 return;
796
797 // The first operand is the name. Fetch them backwards and build a new one.
798 Value *Ops[] = {
799 ProfileData->getOperand(0),
800 ProfileData->getOperand(2),
801 ProfileData->getOperand(1)
802 };
803 setMetadata(LLVMContext::MD_prof,
804 MDNode::get(ProfileData->getContext(), Ops));
805}
806
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000807BasicBlock *BranchInst::getSuccessorV(unsigned idx) const {
808 return getSuccessor(idx);
809}
810unsigned BranchInst::getNumSuccessorsV() const {
811 return getNumSuccessors();
812}
813void BranchInst::setSuccessorV(unsigned idx, BasicBlock *B) {
814 setSuccessor(idx, B);
815}
816
817
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000818//===----------------------------------------------------------------------===//
Victor Hernandez8acf2952009-10-23 21:09:37 +0000819// AllocaInst Implementation
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000820//===----------------------------------------------------------------------===//
821
Owen Andersonb6b25302009-07-14 23:09:55 +0000822static Value *getAISize(LLVMContext &Context, Value *Amt) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000823 if (!Amt)
Owen Anderson55f1c092009-08-13 21:58:54 +0000824 Amt = ConstantInt::get(Type::getInt32Ty(Context), 1);
Chris Lattnerbb7ff662006-05-10 04:32:43 +0000825 else {
826 assert(!isa<BasicBlock>(Amt) &&
Chris Lattner9b6ec772007-10-18 16:10:48 +0000827 "Passed basic block into allocation size parameter! Use other ctor");
Dan Gohman2140a742010-05-28 01:14:11 +0000828 assert(Amt->getType()->isIntegerTy() &&
829 "Allocation array size is not an integer!");
Chris Lattnerbb7ff662006-05-10 04:32:43 +0000830 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000831 return Amt;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000832}
833
Chris Lattner229907c2011-07-18 04:54:35 +0000834AllocaInst::AllocaInst(Type *Ty, Value *ArraySize,
Victor Hernandez8acf2952009-10-23 21:09:37 +0000835 const Twine &Name, Instruction *InsertBefore)
836 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
837 getAISize(Ty->getContext(), ArraySize), InsertBefore) {
838 setAlignment(0);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000839 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Victor Hernandez8acf2952009-10-23 21:09:37 +0000840 setName(Name);
841}
842
Chris Lattner229907c2011-07-18 04:54:35 +0000843AllocaInst::AllocaInst(Type *Ty, Value *ArraySize,
Victor Hernandez8acf2952009-10-23 21:09:37 +0000844 const Twine &Name, BasicBlock *InsertAtEnd)
845 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
846 getAISize(Ty->getContext(), ArraySize), InsertAtEnd) {
847 setAlignment(0);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000848 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Victor Hernandez8acf2952009-10-23 21:09:37 +0000849 setName(Name);
850}
851
Chris Lattner229907c2011-07-18 04:54:35 +0000852AllocaInst::AllocaInst(Type *Ty, const Twine &Name,
Victor Hernandez8acf2952009-10-23 21:09:37 +0000853 Instruction *InsertBefore)
854 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
855 getAISize(Ty->getContext(), 0), InsertBefore) {
856 setAlignment(0);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000857 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Victor Hernandez8acf2952009-10-23 21:09:37 +0000858 setName(Name);
859}
860
Chris Lattner229907c2011-07-18 04:54:35 +0000861AllocaInst::AllocaInst(Type *Ty, const Twine &Name,
Victor Hernandez8acf2952009-10-23 21:09:37 +0000862 BasicBlock *InsertAtEnd)
863 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
864 getAISize(Ty->getContext(), 0), InsertAtEnd) {
865 setAlignment(0);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000866 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Victor Hernandez8acf2952009-10-23 21:09:37 +0000867 setName(Name);
868}
869
Chris Lattner229907c2011-07-18 04:54:35 +0000870AllocaInst::AllocaInst(Type *Ty, Value *ArraySize, unsigned Align,
Victor Hernandez8acf2952009-10-23 21:09:37 +0000871 const Twine &Name, Instruction *InsertBefore)
872 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
Owen Anderson4fdeba92009-07-15 23:53:25 +0000873 getAISize(Ty->getContext(), ArraySize), InsertBefore) {
Dan Gohmanaa583d72008-03-24 16:55:58 +0000874 setAlignment(Align);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000875 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Chris Lattner0f048162007-02-13 07:54:42 +0000876 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000877}
878
Chris Lattner229907c2011-07-18 04:54:35 +0000879AllocaInst::AllocaInst(Type *Ty, Value *ArraySize, unsigned Align,
Victor Hernandez8acf2952009-10-23 21:09:37 +0000880 const Twine &Name, BasicBlock *InsertAtEnd)
881 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
Owen Anderson4fdeba92009-07-15 23:53:25 +0000882 getAISize(Ty->getContext(), ArraySize), InsertAtEnd) {
Dan Gohmanaa583d72008-03-24 16:55:58 +0000883 setAlignment(Align);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000884 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Chris Lattner0f048162007-02-13 07:54:42 +0000885 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000886}
887
Gordon Henriksen14a55692007-12-10 02:14:30 +0000888// Out of line virtual method, so the vtable, etc has a home.
Victor Hernandez8acf2952009-10-23 21:09:37 +0000889AllocaInst::~AllocaInst() {
Gordon Henriksen14a55692007-12-10 02:14:30 +0000890}
891
Victor Hernandez8acf2952009-10-23 21:09:37 +0000892void AllocaInst::setAlignment(unsigned Align) {
Dan Gohmanaa583d72008-03-24 16:55:58 +0000893 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
Dan Gohmana7e5a242010-07-28 20:12:04 +0000894 assert(Align <= MaximumAlignment &&
895 "Alignment is greater than MaximumAlignment!");
Chris Lattnerd8eb2cf2009-12-29 02:46:09 +0000896 setInstructionSubclassData(Log2_32(Align) + 1);
Dan Gohmanaa583d72008-03-24 16:55:58 +0000897 assert(getAlignment() == Align && "Alignment representation error!");
898}
899
Victor Hernandez8acf2952009-10-23 21:09:37 +0000900bool AllocaInst::isArrayAllocation() const {
Reid Spencera9e6e312007-03-01 20:27:41 +0000901 if (ConstantInt *CI = dyn_cast<ConstantInt>(getOperand(0)))
Dan Gohman9a1b8592010-09-27 15:15:44 +0000902 return !CI->isOne();
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000903 return true;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000904}
905
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000906Type *AllocaInst::getAllocatedType() const {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000907 return getType()->getElementType();
908}
909
Chris Lattner8b291e62008-11-26 02:54:17 +0000910/// isStaticAlloca - Return true if this alloca is in the entry block of the
911/// function and is a constant size. If so, the code generator will fold it
912/// into the prolog/epilog code, so it is basically free.
913bool AllocaInst::isStaticAlloca() const {
914 // Must be constant size.
915 if (!isa<ConstantInt>(getArraySize())) return false;
916
917 // Must be in the entry block.
918 const BasicBlock *Parent = getParent();
919 return Parent == &Parent->getParent()->front();
920}
921
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000922//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000923// LoadInst Implementation
924//===----------------------------------------------------------------------===//
925
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000926void LoadInst::AssertOK() {
Duncan Sands19d0b472010-02-16 11:11:14 +0000927 assert(getOperand(0)->getType()->isPointerTy() &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000928 "Ptr must have pointer type.");
Eli Friedman59b66882011-08-09 23:02:53 +0000929 assert(!(isAtomic() && getAlignment() == 0) &&
930 "Alignment required for atomic load");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000931}
932
Daniel Dunbar4975db62009-07-25 04:41:11 +0000933LoadInst::LoadInst(Value *Ptr, const Twine &Name, Instruction *InsertBef)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000934 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000935 Load, Ptr, InsertBef) {
Chris Lattnerdf57a022005-02-05 01:38:38 +0000936 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000937 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +0000938 setAtomic(NotAtomic);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000939 AssertOK();
Chris Lattner0f048162007-02-13 07:54:42 +0000940 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000941}
942
Daniel Dunbar4975db62009-07-25 04:41:11 +0000943LoadInst::LoadInst(Value *Ptr, const Twine &Name, BasicBlock *InsertAE)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000944 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000945 Load, Ptr, InsertAE) {
Chris Lattnerdf57a022005-02-05 01:38:38 +0000946 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000947 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +0000948 setAtomic(NotAtomic);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000949 AssertOK();
Chris Lattner0f048162007-02-13 07:54:42 +0000950 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000951}
952
Daniel Dunbar4975db62009-07-25 04:41:11 +0000953LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000954 Instruction *InsertBef)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000955 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000956 Load, Ptr, InsertBef) {
Chris Lattnerdf57a022005-02-05 01:38:38 +0000957 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +0000958 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +0000959 setAtomic(NotAtomic);
960 AssertOK();
961 setName(Name);
962}
963
964LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
965 BasicBlock *InsertAE)
966 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
967 Load, Ptr, InsertAE) {
968 setVolatile(isVolatile);
969 setAlignment(0);
970 setAtomic(NotAtomic);
Christopher Lamb84485702007-04-22 19:24:39 +0000971 AssertOK();
972 setName(Name);
973}
974
Daniel Dunbar4975db62009-07-25 04:41:11 +0000975LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Christopher Lamb84485702007-04-22 19:24:39 +0000976 unsigned Align, Instruction *InsertBef)
977 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
978 Load, Ptr, InsertBef) {
979 setVolatile(isVolatile);
980 setAlignment(Align);
Eli Friedman59b66882011-08-09 23:02:53 +0000981 setAtomic(NotAtomic);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000982 AssertOK();
Chris Lattner0f048162007-02-13 07:54:42 +0000983 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000984}
985
Daniel Dunbar4975db62009-07-25 04:41:11 +0000986LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Dan Gohman68659282007-07-18 20:51:11 +0000987 unsigned Align, BasicBlock *InsertAE)
988 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
989 Load, Ptr, InsertAE) {
990 setVolatile(isVolatile);
991 setAlignment(Align);
Eli Friedman59b66882011-08-09 23:02:53 +0000992 setAtomic(NotAtomic);
Dan Gohman68659282007-07-18 20:51:11 +0000993 AssertOK();
994 setName(Name);
995}
996
Eli Friedman59b66882011-08-09 23:02:53 +0000997LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
998 unsigned Align, AtomicOrdering Order,
999 SynchronizationScope SynchScope,
1000 Instruction *InsertBef)
1001 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
1002 Load, Ptr, InsertBef) {
1003 setVolatile(isVolatile);
1004 setAlignment(Align);
1005 setAtomic(Order, SynchScope);
1006 AssertOK();
1007 setName(Name);
1008}
1009
1010LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
1011 unsigned Align, AtomicOrdering Order,
1012 SynchronizationScope SynchScope,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001013 BasicBlock *InsertAE)
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001014 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +00001015 Load, Ptr, InsertAE) {
Chris Lattner0f048162007-02-13 07:54:42 +00001016 setVolatile(isVolatile);
Eli Friedman59b66882011-08-09 23:02:53 +00001017 setAlignment(Align);
1018 setAtomic(Order, SynchScope);
Chris Lattner0f048162007-02-13 07:54:42 +00001019 AssertOK();
1020 setName(Name);
1021}
1022
Daniel Dunbar27096822009-08-11 18:11:15 +00001023LoadInst::LoadInst(Value *Ptr, const char *Name, Instruction *InsertBef)
1024 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
1025 Load, Ptr, InsertBef) {
1026 setVolatile(false);
1027 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +00001028 setAtomic(NotAtomic);
Daniel Dunbar27096822009-08-11 18:11:15 +00001029 AssertOK();
1030 if (Name && Name[0]) setName(Name);
1031}
1032
1033LoadInst::LoadInst(Value *Ptr, const char *Name, BasicBlock *InsertAE)
1034 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
1035 Load, Ptr, InsertAE) {
1036 setVolatile(false);
1037 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +00001038 setAtomic(NotAtomic);
Daniel Dunbar27096822009-08-11 18:11:15 +00001039 AssertOK();
1040 if (Name && Name[0]) setName(Name);
1041}
1042
1043LoadInst::LoadInst(Value *Ptr, const char *Name, bool isVolatile,
1044 Instruction *InsertBef)
1045: UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
1046 Load, Ptr, InsertBef) {
1047 setVolatile(isVolatile);
1048 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +00001049 setAtomic(NotAtomic);
Daniel Dunbar27096822009-08-11 18:11:15 +00001050 AssertOK();
1051 if (Name && Name[0]) setName(Name);
1052}
1053
1054LoadInst::LoadInst(Value *Ptr, const char *Name, bool isVolatile,
1055 BasicBlock *InsertAE)
1056 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
1057 Load, Ptr, InsertAE) {
1058 setVolatile(isVolatile);
1059 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +00001060 setAtomic(NotAtomic);
Daniel Dunbar27096822009-08-11 18:11:15 +00001061 AssertOK();
1062 if (Name && Name[0]) setName(Name);
1063}
1064
Christopher Lamb84485702007-04-22 19:24:39 +00001065void LoadInst::setAlignment(unsigned Align) {
1066 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
Dan Gohmana7e5a242010-07-28 20:12:04 +00001067 assert(Align <= MaximumAlignment &&
1068 "Alignment is greater than MaximumAlignment!");
Eli Friedman59b66882011-08-09 23:02:53 +00001069 setInstructionSubclassData((getSubclassDataFromInstruction() & ~(31 << 1)) |
Chris Lattnerd8eb2cf2009-12-29 02:46:09 +00001070 ((Log2_32(Align)+1)<<1));
Dan Gohmana7e5a242010-07-28 20:12:04 +00001071 assert(getAlignment() == Align && "Alignment representation error!");
Christopher Lamb84485702007-04-22 19:24:39 +00001072}
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001073
1074//===----------------------------------------------------------------------===//
1075// StoreInst Implementation
1076//===----------------------------------------------------------------------===//
1077
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001078void StoreInst::AssertOK() {
Nate Begemanfecbc8c2008-07-29 15:49:41 +00001079 assert(getOperand(0) && getOperand(1) && "Both operands must be non-null!");
Duncan Sands19d0b472010-02-16 11:11:14 +00001080 assert(getOperand(1)->getType()->isPointerTy() &&
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001081 "Ptr must have pointer type!");
1082 assert(getOperand(0)->getType() ==
1083 cast<PointerType>(getOperand(1)->getType())->getElementType()
Alkis Evlogimenos079fbde2004-08-06 14:33:37 +00001084 && "Ptr must be a pointer to Val type!");
Eli Friedman59b66882011-08-09 23:02:53 +00001085 assert(!(isAtomic() && getAlignment() == 0) &&
1086 "Alignment required for atomic load");
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001087}
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001088
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001089
1090StoreInst::StoreInst(Value *val, Value *addr, Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +00001091 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001092 OperandTraits<StoreInst>::op_begin(this),
1093 OperandTraits<StoreInst>::operands(this),
1094 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001095 Op<0>() = val;
1096 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +00001097 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +00001098 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +00001099 setAtomic(NotAtomic);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001100 AssertOK();
1101}
1102
1103StoreInst::StoreInst(Value *val, Value *addr, BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +00001104 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001105 OperandTraits<StoreInst>::op_begin(this),
1106 OperandTraits<StoreInst>::operands(this),
1107 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001108 Op<0>() = val;
1109 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +00001110 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +00001111 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +00001112 setAtomic(NotAtomic);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001113 AssertOK();
1114}
1115
Misha Brukmanb1c93172005-04-21 23:48:37 +00001116StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001117 Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +00001118 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001119 OperandTraits<StoreInst>::op_begin(this),
1120 OperandTraits<StoreInst>::operands(this),
1121 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001122 Op<0>() = val;
1123 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +00001124 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +00001125 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +00001126 setAtomic(NotAtomic);
Christopher Lamb84485702007-04-22 19:24:39 +00001127 AssertOK();
1128}
1129
1130StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
1131 unsigned Align, Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +00001132 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001133 OperandTraits<StoreInst>::op_begin(this),
1134 OperandTraits<StoreInst>::operands(this),
1135 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001136 Op<0>() = val;
1137 Op<1>() = addr;
Christopher Lamb84485702007-04-22 19:24:39 +00001138 setVolatile(isVolatile);
1139 setAlignment(Align);
Eli Friedman59b66882011-08-09 23:02:53 +00001140 setAtomic(NotAtomic);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001141 AssertOK();
1142}
1143
Misha Brukmanb1c93172005-04-21 23:48:37 +00001144StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Eli Friedman59b66882011-08-09 23:02:53 +00001145 unsigned Align, AtomicOrdering Order,
1146 SynchronizationScope SynchScope,
1147 Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +00001148 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001149 OperandTraits<StoreInst>::op_begin(this),
1150 OperandTraits<StoreInst>::operands(this),
Eli Friedman59b66882011-08-09 23:02:53 +00001151 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001152 Op<0>() = val;
1153 Op<1>() = addr;
Dan Gohman68659282007-07-18 20:51:11 +00001154 setVolatile(isVolatile);
1155 setAlignment(Align);
Eli Friedman59b66882011-08-09 23:02:53 +00001156 setAtomic(Order, SynchScope);
Dan Gohman68659282007-07-18 20:51:11 +00001157 AssertOK();
1158}
1159
1160StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001161 BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +00001162 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001163 OperandTraits<StoreInst>::op_begin(this),
1164 OperandTraits<StoreInst>::operands(this),
1165 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001166 Op<0>() = val;
1167 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +00001168 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +00001169 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +00001170 setAtomic(NotAtomic);
1171 AssertOK();
1172}
1173
1174StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
1175 unsigned Align, BasicBlock *InsertAtEnd)
1176 : Instruction(Type::getVoidTy(val->getContext()), Store,
1177 OperandTraits<StoreInst>::op_begin(this),
1178 OperandTraits<StoreInst>::operands(this),
1179 InsertAtEnd) {
1180 Op<0>() = val;
1181 Op<1>() = addr;
1182 setVolatile(isVolatile);
1183 setAlignment(Align);
1184 setAtomic(NotAtomic);
1185 AssertOK();
1186}
1187
1188StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
1189 unsigned Align, AtomicOrdering Order,
1190 SynchronizationScope SynchScope,
1191 BasicBlock *InsertAtEnd)
1192 : Instruction(Type::getVoidTy(val->getContext()), Store,
1193 OperandTraits<StoreInst>::op_begin(this),
1194 OperandTraits<StoreInst>::operands(this),
1195 InsertAtEnd) {
1196 Op<0>() = val;
1197 Op<1>() = addr;
1198 setVolatile(isVolatile);
1199 setAlignment(Align);
1200 setAtomic(Order, SynchScope);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001201 AssertOK();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001202}
1203
Christopher Lamb84485702007-04-22 19:24:39 +00001204void StoreInst::setAlignment(unsigned Align) {
1205 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
Dan Gohmana7e5a242010-07-28 20:12:04 +00001206 assert(Align <= MaximumAlignment &&
1207 "Alignment is greater than MaximumAlignment!");
Eli Friedman59b66882011-08-09 23:02:53 +00001208 setInstructionSubclassData((getSubclassDataFromInstruction() & ~(31 << 1)) |
Chris Lattnerd8eb2cf2009-12-29 02:46:09 +00001209 ((Log2_32(Align)+1) << 1));
Dan Gohmana7e5a242010-07-28 20:12:04 +00001210 assert(getAlignment() == Align && "Alignment representation error!");
Christopher Lamb84485702007-04-22 19:24:39 +00001211}
1212
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001213//===----------------------------------------------------------------------===//
Eli Friedmanc9a551e2011-07-28 21:48:00 +00001214// AtomicCmpXchgInst Implementation
1215//===----------------------------------------------------------------------===//
1216
1217void AtomicCmpXchgInst::Init(Value *Ptr, Value *Cmp, Value *NewVal,
1218 AtomicOrdering Ordering,
1219 SynchronizationScope SynchScope) {
1220 Op<0>() = Ptr;
1221 Op<1>() = Cmp;
1222 Op<2>() = NewVal;
1223 setOrdering(Ordering);
1224 setSynchScope(SynchScope);
1225
1226 assert(getOperand(0) && getOperand(1) && getOperand(2) &&
1227 "All operands must be non-null!");
1228 assert(getOperand(0)->getType()->isPointerTy() &&
1229 "Ptr must have pointer type!");
1230 assert(getOperand(1)->getType() ==
1231 cast<PointerType>(getOperand(0)->getType())->getElementType()
1232 && "Ptr must be a pointer to Cmp type!");
1233 assert(getOperand(2)->getType() ==
1234 cast<PointerType>(getOperand(0)->getType())->getElementType()
1235 && "Ptr must be a pointer to NewVal type!");
1236 assert(Ordering != NotAtomic &&
1237 "AtomicCmpXchg instructions must be atomic!");
1238}
1239
1240AtomicCmpXchgInst::AtomicCmpXchgInst(Value *Ptr, Value *Cmp, Value *NewVal,
1241 AtomicOrdering Ordering,
1242 SynchronizationScope SynchScope,
1243 Instruction *InsertBefore)
1244 : Instruction(Cmp->getType(), AtomicCmpXchg,
1245 OperandTraits<AtomicCmpXchgInst>::op_begin(this),
1246 OperandTraits<AtomicCmpXchgInst>::operands(this),
1247 InsertBefore) {
1248 Init(Ptr, Cmp, NewVal, Ordering, SynchScope);
1249}
1250
1251AtomicCmpXchgInst::AtomicCmpXchgInst(Value *Ptr, Value *Cmp, Value *NewVal,
1252 AtomicOrdering Ordering,
1253 SynchronizationScope SynchScope,
1254 BasicBlock *InsertAtEnd)
1255 : Instruction(Cmp->getType(), AtomicCmpXchg,
1256 OperandTraits<AtomicCmpXchgInst>::op_begin(this),
1257 OperandTraits<AtomicCmpXchgInst>::operands(this),
1258 InsertAtEnd) {
1259 Init(Ptr, Cmp, NewVal, Ordering, SynchScope);
1260}
1261
1262//===----------------------------------------------------------------------===//
1263// AtomicRMWInst Implementation
1264//===----------------------------------------------------------------------===//
1265
1266void AtomicRMWInst::Init(BinOp Operation, Value *Ptr, Value *Val,
1267 AtomicOrdering Ordering,
1268 SynchronizationScope SynchScope) {
1269 Op<0>() = Ptr;
1270 Op<1>() = Val;
1271 setOperation(Operation);
1272 setOrdering(Ordering);
1273 setSynchScope(SynchScope);
1274
1275 assert(getOperand(0) && getOperand(1) &&
1276 "All operands must be non-null!");
1277 assert(getOperand(0)->getType()->isPointerTy() &&
1278 "Ptr must have pointer type!");
1279 assert(getOperand(1)->getType() ==
1280 cast<PointerType>(getOperand(0)->getType())->getElementType()
1281 && "Ptr must be a pointer to Val type!");
1282 assert(Ordering != NotAtomic &&
1283 "AtomicRMW instructions must be atomic!");
1284}
1285
1286AtomicRMWInst::AtomicRMWInst(BinOp Operation, Value *Ptr, Value *Val,
1287 AtomicOrdering Ordering,
1288 SynchronizationScope SynchScope,
1289 Instruction *InsertBefore)
1290 : Instruction(Val->getType(), AtomicRMW,
1291 OperandTraits<AtomicRMWInst>::op_begin(this),
1292 OperandTraits<AtomicRMWInst>::operands(this),
1293 InsertBefore) {
1294 Init(Operation, Ptr, Val, Ordering, SynchScope);
1295}
1296
1297AtomicRMWInst::AtomicRMWInst(BinOp Operation, Value *Ptr, Value *Val,
1298 AtomicOrdering Ordering,
1299 SynchronizationScope SynchScope,
1300 BasicBlock *InsertAtEnd)
1301 : Instruction(Val->getType(), AtomicRMW,
1302 OperandTraits<AtomicRMWInst>::op_begin(this),
1303 OperandTraits<AtomicRMWInst>::operands(this),
1304 InsertAtEnd) {
1305 Init(Operation, Ptr, Val, Ordering, SynchScope);
1306}
1307
1308//===----------------------------------------------------------------------===//
Eli Friedmanfee02c62011-07-25 23:16:38 +00001309// FenceInst Implementation
1310//===----------------------------------------------------------------------===//
1311
1312FenceInst::FenceInst(LLVMContext &C, AtomicOrdering Ordering,
1313 SynchronizationScope SynchScope,
1314 Instruction *InsertBefore)
1315 : Instruction(Type::getVoidTy(C), Fence, 0, 0, InsertBefore) {
1316 setOrdering(Ordering);
1317 setSynchScope(SynchScope);
1318}
1319
1320FenceInst::FenceInst(LLVMContext &C, AtomicOrdering Ordering,
1321 SynchronizationScope SynchScope,
1322 BasicBlock *InsertAtEnd)
1323 : Instruction(Type::getVoidTy(C), Fence, 0, 0, InsertAtEnd) {
1324 setOrdering(Ordering);
1325 setSynchScope(SynchScope);
1326}
1327
1328//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001329// GetElementPtrInst Implementation
1330//===----------------------------------------------------------------------===//
1331
Jay Foadd1b78492011-07-25 09:48:08 +00001332void GetElementPtrInst::init(Value *Ptr, ArrayRef<Value *> IdxList,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001333 const Twine &Name) {
Jay Foadd1b78492011-07-25 09:48:08 +00001334 assert(NumOperands == 1 + IdxList.size() && "NumOperands not initialized?");
1335 OperandList[0] = Ptr;
1336 std::copy(IdxList.begin(), IdxList.end(), op_begin() + 1);
Matthijs Kooijman76d8dec2008-06-04 16:14:12 +00001337 setName(Name);
Chris Lattner82981202005-05-03 05:43:30 +00001338}
1339
Gabor Greiff6caff662008-05-10 08:32:32 +00001340GetElementPtrInst::GetElementPtrInst(const GetElementPtrInst &GEPI)
Gabor Greife9408e62008-05-27 11:03:29 +00001341 : Instruction(GEPI.getType(), GetElementPtr,
Gabor Greif697e94c2008-05-15 10:04:30 +00001342 OperandTraits<GetElementPtrInst>::op_end(this)
1343 - GEPI.getNumOperands(),
Gabor Greiff6caff662008-05-10 08:32:32 +00001344 GEPI.getNumOperands()) {
Jay Foadd1b78492011-07-25 09:48:08 +00001345 std::copy(GEPI.op_begin(), GEPI.op_end(), op_begin());
Dan Gohmanc8a27f22009-08-25 22:11:20 +00001346 SubclassOptionalData = GEPI.SubclassOptionalData;
Gabor Greiff6caff662008-05-10 08:32:32 +00001347}
1348
Chris Lattner6090a422009-03-09 04:46:40 +00001349/// getIndexedType - Returns the type of the element that would be accessed with
1350/// a gep instruction with the specified parameters.
1351///
1352/// The Idxs pointer should point to a continuous piece of memory containing the
1353/// indices, either as Value* or uint64_t.
1354///
1355/// A null type is returned if the indices are invalid for the specified
1356/// pointer type.
1357///
Matthijs Kooijman04468622008-07-29 08:46:11 +00001358template <typename IndexTy>
Jay Foadd1b78492011-07-25 09:48:08 +00001359static Type *getIndexedTypeInternal(Type *Ptr, ArrayRef<IndexTy> IdxList) {
Duncan Sandse6beec62012-11-13 12:59:33 +00001360 PointerType *PTy = dyn_cast<PointerType>(Ptr->getScalarType());
Dan Gohman12fce772008-05-15 19:50:34 +00001361 if (!PTy) return 0; // Type isn't a pointer type!
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001362 Type *Agg = PTy->getElementType();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001363
Chris Lattner6090a422009-03-09 04:46:40 +00001364 // Handle the special case of the empty set index set, which is always valid.
Jay Foadd1b78492011-07-25 09:48:08 +00001365 if (IdxList.empty())
Dan Gohman12fce772008-05-15 19:50:34 +00001366 return Agg;
Nadav Rotem3924cb02011-12-05 06:29:09 +00001367
Chris Lattner6090a422009-03-09 04:46:40 +00001368 // If there is at least one index, the top level type must be sized, otherwise
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001369 // it cannot be 'stepped over'.
1370 if (!Agg->isSized())
Chris Lattner6090a422009-03-09 04:46:40 +00001371 return 0;
Misha Brukmanb1c93172005-04-21 23:48:37 +00001372
Dan Gohman1ecaf452008-05-31 00:58:22 +00001373 unsigned CurIdx = 1;
Jay Foadd1b78492011-07-25 09:48:08 +00001374 for (; CurIdx != IdxList.size(); ++CurIdx) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001375 CompositeType *CT = dyn_cast<CompositeType>(Agg);
Duncan Sands19d0b472010-02-16 11:11:14 +00001376 if (!CT || CT->isPointerTy()) return 0;
Jay Foadd1b78492011-07-25 09:48:08 +00001377 IndexTy Index = IdxList[CurIdx];
Dan Gohman1ecaf452008-05-31 00:58:22 +00001378 if (!CT->indexValid(Index)) return 0;
1379 Agg = CT->getTypeAtIndex(Index);
Dan Gohman1ecaf452008-05-31 00:58:22 +00001380 }
Jay Foadd1b78492011-07-25 09:48:08 +00001381 return CurIdx == IdxList.size() ? Agg : 0;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001382}
1383
Jay Foadd1b78492011-07-25 09:48:08 +00001384Type *GetElementPtrInst::getIndexedType(Type *Ptr, ArrayRef<Value *> IdxList) {
1385 return getIndexedTypeInternal(Ptr, IdxList);
Matthijs Kooijman04468622008-07-29 08:46:11 +00001386}
1387
Chris Lattner229907c2011-07-18 04:54:35 +00001388Type *GetElementPtrInst::getIndexedType(Type *Ptr,
Jay Foadd1b78492011-07-25 09:48:08 +00001389 ArrayRef<Constant *> IdxList) {
1390 return getIndexedTypeInternal(Ptr, IdxList);
Jay Foad1d4a8fe2011-01-14 08:07:43 +00001391}
1392
Jay Foadd1b78492011-07-25 09:48:08 +00001393Type *GetElementPtrInst::getIndexedType(Type *Ptr, ArrayRef<uint64_t> IdxList) {
1394 return getIndexedTypeInternal(Ptr, IdxList);
Matthijs Kooijman04468622008-07-29 08:46:11 +00001395}
1396
Chris Lattner45f15572007-04-14 00:12:57 +00001397/// hasAllZeroIndices - Return true if all of the indices of this GEP are
1398/// zeros. If so, the result pointer and the first operand have the same
1399/// value, just potentially different types.
1400bool GetElementPtrInst::hasAllZeroIndices() const {
1401 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
1402 if (ConstantInt *CI = dyn_cast<ConstantInt>(getOperand(i))) {
1403 if (!CI->isZero()) return false;
1404 } else {
1405 return false;
1406 }
1407 }
1408 return true;
1409}
1410
Chris Lattner27058292007-04-27 20:35:56 +00001411/// hasAllConstantIndices - Return true if all of the indices of this GEP are
1412/// constant integers. If so, the result pointer and the first operand have
1413/// a constant offset between them.
1414bool GetElementPtrInst::hasAllConstantIndices() const {
1415 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
1416 if (!isa<ConstantInt>(getOperand(i)))
1417 return false;
1418 }
1419 return true;
1420}
1421
Dan Gohman1b849082009-09-07 23:54:19 +00001422void GetElementPtrInst::setIsInBounds(bool B) {
1423 cast<GEPOperator>(this)->setIsInBounds(B);
1424}
Chris Lattner45f15572007-04-14 00:12:57 +00001425
Nick Lewycky28a5f252009-09-27 21:33:04 +00001426bool GetElementPtrInst::isInBounds() const {
1427 return cast<GEPOperator>(this)->isInBounds();
1428}
1429
Chandler Carruth1e140532012-12-11 10:29:10 +00001430bool GetElementPtrInst::accumulateConstantOffset(const DataLayout &DL,
1431 APInt &Offset) const {
Chandler Carruth7ec41c72012-12-11 11:05:15 +00001432 // Delegate to the generic GEPOperator implementation.
1433 return cast<GEPOperator>(this)->accumulateConstantOffset(DL, Offset);
Chandler Carruth1e140532012-12-11 10:29:10 +00001434}
1435
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001436//===----------------------------------------------------------------------===//
Robert Bocchino23004482006-01-10 19:05:34 +00001437// ExtractElementInst Implementation
1438//===----------------------------------------------------------------------===//
1439
1440ExtractElementInst::ExtractElementInst(Value *Val, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001441 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001442 Instruction *InsertBef)
Reid Spencerd84d35b2007-02-15 02:26:10 +00001443 : Instruction(cast<VectorType>(Val->getType())->getElementType(),
Gabor Greiff6caff662008-05-10 08:32:32 +00001444 ExtractElement,
1445 OperandTraits<ExtractElementInst>::op_begin(this),
1446 2, InsertBef) {
Chris Lattner54865b32006-04-08 04:05:48 +00001447 assert(isValidOperands(Val, Index) &&
1448 "Invalid extractelement instruction operands!");
Gabor Greif2d3024d2008-05-26 21:33:52 +00001449 Op<0>() = Val;
1450 Op<1>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001451 setName(Name);
Robert Bocchino23004482006-01-10 19:05:34 +00001452}
1453
1454ExtractElementInst::ExtractElementInst(Value *Val, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001455 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001456 BasicBlock *InsertAE)
Reid Spencerd84d35b2007-02-15 02:26:10 +00001457 : Instruction(cast<VectorType>(Val->getType())->getElementType(),
Gabor Greiff6caff662008-05-10 08:32:32 +00001458 ExtractElement,
1459 OperandTraits<ExtractElementInst>::op_begin(this),
1460 2, InsertAE) {
Chris Lattner54865b32006-04-08 04:05:48 +00001461 assert(isValidOperands(Val, Index) &&
1462 "Invalid extractelement instruction operands!");
1463
Gabor Greif2d3024d2008-05-26 21:33:52 +00001464 Op<0>() = Val;
1465 Op<1>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001466 setName(Name);
Robert Bocchino23004482006-01-10 19:05:34 +00001467}
1468
Chris Lattner65511ff2006-10-05 06:24:58 +00001469
Chris Lattner54865b32006-04-08 04:05:48 +00001470bool ExtractElementInst::isValidOperands(const Value *Val, const Value *Index) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001471 if (!Val->getType()->isVectorTy() || !Index->getType()->isIntegerTy(32))
Chris Lattner54865b32006-04-08 04:05:48 +00001472 return false;
1473 return true;
1474}
1475
1476
Robert Bocchino23004482006-01-10 19:05:34 +00001477//===----------------------------------------------------------------------===//
Robert Bocchinoca27f032006-01-17 20:07:22 +00001478// InsertElementInst Implementation
1479//===----------------------------------------------------------------------===//
1480
Chris Lattner54865b32006-04-08 04:05:48 +00001481InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001482 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001483 Instruction *InsertBef)
Gabor Greiff6caff662008-05-10 08:32:32 +00001484 : Instruction(Vec->getType(), InsertElement,
1485 OperandTraits<InsertElementInst>::op_begin(this),
1486 3, InsertBef) {
Chris Lattner54865b32006-04-08 04:05:48 +00001487 assert(isValidOperands(Vec, Elt, Index) &&
1488 "Invalid insertelement instruction operands!");
Gabor Greif2d3024d2008-05-26 21:33:52 +00001489 Op<0>() = Vec;
1490 Op<1>() = Elt;
1491 Op<2>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001492 setName(Name);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001493}
1494
Chris Lattner54865b32006-04-08 04:05:48 +00001495InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001496 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001497 BasicBlock *InsertAE)
Gabor Greiff6caff662008-05-10 08:32:32 +00001498 : Instruction(Vec->getType(), InsertElement,
1499 OperandTraits<InsertElementInst>::op_begin(this),
1500 3, InsertAE) {
Chris Lattner54865b32006-04-08 04:05:48 +00001501 assert(isValidOperands(Vec, Elt, Index) &&
1502 "Invalid insertelement instruction operands!");
1503
Gabor Greif2d3024d2008-05-26 21:33:52 +00001504 Op<0>() = Vec;
1505 Op<1>() = Elt;
1506 Op<2>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001507 setName(Name);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001508}
1509
Chris Lattner54865b32006-04-08 04:05:48 +00001510bool InsertElementInst::isValidOperands(const Value *Vec, const Value *Elt,
1511 const Value *Index) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001512 if (!Vec->getType()->isVectorTy())
Reid Spencer09575ba2007-02-15 03:39:18 +00001513 return false; // First operand of insertelement must be vector type.
Chris Lattner54865b32006-04-08 04:05:48 +00001514
Reid Spencerd84d35b2007-02-15 02:26:10 +00001515 if (Elt->getType() != cast<VectorType>(Vec->getType())->getElementType())
Dan Gohmanfead7972007-05-11 21:43:24 +00001516 return false;// Second operand of insertelement must be vector element type.
Chris Lattner54865b32006-04-08 04:05:48 +00001517
Duncan Sands9dff9be2010-02-15 16:12:20 +00001518 if (!Index->getType()->isIntegerTy(32))
Dan Gohman4fe64de2009-06-14 23:30:43 +00001519 return false; // Third operand of insertelement must be i32.
Chris Lattner54865b32006-04-08 04:05:48 +00001520 return true;
1521}
1522
1523
Robert Bocchinoca27f032006-01-17 20:07:22 +00001524//===----------------------------------------------------------------------===//
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001525// ShuffleVectorInst Implementation
1526//===----------------------------------------------------------------------===//
1527
1528ShuffleVectorInst::ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001529 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001530 Instruction *InsertBefore)
Owen Anderson4056ca92009-07-29 22:17:13 +00001531: Instruction(VectorType::get(cast<VectorType>(V1->getType())->getElementType(),
Mon P Wang25f01062008-11-10 04:46:22 +00001532 cast<VectorType>(Mask->getType())->getNumElements()),
1533 ShuffleVector,
1534 OperandTraits<ShuffleVectorInst>::op_begin(this),
1535 OperandTraits<ShuffleVectorInst>::operands(this),
1536 InsertBefore) {
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001537 assert(isValidOperands(V1, V2, Mask) &&
1538 "Invalid shuffle vector instruction operands!");
Gabor Greif2d3024d2008-05-26 21:33:52 +00001539 Op<0>() = V1;
1540 Op<1>() = V2;
1541 Op<2>() = Mask;
Chris Lattner2195fc42007-02-24 00:55:48 +00001542 setName(Name);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001543}
1544
1545ShuffleVectorInst::ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001546 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001547 BasicBlock *InsertAtEnd)
Dan Gohmane5af8cd2009-08-25 23:27:45 +00001548: Instruction(VectorType::get(cast<VectorType>(V1->getType())->getElementType(),
1549 cast<VectorType>(Mask->getType())->getNumElements()),
1550 ShuffleVector,
1551 OperandTraits<ShuffleVectorInst>::op_begin(this),
1552 OperandTraits<ShuffleVectorInst>::operands(this),
1553 InsertAtEnd) {
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001554 assert(isValidOperands(V1, V2, Mask) &&
1555 "Invalid shuffle vector instruction operands!");
1556
Gabor Greif2d3024d2008-05-26 21:33:52 +00001557 Op<0>() = V1;
1558 Op<1>() = V2;
1559 Op<2>() = Mask;
Chris Lattner2195fc42007-02-24 00:55:48 +00001560 setName(Name);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001561}
1562
Mon P Wang25f01062008-11-10 04:46:22 +00001563bool ShuffleVectorInst::isValidOperands(const Value *V1, const Value *V2,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001564 const Value *Mask) {
Chris Lattner1dcb6542012-01-25 23:49:49 +00001565 // V1 and V2 must be vectors of the same type.
Duncan Sands19d0b472010-02-16 11:11:14 +00001566 if (!V1->getType()->isVectorTy() || V1->getType() != V2->getType())
Chris Lattnerf724e342008-03-02 05:28:33 +00001567 return false;
1568
Chris Lattner1dcb6542012-01-25 23:49:49 +00001569 // Mask must be vector of i32.
Chris Lattner229907c2011-07-18 04:54:35 +00001570 VectorType *MaskTy = dyn_cast<VectorType>(Mask->getType());
Nate Begeman60a31c32010-08-13 00:16:46 +00001571 if (MaskTy == 0 || !MaskTy->getElementType()->isIntegerTy(32))
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001572 return false;
Nate Begeman60a31c32010-08-13 00:16:46 +00001573
1574 // Check to see if Mask is valid.
Chris Lattner1dcb6542012-01-25 23:49:49 +00001575 if (isa<UndefValue>(Mask) || isa<ConstantAggregateZero>(Mask))
1576 return true;
1577
Nate Begeman60a31c32010-08-13 00:16:46 +00001578 if (const ConstantVector *MV = dyn_cast<ConstantVector>(Mask)) {
Chris Lattner1dcb6542012-01-25 23:49:49 +00001579 unsigned V1Size = cast<VectorType>(V1->getType())->getNumElements();
Nate Begeman60a31c32010-08-13 00:16:46 +00001580 for (unsigned i = 0, e = MV->getNumOperands(); i != e; ++i) {
Chris Lattner1dcb6542012-01-25 23:49:49 +00001581 if (ConstantInt *CI = dyn_cast<ConstantInt>(MV->getOperand(i))) {
1582 if (CI->uge(V1Size*2))
Nate Begeman60a31c32010-08-13 00:16:46 +00001583 return false;
1584 } else if (!isa<UndefValue>(MV->getOperand(i))) {
1585 return false;
1586 }
1587 }
Chris Lattner1dcb6542012-01-25 23:49:49 +00001588 return true;
Mon P Wang6ebf4012011-10-26 00:34:48 +00001589 }
Chris Lattner1dcb6542012-01-25 23:49:49 +00001590
1591 if (const ConstantDataSequential *CDS =
1592 dyn_cast<ConstantDataSequential>(Mask)) {
1593 unsigned V1Size = cast<VectorType>(V1->getType())->getNumElements();
1594 for (unsigned i = 0, e = MaskTy->getNumElements(); i != e; ++i)
1595 if (CDS->getElementAsInteger(i) >= V1Size*2)
1596 return false;
1597 return true;
1598 }
1599
1600 // The bitcode reader can create a place holder for a forward reference
1601 // used as the shuffle mask. When this occurs, the shuffle mask will
1602 // fall into this case and fail. To avoid this error, do this bit of
1603 // ugliness to allow such a mask pass.
1604 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(Mask))
1605 if (CE->getOpcode() == Instruction::UserOp1)
1606 return true;
1607
1608 return false;
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001609}
1610
Chris Lattnerf724e342008-03-02 05:28:33 +00001611/// getMaskValue - Return the index from the shuffle mask for the specified
1612/// output result. This is either -1 if the element is undef or a number less
1613/// than 2*numelements.
Chris Lattnercf129702012-01-26 02:51:13 +00001614int ShuffleVectorInst::getMaskValue(Constant *Mask, unsigned i) {
1615 assert(i < Mask->getType()->getVectorNumElements() && "Index out of range");
1616 if (ConstantDataSequential *CDS =dyn_cast<ConstantDataSequential>(Mask))
Chris Lattner1dcb6542012-01-25 23:49:49 +00001617 return CDS->getElementAsInteger(i);
Chris Lattnercf129702012-01-26 02:51:13 +00001618 Constant *C = Mask->getAggregateElement(i);
Chris Lattner1dcb6542012-01-25 23:49:49 +00001619 if (isa<UndefValue>(C))
Chris Lattnerf724e342008-03-02 05:28:33 +00001620 return -1;
Chris Lattner1dcb6542012-01-25 23:49:49 +00001621 return cast<ConstantInt>(C)->getZExtValue();
Chris Lattnerf724e342008-03-02 05:28:33 +00001622}
1623
Chris Lattner1dcb6542012-01-25 23:49:49 +00001624/// getShuffleMask - Return the full mask for this instruction, where each
1625/// element is the element number and undef's are returned as -1.
Chris Lattnercf129702012-01-26 02:51:13 +00001626void ShuffleVectorInst::getShuffleMask(Constant *Mask,
1627 SmallVectorImpl<int> &Result) {
1628 unsigned NumElts = Mask->getType()->getVectorNumElements();
Chris Lattner1dcb6542012-01-25 23:49:49 +00001629
Chris Lattnercf129702012-01-26 02:51:13 +00001630 if (ConstantDataSequential *CDS=dyn_cast<ConstantDataSequential>(Mask)) {
Chris Lattner1dcb6542012-01-25 23:49:49 +00001631 for (unsigned i = 0; i != NumElts; ++i)
1632 Result.push_back(CDS->getElementAsInteger(i));
1633 return;
1634 }
Chris Lattner1dcb6542012-01-25 23:49:49 +00001635 for (unsigned i = 0; i != NumElts; ++i) {
1636 Constant *C = Mask->getAggregateElement(i);
1637 Result.push_back(isa<UndefValue>(C) ? -1 :
Chris Lattner3dbad4032012-01-26 00:41:50 +00001638 cast<ConstantInt>(C)->getZExtValue());
Chris Lattner1dcb6542012-01-25 23:49:49 +00001639 }
1640}
1641
1642
Dan Gohman12fce772008-05-15 19:50:34 +00001643//===----------------------------------------------------------------------===//
Dan Gohman0752bff2008-05-23 00:36:11 +00001644// InsertValueInst Class
1645//===----------------------------------------------------------------------===//
1646
Jay Foad57aa6362011-07-13 10:26:04 +00001647void InsertValueInst::init(Value *Agg, Value *Val, ArrayRef<unsigned> Idxs,
1648 const Twine &Name) {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001649 assert(NumOperands == 2 && "NumOperands not initialized?");
Jay Foad57aa6362011-07-13 10:26:04 +00001650
1651 // There's no fundamental reason why we require at least one index
1652 // (other than weirdness with &*IdxBegin being invalid; see
1653 // getelementptr's init routine for example). But there's no
1654 // present need to support it.
1655 assert(Idxs.size() > 0 && "InsertValueInst must have at least one index");
1656
1657 assert(ExtractValueInst::getIndexedType(Agg->getType(), Idxs) ==
Frits van Bommel16ebe772010-12-05 20:50:26 +00001658 Val->getType() && "Inserted value must match indexed type!");
Dan Gohman1ecaf452008-05-31 00:58:22 +00001659 Op<0>() = Agg;
1660 Op<1>() = Val;
Dan Gohman0752bff2008-05-23 00:36:11 +00001661
Jay Foad57aa6362011-07-13 10:26:04 +00001662 Indices.append(Idxs.begin(), Idxs.end());
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001663 setName(Name);
Dan Gohman0752bff2008-05-23 00:36:11 +00001664}
1665
1666InsertValueInst::InsertValueInst(const InsertValueInst &IVI)
Gabor Greife9408e62008-05-27 11:03:29 +00001667 : Instruction(IVI.getType(), InsertValue,
Dan Gohman1ecaf452008-05-31 00:58:22 +00001668 OperandTraits<InsertValueInst>::op_begin(this), 2),
1669 Indices(IVI.Indices) {
Dan Gohmand8ca05f2008-06-17 23:25:49 +00001670 Op<0>() = IVI.getOperand(0);
1671 Op<1>() = IVI.getOperand(1);
Dan Gohmanc8a27f22009-08-25 22:11:20 +00001672 SubclassOptionalData = IVI.SubclassOptionalData;
Dan Gohman0752bff2008-05-23 00:36:11 +00001673}
1674
1675//===----------------------------------------------------------------------===//
Dan Gohman12fce772008-05-15 19:50:34 +00001676// ExtractValueInst Class
1677//===----------------------------------------------------------------------===//
1678
Jay Foad57aa6362011-07-13 10:26:04 +00001679void ExtractValueInst::init(ArrayRef<unsigned> Idxs, const Twine &Name) {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001680 assert(NumOperands == 1 && "NumOperands not initialized?");
Dan Gohman0752bff2008-05-23 00:36:11 +00001681
Jay Foad57aa6362011-07-13 10:26:04 +00001682 // There's no fundamental reason why we require at least one index.
1683 // But there's no present need to support it.
1684 assert(Idxs.size() > 0 && "ExtractValueInst must have at least one index");
Dan Gohman0752bff2008-05-23 00:36:11 +00001685
Jay Foad57aa6362011-07-13 10:26:04 +00001686 Indices.append(Idxs.begin(), Idxs.end());
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001687 setName(Name);
Dan Gohman0752bff2008-05-23 00:36:11 +00001688}
1689
1690ExtractValueInst::ExtractValueInst(const ExtractValueInst &EVI)
Gabor Greif21ba1842008-06-06 20:28:12 +00001691 : UnaryInstruction(EVI.getType(), ExtractValue, EVI.getOperand(0)),
Dan Gohman1ecaf452008-05-31 00:58:22 +00001692 Indices(EVI.Indices) {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00001693 SubclassOptionalData = EVI.SubclassOptionalData;
Dan Gohman0752bff2008-05-23 00:36:11 +00001694}
1695
Dan Gohman12fce772008-05-15 19:50:34 +00001696// getIndexedType - Returns the type of the element that would be extracted
1697// with an extractvalue instruction with the specified parameters.
1698//
1699// A null type is returned if the indices are invalid for the specified
1700// pointer type.
1701//
Chris Lattner229907c2011-07-18 04:54:35 +00001702Type *ExtractValueInst::getIndexedType(Type *Agg,
Jay Foad57aa6362011-07-13 10:26:04 +00001703 ArrayRef<unsigned> Idxs) {
1704 for (unsigned CurIdx = 0; CurIdx != Idxs.size(); ++CurIdx) {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001705 unsigned Index = Idxs[CurIdx];
Frits van Bommel16ebe772010-12-05 20:50:26 +00001706 // We can't use CompositeType::indexValid(Index) here.
1707 // indexValid() always returns true for arrays because getelementptr allows
1708 // out-of-bounds indices. Since we don't allow those for extractvalue and
1709 // insertvalue we need to check array indexing manually.
1710 // Since the only other types we can index into are struct types it's just
1711 // as easy to check those manually as well.
Chris Lattner229907c2011-07-18 04:54:35 +00001712 if (ArrayType *AT = dyn_cast<ArrayType>(Agg)) {
Frits van Bommel16ebe772010-12-05 20:50:26 +00001713 if (Index >= AT->getNumElements())
1714 return 0;
Chris Lattner229907c2011-07-18 04:54:35 +00001715 } else if (StructType *ST = dyn_cast<StructType>(Agg)) {
Frits van Bommel16ebe772010-12-05 20:50:26 +00001716 if (Index >= ST->getNumElements())
1717 return 0;
1718 } else {
1719 // Not a valid type to index into.
1720 return 0;
1721 }
1722
1723 Agg = cast<CompositeType>(Agg)->getTypeAtIndex(Index);
Dan Gohman12fce772008-05-15 19:50:34 +00001724 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001725 return const_cast<Type*>(Agg);
Dan Gohman12fce772008-05-15 19:50:34 +00001726}
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001727
1728//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001729// BinaryOperator Class
1730//===----------------------------------------------------------------------===//
1731
Chris Lattner2195fc42007-02-24 00:55:48 +00001732BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2,
Chris Lattner229907c2011-07-18 04:54:35 +00001733 Type *Ty, const Twine &Name,
Chris Lattner2195fc42007-02-24 00:55:48 +00001734 Instruction *InsertBefore)
Dan Gohmana2414ea2010-05-03 22:44:19 +00001735 : Instruction(Ty, iType,
Gabor Greiff6caff662008-05-10 08:32:32 +00001736 OperandTraits<BinaryOperator>::op_begin(this),
1737 OperandTraits<BinaryOperator>::operands(this),
1738 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001739 Op<0>() = S1;
1740 Op<1>() = S2;
Dan Gohmana2414ea2010-05-03 22:44:19 +00001741 init(iType);
Chris Lattner2195fc42007-02-24 00:55:48 +00001742 setName(Name);
1743}
1744
1745BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2,
Chris Lattner229907c2011-07-18 04:54:35 +00001746 Type *Ty, const Twine &Name,
Chris Lattner2195fc42007-02-24 00:55:48 +00001747 BasicBlock *InsertAtEnd)
Dan Gohmana2414ea2010-05-03 22:44:19 +00001748 : Instruction(Ty, iType,
Gabor Greiff6caff662008-05-10 08:32:32 +00001749 OperandTraits<BinaryOperator>::op_begin(this),
1750 OperandTraits<BinaryOperator>::operands(this),
1751 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001752 Op<0>() = S1;
1753 Op<1>() = S2;
Dan Gohmana2414ea2010-05-03 22:44:19 +00001754 init(iType);
Chris Lattner2195fc42007-02-24 00:55:48 +00001755 setName(Name);
1756}
1757
1758
1759void BinaryOperator::init(BinaryOps iType) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001760 Value *LHS = getOperand(0), *RHS = getOperand(1);
Jeffrey Yasskin9b43f332010-12-23 00:58:24 +00001761 (void)LHS; (void)RHS; // Silence warnings.
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001762 assert(LHS->getType() == RHS->getType() &&
1763 "Binary operator operand types must match!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001764#ifndef NDEBUG
1765 switch (iType) {
1766 case Add: case Sub:
Dan Gohmana5b96452009-06-04 22:49:04 +00001767 case Mul:
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001768 assert(getType() == LHS->getType() &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001769 "Arithmetic operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001770 assert(getType()->isIntOrIntVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001771 "Tried to create an integer operation on a non-integer type!");
1772 break;
1773 case FAdd: case FSub:
1774 case FMul:
1775 assert(getType() == LHS->getType() &&
1776 "Arithmetic operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001777 assert(getType()->isFPOrFPVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001778 "Tried to create a floating-point operation on a "
1779 "non-floating-point type!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001780 break;
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001781 case UDiv:
1782 case SDiv:
1783 assert(getType() == LHS->getType() &&
1784 "Arithmetic operation should return same type as operands!");
Duncan Sands19d0b472010-02-16 11:11:14 +00001785 assert((getType()->isIntegerTy() || (getType()->isVectorTy() &&
Duncan Sands9dff9be2010-02-15 16:12:20 +00001786 cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001787 "Incorrect operand type (not integer) for S/UDIV");
1788 break;
1789 case FDiv:
1790 assert(getType() == LHS->getType() &&
1791 "Arithmetic operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001792 assert(getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001793 "Incorrect operand type (not floating point) for FDIV");
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001794 break;
Reid Spencer7eb55b32006-11-02 01:53:59 +00001795 case URem:
1796 case SRem:
1797 assert(getType() == LHS->getType() &&
1798 "Arithmetic operation should return same type as operands!");
Duncan Sands19d0b472010-02-16 11:11:14 +00001799 assert((getType()->isIntegerTy() || (getType()->isVectorTy() &&
Duncan Sands9dff9be2010-02-15 16:12:20 +00001800 cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
Reid Spencer7eb55b32006-11-02 01:53:59 +00001801 "Incorrect operand type (not integer) for S/UREM");
1802 break;
1803 case FRem:
1804 assert(getType() == LHS->getType() &&
1805 "Arithmetic operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001806 assert(getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001807 "Incorrect operand type (not floating point) for FREM");
Reid Spencer7eb55b32006-11-02 01:53:59 +00001808 break;
Reid Spencer2341c222007-02-02 02:16:23 +00001809 case Shl:
1810 case LShr:
1811 case AShr:
1812 assert(getType() == LHS->getType() &&
1813 "Shift operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001814 assert((getType()->isIntegerTy() ||
Duncan Sands19d0b472010-02-16 11:11:14 +00001815 (getType()->isVectorTy() &&
Duncan Sands9dff9be2010-02-15 16:12:20 +00001816 cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
Nate Begemanfecbc8c2008-07-29 15:49:41 +00001817 "Tried to create a shift operation on a non-integral type!");
Reid Spencer2341c222007-02-02 02:16:23 +00001818 break;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001819 case And: case Or:
1820 case Xor:
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001821 assert(getType() == LHS->getType() &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001822 "Logical operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001823 assert((getType()->isIntegerTy() ||
Duncan Sands19d0b472010-02-16 11:11:14 +00001824 (getType()->isVectorTy() &&
Duncan Sands9dff9be2010-02-15 16:12:20 +00001825 cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
Misha Brukman3852f652005-01-27 06:46:38 +00001826 "Tried to create a logical operation on a non-integral type!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001827 break;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001828 default:
1829 break;
1830 }
1831#endif
1832}
1833
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001834BinaryOperator *BinaryOperator::Create(BinaryOps Op, Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001835 const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001836 Instruction *InsertBefore) {
1837 assert(S1->getType() == S2->getType() &&
1838 "Cannot create binary operator with two operands of differing type!");
Reid Spencer266e42b2006-12-23 06:05:41 +00001839 return new BinaryOperator(Op, S1, S2, S1->getType(), Name, InsertBefore);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001840}
1841
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001842BinaryOperator *BinaryOperator::Create(BinaryOps Op, Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001843 const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001844 BasicBlock *InsertAtEnd) {
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001845 BinaryOperator *Res = Create(Op, S1, S2, Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001846 InsertAtEnd->getInstList().push_back(Res);
1847 return Res;
1848}
1849
Dan Gohman5476cfd2009-08-12 16:23:25 +00001850BinaryOperator *BinaryOperator::CreateNeg(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001851 Instruction *InsertBefore) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001852 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Reid Spencer2eadb532007-01-21 00:29:26 +00001853 return new BinaryOperator(Instruction::Sub,
1854 zero, Op,
1855 Op->getType(), Name, InsertBefore);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001856}
1857
Dan Gohman5476cfd2009-08-12 16:23:25 +00001858BinaryOperator *BinaryOperator::CreateNeg(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001859 BasicBlock *InsertAtEnd) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001860 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Reid Spencer2eadb532007-01-21 00:29:26 +00001861 return new BinaryOperator(Instruction::Sub,
1862 zero, Op,
1863 Op->getType(), Name, InsertAtEnd);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001864}
1865
Dan Gohman4ab44202009-12-18 02:58:50 +00001866BinaryOperator *BinaryOperator::CreateNSWNeg(Value *Op, const Twine &Name,
1867 Instruction *InsertBefore) {
1868 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1869 return BinaryOperator::CreateNSWSub(zero, Op, Name, InsertBefore);
1870}
1871
1872BinaryOperator *BinaryOperator::CreateNSWNeg(Value *Op, const Twine &Name,
1873 BasicBlock *InsertAtEnd) {
1874 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1875 return BinaryOperator::CreateNSWSub(zero, Op, Name, InsertAtEnd);
1876}
1877
Duncan Sandsfa5f5962010-02-02 12:53:04 +00001878BinaryOperator *BinaryOperator::CreateNUWNeg(Value *Op, const Twine &Name,
1879 Instruction *InsertBefore) {
1880 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1881 return BinaryOperator::CreateNUWSub(zero, Op, Name, InsertBefore);
1882}
1883
1884BinaryOperator *BinaryOperator::CreateNUWNeg(Value *Op, const Twine &Name,
1885 BasicBlock *InsertAtEnd) {
1886 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1887 return BinaryOperator::CreateNUWSub(zero, Op, Name, InsertAtEnd);
1888}
1889
Dan Gohman5476cfd2009-08-12 16:23:25 +00001890BinaryOperator *BinaryOperator::CreateFNeg(Value *Op, const Twine &Name,
Dan Gohmana5b96452009-06-04 22:49:04 +00001891 Instruction *InsertBefore) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001892 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Chris Lattner47a86bd2012-01-25 06:02:56 +00001893 return new BinaryOperator(Instruction::FSub, zero, Op,
Dan Gohmana5b96452009-06-04 22:49:04 +00001894 Op->getType(), Name, InsertBefore);
1895}
1896
Dan Gohman5476cfd2009-08-12 16:23:25 +00001897BinaryOperator *BinaryOperator::CreateFNeg(Value *Op, const Twine &Name,
Dan Gohmana5b96452009-06-04 22:49:04 +00001898 BasicBlock *InsertAtEnd) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001899 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Chris Lattner47a86bd2012-01-25 06:02:56 +00001900 return new BinaryOperator(Instruction::FSub, zero, Op,
Dan Gohmana5b96452009-06-04 22:49:04 +00001901 Op->getType(), Name, InsertAtEnd);
1902}
1903
Dan Gohman5476cfd2009-08-12 16:23:25 +00001904BinaryOperator *BinaryOperator::CreateNot(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001905 Instruction *InsertBefore) {
Chris Lattner47a86bd2012-01-25 06:02:56 +00001906 Constant *C = Constant::getAllOnesValue(Op->getType());
Chris Lattnere8e7ac42006-03-25 21:54:21 +00001907 return new BinaryOperator(Instruction::Xor, Op, C,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001908 Op->getType(), Name, InsertBefore);
1909}
1910
Dan Gohman5476cfd2009-08-12 16:23:25 +00001911BinaryOperator *BinaryOperator::CreateNot(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001912 BasicBlock *InsertAtEnd) {
Chris Lattner47a86bd2012-01-25 06:02:56 +00001913 Constant *AllOnes = Constant::getAllOnesValue(Op->getType());
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001914 return new BinaryOperator(Instruction::Xor, Op, AllOnes,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001915 Op->getType(), Name, InsertAtEnd);
1916}
1917
1918
1919// isConstantAllOnes - Helper function for several functions below
1920static inline bool isConstantAllOnes(const Value *V) {
Chris Lattner0256be92012-01-27 03:08:05 +00001921 if (const Constant *C = dyn_cast<Constant>(V))
1922 return C->isAllOnesValue();
Chris Lattner1edec382007-06-15 06:04:24 +00001923 return false;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001924}
1925
Owen Andersonbb2501b2009-07-13 22:18:28 +00001926bool BinaryOperator::isNeg(const Value *V) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001927 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1928 if (Bop->getOpcode() == Instruction::Sub)
Owen Andersonbb2501b2009-07-13 22:18:28 +00001929 if (Constant* C = dyn_cast<Constant>(Bop->getOperand(0)))
1930 return C->isNegativeZeroValue();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001931 return false;
1932}
1933
Shuxin Yangf0537ab2013-01-09 00:13:41 +00001934bool BinaryOperator::isFNeg(const Value *V, bool IgnoreZeroSign) {
Dan Gohmana5b96452009-06-04 22:49:04 +00001935 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1936 if (Bop->getOpcode() == Instruction::FSub)
Shuxin Yangf0537ab2013-01-09 00:13:41 +00001937 if (Constant* C = dyn_cast<Constant>(Bop->getOperand(0))) {
1938 if (!IgnoreZeroSign)
1939 IgnoreZeroSign = cast<Instruction>(V)->hasNoSignedZeros();
1940 return !IgnoreZeroSign ? C->isNegativeZeroValue() : C->isZeroValue();
1941 }
Dan Gohmana5b96452009-06-04 22:49:04 +00001942 return false;
1943}
1944
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001945bool BinaryOperator::isNot(const Value *V) {
1946 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1947 return (Bop->getOpcode() == Instruction::Xor &&
1948 (isConstantAllOnes(Bop->getOperand(1)) ||
1949 isConstantAllOnes(Bop->getOperand(0))));
1950 return false;
1951}
1952
Chris Lattner2c7d1772005-04-24 07:28:37 +00001953Value *BinaryOperator::getNegArgument(Value *BinOp) {
Chris Lattner2c7d1772005-04-24 07:28:37 +00001954 return cast<BinaryOperator>(BinOp)->getOperand(1);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001955}
1956
Chris Lattner2c7d1772005-04-24 07:28:37 +00001957const Value *BinaryOperator::getNegArgument(const Value *BinOp) {
1958 return getNegArgument(const_cast<Value*>(BinOp));
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001959}
1960
Dan Gohmana5b96452009-06-04 22:49:04 +00001961Value *BinaryOperator::getFNegArgument(Value *BinOp) {
Dan Gohmana5b96452009-06-04 22:49:04 +00001962 return cast<BinaryOperator>(BinOp)->getOperand(1);
1963}
1964
1965const Value *BinaryOperator::getFNegArgument(const Value *BinOp) {
1966 return getFNegArgument(const_cast<Value*>(BinOp));
1967}
1968
Chris Lattner2c7d1772005-04-24 07:28:37 +00001969Value *BinaryOperator::getNotArgument(Value *BinOp) {
1970 assert(isNot(BinOp) && "getNotArgument on non-'not' instruction!");
1971 BinaryOperator *BO = cast<BinaryOperator>(BinOp);
1972 Value *Op0 = BO->getOperand(0);
1973 Value *Op1 = BO->getOperand(1);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001974 if (isConstantAllOnes(Op0)) return Op1;
1975
1976 assert(isConstantAllOnes(Op1));
1977 return Op0;
1978}
1979
Chris Lattner2c7d1772005-04-24 07:28:37 +00001980const Value *BinaryOperator::getNotArgument(const Value *BinOp) {
1981 return getNotArgument(const_cast<Value*>(BinOp));
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001982}
1983
1984
1985// swapOperands - Exchange the two operands to this instruction. This
1986// instruction is safe to use on any binary instruction and does not
1987// modify the semantics of the instruction. If the instruction is
1988// order dependent (SetLT f.e.) the opcode is changed.
1989//
1990bool BinaryOperator::swapOperands() {
Reid Spencer266e42b2006-12-23 06:05:41 +00001991 if (!isCommutative())
1992 return true; // Can't commute operands
Gabor Greif5ef74042008-05-13 22:51:52 +00001993 Op<0>().swap(Op<1>());
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001994 return false;
1995}
1996
Dan Gohman1b849082009-09-07 23:54:19 +00001997void BinaryOperator::setHasNoUnsignedWrap(bool b) {
1998 cast<OverflowingBinaryOperator>(this)->setHasNoUnsignedWrap(b);
1999}
2000
2001void BinaryOperator::setHasNoSignedWrap(bool b) {
2002 cast<OverflowingBinaryOperator>(this)->setHasNoSignedWrap(b);
2003}
2004
2005void BinaryOperator::setIsExact(bool b) {
Chris Lattner35315d02011-02-06 21:44:57 +00002006 cast<PossiblyExactOperator>(this)->setIsExact(b);
Dan Gohman1b849082009-09-07 23:54:19 +00002007}
2008
Nick Lewycky28a5f252009-09-27 21:33:04 +00002009bool BinaryOperator::hasNoUnsignedWrap() const {
2010 return cast<OverflowingBinaryOperator>(this)->hasNoUnsignedWrap();
2011}
2012
2013bool BinaryOperator::hasNoSignedWrap() const {
2014 return cast<OverflowingBinaryOperator>(this)->hasNoSignedWrap();
2015}
2016
2017bool BinaryOperator::isExact() const {
Chris Lattner35315d02011-02-06 21:44:57 +00002018 return cast<PossiblyExactOperator>(this)->isExact();
Nick Lewycky28a5f252009-09-27 21:33:04 +00002019}
2020
Chris Lattnerb0b8ddd2006-09-18 04:54:57 +00002021//===----------------------------------------------------------------------===//
Duncan Sands05f4df82012-04-16 16:28:59 +00002022// FPMathOperator Class
2023//===----------------------------------------------------------------------===//
2024
2025/// getFPAccuracy - Get the maximum error permitted by this operation in ULPs.
2026/// An accuracy of 0.0 means that the operation should be performed with the
Duncan Sands9af62982012-04-16 19:39:33 +00002027/// default precision.
Duncan Sands05f4df82012-04-16 16:28:59 +00002028float FPMathOperator::getFPAccuracy() const {
2029 const MDNode *MD =
2030 cast<Instruction>(this)->getMetadata(LLVMContext::MD_fpmath);
2031 if (!MD)
2032 return 0.0;
Duncan Sands9af62982012-04-16 19:39:33 +00002033 ConstantFP *Accuracy = cast<ConstantFP>(MD->getOperand(0));
2034 return Accuracy->getValueAPF().convertToFloat();
Duncan Sands05f4df82012-04-16 16:28:59 +00002035}
2036
2037
2038//===----------------------------------------------------------------------===//
Chris Lattnerb0b8ddd2006-09-18 04:54:57 +00002039// CastInst Class
2040//===----------------------------------------------------------------------===//
2041
David Blaikie3a15e142011-12-01 08:00:17 +00002042void CastInst::anchor() {}
2043
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002044// Just determine if this cast only deals with integral->integral conversion.
2045bool CastInst::isIntegerCast() const {
2046 switch (getOpcode()) {
2047 default: return false;
2048 case Instruction::ZExt:
2049 case Instruction::SExt:
2050 case Instruction::Trunc:
2051 return true;
2052 case Instruction::BitCast:
Duncan Sands9dff9be2010-02-15 16:12:20 +00002053 return getOperand(0)->getType()->isIntegerTy() &&
2054 getType()->isIntegerTy();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002055 }
Chris Lattnerb0b8ddd2006-09-18 04:54:57 +00002056}
2057
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002058bool CastInst::isLosslessCast() const {
2059 // Only BitCast can be lossless, exit fast if we're not BitCast
2060 if (getOpcode() != Instruction::BitCast)
2061 return false;
2062
2063 // Identity cast is always lossless
Chris Lattner229907c2011-07-18 04:54:35 +00002064 Type* SrcTy = getOperand(0)->getType();
2065 Type* DstTy = getType();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002066 if (SrcTy == DstTy)
2067 return true;
2068
Reid Spencer8d9336d2006-12-31 05:26:44 +00002069 // Pointer to pointer is always lossless.
Duncan Sands19d0b472010-02-16 11:11:14 +00002070 if (SrcTy->isPointerTy())
2071 return DstTy->isPointerTy();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002072 return false; // Other types have no identity values
2073}
2074
2075/// This function determines if the CastInst does not require any bits to be
2076/// changed in order to effect the cast. Essentially, it identifies cases where
2077/// no code gen is necessary for the cast, hence the name no-op cast. For
2078/// example, the following are all no-op casts:
Dan Gohmane9bc2ba2008-05-12 16:34:30 +00002079/// # bitcast i32* %x to i8*
2080/// # bitcast <2 x i32> %x to <4 x i16>
2081/// # ptrtoint i32* %x to i32 ; on 32-bit plaforms only
Dan Gohman0d7f3b82010-05-28 21:41:37 +00002082/// @brief Determine if the described cast is a no-op.
2083bool CastInst::isNoopCast(Instruction::CastOps Opcode,
Chris Lattner229907c2011-07-18 04:54:35 +00002084 Type *SrcTy,
2085 Type *DestTy,
2086 Type *IntPtrTy) {
Dan Gohman0d7f3b82010-05-28 21:41:37 +00002087 switch (Opcode) {
Craig Topperc514b542012-02-05 22:14:15 +00002088 default: llvm_unreachable("Invalid CastOp");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002089 case Instruction::Trunc:
2090 case Instruction::ZExt:
2091 case Instruction::SExt:
2092 case Instruction::FPTrunc:
2093 case Instruction::FPExt:
2094 case Instruction::UIToFP:
2095 case Instruction::SIToFP:
2096 case Instruction::FPToUI:
2097 case Instruction::FPToSI:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002098 case Instruction::AddrSpaceCast:
2099 // TODO: Target informations may give a more accurate answer here.
2100 return false;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002101 case Instruction::BitCast:
2102 return true; // BitCast never modifies bits.
2103 case Instruction::PtrToInt:
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002104 return IntPtrTy->getScalarSizeInBits() ==
Dan Gohman0d7f3b82010-05-28 21:41:37 +00002105 DestTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002106 case Instruction::IntToPtr:
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002107 return IntPtrTy->getScalarSizeInBits() ==
Dan Gohman0d7f3b82010-05-28 21:41:37 +00002108 SrcTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002109 }
2110}
2111
Dan Gohman0d7f3b82010-05-28 21:41:37 +00002112/// @brief Determine if a cast is a no-op.
Chris Lattner229907c2011-07-18 04:54:35 +00002113bool CastInst::isNoopCast(Type *IntPtrTy) const {
Dan Gohman0d7f3b82010-05-28 21:41:37 +00002114 return isNoopCast(getOpcode(), getOperand(0)->getType(), getType(), IntPtrTy);
2115}
2116
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002117/// This function determines if a pair of casts can be eliminated and what
2118/// opcode should be used in the elimination. This assumes that there are two
2119/// instructions like this:
2120/// * %F = firstOpcode SrcTy %x to MidTy
2121/// * %S = secondOpcode MidTy %F to DstTy
2122/// The function returns a resultOpcode so these two casts can be replaced with:
2123/// * %Replacement = resultOpcode %SrcTy %x to DstTy
2124/// If no such cast is permited, the function returns 0.
2125unsigned CastInst::isEliminableCastPair(
2126 Instruction::CastOps firstOp, Instruction::CastOps secondOp,
Duncan Sandse2395dc2012-10-30 16:03:32 +00002127 Type *SrcTy, Type *MidTy, Type *DstTy, Type *SrcIntPtrTy, Type *MidIntPtrTy,
2128 Type *DstIntPtrTy) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002129 // Define the 144 possibilities for these two cast instructions. The values
2130 // in this matrix determine what to do in a given situation and select the
2131 // case in the switch below. The rows correspond to firstOp, the columns
2132 // correspond to secondOp. In looking at the table below, keep in mind
2133 // the following cast properties:
2134 //
2135 // Size Compare Source Destination
2136 // Operator Src ? Size Type Sign Type Sign
2137 // -------- ------------ ------------------- ---------------------
2138 // TRUNC > Integer Any Integral Any
2139 // ZEXT < Integral Unsigned Integer Any
2140 // SEXT < Integral Signed Integer Any
2141 // FPTOUI n/a FloatPt n/a Integral Unsigned
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002142 // FPTOSI n/a FloatPt n/a Integral Signed
2143 // UITOFP n/a Integral Unsigned FloatPt n/a
2144 // SITOFP n/a Integral Signed FloatPt n/a
2145 // FPTRUNC > FloatPt n/a FloatPt n/a
2146 // FPEXT < FloatPt n/a FloatPt n/a
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002147 // PTRTOINT n/a Pointer n/a Integral Unsigned
2148 // INTTOPTR n/a Integral Unsigned Pointer n/a
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002149 // BITCAST = FirstClass n/a FirstClass n/a
2150 // ADDRSPCST n/a Pointer n/a Pointer n/a
Chris Lattner6f6b4972006-12-05 23:43:59 +00002151 //
2152 // NOTE: some transforms are safe, but we consider them to be non-profitable.
Dan Gohman4fe64de2009-06-14 23:30:43 +00002153 // For example, we could merge "fptoui double to i32" + "zext i32 to i64",
2154 // into "fptoui double to i64", but this loses information about the range
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002155 // of the produced value (we no longer know the top-part is all zeros).
Chris Lattner6f6b4972006-12-05 23:43:59 +00002156 // Further this conversion is often much more expensive for typical hardware,
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002157 // and causes issues when building libgcc. We disallow fptosi+sext for the
Chris Lattner6f6b4972006-12-05 23:43:59 +00002158 // same reason.
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002159 const unsigned numCastOps =
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002160 Instruction::CastOpsEnd - Instruction::CastOpsBegin;
2161 static const uint8_t CastResults[numCastOps][numCastOps] = {
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002162 // T F F U S F F P I B A -+
2163 // R Z S P P I I T P 2 N T S |
2164 // U E E 2 2 2 2 R E I T C C +- secondOp
2165 // N X X U S F F N X N 2 V V |
2166 // C T T I I P P C T T P T T -+
2167 { 1, 0, 0,99,99, 0, 0,99,99,99, 0, 3, 0}, // Trunc -+
2168 { 8, 1, 9,99,99, 2, 0,99,99,99, 2, 3, 0}, // ZExt |
2169 { 8, 0, 1,99,99, 0, 2,99,99,99, 0, 3, 0}, // SExt |
2170 { 0, 0, 0,99,99, 0, 0,99,99,99, 0, 3, 0}, // FPToUI |
2171 { 0, 0, 0,99,99, 0, 0,99,99,99, 0, 3, 0}, // FPToSI |
2172 { 99,99,99, 0, 0,99,99, 0, 0,99,99, 4, 0}, // UIToFP +- firstOp
2173 { 99,99,99, 0, 0,99,99, 0, 0,99,99, 4, 0}, // SIToFP |
2174 { 99,99,99, 0, 0,99,99, 1, 0,99,99, 4, 0}, // FPTrunc |
2175 { 99,99,99, 2, 2,99,99,10, 2,99,99, 4, 0}, // FPExt |
2176 { 1, 0, 0,99,99, 0, 0,99,99,99, 7, 3, 0}, // PtrToInt |
2177 { 99,99,99,99,99,99,99,99,99,11,99,15, 0}, // IntToPtr |
2178 { 5, 5, 5, 6, 6, 5, 5, 6, 6,16, 5, 1,14}, // BitCast |
2179 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13,12}, // AddrSpaceCast -+
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002180 };
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002181
Chris Lattner25eea4d2010-07-12 01:19:22 +00002182 // If either of the casts are a bitcast from scalar to vector, disallow the
Nadav Rotem5fc81ff2011-08-29 19:58:36 +00002183 // merging. However, bitcast of A->B->A are allowed.
2184 bool isFirstBitcast = (firstOp == Instruction::BitCast);
2185 bool isSecondBitcast = (secondOp == Instruction::BitCast);
2186 bool chainedBitcast = (SrcTy == DstTy && isFirstBitcast && isSecondBitcast);
2187
2188 // Check if any of the bitcasts convert scalars<->vectors.
2189 if ((isFirstBitcast && isa<VectorType>(SrcTy) != isa<VectorType>(MidTy)) ||
2190 (isSecondBitcast && isa<VectorType>(MidTy) != isa<VectorType>(DstTy)))
2191 // Unless we are bitcasing to the original type, disallow optimizations.
2192 if (!chainedBitcast) return 0;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002193
2194 int ElimCase = CastResults[firstOp-Instruction::CastOpsBegin]
2195 [secondOp-Instruction::CastOpsBegin];
2196 switch (ElimCase) {
2197 case 0:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002198 // Categorically disallowed.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002199 return 0;
2200 case 1:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002201 // Allowed, use first cast's opcode.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002202 return firstOp;
2203 case 2:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002204 // Allowed, use second cast's opcode.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002205 return secondOp;
2206 case 3:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002207 // No-op cast in second op implies firstOp as long as the DestTy
Mon P Wange04b4562010-01-23 04:35:57 +00002208 // is integer and we are not converting between a vector and a
Chris Lattner531732b2010-01-23 04:42:42 +00002209 // non vector type.
Duncan Sands19d0b472010-02-16 11:11:14 +00002210 if (!SrcTy->isVectorTy() && DstTy->isIntegerTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002211 return firstOp;
2212 return 0;
2213 case 4:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002214 // No-op cast in second op implies firstOp as long as the DestTy
Chris Lattner531732b2010-01-23 04:42:42 +00002215 // is floating point.
Duncan Sands9dff9be2010-02-15 16:12:20 +00002216 if (DstTy->isFloatingPointTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002217 return firstOp;
2218 return 0;
2219 case 5:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002220 // No-op cast in first op implies secondOp as long as the SrcTy
Chris Lattner531732b2010-01-23 04:42:42 +00002221 // is an integer.
Duncan Sands9dff9be2010-02-15 16:12:20 +00002222 if (SrcTy->isIntegerTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002223 return secondOp;
2224 return 0;
2225 case 6:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002226 // No-op cast in first op implies secondOp as long as the SrcTy
Chris Lattner531732b2010-01-23 04:42:42 +00002227 // is a floating point.
Duncan Sands9dff9be2010-02-15 16:12:20 +00002228 if (SrcTy->isFloatingPointTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002229 return secondOp;
2230 return 0;
Matt Arsenault130e0ef2013-07-30 22:27:10 +00002231 case 7: {
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002232 // Cannot simplify if address spaces are different!
2233 if (SrcTy->getPointerAddressSpace() != DstTy->getPointerAddressSpace())
2234 return 0;
2235
Matt Arsenault130e0ef2013-07-30 22:27:10 +00002236 unsigned MidSize = MidTy->getScalarSizeInBits();
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002237 // We can still fold this without knowing the actual sizes as long we
2238 // know that the intermediate pointer is the largest possible
2239 // pointer size.
2240 // FIXME: Is this always true?
2241 if (MidSize == 64)
Matt Arsenault130e0ef2013-07-30 22:27:10 +00002242 return Instruction::BitCast;
2243
2244 // ptrtoint, inttoptr -> bitcast (ptr -> ptr) if int size is >= ptr size.
Duncan Sandse2395dc2012-10-30 16:03:32 +00002245 if (!SrcIntPtrTy || DstIntPtrTy != SrcIntPtrTy)
Dan Gohman9413de12009-07-21 23:19:40 +00002246 return 0;
Duncan Sandse2395dc2012-10-30 16:03:32 +00002247 unsigned PtrSize = SrcIntPtrTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002248 if (MidSize >= PtrSize)
2249 return Instruction::BitCast;
2250 return 0;
2251 }
2252 case 8: {
2253 // ext, trunc -> bitcast, if the SrcTy and DstTy are same size
2254 // ext, trunc -> ext, if sizeof(SrcTy) < sizeof(DstTy)
2255 // ext, trunc -> trunc, if sizeof(SrcTy) > sizeof(DstTy)
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002256 unsigned SrcSize = SrcTy->getScalarSizeInBits();
2257 unsigned DstSize = DstTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002258 if (SrcSize == DstSize)
2259 return Instruction::BitCast;
2260 else if (SrcSize < DstSize)
2261 return firstOp;
2262 return secondOp;
2263 }
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002264 case 9:
2265 // zext, sext -> zext, because sext can't sign extend after zext
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002266 return Instruction::ZExt;
2267 case 10:
2268 // fpext followed by ftrunc is allowed if the bit size returned to is
2269 // the same as the original, in which case its just a bitcast
2270 if (SrcTy == DstTy)
2271 return Instruction::BitCast;
2272 return 0; // If the types are not the same we can't eliminate it.
Matt Arsenault130e0ef2013-07-30 22:27:10 +00002273 case 11: {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002274 // inttoptr, ptrtoint -> bitcast if SrcSize<=PtrSize and SrcSize==DstSize
Duncan Sandse2395dc2012-10-30 16:03:32 +00002275 if (!MidIntPtrTy)
Dan Gohman9413de12009-07-21 23:19:40 +00002276 return 0;
Duncan Sandse2395dc2012-10-30 16:03:32 +00002277 unsigned PtrSize = MidIntPtrTy->getScalarSizeInBits();
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002278 unsigned SrcSize = SrcTy->getScalarSizeInBits();
2279 unsigned DstSize = DstTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002280 if (SrcSize <= PtrSize && SrcSize == DstSize)
2281 return Instruction::BitCast;
2282 return 0;
2283 }
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002284 case 12: {
2285 // addrspacecast, addrspacecast -> bitcast, if SrcAS == DstAS
2286 // addrspacecast, addrspacecast -> addrspacecast, if SrcAS != DstAS
2287 if (SrcTy->getPointerAddressSpace() != DstTy->getPointerAddressSpace())
2288 return Instruction::AddrSpaceCast;
2289 return Instruction::BitCast;
2290 }
2291 case 13:
2292 // FIXME: this state can be merged with (1), but the following assert
2293 // is useful to check the correcteness of the sequence due to semantic
2294 // change of bitcast.
2295 assert(
2296 SrcTy->isPtrOrPtrVectorTy() &&
2297 MidTy->isPtrOrPtrVectorTy() &&
2298 DstTy->isPtrOrPtrVectorTy() &&
2299 SrcTy->getPointerAddressSpace() != MidTy->getPointerAddressSpace() &&
2300 MidTy->getPointerAddressSpace() == DstTy->getPointerAddressSpace() &&
2301 "Illegal addrspacecast, bitcast sequence!");
2302 // Allowed, use first cast's opcode
2303 return firstOp;
2304 case 14:
2305 // FIXME: this state can be merged with (2), but the following assert
2306 // is useful to check the correcteness of the sequence due to semantic
2307 // change of bitcast.
2308 assert(
2309 SrcTy->isPtrOrPtrVectorTy() &&
2310 MidTy->isPtrOrPtrVectorTy() &&
2311 DstTy->isPtrOrPtrVectorTy() &&
2312 SrcTy->getPointerAddressSpace() == MidTy->getPointerAddressSpace() &&
2313 MidTy->getPointerAddressSpace() != DstTy->getPointerAddressSpace() &&
2314 "Illegal bitcast, addrspacecast sequence!");
2315 // Allowed, use second cast's opcode
2316 return secondOp;
2317 case 15:
2318 // FIXME: this state can be merged with (1), but the following assert
2319 // is useful to check the correcteness of the sequence due to semantic
2320 // change of bitcast.
2321 assert(
2322 SrcTy->isIntOrIntVectorTy() &&
2323 MidTy->isPtrOrPtrVectorTy() &&
2324 DstTy->isPtrOrPtrVectorTy() &&
2325 MidTy->getPointerAddressSpace() == DstTy->getPointerAddressSpace() &&
2326 "Illegal inttoptr, bitcast sequence!");
2327 // Allowed, use first cast's opcode
2328 return firstOp;
2329 case 16:
2330 // FIXME: this state can be merged with (2), but the following assert
2331 // is useful to check the correcteness of the sequence due to semantic
2332 // change of bitcast.
2333 assert(
2334 SrcTy->isPtrOrPtrVectorTy() &&
2335 MidTy->isPtrOrPtrVectorTy() &&
2336 DstTy->isIntOrIntVectorTy() &&
2337 SrcTy->getPointerAddressSpace() == MidTy->getPointerAddressSpace() &&
2338 "Illegal bitcast, ptrtoint sequence!");
2339 // Allowed, use second cast's opcode
2340 return secondOp;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002341 case 99:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002342 // Cast combination can't happen (error in input). This is for all cases
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002343 // where the MidTy is not the same for the two cast instructions.
Craig Topperc514b542012-02-05 22:14:15 +00002344 llvm_unreachable("Invalid Cast Combination");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002345 default:
Craig Topperc514b542012-02-05 22:14:15 +00002346 llvm_unreachable("Error in CastResults table!!!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002347 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002348}
2349
Chris Lattner229907c2011-07-18 04:54:35 +00002350CastInst *CastInst::Create(Instruction::CastOps op, Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002351 const Twine &Name, Instruction *InsertBefore) {
Duncan Sands7f646562011-05-18 09:21:57 +00002352 assert(castIsValid(op, S, Ty) && "Invalid cast!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002353 // Construct and return the appropriate CastInst subclass
2354 switch (op) {
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002355 case Trunc: return new TruncInst (S, Ty, Name, InsertBefore);
2356 case ZExt: return new ZExtInst (S, Ty, Name, InsertBefore);
2357 case SExt: return new SExtInst (S, Ty, Name, InsertBefore);
2358 case FPTrunc: return new FPTruncInst (S, Ty, Name, InsertBefore);
2359 case FPExt: return new FPExtInst (S, Ty, Name, InsertBefore);
2360 case UIToFP: return new UIToFPInst (S, Ty, Name, InsertBefore);
2361 case SIToFP: return new SIToFPInst (S, Ty, Name, InsertBefore);
2362 case FPToUI: return new FPToUIInst (S, Ty, Name, InsertBefore);
2363 case FPToSI: return new FPToSIInst (S, Ty, Name, InsertBefore);
2364 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertBefore);
2365 case IntToPtr: return new IntToPtrInst (S, Ty, Name, InsertBefore);
2366 case BitCast: return new BitCastInst (S, Ty, Name, InsertBefore);
2367 case AddrSpaceCast: return new AddrSpaceCastInst (S, Ty, Name, InsertBefore);
2368 default: llvm_unreachable("Invalid opcode provided");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002369 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002370}
2371
Chris Lattner229907c2011-07-18 04:54:35 +00002372CastInst *CastInst::Create(Instruction::CastOps op, Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002373 const Twine &Name, BasicBlock *InsertAtEnd) {
Duncan Sands7f646562011-05-18 09:21:57 +00002374 assert(castIsValid(op, S, Ty) && "Invalid cast!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002375 // Construct and return the appropriate CastInst subclass
2376 switch (op) {
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002377 case Trunc: return new TruncInst (S, Ty, Name, InsertAtEnd);
2378 case ZExt: return new ZExtInst (S, Ty, Name, InsertAtEnd);
2379 case SExt: return new SExtInst (S, Ty, Name, InsertAtEnd);
2380 case FPTrunc: return new FPTruncInst (S, Ty, Name, InsertAtEnd);
2381 case FPExt: return new FPExtInst (S, Ty, Name, InsertAtEnd);
2382 case UIToFP: return new UIToFPInst (S, Ty, Name, InsertAtEnd);
2383 case SIToFP: return new SIToFPInst (S, Ty, Name, InsertAtEnd);
2384 case FPToUI: return new FPToUIInst (S, Ty, Name, InsertAtEnd);
2385 case FPToSI: return new FPToSIInst (S, Ty, Name, InsertAtEnd);
2386 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertAtEnd);
2387 case IntToPtr: return new IntToPtrInst (S, Ty, Name, InsertAtEnd);
2388 case BitCast: return new BitCastInst (S, Ty, Name, InsertAtEnd);
2389 case AddrSpaceCast: return new AddrSpaceCastInst (S, Ty, Name, InsertAtEnd);
2390 default: llvm_unreachable("Invalid opcode provided");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002391 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002392}
2393
Chris Lattner229907c2011-07-18 04:54:35 +00002394CastInst *CastInst::CreateZExtOrBitCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002395 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002396 Instruction *InsertBefore) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002397 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002398 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
2399 return Create(Instruction::ZExt, S, Ty, Name, InsertBefore);
Reid Spencer5c140882006-12-04 20:17:56 +00002400}
2401
Chris Lattner229907c2011-07-18 04:54:35 +00002402CastInst *CastInst::CreateZExtOrBitCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002403 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002404 BasicBlock *InsertAtEnd) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002405 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002406 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
2407 return Create(Instruction::ZExt, S, Ty, Name, InsertAtEnd);
Reid Spencer5c140882006-12-04 20:17:56 +00002408}
2409
Chris Lattner229907c2011-07-18 04:54:35 +00002410CastInst *CastInst::CreateSExtOrBitCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002411 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002412 Instruction *InsertBefore) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002413 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002414 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
2415 return Create(Instruction::SExt, S, Ty, Name, InsertBefore);
Reid Spencer5c140882006-12-04 20:17:56 +00002416}
2417
Chris Lattner229907c2011-07-18 04:54:35 +00002418CastInst *CastInst::CreateSExtOrBitCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002419 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002420 BasicBlock *InsertAtEnd) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002421 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002422 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
2423 return Create(Instruction::SExt, S, Ty, Name, InsertAtEnd);
Reid Spencer5c140882006-12-04 20:17:56 +00002424}
2425
Chris Lattner229907c2011-07-18 04:54:35 +00002426CastInst *CastInst::CreateTruncOrBitCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002427 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002428 Instruction *InsertBefore) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002429 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002430 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
2431 return Create(Instruction::Trunc, S, Ty, Name, InsertBefore);
Reid Spencer5c140882006-12-04 20:17:56 +00002432}
2433
Chris Lattner229907c2011-07-18 04:54:35 +00002434CastInst *CastInst::CreateTruncOrBitCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002435 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002436 BasicBlock *InsertAtEnd) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002437 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002438 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
2439 return Create(Instruction::Trunc, S, Ty, Name, InsertAtEnd);
Reid Spencer5c140882006-12-04 20:17:56 +00002440}
2441
Chris Lattner229907c2011-07-18 04:54:35 +00002442CastInst *CastInst::CreatePointerCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002443 const Twine &Name,
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002444 BasicBlock *InsertAtEnd) {
Matt Arsenault065ced92013-07-31 00:17:33 +00002445 assert(S->getType()->isPtrOrPtrVectorTy() && "Invalid cast");
2446 assert((Ty->isIntOrIntVectorTy() || Ty->isPtrOrPtrVectorTy()) &&
2447 "Invalid cast");
2448 assert(Ty->isVectorTy() == S->getType()->isVectorTy() && "Invalid cast");
Richard Trieu8dc43232013-07-31 04:07:28 +00002449 assert((!Ty->isVectorTy() ||
2450 Ty->getVectorNumElements() == S->getType()->getVectorNumElements()) &&
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002451 "Invalid cast");
2452
Matt Arsenault065ced92013-07-31 00:17:33 +00002453 if (Ty->isIntOrIntVectorTy())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002454 return Create(Instruction::PtrToInt, S, Ty, Name, InsertAtEnd);
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002455
2456 Type *STy = S->getType();
2457 if (STy->getPointerAddressSpace() != Ty->getPointerAddressSpace())
2458 return Create(Instruction::AddrSpaceCast, S, Ty, Name, InsertAtEnd);
2459
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002460 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002461}
2462
2463/// @brief Create a BitCast or a PtrToInt cast instruction
Matt Arsenault065ced92013-07-31 00:17:33 +00002464CastInst *CastInst::CreatePointerCast(Value *S, Type *Ty,
2465 const Twine &Name,
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002466 Instruction *InsertBefore) {
Evgeniy Stepanovc9bd35b2013-01-15 16:43:00 +00002467 assert(S->getType()->isPtrOrPtrVectorTy() && "Invalid cast");
2468 assert((Ty->isIntOrIntVectorTy() || Ty->isPtrOrPtrVectorTy()) &&
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002469 "Invalid cast");
Matt Arsenault065ced92013-07-31 00:17:33 +00002470 assert(Ty->isVectorTy() == S->getType()->isVectorTy() && "Invalid cast");
Richard Trieu8dc43232013-07-31 04:07:28 +00002471 assert((!Ty->isVectorTy() ||
2472 Ty->getVectorNumElements() == S->getType()->getVectorNumElements()) &&
Matt Arsenault065ced92013-07-31 00:17:33 +00002473 "Invalid cast");
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002474
Evgeniy Stepanovc9bd35b2013-01-15 16:43:00 +00002475 if (Ty->isIntOrIntVectorTy())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002476 return Create(Instruction::PtrToInt, S, Ty, Name, InsertBefore);
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002477
2478 Type *STy = S->getType();
2479 if (STy->getPointerAddressSpace() != Ty->getPointerAddressSpace())
2480 return Create(Instruction::AddrSpaceCast, S, Ty, Name, InsertBefore);
2481
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002482 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002483}
2484
Chris Lattner229907c2011-07-18 04:54:35 +00002485CastInst *CastInst::CreateIntegerCast(Value *C, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002486 bool isSigned, const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002487 Instruction *InsertBefore) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002488 assert(C->getType()->isIntOrIntVectorTy() && Ty->isIntOrIntVectorTy() &&
Chris Lattner5370ae72010-01-10 20:21:42 +00002489 "Invalid integer cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002490 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2491 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002492 Instruction::CastOps opcode =
2493 (SrcBits == DstBits ? Instruction::BitCast :
2494 (SrcBits > DstBits ? Instruction::Trunc :
2495 (isSigned ? Instruction::SExt : Instruction::ZExt)));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002496 return Create(opcode, C, Ty, Name, InsertBefore);
Reid Spencer7e933472006-12-12 00:49:44 +00002497}
2498
Chris Lattner229907c2011-07-18 04:54:35 +00002499CastInst *CastInst::CreateIntegerCast(Value *C, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002500 bool isSigned, const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002501 BasicBlock *InsertAtEnd) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002502 assert(C->getType()->isIntOrIntVectorTy() && Ty->isIntOrIntVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00002503 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002504 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2505 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002506 Instruction::CastOps opcode =
2507 (SrcBits == DstBits ? Instruction::BitCast :
2508 (SrcBits > DstBits ? Instruction::Trunc :
2509 (isSigned ? Instruction::SExt : Instruction::ZExt)));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002510 return Create(opcode, C, Ty, Name, InsertAtEnd);
Reid Spencer7e933472006-12-12 00:49:44 +00002511}
2512
Chris Lattner229907c2011-07-18 04:54:35 +00002513CastInst *CastInst::CreateFPCast(Value *C, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002514 const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002515 Instruction *InsertBefore) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002516 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer7e933472006-12-12 00:49:44 +00002517 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002518 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2519 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002520 Instruction::CastOps opcode =
2521 (SrcBits == DstBits ? Instruction::BitCast :
2522 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002523 return Create(opcode, C, Ty, Name, InsertBefore);
Reid Spencer7e933472006-12-12 00:49:44 +00002524}
2525
Chris Lattner229907c2011-07-18 04:54:35 +00002526CastInst *CastInst::CreateFPCast(Value *C, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002527 const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002528 BasicBlock *InsertAtEnd) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002529 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer7e933472006-12-12 00:49:44 +00002530 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002531 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2532 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002533 Instruction::CastOps opcode =
2534 (SrcBits == DstBits ? Instruction::BitCast :
2535 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002536 return Create(opcode, C, Ty, Name, InsertAtEnd);
Reid Spencer7e933472006-12-12 00:49:44 +00002537}
2538
Matt Arsenaultb4019ae2013-07-30 22:02:14 +00002539// Check whether it is valid to call getCastOpcode for these types.
2540// This routine must be kept in sync with getCastOpcode.
2541bool CastInst::isCastable(Type *SrcTy, Type *DestTy) {
2542 if (!SrcTy->isFirstClassType() || !DestTy->isFirstClassType())
2543 return false;
2544
2545 if (SrcTy == DestTy)
2546 return true;
2547
2548 if (VectorType *SrcVecTy = dyn_cast<VectorType>(SrcTy))
2549 if (VectorType *DestVecTy = dyn_cast<VectorType>(DestTy))
2550 if (SrcVecTy->getNumElements() == DestVecTy->getNumElements()) {
2551 // An element by element cast. Valid if casting the elements is valid.
2552 SrcTy = SrcVecTy->getElementType();
2553 DestTy = DestVecTy->getElementType();
2554 }
2555
2556 // Get the bit sizes, we'll need these
2557 unsigned SrcBits = SrcTy->getPrimitiveSizeInBits(); // 0 for ptr
2558 unsigned DestBits = DestTy->getPrimitiveSizeInBits(); // 0 for ptr
2559
2560 // Run through the possibilities ...
2561 if (DestTy->isIntegerTy()) { // Casting to integral
2562 if (SrcTy->isIntegerTy()) { // Casting from integral
2563 return true;
2564 } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt
2565 return true;
2566 } else if (SrcTy->isVectorTy()) { // Casting from vector
2567 return DestBits == SrcBits;
2568 } else { // Casting from something else
2569 return SrcTy->isPointerTy();
2570 }
2571 } else if (DestTy->isFloatingPointTy()) { // Casting to floating pt
2572 if (SrcTy->isIntegerTy()) { // Casting from integral
2573 return true;
2574 } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt
2575 return true;
2576 } else if (SrcTy->isVectorTy()) { // Casting from vector
2577 return DestBits == SrcBits;
2578 } else { // Casting from something else
2579 return false;
2580 }
2581 } else if (DestTy->isVectorTy()) { // Casting to vector
2582 return DestBits == SrcBits;
2583 } else if (DestTy->isPointerTy()) { // Casting to pointer
2584 if (SrcTy->isPointerTy()) { // Casting from pointer
2585 return true;
2586 } else if (SrcTy->isIntegerTy()) { // Casting from integral
2587 return true;
2588 } else { // Casting from something else
2589 return false;
2590 }
2591 } else if (DestTy->isX86_MMXTy()) {
2592 if (SrcTy->isVectorTy()) {
2593 return DestBits == SrcBits; // 64-bit vector to MMX
2594 } else {
2595 return false;
2596 }
2597 } else { // Casting to something else
2598 return false;
2599 }
2600}
2601
Matt Arsenaultcacbb232013-07-30 20:45:05 +00002602bool CastInst::isBitCastable(Type *SrcTy, Type *DestTy) {
2603 if (!SrcTy->isFirstClassType() || !DestTy->isFirstClassType())
2604 return false;
2605
2606 if (SrcTy == DestTy)
2607 return true;
2608
2609 if (VectorType *SrcVecTy = dyn_cast<VectorType>(SrcTy)) {
2610 if (VectorType *DestVecTy = dyn_cast<VectorType>(DestTy)) {
2611 if (SrcVecTy->getNumElements() == DestVecTy->getNumElements()) {
2612 // An element by element cast. Valid if casting the elements is valid.
2613 SrcTy = SrcVecTy->getElementType();
2614 DestTy = DestVecTy->getElementType();
2615 }
2616 }
2617 }
2618
2619 if (PointerType *DestPtrTy = dyn_cast<PointerType>(DestTy)) {
2620 if (PointerType *SrcPtrTy = dyn_cast<PointerType>(SrcTy)) {
2621 return SrcPtrTy->getAddressSpace() == DestPtrTy->getAddressSpace();
2622 }
2623 }
2624
2625 unsigned SrcBits = SrcTy->getPrimitiveSizeInBits(); // 0 for ptr
2626 unsigned DestBits = DestTy->getPrimitiveSizeInBits(); // 0 for ptr
2627
2628 // Could still have vectors of pointers if the number of elements doesn't
2629 // match
2630 if (SrcBits == 0 || DestBits == 0)
2631 return false;
2632
2633 if (SrcBits != DestBits)
2634 return false;
2635
2636 if (DestTy->isX86_MMXTy() || SrcTy->isX86_MMXTy())
2637 return false;
2638
2639 return true;
2640}
2641
2642// Provide a way to get a "cast" where the cast opcode is inferred from the
2643// types and size of the operand. This, basically, is a parallel of the
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002644// logic in the castIsValid function below. This axiom should hold:
2645// castIsValid( getCastOpcode(Val, Ty), Val, Ty)
2646// should not assert in castIsValid. In other words, this produces a "correct"
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002647// casting opcode for the arguments passed to it.
Duncan Sands55e50902008-01-06 10:12:28 +00002648// This routine must be kept in sync with isCastable.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002649Instruction::CastOps
Reid Spencerc4dacf22006-12-04 02:43:42 +00002650CastInst::getCastOpcode(
Chris Lattner229907c2011-07-18 04:54:35 +00002651 const Value *Src, bool SrcIsSigned, Type *DestTy, bool DestIsSigned) {
2652 Type *SrcTy = Src->getType();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002653
Duncan Sands55e50902008-01-06 10:12:28 +00002654 assert(SrcTy->isFirstClassType() && DestTy->isFirstClassType() &&
2655 "Only first class types are castable!");
2656
Duncan Sandsa8514532011-05-18 07:13:41 +00002657 if (SrcTy == DestTy)
2658 return BitCast;
2659
Matt Arsenaultcacbb232013-07-30 20:45:05 +00002660 // FIXME: Check address space sizes here
Chris Lattner229907c2011-07-18 04:54:35 +00002661 if (VectorType *SrcVecTy = dyn_cast<VectorType>(SrcTy))
2662 if (VectorType *DestVecTy = dyn_cast<VectorType>(DestTy))
Duncan Sandsa8514532011-05-18 07:13:41 +00002663 if (SrcVecTy->getNumElements() == DestVecTy->getNumElements()) {
2664 // An element by element cast. Find the appropriate opcode based on the
2665 // element types.
2666 SrcTy = SrcVecTy->getElementType();
2667 DestTy = DestVecTy->getElementType();
2668 }
2669
2670 // Get the bit sizes, we'll need these
Duncan Sands7f646562011-05-18 09:21:57 +00002671 unsigned SrcBits = SrcTy->getPrimitiveSizeInBits(); // 0 for ptr
2672 unsigned DestBits = DestTy->getPrimitiveSizeInBits(); // 0 for ptr
Duncan Sandsa8514532011-05-18 07:13:41 +00002673
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002674 // Run through the possibilities ...
Duncan Sands9dff9be2010-02-15 16:12:20 +00002675 if (DestTy->isIntegerTy()) { // Casting to integral
2676 if (SrcTy->isIntegerTy()) { // Casting from integral
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002677 if (DestBits < SrcBits)
2678 return Trunc; // int -> smaller int
2679 else if (DestBits > SrcBits) { // its an extension
Reid Spencerc4dacf22006-12-04 02:43:42 +00002680 if (SrcIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002681 return SExt; // signed -> SEXT
2682 else
2683 return ZExt; // unsigned -> ZEXT
2684 } else {
2685 return BitCast; // Same size, No-op cast
2686 }
Duncan Sands9dff9be2010-02-15 16:12:20 +00002687 } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt
Reid Spencerc4dacf22006-12-04 02:43:42 +00002688 if (DestIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002689 return FPToSI; // FP -> sint
2690 else
2691 return FPToUI; // FP -> uint
Duncan Sands27bd0df2011-05-18 10:59:25 +00002692 } else if (SrcTy->isVectorTy()) {
2693 assert(DestBits == SrcBits &&
2694 "Casting vector to integer of different width");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002695 return BitCast; // Same size, no-op cast
2696 } else {
Duncan Sands19d0b472010-02-16 11:11:14 +00002697 assert(SrcTy->isPointerTy() &&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002698 "Casting from a value that is not first-class type");
2699 return PtrToInt; // ptr -> int
2700 }
Duncan Sands9dff9be2010-02-15 16:12:20 +00002701 } else if (DestTy->isFloatingPointTy()) { // Casting to floating pt
2702 if (SrcTy->isIntegerTy()) { // Casting from integral
Reid Spencerc4dacf22006-12-04 02:43:42 +00002703 if (SrcIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002704 return SIToFP; // sint -> FP
2705 else
2706 return UIToFP; // uint -> FP
Duncan Sands9dff9be2010-02-15 16:12:20 +00002707 } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002708 if (DestBits < SrcBits) {
2709 return FPTrunc; // FP -> smaller FP
2710 } else if (DestBits > SrcBits) {
2711 return FPExt; // FP -> larger FP
2712 } else {
2713 return BitCast; // same size, no-op cast
2714 }
Duncan Sands27bd0df2011-05-18 10:59:25 +00002715 } else if (SrcTy->isVectorTy()) {
2716 assert(DestBits == SrcBits &&
Dan Gohmanfead7972007-05-11 21:43:24 +00002717 "Casting vector to floating point of different width");
Devang Patele9432132008-11-05 01:37:40 +00002718 return BitCast; // same size, no-op cast
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002719 }
Ahmed Charles636a3d62012-02-19 11:37:01 +00002720 llvm_unreachable("Casting pointer or non-first class to float");
Duncan Sands27bd0df2011-05-18 10:59:25 +00002721 } else if (DestTy->isVectorTy()) {
2722 assert(DestBits == SrcBits &&
2723 "Illegal cast to vector (wrong type or size)");
2724 return BitCast;
Duncan Sands19d0b472010-02-16 11:11:14 +00002725 } else if (DestTy->isPointerTy()) {
2726 if (SrcTy->isPointerTy()) {
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002727 if (DestTy->getPointerAddressSpace() != SrcTy->getPointerAddressSpace())
2728 return AddrSpaceCast;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002729 return BitCast; // ptr -> ptr
Duncan Sands9dff9be2010-02-15 16:12:20 +00002730 } else if (SrcTy->isIntegerTy()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002731 return IntToPtr; // int -> ptr
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002732 }
Ahmed Charles636a3d62012-02-19 11:37:01 +00002733 llvm_unreachable("Casting pointer to other than pointer or int");
Dale Johannesendd224d22010-09-30 23:57:10 +00002734 } else if (DestTy->isX86_MMXTy()) {
Duncan Sands27bd0df2011-05-18 10:59:25 +00002735 if (SrcTy->isVectorTy()) {
2736 assert(DestBits == SrcBits && "Casting vector of wrong width to X86_MMX");
Dale Johannesendd224d22010-09-30 23:57:10 +00002737 return BitCast; // 64-bit vector to MMX
Dale Johannesendd224d22010-09-30 23:57:10 +00002738 }
Ahmed Charles636a3d62012-02-19 11:37:01 +00002739 llvm_unreachable("Illegal cast to X86_MMX");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002740 }
Ahmed Charles636a3d62012-02-19 11:37:01 +00002741 llvm_unreachable("Casting to type that is not first-class");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002742}
2743
2744//===----------------------------------------------------------------------===//
2745// CastInst SubClass Constructors
2746//===----------------------------------------------------------------------===//
2747
2748/// Check that the construction parameters for a CastInst are correct. This
2749/// could be broken out into the separate constructors but it is useful to have
2750/// it in one place and to eliminate the redundant code for getting the sizes
2751/// of the types involved.
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002752bool
Chris Lattner229907c2011-07-18 04:54:35 +00002753CastInst::castIsValid(Instruction::CastOps op, Value *S, Type *DstTy) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002754
2755 // Check for type sanity on the arguments
Chris Lattner229907c2011-07-18 04:54:35 +00002756 Type *SrcTy = S->getType();
Evan Cheng098d7b72013-01-10 23:22:53 +00002757
2758 // If this is a cast to the same type then it's trivially true.
2759 if (SrcTy == DstTy)
2760 return true;
2761
Chris Lattner37bc78a2010-01-26 21:51:43 +00002762 if (!SrcTy->isFirstClassType() || !DstTy->isFirstClassType() ||
2763 SrcTy->isAggregateType() || DstTy->isAggregateType())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002764 return false;
2765
2766 // Get the size of the types in bits, we'll need this later
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002767 unsigned SrcBitSize = SrcTy->getScalarSizeInBits();
2768 unsigned DstBitSize = DstTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002769
Duncan Sands7f646562011-05-18 09:21:57 +00002770 // If these are vector types, get the lengths of the vectors (using zero for
2771 // scalar types means that checking that vector lengths match also checks that
2772 // scalars are not being converted to vectors or vectors to scalars).
2773 unsigned SrcLength = SrcTy->isVectorTy() ?
2774 cast<VectorType>(SrcTy)->getNumElements() : 0;
2775 unsigned DstLength = DstTy->isVectorTy() ?
2776 cast<VectorType>(DstTy)->getNumElements() : 0;
2777
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002778 // Switch on the opcode provided
2779 switch (op) {
2780 default: return false; // This is an input error
2781 case Instruction::Trunc:
Duncan Sands7f646562011-05-18 09:21:57 +00002782 return SrcTy->isIntOrIntVectorTy() && DstTy->isIntOrIntVectorTy() &&
2783 SrcLength == DstLength && SrcBitSize > DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002784 case Instruction::ZExt:
Duncan Sands7f646562011-05-18 09:21:57 +00002785 return SrcTy->isIntOrIntVectorTy() && DstTy->isIntOrIntVectorTy() &&
2786 SrcLength == DstLength && SrcBitSize < DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002787 case Instruction::SExt:
Duncan Sands7f646562011-05-18 09:21:57 +00002788 return SrcTy->isIntOrIntVectorTy() && DstTy->isIntOrIntVectorTy() &&
2789 SrcLength == DstLength && SrcBitSize < DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002790 case Instruction::FPTrunc:
Duncan Sands7f646562011-05-18 09:21:57 +00002791 return SrcTy->isFPOrFPVectorTy() && DstTy->isFPOrFPVectorTy() &&
2792 SrcLength == DstLength && SrcBitSize > DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002793 case Instruction::FPExt:
Duncan Sands7f646562011-05-18 09:21:57 +00002794 return SrcTy->isFPOrFPVectorTy() && DstTy->isFPOrFPVectorTy() &&
2795 SrcLength == DstLength && SrcBitSize < DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002796 case Instruction::UIToFP:
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002797 case Instruction::SIToFP:
Duncan Sands7f646562011-05-18 09:21:57 +00002798 return SrcTy->isIntOrIntVectorTy() && DstTy->isFPOrFPVectorTy() &&
2799 SrcLength == DstLength;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002800 case Instruction::FPToUI:
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002801 case Instruction::FPToSI:
Duncan Sands7f646562011-05-18 09:21:57 +00002802 return SrcTy->isFPOrFPVectorTy() && DstTy->isIntOrIntVectorTy() &&
2803 SrcLength == DstLength;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002804 case Instruction::PtrToInt:
Chris Lattner8a3df542012-01-25 01:32:59 +00002805 if (isa<VectorType>(SrcTy) != isa<VectorType>(DstTy))
Nadav Rotem3924cb02011-12-05 06:29:09 +00002806 return false;
Chris Lattner8a3df542012-01-25 01:32:59 +00002807 if (VectorType *VT = dyn_cast<VectorType>(SrcTy))
2808 if (VT->getNumElements() != cast<VectorType>(DstTy)->getNumElements())
2809 return false;
Nadav Rotem3924cb02011-12-05 06:29:09 +00002810 return SrcTy->getScalarType()->isPointerTy() &&
2811 DstTy->getScalarType()->isIntegerTy();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002812 case Instruction::IntToPtr:
Chris Lattner8a3df542012-01-25 01:32:59 +00002813 if (isa<VectorType>(SrcTy) != isa<VectorType>(DstTy))
Nadav Rotem3924cb02011-12-05 06:29:09 +00002814 return false;
Chris Lattner8a3df542012-01-25 01:32:59 +00002815 if (VectorType *VT = dyn_cast<VectorType>(SrcTy))
2816 if (VT->getNumElements() != cast<VectorType>(DstTy)->getNumElements())
2817 return false;
Nadav Rotem3924cb02011-12-05 06:29:09 +00002818 return SrcTy->getScalarType()->isIntegerTy() &&
2819 DstTy->getScalarType()->isPointerTy();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002820 case Instruction::BitCast:
2821 // BitCast implies a no-op cast of type only. No bits change.
2822 // However, you can't cast pointers to anything but pointers.
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002823 if (SrcTy->isPtrOrPtrVectorTy() != DstTy->isPtrOrPtrVectorTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002824 return false;
2825
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002826 // For non pointer cases, the cast is okay if the source and destination bit
2827 // widths are identical.
2828 if (!SrcTy->isPtrOrPtrVectorTy())
2829 return SrcTy->getPrimitiveSizeInBits() == DstTy->getPrimitiveSizeInBits();
2830
2831 // If both are pointers then the address spaces must match and vector of
2832 // pointers must have the same number of elements.
2833 return SrcTy->getPointerAddressSpace() == DstTy->getPointerAddressSpace() &&
2834 SrcTy->isVectorTy() == DstTy->isVectorTy() &&
2835 (!SrcTy->isVectorTy() ||
2836 SrcTy->getVectorNumElements() == SrcTy->getVectorNumElements());
2837
2838 case Instruction::AddrSpaceCast:
2839 return SrcTy->isPtrOrPtrVectorTy() && DstTy->isPtrOrPtrVectorTy() &&
2840 SrcTy->getPointerAddressSpace() != DstTy->getPointerAddressSpace() &&
2841 SrcTy->isVectorTy() == DstTy->isVectorTy() &&
2842 (!SrcTy->isVectorTy() ||
2843 SrcTy->getVectorNumElements() == SrcTy->getVectorNumElements());
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002844 }
2845}
2846
2847TruncInst::TruncInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002848 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002849) : CastInst(Ty, Trunc, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002850 assert(castIsValid(getOpcode(), S, Ty) && "Illegal Trunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002851}
2852
2853TruncInst::TruncInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002854 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002855) : CastInst(Ty, Trunc, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002856 assert(castIsValid(getOpcode(), S, Ty) && "Illegal Trunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002857}
2858
2859ZExtInst::ZExtInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002860 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002861) : CastInst(Ty, ZExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002862 assert(castIsValid(getOpcode(), S, Ty) && "Illegal ZExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002863}
2864
2865ZExtInst::ZExtInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002866 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002867) : CastInst(Ty, ZExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002868 assert(castIsValid(getOpcode(), S, Ty) && "Illegal ZExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002869}
2870SExtInst::SExtInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002871 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002872) : CastInst(Ty, SExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002873 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002874}
2875
Jeff Cohencc08c832006-12-02 02:22:01 +00002876SExtInst::SExtInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002877 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002878) : CastInst(Ty, SExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002879 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002880}
2881
2882FPTruncInst::FPTruncInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002883 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002884) : CastInst(Ty, FPTrunc, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002885 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPTrunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002886}
2887
2888FPTruncInst::FPTruncInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002889 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002890) : CastInst(Ty, FPTrunc, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002891 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPTrunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002892}
2893
2894FPExtInst::FPExtInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002895 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002896) : CastInst(Ty, FPExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002897 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002898}
2899
2900FPExtInst::FPExtInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002901 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002902) : CastInst(Ty, FPExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002903 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002904}
2905
2906UIToFPInst::UIToFPInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002907 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002908) : CastInst(Ty, UIToFP, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002909 assert(castIsValid(getOpcode(), S, Ty) && "Illegal UIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002910}
2911
2912UIToFPInst::UIToFPInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002913 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002914) : CastInst(Ty, UIToFP, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002915 assert(castIsValid(getOpcode(), S, Ty) && "Illegal UIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002916}
2917
2918SIToFPInst::SIToFPInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002919 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002920) : CastInst(Ty, SIToFP, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002921 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002922}
2923
2924SIToFPInst::SIToFPInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002925 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002926) : CastInst(Ty, SIToFP, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002927 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002928}
2929
2930FPToUIInst::FPToUIInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002931 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002932) : CastInst(Ty, FPToUI, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002933 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToUI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002934}
2935
2936FPToUIInst::FPToUIInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002937 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002938) : CastInst(Ty, FPToUI, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002939 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToUI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002940}
2941
2942FPToSIInst::FPToSIInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002943 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002944) : CastInst(Ty, FPToSI, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002945 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToSI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002946}
2947
2948FPToSIInst::FPToSIInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002949 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002950) : CastInst(Ty, FPToSI, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002951 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToSI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002952}
2953
2954PtrToIntInst::PtrToIntInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002955 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002956) : CastInst(Ty, PtrToInt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002957 assert(castIsValid(getOpcode(), S, Ty) && "Illegal PtrToInt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002958}
2959
2960PtrToIntInst::PtrToIntInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002961 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002962) : CastInst(Ty, PtrToInt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002963 assert(castIsValid(getOpcode(), S, Ty) && "Illegal PtrToInt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002964}
2965
2966IntToPtrInst::IntToPtrInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002967 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002968) : CastInst(Ty, IntToPtr, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002969 assert(castIsValid(getOpcode(), S, Ty) && "Illegal IntToPtr");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002970}
2971
2972IntToPtrInst::IntToPtrInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002973 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002974) : CastInst(Ty, IntToPtr, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002975 assert(castIsValid(getOpcode(), S, Ty) && "Illegal IntToPtr");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002976}
2977
2978BitCastInst::BitCastInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002979 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002980) : CastInst(Ty, BitCast, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002981 assert(castIsValid(getOpcode(), S, Ty) && "Illegal BitCast");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002982}
2983
2984BitCastInst::BitCastInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002985 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002986) : CastInst(Ty, BitCast, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002987 assert(castIsValid(getOpcode(), S, Ty) && "Illegal BitCast");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002988}
Chris Lattnerf16dc002006-09-17 19:29:56 +00002989
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002990AddrSpaceCastInst::AddrSpaceCastInst(
2991 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
2992) : CastInst(Ty, AddrSpaceCast, S, Name, InsertBefore) {
2993 assert(castIsValid(getOpcode(), S, Ty) && "Illegal AddrSpaceCast");
2994}
2995
2996AddrSpaceCastInst::AddrSpaceCastInst(
2997 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
2998) : CastInst(Ty, AddrSpaceCast, S, Name, InsertAtEnd) {
2999 assert(castIsValid(getOpcode(), S, Ty) && "Illegal AddrSpaceCast");
3000}
3001
Chris Lattnerf16dc002006-09-17 19:29:56 +00003002//===----------------------------------------------------------------------===//
Reid Spencerd9436b62006-11-20 01:22:35 +00003003// CmpInst Classes
3004//===----------------------------------------------------------------------===//
3005
Craig Topper3186c012012-09-23 02:12:10 +00003006void CmpInst::anchor() {}
Chris Lattneraec33da2010-01-22 06:25:37 +00003007
Chris Lattner229907c2011-07-18 04:54:35 +00003008CmpInst::CmpInst(Type *ty, OtherOps op, unsigned short predicate,
Daniel Dunbar4975db62009-07-25 04:41:11 +00003009 Value *LHS, Value *RHS, const Twine &Name,
Nate Begemand2195702008-05-12 19:01:56 +00003010 Instruction *InsertBefore)
Nate Begeman66d0a0e2008-05-12 20:11:05 +00003011 : Instruction(ty, op,
Gabor Greiff6caff662008-05-10 08:32:32 +00003012 OperandTraits<CmpInst>::op_begin(this),
3013 OperandTraits<CmpInst>::operands(this),
3014 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00003015 Op<0>() = LHS;
3016 Op<1>() = RHS;
Chris Lattnerb9c86512009-12-29 02:14:09 +00003017 setPredicate((Predicate)predicate);
Reid Spencer871a9ea2007-04-11 13:04:48 +00003018 setName(Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00003019}
Gabor Greiff6caff662008-05-10 08:32:32 +00003020
Chris Lattner229907c2011-07-18 04:54:35 +00003021CmpInst::CmpInst(Type *ty, OtherOps op, unsigned short predicate,
Daniel Dunbar4975db62009-07-25 04:41:11 +00003022 Value *LHS, Value *RHS, const Twine &Name,
Nate Begemand2195702008-05-12 19:01:56 +00003023 BasicBlock *InsertAtEnd)
Nate Begeman66d0a0e2008-05-12 20:11:05 +00003024 : Instruction(ty, op,
Gabor Greiff6caff662008-05-10 08:32:32 +00003025 OperandTraits<CmpInst>::op_begin(this),
3026 OperandTraits<CmpInst>::operands(this),
3027 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00003028 Op<0>() = LHS;
3029 Op<1>() = RHS;
Chris Lattnerb9c86512009-12-29 02:14:09 +00003030 setPredicate((Predicate)predicate);
Reid Spencer871a9ea2007-04-11 13:04:48 +00003031 setName(Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00003032}
3033
3034CmpInst *
Dan Gohmanad1f0a12009-08-25 23:17:54 +00003035CmpInst::Create(OtherOps Op, unsigned short predicate,
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003036 Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00003037 const Twine &Name, Instruction *InsertBefore) {
Reid Spencerd9436b62006-11-20 01:22:35 +00003038 if (Op == Instruction::ICmp) {
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003039 if (InsertBefore)
3040 return new ICmpInst(InsertBefore, CmpInst::Predicate(predicate),
3041 S1, S2, Name);
3042 else
Dan Gohmanad1f0a12009-08-25 23:17:54 +00003043 return new ICmpInst(CmpInst::Predicate(predicate),
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003044 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00003045 }
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003046
3047 if (InsertBefore)
3048 return new FCmpInst(InsertBefore, CmpInst::Predicate(predicate),
3049 S1, S2, Name);
3050 else
Dan Gohmanad1f0a12009-08-25 23:17:54 +00003051 return new FCmpInst(CmpInst::Predicate(predicate),
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003052 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00003053}
3054
3055CmpInst *
Gabor Greife1f6e4b2008-05-16 19:29:10 +00003056CmpInst::Create(OtherOps Op, unsigned short predicate, Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00003057 const Twine &Name, BasicBlock *InsertAtEnd) {
Reid Spencerd9436b62006-11-20 01:22:35 +00003058 if (Op == Instruction::ICmp) {
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003059 return new ICmpInst(*InsertAtEnd, CmpInst::Predicate(predicate),
3060 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00003061 }
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003062 return new FCmpInst(*InsertAtEnd, CmpInst::Predicate(predicate),
3063 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00003064}
3065
3066void CmpInst::swapOperands() {
3067 if (ICmpInst *IC = dyn_cast<ICmpInst>(this))
3068 IC->swapOperands();
3069 else
3070 cast<FCmpInst>(this)->swapOperands();
3071}
3072
Duncan Sands95c4ecc2011-01-04 12:52:29 +00003073bool CmpInst::isCommutative() const {
3074 if (const ICmpInst *IC = dyn_cast<ICmpInst>(this))
Reid Spencerd9436b62006-11-20 01:22:35 +00003075 return IC->isCommutative();
3076 return cast<FCmpInst>(this)->isCommutative();
3077}
3078
Duncan Sands95c4ecc2011-01-04 12:52:29 +00003079bool CmpInst::isEquality() const {
3080 if (const ICmpInst *IC = dyn_cast<ICmpInst>(this))
Reid Spencerd9436b62006-11-20 01:22:35 +00003081 return IC->isEquality();
3082 return cast<FCmpInst>(this)->isEquality();
3083}
3084
3085
Dan Gohman4e724382008-05-31 02:47:54 +00003086CmpInst::Predicate CmpInst::getInversePredicate(Predicate pred) {
Reid Spencerd9436b62006-11-20 01:22:35 +00003087 switch (pred) {
Craig Topperc514b542012-02-05 22:14:15 +00003088 default: llvm_unreachable("Unknown cmp predicate!");
Reid Spencerd9436b62006-11-20 01:22:35 +00003089 case ICMP_EQ: return ICMP_NE;
3090 case ICMP_NE: return ICMP_EQ;
3091 case ICMP_UGT: return ICMP_ULE;
3092 case ICMP_ULT: return ICMP_UGE;
3093 case ICMP_UGE: return ICMP_ULT;
3094 case ICMP_ULE: return ICMP_UGT;
3095 case ICMP_SGT: return ICMP_SLE;
3096 case ICMP_SLT: return ICMP_SGE;
3097 case ICMP_SGE: return ICMP_SLT;
3098 case ICMP_SLE: return ICMP_SGT;
Reid Spencerd9436b62006-11-20 01:22:35 +00003099
Dan Gohman4e724382008-05-31 02:47:54 +00003100 case FCMP_OEQ: return FCMP_UNE;
3101 case FCMP_ONE: return FCMP_UEQ;
3102 case FCMP_OGT: return FCMP_ULE;
3103 case FCMP_OLT: return FCMP_UGE;
3104 case FCMP_OGE: return FCMP_ULT;
3105 case FCMP_OLE: return FCMP_UGT;
3106 case FCMP_UEQ: return FCMP_ONE;
3107 case FCMP_UNE: return FCMP_OEQ;
3108 case FCMP_UGT: return FCMP_OLE;
3109 case FCMP_ULT: return FCMP_OGE;
3110 case FCMP_UGE: return FCMP_OLT;
3111 case FCMP_ULE: return FCMP_OGT;
3112 case FCMP_ORD: return FCMP_UNO;
3113 case FCMP_UNO: return FCMP_ORD;
3114 case FCMP_TRUE: return FCMP_FALSE;
3115 case FCMP_FALSE: return FCMP_TRUE;
Reid Spencerd9436b62006-11-20 01:22:35 +00003116 }
3117}
3118
Reid Spencer266e42b2006-12-23 06:05:41 +00003119ICmpInst::Predicate ICmpInst::getSignedPredicate(Predicate pred) {
3120 switch (pred) {
Craig Topperc514b542012-02-05 22:14:15 +00003121 default: llvm_unreachable("Unknown icmp predicate!");
Reid Spencer266e42b2006-12-23 06:05:41 +00003122 case ICMP_EQ: case ICMP_NE:
3123 case ICMP_SGT: case ICMP_SLT: case ICMP_SGE: case ICMP_SLE:
3124 return pred;
3125 case ICMP_UGT: return ICMP_SGT;
3126 case ICMP_ULT: return ICMP_SLT;
3127 case ICMP_UGE: return ICMP_SGE;
3128 case ICMP_ULE: return ICMP_SLE;
3129 }
3130}
3131
Nick Lewycky8ea81e82008-01-28 03:48:02 +00003132ICmpInst::Predicate ICmpInst::getUnsignedPredicate(Predicate pred) {
3133 switch (pred) {
Craig Topperc514b542012-02-05 22:14:15 +00003134 default: llvm_unreachable("Unknown icmp predicate!");
Nick Lewycky8ea81e82008-01-28 03:48:02 +00003135 case ICMP_EQ: case ICMP_NE:
3136 case ICMP_UGT: case ICMP_ULT: case ICMP_UGE: case ICMP_ULE:
3137 return pred;
3138 case ICMP_SGT: return ICMP_UGT;
3139 case ICMP_SLT: return ICMP_ULT;
3140 case ICMP_SGE: return ICMP_UGE;
3141 case ICMP_SLE: return ICMP_ULE;
3142 }
3143}
3144
Reid Spencer0286bc12007-02-28 22:00:54 +00003145/// Initialize a set of values that all satisfy the condition with C.
3146///
3147ConstantRange
3148ICmpInst::makeConstantRange(Predicate pred, const APInt &C) {
3149 APInt Lower(C);
3150 APInt Upper(C);
3151 uint32_t BitWidth = C.getBitWidth();
3152 switch (pred) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00003153 default: llvm_unreachable("Invalid ICmp opcode to ConstantRange ctor!");
Jakub Staszak773be0c2013-03-20 23:56:19 +00003154 case ICmpInst::ICMP_EQ: ++Upper; break;
3155 case ICmpInst::ICMP_NE: ++Lower; break;
Dan Gohmand86e2952010-01-26 16:04:20 +00003156 case ICmpInst::ICMP_ULT:
3157 Lower = APInt::getMinValue(BitWidth);
3158 // Check for an empty-set condition.
3159 if (Lower == Upper)
3160 return ConstantRange(BitWidth, /*isFullSet=*/false);
3161 break;
3162 case ICmpInst::ICMP_SLT:
3163 Lower = APInt::getSignedMinValue(BitWidth);
3164 // Check for an empty-set condition.
3165 if (Lower == Upper)
3166 return ConstantRange(BitWidth, /*isFullSet=*/false);
3167 break;
Reid Spencer0286bc12007-02-28 22:00:54 +00003168 case ICmpInst::ICMP_UGT:
Jakub Staszak773be0c2013-03-20 23:56:19 +00003169 ++Lower; Upper = APInt::getMinValue(BitWidth); // Min = Next(Max)
Dan Gohmand86e2952010-01-26 16:04:20 +00003170 // Check for an empty-set condition.
3171 if (Lower == Upper)
3172 return ConstantRange(BitWidth, /*isFullSet=*/false);
Reid Spencer0286bc12007-02-28 22:00:54 +00003173 break;
3174 case ICmpInst::ICMP_SGT:
Jakub Staszak773be0c2013-03-20 23:56:19 +00003175 ++Lower; Upper = APInt::getSignedMinValue(BitWidth); // Min = Next(Max)
Dan Gohmand86e2952010-01-26 16:04:20 +00003176 // Check for an empty-set condition.
3177 if (Lower == Upper)
3178 return ConstantRange(BitWidth, /*isFullSet=*/false);
Reid Spencer0286bc12007-02-28 22:00:54 +00003179 break;
3180 case ICmpInst::ICMP_ULE:
Jakub Staszak773be0c2013-03-20 23:56:19 +00003181 Lower = APInt::getMinValue(BitWidth); ++Upper;
Dan Gohmand86e2952010-01-26 16:04:20 +00003182 // Check for a full-set condition.
3183 if (Lower == Upper)
3184 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer0286bc12007-02-28 22:00:54 +00003185 break;
3186 case ICmpInst::ICMP_SLE:
Jakub Staszak773be0c2013-03-20 23:56:19 +00003187 Lower = APInt::getSignedMinValue(BitWidth); ++Upper;
Dan Gohmand86e2952010-01-26 16:04:20 +00003188 // Check for a full-set condition.
3189 if (Lower == Upper)
3190 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer0286bc12007-02-28 22:00:54 +00003191 break;
3192 case ICmpInst::ICMP_UGE:
3193 Upper = APInt::getMinValue(BitWidth); // Min = Next(Max)
Dan Gohmand86e2952010-01-26 16:04:20 +00003194 // Check for a full-set condition.
3195 if (Lower == Upper)
3196 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer0286bc12007-02-28 22:00:54 +00003197 break;
3198 case ICmpInst::ICMP_SGE:
3199 Upper = APInt::getSignedMinValue(BitWidth); // Min = Next(Max)
Dan Gohmand86e2952010-01-26 16:04:20 +00003200 // Check for a full-set condition.
3201 if (Lower == Upper)
3202 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer0286bc12007-02-28 22:00:54 +00003203 break;
3204 }
3205 return ConstantRange(Lower, Upper);
3206}
3207
Dan Gohman4e724382008-05-31 02:47:54 +00003208CmpInst::Predicate CmpInst::getSwappedPredicate(Predicate pred) {
Reid Spencerd9436b62006-11-20 01:22:35 +00003209 switch (pred) {
Craig Topperc514b542012-02-05 22:14:15 +00003210 default: llvm_unreachable("Unknown cmp predicate!");
Dan Gohman4e724382008-05-31 02:47:54 +00003211 case ICMP_EQ: case ICMP_NE:
3212 return pred;
3213 case ICMP_SGT: return ICMP_SLT;
3214 case ICMP_SLT: return ICMP_SGT;
3215 case ICMP_SGE: return ICMP_SLE;
3216 case ICMP_SLE: return ICMP_SGE;
3217 case ICMP_UGT: return ICMP_ULT;
3218 case ICMP_ULT: return ICMP_UGT;
3219 case ICMP_UGE: return ICMP_ULE;
3220 case ICMP_ULE: return ICMP_UGE;
3221
Reid Spencerd9436b62006-11-20 01:22:35 +00003222 case FCMP_FALSE: case FCMP_TRUE:
3223 case FCMP_OEQ: case FCMP_ONE:
3224 case FCMP_UEQ: case FCMP_UNE:
3225 case FCMP_ORD: case FCMP_UNO:
3226 return pred;
3227 case FCMP_OGT: return FCMP_OLT;
3228 case FCMP_OLT: return FCMP_OGT;
3229 case FCMP_OGE: return FCMP_OLE;
3230 case FCMP_OLE: return FCMP_OGE;
3231 case FCMP_UGT: return FCMP_ULT;
3232 case FCMP_ULT: return FCMP_UGT;
3233 case FCMP_UGE: return FCMP_ULE;
3234 case FCMP_ULE: return FCMP_UGE;
3235 }
3236}
3237
Reid Spencer266e42b2006-12-23 06:05:41 +00003238bool CmpInst::isUnsigned(unsigned short predicate) {
3239 switch (predicate) {
3240 default: return false;
3241 case ICmpInst::ICMP_ULT: case ICmpInst::ICMP_ULE: case ICmpInst::ICMP_UGT:
3242 case ICmpInst::ICMP_UGE: return true;
3243 }
3244}
3245
Nick Lewycky7494b3b2009-10-25 03:50:03 +00003246bool CmpInst::isSigned(unsigned short predicate) {
Reid Spencer266e42b2006-12-23 06:05:41 +00003247 switch (predicate) {
3248 default: return false;
3249 case ICmpInst::ICMP_SLT: case ICmpInst::ICMP_SLE: case ICmpInst::ICMP_SGT:
3250 case ICmpInst::ICMP_SGE: return true;
3251 }
3252}
3253
3254bool CmpInst::isOrdered(unsigned short predicate) {
3255 switch (predicate) {
3256 default: return false;
3257 case FCmpInst::FCMP_OEQ: case FCmpInst::FCMP_ONE: case FCmpInst::FCMP_OGT:
3258 case FCmpInst::FCMP_OLT: case FCmpInst::FCMP_OGE: case FCmpInst::FCMP_OLE:
3259 case FCmpInst::FCMP_ORD: return true;
3260 }
3261}
3262
3263bool CmpInst::isUnordered(unsigned short predicate) {
3264 switch (predicate) {
3265 default: return false;
3266 case FCmpInst::FCMP_UEQ: case FCmpInst::FCMP_UNE: case FCmpInst::FCMP_UGT:
3267 case FCmpInst::FCMP_ULT: case FCmpInst::FCMP_UGE: case FCmpInst::FCMP_ULE:
3268 case FCmpInst::FCMP_UNO: return true;
3269 }
3270}
3271
Nick Lewycky7494b3b2009-10-25 03:50:03 +00003272bool CmpInst::isTrueWhenEqual(unsigned short predicate) {
3273 switch(predicate) {
3274 default: return false;
3275 case ICMP_EQ: case ICMP_UGE: case ICMP_ULE: case ICMP_SGE: case ICMP_SLE:
3276 case FCMP_TRUE: case FCMP_UEQ: case FCMP_UGE: case FCMP_ULE: return true;
3277 }
3278}
3279
3280bool CmpInst::isFalseWhenEqual(unsigned short predicate) {
3281 switch(predicate) {
3282 case ICMP_NE: case ICMP_UGT: case ICMP_ULT: case ICMP_SGT: case ICMP_SLT:
3283 case FCMP_FALSE: case FCMP_ONE: case FCMP_OGT: case FCMP_OLT: return true;
3284 default: return false;
3285 }
3286}
3287
3288
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003289//===----------------------------------------------------------------------===//
3290// SwitchInst Implementation
3291//===----------------------------------------------------------------------===//
3292
Chris Lattnerbaf00152010-11-17 05:41:46 +00003293void SwitchInst::init(Value *Value, BasicBlock *Default, unsigned NumReserved) {
3294 assert(Value && Default && NumReserved);
3295 ReservedSpace = NumReserved;
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003296 NumOperands = 2;
Gabor Greiff6caff662008-05-10 08:32:32 +00003297 OperandList = allocHungoffUses(ReservedSpace);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003298
Gabor Greif2d3024d2008-05-26 21:33:52 +00003299 OperandList[0] = Value;
3300 OperandList[1] = Default;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003301}
3302
Chris Lattner2195fc42007-02-24 00:55:48 +00003303/// SwitchInst ctor - Create a new switch instruction, specifying a value to
3304/// switch on and a default destination. The number of additional cases can
3305/// be specified here to make memory allocation more efficient. This
3306/// constructor can also autoinsert before another instruction.
3307SwitchInst::SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
3308 Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +00003309 : TerminatorInst(Type::getVoidTy(Value->getContext()), Instruction::Switch,
3310 0, 0, InsertBefore) {
Chris Lattnerbaf00152010-11-17 05:41:46 +00003311 init(Value, Default, 2+NumCases*2);
Chris Lattner2195fc42007-02-24 00:55:48 +00003312}
3313
3314/// SwitchInst ctor - Create a new switch instruction, specifying a value to
3315/// switch on and a default destination. The number of additional cases can
3316/// be specified here to make memory allocation more efficient. This
3317/// constructor also autoinserts at the end of the specified BasicBlock.
3318SwitchInst::SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
3319 BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +00003320 : TerminatorInst(Type::getVoidTy(Value->getContext()), Instruction::Switch,
3321 0, 0, InsertAtEnd) {
Chris Lattnerbaf00152010-11-17 05:41:46 +00003322 init(Value, Default, 2+NumCases*2);
Chris Lattner2195fc42007-02-24 00:55:48 +00003323}
3324
Misha Brukmanb1c93172005-04-21 23:48:37 +00003325SwitchInst::SwitchInst(const SwitchInst &SI)
Chris Lattnerbaf00152010-11-17 05:41:46 +00003326 : TerminatorInst(SI.getType(), Instruction::Switch, 0, 0) {
3327 init(SI.getCondition(), SI.getDefaultDest(), SI.getNumOperands());
3328 NumOperands = SI.getNumOperands();
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003329 Use *OL = OperandList, *InOL = SI.OperandList;
Chris Lattnerbaf00152010-11-17 05:41:46 +00003330 for (unsigned i = 2, E = SI.getNumOperands(); i != E; i += 2) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00003331 OL[i] = InOL[i];
3332 OL[i+1] = InOL[i+1];
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003333 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003334 SubclassOptionalData = SI.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003335}
3336
Gordon Henriksen14a55692007-12-10 02:14:30 +00003337SwitchInst::~SwitchInst() {
Jay Foadbbb91f22011-01-16 15:30:52 +00003338 dropHungoffUses();
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003339}
3340
3341
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003342/// addCase - Add an entry to the switch instruction...
3343///
Chris Lattner47ac1872005-02-24 05:32:09 +00003344void SwitchInst::addCase(ConstantInt *OnVal, BasicBlock *Dest) {
Stepan Dyatkovskiy513aaa52012-02-01 07:49:51 +00003345 unsigned NewCaseIdx = getNumCases();
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003346 unsigned OpNo = NumOperands;
3347 if (OpNo+2 > ReservedSpace)
Jay Foade98f29d2011-04-01 08:00:58 +00003348 growOperands(); // Get more space!
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003349 // Initialize some new operands.
Chris Lattnerf711f8d2005-01-29 01:05:12 +00003350 assert(OpNo+1 < ReservedSpace && "Growing didn't work!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003351 NumOperands = OpNo+2;
Bob Wilsone4077362013-09-09 19:14:35 +00003352 CaseIt Case(this, NewCaseIdx);
3353 Case.setValue(OnVal);
Stepan Dyatkovskiy5b648af2012-03-08 07:06:20 +00003354 Case.setSuccessor(Dest);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003355}
3356
Stepan Dyatkovskiy513aaa52012-02-01 07:49:51 +00003357/// removeCase - This method removes the specified case and its successor
3358/// from the switch instruction.
Bob Wilsone4077362013-09-09 19:14:35 +00003359void SwitchInst::removeCase(CaseIt i) {
Stepan Dyatkovskiy5b648af2012-03-08 07:06:20 +00003360 unsigned idx = i.getCaseIndex();
3361
Stepan Dyatkovskiy513aaa52012-02-01 07:49:51 +00003362 assert(2 + idx*2 < getNumOperands() && "Case index out of range!!!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003363
3364 unsigned NumOps = getNumOperands();
3365 Use *OL = OperandList;
3366
Jay Foad14277722011-02-01 09:22:34 +00003367 // Overwrite this case with the end of the list.
Stepan Dyatkovskiy513aaa52012-02-01 07:49:51 +00003368 if (2 + (idx + 1) * 2 != NumOps) {
3369 OL[2 + idx * 2] = OL[NumOps - 2];
3370 OL[2 + idx * 2 + 1] = OL[NumOps - 1];
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003371 }
3372
3373 // Nuke the last value.
3374 OL[NumOps-2].set(0);
3375 OL[NumOps-2+1].set(0);
3376 NumOperands = NumOps-2;
3377}
3378
Jay Foade98f29d2011-04-01 08:00:58 +00003379/// growOperands - grow operands - This grows the operand list in response
3380/// to a push_back style of operation. This grows the number of ops by 3 times.
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003381///
Jay Foade98f29d2011-04-01 08:00:58 +00003382void SwitchInst::growOperands() {
Gabor Greiff6caff662008-05-10 08:32:32 +00003383 unsigned e = getNumOperands();
Jay Foade98f29d2011-04-01 08:00:58 +00003384 unsigned NumOps = e*3;
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003385
3386 ReservedSpace = NumOps;
Gabor Greiff6caff662008-05-10 08:32:32 +00003387 Use *NewOps = allocHungoffUses(NumOps);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003388 Use *OldOps = OperandList;
Gabor Greiff6caff662008-05-10 08:32:32 +00003389 for (unsigned i = 0; i != e; ++i) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00003390 NewOps[i] = OldOps[i];
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003391 }
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003392 OperandList = NewOps;
Jay Foadbbb91f22011-01-16 15:30:52 +00003393 Use::zap(OldOps, OldOps + e, true);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003394}
3395
3396
3397BasicBlock *SwitchInst::getSuccessorV(unsigned idx) const {
3398 return getSuccessor(idx);
3399}
3400unsigned SwitchInst::getNumSuccessorsV() const {
3401 return getNumSuccessors();
3402}
3403void SwitchInst::setSuccessorV(unsigned idx, BasicBlock *B) {
3404 setSuccessor(idx, B);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003405}
Chris Lattnerf22be932004-10-15 23:52:53 +00003406
Chris Lattner3ed871f2009-10-27 19:13:16 +00003407//===----------------------------------------------------------------------===//
Jay Foadbbb91f22011-01-16 15:30:52 +00003408// IndirectBrInst Implementation
Chris Lattner3ed871f2009-10-27 19:13:16 +00003409//===----------------------------------------------------------------------===//
3410
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003411void IndirectBrInst::init(Value *Address, unsigned NumDests) {
Duncan Sands19d0b472010-02-16 11:11:14 +00003412 assert(Address && Address->getType()->isPointerTy() &&
Chris Lattner6747b4c2009-10-29 05:53:32 +00003413 "Address of indirectbr must be a pointer");
Chris Lattner3ed871f2009-10-27 19:13:16 +00003414 ReservedSpace = 1+NumDests;
3415 NumOperands = 1;
3416 OperandList = allocHungoffUses(ReservedSpace);
3417
3418 OperandList[0] = Address;
3419}
3420
3421
Jay Foade98f29d2011-04-01 08:00:58 +00003422/// growOperands - grow operands - This grows the operand list in response
3423/// to a push_back style of operation. This grows the number of ops by 2 times.
Chris Lattner3ed871f2009-10-27 19:13:16 +00003424///
Jay Foade98f29d2011-04-01 08:00:58 +00003425void IndirectBrInst::growOperands() {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003426 unsigned e = getNumOperands();
Jay Foade98f29d2011-04-01 08:00:58 +00003427 unsigned NumOps = e*2;
Chris Lattner3ed871f2009-10-27 19:13:16 +00003428
3429 ReservedSpace = NumOps;
3430 Use *NewOps = allocHungoffUses(NumOps);
3431 Use *OldOps = OperandList;
3432 for (unsigned i = 0; i != e; ++i)
3433 NewOps[i] = OldOps[i];
3434 OperandList = NewOps;
Jay Foadbbb91f22011-01-16 15:30:52 +00003435 Use::zap(OldOps, OldOps + e, true);
Chris Lattner3ed871f2009-10-27 19:13:16 +00003436}
3437
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003438IndirectBrInst::IndirectBrInst(Value *Address, unsigned NumCases,
3439 Instruction *InsertBefore)
3440: TerminatorInst(Type::getVoidTy(Address->getContext()),Instruction::IndirectBr,
Chris Lattner3ed871f2009-10-27 19:13:16 +00003441 0, 0, InsertBefore) {
3442 init(Address, NumCases);
3443}
3444
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003445IndirectBrInst::IndirectBrInst(Value *Address, unsigned NumCases,
3446 BasicBlock *InsertAtEnd)
3447: TerminatorInst(Type::getVoidTy(Address->getContext()),Instruction::IndirectBr,
Chris Lattner3ed871f2009-10-27 19:13:16 +00003448 0, 0, InsertAtEnd) {
3449 init(Address, NumCases);
3450}
3451
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003452IndirectBrInst::IndirectBrInst(const IndirectBrInst &IBI)
3453 : TerminatorInst(Type::getVoidTy(IBI.getContext()), Instruction::IndirectBr,
Chris Lattner3ed871f2009-10-27 19:13:16 +00003454 allocHungoffUses(IBI.getNumOperands()),
3455 IBI.getNumOperands()) {
3456 Use *OL = OperandList, *InOL = IBI.OperandList;
3457 for (unsigned i = 0, E = IBI.getNumOperands(); i != E; ++i)
3458 OL[i] = InOL[i];
3459 SubclassOptionalData = IBI.SubclassOptionalData;
3460}
3461
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003462IndirectBrInst::~IndirectBrInst() {
Jay Foadbbb91f22011-01-16 15:30:52 +00003463 dropHungoffUses();
Chris Lattner3ed871f2009-10-27 19:13:16 +00003464}
3465
3466/// addDestination - Add a destination.
3467///
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003468void IndirectBrInst::addDestination(BasicBlock *DestBB) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003469 unsigned OpNo = NumOperands;
3470 if (OpNo+1 > ReservedSpace)
Jay Foade98f29d2011-04-01 08:00:58 +00003471 growOperands(); // Get more space!
Chris Lattner3ed871f2009-10-27 19:13:16 +00003472 // Initialize some new operands.
3473 assert(OpNo < ReservedSpace && "Growing didn't work!");
3474 NumOperands = OpNo+1;
3475 OperandList[OpNo] = DestBB;
3476}
3477
3478/// removeDestination - This method removes the specified successor from the
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003479/// indirectbr instruction.
3480void IndirectBrInst::removeDestination(unsigned idx) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003481 assert(idx < getNumOperands()-1 && "Successor index out of range!");
3482
3483 unsigned NumOps = getNumOperands();
3484 Use *OL = OperandList;
3485
3486 // Replace this value with the last one.
3487 OL[idx+1] = OL[NumOps-1];
3488
3489 // Nuke the last value.
3490 OL[NumOps-1].set(0);
3491 NumOperands = NumOps-1;
3492}
3493
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003494BasicBlock *IndirectBrInst::getSuccessorV(unsigned idx) const {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003495 return getSuccessor(idx);
3496}
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003497unsigned IndirectBrInst::getNumSuccessorsV() const {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003498 return getNumSuccessors();
3499}
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003500void IndirectBrInst::setSuccessorV(unsigned idx, BasicBlock *B) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003501 setSuccessor(idx, B);
3502}
3503
3504//===----------------------------------------------------------------------===//
Devang Patel11cf3f42009-10-27 22:16:29 +00003505// clone_impl() implementations
Chris Lattner3ed871f2009-10-27 19:13:16 +00003506//===----------------------------------------------------------------------===//
3507
Chris Lattnerf22be932004-10-15 23:52:53 +00003508// Define these methods here so vtables don't get emitted into every translation
3509// unit that uses these classes.
3510
Devang Patel11cf3f42009-10-27 22:16:29 +00003511GetElementPtrInst *GetElementPtrInst::clone_impl() const {
3512 return new (getNumOperands()) GetElementPtrInst(*this);
Chris Lattnerf22be932004-10-15 23:52:53 +00003513}
3514
Devang Patel11cf3f42009-10-27 22:16:29 +00003515BinaryOperator *BinaryOperator::clone_impl() const {
3516 return Create(getOpcode(), Op<0>(), Op<1>());
Chris Lattnerf22be932004-10-15 23:52:53 +00003517}
3518
Devang Patel11cf3f42009-10-27 22:16:29 +00003519FCmpInst* FCmpInst::clone_impl() const {
3520 return new FCmpInst(getPredicate(), Op<0>(), Op<1>());
Reid Spencerd9436b62006-11-20 01:22:35 +00003521}
3522
Devang Patel11cf3f42009-10-27 22:16:29 +00003523ICmpInst* ICmpInst::clone_impl() const {
3524 return new ICmpInst(getPredicate(), Op<0>(), Op<1>());
Dan Gohman0752bff2008-05-23 00:36:11 +00003525}
3526
Devang Patel11cf3f42009-10-27 22:16:29 +00003527ExtractValueInst *ExtractValueInst::clone_impl() const {
3528 return new ExtractValueInst(*this);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003529}
3530
Devang Patel11cf3f42009-10-27 22:16:29 +00003531InsertValueInst *InsertValueInst::clone_impl() const {
3532 return new InsertValueInst(*this);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003533}
3534
Devang Patel11cf3f42009-10-27 22:16:29 +00003535AllocaInst *AllocaInst::clone_impl() const {
3536 return new AllocaInst(getAllocatedType(),
3537 (Value*)getOperand(0),
3538 getAlignment());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003539}
3540
Devang Patel11cf3f42009-10-27 22:16:29 +00003541LoadInst *LoadInst::clone_impl() const {
Eli Friedman59b66882011-08-09 23:02:53 +00003542 return new LoadInst(getOperand(0), Twine(), isVolatile(),
3543 getAlignment(), getOrdering(), getSynchScope());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003544}
3545
Devang Patel11cf3f42009-10-27 22:16:29 +00003546StoreInst *StoreInst::clone_impl() const {
Eli Friedmancad9f2a2011-08-10 17:39:11 +00003547 return new StoreInst(getOperand(0), getOperand(1), isVolatile(),
Eli Friedman59b66882011-08-09 23:02:53 +00003548 getAlignment(), getOrdering(), getSynchScope());
3549
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003550}
3551
Eli Friedmanc9a551e2011-07-28 21:48:00 +00003552AtomicCmpXchgInst *AtomicCmpXchgInst::clone_impl() const {
3553 AtomicCmpXchgInst *Result =
3554 new AtomicCmpXchgInst(getOperand(0), getOperand(1), getOperand(2),
3555 getOrdering(), getSynchScope());
3556 Result->setVolatile(isVolatile());
3557 return Result;
3558}
3559
3560AtomicRMWInst *AtomicRMWInst::clone_impl() const {
3561 AtomicRMWInst *Result =
3562 new AtomicRMWInst(getOperation(),getOperand(0), getOperand(1),
3563 getOrdering(), getSynchScope());
3564 Result->setVolatile(isVolatile());
3565 return Result;
3566}
3567
Eli Friedmanfee02c62011-07-25 23:16:38 +00003568FenceInst *FenceInst::clone_impl() const {
3569 return new FenceInst(getContext(), getOrdering(), getSynchScope());
3570}
3571
Devang Patel11cf3f42009-10-27 22:16:29 +00003572TruncInst *TruncInst::clone_impl() const {
3573 return new TruncInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003574}
3575
Devang Patel11cf3f42009-10-27 22:16:29 +00003576ZExtInst *ZExtInst::clone_impl() const {
3577 return new ZExtInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003578}
3579
Devang Patel11cf3f42009-10-27 22:16:29 +00003580SExtInst *SExtInst::clone_impl() const {
3581 return new SExtInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003582}
3583
Devang Patel11cf3f42009-10-27 22:16:29 +00003584FPTruncInst *FPTruncInst::clone_impl() const {
3585 return new FPTruncInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003586}
3587
Devang Patel11cf3f42009-10-27 22:16:29 +00003588FPExtInst *FPExtInst::clone_impl() const {
3589 return new FPExtInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003590}
3591
Devang Patel11cf3f42009-10-27 22:16:29 +00003592UIToFPInst *UIToFPInst::clone_impl() const {
3593 return new UIToFPInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003594}
3595
Devang Patel11cf3f42009-10-27 22:16:29 +00003596SIToFPInst *SIToFPInst::clone_impl() const {
3597 return new SIToFPInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003598}
3599
Devang Patel11cf3f42009-10-27 22:16:29 +00003600FPToUIInst *FPToUIInst::clone_impl() const {
3601 return new FPToUIInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003602}
3603
Devang Patel11cf3f42009-10-27 22:16:29 +00003604FPToSIInst *FPToSIInst::clone_impl() const {
3605 return new FPToSIInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003606}
3607
Devang Patel11cf3f42009-10-27 22:16:29 +00003608PtrToIntInst *PtrToIntInst::clone_impl() const {
3609 return new PtrToIntInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003610}
3611
Devang Patel11cf3f42009-10-27 22:16:29 +00003612IntToPtrInst *IntToPtrInst::clone_impl() const {
3613 return new IntToPtrInst(getOperand(0), getType());
Gabor Greif697e94c2008-05-15 10:04:30 +00003614}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003615
Devang Patel11cf3f42009-10-27 22:16:29 +00003616BitCastInst *BitCastInst::clone_impl() const {
3617 return new BitCastInst(getOperand(0), getType());
Gabor Greif697e94c2008-05-15 10:04:30 +00003618}
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003619
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00003620AddrSpaceCastInst *AddrSpaceCastInst::clone_impl() const {
3621 return new AddrSpaceCastInst(getOperand(0), getType());
3622}
3623
Devang Patel11cf3f42009-10-27 22:16:29 +00003624CallInst *CallInst::clone_impl() const {
3625 return new(getNumOperands()) CallInst(*this);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003626}
3627
Devang Patel11cf3f42009-10-27 22:16:29 +00003628SelectInst *SelectInst::clone_impl() const {
3629 return SelectInst::Create(getOperand(0), getOperand(1), getOperand(2));
Chris Lattnerbbe0a422006-04-08 01:18:18 +00003630}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003631
Devang Patel11cf3f42009-10-27 22:16:29 +00003632VAArgInst *VAArgInst::clone_impl() const {
3633 return new VAArgInst(getOperand(0), getType());
Chris Lattnerbbe0a422006-04-08 01:18:18 +00003634}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003635
Devang Patel11cf3f42009-10-27 22:16:29 +00003636ExtractElementInst *ExtractElementInst::clone_impl() const {
3637 return ExtractElementInst::Create(getOperand(0), getOperand(1));
Chris Lattnerbbe0a422006-04-08 01:18:18 +00003638}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003639
Devang Patel11cf3f42009-10-27 22:16:29 +00003640InsertElementInst *InsertElementInst::clone_impl() const {
Chris Lattner1dcb6542012-01-25 23:49:49 +00003641 return InsertElementInst::Create(getOperand(0), getOperand(1), getOperand(2));
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003642}
3643
Devang Patel11cf3f42009-10-27 22:16:29 +00003644ShuffleVectorInst *ShuffleVectorInst::clone_impl() const {
Chris Lattner1dcb6542012-01-25 23:49:49 +00003645 return new ShuffleVectorInst(getOperand(0), getOperand(1), getOperand(2));
Gabor Greif697e94c2008-05-15 10:04:30 +00003646}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003647
Devang Patel11cf3f42009-10-27 22:16:29 +00003648PHINode *PHINode::clone_impl() const {
3649 return new PHINode(*this);
3650}
3651
Bill Wendlingfae14752011-08-12 20:24:12 +00003652LandingPadInst *LandingPadInst::clone_impl() const {
3653 return new LandingPadInst(*this);
3654}
3655
Devang Patel11cf3f42009-10-27 22:16:29 +00003656ReturnInst *ReturnInst::clone_impl() const {
3657 return new(getNumOperands()) ReturnInst(*this);
3658}
3659
3660BranchInst *BranchInst::clone_impl() const {
Jay Foadd81f3c92011-01-07 20:29:02 +00003661 return new(getNumOperands()) BranchInst(*this);
Gabor Greif697e94c2008-05-15 10:04:30 +00003662}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003663
Devang Patel11cf3f42009-10-27 22:16:29 +00003664SwitchInst *SwitchInst::clone_impl() const {
3665 return new SwitchInst(*this);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003666}
3667
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003668IndirectBrInst *IndirectBrInst::clone_impl() const {
3669 return new IndirectBrInst(*this);
Chris Lattner3ed871f2009-10-27 19:13:16 +00003670}
3671
3672
Devang Patel11cf3f42009-10-27 22:16:29 +00003673InvokeInst *InvokeInst::clone_impl() const {
3674 return new(getNumOperands()) InvokeInst(*this);
Gabor Greif697e94c2008-05-15 10:04:30 +00003675}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003676
Bill Wendlingf891bf82011-07-31 06:30:59 +00003677ResumeInst *ResumeInst::clone_impl() const {
3678 return new(1) ResumeInst(*this);
3679}
3680
Devang Patel11cf3f42009-10-27 22:16:29 +00003681UnreachableInst *UnreachableInst::clone_impl() const {
Nick Lewycky42fb7452009-09-27 07:38:41 +00003682 LLVMContext &Context = getContext();
Devang Patel11cf3f42009-10-27 22:16:29 +00003683 return new UnreachableInst(Context);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003684}