blob: aa878ea436e4c24b94f1aa7430407351a908952c [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 Carruth219b89b2014-03-04 11:01:28 +000017#include "llvm/IR/CallSite.h"
Chandler Carruth8cd041e2014-03-04 12:24:34 +000018#include "llvm/IR/ConstantRange.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000019#include "llvm/IR/Constants.h"
20#include "llvm/IR/DataLayout.h"
21#include "llvm/IR/DerivedTypes.h"
22#include "llvm/IR/Function.h"
23#include "llvm/IR/Module.h"
24#include "llvm/IR/Operator.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());
Craig Topperc6207612014-04-09 06:08:46 +000071 if (!ET)
Chris Lattner88107952008-12-29 00:12:50 +000072 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 }
Craig Topperc6207612014-04-09 06:08:46 +000079 return nullptr;
Chris Lattner88107952008-12-29 00:12:50 +000080}
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.
Craig Topperc6207612014-04-09 06:08:46 +0000126 Op<-1>().set(nullptr);
Jay Foad61ea0e42011-06-23 09:09:15 +0000127 --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)
Craig Topperc6207612014-04-09 06:08:46 +0000167 return nullptr; // Incoming values not all the same.
Nuno Lopes90c76df2012-07-03 17:10:28 +0000168 // 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)
Craig Topperc6207612014-04-09 06:08:46 +0000183 : Instruction(RetTy, Instruction::LandingPad, nullptr, 0, InsertBefore) {
Bill Wendlingfae14752011-08-12 20:24:12 +0000184 init(PersonalityFn, 1 + NumReservedValues, NameStr);
185}
186
187LandingPadInst::LandingPadInst(Type *RetTy, Value *PersonalityFn,
188 unsigned NumReservedValues, const Twine &NameStr,
189 BasicBlock *InsertAtEnd)
Craig Topperc6207612014-04-09 06:08:46 +0000190 : Instruction(RetTy, Instruction::LandingPad, nullptr, 0, InsertAtEnd) {
Bill Wendlingfae14752011-08-12 20:24:12 +0000191 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
Rafael Espindola4dc5dfc2014-06-04 18:51:31 +0000251void LandingPadInst::addClause(Constant *Val) {
Bill Wendlingfae14752011-08-12 20:24:12 +0000252 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
David Blaikie348de692015-04-23 21:36:23 +0000266void CallInst::init(FunctionType *FTy, Value *Func, ArrayRef<Value *> Args,
267 const Twine &NameStr) {
268 this->FTy = FTy;
Jay Foad5bd375a2011-07-15 08:37:34 +0000269 assert(NumOperands == Args.size() + 1 && "NumOperands not set up?");
Gabor Greif6d673952010-07-16 09:38:02 +0000270 Op<-1>() = Func;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000271
Jay Foad5bd375a2011-07-15 08:37:34 +0000272#ifndef NDEBUG
Jay Foad5bd375a2011-07-15 08:37:34 +0000273 assert((Args.size() == FTy->getNumParams() ||
274 (FTy->isVarArg() && Args.size() > FTy->getNumParams())) &&
Chris Lattner667a0562006-05-03 00:48:22 +0000275 "Calling a function with bad signature!");
Jay Foad5bd375a2011-07-15 08:37:34 +0000276
277 for (unsigned i = 0; i != Args.size(); ++i)
Chris Lattner667a0562006-05-03 00:48:22 +0000278 assert((i >= FTy->getNumParams() ||
Jay Foad5bd375a2011-07-15 08:37:34 +0000279 FTy->getParamType(i) == Args[i]->getType()) &&
Chris Lattner667a0562006-05-03 00:48:22 +0000280 "Calling a function with a bad signature!");
Jay Foad5bd375a2011-07-15 08:37:34 +0000281#endif
282
283 std::copy(Args.begin(), Args.end(), op_begin());
284 setName(NameStr);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000285}
286
Jay Foad5bd375a2011-07-15 08:37:34 +0000287void CallInst::init(Value *Func, const Twine &NameStr) {
David Blaikie348de692015-04-23 21:36:23 +0000288 FTy =
289 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
Gabor Greiff6caff662008-05-10 08:32:32 +0000290 assert(NumOperands == 1 && "NumOperands not set up?");
Gabor Greif6d673952010-07-16 09:38:02 +0000291 Op<-1>() = Func;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000292
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000293 assert(FTy->getNumParams() == 0 && "Calling a function with bad signature");
Jay Foad5bd375a2011-07-15 08:37:34 +0000294
295 setName(NameStr);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000296}
297
Daniel Dunbar4975db62009-07-25 04:41:11 +0000298CallInst::CallInst(Value *Func, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000299 Instruction *InsertBefore)
300 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
301 ->getElementType())->getReturnType(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000302 Instruction::Call,
303 OperandTraits<CallInst>::op_end(this) - 1,
304 1, InsertBefore) {
Jay Foad5bd375a2011-07-15 08:37:34 +0000305 init(Func, Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000306}
307
Daniel Dunbar4975db62009-07-25 04:41:11 +0000308CallInst::CallInst(Value *Func, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000309 BasicBlock *InsertAtEnd)
310 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
311 ->getElementType())->getReturnType(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000312 Instruction::Call,
313 OperandTraits<CallInst>::op_end(this) - 1,
314 1, InsertAtEnd) {
Jay Foad5bd375a2011-07-15 08:37:34 +0000315 init(Func, Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000316}
317
Misha Brukmanb1c93172005-04-21 23:48:37 +0000318CallInst::CallInst(const CallInst &CI)
David Blaikie348de692015-04-23 21:36:23 +0000319 : Instruction(CI.getType(), Instruction::Call,
320 OperandTraits<CallInst>::op_end(this) - CI.getNumOperands(),
321 CI.getNumOperands()),
322 AttributeList(CI.AttributeList), FTy(CI.FTy) {
Reid Kleckner118e1bf2014-05-06 20:08:20 +0000323 setTailCallKind(CI.getTailCallKind());
Chris Lattnerb9c86512009-12-29 02:14:09 +0000324 setCallingConv(CI.getCallingConv());
325
Jay Foad5bd375a2011-07-15 08:37:34 +0000326 std::copy(CI.op_begin(), CI.op_end(), op_begin());
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000327 SubclassOptionalData = CI.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000328}
329
Peter Collingbourne1b97a9c2013-03-02 01:20:18 +0000330void CallInst::addAttribute(unsigned i, Attribute::AttrKind attr) {
Bill Wendlinge94d8432012-12-07 23:16:57 +0000331 AttributeSet PAL = getAttributes();
Peter Collingbourne1b97a9c2013-03-02 01:20:18 +0000332 PAL = PAL.addAttribute(getContext(), i, attr);
Devang Patel4c758ea2008-09-25 21:00:45 +0000333 setAttributes(PAL);
Eric Christopher901b1a72008-05-16 20:39:43 +0000334}
335
Bill Wendling3d7b0b82012-12-19 07:18:57 +0000336void CallInst::removeAttribute(unsigned i, Attribute attr) {
Bill Wendlinge94d8432012-12-07 23:16:57 +0000337 AttributeSet PAL = getAttributes();
Bill Wendling430fa9b2013-01-23 00:45:55 +0000338 AttrBuilder B(attr);
339 LLVMContext &Context = getContext();
340 PAL = PAL.removeAttributes(Context, i,
341 AttributeSet::get(Context, i, B));
Devang Patel4c758ea2008-09-25 21:00:45 +0000342 setAttributes(PAL);
Duncan Sands78c88722008-07-08 08:38:44 +0000343}
344
Ramkumar Ramachandra8fcb4982015-02-14 19:37:54 +0000345void CallInst::addDereferenceableAttr(unsigned i, uint64_t Bytes) {
346 AttributeSet PAL = getAttributes();
347 PAL = PAL.addDereferenceableAttr(getContext(), i, Bytes);
348 setAttributes(PAL);
349}
350
Sanjoy Das31ea6d12015-04-16 20:29:50 +0000351void CallInst::addDereferenceableOrNullAttr(unsigned i, uint64_t Bytes) {
352 AttributeSet PAL = getAttributes();
353 PAL = PAL.addDereferenceableOrNullAttr(getContext(), i, Bytes);
354 setAttributes(PAL);
355}
356
Michael Gottesman41748d72013-06-27 00:25:01 +0000357bool CallInst::hasFnAttrImpl(Attribute::AttrKind A) const {
Bill Wendling749a43d2012-12-30 13:50:49 +0000358 if (AttributeList.hasAttribute(AttributeSet::FunctionIndex, A))
Bill Wendling375eb1f2012-10-09 00:28:54 +0000359 return true;
360 if (const Function *F = getCalledFunction())
Bill Wendling94dcaf82012-12-30 12:45:13 +0000361 return F->getAttributes().hasAttribute(AttributeSet::FunctionIndex, A);
Bill Wendling375eb1f2012-10-09 00:28:54 +0000362 return false;
363}
364
Bill Wendlingc79e42c2012-12-22 00:37:52 +0000365bool CallInst::paramHasAttr(unsigned i, Attribute::AttrKind A) const {
Bill Wendling749a43d2012-12-30 13:50:49 +0000366 if (AttributeList.hasAttribute(i, A))
Bill Wendling8baa61d2012-10-03 17:54:26 +0000367 return true;
368 if (const Function *F = getCalledFunction())
Bill Wendling94dcaf82012-12-30 12:45:13 +0000369 return F->getAttributes().hasAttribute(i, A);
Bill Wendlingdaf8e382012-10-04 07:18:12 +0000370 return false;
371}
372
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000373/// IsConstantOne - Return true only if val is constant int 1
374static bool IsConstantOne(Value *val) {
Reid Kleckner971c3ea2014-11-13 22:55:19 +0000375 assert(val && "IsConstantOne does not work with nullptr val");
Matt Arsenault69417852014-09-15 17:56:51 +0000376 const ConstantInt *CVal = dyn_cast<ConstantInt>(val);
377 return CVal && CVal->isOne();
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000378}
379
Nick Lewyckybb1410e2009-10-17 23:52:26 +0000380static Instruction *createMalloc(Instruction *InsertBefore,
Chris Lattner229907c2011-07-18 04:54:35 +0000381 BasicBlock *InsertAtEnd, Type *IntPtrTy,
382 Type *AllocTy, Value *AllocSize,
Victor Hernandezf3db9152009-11-07 00:16:28 +0000383 Value *ArraySize, Function *MallocF,
384 const Twine &Name) {
Benjamin Kramer4bf4e862009-09-10 11:31:39 +0000385 assert(((!InsertBefore && InsertAtEnd) || (InsertBefore && !InsertAtEnd)) &&
Victor Hernandez788eaab2009-09-18 19:20:02 +0000386 "createMalloc needs either InsertBefore or InsertAtEnd");
387
388 // malloc(type) becomes:
389 // bitcast (i8* malloc(typeSize)) to type*
390 // malloc(type, arraySize) becomes:
391 // bitcast (i8 *malloc(typeSize*arraySize)) to type*
Victor Hernandezf3db9152009-11-07 00:16:28 +0000392 if (!ArraySize)
393 ArraySize = ConstantInt::get(IntPtrTy, 1);
394 else if (ArraySize->getType() != IntPtrTy) {
395 if (InsertBefore)
Victor Hernandeze04ed0c2009-11-07 00:36:50 +0000396 ArraySize = CastInst::CreateIntegerCast(ArraySize, IntPtrTy, false,
397 "", InsertBefore);
Victor Hernandezf3db9152009-11-07 00:16:28 +0000398 else
Victor Hernandeze04ed0c2009-11-07 00:36:50 +0000399 ArraySize = CastInst::CreateIntegerCast(ArraySize, IntPtrTy, false,
400 "", InsertAtEnd);
Victor Hernandezf3db9152009-11-07 00:16:28 +0000401 }
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000402
Benjamin Kramer4bf4e862009-09-10 11:31:39 +0000403 if (!IsConstantOne(ArraySize)) {
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000404 if (IsConstantOne(AllocSize)) {
405 AllocSize = ArraySize; // Operand * 1 = Operand
406 } else if (Constant *CO = dyn_cast<Constant>(ArraySize)) {
407 Constant *Scale = ConstantExpr::getIntegerCast(CO, IntPtrTy,
408 false /*ZExt*/);
409 // Malloc arg is constant product of type size and array size
410 AllocSize = ConstantExpr::getMul(Scale, cast<Constant>(AllocSize));
411 } else {
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000412 // Multiply type size by the array size...
413 if (InsertBefore)
Victor Hernandez788eaab2009-09-18 19:20:02 +0000414 AllocSize = BinaryOperator::CreateMul(ArraySize, AllocSize,
415 "mallocsize", InsertBefore);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000416 else
Victor Hernandez788eaab2009-09-18 19:20:02 +0000417 AllocSize = BinaryOperator::CreateMul(ArraySize, AllocSize,
418 "mallocsize", InsertAtEnd);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000419 }
Benjamin Kramer4bf4e862009-09-10 11:31:39 +0000420 }
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000421
Victor Hernandez788eaab2009-09-18 19:20:02 +0000422 assert(AllocSize->getType() == IntPtrTy && "malloc arg is wrong size");
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000423 // Create the call to Malloc.
424 BasicBlock* BB = InsertBefore ? InsertBefore->getParent() : InsertAtEnd;
425 Module* M = BB->getParent()->getParent();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000426 Type *BPTy = Type::getInt8PtrTy(BB->getContext());
Victor Hernandezbb336a12009-11-10 19:53:28 +0000427 Value *MallocFunc = MallocF;
428 if (!MallocFunc)
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000429 // prototype malloc as "void *malloc(size_t)"
Reid Kleckner971c3ea2014-11-13 22:55:19 +0000430 MallocFunc = M->getOrInsertFunction("malloc", BPTy, IntPtrTy, nullptr);
Chris Lattner229907c2011-07-18 04:54:35 +0000431 PointerType *AllocPtrType = PointerType::getUnqual(AllocTy);
Craig Topperc6207612014-04-09 06:08:46 +0000432 CallInst *MCall = nullptr;
433 Instruction *Result = nullptr;
Victor Hernandez788eaab2009-09-18 19:20:02 +0000434 if (InsertBefore) {
Victor Hernandezbb336a12009-11-10 19:53:28 +0000435 MCall = CallInst::Create(MallocFunc, AllocSize, "malloccall", InsertBefore);
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000436 Result = MCall;
437 if (Result->getType() != AllocPtrType)
438 // Create a cast instruction to convert to the right type...
Victor Hernandezf3db9152009-11-07 00:16:28 +0000439 Result = new BitCastInst(MCall, AllocPtrType, Name, InsertBefore);
Victor Hernandez788eaab2009-09-18 19:20:02 +0000440 } else {
Victor Hernandezbb336a12009-11-10 19:53:28 +0000441 MCall = CallInst::Create(MallocFunc, AllocSize, "malloccall");
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000442 Result = MCall;
443 if (Result->getType() != AllocPtrType) {
444 InsertAtEnd->getInstList().push_back(MCall);
445 // Create a cast instruction to convert to the right type...
Victor Hernandezf3db9152009-11-07 00:16:28 +0000446 Result = new BitCastInst(MCall, AllocPtrType, Name);
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000447 }
Victor Hernandez788eaab2009-09-18 19:20:02 +0000448 }
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000449 MCall->setTailCall();
Victor Hernandezbb336a12009-11-10 19:53:28 +0000450 if (Function *F = dyn_cast<Function>(MallocFunc)) {
451 MCall->setCallingConv(F->getCallingConv());
452 if (!F->doesNotAlias(0)) F->setDoesNotAlias(0);
453 }
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000454 assert(!MCall->getType()->isVoidTy() && "Malloc has void return type");
Victor Hernandez788eaab2009-09-18 19:20:02 +0000455
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000456 return Result;
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000457}
458
459/// CreateMalloc - Generate the IR for a call to malloc:
460/// 1. Compute the malloc call's argument as the specified type's size,
461/// possibly multiplied by the array size if the array size is not
462/// constant 1.
463/// 2. Call malloc with that argument.
464/// 3. Bitcast the result of the malloc call to the specified type.
Nick Lewyckybb1410e2009-10-17 23:52:26 +0000465Instruction *CallInst::CreateMalloc(Instruction *InsertBefore,
Chris Lattner229907c2011-07-18 04:54:35 +0000466 Type *IntPtrTy, Type *AllocTy,
Victor Hernandezf3db9152009-11-07 00:16:28 +0000467 Value *AllocSize, Value *ArraySize,
Duncan Sands41b4a6b2010-07-12 08:16:59 +0000468 Function * MallocF,
Victor Hernandezf3db9152009-11-07 00:16:28 +0000469 const Twine &Name) {
Craig Topperc6207612014-04-09 06:08:46 +0000470 return createMalloc(InsertBefore, nullptr, IntPtrTy, AllocTy, AllocSize,
Chris Lattner601e390a2010-07-12 00:57:28 +0000471 ArraySize, MallocF, Name);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000472}
473
474/// CreateMalloc - Generate the IR for a call to malloc:
475/// 1. Compute the malloc call's argument as the specified type's size,
476/// possibly multiplied by the array size if the array size is not
477/// constant 1.
478/// 2. Call malloc with that argument.
479/// 3. Bitcast the result of the malloc call to the specified type.
480/// Note: This function does not add the bitcast to the basic block, that is the
481/// responsibility of the caller.
Nick Lewyckybb1410e2009-10-17 23:52:26 +0000482Instruction *CallInst::CreateMalloc(BasicBlock *InsertAtEnd,
Chris Lattner229907c2011-07-18 04:54:35 +0000483 Type *IntPtrTy, Type *AllocTy,
Victor Hernandezf3db9152009-11-07 00:16:28 +0000484 Value *AllocSize, Value *ArraySize,
485 Function *MallocF, const Twine &Name) {
Craig Topperc6207612014-04-09 06:08:46 +0000486 return createMalloc(nullptr, InsertAtEnd, IntPtrTy, AllocTy, AllocSize,
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000487 ArraySize, MallocF, Name);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000488}
Duncan Sands5208d1a2007-11-28 17:07:01 +0000489
Victor Hernandeze2971492009-10-24 04:23:03 +0000490static Instruction* createFree(Value* Source, Instruction *InsertBefore,
491 BasicBlock *InsertAtEnd) {
492 assert(((!InsertBefore && InsertAtEnd) || (InsertBefore && !InsertAtEnd)) &&
493 "createFree needs either InsertBefore or InsertAtEnd");
Duncan Sands19d0b472010-02-16 11:11:14 +0000494 assert(Source->getType()->isPointerTy() &&
Victor Hernandeze2971492009-10-24 04:23:03 +0000495 "Can not free something of nonpointer type!");
496
497 BasicBlock* BB = InsertBefore ? InsertBefore->getParent() : InsertAtEnd;
498 Module* M = BB->getParent()->getParent();
499
Chris Lattner229907c2011-07-18 04:54:35 +0000500 Type *VoidTy = Type::getVoidTy(M->getContext());
501 Type *IntPtrTy = Type::getInt8PtrTy(M->getContext());
Victor Hernandeze2971492009-10-24 04:23:03 +0000502 // prototype free as "void free(void*)"
Reid Kleckner971c3ea2014-11-13 22:55:19 +0000503 Value *FreeFunc = M->getOrInsertFunction("free", VoidTy, IntPtrTy, nullptr);
Craig Topperc6207612014-04-09 06:08:46 +0000504 CallInst* Result = nullptr;
Victor Hernandeze2971492009-10-24 04:23:03 +0000505 Value *PtrCast = Source;
506 if (InsertBefore) {
507 if (Source->getType() != IntPtrTy)
508 PtrCast = new BitCastInst(Source, IntPtrTy, "", InsertBefore);
509 Result = CallInst::Create(FreeFunc, PtrCast, "", InsertBefore);
510 } else {
511 if (Source->getType() != IntPtrTy)
512 PtrCast = new BitCastInst(Source, IntPtrTy, "", InsertAtEnd);
513 Result = CallInst::Create(FreeFunc, PtrCast, "");
514 }
515 Result->setTailCall();
Chris Lattner2156c222009-11-09 07:12:01 +0000516 if (Function *F = dyn_cast<Function>(FreeFunc))
517 Result->setCallingConv(F->getCallingConv());
Victor Hernandeze2971492009-10-24 04:23:03 +0000518
519 return Result;
520}
521
522/// CreateFree - Generate the IR for a call to the builtin free function.
Chris Lattner601e390a2010-07-12 00:57:28 +0000523Instruction * CallInst::CreateFree(Value* Source, Instruction *InsertBefore) {
Craig Topperc6207612014-04-09 06:08:46 +0000524 return createFree(Source, InsertBefore, nullptr);
Victor Hernandeze2971492009-10-24 04:23:03 +0000525}
526
527/// CreateFree - Generate the IR for a call to the builtin free function.
528/// Note: This function does not add the call to the basic block, that is the
529/// responsibility of the caller.
530Instruction* CallInst::CreateFree(Value* Source, BasicBlock *InsertAtEnd) {
Craig Topperc6207612014-04-09 06:08:46 +0000531 Instruction* FreeCall = createFree(Source, nullptr, InsertAtEnd);
Victor Hernandeze2971492009-10-24 04:23:03 +0000532 assert(FreeCall && "CreateFree did not create a CallInst");
533 return FreeCall;
534}
535
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000536//===----------------------------------------------------------------------===//
537// InvokeInst Implementation
538//===----------------------------------------------------------------------===//
539
540void InvokeInst::init(Value *Fn, BasicBlock *IfNormal, BasicBlock *IfException,
Jay Foad5bd375a2011-07-15 08:37:34 +0000541 ArrayRef<Value *> Args, const Twine &NameStr) {
David Blaikie348de692015-04-23 21:36:23 +0000542 FTy = cast<FunctionType>(cast<PointerType>(Fn->getType())->getElementType());
543
Jay Foad5bd375a2011-07-15 08:37:34 +0000544 assert(NumOperands == 3 + Args.size() && "NumOperands not set up?");
Gabor Greifa2fbc0a2010-03-24 13:21:49 +0000545 Op<-3>() = Fn;
546 Op<-2>() = IfNormal;
547 Op<-1>() = IfException;
Jay Foad5bd375a2011-07-15 08:37:34 +0000548
549#ifndef NDEBUG
Jay Foad5bd375a2011-07-15 08:37:34 +0000550 assert(((Args.size() == FTy->getNumParams()) ||
551 (FTy->isVarArg() && Args.size() > FTy->getNumParams())) &&
Gabor Greif668d7002010-03-23 13:45:54 +0000552 "Invoking a function with bad signature");
Misha Brukmanb1c93172005-04-21 23:48:37 +0000553
Jay Foad5bd375a2011-07-15 08:37:34 +0000554 for (unsigned i = 0, e = Args.size(); i != e; i++)
Chris Lattner667a0562006-05-03 00:48:22 +0000555 assert((i >= FTy->getNumParams() ||
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000556 FTy->getParamType(i) == Args[i]->getType()) &&
Chris Lattner667a0562006-05-03 00:48:22 +0000557 "Invoking a function with a bad signature!");
Jay Foad5bd375a2011-07-15 08:37:34 +0000558#endif
559
560 std::copy(Args.begin(), Args.end(), op_begin());
561 setName(NameStr);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000562}
563
Misha Brukmanb1c93172005-04-21 23:48:37 +0000564InvokeInst::InvokeInst(const InvokeInst &II)
David Blaikie348de692015-04-23 21:36:23 +0000565 : TerminatorInst(II.getType(), Instruction::Invoke,
566 OperandTraits<InvokeInst>::op_end(this) -
567 II.getNumOperands(),
568 II.getNumOperands()),
569 AttributeList(II.AttributeList), FTy(II.FTy) {
Chris Lattnerb9c86512009-12-29 02:14:09 +0000570 setCallingConv(II.getCallingConv());
Jay Foad5bd375a2011-07-15 08:37:34 +0000571 std::copy(II.op_begin(), II.op_end(), op_begin());
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000572 SubclassOptionalData = II.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000573}
574
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000575BasicBlock *InvokeInst::getSuccessorV(unsigned idx) const {
576 return getSuccessor(idx);
577}
578unsigned InvokeInst::getNumSuccessorsV() const {
579 return getNumSuccessors();
580}
581void InvokeInst::setSuccessorV(unsigned idx, BasicBlock *B) {
582 return setSuccessor(idx, B);
583}
584
Michael Gottesman41748d72013-06-27 00:25:01 +0000585bool InvokeInst::hasFnAttrImpl(Attribute::AttrKind A) const {
Bill Wendling749a43d2012-12-30 13:50:49 +0000586 if (AttributeList.hasAttribute(AttributeSet::FunctionIndex, A))
Bill Wendling375eb1f2012-10-09 00:28:54 +0000587 return true;
588 if (const Function *F = getCalledFunction())
Bill Wendling94dcaf82012-12-30 12:45:13 +0000589 return F->getAttributes().hasAttribute(AttributeSet::FunctionIndex, A);
Bill Wendling375eb1f2012-10-09 00:28:54 +0000590 return false;
591}
592
Bill Wendlingc79e42c2012-12-22 00:37:52 +0000593bool InvokeInst::paramHasAttr(unsigned i, Attribute::AttrKind A) const {
Bill Wendling749a43d2012-12-30 13:50:49 +0000594 if (AttributeList.hasAttribute(i, A))
Bill Wendling8baa61d2012-10-03 17:54:26 +0000595 return true;
596 if (const Function *F = getCalledFunction())
Bill Wendling94dcaf82012-12-30 12:45:13 +0000597 return F->getAttributes().hasAttribute(i, A);
Bill Wendlingdaf8e382012-10-04 07:18:12 +0000598 return false;
599}
600
Peter Collingbourne1b97a9c2013-03-02 01:20:18 +0000601void InvokeInst::addAttribute(unsigned i, Attribute::AttrKind attr) {
Bill Wendlinge94d8432012-12-07 23:16:57 +0000602 AttributeSet PAL = getAttributes();
Peter Collingbourne1b97a9c2013-03-02 01:20:18 +0000603 PAL = PAL.addAttribute(getContext(), i, attr);
Devang Patel4c758ea2008-09-25 21:00:45 +0000604 setAttributes(PAL);
Eric Christopher901b1a72008-05-16 20:39:43 +0000605}
606
Bill Wendling3d7b0b82012-12-19 07:18:57 +0000607void InvokeInst::removeAttribute(unsigned i, Attribute attr) {
Bill Wendlinge94d8432012-12-07 23:16:57 +0000608 AttributeSet PAL = getAttributes();
Bill Wendling430fa9b2013-01-23 00:45:55 +0000609 AttrBuilder B(attr);
610 PAL = PAL.removeAttributes(getContext(), i,
611 AttributeSet::get(getContext(), i, B));
Devang Patel4c758ea2008-09-25 21:00:45 +0000612 setAttributes(PAL);
Duncan Sandsaa31b922007-12-19 21:13:37 +0000613}
614
Ramkumar Ramachandra8fcb4982015-02-14 19:37:54 +0000615void InvokeInst::addDereferenceableAttr(unsigned i, uint64_t Bytes) {
616 AttributeSet PAL = getAttributes();
617 PAL = PAL.addDereferenceableAttr(getContext(), i, Bytes);
618 setAttributes(PAL);
619}
620
Sanjoy Das31ea6d12015-04-16 20:29:50 +0000621void InvokeInst::addDereferenceableOrNullAttr(unsigned i, uint64_t Bytes) {
622 AttributeSet PAL = getAttributes();
623 PAL = PAL.addDereferenceableOrNullAttr(getContext(), i, Bytes);
624 setAttributes(PAL);
625}
626
Bill Wendlingfae14752011-08-12 20:24:12 +0000627LandingPadInst *InvokeInst::getLandingPadInst() const {
628 return cast<LandingPadInst>(getUnwindDest()->getFirstNonPHI());
629}
Duncan Sands5208d1a2007-11-28 17:07:01 +0000630
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000631//===----------------------------------------------------------------------===//
632// ReturnInst Implementation
633//===----------------------------------------------------------------------===//
634
Chris Lattner2195fc42007-02-24 00:55:48 +0000635ReturnInst::ReturnInst(const ReturnInst &RI)
Owen Anderson55f1c092009-08-13 21:58:54 +0000636 : TerminatorInst(Type::getVoidTy(RI.getContext()), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000637 OperandTraits<ReturnInst>::op_end(this) -
638 RI.getNumOperands(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000639 RI.getNumOperands()) {
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000640 if (RI.getNumOperands())
Gabor Greif2d3024d2008-05-26 21:33:52 +0000641 Op<0>() = RI.Op<0>();
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000642 SubclassOptionalData = RI.SubclassOptionalData;
Chris Lattner2195fc42007-02-24 00:55:48 +0000643}
644
Owen Anderson55f1c092009-08-13 21:58:54 +0000645ReturnInst::ReturnInst(LLVMContext &C, Value *retVal, Instruction *InsertBefore)
646 : TerminatorInst(Type::getVoidTy(C), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000647 OperandTraits<ReturnInst>::op_end(this) - !!retVal, !!retVal,
648 InsertBefore) {
Devang Patelc38eb522008-02-26 18:49:29 +0000649 if (retVal)
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000650 Op<0>() = retVal;
Chris Lattner2195fc42007-02-24 00:55:48 +0000651}
Owen Anderson55f1c092009-08-13 21:58:54 +0000652ReturnInst::ReturnInst(LLVMContext &C, Value *retVal, BasicBlock *InsertAtEnd)
653 : TerminatorInst(Type::getVoidTy(C), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000654 OperandTraits<ReturnInst>::op_end(this) - !!retVal, !!retVal,
655 InsertAtEnd) {
Devang Patelc38eb522008-02-26 18:49:29 +0000656 if (retVal)
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000657 Op<0>() = retVal;
Chris Lattner2195fc42007-02-24 00:55:48 +0000658}
Owen Anderson55f1c092009-08-13 21:58:54 +0000659ReturnInst::ReturnInst(LLVMContext &Context, BasicBlock *InsertAtEnd)
660 : TerminatorInst(Type::getVoidTy(Context), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000661 OperandTraits<ReturnInst>::op_end(this), 0, InsertAtEnd) {
Devang Patel59643e52008-02-23 00:35:18 +0000662}
663
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000664unsigned ReturnInst::getNumSuccessorsV() const {
665 return getNumSuccessors();
666}
667
Devang Patelae682fb2008-02-26 17:56:20 +0000668/// Out-of-line ReturnInst method, put here so the C++ compiler can choose to
669/// emit the vtable for the class in this translation unit.
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000670void ReturnInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000671 llvm_unreachable("ReturnInst has no successors!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000672}
673
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000674BasicBlock *ReturnInst::getSuccessorV(unsigned idx) const {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000675 llvm_unreachable("ReturnInst has no successors!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000676}
677
Devang Patel59643e52008-02-23 00:35:18 +0000678ReturnInst::~ReturnInst() {
Devang Patel59643e52008-02-23 00:35:18 +0000679}
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000680
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000681//===----------------------------------------------------------------------===//
Bill Wendlingf891bf82011-07-31 06:30:59 +0000682// ResumeInst Implementation
683//===----------------------------------------------------------------------===//
684
685ResumeInst::ResumeInst(const ResumeInst &RI)
686 : TerminatorInst(Type::getVoidTy(RI.getContext()), Instruction::Resume,
687 OperandTraits<ResumeInst>::op_begin(this), 1) {
688 Op<0>() = RI.Op<0>();
689}
690
691ResumeInst::ResumeInst(Value *Exn, Instruction *InsertBefore)
692 : TerminatorInst(Type::getVoidTy(Exn->getContext()), Instruction::Resume,
693 OperandTraits<ResumeInst>::op_begin(this), 1, InsertBefore) {
694 Op<0>() = Exn;
695}
696
697ResumeInst::ResumeInst(Value *Exn, BasicBlock *InsertAtEnd)
698 : TerminatorInst(Type::getVoidTy(Exn->getContext()), Instruction::Resume,
699 OperandTraits<ResumeInst>::op_begin(this), 1, InsertAtEnd) {
700 Op<0>() = Exn;
701}
702
703unsigned ResumeInst::getNumSuccessorsV() const {
704 return getNumSuccessors();
705}
706
707void ResumeInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
708 llvm_unreachable("ResumeInst has no successors!");
709}
710
711BasicBlock *ResumeInst::getSuccessorV(unsigned idx) const {
712 llvm_unreachable("ResumeInst has no successors!");
Bill Wendlingf891bf82011-07-31 06:30:59 +0000713}
714
715//===----------------------------------------------------------------------===//
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000716// UnreachableInst Implementation
717//===----------------------------------------------------------------------===//
718
Owen Anderson55f1c092009-08-13 21:58:54 +0000719UnreachableInst::UnreachableInst(LLVMContext &Context,
720 Instruction *InsertBefore)
721 : TerminatorInst(Type::getVoidTy(Context), Instruction::Unreachable,
Craig Topperc6207612014-04-09 06:08:46 +0000722 nullptr, 0, InsertBefore) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000723}
Owen Anderson55f1c092009-08-13 21:58:54 +0000724UnreachableInst::UnreachableInst(LLVMContext &Context, BasicBlock *InsertAtEnd)
725 : TerminatorInst(Type::getVoidTy(Context), Instruction::Unreachable,
Craig Topperc6207612014-04-09 06:08:46 +0000726 nullptr, 0, InsertAtEnd) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000727}
728
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000729unsigned UnreachableInst::getNumSuccessorsV() const {
730 return getNumSuccessors();
731}
732
733void UnreachableInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
Bill Wendling0aef16a2012-02-06 21:44:22 +0000734 llvm_unreachable("UnreachableInst has no successors!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000735}
736
737BasicBlock *UnreachableInst::getSuccessorV(unsigned idx) const {
Bill Wendling0aef16a2012-02-06 21:44:22 +0000738 llvm_unreachable("UnreachableInst has no successors!");
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000739}
740
741//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000742// BranchInst Implementation
743//===----------------------------------------------------------------------===//
744
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000745void BranchInst::AssertOK() {
746 if (isConditional())
Duncan Sands9dff9be2010-02-15 16:12:20 +0000747 assert(getCondition()->getType()->isIntegerTy(1) &&
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000748 "May only branch on boolean predicates!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000749}
750
Chris Lattner2195fc42007-02-24 00:55:48 +0000751BranchInst::BranchInst(BasicBlock *IfTrue, Instruction *InsertBefore)
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, InsertBefore) {
Craig Topper2617dcc2014-04-15 06:32:26 +0000755 assert(IfTrue && "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}
758BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
759 Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +0000760 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000761 OperandTraits<BranchInst>::op_end(this) - 3,
762 3, InsertBefore) {
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000763 Op<-1>() = IfTrue;
764 Op<-2>() = IfFalse;
765 Op<-3>() = Cond;
Chris Lattner2195fc42007-02-24 00:55:48 +0000766#ifndef NDEBUG
767 AssertOK();
768#endif
769}
770
771BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +0000772 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000773 OperandTraits<BranchInst>::op_end(this) - 1,
774 1, InsertAtEnd) {
Craig Topper2617dcc2014-04-15 06:32:26 +0000775 assert(IfTrue && "Branch destination may not be null!");
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000776 Op<-1>() = IfTrue;
Chris Lattner2195fc42007-02-24 00:55:48 +0000777}
778
779BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
780 BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +0000781 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000782 OperandTraits<BranchInst>::op_end(this) - 3,
783 3, InsertAtEnd) {
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000784 Op<-1>() = IfTrue;
785 Op<-2>() = IfFalse;
786 Op<-3>() = Cond;
Chris Lattner2195fc42007-02-24 00:55:48 +0000787#ifndef NDEBUG
788 AssertOK();
789#endif
790}
791
792
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000793BranchInst::BranchInst(const BranchInst &BI) :
Owen Anderson55f1c092009-08-13 21:58:54 +0000794 TerminatorInst(Type::getVoidTy(BI.getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000795 OperandTraits<BranchInst>::op_end(this) - BI.getNumOperands(),
796 BI.getNumOperands()) {
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000797 Op<-1>() = BI.Op<-1>();
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000798 if (BI.getNumOperands() != 1) {
799 assert(BI.getNumOperands() == 3 && "BR can have 1 or 3 operands!");
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000800 Op<-3>() = BI.Op<-3>();
801 Op<-2>() = BI.Op<-2>();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000802 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000803 SubclassOptionalData = BI.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000804}
805
Chandler Carruth3e8aa652011-10-17 01:11:57 +0000806void BranchInst::swapSuccessors() {
807 assert(isConditional() &&
808 "Cannot swap successors of an unconditional branch");
809 Op<-1>().swap(Op<-2>());
810
811 // Update profile metadata if present and it matches our structural
812 // expectations.
Duncan P. N. Exon Smithde36e802014-11-11 21:30:22 +0000813 MDNode *ProfileData = getMetadata(LLVMContext::MD_prof);
Chandler Carruth3e8aa652011-10-17 01:11:57 +0000814 if (!ProfileData || ProfileData->getNumOperands() != 3)
815 return;
816
817 // The first operand is the name. Fetch them backwards and build a new one.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000818 Metadata *Ops[] = {ProfileData->getOperand(0), ProfileData->getOperand(2),
819 ProfileData->getOperand(1)};
Chandler Carruth3e8aa652011-10-17 01:11:57 +0000820 setMetadata(LLVMContext::MD_prof,
821 MDNode::get(ProfileData->getContext(), Ops));
822}
823
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000824BasicBlock *BranchInst::getSuccessorV(unsigned idx) const {
825 return getSuccessor(idx);
826}
827unsigned BranchInst::getNumSuccessorsV() const {
828 return getNumSuccessors();
829}
830void BranchInst::setSuccessorV(unsigned idx, BasicBlock *B) {
831 setSuccessor(idx, B);
832}
833
834
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000835//===----------------------------------------------------------------------===//
Victor Hernandez8acf2952009-10-23 21:09:37 +0000836// AllocaInst Implementation
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000837//===----------------------------------------------------------------------===//
838
Owen Andersonb6b25302009-07-14 23:09:55 +0000839static Value *getAISize(LLVMContext &Context, Value *Amt) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000840 if (!Amt)
Owen Anderson55f1c092009-08-13 21:58:54 +0000841 Amt = ConstantInt::get(Type::getInt32Ty(Context), 1);
Chris Lattnerbb7ff662006-05-10 04:32:43 +0000842 else {
843 assert(!isa<BasicBlock>(Amt) &&
Chris Lattner9b6ec772007-10-18 16:10:48 +0000844 "Passed basic block into allocation size parameter! Use other ctor");
Dan Gohman2140a742010-05-28 01:14:11 +0000845 assert(Amt->getType()->isIntegerTy() &&
846 "Allocation array size is not an integer!");
Chris Lattnerbb7ff662006-05-10 04:32:43 +0000847 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000848 return Amt;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000849}
850
Benjamin Kramerfc165f12015-03-05 22:05:26 +0000851AllocaInst::AllocaInst(Type *Ty, const Twine &Name, Instruction *InsertBefore)
852 : AllocaInst(Ty, /*ArraySize=*/nullptr, Name, InsertBefore) {}
Victor Hernandez8acf2952009-10-23 21:09:37 +0000853
Benjamin Kramerfc165f12015-03-05 22:05:26 +0000854AllocaInst::AllocaInst(Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd)
855 : AllocaInst(Ty, /*ArraySize=*/nullptr, Name, InsertAtEnd) {}
Victor Hernandez8acf2952009-10-23 21:09:37 +0000856
Benjamin Kramerfc165f12015-03-05 22:05:26 +0000857AllocaInst::AllocaInst(Type *Ty, Value *ArraySize, const Twine &Name,
Victor Hernandez8acf2952009-10-23 21:09:37 +0000858 Instruction *InsertBefore)
Benjamin Kramerfc165f12015-03-05 22:05:26 +0000859 : AllocaInst(Ty, ArraySize, /*Align=*/0, Name, InsertBefore) {}
Victor Hernandez8acf2952009-10-23 21:09:37 +0000860
Benjamin Kramerfc165f12015-03-05 22:05:26 +0000861AllocaInst::AllocaInst(Type *Ty, Value *ArraySize, const Twine &Name,
Victor Hernandez8acf2952009-10-23 21:09:37 +0000862 BasicBlock *InsertAtEnd)
Benjamin Kramerfc165f12015-03-05 22:05:26 +0000863 : AllocaInst(Ty, ArraySize, /*Align=*/0, Name, InsertAtEnd) {}
Victor Hernandez8acf2952009-10-23 21:09:37 +0000864
Chris Lattner229907c2011-07-18 04:54:35 +0000865AllocaInst::AllocaInst(Type *Ty, Value *ArraySize, unsigned Align,
Victor Hernandez8acf2952009-10-23 21:09:37 +0000866 const Twine &Name, Instruction *InsertBefore)
867 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
Owen Anderson4fdeba92009-07-15 23:53:25 +0000868 getAISize(Ty->getContext(), ArraySize), InsertBefore) {
Dan Gohmanaa583d72008-03-24 16:55:58 +0000869 setAlignment(Align);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000870 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Chris Lattner0f048162007-02-13 07:54:42 +0000871 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000872}
873
Chris Lattner229907c2011-07-18 04:54:35 +0000874AllocaInst::AllocaInst(Type *Ty, Value *ArraySize, unsigned Align,
Victor Hernandez8acf2952009-10-23 21:09:37 +0000875 const Twine &Name, BasicBlock *InsertAtEnd)
876 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
Owen Anderson4fdeba92009-07-15 23:53:25 +0000877 getAISize(Ty->getContext(), ArraySize), InsertAtEnd) {
Dan Gohmanaa583d72008-03-24 16:55:58 +0000878 setAlignment(Align);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000879 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Chris Lattner0f048162007-02-13 07:54:42 +0000880 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000881}
882
Gordon Henriksen14a55692007-12-10 02:14:30 +0000883// Out of line virtual method, so the vtable, etc has a home.
Victor Hernandez8acf2952009-10-23 21:09:37 +0000884AllocaInst::~AllocaInst() {
Gordon Henriksen14a55692007-12-10 02:14:30 +0000885}
886
Victor Hernandez8acf2952009-10-23 21:09:37 +0000887void AllocaInst::setAlignment(unsigned Align) {
Dan Gohmanaa583d72008-03-24 16:55:58 +0000888 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
Dan Gohmana7e5a242010-07-28 20:12:04 +0000889 assert(Align <= MaximumAlignment &&
890 "Alignment is greater than MaximumAlignment!");
Reid Kleckner436c42e2014-01-17 23:58:17 +0000891 setInstructionSubclassData((getSubclassDataFromInstruction() & ~31) |
892 (Log2_32(Align) + 1));
Dan Gohmanaa583d72008-03-24 16:55:58 +0000893 assert(getAlignment() == Align && "Alignment representation error!");
894}
895
Victor Hernandez8acf2952009-10-23 21:09:37 +0000896bool AllocaInst::isArrayAllocation() const {
Reid Spencera9e6e312007-03-01 20:27:41 +0000897 if (ConstantInt *CI = dyn_cast<ConstantInt>(getOperand(0)))
Dan Gohman9a1b8592010-09-27 15:15:44 +0000898 return !CI->isOne();
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000899 return true;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000900}
901
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000902Type *AllocaInst::getAllocatedType() const {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000903 return getType()->getElementType();
904}
905
Chris Lattner8b291e62008-11-26 02:54:17 +0000906/// isStaticAlloca - Return true if this alloca is in the entry block of the
907/// function and is a constant size. If so, the code generator will fold it
908/// into the prolog/epilog code, so it is basically free.
909bool AllocaInst::isStaticAlloca() const {
910 // Must be constant size.
911 if (!isa<ConstantInt>(getArraySize())) return false;
912
913 // Must be in the entry block.
914 const BasicBlock *Parent = getParent();
Reid Kleckner436c42e2014-01-17 23:58:17 +0000915 return Parent == &Parent->getParent()->front() && !isUsedWithInAlloca();
Chris Lattner8b291e62008-11-26 02:54:17 +0000916}
917
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000918//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000919// LoadInst Implementation
920//===----------------------------------------------------------------------===//
921
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000922void LoadInst::AssertOK() {
Duncan Sands19d0b472010-02-16 11:11:14 +0000923 assert(getOperand(0)->getType()->isPointerTy() &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000924 "Ptr must have pointer type.");
Eli Friedman59b66882011-08-09 23:02:53 +0000925 assert(!(isAtomic() && getAlignment() == 0) &&
926 "Alignment required for atomic load");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000927}
928
Daniel Dunbar4975db62009-07-25 04:41:11 +0000929LoadInst::LoadInst(Value *Ptr, const Twine &Name, Instruction *InsertBef)
Benjamin Kramerfc165f12015-03-05 22:05:26 +0000930 : LoadInst(Ptr, Name, /*isVolatile=*/false, InsertBef) {}
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000931
Daniel Dunbar4975db62009-07-25 04:41:11 +0000932LoadInst::LoadInst(Value *Ptr, const Twine &Name, BasicBlock *InsertAE)
Benjamin Kramerfc165f12015-03-05 22:05:26 +0000933 : LoadInst(Ptr, Name, /*isVolatile=*/false, InsertAE) {}
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000934
Daniel Dunbar4975db62009-07-25 04:41:11 +0000935LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000936 Instruction *InsertBef)
Benjamin Kramerfc165f12015-03-05 22:05:26 +0000937 : LoadInst(Ptr, Name, isVolatile, /*Align=*/0, InsertBef) {}
Eli Friedman59b66882011-08-09 23:02:53 +0000938
939LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
940 BasicBlock *InsertAE)
Benjamin Kramerfc165f12015-03-05 22:05:26 +0000941 : LoadInst(Ptr, Name, isVolatile, /*Align=*/0, InsertAE) {}
Christopher Lamb84485702007-04-22 19:24:39 +0000942
David Blaikieb7a029872015-04-17 19:56:21 +0000943LoadInst::LoadInst(Type *Ty, Value *Ptr, const Twine &Name, bool isVolatile,
Christopher Lamb84485702007-04-22 19:24:39 +0000944 unsigned Align, Instruction *InsertBef)
David Blaikieb7a029872015-04-17 19:56:21 +0000945 : LoadInst(Ty, Ptr, Name, isVolatile, Align, NotAtomic, CrossThread,
Benjamin Kramerfc165f12015-03-05 22:05:26 +0000946 InsertBef) {}
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000947
Benjamin Kramerfc165f12015-03-05 22:05:26 +0000948LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Dan Gohman68659282007-07-18 20:51:11 +0000949 unsigned Align, BasicBlock *InsertAE)
Benjamin Kramerfc165f12015-03-05 22:05:26 +0000950 : LoadInst(Ptr, Name, isVolatile, Align, NotAtomic, CrossThread, InsertAE) {
Dan Gohman68659282007-07-18 20:51:11 +0000951}
952
David Blaikie15d9a4c2015-04-06 20:59:48 +0000953LoadInst::LoadInst(Type *Ty, Value *Ptr, const Twine &Name, bool isVolatile,
Eli Friedman59b66882011-08-09 23:02:53 +0000954 unsigned Align, AtomicOrdering Order,
David Blaikie15d9a4c2015-04-06 20:59:48 +0000955 SynchronizationScope SynchScope, Instruction *InsertBef)
956 : UnaryInstruction(Ty, Load, Ptr, InsertBef) {
Eli Friedman59b66882011-08-09 23:02:53 +0000957 setVolatile(isVolatile);
958 setAlignment(Align);
959 setAtomic(Order, SynchScope);
960 AssertOK();
961 setName(Name);
962}
963
964LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
965 unsigned Align, AtomicOrdering Order,
966 SynchronizationScope SynchScope,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000967 BasicBlock *InsertAE)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000968 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000969 Load, Ptr, InsertAE) {
Chris Lattner0f048162007-02-13 07:54:42 +0000970 setVolatile(isVolatile);
Eli Friedman59b66882011-08-09 23:02:53 +0000971 setAlignment(Align);
972 setAtomic(Order, SynchScope);
Chris Lattner0f048162007-02-13 07:54:42 +0000973 AssertOK();
974 setName(Name);
975}
976
Daniel Dunbar27096822009-08-11 18:11:15 +0000977LoadInst::LoadInst(Value *Ptr, const char *Name, Instruction *InsertBef)
978 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
979 Load, Ptr, InsertBef) {
980 setVolatile(false);
981 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +0000982 setAtomic(NotAtomic);
Daniel Dunbar27096822009-08-11 18:11:15 +0000983 AssertOK();
984 if (Name && Name[0]) setName(Name);
985}
986
987LoadInst::LoadInst(Value *Ptr, const char *Name, BasicBlock *InsertAE)
988 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
989 Load, Ptr, InsertAE) {
990 setVolatile(false);
991 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +0000992 setAtomic(NotAtomic);
Daniel Dunbar27096822009-08-11 18:11:15 +0000993 AssertOK();
994 if (Name && Name[0]) setName(Name);
995}
996
997LoadInst::LoadInst(Value *Ptr, const char *Name, bool isVolatile,
998 Instruction *InsertBef)
999: UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
1000 Load, Ptr, InsertBef) {
1001 setVolatile(isVolatile);
1002 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +00001003 setAtomic(NotAtomic);
Daniel Dunbar27096822009-08-11 18:11:15 +00001004 AssertOK();
1005 if (Name && Name[0]) setName(Name);
1006}
1007
1008LoadInst::LoadInst(Value *Ptr, const char *Name, bool isVolatile,
1009 BasicBlock *InsertAE)
1010 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
1011 Load, Ptr, InsertAE) {
1012 setVolatile(isVolatile);
1013 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +00001014 setAtomic(NotAtomic);
Daniel Dunbar27096822009-08-11 18:11:15 +00001015 AssertOK();
1016 if (Name && Name[0]) setName(Name);
1017}
1018
Christopher Lamb84485702007-04-22 19:24:39 +00001019void LoadInst::setAlignment(unsigned Align) {
1020 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
Dan Gohmana7e5a242010-07-28 20:12:04 +00001021 assert(Align <= MaximumAlignment &&
1022 "Alignment is greater than MaximumAlignment!");
Eli Friedman59b66882011-08-09 23:02:53 +00001023 setInstructionSubclassData((getSubclassDataFromInstruction() & ~(31 << 1)) |
Chris Lattnerd8eb2cf2009-12-29 02:46:09 +00001024 ((Log2_32(Align)+1)<<1));
Dan Gohmana7e5a242010-07-28 20:12:04 +00001025 assert(getAlignment() == Align && "Alignment representation error!");
Christopher Lamb84485702007-04-22 19:24:39 +00001026}
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001027
1028//===----------------------------------------------------------------------===//
1029// StoreInst Implementation
1030//===----------------------------------------------------------------------===//
1031
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001032void StoreInst::AssertOK() {
Nate Begemanfecbc8c2008-07-29 15:49:41 +00001033 assert(getOperand(0) && getOperand(1) && "Both operands must be non-null!");
Duncan Sands19d0b472010-02-16 11:11:14 +00001034 assert(getOperand(1)->getType()->isPointerTy() &&
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001035 "Ptr must have pointer type!");
1036 assert(getOperand(0)->getType() ==
1037 cast<PointerType>(getOperand(1)->getType())->getElementType()
Alkis Evlogimenos079fbde2004-08-06 14:33:37 +00001038 && "Ptr must be a pointer to Val type!");
Eli Friedman59b66882011-08-09 23:02:53 +00001039 assert(!(isAtomic() && getAlignment() == 0) &&
Mark Lacey1d7c97e2013-12-21 00:00:49 +00001040 "Alignment required for atomic store");
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001041}
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001042
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001043StoreInst::StoreInst(Value *val, Value *addr, Instruction *InsertBefore)
Benjamin Kramerfc165f12015-03-05 22:05:26 +00001044 : StoreInst(val, addr, /*isVolatile=*/false, InsertBefore) {}
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001045
1046StoreInst::StoreInst(Value *val, Value *addr, BasicBlock *InsertAtEnd)
Benjamin Kramerfc165f12015-03-05 22:05:26 +00001047 : StoreInst(val, addr, /*isVolatile=*/false, InsertAtEnd) {}
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001048
Misha Brukmanb1c93172005-04-21 23:48:37 +00001049StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001050 Instruction *InsertBefore)
Benjamin Kramerfc165f12015-03-05 22:05:26 +00001051 : StoreInst(val, addr, isVolatile, /*Align=*/0, InsertBefore) {}
Christopher Lamb84485702007-04-22 19:24:39 +00001052
1053StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Benjamin Kramerfc165f12015-03-05 22:05:26 +00001054 BasicBlock *InsertAtEnd)
1055 : StoreInst(val, addr, isVolatile, /*Align=*/0, InsertAtEnd) {}
1056
1057StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile, unsigned Align,
1058 Instruction *InsertBefore)
1059 : StoreInst(val, addr, isVolatile, Align, NotAtomic, CrossThread,
1060 InsertBefore) {}
1061
1062StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile, unsigned Align,
1063 BasicBlock *InsertAtEnd)
1064 : StoreInst(val, addr, isVolatile, Align, NotAtomic, CrossThread,
1065 InsertAtEnd) {}
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001066
Misha Brukmanb1c93172005-04-21 23:48:37 +00001067StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Eli Friedman59b66882011-08-09 23:02:53 +00001068 unsigned Align, AtomicOrdering Order,
1069 SynchronizationScope SynchScope,
1070 Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +00001071 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001072 OperandTraits<StoreInst>::op_begin(this),
1073 OperandTraits<StoreInst>::operands(this),
Eli Friedman59b66882011-08-09 23:02:53 +00001074 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001075 Op<0>() = val;
1076 Op<1>() = addr;
Dan Gohman68659282007-07-18 20:51:11 +00001077 setVolatile(isVolatile);
1078 setAlignment(Align);
Eli Friedman59b66882011-08-09 23:02:53 +00001079 setAtomic(Order, SynchScope);
Dan Gohman68659282007-07-18 20:51:11 +00001080 AssertOK();
1081}
1082
1083StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Eli Friedman59b66882011-08-09 23:02:53 +00001084 unsigned Align, AtomicOrdering Order,
1085 SynchronizationScope SynchScope,
1086 BasicBlock *InsertAtEnd)
1087 : Instruction(Type::getVoidTy(val->getContext()), Store,
1088 OperandTraits<StoreInst>::op_begin(this),
1089 OperandTraits<StoreInst>::operands(this),
1090 InsertAtEnd) {
1091 Op<0>() = val;
1092 Op<1>() = addr;
1093 setVolatile(isVolatile);
1094 setAlignment(Align);
1095 setAtomic(Order, SynchScope);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001096 AssertOK();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001097}
1098
Christopher Lamb84485702007-04-22 19:24:39 +00001099void StoreInst::setAlignment(unsigned Align) {
1100 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
Dan Gohmana7e5a242010-07-28 20:12:04 +00001101 assert(Align <= MaximumAlignment &&
1102 "Alignment is greater than MaximumAlignment!");
Eli Friedman59b66882011-08-09 23:02:53 +00001103 setInstructionSubclassData((getSubclassDataFromInstruction() & ~(31 << 1)) |
Chris Lattnerd8eb2cf2009-12-29 02:46:09 +00001104 ((Log2_32(Align)+1) << 1));
Dan Gohmana7e5a242010-07-28 20:12:04 +00001105 assert(getAlignment() == Align && "Alignment representation error!");
Christopher Lamb84485702007-04-22 19:24:39 +00001106}
1107
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001108//===----------------------------------------------------------------------===//
Eli Friedmanc9a551e2011-07-28 21:48:00 +00001109// AtomicCmpXchgInst Implementation
1110//===----------------------------------------------------------------------===//
1111
1112void AtomicCmpXchgInst::Init(Value *Ptr, Value *Cmp, Value *NewVal,
Tim Northovere94a5182014-03-11 10:48:52 +00001113 AtomicOrdering SuccessOrdering,
1114 AtomicOrdering FailureOrdering,
Eli Friedmanc9a551e2011-07-28 21:48:00 +00001115 SynchronizationScope SynchScope) {
1116 Op<0>() = Ptr;
1117 Op<1>() = Cmp;
1118 Op<2>() = NewVal;
Tim Northovere94a5182014-03-11 10:48:52 +00001119 setSuccessOrdering(SuccessOrdering);
1120 setFailureOrdering(FailureOrdering);
Eli Friedmanc9a551e2011-07-28 21:48:00 +00001121 setSynchScope(SynchScope);
1122
1123 assert(getOperand(0) && getOperand(1) && getOperand(2) &&
1124 "All operands must be non-null!");
1125 assert(getOperand(0)->getType()->isPointerTy() &&
1126 "Ptr must have pointer type!");
1127 assert(getOperand(1)->getType() ==
1128 cast<PointerType>(getOperand(0)->getType())->getElementType()
1129 && "Ptr must be a pointer to Cmp type!");
1130 assert(getOperand(2)->getType() ==
1131 cast<PointerType>(getOperand(0)->getType())->getElementType()
1132 && "Ptr must be a pointer to NewVal type!");
Tim Northovere94a5182014-03-11 10:48:52 +00001133 assert(SuccessOrdering != NotAtomic &&
Eli Friedmanc9a551e2011-07-28 21:48:00 +00001134 "AtomicCmpXchg instructions must be atomic!");
Tim Northovere94a5182014-03-11 10:48:52 +00001135 assert(FailureOrdering != NotAtomic &&
1136 "AtomicCmpXchg instructions must be atomic!");
1137 assert(SuccessOrdering >= FailureOrdering &&
1138 "AtomicCmpXchg success ordering must be at least as strong as fail");
1139 assert(FailureOrdering != Release && FailureOrdering != AcquireRelease &&
1140 "AtomicCmpXchg failure ordering cannot include release semantics");
Eli Friedmanc9a551e2011-07-28 21:48:00 +00001141}
1142
1143AtomicCmpXchgInst::AtomicCmpXchgInst(Value *Ptr, Value *Cmp, Value *NewVal,
Tim Northovere94a5182014-03-11 10:48:52 +00001144 AtomicOrdering SuccessOrdering,
1145 AtomicOrdering FailureOrdering,
Eli Friedmanc9a551e2011-07-28 21:48:00 +00001146 SynchronizationScope SynchScope,
1147 Instruction *InsertBefore)
Tim Northover420a2162014-06-13 14:24:07 +00001148 : Instruction(
1149 StructType::get(Cmp->getType(), Type::getInt1Ty(Cmp->getContext()),
1150 nullptr),
1151 AtomicCmpXchg, OperandTraits<AtomicCmpXchgInst>::op_begin(this),
1152 OperandTraits<AtomicCmpXchgInst>::operands(this), InsertBefore) {
Tim Northovere94a5182014-03-11 10:48:52 +00001153 Init(Ptr, Cmp, NewVal, SuccessOrdering, FailureOrdering, SynchScope);
Eli Friedmanc9a551e2011-07-28 21:48:00 +00001154}
1155
1156AtomicCmpXchgInst::AtomicCmpXchgInst(Value *Ptr, Value *Cmp, Value *NewVal,
Tim Northovere94a5182014-03-11 10:48:52 +00001157 AtomicOrdering SuccessOrdering,
1158 AtomicOrdering FailureOrdering,
Eli Friedmanc9a551e2011-07-28 21:48:00 +00001159 SynchronizationScope SynchScope,
1160 BasicBlock *InsertAtEnd)
Tim Northover420a2162014-06-13 14:24:07 +00001161 : Instruction(
1162 StructType::get(Cmp->getType(), Type::getInt1Ty(Cmp->getContext()),
1163 nullptr),
1164 AtomicCmpXchg, OperandTraits<AtomicCmpXchgInst>::op_begin(this),
1165 OperandTraits<AtomicCmpXchgInst>::operands(this), InsertAtEnd) {
Tim Northovere94a5182014-03-11 10:48:52 +00001166 Init(Ptr, Cmp, NewVal, SuccessOrdering, FailureOrdering, SynchScope);
Eli Friedmanc9a551e2011-07-28 21:48:00 +00001167}
Tim Northover420a2162014-06-13 14:24:07 +00001168
Eli Friedmanc9a551e2011-07-28 21:48:00 +00001169//===----------------------------------------------------------------------===//
1170// AtomicRMWInst Implementation
1171//===----------------------------------------------------------------------===//
1172
1173void AtomicRMWInst::Init(BinOp Operation, Value *Ptr, Value *Val,
1174 AtomicOrdering Ordering,
1175 SynchronizationScope SynchScope) {
1176 Op<0>() = Ptr;
1177 Op<1>() = Val;
1178 setOperation(Operation);
1179 setOrdering(Ordering);
1180 setSynchScope(SynchScope);
1181
1182 assert(getOperand(0) && getOperand(1) &&
1183 "All operands must be non-null!");
1184 assert(getOperand(0)->getType()->isPointerTy() &&
1185 "Ptr must have pointer type!");
1186 assert(getOperand(1)->getType() ==
1187 cast<PointerType>(getOperand(0)->getType())->getElementType()
1188 && "Ptr must be a pointer to Val type!");
1189 assert(Ordering != NotAtomic &&
1190 "AtomicRMW instructions must be atomic!");
1191}
1192
1193AtomicRMWInst::AtomicRMWInst(BinOp Operation, Value *Ptr, Value *Val,
1194 AtomicOrdering Ordering,
1195 SynchronizationScope SynchScope,
1196 Instruction *InsertBefore)
1197 : Instruction(Val->getType(), AtomicRMW,
1198 OperandTraits<AtomicRMWInst>::op_begin(this),
1199 OperandTraits<AtomicRMWInst>::operands(this),
1200 InsertBefore) {
1201 Init(Operation, Ptr, Val, Ordering, SynchScope);
1202}
1203
1204AtomicRMWInst::AtomicRMWInst(BinOp Operation, Value *Ptr, Value *Val,
1205 AtomicOrdering Ordering,
1206 SynchronizationScope SynchScope,
1207 BasicBlock *InsertAtEnd)
1208 : Instruction(Val->getType(), AtomicRMW,
1209 OperandTraits<AtomicRMWInst>::op_begin(this),
1210 OperandTraits<AtomicRMWInst>::operands(this),
1211 InsertAtEnd) {
1212 Init(Operation, Ptr, Val, Ordering, SynchScope);
1213}
1214
1215//===----------------------------------------------------------------------===//
Eli Friedmanfee02c62011-07-25 23:16:38 +00001216// FenceInst Implementation
1217//===----------------------------------------------------------------------===//
1218
1219FenceInst::FenceInst(LLVMContext &C, AtomicOrdering Ordering,
1220 SynchronizationScope SynchScope,
1221 Instruction *InsertBefore)
Craig Topperc6207612014-04-09 06:08:46 +00001222 : Instruction(Type::getVoidTy(C), Fence, nullptr, 0, InsertBefore) {
Eli Friedmanfee02c62011-07-25 23:16:38 +00001223 setOrdering(Ordering);
1224 setSynchScope(SynchScope);
1225}
1226
1227FenceInst::FenceInst(LLVMContext &C, AtomicOrdering Ordering,
1228 SynchronizationScope SynchScope,
1229 BasicBlock *InsertAtEnd)
Craig Topperc6207612014-04-09 06:08:46 +00001230 : Instruction(Type::getVoidTy(C), Fence, nullptr, 0, InsertAtEnd) {
Eli Friedmanfee02c62011-07-25 23:16:38 +00001231 setOrdering(Ordering);
1232 setSynchScope(SynchScope);
1233}
1234
1235//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001236// GetElementPtrInst Implementation
1237//===----------------------------------------------------------------------===//
1238
Jay Foadd1b78492011-07-25 09:48:08 +00001239void GetElementPtrInst::init(Value *Ptr, ArrayRef<Value *> IdxList,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001240 const Twine &Name) {
Jay Foadd1b78492011-07-25 09:48:08 +00001241 assert(NumOperands == 1 + IdxList.size() && "NumOperands not initialized?");
1242 OperandList[0] = Ptr;
1243 std::copy(IdxList.begin(), IdxList.end(), op_begin() + 1);
Matthijs Kooijman76d8dec2008-06-04 16:14:12 +00001244 setName(Name);
Chris Lattner82981202005-05-03 05:43:30 +00001245}
1246
Gabor Greiff6caff662008-05-10 08:32:32 +00001247GetElementPtrInst::GetElementPtrInst(const GetElementPtrInst &GEPI)
Gabor Greife9408e62008-05-27 11:03:29 +00001248 : Instruction(GEPI.getType(), GetElementPtr,
Gabor Greif697e94c2008-05-15 10:04:30 +00001249 OperandTraits<GetElementPtrInst>::op_end(this)
1250 - GEPI.getNumOperands(),
Gabor Greiff6caff662008-05-10 08:32:32 +00001251 GEPI.getNumOperands()) {
Jay Foadd1b78492011-07-25 09:48:08 +00001252 std::copy(GEPI.op_begin(), GEPI.op_end(), op_begin());
Dan Gohmanc8a27f22009-08-25 22:11:20 +00001253 SubclassOptionalData = GEPI.SubclassOptionalData;
Gabor Greiff6caff662008-05-10 08:32:32 +00001254}
1255
Chris Lattner6090a422009-03-09 04:46:40 +00001256/// getIndexedType - Returns the type of the element that would be accessed with
1257/// a gep instruction with the specified parameters.
1258///
1259/// The Idxs pointer should point to a continuous piece of memory containing the
1260/// indices, either as Value* or uint64_t.
1261///
1262/// A null type is returned if the indices are invalid for the specified
1263/// pointer type.
1264///
Matthijs Kooijman04468622008-07-29 08:46:11 +00001265template <typename IndexTy>
David Blaikied288fb82015-03-30 21:41:43 +00001266static Type *getIndexedTypeInternal(Type *Agg, ArrayRef<IndexTy> IdxList) {
Chris Lattner6090a422009-03-09 04:46:40 +00001267 // Handle the special case of the empty set index set, which is always valid.
Jay Foadd1b78492011-07-25 09:48:08 +00001268 if (IdxList.empty())
Dan Gohman12fce772008-05-15 19:50:34 +00001269 return Agg;
Nadav Rotem3924cb02011-12-05 06:29:09 +00001270
Chris Lattner6090a422009-03-09 04:46:40 +00001271 // If there is at least one index, the top level type must be sized, otherwise
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001272 // it cannot be 'stepped over'.
1273 if (!Agg->isSized())
Craig Topperc6207612014-04-09 06:08:46 +00001274 return nullptr;
Misha Brukmanb1c93172005-04-21 23:48:37 +00001275
Dan Gohman1ecaf452008-05-31 00:58:22 +00001276 unsigned CurIdx = 1;
Jay Foadd1b78492011-07-25 09:48:08 +00001277 for (; CurIdx != IdxList.size(); ++CurIdx) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001278 CompositeType *CT = dyn_cast<CompositeType>(Agg);
Craig Topperc6207612014-04-09 06:08:46 +00001279 if (!CT || CT->isPointerTy()) return nullptr;
Jay Foadd1b78492011-07-25 09:48:08 +00001280 IndexTy Index = IdxList[CurIdx];
Craig Topperc6207612014-04-09 06:08:46 +00001281 if (!CT->indexValid(Index)) return nullptr;
Dan Gohman1ecaf452008-05-31 00:58:22 +00001282 Agg = CT->getTypeAtIndex(Index);
Dan Gohman1ecaf452008-05-31 00:58:22 +00001283 }
Craig Topperc6207612014-04-09 06:08:46 +00001284 return CurIdx == IdxList.size() ? Agg : nullptr;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001285}
1286
David Blaikied288fb82015-03-30 21:41:43 +00001287Type *GetElementPtrInst::getIndexedType(Type *Ty, ArrayRef<Value *> IdxList) {
1288 return getIndexedTypeInternal(Ty, IdxList);
Matthijs Kooijman04468622008-07-29 08:46:11 +00001289}
1290
David Blaikied288fb82015-03-30 21:41:43 +00001291Type *GetElementPtrInst::getIndexedType(Type *Ty,
Jay Foadd1b78492011-07-25 09:48:08 +00001292 ArrayRef<Constant *> IdxList) {
David Blaikied288fb82015-03-30 21:41:43 +00001293 return getIndexedTypeInternal(Ty, IdxList);
Jay Foad1d4a8fe2011-01-14 08:07:43 +00001294}
1295
David Blaikied288fb82015-03-30 21:41:43 +00001296Type *GetElementPtrInst::getIndexedType(Type *Ty, ArrayRef<uint64_t> IdxList) {
1297 return getIndexedTypeInternal(Ty, IdxList);
Matthijs Kooijman04468622008-07-29 08:46:11 +00001298}
1299
Chris Lattner45f15572007-04-14 00:12:57 +00001300/// hasAllZeroIndices - Return true if all of the indices of this GEP are
1301/// zeros. If so, the result pointer and the first operand have the same
1302/// value, just potentially different types.
1303bool GetElementPtrInst::hasAllZeroIndices() const {
1304 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
1305 if (ConstantInt *CI = dyn_cast<ConstantInt>(getOperand(i))) {
1306 if (!CI->isZero()) return false;
1307 } else {
1308 return false;
1309 }
1310 }
1311 return true;
1312}
1313
Chris Lattner27058292007-04-27 20:35:56 +00001314/// hasAllConstantIndices - Return true if all of the indices of this GEP are
1315/// constant integers. If so, the result pointer and the first operand have
1316/// a constant offset between them.
1317bool GetElementPtrInst::hasAllConstantIndices() const {
1318 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
1319 if (!isa<ConstantInt>(getOperand(i)))
1320 return false;
1321 }
1322 return true;
1323}
1324
Dan Gohman1b849082009-09-07 23:54:19 +00001325void GetElementPtrInst::setIsInBounds(bool B) {
1326 cast<GEPOperator>(this)->setIsInBounds(B);
1327}
Chris Lattner45f15572007-04-14 00:12:57 +00001328
Nick Lewycky28a5f252009-09-27 21:33:04 +00001329bool GetElementPtrInst::isInBounds() const {
1330 return cast<GEPOperator>(this)->isInBounds();
1331}
1332
Chandler Carruth1e140532012-12-11 10:29:10 +00001333bool GetElementPtrInst::accumulateConstantOffset(const DataLayout &DL,
1334 APInt &Offset) const {
Chandler Carruth7ec41c72012-12-11 11:05:15 +00001335 // Delegate to the generic GEPOperator implementation.
1336 return cast<GEPOperator>(this)->accumulateConstantOffset(DL, Offset);
Chandler Carruth1e140532012-12-11 10:29:10 +00001337}
1338
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001339//===----------------------------------------------------------------------===//
Robert Bocchino23004482006-01-10 19:05:34 +00001340// ExtractElementInst Implementation
1341//===----------------------------------------------------------------------===//
1342
1343ExtractElementInst::ExtractElementInst(Value *Val, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001344 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001345 Instruction *InsertBef)
Reid Spencerd84d35b2007-02-15 02:26:10 +00001346 : Instruction(cast<VectorType>(Val->getType())->getElementType(),
Gabor Greiff6caff662008-05-10 08:32:32 +00001347 ExtractElement,
1348 OperandTraits<ExtractElementInst>::op_begin(this),
1349 2, InsertBef) {
Chris Lattner54865b32006-04-08 04:05:48 +00001350 assert(isValidOperands(Val, Index) &&
1351 "Invalid extractelement instruction operands!");
Gabor Greif2d3024d2008-05-26 21:33:52 +00001352 Op<0>() = Val;
1353 Op<1>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001354 setName(Name);
Robert Bocchino23004482006-01-10 19:05:34 +00001355}
1356
1357ExtractElementInst::ExtractElementInst(Value *Val, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001358 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001359 BasicBlock *InsertAE)
Reid Spencerd84d35b2007-02-15 02:26:10 +00001360 : Instruction(cast<VectorType>(Val->getType())->getElementType(),
Gabor Greiff6caff662008-05-10 08:32:32 +00001361 ExtractElement,
1362 OperandTraits<ExtractElementInst>::op_begin(this),
1363 2, InsertAE) {
Chris Lattner54865b32006-04-08 04:05:48 +00001364 assert(isValidOperands(Val, Index) &&
1365 "Invalid extractelement instruction operands!");
1366
Gabor Greif2d3024d2008-05-26 21:33:52 +00001367 Op<0>() = Val;
1368 Op<1>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001369 setName(Name);
Robert Bocchino23004482006-01-10 19:05:34 +00001370}
1371
Chris Lattner65511ff2006-10-05 06:24:58 +00001372
Chris Lattner54865b32006-04-08 04:05:48 +00001373bool ExtractElementInst::isValidOperands(const Value *Val, const Value *Index) {
Michael J. Spencer1f10c5ea2014-05-01 22:12:39 +00001374 if (!Val->getType()->isVectorTy() || !Index->getType()->isIntegerTy())
Chris Lattner54865b32006-04-08 04:05:48 +00001375 return false;
1376 return true;
1377}
1378
1379
Robert Bocchino23004482006-01-10 19:05:34 +00001380//===----------------------------------------------------------------------===//
Robert Bocchinoca27f032006-01-17 20:07:22 +00001381// InsertElementInst Implementation
1382//===----------------------------------------------------------------------===//
1383
Chris Lattner54865b32006-04-08 04:05:48 +00001384InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001385 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001386 Instruction *InsertBef)
Gabor Greiff6caff662008-05-10 08:32:32 +00001387 : Instruction(Vec->getType(), InsertElement,
1388 OperandTraits<InsertElementInst>::op_begin(this),
1389 3, InsertBef) {
Chris Lattner54865b32006-04-08 04:05:48 +00001390 assert(isValidOperands(Vec, Elt, Index) &&
1391 "Invalid insertelement instruction operands!");
Gabor Greif2d3024d2008-05-26 21:33:52 +00001392 Op<0>() = Vec;
1393 Op<1>() = Elt;
1394 Op<2>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001395 setName(Name);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001396}
1397
Chris Lattner54865b32006-04-08 04:05:48 +00001398InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001399 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001400 BasicBlock *InsertAE)
Gabor Greiff6caff662008-05-10 08:32:32 +00001401 : Instruction(Vec->getType(), InsertElement,
1402 OperandTraits<InsertElementInst>::op_begin(this),
1403 3, InsertAE) {
Chris Lattner54865b32006-04-08 04:05:48 +00001404 assert(isValidOperands(Vec, Elt, Index) &&
1405 "Invalid insertelement instruction operands!");
1406
Gabor Greif2d3024d2008-05-26 21:33:52 +00001407 Op<0>() = Vec;
1408 Op<1>() = Elt;
1409 Op<2>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001410 setName(Name);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001411}
1412
Chris Lattner54865b32006-04-08 04:05:48 +00001413bool InsertElementInst::isValidOperands(const Value *Vec, const Value *Elt,
1414 const Value *Index) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001415 if (!Vec->getType()->isVectorTy())
Reid Spencer09575ba2007-02-15 03:39:18 +00001416 return false; // First operand of insertelement must be vector type.
Chris Lattner54865b32006-04-08 04:05:48 +00001417
Reid Spencerd84d35b2007-02-15 02:26:10 +00001418 if (Elt->getType() != cast<VectorType>(Vec->getType())->getElementType())
Dan Gohmanfead7972007-05-11 21:43:24 +00001419 return false;// Second operand of insertelement must be vector element type.
Chris Lattner54865b32006-04-08 04:05:48 +00001420
Michael J. Spencer1f10c5ea2014-05-01 22:12:39 +00001421 if (!Index->getType()->isIntegerTy())
Dan Gohman4fe64de2009-06-14 23:30:43 +00001422 return false; // Third operand of insertelement must be i32.
Chris Lattner54865b32006-04-08 04:05:48 +00001423 return true;
1424}
1425
1426
Robert Bocchinoca27f032006-01-17 20:07:22 +00001427//===----------------------------------------------------------------------===//
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001428// ShuffleVectorInst Implementation
1429//===----------------------------------------------------------------------===//
1430
1431ShuffleVectorInst::ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001432 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001433 Instruction *InsertBefore)
Owen Anderson4056ca92009-07-29 22:17:13 +00001434: Instruction(VectorType::get(cast<VectorType>(V1->getType())->getElementType(),
Mon P Wang25f01062008-11-10 04:46:22 +00001435 cast<VectorType>(Mask->getType())->getNumElements()),
1436 ShuffleVector,
1437 OperandTraits<ShuffleVectorInst>::op_begin(this),
1438 OperandTraits<ShuffleVectorInst>::operands(this),
1439 InsertBefore) {
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001440 assert(isValidOperands(V1, V2, Mask) &&
1441 "Invalid shuffle vector instruction operands!");
Gabor Greif2d3024d2008-05-26 21:33:52 +00001442 Op<0>() = V1;
1443 Op<1>() = V2;
1444 Op<2>() = Mask;
Chris Lattner2195fc42007-02-24 00:55:48 +00001445 setName(Name);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001446}
1447
1448ShuffleVectorInst::ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001449 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001450 BasicBlock *InsertAtEnd)
Dan Gohmane5af8cd2009-08-25 23:27:45 +00001451: Instruction(VectorType::get(cast<VectorType>(V1->getType())->getElementType(),
1452 cast<VectorType>(Mask->getType())->getNumElements()),
1453 ShuffleVector,
1454 OperandTraits<ShuffleVectorInst>::op_begin(this),
1455 OperandTraits<ShuffleVectorInst>::operands(this),
1456 InsertAtEnd) {
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001457 assert(isValidOperands(V1, V2, Mask) &&
1458 "Invalid shuffle vector instruction operands!");
1459
Gabor Greif2d3024d2008-05-26 21:33:52 +00001460 Op<0>() = V1;
1461 Op<1>() = V2;
1462 Op<2>() = Mask;
Chris Lattner2195fc42007-02-24 00:55:48 +00001463 setName(Name);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001464}
1465
Mon P Wang25f01062008-11-10 04:46:22 +00001466bool ShuffleVectorInst::isValidOperands(const Value *V1, const Value *V2,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001467 const Value *Mask) {
Chris Lattner1dcb6542012-01-25 23:49:49 +00001468 // V1 and V2 must be vectors of the same type.
Duncan Sands19d0b472010-02-16 11:11:14 +00001469 if (!V1->getType()->isVectorTy() || V1->getType() != V2->getType())
Chris Lattnerf724e342008-03-02 05:28:33 +00001470 return false;
1471
Chris Lattner1dcb6542012-01-25 23:49:49 +00001472 // Mask must be vector of i32.
Chris Lattner229907c2011-07-18 04:54:35 +00001473 VectorType *MaskTy = dyn_cast<VectorType>(Mask->getType());
Craig Topperc6207612014-04-09 06:08:46 +00001474 if (!MaskTy || !MaskTy->getElementType()->isIntegerTy(32))
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001475 return false;
Nate Begeman60a31c32010-08-13 00:16:46 +00001476
1477 // Check to see if Mask is valid.
Chris Lattner1dcb6542012-01-25 23:49:49 +00001478 if (isa<UndefValue>(Mask) || isa<ConstantAggregateZero>(Mask))
1479 return true;
1480
Nate Begeman60a31c32010-08-13 00:16:46 +00001481 if (const ConstantVector *MV = dyn_cast<ConstantVector>(Mask)) {
Chris Lattner1dcb6542012-01-25 23:49:49 +00001482 unsigned V1Size = cast<VectorType>(V1->getType())->getNumElements();
Benjamin Kramer3ad5c962014-03-10 15:03:06 +00001483 for (Value *Op : MV->operands()) {
1484 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op)) {
Chris Lattner1dcb6542012-01-25 23:49:49 +00001485 if (CI->uge(V1Size*2))
Nate Begeman60a31c32010-08-13 00:16:46 +00001486 return false;
Benjamin Kramer3ad5c962014-03-10 15:03:06 +00001487 } else if (!isa<UndefValue>(Op)) {
Nate Begeman60a31c32010-08-13 00:16:46 +00001488 return false;
1489 }
1490 }
Chris Lattner1dcb6542012-01-25 23:49:49 +00001491 return true;
Mon P Wang6ebf4012011-10-26 00:34:48 +00001492 }
Chris Lattner1dcb6542012-01-25 23:49:49 +00001493
1494 if (const ConstantDataSequential *CDS =
1495 dyn_cast<ConstantDataSequential>(Mask)) {
1496 unsigned V1Size = cast<VectorType>(V1->getType())->getNumElements();
1497 for (unsigned i = 0, e = MaskTy->getNumElements(); i != e; ++i)
1498 if (CDS->getElementAsInteger(i) >= V1Size*2)
1499 return false;
1500 return true;
1501 }
1502
1503 // The bitcode reader can create a place holder for a forward reference
1504 // used as the shuffle mask. When this occurs, the shuffle mask will
1505 // fall into this case and fail. To avoid this error, do this bit of
1506 // ugliness to allow such a mask pass.
1507 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(Mask))
1508 if (CE->getOpcode() == Instruction::UserOp1)
1509 return true;
1510
1511 return false;
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001512}
1513
Chris Lattnerf724e342008-03-02 05:28:33 +00001514/// getMaskValue - Return the index from the shuffle mask for the specified
1515/// output result. This is either -1 if the element is undef or a number less
1516/// than 2*numelements.
Chris Lattnercf129702012-01-26 02:51:13 +00001517int ShuffleVectorInst::getMaskValue(Constant *Mask, unsigned i) {
1518 assert(i < Mask->getType()->getVectorNumElements() && "Index out of range");
1519 if (ConstantDataSequential *CDS =dyn_cast<ConstantDataSequential>(Mask))
Chris Lattner1dcb6542012-01-25 23:49:49 +00001520 return CDS->getElementAsInteger(i);
Chris Lattnercf129702012-01-26 02:51:13 +00001521 Constant *C = Mask->getAggregateElement(i);
Chris Lattner1dcb6542012-01-25 23:49:49 +00001522 if (isa<UndefValue>(C))
Chris Lattnerf724e342008-03-02 05:28:33 +00001523 return -1;
Chris Lattner1dcb6542012-01-25 23:49:49 +00001524 return cast<ConstantInt>(C)->getZExtValue();
Chris Lattnerf724e342008-03-02 05:28:33 +00001525}
1526
Chris Lattner1dcb6542012-01-25 23:49:49 +00001527/// getShuffleMask - Return the full mask for this instruction, where each
1528/// element is the element number and undef's are returned as -1.
Chris Lattnercf129702012-01-26 02:51:13 +00001529void ShuffleVectorInst::getShuffleMask(Constant *Mask,
1530 SmallVectorImpl<int> &Result) {
1531 unsigned NumElts = Mask->getType()->getVectorNumElements();
Chris Lattner1dcb6542012-01-25 23:49:49 +00001532
Chris Lattnercf129702012-01-26 02:51:13 +00001533 if (ConstantDataSequential *CDS=dyn_cast<ConstantDataSequential>(Mask)) {
Chris Lattner1dcb6542012-01-25 23:49:49 +00001534 for (unsigned i = 0; i != NumElts; ++i)
1535 Result.push_back(CDS->getElementAsInteger(i));
1536 return;
1537 }
Chris Lattner1dcb6542012-01-25 23:49:49 +00001538 for (unsigned i = 0; i != NumElts; ++i) {
1539 Constant *C = Mask->getAggregateElement(i);
1540 Result.push_back(isa<UndefValue>(C) ? -1 :
Chris Lattner3dbad4032012-01-26 00:41:50 +00001541 cast<ConstantInt>(C)->getZExtValue());
Chris Lattner1dcb6542012-01-25 23:49:49 +00001542 }
1543}
1544
1545
Dan Gohman12fce772008-05-15 19:50:34 +00001546//===----------------------------------------------------------------------===//
Dan Gohman0752bff2008-05-23 00:36:11 +00001547// InsertValueInst Class
1548//===----------------------------------------------------------------------===//
1549
Jay Foad57aa6362011-07-13 10:26:04 +00001550void InsertValueInst::init(Value *Agg, Value *Val, ArrayRef<unsigned> Idxs,
1551 const Twine &Name) {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001552 assert(NumOperands == 2 && "NumOperands not initialized?");
Jay Foad57aa6362011-07-13 10:26:04 +00001553
1554 // There's no fundamental reason why we require at least one index
1555 // (other than weirdness with &*IdxBegin being invalid; see
1556 // getelementptr's init routine for example). But there's no
1557 // present need to support it.
1558 assert(Idxs.size() > 0 && "InsertValueInst must have at least one index");
1559
1560 assert(ExtractValueInst::getIndexedType(Agg->getType(), Idxs) ==
Frits van Bommel16ebe772010-12-05 20:50:26 +00001561 Val->getType() && "Inserted value must match indexed type!");
Dan Gohman1ecaf452008-05-31 00:58:22 +00001562 Op<0>() = Agg;
1563 Op<1>() = Val;
Dan Gohman0752bff2008-05-23 00:36:11 +00001564
Jay Foad57aa6362011-07-13 10:26:04 +00001565 Indices.append(Idxs.begin(), Idxs.end());
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001566 setName(Name);
Dan Gohman0752bff2008-05-23 00:36:11 +00001567}
1568
1569InsertValueInst::InsertValueInst(const InsertValueInst &IVI)
Gabor Greife9408e62008-05-27 11:03:29 +00001570 : Instruction(IVI.getType(), InsertValue,
Dan Gohman1ecaf452008-05-31 00:58:22 +00001571 OperandTraits<InsertValueInst>::op_begin(this), 2),
1572 Indices(IVI.Indices) {
Dan Gohmand8ca05f2008-06-17 23:25:49 +00001573 Op<0>() = IVI.getOperand(0);
1574 Op<1>() = IVI.getOperand(1);
Dan Gohmanc8a27f22009-08-25 22:11:20 +00001575 SubclassOptionalData = IVI.SubclassOptionalData;
Dan Gohman0752bff2008-05-23 00:36:11 +00001576}
1577
1578//===----------------------------------------------------------------------===//
Dan Gohman12fce772008-05-15 19:50:34 +00001579// ExtractValueInst Class
1580//===----------------------------------------------------------------------===//
1581
Jay Foad57aa6362011-07-13 10:26:04 +00001582void ExtractValueInst::init(ArrayRef<unsigned> Idxs, const Twine &Name) {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001583 assert(NumOperands == 1 && "NumOperands not initialized?");
Dan Gohman0752bff2008-05-23 00:36:11 +00001584
Jay Foad57aa6362011-07-13 10:26:04 +00001585 // There's no fundamental reason why we require at least one index.
1586 // But there's no present need to support it.
1587 assert(Idxs.size() > 0 && "ExtractValueInst must have at least one index");
Dan Gohman0752bff2008-05-23 00:36:11 +00001588
Jay Foad57aa6362011-07-13 10:26:04 +00001589 Indices.append(Idxs.begin(), Idxs.end());
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001590 setName(Name);
Dan Gohman0752bff2008-05-23 00:36:11 +00001591}
1592
1593ExtractValueInst::ExtractValueInst(const ExtractValueInst &EVI)
Gabor Greif21ba1842008-06-06 20:28:12 +00001594 : UnaryInstruction(EVI.getType(), ExtractValue, EVI.getOperand(0)),
Dan Gohman1ecaf452008-05-31 00:58:22 +00001595 Indices(EVI.Indices) {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00001596 SubclassOptionalData = EVI.SubclassOptionalData;
Dan Gohman0752bff2008-05-23 00:36:11 +00001597}
1598
Dan Gohman12fce772008-05-15 19:50:34 +00001599// getIndexedType - Returns the type of the element that would be extracted
1600// with an extractvalue instruction with the specified parameters.
1601//
1602// A null type is returned if the indices are invalid for the specified
1603// pointer type.
1604//
Chris Lattner229907c2011-07-18 04:54:35 +00001605Type *ExtractValueInst::getIndexedType(Type *Agg,
Jay Foad57aa6362011-07-13 10:26:04 +00001606 ArrayRef<unsigned> Idxs) {
Benjamin Kramer3ad5c962014-03-10 15:03:06 +00001607 for (unsigned Index : Idxs) {
Frits van Bommel16ebe772010-12-05 20:50:26 +00001608 // We can't use CompositeType::indexValid(Index) here.
1609 // indexValid() always returns true for arrays because getelementptr allows
1610 // out-of-bounds indices. Since we don't allow those for extractvalue and
1611 // insertvalue we need to check array indexing manually.
1612 // Since the only other types we can index into are struct types it's just
1613 // as easy to check those manually as well.
Chris Lattner229907c2011-07-18 04:54:35 +00001614 if (ArrayType *AT = dyn_cast<ArrayType>(Agg)) {
Frits van Bommel16ebe772010-12-05 20:50:26 +00001615 if (Index >= AT->getNumElements())
Craig Topperc6207612014-04-09 06:08:46 +00001616 return nullptr;
Chris Lattner229907c2011-07-18 04:54:35 +00001617 } else if (StructType *ST = dyn_cast<StructType>(Agg)) {
Frits van Bommel16ebe772010-12-05 20:50:26 +00001618 if (Index >= ST->getNumElements())
Craig Topperc6207612014-04-09 06:08:46 +00001619 return nullptr;
Frits van Bommel16ebe772010-12-05 20:50:26 +00001620 } else {
1621 // Not a valid type to index into.
Craig Topperc6207612014-04-09 06:08:46 +00001622 return nullptr;
Frits van Bommel16ebe772010-12-05 20:50:26 +00001623 }
1624
1625 Agg = cast<CompositeType>(Agg)->getTypeAtIndex(Index);
Dan Gohman12fce772008-05-15 19:50:34 +00001626 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001627 return const_cast<Type*>(Agg);
Dan Gohman12fce772008-05-15 19:50:34 +00001628}
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001629
1630//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001631// BinaryOperator Class
1632//===----------------------------------------------------------------------===//
1633
Chris Lattner2195fc42007-02-24 00:55:48 +00001634BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2,
Chris Lattner229907c2011-07-18 04:54:35 +00001635 Type *Ty, const Twine &Name,
Chris Lattner2195fc42007-02-24 00:55:48 +00001636 Instruction *InsertBefore)
Dan Gohmana2414ea2010-05-03 22:44:19 +00001637 : Instruction(Ty, iType,
Gabor Greiff6caff662008-05-10 08:32:32 +00001638 OperandTraits<BinaryOperator>::op_begin(this),
1639 OperandTraits<BinaryOperator>::operands(this),
1640 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001641 Op<0>() = S1;
1642 Op<1>() = S2;
Dan Gohmana2414ea2010-05-03 22:44:19 +00001643 init(iType);
Chris Lattner2195fc42007-02-24 00:55:48 +00001644 setName(Name);
1645}
1646
1647BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2,
Chris Lattner229907c2011-07-18 04:54:35 +00001648 Type *Ty, const Twine &Name,
Chris Lattner2195fc42007-02-24 00:55:48 +00001649 BasicBlock *InsertAtEnd)
Dan Gohmana2414ea2010-05-03 22:44:19 +00001650 : Instruction(Ty, iType,
Gabor Greiff6caff662008-05-10 08:32:32 +00001651 OperandTraits<BinaryOperator>::op_begin(this),
1652 OperandTraits<BinaryOperator>::operands(this),
1653 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001654 Op<0>() = S1;
1655 Op<1>() = S2;
Dan Gohmana2414ea2010-05-03 22:44:19 +00001656 init(iType);
Chris Lattner2195fc42007-02-24 00:55:48 +00001657 setName(Name);
1658}
1659
1660
1661void BinaryOperator::init(BinaryOps iType) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001662 Value *LHS = getOperand(0), *RHS = getOperand(1);
Jeffrey Yasskin9b43f332010-12-23 00:58:24 +00001663 (void)LHS; (void)RHS; // Silence warnings.
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001664 assert(LHS->getType() == RHS->getType() &&
1665 "Binary operator operand types must match!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001666#ifndef NDEBUG
1667 switch (iType) {
1668 case Add: case Sub:
Dan Gohmana5b96452009-06-04 22:49:04 +00001669 case Mul:
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001670 assert(getType() == LHS->getType() &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001671 "Arithmetic operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001672 assert(getType()->isIntOrIntVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001673 "Tried to create an integer operation on a non-integer type!");
1674 break;
1675 case FAdd: case FSub:
1676 case FMul:
1677 assert(getType() == LHS->getType() &&
1678 "Arithmetic operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001679 assert(getType()->isFPOrFPVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001680 "Tried to create a floating-point operation on a "
1681 "non-floating-point type!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001682 break;
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001683 case UDiv:
1684 case SDiv:
1685 assert(getType() == LHS->getType() &&
1686 "Arithmetic operation should return same type as operands!");
Duncan Sands19d0b472010-02-16 11:11:14 +00001687 assert((getType()->isIntegerTy() || (getType()->isVectorTy() &&
Duncan Sands9dff9be2010-02-15 16:12:20 +00001688 cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001689 "Incorrect operand type (not integer) for S/UDIV");
1690 break;
1691 case FDiv:
1692 assert(getType() == LHS->getType() &&
1693 "Arithmetic operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001694 assert(getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001695 "Incorrect operand type (not floating point) for FDIV");
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001696 break;
Reid Spencer7eb55b32006-11-02 01:53:59 +00001697 case URem:
1698 case SRem:
1699 assert(getType() == LHS->getType() &&
1700 "Arithmetic operation should return same type as operands!");
Duncan Sands19d0b472010-02-16 11:11:14 +00001701 assert((getType()->isIntegerTy() || (getType()->isVectorTy() &&
Duncan Sands9dff9be2010-02-15 16:12:20 +00001702 cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
Reid Spencer7eb55b32006-11-02 01:53:59 +00001703 "Incorrect operand type (not integer) for S/UREM");
1704 break;
1705 case FRem:
1706 assert(getType() == LHS->getType() &&
1707 "Arithmetic operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001708 assert(getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001709 "Incorrect operand type (not floating point) for FREM");
Reid Spencer7eb55b32006-11-02 01:53:59 +00001710 break;
Reid Spencer2341c222007-02-02 02:16:23 +00001711 case Shl:
1712 case LShr:
1713 case AShr:
1714 assert(getType() == LHS->getType() &&
1715 "Shift operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001716 assert((getType()->isIntegerTy() ||
Duncan Sands19d0b472010-02-16 11:11:14 +00001717 (getType()->isVectorTy() &&
Duncan Sands9dff9be2010-02-15 16:12:20 +00001718 cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
Nate Begemanfecbc8c2008-07-29 15:49:41 +00001719 "Tried to create a shift operation on a non-integral type!");
Reid Spencer2341c222007-02-02 02:16:23 +00001720 break;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001721 case And: case Or:
1722 case Xor:
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001723 assert(getType() == LHS->getType() &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001724 "Logical operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001725 assert((getType()->isIntegerTy() ||
Duncan Sands19d0b472010-02-16 11:11:14 +00001726 (getType()->isVectorTy() &&
Duncan Sands9dff9be2010-02-15 16:12:20 +00001727 cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
Misha Brukman3852f652005-01-27 06:46:38 +00001728 "Tried to create a logical operation on a non-integral type!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001729 break;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001730 default:
1731 break;
1732 }
1733#endif
1734}
1735
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001736BinaryOperator *BinaryOperator::Create(BinaryOps Op, Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001737 const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001738 Instruction *InsertBefore) {
1739 assert(S1->getType() == S2->getType() &&
1740 "Cannot create binary operator with two operands of differing type!");
Reid Spencer266e42b2006-12-23 06:05:41 +00001741 return new BinaryOperator(Op, S1, S2, S1->getType(), Name, InsertBefore);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001742}
1743
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001744BinaryOperator *BinaryOperator::Create(BinaryOps Op, Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001745 const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001746 BasicBlock *InsertAtEnd) {
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001747 BinaryOperator *Res = Create(Op, S1, S2, Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001748 InsertAtEnd->getInstList().push_back(Res);
1749 return Res;
1750}
1751
Dan Gohman5476cfd2009-08-12 16:23:25 +00001752BinaryOperator *BinaryOperator::CreateNeg(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001753 Instruction *InsertBefore) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001754 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Reid Spencer2eadb532007-01-21 00:29:26 +00001755 return new BinaryOperator(Instruction::Sub,
1756 zero, Op,
1757 Op->getType(), Name, InsertBefore);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001758}
1759
Dan Gohman5476cfd2009-08-12 16:23:25 +00001760BinaryOperator *BinaryOperator::CreateNeg(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001761 BasicBlock *InsertAtEnd) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001762 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Reid Spencer2eadb532007-01-21 00:29:26 +00001763 return new BinaryOperator(Instruction::Sub,
1764 zero, Op,
1765 Op->getType(), Name, InsertAtEnd);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001766}
1767
Dan Gohman4ab44202009-12-18 02:58:50 +00001768BinaryOperator *BinaryOperator::CreateNSWNeg(Value *Op, const Twine &Name,
1769 Instruction *InsertBefore) {
1770 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1771 return BinaryOperator::CreateNSWSub(zero, Op, Name, InsertBefore);
1772}
1773
1774BinaryOperator *BinaryOperator::CreateNSWNeg(Value *Op, const Twine &Name,
1775 BasicBlock *InsertAtEnd) {
1776 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1777 return BinaryOperator::CreateNSWSub(zero, Op, Name, InsertAtEnd);
1778}
1779
Duncan Sandsfa5f5962010-02-02 12:53:04 +00001780BinaryOperator *BinaryOperator::CreateNUWNeg(Value *Op, const Twine &Name,
1781 Instruction *InsertBefore) {
1782 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1783 return BinaryOperator::CreateNUWSub(zero, Op, Name, InsertBefore);
1784}
1785
1786BinaryOperator *BinaryOperator::CreateNUWNeg(Value *Op, const Twine &Name,
1787 BasicBlock *InsertAtEnd) {
1788 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1789 return BinaryOperator::CreateNUWSub(zero, Op, Name, InsertAtEnd);
1790}
1791
Dan Gohman5476cfd2009-08-12 16:23:25 +00001792BinaryOperator *BinaryOperator::CreateFNeg(Value *Op, const Twine &Name,
Dan Gohmana5b96452009-06-04 22:49:04 +00001793 Instruction *InsertBefore) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001794 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Chris Lattner47a86bd2012-01-25 06:02:56 +00001795 return new BinaryOperator(Instruction::FSub, zero, Op,
Dan Gohmana5b96452009-06-04 22:49:04 +00001796 Op->getType(), Name, InsertBefore);
1797}
1798
Dan Gohman5476cfd2009-08-12 16:23:25 +00001799BinaryOperator *BinaryOperator::CreateFNeg(Value *Op, const Twine &Name,
Dan Gohmana5b96452009-06-04 22:49:04 +00001800 BasicBlock *InsertAtEnd) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001801 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Chris Lattner47a86bd2012-01-25 06:02:56 +00001802 return new BinaryOperator(Instruction::FSub, zero, Op,
Dan Gohmana5b96452009-06-04 22:49:04 +00001803 Op->getType(), Name, InsertAtEnd);
1804}
1805
Dan Gohman5476cfd2009-08-12 16:23:25 +00001806BinaryOperator *BinaryOperator::CreateNot(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001807 Instruction *InsertBefore) {
Chris Lattner47a86bd2012-01-25 06:02:56 +00001808 Constant *C = Constant::getAllOnesValue(Op->getType());
Chris Lattnere8e7ac42006-03-25 21:54:21 +00001809 return new BinaryOperator(Instruction::Xor, Op, C,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001810 Op->getType(), Name, InsertBefore);
1811}
1812
Dan Gohman5476cfd2009-08-12 16:23:25 +00001813BinaryOperator *BinaryOperator::CreateNot(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001814 BasicBlock *InsertAtEnd) {
Chris Lattner47a86bd2012-01-25 06:02:56 +00001815 Constant *AllOnes = Constant::getAllOnesValue(Op->getType());
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001816 return new BinaryOperator(Instruction::Xor, Op, AllOnes,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001817 Op->getType(), Name, InsertAtEnd);
1818}
1819
1820
1821// isConstantAllOnes - Helper function for several functions below
1822static inline bool isConstantAllOnes(const Value *V) {
Chris Lattner0256be92012-01-27 03:08:05 +00001823 if (const Constant *C = dyn_cast<Constant>(V))
1824 return C->isAllOnesValue();
Chris Lattner1edec382007-06-15 06:04:24 +00001825 return false;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001826}
1827
Owen Andersonbb2501b2009-07-13 22:18:28 +00001828bool BinaryOperator::isNeg(const Value *V) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001829 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1830 if (Bop->getOpcode() == Instruction::Sub)
Owen Andersonbb2501b2009-07-13 22:18:28 +00001831 if (Constant* C = dyn_cast<Constant>(Bop->getOperand(0)))
1832 return C->isNegativeZeroValue();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001833 return false;
1834}
1835
Shuxin Yangf0537ab2013-01-09 00:13:41 +00001836bool BinaryOperator::isFNeg(const Value *V, bool IgnoreZeroSign) {
Dan Gohmana5b96452009-06-04 22:49:04 +00001837 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1838 if (Bop->getOpcode() == Instruction::FSub)
Shuxin Yangf0537ab2013-01-09 00:13:41 +00001839 if (Constant* C = dyn_cast<Constant>(Bop->getOperand(0))) {
1840 if (!IgnoreZeroSign)
1841 IgnoreZeroSign = cast<Instruction>(V)->hasNoSignedZeros();
1842 return !IgnoreZeroSign ? C->isNegativeZeroValue() : C->isZeroValue();
1843 }
Dan Gohmana5b96452009-06-04 22:49:04 +00001844 return false;
1845}
1846
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001847bool BinaryOperator::isNot(const Value *V) {
1848 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1849 return (Bop->getOpcode() == Instruction::Xor &&
1850 (isConstantAllOnes(Bop->getOperand(1)) ||
1851 isConstantAllOnes(Bop->getOperand(0))));
1852 return false;
1853}
1854
Chris Lattner2c7d1772005-04-24 07:28:37 +00001855Value *BinaryOperator::getNegArgument(Value *BinOp) {
Chris Lattner2c7d1772005-04-24 07:28:37 +00001856 return cast<BinaryOperator>(BinOp)->getOperand(1);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001857}
1858
Chris Lattner2c7d1772005-04-24 07:28:37 +00001859const Value *BinaryOperator::getNegArgument(const Value *BinOp) {
1860 return getNegArgument(const_cast<Value*>(BinOp));
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001861}
1862
Dan Gohmana5b96452009-06-04 22:49:04 +00001863Value *BinaryOperator::getFNegArgument(Value *BinOp) {
Dan Gohmana5b96452009-06-04 22:49:04 +00001864 return cast<BinaryOperator>(BinOp)->getOperand(1);
1865}
1866
1867const Value *BinaryOperator::getFNegArgument(const Value *BinOp) {
1868 return getFNegArgument(const_cast<Value*>(BinOp));
1869}
1870
Chris Lattner2c7d1772005-04-24 07:28:37 +00001871Value *BinaryOperator::getNotArgument(Value *BinOp) {
1872 assert(isNot(BinOp) && "getNotArgument on non-'not' instruction!");
1873 BinaryOperator *BO = cast<BinaryOperator>(BinOp);
1874 Value *Op0 = BO->getOperand(0);
1875 Value *Op1 = BO->getOperand(1);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001876 if (isConstantAllOnes(Op0)) return Op1;
1877
1878 assert(isConstantAllOnes(Op1));
1879 return Op0;
1880}
1881
Chris Lattner2c7d1772005-04-24 07:28:37 +00001882const Value *BinaryOperator::getNotArgument(const Value *BinOp) {
1883 return getNotArgument(const_cast<Value*>(BinOp));
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001884}
1885
1886
1887// swapOperands - Exchange the two operands to this instruction. This
1888// instruction is safe to use on any binary instruction and does not
1889// modify the semantics of the instruction. If the instruction is
1890// order dependent (SetLT f.e.) the opcode is changed.
1891//
1892bool BinaryOperator::swapOperands() {
Reid Spencer266e42b2006-12-23 06:05:41 +00001893 if (!isCommutative())
1894 return true; // Can't commute operands
Gabor Greif5ef74042008-05-13 22:51:52 +00001895 Op<0>().swap(Op<1>());
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001896 return false;
1897}
1898
Dan Gohman1b849082009-09-07 23:54:19 +00001899void BinaryOperator::setHasNoUnsignedWrap(bool b) {
1900 cast<OverflowingBinaryOperator>(this)->setHasNoUnsignedWrap(b);
1901}
1902
1903void BinaryOperator::setHasNoSignedWrap(bool b) {
1904 cast<OverflowingBinaryOperator>(this)->setHasNoSignedWrap(b);
1905}
1906
1907void BinaryOperator::setIsExact(bool b) {
Chris Lattner35315d02011-02-06 21:44:57 +00001908 cast<PossiblyExactOperator>(this)->setIsExact(b);
Dan Gohman1b849082009-09-07 23:54:19 +00001909}
1910
Nick Lewycky28a5f252009-09-27 21:33:04 +00001911bool BinaryOperator::hasNoUnsignedWrap() const {
1912 return cast<OverflowingBinaryOperator>(this)->hasNoUnsignedWrap();
1913}
1914
1915bool BinaryOperator::hasNoSignedWrap() const {
1916 return cast<OverflowingBinaryOperator>(this)->hasNoSignedWrap();
1917}
1918
1919bool BinaryOperator::isExact() const {
Chris Lattner35315d02011-02-06 21:44:57 +00001920 return cast<PossiblyExactOperator>(this)->isExact();
Nick Lewycky28a5f252009-09-27 21:33:04 +00001921}
1922
Sanjay Patela982d992014-09-03 01:06:50 +00001923void BinaryOperator::copyIRFlags(const Value *V) {
Sanjay Patel5ad239e2014-09-01 18:44:57 +00001924 // Copy the wrapping flags.
1925 if (auto *OB = dyn_cast<OverflowingBinaryOperator>(V)) {
1926 setHasNoSignedWrap(OB->hasNoSignedWrap());
1927 setHasNoUnsignedWrap(OB->hasNoUnsignedWrap());
1928 }
1929
1930 // Copy the exact flag.
1931 if (auto *PE = dyn_cast<PossiblyExactOperator>(V))
1932 setIsExact(PE->isExact());
1933
1934 // Copy the fast-math flags.
1935 if (auto *FP = dyn_cast<FPMathOperator>(V))
Sanjay Patelb2325b92014-09-02 20:03:00 +00001936 copyFastMathFlags(FP->getFastMathFlags());
Sanjay Patel5ad239e2014-09-01 18:44:57 +00001937}
1938
Sanjay Patela982d992014-09-03 01:06:50 +00001939void BinaryOperator::andIRFlags(const Value *V) {
1940 if (auto *OB = dyn_cast<OverflowingBinaryOperator>(V)) {
1941 setHasNoSignedWrap(hasNoSignedWrap() & OB->hasNoSignedWrap());
1942 setHasNoUnsignedWrap(hasNoUnsignedWrap() & OB->hasNoUnsignedWrap());
1943 }
1944
1945 if (auto *PE = dyn_cast<PossiblyExactOperator>(V))
1946 setIsExact(isExact() & PE->isExact());
1947
1948 if (auto *FP = dyn_cast<FPMathOperator>(V)) {
1949 FastMathFlags FM = getFastMathFlags();
1950 FM &= FP->getFastMathFlags();
1951 copyFastMathFlags(FM);
1952 }
1953}
1954
1955
Chris Lattnerb0b8ddd2006-09-18 04:54:57 +00001956//===----------------------------------------------------------------------===//
Duncan Sands05f4df82012-04-16 16:28:59 +00001957// FPMathOperator Class
1958//===----------------------------------------------------------------------===//
1959
1960/// getFPAccuracy - Get the maximum error permitted by this operation in ULPs.
1961/// An accuracy of 0.0 means that the operation should be performed with the
Duncan Sands9af62982012-04-16 19:39:33 +00001962/// default precision.
Duncan Sands05f4df82012-04-16 16:28:59 +00001963float FPMathOperator::getFPAccuracy() const {
Duncan P. N. Exon Smithde36e802014-11-11 21:30:22 +00001964 const MDNode *MD =
1965 cast<Instruction>(this)->getMetadata(LLVMContext::MD_fpmath);
Duncan Sands05f4df82012-04-16 16:28:59 +00001966 if (!MD)
1967 return 0.0;
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00001968 ConstantFP *Accuracy = mdconst::extract<ConstantFP>(MD->getOperand(0));
Duncan Sands9af62982012-04-16 19:39:33 +00001969 return Accuracy->getValueAPF().convertToFloat();
Duncan Sands05f4df82012-04-16 16:28:59 +00001970}
1971
1972
1973//===----------------------------------------------------------------------===//
Chris Lattnerb0b8ddd2006-09-18 04:54:57 +00001974// CastInst Class
1975//===----------------------------------------------------------------------===//
1976
David Blaikie3a15e142011-12-01 08:00:17 +00001977void CastInst::anchor() {}
1978
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001979// Just determine if this cast only deals with integral->integral conversion.
1980bool CastInst::isIntegerCast() const {
1981 switch (getOpcode()) {
1982 default: return false;
1983 case Instruction::ZExt:
1984 case Instruction::SExt:
1985 case Instruction::Trunc:
1986 return true;
1987 case Instruction::BitCast:
Duncan Sands9dff9be2010-02-15 16:12:20 +00001988 return getOperand(0)->getType()->isIntegerTy() &&
1989 getType()->isIntegerTy();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001990 }
Chris Lattnerb0b8ddd2006-09-18 04:54:57 +00001991}
1992
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001993bool CastInst::isLosslessCast() const {
1994 // Only BitCast can be lossless, exit fast if we're not BitCast
1995 if (getOpcode() != Instruction::BitCast)
1996 return false;
1997
1998 // Identity cast is always lossless
Chris Lattner229907c2011-07-18 04:54:35 +00001999 Type* SrcTy = getOperand(0)->getType();
2000 Type* DstTy = getType();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002001 if (SrcTy == DstTy)
2002 return true;
2003
Reid Spencer8d9336d2006-12-31 05:26:44 +00002004 // Pointer to pointer is always lossless.
Duncan Sands19d0b472010-02-16 11:11:14 +00002005 if (SrcTy->isPointerTy())
2006 return DstTy->isPointerTy();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002007 return false; // Other types have no identity values
2008}
2009
2010/// This function determines if the CastInst does not require any bits to be
2011/// changed in order to effect the cast. Essentially, it identifies cases where
2012/// no code gen is necessary for the cast, hence the name no-op cast. For
2013/// example, the following are all no-op casts:
Dan Gohmane9bc2ba2008-05-12 16:34:30 +00002014/// # bitcast i32* %x to i8*
2015/// # bitcast <2 x i32> %x to <4 x i16>
2016/// # ptrtoint i32* %x to i32 ; on 32-bit plaforms only
Dan Gohman0d7f3b82010-05-28 21:41:37 +00002017/// @brief Determine if the described cast is a no-op.
2018bool CastInst::isNoopCast(Instruction::CastOps Opcode,
Chris Lattner229907c2011-07-18 04:54:35 +00002019 Type *SrcTy,
2020 Type *DestTy,
2021 Type *IntPtrTy) {
Dan Gohman0d7f3b82010-05-28 21:41:37 +00002022 switch (Opcode) {
Craig Topperc514b542012-02-05 22:14:15 +00002023 default: llvm_unreachable("Invalid CastOp");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002024 case Instruction::Trunc:
2025 case Instruction::ZExt:
2026 case Instruction::SExt:
2027 case Instruction::FPTrunc:
2028 case Instruction::FPExt:
2029 case Instruction::UIToFP:
2030 case Instruction::SIToFP:
2031 case Instruction::FPToUI:
2032 case Instruction::FPToSI:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002033 case Instruction::AddrSpaceCast:
2034 // TODO: Target informations may give a more accurate answer here.
2035 return false;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002036 case Instruction::BitCast:
2037 return true; // BitCast never modifies bits.
2038 case Instruction::PtrToInt:
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002039 return IntPtrTy->getScalarSizeInBits() ==
Dan Gohman0d7f3b82010-05-28 21:41:37 +00002040 DestTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002041 case Instruction::IntToPtr:
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002042 return IntPtrTy->getScalarSizeInBits() ==
Dan Gohman0d7f3b82010-05-28 21:41:37 +00002043 SrcTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002044 }
2045}
2046
Dan Gohman0d7f3b82010-05-28 21:41:37 +00002047/// @brief Determine if a cast is a no-op.
Chris Lattner229907c2011-07-18 04:54:35 +00002048bool CastInst::isNoopCast(Type *IntPtrTy) const {
Dan Gohman0d7f3b82010-05-28 21:41:37 +00002049 return isNoopCast(getOpcode(), getOperand(0)->getType(), getType(), IntPtrTy);
2050}
2051
Mehdi Aminia28d91d2015-03-10 02:37:25 +00002052bool CastInst::isNoopCast(const DataLayout &DL) const {
Craig Topperc6207612014-04-09 06:08:46 +00002053 Type *PtrOpTy = nullptr;
Matt Arsenaulta236ea52014-03-06 17:33:55 +00002054 if (getOpcode() == Instruction::PtrToInt)
2055 PtrOpTy = getOperand(0)->getType();
2056 else if (getOpcode() == Instruction::IntToPtr)
2057 PtrOpTy = getType();
2058
Mehdi Aminia28d91d2015-03-10 02:37:25 +00002059 Type *IntPtrTy =
2060 PtrOpTy ? DL.getIntPtrType(PtrOpTy) : DL.getIntPtrType(getContext(), 0);
Matt Arsenaulta236ea52014-03-06 17:33:55 +00002061
2062 return isNoopCast(getOpcode(), getOperand(0)->getType(), getType(), IntPtrTy);
2063}
2064
2065/// This function determines if a pair of casts can be eliminated and what
2066/// opcode should be used in the elimination. This assumes that there are two
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002067/// instructions like this:
2068/// * %F = firstOpcode SrcTy %x to MidTy
2069/// * %S = secondOpcode MidTy %F to DstTy
2070/// The function returns a resultOpcode so these two casts can be replaced with:
2071/// * %Replacement = resultOpcode %SrcTy %x to DstTy
2072/// If no such cast is permited, the function returns 0.
2073unsigned CastInst::isEliminableCastPair(
2074 Instruction::CastOps firstOp, Instruction::CastOps secondOp,
Duncan Sandse2395dc2012-10-30 16:03:32 +00002075 Type *SrcTy, Type *MidTy, Type *DstTy, Type *SrcIntPtrTy, Type *MidIntPtrTy,
2076 Type *DstIntPtrTy) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002077 // Define the 144 possibilities for these two cast instructions. The values
2078 // in this matrix determine what to do in a given situation and select the
2079 // case in the switch below. The rows correspond to firstOp, the columns
2080 // correspond to secondOp. In looking at the table below, keep in mind
2081 // the following cast properties:
2082 //
2083 // Size Compare Source Destination
2084 // Operator Src ? Size Type Sign Type Sign
2085 // -------- ------------ ------------------- ---------------------
2086 // TRUNC > Integer Any Integral Any
2087 // ZEXT < Integral Unsigned Integer Any
2088 // SEXT < Integral Signed Integer Any
2089 // FPTOUI n/a FloatPt n/a Integral Unsigned
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002090 // FPTOSI n/a FloatPt n/a Integral Signed
2091 // UITOFP n/a Integral Unsigned FloatPt n/a
2092 // SITOFP n/a Integral Signed FloatPt n/a
2093 // FPTRUNC > FloatPt n/a FloatPt n/a
2094 // FPEXT < FloatPt n/a FloatPt n/a
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002095 // PTRTOINT n/a Pointer n/a Integral Unsigned
2096 // INTTOPTR n/a Integral Unsigned Pointer n/a
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002097 // BITCAST = FirstClass n/a FirstClass n/a
2098 // ADDRSPCST n/a Pointer n/a Pointer n/a
Chris Lattner6f6b4972006-12-05 23:43:59 +00002099 //
2100 // NOTE: some transforms are safe, but we consider them to be non-profitable.
Dan Gohman4fe64de2009-06-14 23:30:43 +00002101 // For example, we could merge "fptoui double to i32" + "zext i32 to i64",
2102 // into "fptoui double to i64", but this loses information about the range
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002103 // of the produced value (we no longer know the top-part is all zeros).
Chris Lattner6f6b4972006-12-05 23:43:59 +00002104 // Further this conversion is often much more expensive for typical hardware,
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002105 // and causes issues when building libgcc. We disallow fptosi+sext for the
Chris Lattner6f6b4972006-12-05 23:43:59 +00002106 // same reason.
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002107 const unsigned numCastOps =
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002108 Instruction::CastOpsEnd - Instruction::CastOpsBegin;
2109 static const uint8_t CastResults[numCastOps][numCastOps] = {
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002110 // T F F U S F F P I B A -+
2111 // R Z S P P I I T P 2 N T S |
2112 // U E E 2 2 2 2 R E I T C C +- secondOp
2113 // N X X U S F F N X N 2 V V |
2114 // C T T I I P P C T T P T T -+
2115 { 1, 0, 0,99,99, 0, 0,99,99,99, 0, 3, 0}, // Trunc -+
Fiona Glaser0d41db12015-04-21 00:05:41 +00002116 { 8, 1, 9,99,99, 2,17,99,99,99, 2, 3, 0}, // ZExt |
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002117 { 8, 0, 1,99,99, 0, 2,99,99,99, 0, 3, 0}, // SExt |
2118 { 0, 0, 0,99,99, 0, 0,99,99,99, 0, 3, 0}, // FPToUI |
2119 { 0, 0, 0,99,99, 0, 0,99,99,99, 0, 3, 0}, // FPToSI |
2120 { 99,99,99, 0, 0,99,99, 0, 0,99,99, 4, 0}, // UIToFP +- firstOp
2121 { 99,99,99, 0, 0,99,99, 0, 0,99,99, 4, 0}, // SIToFP |
2122 { 99,99,99, 0, 0,99,99, 1, 0,99,99, 4, 0}, // FPTrunc |
2123 { 99,99,99, 2, 2,99,99,10, 2,99,99, 4, 0}, // FPExt |
2124 { 1, 0, 0,99,99, 0, 0,99,99,99, 7, 3, 0}, // PtrToInt |
2125 { 99,99,99,99,99,99,99,99,99,11,99,15, 0}, // IntToPtr |
2126 { 5, 5, 5, 6, 6, 5, 5, 6, 6,16, 5, 1,14}, // BitCast |
2127 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13,12}, // AddrSpaceCast -+
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002128 };
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002129
Chris Lattner25eea4d2010-07-12 01:19:22 +00002130 // If either of the casts are a bitcast from scalar to vector, disallow the
Nadav Rotem5fc81ff2011-08-29 19:58:36 +00002131 // merging. However, bitcast of A->B->A are allowed.
2132 bool isFirstBitcast = (firstOp == Instruction::BitCast);
2133 bool isSecondBitcast = (secondOp == Instruction::BitCast);
2134 bool chainedBitcast = (SrcTy == DstTy && isFirstBitcast && isSecondBitcast);
2135
2136 // Check if any of the bitcasts convert scalars<->vectors.
2137 if ((isFirstBitcast && isa<VectorType>(SrcTy) != isa<VectorType>(MidTy)) ||
2138 (isSecondBitcast && isa<VectorType>(MidTy) != isa<VectorType>(DstTy)))
2139 // Unless we are bitcasing to the original type, disallow optimizations.
2140 if (!chainedBitcast) return 0;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002141
2142 int ElimCase = CastResults[firstOp-Instruction::CastOpsBegin]
2143 [secondOp-Instruction::CastOpsBegin];
2144 switch (ElimCase) {
2145 case 0:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002146 // Categorically disallowed.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002147 return 0;
2148 case 1:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002149 // Allowed, use first cast's opcode.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002150 return firstOp;
2151 case 2:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002152 // Allowed, use second cast's opcode.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002153 return secondOp;
2154 case 3:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002155 // No-op cast in second op implies firstOp as long as the DestTy
Mon P Wange04b4562010-01-23 04:35:57 +00002156 // is integer and we are not converting between a vector and a
Alp Tokerf907b892013-12-05 05:44:44 +00002157 // non-vector type.
Duncan Sands19d0b472010-02-16 11:11:14 +00002158 if (!SrcTy->isVectorTy() && DstTy->isIntegerTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002159 return firstOp;
2160 return 0;
2161 case 4:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002162 // No-op cast in second op implies firstOp as long as the DestTy
Chris Lattner531732b2010-01-23 04:42:42 +00002163 // is floating point.
Duncan Sands9dff9be2010-02-15 16:12:20 +00002164 if (DstTy->isFloatingPointTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002165 return firstOp;
2166 return 0;
2167 case 5:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002168 // No-op cast in first op implies secondOp as long as the SrcTy
Chris Lattner531732b2010-01-23 04:42:42 +00002169 // is an integer.
Duncan Sands9dff9be2010-02-15 16:12:20 +00002170 if (SrcTy->isIntegerTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002171 return secondOp;
2172 return 0;
2173 case 6:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002174 // No-op cast in first op implies secondOp as long as the SrcTy
Chris Lattner531732b2010-01-23 04:42:42 +00002175 // is a floating point.
Duncan Sands9dff9be2010-02-15 16:12:20 +00002176 if (SrcTy->isFloatingPointTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002177 return secondOp;
2178 return 0;
Matt Arsenault130e0ef2013-07-30 22:27:10 +00002179 case 7: {
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002180 // Cannot simplify if address spaces are different!
2181 if (SrcTy->getPointerAddressSpace() != DstTy->getPointerAddressSpace())
2182 return 0;
2183
Matt Arsenault130e0ef2013-07-30 22:27:10 +00002184 unsigned MidSize = MidTy->getScalarSizeInBits();
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002185 // We can still fold this without knowing the actual sizes as long we
2186 // know that the intermediate pointer is the largest possible
2187 // pointer size.
2188 // FIXME: Is this always true?
2189 if (MidSize == 64)
Matt Arsenault130e0ef2013-07-30 22:27:10 +00002190 return Instruction::BitCast;
2191
2192 // ptrtoint, inttoptr -> bitcast (ptr -> ptr) if int size is >= ptr size.
Duncan Sandse2395dc2012-10-30 16:03:32 +00002193 if (!SrcIntPtrTy || DstIntPtrTy != SrcIntPtrTy)
Dan Gohman9413de12009-07-21 23:19:40 +00002194 return 0;
Duncan Sandse2395dc2012-10-30 16:03:32 +00002195 unsigned PtrSize = SrcIntPtrTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002196 if (MidSize >= PtrSize)
2197 return Instruction::BitCast;
2198 return 0;
2199 }
2200 case 8: {
2201 // ext, trunc -> bitcast, if the SrcTy and DstTy are same size
2202 // ext, trunc -> ext, if sizeof(SrcTy) < sizeof(DstTy)
2203 // ext, trunc -> trunc, if sizeof(SrcTy) > sizeof(DstTy)
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002204 unsigned SrcSize = SrcTy->getScalarSizeInBits();
2205 unsigned DstSize = DstTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002206 if (SrcSize == DstSize)
2207 return Instruction::BitCast;
2208 else if (SrcSize < DstSize)
2209 return firstOp;
2210 return secondOp;
2211 }
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002212 case 9:
2213 // zext, sext -> zext, because sext can't sign extend after zext
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002214 return Instruction::ZExt;
2215 case 10:
2216 // fpext followed by ftrunc is allowed if the bit size returned to is
2217 // the same as the original, in which case its just a bitcast
2218 if (SrcTy == DstTy)
2219 return Instruction::BitCast;
2220 return 0; // If the types are not the same we can't eliminate it.
Matt Arsenault130e0ef2013-07-30 22:27:10 +00002221 case 11: {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002222 // inttoptr, ptrtoint -> bitcast if SrcSize<=PtrSize and SrcSize==DstSize
Duncan Sandse2395dc2012-10-30 16:03:32 +00002223 if (!MidIntPtrTy)
Dan Gohman9413de12009-07-21 23:19:40 +00002224 return 0;
Duncan Sandse2395dc2012-10-30 16:03:32 +00002225 unsigned PtrSize = MidIntPtrTy->getScalarSizeInBits();
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002226 unsigned SrcSize = SrcTy->getScalarSizeInBits();
2227 unsigned DstSize = DstTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002228 if (SrcSize <= PtrSize && SrcSize == DstSize)
2229 return Instruction::BitCast;
2230 return 0;
2231 }
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002232 case 12: {
2233 // addrspacecast, addrspacecast -> bitcast, if SrcAS == DstAS
2234 // addrspacecast, addrspacecast -> addrspacecast, if SrcAS != DstAS
2235 if (SrcTy->getPointerAddressSpace() != DstTy->getPointerAddressSpace())
2236 return Instruction::AddrSpaceCast;
2237 return Instruction::BitCast;
2238 }
2239 case 13:
2240 // FIXME: this state can be merged with (1), but the following assert
2241 // is useful to check the correcteness of the sequence due to semantic
2242 // change of bitcast.
2243 assert(
2244 SrcTy->isPtrOrPtrVectorTy() &&
2245 MidTy->isPtrOrPtrVectorTy() &&
2246 DstTy->isPtrOrPtrVectorTy() &&
2247 SrcTy->getPointerAddressSpace() != MidTy->getPointerAddressSpace() &&
2248 MidTy->getPointerAddressSpace() == DstTy->getPointerAddressSpace() &&
2249 "Illegal addrspacecast, bitcast sequence!");
2250 // Allowed, use first cast's opcode
2251 return firstOp;
2252 case 14:
Jingyue Wu77145d92014-06-06 21:52:55 +00002253 // bitcast, addrspacecast -> addrspacecast if the element type of
2254 // bitcast's source is the same as that of addrspacecast's destination.
2255 if (SrcTy->getPointerElementType() == DstTy->getPointerElementType())
2256 return Instruction::AddrSpaceCast;
2257 return 0;
2258
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002259 case 15:
2260 // FIXME: this state can be merged with (1), but the following assert
2261 // is useful to check the correcteness of the sequence due to semantic
2262 // change of bitcast.
2263 assert(
2264 SrcTy->isIntOrIntVectorTy() &&
2265 MidTy->isPtrOrPtrVectorTy() &&
2266 DstTy->isPtrOrPtrVectorTy() &&
2267 MidTy->getPointerAddressSpace() == DstTy->getPointerAddressSpace() &&
2268 "Illegal inttoptr, bitcast sequence!");
2269 // Allowed, use first cast's opcode
2270 return firstOp;
2271 case 16:
2272 // FIXME: this state can be merged with (2), but the following assert
2273 // is useful to check the correcteness of the sequence due to semantic
2274 // change of bitcast.
2275 assert(
2276 SrcTy->isPtrOrPtrVectorTy() &&
2277 MidTy->isPtrOrPtrVectorTy() &&
2278 DstTy->isIntOrIntVectorTy() &&
2279 SrcTy->getPointerAddressSpace() == MidTy->getPointerAddressSpace() &&
2280 "Illegal bitcast, ptrtoint sequence!");
2281 // Allowed, use second cast's opcode
2282 return secondOp;
Fiona Glaser0d41db12015-04-21 00:05:41 +00002283 case 17:
2284 // (sitofp (zext x)) -> (uitofp x)
2285 return Instruction::UIToFP;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002286 case 99:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002287 // Cast combination can't happen (error in input). This is for all cases
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002288 // where the MidTy is not the same for the two cast instructions.
Craig Topperc514b542012-02-05 22:14:15 +00002289 llvm_unreachable("Invalid Cast Combination");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002290 default:
Craig Topperc514b542012-02-05 22:14:15 +00002291 llvm_unreachable("Error in CastResults table!!!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002292 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002293}
2294
Chris Lattner229907c2011-07-18 04:54:35 +00002295CastInst *CastInst::Create(Instruction::CastOps op, Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002296 const Twine &Name, Instruction *InsertBefore) {
Duncan Sands7f646562011-05-18 09:21:57 +00002297 assert(castIsValid(op, S, Ty) && "Invalid cast!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002298 // Construct and return the appropriate CastInst subclass
2299 switch (op) {
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002300 case Trunc: return new TruncInst (S, Ty, Name, InsertBefore);
2301 case ZExt: return new ZExtInst (S, Ty, Name, InsertBefore);
2302 case SExt: return new SExtInst (S, Ty, Name, InsertBefore);
2303 case FPTrunc: return new FPTruncInst (S, Ty, Name, InsertBefore);
2304 case FPExt: return new FPExtInst (S, Ty, Name, InsertBefore);
2305 case UIToFP: return new UIToFPInst (S, Ty, Name, InsertBefore);
2306 case SIToFP: return new SIToFPInst (S, Ty, Name, InsertBefore);
2307 case FPToUI: return new FPToUIInst (S, Ty, Name, InsertBefore);
2308 case FPToSI: return new FPToSIInst (S, Ty, Name, InsertBefore);
2309 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertBefore);
2310 case IntToPtr: return new IntToPtrInst (S, Ty, Name, InsertBefore);
2311 case BitCast: return new BitCastInst (S, Ty, Name, InsertBefore);
2312 case AddrSpaceCast: return new AddrSpaceCastInst (S, Ty, Name, InsertBefore);
2313 default: llvm_unreachable("Invalid opcode provided");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002314 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002315}
2316
Chris Lattner229907c2011-07-18 04:54:35 +00002317CastInst *CastInst::Create(Instruction::CastOps op, Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002318 const Twine &Name, BasicBlock *InsertAtEnd) {
Duncan Sands7f646562011-05-18 09:21:57 +00002319 assert(castIsValid(op, S, Ty) && "Invalid cast!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002320 // Construct and return the appropriate CastInst subclass
2321 switch (op) {
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002322 case Trunc: return new TruncInst (S, Ty, Name, InsertAtEnd);
2323 case ZExt: return new ZExtInst (S, Ty, Name, InsertAtEnd);
2324 case SExt: return new SExtInst (S, Ty, Name, InsertAtEnd);
2325 case FPTrunc: return new FPTruncInst (S, Ty, Name, InsertAtEnd);
2326 case FPExt: return new FPExtInst (S, Ty, Name, InsertAtEnd);
2327 case UIToFP: return new UIToFPInst (S, Ty, Name, InsertAtEnd);
2328 case SIToFP: return new SIToFPInst (S, Ty, Name, InsertAtEnd);
2329 case FPToUI: return new FPToUIInst (S, Ty, Name, InsertAtEnd);
2330 case FPToSI: return new FPToSIInst (S, Ty, Name, InsertAtEnd);
2331 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertAtEnd);
2332 case IntToPtr: return new IntToPtrInst (S, Ty, Name, InsertAtEnd);
2333 case BitCast: return new BitCastInst (S, Ty, Name, InsertAtEnd);
2334 case AddrSpaceCast: return new AddrSpaceCastInst (S, Ty, Name, InsertAtEnd);
2335 default: llvm_unreachable("Invalid opcode provided");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002336 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002337}
2338
Chris Lattner229907c2011-07-18 04:54:35 +00002339CastInst *CastInst::CreateZExtOrBitCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002340 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002341 Instruction *InsertBefore) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002342 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002343 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
2344 return Create(Instruction::ZExt, S, Ty, Name, InsertBefore);
Reid Spencer5c140882006-12-04 20:17:56 +00002345}
2346
Chris Lattner229907c2011-07-18 04:54:35 +00002347CastInst *CastInst::CreateZExtOrBitCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002348 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002349 BasicBlock *InsertAtEnd) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002350 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002351 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
2352 return Create(Instruction::ZExt, S, Ty, Name, InsertAtEnd);
Reid Spencer5c140882006-12-04 20:17:56 +00002353}
2354
Chris Lattner229907c2011-07-18 04:54:35 +00002355CastInst *CastInst::CreateSExtOrBitCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002356 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002357 Instruction *InsertBefore) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002358 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002359 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
2360 return Create(Instruction::SExt, S, Ty, Name, InsertBefore);
Reid Spencer5c140882006-12-04 20:17:56 +00002361}
2362
Chris Lattner229907c2011-07-18 04:54:35 +00002363CastInst *CastInst::CreateSExtOrBitCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002364 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002365 BasicBlock *InsertAtEnd) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002366 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002367 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
2368 return Create(Instruction::SExt, S, Ty, Name, InsertAtEnd);
Reid Spencer5c140882006-12-04 20:17:56 +00002369}
2370
Chris Lattner229907c2011-07-18 04:54:35 +00002371CastInst *CastInst::CreateTruncOrBitCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002372 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002373 Instruction *InsertBefore) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002374 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002375 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
2376 return Create(Instruction::Trunc, S, Ty, Name, InsertBefore);
Reid Spencer5c140882006-12-04 20:17:56 +00002377}
2378
Chris Lattner229907c2011-07-18 04:54:35 +00002379CastInst *CastInst::CreateTruncOrBitCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002380 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002381 BasicBlock *InsertAtEnd) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002382 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002383 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
2384 return Create(Instruction::Trunc, S, Ty, Name, InsertAtEnd);
Reid Spencer5c140882006-12-04 20:17:56 +00002385}
2386
Chris Lattner229907c2011-07-18 04:54:35 +00002387CastInst *CastInst::CreatePointerCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002388 const Twine &Name,
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002389 BasicBlock *InsertAtEnd) {
Matt Arsenault065ced92013-07-31 00:17:33 +00002390 assert(S->getType()->isPtrOrPtrVectorTy() && "Invalid cast");
2391 assert((Ty->isIntOrIntVectorTy() || Ty->isPtrOrPtrVectorTy()) &&
2392 "Invalid cast");
2393 assert(Ty->isVectorTy() == S->getType()->isVectorTy() && "Invalid cast");
Richard Trieu8dc43232013-07-31 04:07:28 +00002394 assert((!Ty->isVectorTy() ||
2395 Ty->getVectorNumElements() == S->getType()->getVectorNumElements()) &&
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002396 "Invalid cast");
2397
Matt Arsenault065ced92013-07-31 00:17:33 +00002398 if (Ty->isIntOrIntVectorTy())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002399 return Create(Instruction::PtrToInt, S, Ty, Name, InsertAtEnd);
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002400
Matt Arsenault740980e2014-07-14 17:24:35 +00002401 return CreatePointerBitCastOrAddrSpaceCast(S, Ty, Name, InsertAtEnd);
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002402}
2403
2404/// @brief Create a BitCast or a PtrToInt cast instruction
Matt Arsenault065ced92013-07-31 00:17:33 +00002405CastInst *CastInst::CreatePointerCast(Value *S, Type *Ty,
2406 const Twine &Name,
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002407 Instruction *InsertBefore) {
Evgeniy Stepanovc9bd35b2013-01-15 16:43:00 +00002408 assert(S->getType()->isPtrOrPtrVectorTy() && "Invalid cast");
2409 assert((Ty->isIntOrIntVectorTy() || Ty->isPtrOrPtrVectorTy()) &&
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002410 "Invalid cast");
Matt Arsenault065ced92013-07-31 00:17:33 +00002411 assert(Ty->isVectorTy() == S->getType()->isVectorTy() && "Invalid cast");
Richard Trieu8dc43232013-07-31 04:07:28 +00002412 assert((!Ty->isVectorTy() ||
2413 Ty->getVectorNumElements() == S->getType()->getVectorNumElements()) &&
Matt Arsenault065ced92013-07-31 00:17:33 +00002414 "Invalid cast");
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002415
Evgeniy Stepanovc9bd35b2013-01-15 16:43:00 +00002416 if (Ty->isIntOrIntVectorTy())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002417 return Create(Instruction::PtrToInt, S, Ty, Name, InsertBefore);
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002418
Matt Arsenault740980e2014-07-14 17:24:35 +00002419 return CreatePointerBitCastOrAddrSpaceCast(S, Ty, Name, InsertBefore);
2420}
2421
2422CastInst *CastInst::CreatePointerBitCastOrAddrSpaceCast(
2423 Value *S, Type *Ty,
2424 const Twine &Name,
2425 BasicBlock *InsertAtEnd) {
2426 assert(S->getType()->isPtrOrPtrVectorTy() && "Invalid cast");
2427 assert(Ty->isPtrOrPtrVectorTy() && "Invalid cast");
2428
2429 if (S->getType()->getPointerAddressSpace() != Ty->getPointerAddressSpace())
2430 return Create(Instruction::AddrSpaceCast, S, Ty, Name, InsertAtEnd);
2431
2432 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
2433}
2434
2435CastInst *CastInst::CreatePointerBitCastOrAddrSpaceCast(
2436 Value *S, Type *Ty,
2437 const Twine &Name,
2438 Instruction *InsertBefore) {
2439 assert(S->getType()->isPtrOrPtrVectorTy() && "Invalid cast");
2440 assert(Ty->isPtrOrPtrVectorTy() && "Invalid cast");
2441
2442 if (S->getType()->getPointerAddressSpace() != Ty->getPointerAddressSpace())
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002443 return Create(Instruction::AddrSpaceCast, S, Ty, Name, InsertBefore);
2444
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002445 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002446}
2447
Chandler Carruth1a3c2c42014-11-25 08:20:27 +00002448CastInst *CastInst::CreateBitOrPointerCast(Value *S, Type *Ty,
2449 const Twine &Name,
2450 Instruction *InsertBefore) {
2451 if (S->getType()->isPointerTy() && Ty->isIntegerTy())
2452 return Create(Instruction::PtrToInt, S, Ty, Name, InsertBefore);
2453 if (S->getType()->isIntegerTy() && Ty->isPointerTy())
2454 return Create(Instruction::IntToPtr, S, Ty, Name, InsertBefore);
2455
2456 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
2457}
2458
Matt Arsenault740980e2014-07-14 17:24:35 +00002459CastInst *CastInst::CreateIntegerCast(Value *C, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002460 bool isSigned, const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002461 Instruction *InsertBefore) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002462 assert(C->getType()->isIntOrIntVectorTy() && Ty->isIntOrIntVectorTy() &&
Chris Lattner5370ae72010-01-10 20:21:42 +00002463 "Invalid integer cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002464 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2465 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002466 Instruction::CastOps opcode =
2467 (SrcBits == DstBits ? Instruction::BitCast :
2468 (SrcBits > DstBits ? Instruction::Trunc :
2469 (isSigned ? Instruction::SExt : Instruction::ZExt)));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002470 return Create(opcode, C, Ty, Name, InsertBefore);
Reid Spencer7e933472006-12-12 00:49:44 +00002471}
2472
Chris Lattner229907c2011-07-18 04:54:35 +00002473CastInst *CastInst::CreateIntegerCast(Value *C, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002474 bool isSigned, const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002475 BasicBlock *InsertAtEnd) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002476 assert(C->getType()->isIntOrIntVectorTy() && Ty->isIntOrIntVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00002477 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002478 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2479 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002480 Instruction::CastOps opcode =
2481 (SrcBits == DstBits ? Instruction::BitCast :
2482 (SrcBits > DstBits ? Instruction::Trunc :
2483 (isSigned ? Instruction::SExt : Instruction::ZExt)));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002484 return Create(opcode, C, Ty, Name, InsertAtEnd);
Reid Spencer7e933472006-12-12 00:49:44 +00002485}
2486
Chris Lattner229907c2011-07-18 04:54:35 +00002487CastInst *CastInst::CreateFPCast(Value *C, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002488 const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002489 Instruction *InsertBefore) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002490 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer7e933472006-12-12 00:49:44 +00002491 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002492 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2493 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002494 Instruction::CastOps opcode =
2495 (SrcBits == DstBits ? Instruction::BitCast :
2496 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002497 return Create(opcode, C, Ty, Name, InsertBefore);
Reid Spencer7e933472006-12-12 00:49:44 +00002498}
2499
Chris Lattner229907c2011-07-18 04:54:35 +00002500CastInst *CastInst::CreateFPCast(Value *C, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002501 const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002502 BasicBlock *InsertAtEnd) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002503 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer7e933472006-12-12 00:49:44 +00002504 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002505 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2506 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002507 Instruction::CastOps opcode =
2508 (SrcBits == DstBits ? Instruction::BitCast :
2509 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002510 return Create(opcode, C, Ty, Name, InsertAtEnd);
Reid Spencer7e933472006-12-12 00:49:44 +00002511}
2512
Matt Arsenaultb4019ae2013-07-30 22:02:14 +00002513// Check whether it is valid to call getCastOpcode for these types.
2514// This routine must be kept in sync with getCastOpcode.
2515bool CastInst::isCastable(Type *SrcTy, Type *DestTy) {
2516 if (!SrcTy->isFirstClassType() || !DestTy->isFirstClassType())
2517 return false;
2518
2519 if (SrcTy == DestTy)
2520 return true;
2521
2522 if (VectorType *SrcVecTy = dyn_cast<VectorType>(SrcTy))
2523 if (VectorType *DestVecTy = dyn_cast<VectorType>(DestTy))
2524 if (SrcVecTy->getNumElements() == DestVecTy->getNumElements()) {
2525 // An element by element cast. Valid if casting the elements is valid.
2526 SrcTy = SrcVecTy->getElementType();
2527 DestTy = DestVecTy->getElementType();
2528 }
2529
2530 // Get the bit sizes, we'll need these
2531 unsigned SrcBits = SrcTy->getPrimitiveSizeInBits(); // 0 for ptr
2532 unsigned DestBits = DestTy->getPrimitiveSizeInBits(); // 0 for ptr
2533
2534 // Run through the possibilities ...
2535 if (DestTy->isIntegerTy()) { // Casting to integral
David Blaikie9965c5a2015-03-23 19:51:23 +00002536 if (SrcTy->isIntegerTy()) // Casting from integral
Matt Arsenaultb4019ae2013-07-30 22:02:14 +00002537 return true;
David Blaikie9965c5a2015-03-23 19:51:23 +00002538 if (SrcTy->isFloatingPointTy()) // Casting from floating pt
Matt Arsenaultb4019ae2013-07-30 22:02:14 +00002539 return true;
David Blaikie9965c5a2015-03-23 19:51:23 +00002540 if (SrcTy->isVectorTy()) // Casting from vector
Matt Arsenaultb4019ae2013-07-30 22:02:14 +00002541 return DestBits == SrcBits;
David Blaikie9965c5a2015-03-23 19:51:23 +00002542 // Casting from something else
2543 return SrcTy->isPointerTy();
2544 }
2545 if (DestTy->isFloatingPointTy()) { // Casting to floating pt
2546 if (SrcTy->isIntegerTy()) // Casting from integral
Matt Arsenaultb4019ae2013-07-30 22:02:14 +00002547 return true;
David Blaikie9965c5a2015-03-23 19:51:23 +00002548 if (SrcTy->isFloatingPointTy()) // Casting from floating pt
Matt Arsenaultb4019ae2013-07-30 22:02:14 +00002549 return true;
David Blaikie9965c5a2015-03-23 19:51:23 +00002550 if (SrcTy->isVectorTy()) // Casting from vector
Matt Arsenaultb4019ae2013-07-30 22:02:14 +00002551 return DestBits == SrcBits;
David Blaikie9965c5a2015-03-23 19:51:23 +00002552 // Casting from something else
Matt Arsenaultb4019ae2013-07-30 22:02:14 +00002553 return false;
2554 }
David Blaikie9965c5a2015-03-23 19:51:23 +00002555 if (DestTy->isVectorTy()) // Casting to vector
2556 return DestBits == SrcBits;
2557 if (DestTy->isPointerTy()) { // Casting to pointer
2558 if (SrcTy->isPointerTy()) // Casting from pointer
2559 return true;
2560 return SrcTy->isIntegerTy(); // Casting from integral
2561 }
2562 if (DestTy->isX86_MMXTy()) {
2563 if (SrcTy->isVectorTy())
2564 return DestBits == SrcBits; // 64-bit vector to MMX
2565 return false;
2566 } // Casting to something else
2567 return false;
Matt Arsenaultb4019ae2013-07-30 22:02:14 +00002568}
2569
Matt Arsenaultcacbb232013-07-30 20:45:05 +00002570bool CastInst::isBitCastable(Type *SrcTy, Type *DestTy) {
2571 if (!SrcTy->isFirstClassType() || !DestTy->isFirstClassType())
2572 return false;
2573
2574 if (SrcTy == DestTy)
2575 return true;
2576
2577 if (VectorType *SrcVecTy = dyn_cast<VectorType>(SrcTy)) {
2578 if (VectorType *DestVecTy = dyn_cast<VectorType>(DestTy)) {
2579 if (SrcVecTy->getNumElements() == DestVecTy->getNumElements()) {
2580 // An element by element cast. Valid if casting the elements is valid.
2581 SrcTy = SrcVecTy->getElementType();
2582 DestTy = DestVecTy->getElementType();
2583 }
2584 }
2585 }
2586
2587 if (PointerType *DestPtrTy = dyn_cast<PointerType>(DestTy)) {
2588 if (PointerType *SrcPtrTy = dyn_cast<PointerType>(SrcTy)) {
2589 return SrcPtrTy->getAddressSpace() == DestPtrTy->getAddressSpace();
2590 }
2591 }
2592
2593 unsigned SrcBits = SrcTy->getPrimitiveSizeInBits(); // 0 for ptr
2594 unsigned DestBits = DestTy->getPrimitiveSizeInBits(); // 0 for ptr
2595
2596 // Could still have vectors of pointers if the number of elements doesn't
2597 // match
2598 if (SrcBits == 0 || DestBits == 0)
2599 return false;
2600
2601 if (SrcBits != DestBits)
2602 return false;
2603
2604 if (DestTy->isX86_MMXTy() || SrcTy->isX86_MMXTy())
2605 return false;
2606
2607 return true;
2608}
2609
Chandler Carruth1a3c2c42014-11-25 08:20:27 +00002610bool CastInst::isBitOrNoopPointerCastable(Type *SrcTy, Type *DestTy,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00002611 const DataLayout &DL) {
Chandler Carruth1a3c2c42014-11-25 08:20:27 +00002612 if (auto *PtrTy = dyn_cast<PointerType>(SrcTy))
2613 if (auto *IntTy = dyn_cast<IntegerType>(DestTy))
Mehdi Aminia28d91d2015-03-10 02:37:25 +00002614 return IntTy->getBitWidth() == DL.getPointerTypeSizeInBits(PtrTy);
Chandler Carruth1a3c2c42014-11-25 08:20:27 +00002615 if (auto *PtrTy = dyn_cast<PointerType>(DestTy))
2616 if (auto *IntTy = dyn_cast<IntegerType>(SrcTy))
Mehdi Aminia28d91d2015-03-10 02:37:25 +00002617 return IntTy->getBitWidth() == DL.getPointerTypeSizeInBits(PtrTy);
Chandler Carruth1a3c2c42014-11-25 08:20:27 +00002618
2619 return isBitCastable(SrcTy, DestTy);
2620}
2621
Matt Arsenaultcacbb232013-07-30 20:45:05 +00002622// Provide a way to get a "cast" where the cast opcode is inferred from the
2623// types and size of the operand. This, basically, is a parallel of the
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002624// logic in the castIsValid function below. This axiom should hold:
2625// castIsValid( getCastOpcode(Val, Ty), Val, Ty)
2626// should not assert in castIsValid. In other words, this produces a "correct"
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002627// casting opcode for the arguments passed to it.
Duncan Sands55e50902008-01-06 10:12:28 +00002628// This routine must be kept in sync with isCastable.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002629Instruction::CastOps
Reid Spencerc4dacf22006-12-04 02:43:42 +00002630CastInst::getCastOpcode(
Chris Lattner229907c2011-07-18 04:54:35 +00002631 const Value *Src, bool SrcIsSigned, Type *DestTy, bool DestIsSigned) {
2632 Type *SrcTy = Src->getType();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002633
Duncan Sands55e50902008-01-06 10:12:28 +00002634 assert(SrcTy->isFirstClassType() && DestTy->isFirstClassType() &&
2635 "Only first class types are castable!");
2636
Duncan Sandsa8514532011-05-18 07:13:41 +00002637 if (SrcTy == DestTy)
2638 return BitCast;
2639
Matt Arsenaultcacbb232013-07-30 20:45:05 +00002640 // FIXME: Check address space sizes here
Chris Lattner229907c2011-07-18 04:54:35 +00002641 if (VectorType *SrcVecTy = dyn_cast<VectorType>(SrcTy))
2642 if (VectorType *DestVecTy = dyn_cast<VectorType>(DestTy))
Duncan Sandsa8514532011-05-18 07:13:41 +00002643 if (SrcVecTy->getNumElements() == DestVecTy->getNumElements()) {
2644 // An element by element cast. Find the appropriate opcode based on the
2645 // element types.
2646 SrcTy = SrcVecTy->getElementType();
2647 DestTy = DestVecTy->getElementType();
2648 }
2649
2650 // Get the bit sizes, we'll need these
Duncan Sands7f646562011-05-18 09:21:57 +00002651 unsigned SrcBits = SrcTy->getPrimitiveSizeInBits(); // 0 for ptr
2652 unsigned DestBits = DestTy->getPrimitiveSizeInBits(); // 0 for ptr
Duncan Sandsa8514532011-05-18 07:13:41 +00002653
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002654 // Run through the possibilities ...
Duncan Sands9dff9be2010-02-15 16:12:20 +00002655 if (DestTy->isIntegerTy()) { // Casting to integral
2656 if (SrcTy->isIntegerTy()) { // Casting from integral
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002657 if (DestBits < SrcBits)
2658 return Trunc; // int -> smaller int
2659 else if (DestBits > SrcBits) { // its an extension
Reid Spencerc4dacf22006-12-04 02:43:42 +00002660 if (SrcIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002661 return SExt; // signed -> SEXT
2662 else
2663 return ZExt; // unsigned -> ZEXT
2664 } else {
2665 return BitCast; // Same size, No-op cast
2666 }
Duncan Sands9dff9be2010-02-15 16:12:20 +00002667 } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt
Reid Spencerc4dacf22006-12-04 02:43:42 +00002668 if (DestIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002669 return FPToSI; // FP -> sint
2670 else
2671 return FPToUI; // FP -> uint
Duncan Sands27bd0df2011-05-18 10:59:25 +00002672 } else if (SrcTy->isVectorTy()) {
2673 assert(DestBits == SrcBits &&
2674 "Casting vector to integer of different width");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002675 return BitCast; // Same size, no-op cast
2676 } else {
Duncan Sands19d0b472010-02-16 11:11:14 +00002677 assert(SrcTy->isPointerTy() &&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002678 "Casting from a value that is not first-class type");
2679 return PtrToInt; // ptr -> int
2680 }
Duncan Sands9dff9be2010-02-15 16:12:20 +00002681 } else if (DestTy->isFloatingPointTy()) { // Casting to floating pt
2682 if (SrcTy->isIntegerTy()) { // Casting from integral
Reid Spencerc4dacf22006-12-04 02:43:42 +00002683 if (SrcIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002684 return SIToFP; // sint -> FP
2685 else
2686 return UIToFP; // uint -> FP
Duncan Sands9dff9be2010-02-15 16:12:20 +00002687 } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002688 if (DestBits < SrcBits) {
2689 return FPTrunc; // FP -> smaller FP
2690 } else if (DestBits > SrcBits) {
2691 return FPExt; // FP -> larger FP
2692 } else {
2693 return BitCast; // same size, no-op cast
2694 }
Duncan Sands27bd0df2011-05-18 10:59:25 +00002695 } else if (SrcTy->isVectorTy()) {
2696 assert(DestBits == SrcBits &&
Dan Gohmanfead7972007-05-11 21:43:24 +00002697 "Casting vector to floating point of different width");
Devang Patele9432132008-11-05 01:37:40 +00002698 return BitCast; // same size, no-op cast
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002699 }
Ahmed Charles636a3d62012-02-19 11:37:01 +00002700 llvm_unreachable("Casting pointer or non-first class to float");
Duncan Sands27bd0df2011-05-18 10:59:25 +00002701 } else if (DestTy->isVectorTy()) {
2702 assert(DestBits == SrcBits &&
2703 "Illegal cast to vector (wrong type or size)");
2704 return BitCast;
Duncan Sands19d0b472010-02-16 11:11:14 +00002705 } else if (DestTy->isPointerTy()) {
2706 if (SrcTy->isPointerTy()) {
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002707 if (DestTy->getPointerAddressSpace() != SrcTy->getPointerAddressSpace())
2708 return AddrSpaceCast;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002709 return BitCast; // ptr -> ptr
Duncan Sands9dff9be2010-02-15 16:12:20 +00002710 } else if (SrcTy->isIntegerTy()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002711 return IntToPtr; // int -> ptr
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002712 }
Ahmed Charles636a3d62012-02-19 11:37:01 +00002713 llvm_unreachable("Casting pointer to other than pointer or int");
Dale Johannesendd224d22010-09-30 23:57:10 +00002714 } else if (DestTy->isX86_MMXTy()) {
Duncan Sands27bd0df2011-05-18 10:59:25 +00002715 if (SrcTy->isVectorTy()) {
2716 assert(DestBits == SrcBits && "Casting vector of wrong width to X86_MMX");
Dale Johannesendd224d22010-09-30 23:57:10 +00002717 return BitCast; // 64-bit vector to MMX
Dale Johannesendd224d22010-09-30 23:57:10 +00002718 }
Ahmed Charles636a3d62012-02-19 11:37:01 +00002719 llvm_unreachable("Illegal cast to X86_MMX");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002720 }
Ahmed Charles636a3d62012-02-19 11:37:01 +00002721 llvm_unreachable("Casting to type that is not first-class");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002722}
2723
2724//===----------------------------------------------------------------------===//
2725// CastInst SubClass Constructors
2726//===----------------------------------------------------------------------===//
2727
2728/// Check that the construction parameters for a CastInst are correct. This
2729/// could be broken out into the separate constructors but it is useful to have
2730/// it in one place and to eliminate the redundant code for getting the sizes
2731/// of the types involved.
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002732bool
Chris Lattner229907c2011-07-18 04:54:35 +00002733CastInst::castIsValid(Instruction::CastOps op, Value *S, Type *DstTy) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002734
2735 // Check for type sanity on the arguments
Chris Lattner229907c2011-07-18 04:54:35 +00002736 Type *SrcTy = S->getType();
Evan Cheng098d7b72013-01-10 23:22:53 +00002737
Chris Lattner37bc78a2010-01-26 21:51:43 +00002738 if (!SrcTy->isFirstClassType() || !DstTy->isFirstClassType() ||
2739 SrcTy->isAggregateType() || DstTy->isAggregateType())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002740 return false;
2741
2742 // Get the size of the types in bits, we'll need this later
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002743 unsigned SrcBitSize = SrcTy->getScalarSizeInBits();
2744 unsigned DstBitSize = DstTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002745
Duncan Sands7f646562011-05-18 09:21:57 +00002746 // If these are vector types, get the lengths of the vectors (using zero for
2747 // scalar types means that checking that vector lengths match also checks that
2748 // scalars are not being converted to vectors or vectors to scalars).
2749 unsigned SrcLength = SrcTy->isVectorTy() ?
2750 cast<VectorType>(SrcTy)->getNumElements() : 0;
2751 unsigned DstLength = DstTy->isVectorTy() ?
2752 cast<VectorType>(DstTy)->getNumElements() : 0;
2753
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002754 // Switch on the opcode provided
2755 switch (op) {
2756 default: return false; // This is an input error
2757 case Instruction::Trunc:
Duncan Sands7f646562011-05-18 09:21:57 +00002758 return SrcTy->isIntOrIntVectorTy() && DstTy->isIntOrIntVectorTy() &&
2759 SrcLength == DstLength && SrcBitSize > DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002760 case Instruction::ZExt:
Duncan Sands7f646562011-05-18 09:21:57 +00002761 return SrcTy->isIntOrIntVectorTy() && DstTy->isIntOrIntVectorTy() &&
2762 SrcLength == DstLength && SrcBitSize < DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002763 case Instruction::SExt:
Duncan Sands7f646562011-05-18 09:21:57 +00002764 return SrcTy->isIntOrIntVectorTy() && DstTy->isIntOrIntVectorTy() &&
2765 SrcLength == DstLength && SrcBitSize < DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002766 case Instruction::FPTrunc:
Duncan Sands7f646562011-05-18 09:21:57 +00002767 return SrcTy->isFPOrFPVectorTy() && DstTy->isFPOrFPVectorTy() &&
2768 SrcLength == DstLength && SrcBitSize > DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002769 case Instruction::FPExt:
Duncan Sands7f646562011-05-18 09:21:57 +00002770 return SrcTy->isFPOrFPVectorTy() && DstTy->isFPOrFPVectorTy() &&
2771 SrcLength == DstLength && SrcBitSize < DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002772 case Instruction::UIToFP:
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002773 case Instruction::SIToFP:
Duncan Sands7f646562011-05-18 09:21:57 +00002774 return SrcTy->isIntOrIntVectorTy() && DstTy->isFPOrFPVectorTy() &&
2775 SrcLength == DstLength;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002776 case Instruction::FPToUI:
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002777 case Instruction::FPToSI:
Duncan Sands7f646562011-05-18 09:21:57 +00002778 return SrcTy->isFPOrFPVectorTy() && DstTy->isIntOrIntVectorTy() &&
2779 SrcLength == DstLength;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002780 case Instruction::PtrToInt:
Chris Lattner8a3df542012-01-25 01:32:59 +00002781 if (isa<VectorType>(SrcTy) != isa<VectorType>(DstTy))
Nadav Rotem3924cb02011-12-05 06:29:09 +00002782 return false;
Chris Lattner8a3df542012-01-25 01:32:59 +00002783 if (VectorType *VT = dyn_cast<VectorType>(SrcTy))
2784 if (VT->getNumElements() != cast<VectorType>(DstTy)->getNumElements())
2785 return false;
Nadav Rotem3924cb02011-12-05 06:29:09 +00002786 return SrcTy->getScalarType()->isPointerTy() &&
2787 DstTy->getScalarType()->isIntegerTy();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002788 case Instruction::IntToPtr:
Chris Lattner8a3df542012-01-25 01:32:59 +00002789 if (isa<VectorType>(SrcTy) != isa<VectorType>(DstTy))
Nadav Rotem3924cb02011-12-05 06:29:09 +00002790 return false;
Chris Lattner8a3df542012-01-25 01:32:59 +00002791 if (VectorType *VT = dyn_cast<VectorType>(SrcTy))
2792 if (VT->getNumElements() != cast<VectorType>(DstTy)->getNumElements())
2793 return false;
Nadav Rotem3924cb02011-12-05 06:29:09 +00002794 return SrcTy->getScalarType()->isIntegerTy() &&
2795 DstTy->getScalarType()->isPointerTy();
Matt Arsenaultfc3c91d2014-01-22 19:21:33 +00002796 case Instruction::BitCast: {
2797 PointerType *SrcPtrTy = dyn_cast<PointerType>(SrcTy->getScalarType());
2798 PointerType *DstPtrTy = dyn_cast<PointerType>(DstTy->getScalarType());
2799
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002800 // BitCast implies a no-op cast of type only. No bits change.
2801 // However, you can't cast pointers to anything but pointers.
Matt Arsenaultfc3c91d2014-01-22 19:21:33 +00002802 if (!SrcPtrTy != !DstPtrTy)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002803 return false;
2804
Alp Tokerf907b892013-12-05 05:44:44 +00002805 // For non-pointer cases, the cast is okay if the source and destination bit
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002806 // widths are identical.
Matt Arsenaultfc3c91d2014-01-22 19:21:33 +00002807 if (!SrcPtrTy)
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002808 return SrcTy->getPrimitiveSizeInBits() == DstTy->getPrimitiveSizeInBits();
2809
Matt Arsenaultfc3c91d2014-01-22 19:21:33 +00002810 // If both are pointers then the address spaces must match.
2811 if (SrcPtrTy->getAddressSpace() != DstPtrTy->getAddressSpace())
2812 return false;
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002813
Matt Arsenaultfc3c91d2014-01-22 19:21:33 +00002814 // A vector of pointers must have the same number of elements.
2815 if (VectorType *SrcVecTy = dyn_cast<VectorType>(SrcTy)) {
2816 if (VectorType *DstVecTy = dyn_cast<VectorType>(DstTy))
2817 return (SrcVecTy->getNumElements() == DstVecTy->getNumElements());
2818
2819 return false;
2820 }
2821
2822 return true;
2823 }
2824 case Instruction::AddrSpaceCast: {
2825 PointerType *SrcPtrTy = dyn_cast<PointerType>(SrcTy->getScalarType());
2826 if (!SrcPtrTy)
2827 return false;
2828
2829 PointerType *DstPtrTy = dyn_cast<PointerType>(DstTy->getScalarType());
2830 if (!DstPtrTy)
2831 return false;
2832
2833 if (SrcPtrTy->getAddressSpace() == DstPtrTy->getAddressSpace())
2834 return false;
2835
2836 if (VectorType *SrcVecTy = dyn_cast<VectorType>(SrcTy)) {
2837 if (VectorType *DstVecTy = dyn_cast<VectorType>(DstTy))
2838 return (SrcVecTy->getNumElements() == DstVecTy->getNumElements());
2839
2840 return false;
2841 }
2842
2843 return true;
2844 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002845 }
2846}
2847
2848TruncInst::TruncInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002849 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002850) : CastInst(Ty, Trunc, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002851 assert(castIsValid(getOpcode(), S, Ty) && "Illegal Trunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002852}
2853
2854TruncInst::TruncInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002855 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002856) : CastInst(Ty, Trunc, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002857 assert(castIsValid(getOpcode(), S, Ty) && "Illegal Trunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002858}
2859
2860ZExtInst::ZExtInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002861 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002862) : CastInst(Ty, ZExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002863 assert(castIsValid(getOpcode(), S, Ty) && "Illegal ZExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002864}
2865
2866ZExtInst::ZExtInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002867 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002868) : CastInst(Ty, ZExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002869 assert(castIsValid(getOpcode(), S, Ty) && "Illegal ZExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002870}
2871SExtInst::SExtInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002872 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002873) : CastInst(Ty, SExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002874 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002875}
2876
Jeff Cohencc08c832006-12-02 02:22:01 +00002877SExtInst::SExtInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002878 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002879) : CastInst(Ty, SExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002880 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002881}
2882
2883FPTruncInst::FPTruncInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002884 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002885) : CastInst(Ty, FPTrunc, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002886 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPTrunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002887}
2888
2889FPTruncInst::FPTruncInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002890 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002891) : CastInst(Ty, FPTrunc, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002892 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPTrunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002893}
2894
2895FPExtInst::FPExtInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002896 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002897) : CastInst(Ty, FPExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002898 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002899}
2900
2901FPExtInst::FPExtInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002902 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002903) : CastInst(Ty, FPExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002904 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002905}
2906
2907UIToFPInst::UIToFPInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002908 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002909) : CastInst(Ty, UIToFP, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002910 assert(castIsValid(getOpcode(), S, Ty) && "Illegal UIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002911}
2912
2913UIToFPInst::UIToFPInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002914 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002915) : CastInst(Ty, UIToFP, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002916 assert(castIsValid(getOpcode(), S, Ty) && "Illegal UIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002917}
2918
2919SIToFPInst::SIToFPInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002920 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002921) : CastInst(Ty, SIToFP, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002922 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002923}
2924
2925SIToFPInst::SIToFPInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002926 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002927) : CastInst(Ty, SIToFP, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002928 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002929}
2930
2931FPToUIInst::FPToUIInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002932 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002933) : CastInst(Ty, FPToUI, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002934 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToUI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002935}
2936
2937FPToUIInst::FPToUIInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002938 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002939) : CastInst(Ty, FPToUI, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002940 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToUI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002941}
2942
2943FPToSIInst::FPToSIInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002944 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002945) : CastInst(Ty, FPToSI, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002946 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToSI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002947}
2948
2949FPToSIInst::FPToSIInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002950 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002951) : CastInst(Ty, FPToSI, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002952 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToSI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002953}
2954
2955PtrToIntInst::PtrToIntInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002956 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002957) : CastInst(Ty, PtrToInt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002958 assert(castIsValid(getOpcode(), S, Ty) && "Illegal PtrToInt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002959}
2960
2961PtrToIntInst::PtrToIntInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002962 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002963) : CastInst(Ty, PtrToInt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002964 assert(castIsValid(getOpcode(), S, Ty) && "Illegal PtrToInt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002965}
2966
2967IntToPtrInst::IntToPtrInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002968 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002969) : CastInst(Ty, IntToPtr, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002970 assert(castIsValid(getOpcode(), S, Ty) && "Illegal IntToPtr");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002971}
2972
2973IntToPtrInst::IntToPtrInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002974 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002975) : CastInst(Ty, IntToPtr, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002976 assert(castIsValid(getOpcode(), S, Ty) && "Illegal IntToPtr");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002977}
2978
2979BitCastInst::BitCastInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002980 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002981) : CastInst(Ty, BitCast, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002982 assert(castIsValid(getOpcode(), S, Ty) && "Illegal BitCast");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002983}
2984
2985BitCastInst::BitCastInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002986 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002987) : CastInst(Ty, BitCast, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002988 assert(castIsValid(getOpcode(), S, Ty) && "Illegal BitCast");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002989}
Chris Lattnerf16dc002006-09-17 19:29:56 +00002990
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002991AddrSpaceCastInst::AddrSpaceCastInst(
2992 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
2993) : CastInst(Ty, AddrSpaceCast, S, Name, InsertBefore) {
2994 assert(castIsValid(getOpcode(), S, Ty) && "Illegal AddrSpaceCast");
2995}
2996
2997AddrSpaceCastInst::AddrSpaceCastInst(
2998 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
2999) : CastInst(Ty, AddrSpaceCast, S, Name, InsertAtEnd) {
3000 assert(castIsValid(getOpcode(), S, Ty) && "Illegal AddrSpaceCast");
3001}
3002
Chris Lattnerf16dc002006-09-17 19:29:56 +00003003//===----------------------------------------------------------------------===//
Reid Spencerd9436b62006-11-20 01:22:35 +00003004// CmpInst Classes
3005//===----------------------------------------------------------------------===//
3006
Craig Topper3186c012012-09-23 02:12:10 +00003007void CmpInst::anchor() {}
Chris Lattneraec33da2010-01-22 06:25:37 +00003008
Chris Lattner229907c2011-07-18 04:54:35 +00003009CmpInst::CmpInst(Type *ty, OtherOps op, unsigned short predicate,
Daniel Dunbar4975db62009-07-25 04:41:11 +00003010 Value *LHS, Value *RHS, const Twine &Name,
Nate Begemand2195702008-05-12 19:01:56 +00003011 Instruction *InsertBefore)
Nate Begeman66d0a0e2008-05-12 20:11:05 +00003012 : Instruction(ty, op,
Gabor Greiff6caff662008-05-10 08:32:32 +00003013 OperandTraits<CmpInst>::op_begin(this),
3014 OperandTraits<CmpInst>::operands(this),
3015 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00003016 Op<0>() = LHS;
3017 Op<1>() = RHS;
Chris Lattnerb9c86512009-12-29 02:14:09 +00003018 setPredicate((Predicate)predicate);
Reid Spencer871a9ea2007-04-11 13:04:48 +00003019 setName(Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00003020}
Gabor Greiff6caff662008-05-10 08:32:32 +00003021
Chris Lattner229907c2011-07-18 04:54:35 +00003022CmpInst::CmpInst(Type *ty, OtherOps op, unsigned short predicate,
Daniel Dunbar4975db62009-07-25 04:41:11 +00003023 Value *LHS, Value *RHS, const Twine &Name,
Nate Begemand2195702008-05-12 19:01:56 +00003024 BasicBlock *InsertAtEnd)
Nate Begeman66d0a0e2008-05-12 20:11:05 +00003025 : Instruction(ty, op,
Gabor Greiff6caff662008-05-10 08:32:32 +00003026 OperandTraits<CmpInst>::op_begin(this),
3027 OperandTraits<CmpInst>::operands(this),
3028 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00003029 Op<0>() = LHS;
3030 Op<1>() = RHS;
Chris Lattnerb9c86512009-12-29 02:14:09 +00003031 setPredicate((Predicate)predicate);
Reid Spencer871a9ea2007-04-11 13:04:48 +00003032 setName(Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00003033}
3034
3035CmpInst *
Dan Gohmanad1f0a12009-08-25 23:17:54 +00003036CmpInst::Create(OtherOps Op, unsigned short predicate,
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003037 Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00003038 const Twine &Name, Instruction *InsertBefore) {
Reid Spencerd9436b62006-11-20 01:22:35 +00003039 if (Op == Instruction::ICmp) {
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003040 if (InsertBefore)
3041 return new ICmpInst(InsertBefore, CmpInst::Predicate(predicate),
3042 S1, S2, Name);
3043 else
Dan Gohmanad1f0a12009-08-25 23:17:54 +00003044 return new ICmpInst(CmpInst::Predicate(predicate),
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003045 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00003046 }
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003047
3048 if (InsertBefore)
3049 return new FCmpInst(InsertBefore, CmpInst::Predicate(predicate),
3050 S1, S2, Name);
3051 else
Dan Gohmanad1f0a12009-08-25 23:17:54 +00003052 return new FCmpInst(CmpInst::Predicate(predicate),
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003053 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00003054}
3055
3056CmpInst *
Gabor Greife1f6e4b2008-05-16 19:29:10 +00003057CmpInst::Create(OtherOps Op, unsigned short predicate, Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00003058 const Twine &Name, BasicBlock *InsertAtEnd) {
Reid Spencerd9436b62006-11-20 01:22:35 +00003059 if (Op == Instruction::ICmp) {
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003060 return new ICmpInst(*InsertAtEnd, CmpInst::Predicate(predicate),
3061 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00003062 }
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003063 return new FCmpInst(*InsertAtEnd, CmpInst::Predicate(predicate),
3064 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00003065}
3066
3067void CmpInst::swapOperands() {
3068 if (ICmpInst *IC = dyn_cast<ICmpInst>(this))
3069 IC->swapOperands();
3070 else
3071 cast<FCmpInst>(this)->swapOperands();
3072}
3073
Duncan Sands95c4ecc2011-01-04 12:52:29 +00003074bool CmpInst::isCommutative() const {
3075 if (const ICmpInst *IC = dyn_cast<ICmpInst>(this))
Reid Spencerd9436b62006-11-20 01:22:35 +00003076 return IC->isCommutative();
3077 return cast<FCmpInst>(this)->isCommutative();
3078}
3079
Duncan Sands95c4ecc2011-01-04 12:52:29 +00003080bool CmpInst::isEquality() const {
3081 if (const ICmpInst *IC = dyn_cast<ICmpInst>(this))
Reid Spencerd9436b62006-11-20 01:22:35 +00003082 return IC->isEquality();
3083 return cast<FCmpInst>(this)->isEquality();
3084}
3085
3086
Dan Gohman4e724382008-05-31 02:47:54 +00003087CmpInst::Predicate CmpInst::getInversePredicate(Predicate pred) {
Reid Spencerd9436b62006-11-20 01:22:35 +00003088 switch (pred) {
Craig Topperc514b542012-02-05 22:14:15 +00003089 default: llvm_unreachable("Unknown cmp predicate!");
Reid Spencerd9436b62006-11-20 01:22:35 +00003090 case ICMP_EQ: return ICMP_NE;
3091 case ICMP_NE: return ICMP_EQ;
3092 case ICMP_UGT: return ICMP_ULE;
3093 case ICMP_ULT: return ICMP_UGE;
3094 case ICMP_UGE: return ICMP_ULT;
3095 case ICMP_ULE: return ICMP_UGT;
3096 case ICMP_SGT: return ICMP_SLE;
3097 case ICMP_SLT: return ICMP_SGE;
3098 case ICMP_SGE: return ICMP_SLT;
3099 case ICMP_SLE: return ICMP_SGT;
Reid Spencerd9436b62006-11-20 01:22:35 +00003100
Dan Gohman4e724382008-05-31 02:47:54 +00003101 case FCMP_OEQ: return FCMP_UNE;
3102 case FCMP_ONE: return FCMP_UEQ;
3103 case FCMP_OGT: return FCMP_ULE;
3104 case FCMP_OLT: return FCMP_UGE;
3105 case FCMP_OGE: return FCMP_ULT;
3106 case FCMP_OLE: return FCMP_UGT;
3107 case FCMP_UEQ: return FCMP_ONE;
3108 case FCMP_UNE: return FCMP_OEQ;
3109 case FCMP_UGT: return FCMP_OLE;
3110 case FCMP_ULT: return FCMP_OGE;
3111 case FCMP_UGE: return FCMP_OLT;
3112 case FCMP_ULE: return FCMP_OGT;
3113 case FCMP_ORD: return FCMP_UNO;
3114 case FCMP_UNO: return FCMP_ORD;
3115 case FCMP_TRUE: return FCMP_FALSE;
3116 case FCMP_FALSE: return FCMP_TRUE;
Reid Spencerd9436b62006-11-20 01:22:35 +00003117 }
3118}
3119
Reid Spencer266e42b2006-12-23 06:05:41 +00003120ICmpInst::Predicate ICmpInst::getSignedPredicate(Predicate pred) {
3121 switch (pred) {
Craig Topperc514b542012-02-05 22:14:15 +00003122 default: llvm_unreachable("Unknown icmp predicate!");
Reid Spencer266e42b2006-12-23 06:05:41 +00003123 case ICMP_EQ: case ICMP_NE:
3124 case ICMP_SGT: case ICMP_SLT: case ICMP_SGE: case ICMP_SLE:
3125 return pred;
3126 case ICMP_UGT: return ICMP_SGT;
3127 case ICMP_ULT: return ICMP_SLT;
3128 case ICMP_UGE: return ICMP_SGE;
3129 case ICMP_ULE: return ICMP_SLE;
3130 }
3131}
3132
Nick Lewycky8ea81e82008-01-28 03:48:02 +00003133ICmpInst::Predicate ICmpInst::getUnsignedPredicate(Predicate pred) {
3134 switch (pred) {
Craig Topperc514b542012-02-05 22:14:15 +00003135 default: llvm_unreachable("Unknown icmp predicate!");
Nick Lewycky8ea81e82008-01-28 03:48:02 +00003136 case ICMP_EQ: case ICMP_NE:
3137 case ICMP_UGT: case ICMP_ULT: case ICMP_UGE: case ICMP_ULE:
3138 return pred;
3139 case ICMP_SGT: return ICMP_UGT;
3140 case ICMP_SLT: return ICMP_ULT;
3141 case ICMP_SGE: return ICMP_UGE;
3142 case ICMP_SLE: return ICMP_ULE;
3143 }
3144}
3145
Reid Spencer0286bc12007-02-28 22:00:54 +00003146/// Initialize a set of values that all satisfy the condition with C.
3147///
3148ConstantRange
3149ICmpInst::makeConstantRange(Predicate pred, const APInt &C) {
3150 APInt Lower(C);
3151 APInt Upper(C);
3152 uint32_t BitWidth = C.getBitWidth();
3153 switch (pred) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00003154 default: llvm_unreachable("Invalid ICmp opcode to ConstantRange ctor!");
Jakub Staszak773be0c2013-03-20 23:56:19 +00003155 case ICmpInst::ICMP_EQ: ++Upper; break;
3156 case ICmpInst::ICMP_NE: ++Lower; break;
Dan Gohmand86e2952010-01-26 16:04:20 +00003157 case ICmpInst::ICMP_ULT:
3158 Lower = APInt::getMinValue(BitWidth);
3159 // Check for an empty-set condition.
3160 if (Lower == Upper)
3161 return ConstantRange(BitWidth, /*isFullSet=*/false);
3162 break;
3163 case ICmpInst::ICMP_SLT:
3164 Lower = APInt::getSignedMinValue(BitWidth);
3165 // Check for an empty-set condition.
3166 if (Lower == Upper)
3167 return ConstantRange(BitWidth, /*isFullSet=*/false);
3168 break;
Reid Spencer0286bc12007-02-28 22:00:54 +00003169 case ICmpInst::ICMP_UGT:
Jakub Staszak773be0c2013-03-20 23:56:19 +00003170 ++Lower; Upper = APInt::getMinValue(BitWidth); // Min = Next(Max)
Dan Gohmand86e2952010-01-26 16:04:20 +00003171 // Check for an empty-set condition.
3172 if (Lower == Upper)
3173 return ConstantRange(BitWidth, /*isFullSet=*/false);
Reid Spencer0286bc12007-02-28 22:00:54 +00003174 break;
3175 case ICmpInst::ICMP_SGT:
Jakub Staszak773be0c2013-03-20 23:56:19 +00003176 ++Lower; Upper = APInt::getSignedMinValue(BitWidth); // Min = Next(Max)
Dan Gohmand86e2952010-01-26 16:04:20 +00003177 // Check for an empty-set condition.
3178 if (Lower == Upper)
3179 return ConstantRange(BitWidth, /*isFullSet=*/false);
Reid Spencer0286bc12007-02-28 22:00:54 +00003180 break;
3181 case ICmpInst::ICMP_ULE:
Jakub Staszak773be0c2013-03-20 23:56:19 +00003182 Lower = APInt::getMinValue(BitWidth); ++Upper;
Dan Gohmand86e2952010-01-26 16:04:20 +00003183 // Check for a full-set condition.
3184 if (Lower == Upper)
3185 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer0286bc12007-02-28 22:00:54 +00003186 break;
3187 case ICmpInst::ICMP_SLE:
Jakub Staszak773be0c2013-03-20 23:56:19 +00003188 Lower = APInt::getSignedMinValue(BitWidth); ++Upper;
Dan Gohmand86e2952010-01-26 16:04:20 +00003189 // Check for a full-set condition.
3190 if (Lower == Upper)
3191 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer0286bc12007-02-28 22:00:54 +00003192 break;
3193 case ICmpInst::ICMP_UGE:
3194 Upper = APInt::getMinValue(BitWidth); // Min = Next(Max)
Dan Gohmand86e2952010-01-26 16:04:20 +00003195 // Check for a full-set condition.
3196 if (Lower == Upper)
3197 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer0286bc12007-02-28 22:00:54 +00003198 break;
3199 case ICmpInst::ICMP_SGE:
3200 Upper = APInt::getSignedMinValue(BitWidth); // Min = Next(Max)
Dan Gohmand86e2952010-01-26 16:04:20 +00003201 // Check for a full-set condition.
3202 if (Lower == Upper)
3203 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer0286bc12007-02-28 22:00:54 +00003204 break;
3205 }
3206 return ConstantRange(Lower, Upper);
3207}
3208
Dan Gohman4e724382008-05-31 02:47:54 +00003209CmpInst::Predicate CmpInst::getSwappedPredicate(Predicate pred) {
Reid Spencerd9436b62006-11-20 01:22:35 +00003210 switch (pred) {
Craig Topperc514b542012-02-05 22:14:15 +00003211 default: llvm_unreachable("Unknown cmp predicate!");
Dan Gohman4e724382008-05-31 02:47:54 +00003212 case ICMP_EQ: case ICMP_NE:
3213 return pred;
3214 case ICMP_SGT: return ICMP_SLT;
3215 case ICMP_SLT: return ICMP_SGT;
3216 case ICMP_SGE: return ICMP_SLE;
3217 case ICMP_SLE: return ICMP_SGE;
3218 case ICMP_UGT: return ICMP_ULT;
3219 case ICMP_ULT: return ICMP_UGT;
3220 case ICMP_UGE: return ICMP_ULE;
3221 case ICMP_ULE: return ICMP_UGE;
3222
Reid Spencerd9436b62006-11-20 01:22:35 +00003223 case FCMP_FALSE: case FCMP_TRUE:
3224 case FCMP_OEQ: case FCMP_ONE:
3225 case FCMP_UEQ: case FCMP_UNE:
3226 case FCMP_ORD: case FCMP_UNO:
3227 return pred;
3228 case FCMP_OGT: return FCMP_OLT;
3229 case FCMP_OLT: return FCMP_OGT;
3230 case FCMP_OGE: return FCMP_OLE;
3231 case FCMP_OLE: return FCMP_OGE;
3232 case FCMP_UGT: return FCMP_ULT;
3233 case FCMP_ULT: return FCMP_UGT;
3234 case FCMP_UGE: return FCMP_ULE;
3235 case FCMP_ULE: return FCMP_UGE;
3236 }
3237}
3238
Reid Spencer266e42b2006-12-23 06:05:41 +00003239bool CmpInst::isUnsigned(unsigned short predicate) {
3240 switch (predicate) {
3241 default: return false;
3242 case ICmpInst::ICMP_ULT: case ICmpInst::ICMP_ULE: case ICmpInst::ICMP_UGT:
3243 case ICmpInst::ICMP_UGE: return true;
3244 }
3245}
3246
Nick Lewycky7494b3b2009-10-25 03:50:03 +00003247bool CmpInst::isSigned(unsigned short predicate) {
Reid Spencer266e42b2006-12-23 06:05:41 +00003248 switch (predicate) {
3249 default: return false;
3250 case ICmpInst::ICMP_SLT: case ICmpInst::ICMP_SLE: case ICmpInst::ICMP_SGT:
3251 case ICmpInst::ICMP_SGE: return true;
3252 }
3253}
3254
3255bool CmpInst::isOrdered(unsigned short predicate) {
3256 switch (predicate) {
3257 default: return false;
3258 case FCmpInst::FCMP_OEQ: case FCmpInst::FCMP_ONE: case FCmpInst::FCMP_OGT:
3259 case FCmpInst::FCMP_OLT: case FCmpInst::FCMP_OGE: case FCmpInst::FCMP_OLE:
3260 case FCmpInst::FCMP_ORD: return true;
3261 }
3262}
3263
3264bool CmpInst::isUnordered(unsigned short predicate) {
3265 switch (predicate) {
3266 default: return false;
3267 case FCmpInst::FCMP_UEQ: case FCmpInst::FCMP_UNE: case FCmpInst::FCMP_UGT:
3268 case FCmpInst::FCMP_ULT: case FCmpInst::FCMP_UGE: case FCmpInst::FCMP_ULE:
3269 case FCmpInst::FCMP_UNO: return true;
3270 }
3271}
3272
Nick Lewycky7494b3b2009-10-25 03:50:03 +00003273bool CmpInst::isTrueWhenEqual(unsigned short predicate) {
3274 switch(predicate) {
3275 default: return false;
3276 case ICMP_EQ: case ICMP_UGE: case ICMP_ULE: case ICMP_SGE: case ICMP_SLE:
3277 case FCMP_TRUE: case FCMP_UEQ: case FCMP_UGE: case FCMP_ULE: return true;
3278 }
3279}
3280
3281bool CmpInst::isFalseWhenEqual(unsigned short predicate) {
3282 switch(predicate) {
3283 case ICMP_NE: case ICMP_UGT: case ICMP_ULT: case ICMP_SGT: case ICMP_SLT:
3284 case FCMP_FALSE: case FCMP_ONE: case FCMP_OGT: case FCMP_OLT: return true;
3285 default: return false;
3286 }
3287}
3288
3289
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003290//===----------------------------------------------------------------------===//
3291// SwitchInst Implementation
3292//===----------------------------------------------------------------------===//
3293
Chris Lattnerbaf00152010-11-17 05:41:46 +00003294void SwitchInst::init(Value *Value, BasicBlock *Default, unsigned NumReserved) {
3295 assert(Value && Default && NumReserved);
3296 ReservedSpace = NumReserved;
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003297 NumOperands = 2;
Gabor Greiff6caff662008-05-10 08:32:32 +00003298 OperandList = allocHungoffUses(ReservedSpace);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003299
Gabor Greif2d3024d2008-05-26 21:33:52 +00003300 OperandList[0] = Value;
3301 OperandList[1] = Default;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003302}
3303
Chris Lattner2195fc42007-02-24 00:55:48 +00003304/// SwitchInst ctor - Create a new switch instruction, specifying a value to
3305/// switch on and a default destination. The number of additional cases can
3306/// be specified here to make memory allocation more efficient. This
3307/// constructor can also autoinsert before another instruction.
3308SwitchInst::SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
3309 Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +00003310 : TerminatorInst(Type::getVoidTy(Value->getContext()), Instruction::Switch,
Craig Topperc6207612014-04-09 06:08:46 +00003311 nullptr, 0, InsertBefore) {
Chris Lattnerbaf00152010-11-17 05:41:46 +00003312 init(Value, Default, 2+NumCases*2);
Chris Lattner2195fc42007-02-24 00:55:48 +00003313}
3314
3315/// SwitchInst ctor - Create a new switch instruction, specifying a value to
3316/// switch on and a default destination. The number of additional cases can
3317/// be specified here to make memory allocation more efficient. This
3318/// constructor also autoinserts at the end of the specified BasicBlock.
3319SwitchInst::SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
3320 BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +00003321 : TerminatorInst(Type::getVoidTy(Value->getContext()), Instruction::Switch,
Craig Topperc6207612014-04-09 06:08:46 +00003322 nullptr, 0, InsertAtEnd) {
Chris Lattnerbaf00152010-11-17 05:41:46 +00003323 init(Value, Default, 2+NumCases*2);
Chris Lattner2195fc42007-02-24 00:55:48 +00003324}
3325
Misha Brukmanb1c93172005-04-21 23:48:37 +00003326SwitchInst::SwitchInst(const SwitchInst &SI)
Craig Topperc6207612014-04-09 06:08:46 +00003327 : TerminatorInst(SI.getType(), Instruction::Switch, nullptr, 0) {
Chris Lattnerbaf00152010-11-17 05:41:46 +00003328 init(SI.getCondition(), SI.getDefaultDest(), SI.getNumOperands());
3329 NumOperands = SI.getNumOperands();
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003330 Use *OL = OperandList, *InOL = SI.OperandList;
Chris Lattnerbaf00152010-11-17 05:41:46 +00003331 for (unsigned i = 2, E = SI.getNumOperands(); i != E; i += 2) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00003332 OL[i] = InOL[i];
3333 OL[i+1] = InOL[i+1];
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003334 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003335 SubclassOptionalData = SI.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003336}
3337
Gordon Henriksen14a55692007-12-10 02:14:30 +00003338SwitchInst::~SwitchInst() {
Jay Foadbbb91f22011-01-16 15:30:52 +00003339 dropHungoffUses();
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003340}
3341
3342
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003343/// addCase - Add an entry to the switch instruction...
3344///
Chris Lattner47ac1872005-02-24 05:32:09 +00003345void SwitchInst::addCase(ConstantInt *OnVal, BasicBlock *Dest) {
Stepan Dyatkovskiy513aaa52012-02-01 07:49:51 +00003346 unsigned NewCaseIdx = getNumCases();
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003347 unsigned OpNo = NumOperands;
3348 if (OpNo+2 > ReservedSpace)
Jay Foade98f29d2011-04-01 08:00:58 +00003349 growOperands(); // Get more space!
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003350 // Initialize some new operands.
Chris Lattnerf711f8d2005-01-29 01:05:12 +00003351 assert(OpNo+1 < ReservedSpace && "Growing didn't work!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003352 NumOperands = OpNo+2;
Bob Wilsone4077362013-09-09 19:14:35 +00003353 CaseIt Case(this, NewCaseIdx);
3354 Case.setValue(OnVal);
Stepan Dyatkovskiy5b648af2012-03-08 07:06:20 +00003355 Case.setSuccessor(Dest);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003356}
3357
Stepan Dyatkovskiy513aaa52012-02-01 07:49:51 +00003358/// removeCase - This method removes the specified case and its successor
3359/// from the switch instruction.
Bob Wilsone4077362013-09-09 19:14:35 +00003360void SwitchInst::removeCase(CaseIt i) {
Stepan Dyatkovskiy5b648af2012-03-08 07:06:20 +00003361 unsigned idx = i.getCaseIndex();
3362
Stepan Dyatkovskiy513aaa52012-02-01 07:49:51 +00003363 assert(2 + idx*2 < getNumOperands() && "Case index out of range!!!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003364
3365 unsigned NumOps = getNumOperands();
3366 Use *OL = OperandList;
3367
Jay Foad14277722011-02-01 09:22:34 +00003368 // Overwrite this case with the end of the list.
Stepan Dyatkovskiy513aaa52012-02-01 07:49:51 +00003369 if (2 + (idx + 1) * 2 != NumOps) {
3370 OL[2 + idx * 2] = OL[NumOps - 2];
3371 OL[2 + idx * 2 + 1] = OL[NumOps - 1];
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003372 }
3373
3374 // Nuke the last value.
Craig Topperc6207612014-04-09 06:08:46 +00003375 OL[NumOps-2].set(nullptr);
3376 OL[NumOps-2+1].set(nullptr);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003377 NumOperands = NumOps-2;
3378}
3379
Jay Foade98f29d2011-04-01 08:00:58 +00003380/// growOperands - grow operands - This grows the operand list in response
3381/// to a push_back style of operation. This grows the number of ops by 3 times.
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003382///
Jay Foade98f29d2011-04-01 08:00:58 +00003383void SwitchInst::growOperands() {
Gabor Greiff6caff662008-05-10 08:32:32 +00003384 unsigned e = getNumOperands();
Jay Foade98f29d2011-04-01 08:00:58 +00003385 unsigned NumOps = e*3;
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003386
3387 ReservedSpace = NumOps;
Gabor Greiff6caff662008-05-10 08:32:32 +00003388 Use *NewOps = allocHungoffUses(NumOps);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003389 Use *OldOps = OperandList;
Gabor Greiff6caff662008-05-10 08:32:32 +00003390 for (unsigned i = 0; i != e; ++i) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00003391 NewOps[i] = OldOps[i];
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003392 }
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003393 OperandList = NewOps;
Jay Foadbbb91f22011-01-16 15:30:52 +00003394 Use::zap(OldOps, OldOps + e, true);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003395}
3396
3397
3398BasicBlock *SwitchInst::getSuccessorV(unsigned idx) const {
3399 return getSuccessor(idx);
3400}
3401unsigned SwitchInst::getNumSuccessorsV() const {
3402 return getNumSuccessors();
3403}
3404void SwitchInst::setSuccessorV(unsigned idx, BasicBlock *B) {
3405 setSuccessor(idx, B);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003406}
Chris Lattnerf22be932004-10-15 23:52:53 +00003407
Chris Lattner3ed871f2009-10-27 19:13:16 +00003408//===----------------------------------------------------------------------===//
Jay Foadbbb91f22011-01-16 15:30:52 +00003409// IndirectBrInst Implementation
Chris Lattner3ed871f2009-10-27 19:13:16 +00003410//===----------------------------------------------------------------------===//
3411
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003412void IndirectBrInst::init(Value *Address, unsigned NumDests) {
Duncan Sands19d0b472010-02-16 11:11:14 +00003413 assert(Address && Address->getType()->isPointerTy() &&
Chris Lattner6747b4c2009-10-29 05:53:32 +00003414 "Address of indirectbr must be a pointer");
Chris Lattner3ed871f2009-10-27 19:13:16 +00003415 ReservedSpace = 1+NumDests;
3416 NumOperands = 1;
3417 OperandList = allocHungoffUses(ReservedSpace);
3418
3419 OperandList[0] = Address;
3420}
3421
3422
Jay Foade98f29d2011-04-01 08:00:58 +00003423/// growOperands - grow operands - This grows the operand list in response
3424/// to a push_back style of operation. This grows the number of ops by 2 times.
Chris Lattner3ed871f2009-10-27 19:13:16 +00003425///
Jay Foade98f29d2011-04-01 08:00:58 +00003426void IndirectBrInst::growOperands() {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003427 unsigned e = getNumOperands();
Jay Foade98f29d2011-04-01 08:00:58 +00003428 unsigned NumOps = e*2;
Chris Lattner3ed871f2009-10-27 19:13:16 +00003429
3430 ReservedSpace = NumOps;
3431 Use *NewOps = allocHungoffUses(NumOps);
3432 Use *OldOps = OperandList;
3433 for (unsigned i = 0; i != e; ++i)
3434 NewOps[i] = OldOps[i];
3435 OperandList = NewOps;
Jay Foadbbb91f22011-01-16 15:30:52 +00003436 Use::zap(OldOps, OldOps + e, true);
Chris Lattner3ed871f2009-10-27 19:13:16 +00003437}
3438
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003439IndirectBrInst::IndirectBrInst(Value *Address, unsigned NumCases,
3440 Instruction *InsertBefore)
3441: TerminatorInst(Type::getVoidTy(Address->getContext()),Instruction::IndirectBr,
Craig Topperc6207612014-04-09 06:08:46 +00003442 nullptr, 0, InsertBefore) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003443 init(Address, NumCases);
3444}
3445
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003446IndirectBrInst::IndirectBrInst(Value *Address, unsigned NumCases,
3447 BasicBlock *InsertAtEnd)
3448: TerminatorInst(Type::getVoidTy(Address->getContext()),Instruction::IndirectBr,
Craig Topperc6207612014-04-09 06:08:46 +00003449 nullptr, 0, InsertAtEnd) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003450 init(Address, NumCases);
3451}
3452
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003453IndirectBrInst::IndirectBrInst(const IndirectBrInst &IBI)
3454 : TerminatorInst(Type::getVoidTy(IBI.getContext()), Instruction::IndirectBr,
Chris Lattner3ed871f2009-10-27 19:13:16 +00003455 allocHungoffUses(IBI.getNumOperands()),
3456 IBI.getNumOperands()) {
3457 Use *OL = OperandList, *InOL = IBI.OperandList;
3458 for (unsigned i = 0, E = IBI.getNumOperands(); i != E; ++i)
3459 OL[i] = InOL[i];
3460 SubclassOptionalData = IBI.SubclassOptionalData;
3461}
3462
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003463IndirectBrInst::~IndirectBrInst() {
Jay Foadbbb91f22011-01-16 15:30:52 +00003464 dropHungoffUses();
Chris Lattner3ed871f2009-10-27 19:13:16 +00003465}
3466
3467/// addDestination - Add a destination.
3468///
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003469void IndirectBrInst::addDestination(BasicBlock *DestBB) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003470 unsigned OpNo = NumOperands;
3471 if (OpNo+1 > ReservedSpace)
Jay Foade98f29d2011-04-01 08:00:58 +00003472 growOperands(); // Get more space!
Chris Lattner3ed871f2009-10-27 19:13:16 +00003473 // Initialize some new operands.
3474 assert(OpNo < ReservedSpace && "Growing didn't work!");
3475 NumOperands = OpNo+1;
3476 OperandList[OpNo] = DestBB;
3477}
3478
3479/// removeDestination - This method removes the specified successor from the
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003480/// indirectbr instruction.
3481void IndirectBrInst::removeDestination(unsigned idx) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003482 assert(idx < getNumOperands()-1 && "Successor index out of range!");
3483
3484 unsigned NumOps = getNumOperands();
3485 Use *OL = OperandList;
3486
3487 // Replace this value with the last one.
3488 OL[idx+1] = OL[NumOps-1];
3489
3490 // Nuke the last value.
Craig Topperc6207612014-04-09 06:08:46 +00003491 OL[NumOps-1].set(nullptr);
Chris Lattner3ed871f2009-10-27 19:13:16 +00003492 NumOperands = NumOps-1;
3493}
3494
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003495BasicBlock *IndirectBrInst::getSuccessorV(unsigned idx) const {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003496 return getSuccessor(idx);
3497}
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003498unsigned IndirectBrInst::getNumSuccessorsV() const {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003499 return getNumSuccessors();
3500}
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003501void IndirectBrInst::setSuccessorV(unsigned idx, BasicBlock *B) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003502 setSuccessor(idx, B);
3503}
3504
3505//===----------------------------------------------------------------------===//
Devang Patel11cf3f42009-10-27 22:16:29 +00003506// clone_impl() implementations
Chris Lattner3ed871f2009-10-27 19:13:16 +00003507//===----------------------------------------------------------------------===//
3508
Chris Lattnerf22be932004-10-15 23:52:53 +00003509// Define these methods here so vtables don't get emitted into every translation
3510// unit that uses these classes.
3511
Devang Patel11cf3f42009-10-27 22:16:29 +00003512GetElementPtrInst *GetElementPtrInst::clone_impl() const {
3513 return new (getNumOperands()) GetElementPtrInst(*this);
Chris Lattnerf22be932004-10-15 23:52:53 +00003514}
3515
Devang Patel11cf3f42009-10-27 22:16:29 +00003516BinaryOperator *BinaryOperator::clone_impl() const {
3517 return Create(getOpcode(), Op<0>(), Op<1>());
Chris Lattnerf22be932004-10-15 23:52:53 +00003518}
3519
Devang Patel11cf3f42009-10-27 22:16:29 +00003520FCmpInst* FCmpInst::clone_impl() const {
3521 return new FCmpInst(getPredicate(), Op<0>(), Op<1>());
Reid Spencerd9436b62006-11-20 01:22:35 +00003522}
3523
Devang Patel11cf3f42009-10-27 22:16:29 +00003524ICmpInst* ICmpInst::clone_impl() const {
3525 return new ICmpInst(getPredicate(), Op<0>(), Op<1>());
Dan Gohman0752bff2008-05-23 00:36:11 +00003526}
3527
Devang Patel11cf3f42009-10-27 22:16:29 +00003528ExtractValueInst *ExtractValueInst::clone_impl() const {
3529 return new ExtractValueInst(*this);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003530}
3531
Devang Patel11cf3f42009-10-27 22:16:29 +00003532InsertValueInst *InsertValueInst::clone_impl() const {
3533 return new InsertValueInst(*this);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003534}
3535
Devang Patel11cf3f42009-10-27 22:16:29 +00003536AllocaInst *AllocaInst::clone_impl() const {
David Majnemer6b3244c2014-04-30 16:12:21 +00003537 AllocaInst *Result = new AllocaInst(getAllocatedType(),
3538 (Value *)getOperand(0), getAlignment());
3539 Result->setUsedWithInAlloca(isUsedWithInAlloca());
3540 return Result;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003541}
3542
Devang Patel11cf3f42009-10-27 22:16:29 +00003543LoadInst *LoadInst::clone_impl() const {
Eli Friedman59b66882011-08-09 23:02:53 +00003544 return new LoadInst(getOperand(0), Twine(), isVolatile(),
3545 getAlignment(), getOrdering(), getSynchScope());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003546}
3547
Devang Patel11cf3f42009-10-27 22:16:29 +00003548StoreInst *StoreInst::clone_impl() const {
Eli Friedmancad9f2a2011-08-10 17:39:11 +00003549 return new StoreInst(getOperand(0), getOperand(1), isVolatile(),
Eli Friedman59b66882011-08-09 23:02:53 +00003550 getAlignment(), getOrdering(), getSynchScope());
3551
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003552}
3553
Eli Friedmanc9a551e2011-07-28 21:48:00 +00003554AtomicCmpXchgInst *AtomicCmpXchgInst::clone_impl() const {
3555 AtomicCmpXchgInst *Result =
3556 new AtomicCmpXchgInst(getOperand(0), getOperand(1), getOperand(2),
Tim Northovere94a5182014-03-11 10:48:52 +00003557 getSuccessOrdering(), getFailureOrdering(),
3558 getSynchScope());
Eli Friedmanc9a551e2011-07-28 21:48:00 +00003559 Result->setVolatile(isVolatile());
Tim Northover420a2162014-06-13 14:24:07 +00003560 Result->setWeak(isWeak());
Eli Friedmanc9a551e2011-07-28 21:48:00 +00003561 return Result;
3562}
3563
3564AtomicRMWInst *AtomicRMWInst::clone_impl() const {
3565 AtomicRMWInst *Result =
3566 new AtomicRMWInst(getOperation(),getOperand(0), getOperand(1),
3567 getOrdering(), getSynchScope());
3568 Result->setVolatile(isVolatile());
3569 return Result;
3570}
3571
Eli Friedmanfee02c62011-07-25 23:16:38 +00003572FenceInst *FenceInst::clone_impl() const {
3573 return new FenceInst(getContext(), getOrdering(), getSynchScope());
3574}
3575
Devang Patel11cf3f42009-10-27 22:16:29 +00003576TruncInst *TruncInst::clone_impl() const {
3577 return new TruncInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003578}
3579
Devang Patel11cf3f42009-10-27 22:16:29 +00003580ZExtInst *ZExtInst::clone_impl() const {
3581 return new ZExtInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003582}
3583
Devang Patel11cf3f42009-10-27 22:16:29 +00003584SExtInst *SExtInst::clone_impl() const {
3585 return new SExtInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003586}
3587
Devang Patel11cf3f42009-10-27 22:16:29 +00003588FPTruncInst *FPTruncInst::clone_impl() const {
3589 return new FPTruncInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003590}
3591
Devang Patel11cf3f42009-10-27 22:16:29 +00003592FPExtInst *FPExtInst::clone_impl() const {
3593 return new FPExtInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003594}
3595
Devang Patel11cf3f42009-10-27 22:16:29 +00003596UIToFPInst *UIToFPInst::clone_impl() const {
3597 return new UIToFPInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003598}
3599
Devang Patel11cf3f42009-10-27 22:16:29 +00003600SIToFPInst *SIToFPInst::clone_impl() const {
3601 return new SIToFPInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003602}
3603
Devang Patel11cf3f42009-10-27 22:16:29 +00003604FPToUIInst *FPToUIInst::clone_impl() const {
3605 return new FPToUIInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003606}
3607
Devang Patel11cf3f42009-10-27 22:16:29 +00003608FPToSIInst *FPToSIInst::clone_impl() const {
3609 return new FPToSIInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003610}
3611
Devang Patel11cf3f42009-10-27 22:16:29 +00003612PtrToIntInst *PtrToIntInst::clone_impl() const {
3613 return new PtrToIntInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003614}
3615
Devang Patel11cf3f42009-10-27 22:16:29 +00003616IntToPtrInst *IntToPtrInst::clone_impl() const {
3617 return new IntToPtrInst(getOperand(0), getType());
Gabor Greif697e94c2008-05-15 10:04:30 +00003618}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003619
Devang Patel11cf3f42009-10-27 22:16:29 +00003620BitCastInst *BitCastInst::clone_impl() const {
3621 return new BitCastInst(getOperand(0), getType());
Gabor Greif697e94c2008-05-15 10:04:30 +00003622}
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003623
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00003624AddrSpaceCastInst *AddrSpaceCastInst::clone_impl() const {
3625 return new AddrSpaceCastInst(getOperand(0), getType());
3626}
3627
Devang Patel11cf3f42009-10-27 22:16:29 +00003628CallInst *CallInst::clone_impl() const {
3629 return new(getNumOperands()) CallInst(*this);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003630}
3631
Devang Patel11cf3f42009-10-27 22:16:29 +00003632SelectInst *SelectInst::clone_impl() const {
3633 return SelectInst::Create(getOperand(0), getOperand(1), getOperand(2));
Chris Lattnerbbe0a422006-04-08 01:18:18 +00003634}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003635
Devang Patel11cf3f42009-10-27 22:16:29 +00003636VAArgInst *VAArgInst::clone_impl() const {
3637 return new VAArgInst(getOperand(0), getType());
Chris Lattnerbbe0a422006-04-08 01:18:18 +00003638}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003639
Devang Patel11cf3f42009-10-27 22:16:29 +00003640ExtractElementInst *ExtractElementInst::clone_impl() const {
3641 return ExtractElementInst::Create(getOperand(0), getOperand(1));
Chris Lattnerbbe0a422006-04-08 01:18:18 +00003642}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003643
Devang Patel11cf3f42009-10-27 22:16:29 +00003644InsertElementInst *InsertElementInst::clone_impl() const {
Chris Lattner1dcb6542012-01-25 23:49:49 +00003645 return InsertElementInst::Create(getOperand(0), getOperand(1), getOperand(2));
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003646}
3647
Devang Patel11cf3f42009-10-27 22:16:29 +00003648ShuffleVectorInst *ShuffleVectorInst::clone_impl() const {
Chris Lattner1dcb6542012-01-25 23:49:49 +00003649 return new ShuffleVectorInst(getOperand(0), getOperand(1), getOperand(2));
Gabor Greif697e94c2008-05-15 10:04:30 +00003650}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003651
Devang Patel11cf3f42009-10-27 22:16:29 +00003652PHINode *PHINode::clone_impl() const {
3653 return new PHINode(*this);
3654}
3655
Bill Wendlingfae14752011-08-12 20:24:12 +00003656LandingPadInst *LandingPadInst::clone_impl() const {
3657 return new LandingPadInst(*this);
3658}
3659
Devang Patel11cf3f42009-10-27 22:16:29 +00003660ReturnInst *ReturnInst::clone_impl() const {
3661 return new(getNumOperands()) ReturnInst(*this);
3662}
3663
3664BranchInst *BranchInst::clone_impl() const {
Jay Foadd81f3c92011-01-07 20:29:02 +00003665 return new(getNumOperands()) BranchInst(*this);
Gabor Greif697e94c2008-05-15 10:04:30 +00003666}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003667
Devang Patel11cf3f42009-10-27 22:16:29 +00003668SwitchInst *SwitchInst::clone_impl() const {
3669 return new SwitchInst(*this);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003670}
3671
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003672IndirectBrInst *IndirectBrInst::clone_impl() const {
3673 return new IndirectBrInst(*this);
Chris Lattner3ed871f2009-10-27 19:13:16 +00003674}
3675
3676
Devang Patel11cf3f42009-10-27 22:16:29 +00003677InvokeInst *InvokeInst::clone_impl() const {
3678 return new(getNumOperands()) InvokeInst(*this);
Gabor Greif697e94c2008-05-15 10:04:30 +00003679}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003680
Bill Wendlingf891bf82011-07-31 06:30:59 +00003681ResumeInst *ResumeInst::clone_impl() const {
3682 return new(1) ResumeInst(*this);
3683}
3684
Devang Patel11cf3f42009-10-27 22:16:29 +00003685UnreachableInst *UnreachableInst::clone_impl() const {
Nick Lewycky42fb7452009-09-27 07:38:41 +00003686 LLVMContext &Context = getContext();
Devang Patel11cf3f42009-10-27 22:16:29 +00003687 return new UnreachableInst(Context);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003688}