blob: f1dfea956c571a92c0866087192dff80b7f36d4f [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
Jay Foad5bd375a2011-07-15 08:37:34 +0000266void CallInst::init(Value *Func, ArrayRef<Value *> Args, const Twine &NameStr) {
267 assert(NumOperands == Args.size() + 1 && "NumOperands not set up?");
Gabor Greif6d673952010-07-16 09:38:02 +0000268 Op<-1>() = Func;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000269
Jay Foad5bd375a2011-07-15 08:37:34 +0000270#ifndef NDEBUG
Chris Lattner229907c2011-07-18 04:54:35 +0000271 FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000272 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
273
Jay Foad5bd375a2011-07-15 08:37:34 +0000274 assert((Args.size() == FTy->getNumParams() ||
275 (FTy->isVarArg() && Args.size() > FTy->getNumParams())) &&
Chris Lattner667a0562006-05-03 00:48:22 +0000276 "Calling a function with bad signature!");
Jay Foad5bd375a2011-07-15 08:37:34 +0000277
278 for (unsigned i = 0; i != Args.size(); ++i)
Chris Lattner667a0562006-05-03 00:48:22 +0000279 assert((i >= FTy->getNumParams() ||
Jay Foad5bd375a2011-07-15 08:37:34 +0000280 FTy->getParamType(i) == Args[i]->getType()) &&
Chris Lattner667a0562006-05-03 00:48:22 +0000281 "Calling a function with a bad signature!");
Jay Foad5bd375a2011-07-15 08:37:34 +0000282#endif
283
284 std::copy(Args.begin(), Args.end(), op_begin());
285 setName(NameStr);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000286}
287
Jay Foad5bd375a2011-07-15 08:37:34 +0000288void CallInst::init(Value *Func, const Twine &NameStr) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000289 assert(NumOperands == 1 && "NumOperands not set up?");
Gabor Greif6d673952010-07-16 09:38:02 +0000290 Op<-1>() = Func;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000291
Jay Foad5bd375a2011-07-15 08:37:34 +0000292#ifndef NDEBUG
Chris Lattner229907c2011-07-18 04:54:35 +0000293 FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000294 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
295
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000296 assert(FTy->getNumParams() == 0 && "Calling a function with bad signature");
Jay Foad5bd375a2011-07-15 08:37:34 +0000297#endif
298
299 setName(NameStr);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000300}
301
Daniel Dunbar4975db62009-07-25 04:41:11 +0000302CallInst::CallInst(Value *Func, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000303 Instruction *InsertBefore)
304 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
305 ->getElementType())->getReturnType(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000306 Instruction::Call,
307 OperandTraits<CallInst>::op_end(this) - 1,
308 1, InsertBefore) {
Jay Foad5bd375a2011-07-15 08:37:34 +0000309 init(Func, Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000310}
311
Daniel Dunbar4975db62009-07-25 04:41:11 +0000312CallInst::CallInst(Value *Func, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000313 BasicBlock *InsertAtEnd)
314 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
315 ->getElementType())->getReturnType(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000316 Instruction::Call,
317 OperandTraits<CallInst>::op_end(this) - 1,
318 1, InsertAtEnd) {
Jay Foad5bd375a2011-07-15 08:37:34 +0000319 init(Func, Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000320}
321
Misha Brukmanb1c93172005-04-21 23:48:37 +0000322CallInst::CallInst(const CallInst &CI)
Gabor Greiff6caff662008-05-10 08:32:32 +0000323 : Instruction(CI.getType(), Instruction::Call,
324 OperandTraits<CallInst>::op_end(this) - CI.getNumOperands(),
Chris Lattner8a923e72008-03-12 17:45:29 +0000325 CI.getNumOperands()) {
Devang Patel4c758ea2008-09-25 21:00:45 +0000326 setAttributes(CI.getAttributes());
Reid Kleckner118e1bf2014-05-06 20:08:20 +0000327 setTailCallKind(CI.getTailCallKind());
Chris Lattnerb9c86512009-12-29 02:14:09 +0000328 setCallingConv(CI.getCallingConv());
329
Jay Foad5bd375a2011-07-15 08:37:34 +0000330 std::copy(CI.op_begin(), CI.op_end(), op_begin());
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000331 SubclassOptionalData = CI.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000332}
333
Peter Collingbourne1b97a9c2013-03-02 01:20:18 +0000334void CallInst::addAttribute(unsigned i, Attribute::AttrKind attr) {
Bill Wendlinge94d8432012-12-07 23:16:57 +0000335 AttributeSet PAL = getAttributes();
Peter Collingbourne1b97a9c2013-03-02 01:20:18 +0000336 PAL = PAL.addAttribute(getContext(), i, attr);
Devang Patel4c758ea2008-09-25 21:00:45 +0000337 setAttributes(PAL);
Eric Christopher901b1a72008-05-16 20:39:43 +0000338}
339
Bill Wendling3d7b0b82012-12-19 07:18:57 +0000340void CallInst::removeAttribute(unsigned i, Attribute attr) {
Bill Wendlinge94d8432012-12-07 23:16:57 +0000341 AttributeSet PAL = getAttributes();
Bill Wendling430fa9b2013-01-23 00:45:55 +0000342 AttrBuilder B(attr);
343 LLVMContext &Context = getContext();
344 PAL = PAL.removeAttributes(Context, i,
345 AttributeSet::get(Context, i, B));
Devang Patel4c758ea2008-09-25 21:00:45 +0000346 setAttributes(PAL);
Duncan Sands78c88722008-07-08 08:38:44 +0000347}
348
Ramkumar Ramachandra8fcb4982015-02-14 19:37:54 +0000349void CallInst::addDereferenceableAttr(unsigned i, uint64_t Bytes) {
350 AttributeSet PAL = getAttributes();
351 PAL = PAL.addDereferenceableAttr(getContext(), i, Bytes);
352 setAttributes(PAL);
353}
354
Michael Gottesman41748d72013-06-27 00:25:01 +0000355bool CallInst::hasFnAttrImpl(Attribute::AttrKind A) const {
Bill Wendling749a43d2012-12-30 13:50:49 +0000356 if (AttributeList.hasAttribute(AttributeSet::FunctionIndex, A))
Bill Wendling375eb1f2012-10-09 00:28:54 +0000357 return true;
358 if (const Function *F = getCalledFunction())
Bill Wendling94dcaf82012-12-30 12:45:13 +0000359 return F->getAttributes().hasAttribute(AttributeSet::FunctionIndex, A);
Bill Wendling375eb1f2012-10-09 00:28:54 +0000360 return false;
361}
362
Bill Wendlingc79e42c2012-12-22 00:37:52 +0000363bool CallInst::paramHasAttr(unsigned i, Attribute::AttrKind A) const {
Bill Wendling749a43d2012-12-30 13:50:49 +0000364 if (AttributeList.hasAttribute(i, A))
Bill Wendling8baa61d2012-10-03 17:54:26 +0000365 return true;
366 if (const Function *F = getCalledFunction())
Bill Wendling94dcaf82012-12-30 12:45:13 +0000367 return F->getAttributes().hasAttribute(i, A);
Bill Wendlingdaf8e382012-10-04 07:18:12 +0000368 return false;
369}
370
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000371/// IsConstantOne - Return true only if val is constant int 1
372static bool IsConstantOne(Value *val) {
Reid Kleckner971c3ea2014-11-13 22:55:19 +0000373 assert(val && "IsConstantOne does not work with nullptr val");
Matt Arsenault69417852014-09-15 17:56:51 +0000374 const ConstantInt *CVal = dyn_cast<ConstantInt>(val);
375 return CVal && CVal->isOne();
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000376}
377
Nick Lewyckybb1410e2009-10-17 23:52:26 +0000378static Instruction *createMalloc(Instruction *InsertBefore,
Chris Lattner229907c2011-07-18 04:54:35 +0000379 BasicBlock *InsertAtEnd, Type *IntPtrTy,
380 Type *AllocTy, Value *AllocSize,
Victor Hernandezf3db9152009-11-07 00:16:28 +0000381 Value *ArraySize, Function *MallocF,
382 const Twine &Name) {
Benjamin Kramer4bf4e862009-09-10 11:31:39 +0000383 assert(((!InsertBefore && InsertAtEnd) || (InsertBefore && !InsertAtEnd)) &&
Victor Hernandez788eaab2009-09-18 19:20:02 +0000384 "createMalloc needs either InsertBefore or InsertAtEnd");
385
386 // malloc(type) becomes:
387 // bitcast (i8* malloc(typeSize)) to type*
388 // malloc(type, arraySize) becomes:
389 // bitcast (i8 *malloc(typeSize*arraySize)) to type*
Victor Hernandezf3db9152009-11-07 00:16:28 +0000390 if (!ArraySize)
391 ArraySize = ConstantInt::get(IntPtrTy, 1);
392 else if (ArraySize->getType() != IntPtrTy) {
393 if (InsertBefore)
Victor Hernandeze04ed0c2009-11-07 00:36:50 +0000394 ArraySize = CastInst::CreateIntegerCast(ArraySize, IntPtrTy, false,
395 "", InsertBefore);
Victor Hernandezf3db9152009-11-07 00:16:28 +0000396 else
Victor Hernandeze04ed0c2009-11-07 00:36:50 +0000397 ArraySize = CastInst::CreateIntegerCast(ArraySize, IntPtrTy, false,
398 "", InsertAtEnd);
Victor Hernandezf3db9152009-11-07 00:16:28 +0000399 }
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000400
Benjamin Kramer4bf4e862009-09-10 11:31:39 +0000401 if (!IsConstantOne(ArraySize)) {
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000402 if (IsConstantOne(AllocSize)) {
403 AllocSize = ArraySize; // Operand * 1 = Operand
404 } else if (Constant *CO = dyn_cast<Constant>(ArraySize)) {
405 Constant *Scale = ConstantExpr::getIntegerCast(CO, IntPtrTy,
406 false /*ZExt*/);
407 // Malloc arg is constant product of type size and array size
408 AllocSize = ConstantExpr::getMul(Scale, cast<Constant>(AllocSize));
409 } else {
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000410 // Multiply type size by the array size...
411 if (InsertBefore)
Victor Hernandez788eaab2009-09-18 19:20:02 +0000412 AllocSize = BinaryOperator::CreateMul(ArraySize, AllocSize,
413 "mallocsize", InsertBefore);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000414 else
Victor Hernandez788eaab2009-09-18 19:20:02 +0000415 AllocSize = BinaryOperator::CreateMul(ArraySize, AllocSize,
416 "mallocsize", InsertAtEnd);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000417 }
Benjamin Kramer4bf4e862009-09-10 11:31:39 +0000418 }
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000419
Victor Hernandez788eaab2009-09-18 19:20:02 +0000420 assert(AllocSize->getType() == IntPtrTy && "malloc arg is wrong size");
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000421 // Create the call to Malloc.
422 BasicBlock* BB = InsertBefore ? InsertBefore->getParent() : InsertAtEnd;
423 Module* M = BB->getParent()->getParent();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000424 Type *BPTy = Type::getInt8PtrTy(BB->getContext());
Victor Hernandezbb336a12009-11-10 19:53:28 +0000425 Value *MallocFunc = MallocF;
426 if (!MallocFunc)
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000427 // prototype malloc as "void *malloc(size_t)"
Reid Kleckner971c3ea2014-11-13 22:55:19 +0000428 MallocFunc = M->getOrInsertFunction("malloc", BPTy, IntPtrTy, nullptr);
Chris Lattner229907c2011-07-18 04:54:35 +0000429 PointerType *AllocPtrType = PointerType::getUnqual(AllocTy);
Craig Topperc6207612014-04-09 06:08:46 +0000430 CallInst *MCall = nullptr;
431 Instruction *Result = nullptr;
Victor Hernandez788eaab2009-09-18 19:20:02 +0000432 if (InsertBefore) {
Victor Hernandezbb336a12009-11-10 19:53:28 +0000433 MCall = CallInst::Create(MallocFunc, AllocSize, "malloccall", InsertBefore);
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000434 Result = MCall;
435 if (Result->getType() != AllocPtrType)
436 // Create a cast instruction to convert to the right type...
Victor Hernandezf3db9152009-11-07 00:16:28 +0000437 Result = new BitCastInst(MCall, AllocPtrType, Name, InsertBefore);
Victor Hernandez788eaab2009-09-18 19:20:02 +0000438 } else {
Victor Hernandezbb336a12009-11-10 19:53:28 +0000439 MCall = CallInst::Create(MallocFunc, AllocSize, "malloccall");
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000440 Result = MCall;
441 if (Result->getType() != AllocPtrType) {
442 InsertAtEnd->getInstList().push_back(MCall);
443 // Create a cast instruction to convert to the right type...
Victor Hernandezf3db9152009-11-07 00:16:28 +0000444 Result = new BitCastInst(MCall, AllocPtrType, Name);
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000445 }
Victor Hernandez788eaab2009-09-18 19:20:02 +0000446 }
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000447 MCall->setTailCall();
Victor Hernandezbb336a12009-11-10 19:53:28 +0000448 if (Function *F = dyn_cast<Function>(MallocFunc)) {
449 MCall->setCallingConv(F->getCallingConv());
450 if (!F->doesNotAlias(0)) F->setDoesNotAlias(0);
451 }
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000452 assert(!MCall->getType()->isVoidTy() && "Malloc has void return type");
Victor Hernandez788eaab2009-09-18 19:20:02 +0000453
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000454 return Result;
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000455}
456
457/// CreateMalloc - Generate the IR for a call to malloc:
458/// 1. Compute the malloc call's argument as the specified type's size,
459/// possibly multiplied by the array size if the array size is not
460/// constant 1.
461/// 2. Call malloc with that argument.
462/// 3. Bitcast the result of the malloc call to the specified type.
Nick Lewyckybb1410e2009-10-17 23:52:26 +0000463Instruction *CallInst::CreateMalloc(Instruction *InsertBefore,
Chris Lattner229907c2011-07-18 04:54:35 +0000464 Type *IntPtrTy, Type *AllocTy,
Victor Hernandezf3db9152009-11-07 00:16:28 +0000465 Value *AllocSize, Value *ArraySize,
Duncan Sands41b4a6b2010-07-12 08:16:59 +0000466 Function * MallocF,
Victor Hernandezf3db9152009-11-07 00:16:28 +0000467 const Twine &Name) {
Craig Topperc6207612014-04-09 06:08:46 +0000468 return createMalloc(InsertBefore, nullptr, IntPtrTy, AllocTy, AllocSize,
Chris Lattner601e390a2010-07-12 00:57:28 +0000469 ArraySize, MallocF, Name);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000470}
471
472/// CreateMalloc - Generate the IR for a call to malloc:
473/// 1. Compute the malloc call's argument as the specified type's size,
474/// possibly multiplied by the array size if the array size is not
475/// constant 1.
476/// 2. Call malloc with that argument.
477/// 3. Bitcast the result of the malloc call to the specified type.
478/// Note: This function does not add the bitcast to the basic block, that is the
479/// responsibility of the caller.
Nick Lewyckybb1410e2009-10-17 23:52:26 +0000480Instruction *CallInst::CreateMalloc(BasicBlock *InsertAtEnd,
Chris Lattner229907c2011-07-18 04:54:35 +0000481 Type *IntPtrTy, Type *AllocTy,
Victor Hernandezf3db9152009-11-07 00:16:28 +0000482 Value *AllocSize, Value *ArraySize,
483 Function *MallocF, const Twine &Name) {
Craig Topperc6207612014-04-09 06:08:46 +0000484 return createMalloc(nullptr, InsertAtEnd, IntPtrTy, AllocTy, AllocSize,
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000485 ArraySize, MallocF, Name);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000486}
Duncan Sands5208d1a2007-11-28 17:07:01 +0000487
Victor Hernandeze2971492009-10-24 04:23:03 +0000488static Instruction* createFree(Value* Source, Instruction *InsertBefore,
489 BasicBlock *InsertAtEnd) {
490 assert(((!InsertBefore && InsertAtEnd) || (InsertBefore && !InsertAtEnd)) &&
491 "createFree needs either InsertBefore or InsertAtEnd");
Duncan Sands19d0b472010-02-16 11:11:14 +0000492 assert(Source->getType()->isPointerTy() &&
Victor Hernandeze2971492009-10-24 04:23:03 +0000493 "Can not free something of nonpointer type!");
494
495 BasicBlock* BB = InsertBefore ? InsertBefore->getParent() : InsertAtEnd;
496 Module* M = BB->getParent()->getParent();
497
Chris Lattner229907c2011-07-18 04:54:35 +0000498 Type *VoidTy = Type::getVoidTy(M->getContext());
499 Type *IntPtrTy = Type::getInt8PtrTy(M->getContext());
Victor Hernandeze2971492009-10-24 04:23:03 +0000500 // prototype free as "void free(void*)"
Reid Kleckner971c3ea2014-11-13 22:55:19 +0000501 Value *FreeFunc = M->getOrInsertFunction("free", VoidTy, IntPtrTy, nullptr);
Craig Topperc6207612014-04-09 06:08:46 +0000502 CallInst* Result = nullptr;
Victor Hernandeze2971492009-10-24 04:23:03 +0000503 Value *PtrCast = Source;
504 if (InsertBefore) {
505 if (Source->getType() != IntPtrTy)
506 PtrCast = new BitCastInst(Source, IntPtrTy, "", InsertBefore);
507 Result = CallInst::Create(FreeFunc, PtrCast, "", InsertBefore);
508 } else {
509 if (Source->getType() != IntPtrTy)
510 PtrCast = new BitCastInst(Source, IntPtrTy, "", InsertAtEnd);
511 Result = CallInst::Create(FreeFunc, PtrCast, "");
512 }
513 Result->setTailCall();
Chris Lattner2156c222009-11-09 07:12:01 +0000514 if (Function *F = dyn_cast<Function>(FreeFunc))
515 Result->setCallingConv(F->getCallingConv());
Victor Hernandeze2971492009-10-24 04:23:03 +0000516
517 return Result;
518}
519
520/// CreateFree - Generate the IR for a call to the builtin free function.
Chris Lattner601e390a2010-07-12 00:57:28 +0000521Instruction * CallInst::CreateFree(Value* Source, Instruction *InsertBefore) {
Craig Topperc6207612014-04-09 06:08:46 +0000522 return createFree(Source, InsertBefore, nullptr);
Victor Hernandeze2971492009-10-24 04:23:03 +0000523}
524
525/// CreateFree - Generate the IR for a call to the builtin free function.
526/// Note: This function does not add the call to the basic block, that is the
527/// responsibility of the caller.
528Instruction* CallInst::CreateFree(Value* Source, BasicBlock *InsertAtEnd) {
Craig Topperc6207612014-04-09 06:08:46 +0000529 Instruction* FreeCall = createFree(Source, nullptr, InsertAtEnd);
Victor Hernandeze2971492009-10-24 04:23:03 +0000530 assert(FreeCall && "CreateFree did not create a CallInst");
531 return FreeCall;
532}
533
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000534//===----------------------------------------------------------------------===//
535// InvokeInst Implementation
536//===----------------------------------------------------------------------===//
537
538void InvokeInst::init(Value *Fn, BasicBlock *IfNormal, BasicBlock *IfException,
Jay Foad5bd375a2011-07-15 08:37:34 +0000539 ArrayRef<Value *> Args, const Twine &NameStr) {
540 assert(NumOperands == 3 + Args.size() && "NumOperands not set up?");
Gabor Greifa2fbc0a2010-03-24 13:21:49 +0000541 Op<-3>() = Fn;
542 Op<-2>() = IfNormal;
543 Op<-1>() = IfException;
Jay Foad5bd375a2011-07-15 08:37:34 +0000544
545#ifndef NDEBUG
Chris Lattner229907c2011-07-18 04:54:35 +0000546 FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000547 cast<FunctionType>(cast<PointerType>(Fn->getType())->getElementType());
Misha Brukmanb1c93172005-04-21 23:48:37 +0000548
Jay Foad5bd375a2011-07-15 08:37:34 +0000549 assert(((Args.size() == FTy->getNumParams()) ||
550 (FTy->isVarArg() && Args.size() > FTy->getNumParams())) &&
Gabor Greif668d7002010-03-23 13:45:54 +0000551 "Invoking a function with bad signature");
Misha Brukmanb1c93172005-04-21 23:48:37 +0000552
Jay Foad5bd375a2011-07-15 08:37:34 +0000553 for (unsigned i = 0, e = Args.size(); i != e; i++)
Chris Lattner667a0562006-05-03 00:48:22 +0000554 assert((i >= FTy->getNumParams() ||
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000555 FTy->getParamType(i) == Args[i]->getType()) &&
Chris Lattner667a0562006-05-03 00:48:22 +0000556 "Invoking a function with a bad signature!");
Jay Foad5bd375a2011-07-15 08:37:34 +0000557#endif
558
559 std::copy(Args.begin(), Args.end(), op_begin());
560 setName(NameStr);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000561}
562
Misha Brukmanb1c93172005-04-21 23:48:37 +0000563InvokeInst::InvokeInst(const InvokeInst &II)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000564 : TerminatorInst(II.getType(), Instruction::Invoke,
Gabor Greif697e94c2008-05-15 10:04:30 +0000565 OperandTraits<InvokeInst>::op_end(this)
566 - II.getNumOperands(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000567 II.getNumOperands()) {
Devang Patel4c758ea2008-09-25 21:00:45 +0000568 setAttributes(II.getAttributes());
Chris Lattnerb9c86512009-12-29 02:14:09 +0000569 setCallingConv(II.getCallingConv());
Jay Foad5bd375a2011-07-15 08:37:34 +0000570 std::copy(II.op_begin(), II.op_end(), op_begin());
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000571 SubclassOptionalData = II.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000572}
573
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000574BasicBlock *InvokeInst::getSuccessorV(unsigned idx) const {
575 return getSuccessor(idx);
576}
577unsigned InvokeInst::getNumSuccessorsV() const {
578 return getNumSuccessors();
579}
580void InvokeInst::setSuccessorV(unsigned idx, BasicBlock *B) {
581 return setSuccessor(idx, B);
582}
583
Michael Gottesman41748d72013-06-27 00:25:01 +0000584bool InvokeInst::hasFnAttrImpl(Attribute::AttrKind A) const {
Bill Wendling749a43d2012-12-30 13:50:49 +0000585 if (AttributeList.hasAttribute(AttributeSet::FunctionIndex, A))
Bill Wendling375eb1f2012-10-09 00:28:54 +0000586 return true;
587 if (const Function *F = getCalledFunction())
Bill Wendling94dcaf82012-12-30 12:45:13 +0000588 return F->getAttributes().hasAttribute(AttributeSet::FunctionIndex, A);
Bill Wendling375eb1f2012-10-09 00:28:54 +0000589 return false;
590}
591
Bill Wendlingc79e42c2012-12-22 00:37:52 +0000592bool InvokeInst::paramHasAttr(unsigned i, Attribute::AttrKind A) const {
Bill Wendling749a43d2012-12-30 13:50:49 +0000593 if (AttributeList.hasAttribute(i, A))
Bill Wendling8baa61d2012-10-03 17:54:26 +0000594 return true;
595 if (const Function *F = getCalledFunction())
Bill Wendling94dcaf82012-12-30 12:45:13 +0000596 return F->getAttributes().hasAttribute(i, A);
Bill Wendlingdaf8e382012-10-04 07:18:12 +0000597 return false;
598}
599
Peter Collingbourne1b97a9c2013-03-02 01:20:18 +0000600void InvokeInst::addAttribute(unsigned i, Attribute::AttrKind attr) {
Bill Wendlinge94d8432012-12-07 23:16:57 +0000601 AttributeSet PAL = getAttributes();
Peter Collingbourne1b97a9c2013-03-02 01:20:18 +0000602 PAL = PAL.addAttribute(getContext(), i, attr);
Devang Patel4c758ea2008-09-25 21:00:45 +0000603 setAttributes(PAL);
Eric Christopher901b1a72008-05-16 20:39:43 +0000604}
605
Bill Wendling3d7b0b82012-12-19 07:18:57 +0000606void InvokeInst::removeAttribute(unsigned i, Attribute attr) {
Bill Wendlinge94d8432012-12-07 23:16:57 +0000607 AttributeSet PAL = getAttributes();
Bill Wendling430fa9b2013-01-23 00:45:55 +0000608 AttrBuilder B(attr);
609 PAL = PAL.removeAttributes(getContext(), i,
610 AttributeSet::get(getContext(), i, B));
Devang Patel4c758ea2008-09-25 21:00:45 +0000611 setAttributes(PAL);
Duncan Sandsaa31b922007-12-19 21:13:37 +0000612}
613
Ramkumar Ramachandra8fcb4982015-02-14 19:37:54 +0000614void InvokeInst::addDereferenceableAttr(unsigned i, uint64_t Bytes) {
615 AttributeSet PAL = getAttributes();
616 PAL = PAL.addDereferenceableAttr(getContext(), i, Bytes);
617 setAttributes(PAL);
618}
619
Bill Wendlingfae14752011-08-12 20:24:12 +0000620LandingPadInst *InvokeInst::getLandingPadInst() const {
621 return cast<LandingPadInst>(getUnwindDest()->getFirstNonPHI());
622}
Duncan Sands5208d1a2007-11-28 17:07:01 +0000623
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000624//===----------------------------------------------------------------------===//
625// ReturnInst Implementation
626//===----------------------------------------------------------------------===//
627
Chris Lattner2195fc42007-02-24 00:55:48 +0000628ReturnInst::ReturnInst(const ReturnInst &RI)
Owen Anderson55f1c092009-08-13 21:58:54 +0000629 : TerminatorInst(Type::getVoidTy(RI.getContext()), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000630 OperandTraits<ReturnInst>::op_end(this) -
631 RI.getNumOperands(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000632 RI.getNumOperands()) {
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000633 if (RI.getNumOperands())
Gabor Greif2d3024d2008-05-26 21:33:52 +0000634 Op<0>() = RI.Op<0>();
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000635 SubclassOptionalData = RI.SubclassOptionalData;
Chris Lattner2195fc42007-02-24 00:55:48 +0000636}
637
Owen Anderson55f1c092009-08-13 21:58:54 +0000638ReturnInst::ReturnInst(LLVMContext &C, Value *retVal, Instruction *InsertBefore)
639 : TerminatorInst(Type::getVoidTy(C), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000640 OperandTraits<ReturnInst>::op_end(this) - !!retVal, !!retVal,
641 InsertBefore) {
Devang Patelc38eb522008-02-26 18:49:29 +0000642 if (retVal)
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000643 Op<0>() = retVal;
Chris Lattner2195fc42007-02-24 00:55:48 +0000644}
Owen Anderson55f1c092009-08-13 21:58:54 +0000645ReturnInst::ReturnInst(LLVMContext &C, Value *retVal, BasicBlock *InsertAtEnd)
646 : TerminatorInst(Type::getVoidTy(C), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000647 OperandTraits<ReturnInst>::op_end(this) - !!retVal, !!retVal,
648 InsertAtEnd) {
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 &Context, BasicBlock *InsertAtEnd)
653 : TerminatorInst(Type::getVoidTy(Context), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000654 OperandTraits<ReturnInst>::op_end(this), 0, InsertAtEnd) {
Devang Patel59643e52008-02-23 00:35:18 +0000655}
656
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000657unsigned ReturnInst::getNumSuccessorsV() const {
658 return getNumSuccessors();
659}
660
Devang Patelae682fb2008-02-26 17:56:20 +0000661/// Out-of-line ReturnInst method, put here so the C++ compiler can choose to
662/// emit the vtable for the class in this translation unit.
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000663void ReturnInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000664 llvm_unreachable("ReturnInst has no successors!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000665}
666
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000667BasicBlock *ReturnInst::getSuccessorV(unsigned idx) const {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000668 llvm_unreachable("ReturnInst has no successors!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000669}
670
Devang Patel59643e52008-02-23 00:35:18 +0000671ReturnInst::~ReturnInst() {
Devang Patel59643e52008-02-23 00:35:18 +0000672}
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000673
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000674//===----------------------------------------------------------------------===//
Bill Wendlingf891bf82011-07-31 06:30:59 +0000675// ResumeInst Implementation
676//===----------------------------------------------------------------------===//
677
678ResumeInst::ResumeInst(const ResumeInst &RI)
679 : TerminatorInst(Type::getVoidTy(RI.getContext()), Instruction::Resume,
680 OperandTraits<ResumeInst>::op_begin(this), 1) {
681 Op<0>() = RI.Op<0>();
682}
683
684ResumeInst::ResumeInst(Value *Exn, Instruction *InsertBefore)
685 : TerminatorInst(Type::getVoidTy(Exn->getContext()), Instruction::Resume,
686 OperandTraits<ResumeInst>::op_begin(this), 1, InsertBefore) {
687 Op<0>() = Exn;
688}
689
690ResumeInst::ResumeInst(Value *Exn, BasicBlock *InsertAtEnd)
691 : TerminatorInst(Type::getVoidTy(Exn->getContext()), Instruction::Resume,
692 OperandTraits<ResumeInst>::op_begin(this), 1, InsertAtEnd) {
693 Op<0>() = Exn;
694}
695
696unsigned ResumeInst::getNumSuccessorsV() const {
697 return getNumSuccessors();
698}
699
700void ResumeInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
701 llvm_unreachable("ResumeInst has no successors!");
702}
703
704BasicBlock *ResumeInst::getSuccessorV(unsigned idx) const {
705 llvm_unreachable("ResumeInst has no successors!");
Bill Wendlingf891bf82011-07-31 06:30:59 +0000706}
707
708//===----------------------------------------------------------------------===//
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000709// UnreachableInst Implementation
710//===----------------------------------------------------------------------===//
711
Owen Anderson55f1c092009-08-13 21:58:54 +0000712UnreachableInst::UnreachableInst(LLVMContext &Context,
713 Instruction *InsertBefore)
714 : TerminatorInst(Type::getVoidTy(Context), Instruction::Unreachable,
Craig Topperc6207612014-04-09 06:08:46 +0000715 nullptr, 0, InsertBefore) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000716}
Owen Anderson55f1c092009-08-13 21:58:54 +0000717UnreachableInst::UnreachableInst(LLVMContext &Context, BasicBlock *InsertAtEnd)
718 : TerminatorInst(Type::getVoidTy(Context), Instruction::Unreachable,
Craig Topperc6207612014-04-09 06:08:46 +0000719 nullptr, 0, InsertAtEnd) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000720}
721
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000722unsigned UnreachableInst::getNumSuccessorsV() const {
723 return getNumSuccessors();
724}
725
726void UnreachableInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
Bill Wendling0aef16a2012-02-06 21:44:22 +0000727 llvm_unreachable("UnreachableInst has no successors!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000728}
729
730BasicBlock *UnreachableInst::getSuccessorV(unsigned idx) const {
Bill Wendling0aef16a2012-02-06 21:44:22 +0000731 llvm_unreachable("UnreachableInst has no successors!");
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000732}
733
734//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000735// BranchInst Implementation
736//===----------------------------------------------------------------------===//
737
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000738void BranchInst::AssertOK() {
739 if (isConditional())
Duncan Sands9dff9be2010-02-15 16:12:20 +0000740 assert(getCondition()->getType()->isIntegerTy(1) &&
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000741 "May only branch on boolean predicates!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000742}
743
Chris Lattner2195fc42007-02-24 00:55:48 +0000744BranchInst::BranchInst(BasicBlock *IfTrue, Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +0000745 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000746 OperandTraits<BranchInst>::op_end(this) - 1,
747 1, InsertBefore) {
Craig Topper2617dcc2014-04-15 06:32:26 +0000748 assert(IfTrue && "Branch destination may not be null!");
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000749 Op<-1>() = IfTrue;
Chris Lattner2195fc42007-02-24 00:55:48 +0000750}
751BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
752 Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +0000753 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000754 OperandTraits<BranchInst>::op_end(this) - 3,
755 3, InsertBefore) {
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000756 Op<-1>() = IfTrue;
757 Op<-2>() = IfFalse;
758 Op<-3>() = Cond;
Chris Lattner2195fc42007-02-24 00:55:48 +0000759#ifndef NDEBUG
760 AssertOK();
761#endif
762}
763
764BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +0000765 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000766 OperandTraits<BranchInst>::op_end(this) - 1,
767 1, InsertAtEnd) {
Craig Topper2617dcc2014-04-15 06:32:26 +0000768 assert(IfTrue && "Branch destination may not be null!");
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000769 Op<-1>() = IfTrue;
Chris Lattner2195fc42007-02-24 00:55:48 +0000770}
771
772BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
773 BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +0000774 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000775 OperandTraits<BranchInst>::op_end(this) - 3,
776 3, InsertAtEnd) {
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000777 Op<-1>() = IfTrue;
778 Op<-2>() = IfFalse;
779 Op<-3>() = Cond;
Chris Lattner2195fc42007-02-24 00:55:48 +0000780#ifndef NDEBUG
781 AssertOK();
782#endif
783}
784
785
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000786BranchInst::BranchInst(const BranchInst &BI) :
Owen Anderson55f1c092009-08-13 21:58:54 +0000787 TerminatorInst(Type::getVoidTy(BI.getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000788 OperandTraits<BranchInst>::op_end(this) - BI.getNumOperands(),
789 BI.getNumOperands()) {
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000790 Op<-1>() = BI.Op<-1>();
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000791 if (BI.getNumOperands() != 1) {
792 assert(BI.getNumOperands() == 3 && "BR can have 1 or 3 operands!");
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000793 Op<-3>() = BI.Op<-3>();
794 Op<-2>() = BI.Op<-2>();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000795 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000796 SubclassOptionalData = BI.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000797}
798
Chandler Carruth3e8aa652011-10-17 01:11:57 +0000799void BranchInst::swapSuccessors() {
800 assert(isConditional() &&
801 "Cannot swap successors of an unconditional branch");
802 Op<-1>().swap(Op<-2>());
803
804 // Update profile metadata if present and it matches our structural
805 // expectations.
Duncan P. N. Exon Smithde36e802014-11-11 21:30:22 +0000806 MDNode *ProfileData = getMetadata(LLVMContext::MD_prof);
Chandler Carruth3e8aa652011-10-17 01:11:57 +0000807 if (!ProfileData || ProfileData->getNumOperands() != 3)
808 return;
809
810 // The first operand is the name. Fetch them backwards and build a new one.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000811 Metadata *Ops[] = {ProfileData->getOperand(0), ProfileData->getOperand(2),
812 ProfileData->getOperand(1)};
Chandler Carruth3e8aa652011-10-17 01:11:57 +0000813 setMetadata(LLVMContext::MD_prof,
814 MDNode::get(ProfileData->getContext(), Ops));
815}
816
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000817BasicBlock *BranchInst::getSuccessorV(unsigned idx) const {
818 return getSuccessor(idx);
819}
820unsigned BranchInst::getNumSuccessorsV() const {
821 return getNumSuccessors();
822}
823void BranchInst::setSuccessorV(unsigned idx, BasicBlock *B) {
824 setSuccessor(idx, B);
825}
826
827
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000828//===----------------------------------------------------------------------===//
Victor Hernandez8acf2952009-10-23 21:09:37 +0000829// AllocaInst Implementation
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000830//===----------------------------------------------------------------------===//
831
Owen Andersonb6b25302009-07-14 23:09:55 +0000832static Value *getAISize(LLVMContext &Context, Value *Amt) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000833 if (!Amt)
Owen Anderson55f1c092009-08-13 21:58:54 +0000834 Amt = ConstantInt::get(Type::getInt32Ty(Context), 1);
Chris Lattnerbb7ff662006-05-10 04:32:43 +0000835 else {
836 assert(!isa<BasicBlock>(Amt) &&
Chris Lattner9b6ec772007-10-18 16:10:48 +0000837 "Passed basic block into allocation size parameter! Use other ctor");
Dan Gohman2140a742010-05-28 01:14:11 +0000838 assert(Amt->getType()->isIntegerTy() &&
839 "Allocation array size is not an integer!");
Chris Lattnerbb7ff662006-05-10 04:32:43 +0000840 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000841 return Amt;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000842}
843
Benjamin Kramerfc165f12015-03-05 22:05:26 +0000844AllocaInst::AllocaInst(Type *Ty, const Twine &Name, Instruction *InsertBefore)
845 : AllocaInst(Ty, /*ArraySize=*/nullptr, Name, InsertBefore) {}
Victor Hernandez8acf2952009-10-23 21:09:37 +0000846
Benjamin Kramerfc165f12015-03-05 22:05:26 +0000847AllocaInst::AllocaInst(Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd)
848 : AllocaInst(Ty, /*ArraySize=*/nullptr, Name, InsertAtEnd) {}
Victor Hernandez8acf2952009-10-23 21:09:37 +0000849
Benjamin Kramerfc165f12015-03-05 22:05:26 +0000850AllocaInst::AllocaInst(Type *Ty, Value *ArraySize, const Twine &Name,
Victor Hernandez8acf2952009-10-23 21:09:37 +0000851 Instruction *InsertBefore)
Benjamin Kramerfc165f12015-03-05 22:05:26 +0000852 : AllocaInst(Ty, ArraySize, /*Align=*/0, Name, InsertBefore) {}
Victor Hernandez8acf2952009-10-23 21:09:37 +0000853
Benjamin Kramerfc165f12015-03-05 22:05:26 +0000854AllocaInst::AllocaInst(Type *Ty, Value *ArraySize, const Twine &Name,
Victor Hernandez8acf2952009-10-23 21:09:37 +0000855 BasicBlock *InsertAtEnd)
Benjamin Kramerfc165f12015-03-05 22:05:26 +0000856 : AllocaInst(Ty, ArraySize, /*Align=*/0, Name, InsertAtEnd) {}
Victor Hernandez8acf2952009-10-23 21:09:37 +0000857
Chris Lattner229907c2011-07-18 04:54:35 +0000858AllocaInst::AllocaInst(Type *Ty, Value *ArraySize, unsigned Align,
Victor Hernandez8acf2952009-10-23 21:09:37 +0000859 const Twine &Name, Instruction *InsertBefore)
860 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
Owen Anderson4fdeba92009-07-15 23:53:25 +0000861 getAISize(Ty->getContext(), ArraySize), InsertBefore) {
Dan Gohmanaa583d72008-03-24 16:55:58 +0000862 setAlignment(Align);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000863 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Chris Lattner0f048162007-02-13 07:54:42 +0000864 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000865}
866
Chris Lattner229907c2011-07-18 04:54:35 +0000867AllocaInst::AllocaInst(Type *Ty, Value *ArraySize, unsigned Align,
Victor Hernandez8acf2952009-10-23 21:09:37 +0000868 const Twine &Name, BasicBlock *InsertAtEnd)
869 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
Owen Anderson4fdeba92009-07-15 23:53:25 +0000870 getAISize(Ty->getContext(), ArraySize), InsertAtEnd) {
Dan Gohmanaa583d72008-03-24 16:55:58 +0000871 setAlignment(Align);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000872 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Chris Lattner0f048162007-02-13 07:54:42 +0000873 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000874}
875
Gordon Henriksen14a55692007-12-10 02:14:30 +0000876// Out of line virtual method, so the vtable, etc has a home.
Victor Hernandez8acf2952009-10-23 21:09:37 +0000877AllocaInst::~AllocaInst() {
Gordon Henriksen14a55692007-12-10 02:14:30 +0000878}
879
Victor Hernandez8acf2952009-10-23 21:09:37 +0000880void AllocaInst::setAlignment(unsigned Align) {
Dan Gohmanaa583d72008-03-24 16:55:58 +0000881 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
Dan Gohmana7e5a242010-07-28 20:12:04 +0000882 assert(Align <= MaximumAlignment &&
883 "Alignment is greater than MaximumAlignment!");
Reid Kleckner436c42e2014-01-17 23:58:17 +0000884 setInstructionSubclassData((getSubclassDataFromInstruction() & ~31) |
885 (Log2_32(Align) + 1));
Dan Gohmanaa583d72008-03-24 16:55:58 +0000886 assert(getAlignment() == Align && "Alignment representation error!");
887}
888
Victor Hernandez8acf2952009-10-23 21:09:37 +0000889bool AllocaInst::isArrayAllocation() const {
Reid Spencera9e6e312007-03-01 20:27:41 +0000890 if (ConstantInt *CI = dyn_cast<ConstantInt>(getOperand(0)))
Dan Gohman9a1b8592010-09-27 15:15:44 +0000891 return !CI->isOne();
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000892 return true;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000893}
894
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000895Type *AllocaInst::getAllocatedType() const {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000896 return getType()->getElementType();
897}
898
Chris Lattner8b291e62008-11-26 02:54:17 +0000899/// isStaticAlloca - Return true if this alloca is in the entry block of the
900/// function and is a constant size. If so, the code generator will fold it
901/// into the prolog/epilog code, so it is basically free.
902bool AllocaInst::isStaticAlloca() const {
903 // Must be constant size.
904 if (!isa<ConstantInt>(getArraySize())) return false;
905
906 // Must be in the entry block.
907 const BasicBlock *Parent = getParent();
Reid Kleckner436c42e2014-01-17 23:58:17 +0000908 return Parent == &Parent->getParent()->front() && !isUsedWithInAlloca();
Chris Lattner8b291e62008-11-26 02:54:17 +0000909}
910
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000911//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000912// LoadInst Implementation
913//===----------------------------------------------------------------------===//
914
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000915void LoadInst::AssertOK() {
Duncan Sands19d0b472010-02-16 11:11:14 +0000916 assert(getOperand(0)->getType()->isPointerTy() &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000917 "Ptr must have pointer type.");
Eli Friedman59b66882011-08-09 23:02:53 +0000918 assert(!(isAtomic() && getAlignment() == 0) &&
919 "Alignment required for atomic load");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000920}
921
Daniel Dunbar4975db62009-07-25 04:41:11 +0000922LoadInst::LoadInst(Value *Ptr, const Twine &Name, Instruction *InsertBef)
Benjamin Kramerfc165f12015-03-05 22:05:26 +0000923 : LoadInst(Ptr, Name, /*isVolatile=*/false, InsertBef) {}
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000924
Daniel Dunbar4975db62009-07-25 04:41:11 +0000925LoadInst::LoadInst(Value *Ptr, const Twine &Name, BasicBlock *InsertAE)
Benjamin Kramerfc165f12015-03-05 22:05:26 +0000926 : LoadInst(Ptr, Name, /*isVolatile=*/false, InsertAE) {}
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000927
Daniel Dunbar4975db62009-07-25 04:41:11 +0000928LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000929 Instruction *InsertBef)
Benjamin Kramerfc165f12015-03-05 22:05:26 +0000930 : LoadInst(Ptr, Name, isVolatile, /*Align=*/0, InsertBef) {}
Eli Friedman59b66882011-08-09 23:02:53 +0000931
932LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
933 BasicBlock *InsertAE)
Benjamin Kramerfc165f12015-03-05 22:05:26 +0000934 : LoadInst(Ptr, Name, isVolatile, /*Align=*/0, InsertAE) {}
Christopher Lamb84485702007-04-22 19:24:39 +0000935
Benjamin Kramerfc165f12015-03-05 22:05:26 +0000936LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Christopher Lamb84485702007-04-22 19:24:39 +0000937 unsigned Align, Instruction *InsertBef)
Benjamin Kramerfc165f12015-03-05 22:05:26 +0000938 : LoadInst(Ptr, Name, isVolatile, Align, NotAtomic, CrossThread,
939 InsertBef) {}
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000940
Benjamin Kramerfc165f12015-03-05 22:05:26 +0000941LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Dan Gohman68659282007-07-18 20:51:11 +0000942 unsigned Align, BasicBlock *InsertAE)
Benjamin Kramerfc165f12015-03-05 22:05:26 +0000943 : LoadInst(Ptr, Name, isVolatile, Align, NotAtomic, CrossThread, InsertAE) {
Dan Gohman68659282007-07-18 20:51:11 +0000944}
945
Eli Friedman59b66882011-08-09 23:02:53 +0000946LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
947 unsigned Align, AtomicOrdering Order,
948 SynchronizationScope SynchScope,
949 Instruction *InsertBef)
950 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
951 Load, Ptr, InsertBef) {
952 setVolatile(isVolatile);
953 setAlignment(Align);
954 setAtomic(Order, SynchScope);
955 AssertOK();
956 setName(Name);
957}
958
959LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
960 unsigned Align, AtomicOrdering Order,
961 SynchronizationScope SynchScope,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000962 BasicBlock *InsertAE)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000963 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000964 Load, Ptr, InsertAE) {
Chris Lattner0f048162007-02-13 07:54:42 +0000965 setVolatile(isVolatile);
Eli Friedman59b66882011-08-09 23:02:53 +0000966 setAlignment(Align);
967 setAtomic(Order, SynchScope);
Chris Lattner0f048162007-02-13 07:54:42 +0000968 AssertOK();
969 setName(Name);
970}
971
Daniel Dunbar27096822009-08-11 18:11:15 +0000972LoadInst::LoadInst(Value *Ptr, const char *Name, Instruction *InsertBef)
973 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
974 Load, Ptr, InsertBef) {
975 setVolatile(false);
976 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +0000977 setAtomic(NotAtomic);
Daniel Dunbar27096822009-08-11 18:11:15 +0000978 AssertOK();
979 if (Name && Name[0]) setName(Name);
980}
981
982LoadInst::LoadInst(Value *Ptr, const char *Name, BasicBlock *InsertAE)
983 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
984 Load, Ptr, InsertAE) {
985 setVolatile(false);
986 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +0000987 setAtomic(NotAtomic);
Daniel Dunbar27096822009-08-11 18:11:15 +0000988 AssertOK();
989 if (Name && Name[0]) setName(Name);
990}
991
992LoadInst::LoadInst(Value *Ptr, const char *Name, bool isVolatile,
993 Instruction *InsertBef)
994: UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
995 Load, Ptr, InsertBef) {
996 setVolatile(isVolatile);
997 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +0000998 setAtomic(NotAtomic);
Daniel Dunbar27096822009-08-11 18:11:15 +0000999 AssertOK();
1000 if (Name && Name[0]) setName(Name);
1001}
1002
1003LoadInst::LoadInst(Value *Ptr, const char *Name, bool isVolatile,
1004 BasicBlock *InsertAE)
1005 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
1006 Load, Ptr, InsertAE) {
1007 setVolatile(isVolatile);
1008 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +00001009 setAtomic(NotAtomic);
Daniel Dunbar27096822009-08-11 18:11:15 +00001010 AssertOK();
1011 if (Name && Name[0]) setName(Name);
1012}
1013
Christopher Lamb84485702007-04-22 19:24:39 +00001014void LoadInst::setAlignment(unsigned Align) {
1015 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
Dan Gohmana7e5a242010-07-28 20:12:04 +00001016 assert(Align <= MaximumAlignment &&
1017 "Alignment is greater than MaximumAlignment!");
Eli Friedman59b66882011-08-09 23:02:53 +00001018 setInstructionSubclassData((getSubclassDataFromInstruction() & ~(31 << 1)) |
Chris Lattnerd8eb2cf2009-12-29 02:46:09 +00001019 ((Log2_32(Align)+1)<<1));
Dan Gohmana7e5a242010-07-28 20:12:04 +00001020 assert(getAlignment() == Align && "Alignment representation error!");
Christopher Lamb84485702007-04-22 19:24:39 +00001021}
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001022
1023//===----------------------------------------------------------------------===//
1024// StoreInst Implementation
1025//===----------------------------------------------------------------------===//
1026
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001027void StoreInst::AssertOK() {
Nate Begemanfecbc8c2008-07-29 15:49:41 +00001028 assert(getOperand(0) && getOperand(1) && "Both operands must be non-null!");
Duncan Sands19d0b472010-02-16 11:11:14 +00001029 assert(getOperand(1)->getType()->isPointerTy() &&
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001030 "Ptr must have pointer type!");
1031 assert(getOperand(0)->getType() ==
1032 cast<PointerType>(getOperand(1)->getType())->getElementType()
Alkis Evlogimenos079fbde2004-08-06 14:33:37 +00001033 && "Ptr must be a pointer to Val type!");
Eli Friedman59b66882011-08-09 23:02:53 +00001034 assert(!(isAtomic() && getAlignment() == 0) &&
Mark Lacey1d7c97e2013-12-21 00:00:49 +00001035 "Alignment required for atomic store");
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001036}
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001037
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001038StoreInst::StoreInst(Value *val, Value *addr, Instruction *InsertBefore)
Benjamin Kramerfc165f12015-03-05 22:05:26 +00001039 : StoreInst(val, addr, /*isVolatile=*/false, InsertBefore) {}
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001040
1041StoreInst::StoreInst(Value *val, Value *addr, BasicBlock *InsertAtEnd)
Benjamin Kramerfc165f12015-03-05 22:05:26 +00001042 : StoreInst(val, addr, /*isVolatile=*/false, InsertAtEnd) {}
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001043
Misha Brukmanb1c93172005-04-21 23:48:37 +00001044StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001045 Instruction *InsertBefore)
Benjamin Kramerfc165f12015-03-05 22:05:26 +00001046 : StoreInst(val, addr, isVolatile, /*Align=*/0, InsertBefore) {}
Christopher Lamb84485702007-04-22 19:24:39 +00001047
1048StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Benjamin Kramerfc165f12015-03-05 22:05:26 +00001049 BasicBlock *InsertAtEnd)
1050 : StoreInst(val, addr, isVolatile, /*Align=*/0, InsertAtEnd) {}
1051
1052StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile, unsigned Align,
1053 Instruction *InsertBefore)
1054 : StoreInst(val, addr, isVolatile, Align, NotAtomic, CrossThread,
1055 InsertBefore) {}
1056
1057StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile, unsigned Align,
1058 BasicBlock *InsertAtEnd)
1059 : StoreInst(val, addr, isVolatile, Align, NotAtomic, CrossThread,
1060 InsertAtEnd) {}
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001061
Misha Brukmanb1c93172005-04-21 23:48:37 +00001062StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Eli Friedman59b66882011-08-09 23:02:53 +00001063 unsigned Align, AtomicOrdering Order,
1064 SynchronizationScope SynchScope,
1065 Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +00001066 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001067 OperandTraits<StoreInst>::op_begin(this),
1068 OperandTraits<StoreInst>::operands(this),
Eli Friedman59b66882011-08-09 23:02:53 +00001069 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001070 Op<0>() = val;
1071 Op<1>() = addr;
Dan Gohman68659282007-07-18 20:51:11 +00001072 setVolatile(isVolatile);
1073 setAlignment(Align);
Eli Friedman59b66882011-08-09 23:02:53 +00001074 setAtomic(Order, SynchScope);
Dan Gohman68659282007-07-18 20:51:11 +00001075 AssertOK();
1076}
1077
1078StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Eli Friedman59b66882011-08-09 23:02:53 +00001079 unsigned Align, AtomicOrdering Order,
1080 SynchronizationScope SynchScope,
1081 BasicBlock *InsertAtEnd)
1082 : Instruction(Type::getVoidTy(val->getContext()), Store,
1083 OperandTraits<StoreInst>::op_begin(this),
1084 OperandTraits<StoreInst>::operands(this),
1085 InsertAtEnd) {
1086 Op<0>() = val;
1087 Op<1>() = addr;
1088 setVolatile(isVolatile);
1089 setAlignment(Align);
1090 setAtomic(Order, SynchScope);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001091 AssertOK();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001092}
1093
Christopher Lamb84485702007-04-22 19:24:39 +00001094void StoreInst::setAlignment(unsigned Align) {
1095 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
Dan Gohmana7e5a242010-07-28 20:12:04 +00001096 assert(Align <= MaximumAlignment &&
1097 "Alignment is greater than MaximumAlignment!");
Eli Friedman59b66882011-08-09 23:02:53 +00001098 setInstructionSubclassData((getSubclassDataFromInstruction() & ~(31 << 1)) |
Chris Lattnerd8eb2cf2009-12-29 02:46:09 +00001099 ((Log2_32(Align)+1) << 1));
Dan Gohmana7e5a242010-07-28 20:12:04 +00001100 assert(getAlignment() == Align && "Alignment representation error!");
Christopher Lamb84485702007-04-22 19:24:39 +00001101}
1102
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001103//===----------------------------------------------------------------------===//
Eli Friedmanc9a551e2011-07-28 21:48:00 +00001104// AtomicCmpXchgInst Implementation
1105//===----------------------------------------------------------------------===//
1106
1107void AtomicCmpXchgInst::Init(Value *Ptr, Value *Cmp, Value *NewVal,
Tim Northovere94a5182014-03-11 10:48:52 +00001108 AtomicOrdering SuccessOrdering,
1109 AtomicOrdering FailureOrdering,
Eli Friedmanc9a551e2011-07-28 21:48:00 +00001110 SynchronizationScope SynchScope) {
1111 Op<0>() = Ptr;
1112 Op<1>() = Cmp;
1113 Op<2>() = NewVal;
Tim Northovere94a5182014-03-11 10:48:52 +00001114 setSuccessOrdering(SuccessOrdering);
1115 setFailureOrdering(FailureOrdering);
Eli Friedmanc9a551e2011-07-28 21:48:00 +00001116 setSynchScope(SynchScope);
1117
1118 assert(getOperand(0) && getOperand(1) && getOperand(2) &&
1119 "All operands must be non-null!");
1120 assert(getOperand(0)->getType()->isPointerTy() &&
1121 "Ptr must have pointer type!");
1122 assert(getOperand(1)->getType() ==
1123 cast<PointerType>(getOperand(0)->getType())->getElementType()
1124 && "Ptr must be a pointer to Cmp type!");
1125 assert(getOperand(2)->getType() ==
1126 cast<PointerType>(getOperand(0)->getType())->getElementType()
1127 && "Ptr must be a pointer to NewVal type!");
Tim Northovere94a5182014-03-11 10:48:52 +00001128 assert(SuccessOrdering != NotAtomic &&
Eli Friedmanc9a551e2011-07-28 21:48:00 +00001129 "AtomicCmpXchg instructions must be atomic!");
Tim Northovere94a5182014-03-11 10:48:52 +00001130 assert(FailureOrdering != NotAtomic &&
1131 "AtomicCmpXchg instructions must be atomic!");
1132 assert(SuccessOrdering >= FailureOrdering &&
1133 "AtomicCmpXchg success ordering must be at least as strong as fail");
1134 assert(FailureOrdering != Release && FailureOrdering != AcquireRelease &&
1135 "AtomicCmpXchg failure ordering cannot include release semantics");
Eli Friedmanc9a551e2011-07-28 21:48:00 +00001136}
1137
1138AtomicCmpXchgInst::AtomicCmpXchgInst(Value *Ptr, Value *Cmp, Value *NewVal,
Tim Northovere94a5182014-03-11 10:48:52 +00001139 AtomicOrdering SuccessOrdering,
1140 AtomicOrdering FailureOrdering,
Eli Friedmanc9a551e2011-07-28 21:48:00 +00001141 SynchronizationScope SynchScope,
1142 Instruction *InsertBefore)
Tim Northover420a2162014-06-13 14:24:07 +00001143 : Instruction(
1144 StructType::get(Cmp->getType(), Type::getInt1Ty(Cmp->getContext()),
1145 nullptr),
1146 AtomicCmpXchg, OperandTraits<AtomicCmpXchgInst>::op_begin(this),
1147 OperandTraits<AtomicCmpXchgInst>::operands(this), InsertBefore) {
Tim Northovere94a5182014-03-11 10:48:52 +00001148 Init(Ptr, Cmp, NewVal, SuccessOrdering, FailureOrdering, SynchScope);
Eli Friedmanc9a551e2011-07-28 21:48:00 +00001149}
1150
1151AtomicCmpXchgInst::AtomicCmpXchgInst(Value *Ptr, Value *Cmp, Value *NewVal,
Tim Northovere94a5182014-03-11 10:48:52 +00001152 AtomicOrdering SuccessOrdering,
1153 AtomicOrdering FailureOrdering,
Eli Friedmanc9a551e2011-07-28 21:48:00 +00001154 SynchronizationScope SynchScope,
1155 BasicBlock *InsertAtEnd)
Tim Northover420a2162014-06-13 14:24:07 +00001156 : Instruction(
1157 StructType::get(Cmp->getType(), Type::getInt1Ty(Cmp->getContext()),
1158 nullptr),
1159 AtomicCmpXchg, OperandTraits<AtomicCmpXchgInst>::op_begin(this),
1160 OperandTraits<AtomicCmpXchgInst>::operands(this), InsertAtEnd) {
Tim Northovere94a5182014-03-11 10:48:52 +00001161 Init(Ptr, Cmp, NewVal, SuccessOrdering, FailureOrdering, SynchScope);
Eli Friedmanc9a551e2011-07-28 21:48:00 +00001162}
Tim Northover420a2162014-06-13 14:24:07 +00001163
Eli Friedmanc9a551e2011-07-28 21:48:00 +00001164//===----------------------------------------------------------------------===//
1165// AtomicRMWInst Implementation
1166//===----------------------------------------------------------------------===//
1167
1168void AtomicRMWInst::Init(BinOp Operation, Value *Ptr, Value *Val,
1169 AtomicOrdering Ordering,
1170 SynchronizationScope SynchScope) {
1171 Op<0>() = Ptr;
1172 Op<1>() = Val;
1173 setOperation(Operation);
1174 setOrdering(Ordering);
1175 setSynchScope(SynchScope);
1176
1177 assert(getOperand(0) && getOperand(1) &&
1178 "All operands must be non-null!");
1179 assert(getOperand(0)->getType()->isPointerTy() &&
1180 "Ptr must have pointer type!");
1181 assert(getOperand(1)->getType() ==
1182 cast<PointerType>(getOperand(0)->getType())->getElementType()
1183 && "Ptr must be a pointer to Val type!");
1184 assert(Ordering != NotAtomic &&
1185 "AtomicRMW instructions must be atomic!");
1186}
1187
1188AtomicRMWInst::AtomicRMWInst(BinOp Operation, Value *Ptr, Value *Val,
1189 AtomicOrdering Ordering,
1190 SynchronizationScope SynchScope,
1191 Instruction *InsertBefore)
1192 : Instruction(Val->getType(), AtomicRMW,
1193 OperandTraits<AtomicRMWInst>::op_begin(this),
1194 OperandTraits<AtomicRMWInst>::operands(this),
1195 InsertBefore) {
1196 Init(Operation, Ptr, Val, Ordering, SynchScope);
1197}
1198
1199AtomicRMWInst::AtomicRMWInst(BinOp Operation, Value *Ptr, Value *Val,
1200 AtomicOrdering Ordering,
1201 SynchronizationScope SynchScope,
1202 BasicBlock *InsertAtEnd)
1203 : Instruction(Val->getType(), AtomicRMW,
1204 OperandTraits<AtomicRMWInst>::op_begin(this),
1205 OperandTraits<AtomicRMWInst>::operands(this),
1206 InsertAtEnd) {
1207 Init(Operation, Ptr, Val, Ordering, SynchScope);
1208}
1209
1210//===----------------------------------------------------------------------===//
Eli Friedmanfee02c62011-07-25 23:16:38 +00001211// FenceInst Implementation
1212//===----------------------------------------------------------------------===//
1213
1214FenceInst::FenceInst(LLVMContext &C, AtomicOrdering Ordering,
1215 SynchronizationScope SynchScope,
1216 Instruction *InsertBefore)
Craig Topperc6207612014-04-09 06:08:46 +00001217 : Instruction(Type::getVoidTy(C), Fence, nullptr, 0, InsertBefore) {
Eli Friedmanfee02c62011-07-25 23:16:38 +00001218 setOrdering(Ordering);
1219 setSynchScope(SynchScope);
1220}
1221
1222FenceInst::FenceInst(LLVMContext &C, AtomicOrdering Ordering,
1223 SynchronizationScope SynchScope,
1224 BasicBlock *InsertAtEnd)
Craig Topperc6207612014-04-09 06:08:46 +00001225 : Instruction(Type::getVoidTy(C), Fence, nullptr, 0, InsertAtEnd) {
Eli Friedmanfee02c62011-07-25 23:16:38 +00001226 setOrdering(Ordering);
1227 setSynchScope(SynchScope);
1228}
1229
1230//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001231// GetElementPtrInst Implementation
1232//===----------------------------------------------------------------------===//
1233
Jay Foadd1b78492011-07-25 09:48:08 +00001234void GetElementPtrInst::init(Value *Ptr, ArrayRef<Value *> IdxList,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001235 const Twine &Name) {
Jay Foadd1b78492011-07-25 09:48:08 +00001236 assert(NumOperands == 1 + IdxList.size() && "NumOperands not initialized?");
1237 OperandList[0] = Ptr;
1238 std::copy(IdxList.begin(), IdxList.end(), op_begin() + 1);
Matthijs Kooijman76d8dec2008-06-04 16:14:12 +00001239 setName(Name);
Chris Lattner82981202005-05-03 05:43:30 +00001240}
1241
Gabor Greiff6caff662008-05-10 08:32:32 +00001242GetElementPtrInst::GetElementPtrInst(const GetElementPtrInst &GEPI)
Gabor Greife9408e62008-05-27 11:03:29 +00001243 : Instruction(GEPI.getType(), GetElementPtr,
Gabor Greif697e94c2008-05-15 10:04:30 +00001244 OperandTraits<GetElementPtrInst>::op_end(this)
1245 - GEPI.getNumOperands(),
Gabor Greiff6caff662008-05-10 08:32:32 +00001246 GEPI.getNumOperands()) {
Jay Foadd1b78492011-07-25 09:48:08 +00001247 std::copy(GEPI.op_begin(), GEPI.op_end(), op_begin());
Dan Gohmanc8a27f22009-08-25 22:11:20 +00001248 SubclassOptionalData = GEPI.SubclassOptionalData;
Gabor Greiff6caff662008-05-10 08:32:32 +00001249}
1250
Chris Lattner6090a422009-03-09 04:46:40 +00001251/// getIndexedType - Returns the type of the element that would be accessed with
1252/// a gep instruction with the specified parameters.
1253///
1254/// The Idxs pointer should point to a continuous piece of memory containing the
1255/// indices, either as Value* or uint64_t.
1256///
1257/// A null type is returned if the indices are invalid for the specified
1258/// pointer type.
1259///
Matthijs Kooijman04468622008-07-29 08:46:11 +00001260template <typename IndexTy>
David Blaikied288fb82015-03-30 21:41:43 +00001261static Type *getIndexedTypeInternal(Type *Agg, ArrayRef<IndexTy> IdxList) {
Chris Lattner6090a422009-03-09 04:46:40 +00001262 // Handle the special case of the empty set index set, which is always valid.
Jay Foadd1b78492011-07-25 09:48:08 +00001263 if (IdxList.empty())
Dan Gohman12fce772008-05-15 19:50:34 +00001264 return Agg;
Nadav Rotem3924cb02011-12-05 06:29:09 +00001265
Chris Lattner6090a422009-03-09 04:46:40 +00001266 // If there is at least one index, the top level type must be sized, otherwise
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001267 // it cannot be 'stepped over'.
1268 if (!Agg->isSized())
Craig Topperc6207612014-04-09 06:08:46 +00001269 return nullptr;
Misha Brukmanb1c93172005-04-21 23:48:37 +00001270
Dan Gohman1ecaf452008-05-31 00:58:22 +00001271 unsigned CurIdx = 1;
Jay Foadd1b78492011-07-25 09:48:08 +00001272 for (; CurIdx != IdxList.size(); ++CurIdx) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001273 CompositeType *CT = dyn_cast<CompositeType>(Agg);
Craig Topperc6207612014-04-09 06:08:46 +00001274 if (!CT || CT->isPointerTy()) return nullptr;
Jay Foadd1b78492011-07-25 09:48:08 +00001275 IndexTy Index = IdxList[CurIdx];
Craig Topperc6207612014-04-09 06:08:46 +00001276 if (!CT->indexValid(Index)) return nullptr;
Dan Gohman1ecaf452008-05-31 00:58:22 +00001277 Agg = CT->getTypeAtIndex(Index);
Dan Gohman1ecaf452008-05-31 00:58:22 +00001278 }
Craig Topperc6207612014-04-09 06:08:46 +00001279 return CurIdx == IdxList.size() ? Agg : nullptr;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001280}
1281
David Blaikied288fb82015-03-30 21:41:43 +00001282Type *GetElementPtrInst::getIndexedType(Type *Ty, ArrayRef<Value *> IdxList) {
1283 return getIndexedTypeInternal(Ty, IdxList);
Matthijs Kooijman04468622008-07-29 08:46:11 +00001284}
1285
David Blaikied288fb82015-03-30 21:41:43 +00001286Type *GetElementPtrInst::getIndexedType(Type *Ty,
Jay Foadd1b78492011-07-25 09:48:08 +00001287 ArrayRef<Constant *> IdxList) {
David Blaikied288fb82015-03-30 21:41:43 +00001288 return getIndexedTypeInternal(Ty, IdxList);
Jay Foad1d4a8fe2011-01-14 08:07:43 +00001289}
1290
David Blaikied288fb82015-03-30 21:41:43 +00001291Type *GetElementPtrInst::getIndexedType(Type *Ty, ArrayRef<uint64_t> IdxList) {
1292 return getIndexedTypeInternal(Ty, IdxList);
Matthijs Kooijman04468622008-07-29 08:46:11 +00001293}
1294
Chris Lattner45f15572007-04-14 00:12:57 +00001295/// hasAllZeroIndices - Return true if all of the indices of this GEP are
1296/// zeros. If so, the result pointer and the first operand have the same
1297/// value, just potentially different types.
1298bool GetElementPtrInst::hasAllZeroIndices() const {
1299 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
1300 if (ConstantInt *CI = dyn_cast<ConstantInt>(getOperand(i))) {
1301 if (!CI->isZero()) return false;
1302 } else {
1303 return false;
1304 }
1305 }
1306 return true;
1307}
1308
Chris Lattner27058292007-04-27 20:35:56 +00001309/// hasAllConstantIndices - Return true if all of the indices of this GEP are
1310/// constant integers. If so, the result pointer and the first operand have
1311/// a constant offset between them.
1312bool GetElementPtrInst::hasAllConstantIndices() const {
1313 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
1314 if (!isa<ConstantInt>(getOperand(i)))
1315 return false;
1316 }
1317 return true;
1318}
1319
Dan Gohman1b849082009-09-07 23:54:19 +00001320void GetElementPtrInst::setIsInBounds(bool B) {
1321 cast<GEPOperator>(this)->setIsInBounds(B);
1322}
Chris Lattner45f15572007-04-14 00:12:57 +00001323
Nick Lewycky28a5f252009-09-27 21:33:04 +00001324bool GetElementPtrInst::isInBounds() const {
1325 return cast<GEPOperator>(this)->isInBounds();
1326}
1327
Chandler Carruth1e140532012-12-11 10:29:10 +00001328bool GetElementPtrInst::accumulateConstantOffset(const DataLayout &DL,
1329 APInt &Offset) const {
Chandler Carruth7ec41c72012-12-11 11:05:15 +00001330 // Delegate to the generic GEPOperator implementation.
1331 return cast<GEPOperator>(this)->accumulateConstantOffset(DL, Offset);
Chandler Carruth1e140532012-12-11 10:29:10 +00001332}
1333
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001334//===----------------------------------------------------------------------===//
Robert Bocchino23004482006-01-10 19:05:34 +00001335// ExtractElementInst Implementation
1336//===----------------------------------------------------------------------===//
1337
1338ExtractElementInst::ExtractElementInst(Value *Val, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001339 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001340 Instruction *InsertBef)
Reid Spencerd84d35b2007-02-15 02:26:10 +00001341 : Instruction(cast<VectorType>(Val->getType())->getElementType(),
Gabor Greiff6caff662008-05-10 08:32:32 +00001342 ExtractElement,
1343 OperandTraits<ExtractElementInst>::op_begin(this),
1344 2, InsertBef) {
Chris Lattner54865b32006-04-08 04:05:48 +00001345 assert(isValidOperands(Val, Index) &&
1346 "Invalid extractelement instruction operands!");
Gabor Greif2d3024d2008-05-26 21:33:52 +00001347 Op<0>() = Val;
1348 Op<1>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001349 setName(Name);
Robert Bocchino23004482006-01-10 19:05:34 +00001350}
1351
1352ExtractElementInst::ExtractElementInst(Value *Val, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001353 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001354 BasicBlock *InsertAE)
Reid Spencerd84d35b2007-02-15 02:26:10 +00001355 : Instruction(cast<VectorType>(Val->getType())->getElementType(),
Gabor Greiff6caff662008-05-10 08:32:32 +00001356 ExtractElement,
1357 OperandTraits<ExtractElementInst>::op_begin(this),
1358 2, InsertAE) {
Chris Lattner54865b32006-04-08 04:05:48 +00001359 assert(isValidOperands(Val, Index) &&
1360 "Invalid extractelement instruction operands!");
1361
Gabor Greif2d3024d2008-05-26 21:33:52 +00001362 Op<0>() = Val;
1363 Op<1>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001364 setName(Name);
Robert Bocchino23004482006-01-10 19:05:34 +00001365}
1366
Chris Lattner65511ff2006-10-05 06:24:58 +00001367
Chris Lattner54865b32006-04-08 04:05:48 +00001368bool ExtractElementInst::isValidOperands(const Value *Val, const Value *Index) {
Michael J. Spencer1f10c5ea2014-05-01 22:12:39 +00001369 if (!Val->getType()->isVectorTy() || !Index->getType()->isIntegerTy())
Chris Lattner54865b32006-04-08 04:05:48 +00001370 return false;
1371 return true;
1372}
1373
1374
Robert Bocchino23004482006-01-10 19:05:34 +00001375//===----------------------------------------------------------------------===//
Robert Bocchinoca27f032006-01-17 20:07:22 +00001376// InsertElementInst Implementation
1377//===----------------------------------------------------------------------===//
1378
Chris Lattner54865b32006-04-08 04:05:48 +00001379InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001380 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001381 Instruction *InsertBef)
Gabor Greiff6caff662008-05-10 08:32:32 +00001382 : Instruction(Vec->getType(), InsertElement,
1383 OperandTraits<InsertElementInst>::op_begin(this),
1384 3, InsertBef) {
Chris Lattner54865b32006-04-08 04:05:48 +00001385 assert(isValidOperands(Vec, Elt, Index) &&
1386 "Invalid insertelement instruction operands!");
Gabor Greif2d3024d2008-05-26 21:33:52 +00001387 Op<0>() = Vec;
1388 Op<1>() = Elt;
1389 Op<2>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001390 setName(Name);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001391}
1392
Chris Lattner54865b32006-04-08 04:05:48 +00001393InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001394 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001395 BasicBlock *InsertAE)
Gabor Greiff6caff662008-05-10 08:32:32 +00001396 : Instruction(Vec->getType(), InsertElement,
1397 OperandTraits<InsertElementInst>::op_begin(this),
1398 3, InsertAE) {
Chris Lattner54865b32006-04-08 04:05:48 +00001399 assert(isValidOperands(Vec, Elt, Index) &&
1400 "Invalid insertelement instruction operands!");
1401
Gabor Greif2d3024d2008-05-26 21:33:52 +00001402 Op<0>() = Vec;
1403 Op<1>() = Elt;
1404 Op<2>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001405 setName(Name);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001406}
1407
Chris Lattner54865b32006-04-08 04:05:48 +00001408bool InsertElementInst::isValidOperands(const Value *Vec, const Value *Elt,
1409 const Value *Index) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001410 if (!Vec->getType()->isVectorTy())
Reid Spencer09575ba2007-02-15 03:39:18 +00001411 return false; // First operand of insertelement must be vector type.
Chris Lattner54865b32006-04-08 04:05:48 +00001412
Reid Spencerd84d35b2007-02-15 02:26:10 +00001413 if (Elt->getType() != cast<VectorType>(Vec->getType())->getElementType())
Dan Gohmanfead7972007-05-11 21:43:24 +00001414 return false;// Second operand of insertelement must be vector element type.
Chris Lattner54865b32006-04-08 04:05:48 +00001415
Michael J. Spencer1f10c5ea2014-05-01 22:12:39 +00001416 if (!Index->getType()->isIntegerTy())
Dan Gohman4fe64de2009-06-14 23:30:43 +00001417 return false; // Third operand of insertelement must be i32.
Chris Lattner54865b32006-04-08 04:05:48 +00001418 return true;
1419}
1420
1421
Robert Bocchinoca27f032006-01-17 20:07:22 +00001422//===----------------------------------------------------------------------===//
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001423// ShuffleVectorInst Implementation
1424//===----------------------------------------------------------------------===//
1425
1426ShuffleVectorInst::ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001427 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001428 Instruction *InsertBefore)
Owen Anderson4056ca92009-07-29 22:17:13 +00001429: Instruction(VectorType::get(cast<VectorType>(V1->getType())->getElementType(),
Mon P Wang25f01062008-11-10 04:46:22 +00001430 cast<VectorType>(Mask->getType())->getNumElements()),
1431 ShuffleVector,
1432 OperandTraits<ShuffleVectorInst>::op_begin(this),
1433 OperandTraits<ShuffleVectorInst>::operands(this),
1434 InsertBefore) {
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001435 assert(isValidOperands(V1, V2, Mask) &&
1436 "Invalid shuffle vector instruction operands!");
Gabor Greif2d3024d2008-05-26 21:33:52 +00001437 Op<0>() = V1;
1438 Op<1>() = V2;
1439 Op<2>() = Mask;
Chris Lattner2195fc42007-02-24 00:55:48 +00001440 setName(Name);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001441}
1442
1443ShuffleVectorInst::ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001444 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001445 BasicBlock *InsertAtEnd)
Dan Gohmane5af8cd2009-08-25 23:27:45 +00001446: Instruction(VectorType::get(cast<VectorType>(V1->getType())->getElementType(),
1447 cast<VectorType>(Mask->getType())->getNumElements()),
1448 ShuffleVector,
1449 OperandTraits<ShuffleVectorInst>::op_begin(this),
1450 OperandTraits<ShuffleVectorInst>::operands(this),
1451 InsertAtEnd) {
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001452 assert(isValidOperands(V1, V2, Mask) &&
1453 "Invalid shuffle vector instruction operands!");
1454
Gabor Greif2d3024d2008-05-26 21:33:52 +00001455 Op<0>() = V1;
1456 Op<1>() = V2;
1457 Op<2>() = Mask;
Chris Lattner2195fc42007-02-24 00:55:48 +00001458 setName(Name);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001459}
1460
Mon P Wang25f01062008-11-10 04:46:22 +00001461bool ShuffleVectorInst::isValidOperands(const Value *V1, const Value *V2,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001462 const Value *Mask) {
Chris Lattner1dcb6542012-01-25 23:49:49 +00001463 // V1 and V2 must be vectors of the same type.
Duncan Sands19d0b472010-02-16 11:11:14 +00001464 if (!V1->getType()->isVectorTy() || V1->getType() != V2->getType())
Chris Lattnerf724e342008-03-02 05:28:33 +00001465 return false;
1466
Chris Lattner1dcb6542012-01-25 23:49:49 +00001467 // Mask must be vector of i32.
Chris Lattner229907c2011-07-18 04:54:35 +00001468 VectorType *MaskTy = dyn_cast<VectorType>(Mask->getType());
Craig Topperc6207612014-04-09 06:08:46 +00001469 if (!MaskTy || !MaskTy->getElementType()->isIntegerTy(32))
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001470 return false;
Nate Begeman60a31c32010-08-13 00:16:46 +00001471
1472 // Check to see if Mask is valid.
Chris Lattner1dcb6542012-01-25 23:49:49 +00001473 if (isa<UndefValue>(Mask) || isa<ConstantAggregateZero>(Mask))
1474 return true;
1475
Nate Begeman60a31c32010-08-13 00:16:46 +00001476 if (const ConstantVector *MV = dyn_cast<ConstantVector>(Mask)) {
Chris Lattner1dcb6542012-01-25 23:49:49 +00001477 unsigned V1Size = cast<VectorType>(V1->getType())->getNumElements();
Benjamin Kramer3ad5c962014-03-10 15:03:06 +00001478 for (Value *Op : MV->operands()) {
1479 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op)) {
Chris Lattner1dcb6542012-01-25 23:49:49 +00001480 if (CI->uge(V1Size*2))
Nate Begeman60a31c32010-08-13 00:16:46 +00001481 return false;
Benjamin Kramer3ad5c962014-03-10 15:03:06 +00001482 } else if (!isa<UndefValue>(Op)) {
Nate Begeman60a31c32010-08-13 00:16:46 +00001483 return false;
1484 }
1485 }
Chris Lattner1dcb6542012-01-25 23:49:49 +00001486 return true;
Mon P Wang6ebf4012011-10-26 00:34:48 +00001487 }
Chris Lattner1dcb6542012-01-25 23:49:49 +00001488
1489 if (const ConstantDataSequential *CDS =
1490 dyn_cast<ConstantDataSequential>(Mask)) {
1491 unsigned V1Size = cast<VectorType>(V1->getType())->getNumElements();
1492 for (unsigned i = 0, e = MaskTy->getNumElements(); i != e; ++i)
1493 if (CDS->getElementAsInteger(i) >= V1Size*2)
1494 return false;
1495 return true;
1496 }
1497
1498 // The bitcode reader can create a place holder for a forward reference
1499 // used as the shuffle mask. When this occurs, the shuffle mask will
1500 // fall into this case and fail. To avoid this error, do this bit of
1501 // ugliness to allow such a mask pass.
1502 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(Mask))
1503 if (CE->getOpcode() == Instruction::UserOp1)
1504 return true;
1505
1506 return false;
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001507}
1508
Chris Lattnerf724e342008-03-02 05:28:33 +00001509/// getMaskValue - Return the index from the shuffle mask for the specified
1510/// output result. This is either -1 if the element is undef or a number less
1511/// than 2*numelements.
Chris Lattnercf129702012-01-26 02:51:13 +00001512int ShuffleVectorInst::getMaskValue(Constant *Mask, unsigned i) {
1513 assert(i < Mask->getType()->getVectorNumElements() && "Index out of range");
1514 if (ConstantDataSequential *CDS =dyn_cast<ConstantDataSequential>(Mask))
Chris Lattner1dcb6542012-01-25 23:49:49 +00001515 return CDS->getElementAsInteger(i);
Chris Lattnercf129702012-01-26 02:51:13 +00001516 Constant *C = Mask->getAggregateElement(i);
Chris Lattner1dcb6542012-01-25 23:49:49 +00001517 if (isa<UndefValue>(C))
Chris Lattnerf724e342008-03-02 05:28:33 +00001518 return -1;
Chris Lattner1dcb6542012-01-25 23:49:49 +00001519 return cast<ConstantInt>(C)->getZExtValue();
Chris Lattnerf724e342008-03-02 05:28:33 +00001520}
1521
Chris Lattner1dcb6542012-01-25 23:49:49 +00001522/// getShuffleMask - Return the full mask for this instruction, where each
1523/// element is the element number and undef's are returned as -1.
Chris Lattnercf129702012-01-26 02:51:13 +00001524void ShuffleVectorInst::getShuffleMask(Constant *Mask,
1525 SmallVectorImpl<int> &Result) {
1526 unsigned NumElts = Mask->getType()->getVectorNumElements();
Chris Lattner1dcb6542012-01-25 23:49:49 +00001527
Chris Lattnercf129702012-01-26 02:51:13 +00001528 if (ConstantDataSequential *CDS=dyn_cast<ConstantDataSequential>(Mask)) {
Chris Lattner1dcb6542012-01-25 23:49:49 +00001529 for (unsigned i = 0; i != NumElts; ++i)
1530 Result.push_back(CDS->getElementAsInteger(i));
1531 return;
1532 }
Chris Lattner1dcb6542012-01-25 23:49:49 +00001533 for (unsigned i = 0; i != NumElts; ++i) {
1534 Constant *C = Mask->getAggregateElement(i);
1535 Result.push_back(isa<UndefValue>(C) ? -1 :
Chris Lattner3dbad4032012-01-26 00:41:50 +00001536 cast<ConstantInt>(C)->getZExtValue());
Chris Lattner1dcb6542012-01-25 23:49:49 +00001537 }
1538}
1539
1540
Dan Gohman12fce772008-05-15 19:50:34 +00001541//===----------------------------------------------------------------------===//
Dan Gohman0752bff2008-05-23 00:36:11 +00001542// InsertValueInst Class
1543//===----------------------------------------------------------------------===//
1544
Jay Foad57aa6362011-07-13 10:26:04 +00001545void InsertValueInst::init(Value *Agg, Value *Val, ArrayRef<unsigned> Idxs,
1546 const Twine &Name) {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001547 assert(NumOperands == 2 && "NumOperands not initialized?");
Jay Foad57aa6362011-07-13 10:26:04 +00001548
1549 // There's no fundamental reason why we require at least one index
1550 // (other than weirdness with &*IdxBegin being invalid; see
1551 // getelementptr's init routine for example). But there's no
1552 // present need to support it.
1553 assert(Idxs.size() > 0 && "InsertValueInst must have at least one index");
1554
1555 assert(ExtractValueInst::getIndexedType(Agg->getType(), Idxs) ==
Frits van Bommel16ebe772010-12-05 20:50:26 +00001556 Val->getType() && "Inserted value must match indexed type!");
Dan Gohman1ecaf452008-05-31 00:58:22 +00001557 Op<0>() = Agg;
1558 Op<1>() = Val;
Dan Gohman0752bff2008-05-23 00:36:11 +00001559
Jay Foad57aa6362011-07-13 10:26:04 +00001560 Indices.append(Idxs.begin(), Idxs.end());
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001561 setName(Name);
Dan Gohman0752bff2008-05-23 00:36:11 +00001562}
1563
1564InsertValueInst::InsertValueInst(const InsertValueInst &IVI)
Gabor Greife9408e62008-05-27 11:03:29 +00001565 : Instruction(IVI.getType(), InsertValue,
Dan Gohman1ecaf452008-05-31 00:58:22 +00001566 OperandTraits<InsertValueInst>::op_begin(this), 2),
1567 Indices(IVI.Indices) {
Dan Gohmand8ca05f2008-06-17 23:25:49 +00001568 Op<0>() = IVI.getOperand(0);
1569 Op<1>() = IVI.getOperand(1);
Dan Gohmanc8a27f22009-08-25 22:11:20 +00001570 SubclassOptionalData = IVI.SubclassOptionalData;
Dan Gohman0752bff2008-05-23 00:36:11 +00001571}
1572
1573//===----------------------------------------------------------------------===//
Dan Gohman12fce772008-05-15 19:50:34 +00001574// ExtractValueInst Class
1575//===----------------------------------------------------------------------===//
1576
Jay Foad57aa6362011-07-13 10:26:04 +00001577void ExtractValueInst::init(ArrayRef<unsigned> Idxs, const Twine &Name) {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001578 assert(NumOperands == 1 && "NumOperands not initialized?");
Dan Gohman0752bff2008-05-23 00:36:11 +00001579
Jay Foad57aa6362011-07-13 10:26:04 +00001580 // There's no fundamental reason why we require at least one index.
1581 // But there's no present need to support it.
1582 assert(Idxs.size() > 0 && "ExtractValueInst must have at least one index");
Dan Gohman0752bff2008-05-23 00:36:11 +00001583
Jay Foad57aa6362011-07-13 10:26:04 +00001584 Indices.append(Idxs.begin(), Idxs.end());
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001585 setName(Name);
Dan Gohman0752bff2008-05-23 00:36:11 +00001586}
1587
1588ExtractValueInst::ExtractValueInst(const ExtractValueInst &EVI)
Gabor Greif21ba1842008-06-06 20:28:12 +00001589 : UnaryInstruction(EVI.getType(), ExtractValue, EVI.getOperand(0)),
Dan Gohman1ecaf452008-05-31 00:58:22 +00001590 Indices(EVI.Indices) {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00001591 SubclassOptionalData = EVI.SubclassOptionalData;
Dan Gohman0752bff2008-05-23 00:36:11 +00001592}
1593
Dan Gohman12fce772008-05-15 19:50:34 +00001594// getIndexedType - Returns the type of the element that would be extracted
1595// with an extractvalue instruction with the specified parameters.
1596//
1597// A null type is returned if the indices are invalid for the specified
1598// pointer type.
1599//
Chris Lattner229907c2011-07-18 04:54:35 +00001600Type *ExtractValueInst::getIndexedType(Type *Agg,
Jay Foad57aa6362011-07-13 10:26:04 +00001601 ArrayRef<unsigned> Idxs) {
Benjamin Kramer3ad5c962014-03-10 15:03:06 +00001602 for (unsigned Index : Idxs) {
Frits van Bommel16ebe772010-12-05 20:50:26 +00001603 // We can't use CompositeType::indexValid(Index) here.
1604 // indexValid() always returns true for arrays because getelementptr allows
1605 // out-of-bounds indices. Since we don't allow those for extractvalue and
1606 // insertvalue we need to check array indexing manually.
1607 // Since the only other types we can index into are struct types it's just
1608 // as easy to check those manually as well.
Chris Lattner229907c2011-07-18 04:54:35 +00001609 if (ArrayType *AT = dyn_cast<ArrayType>(Agg)) {
Frits van Bommel16ebe772010-12-05 20:50:26 +00001610 if (Index >= AT->getNumElements())
Craig Topperc6207612014-04-09 06:08:46 +00001611 return nullptr;
Chris Lattner229907c2011-07-18 04:54:35 +00001612 } else if (StructType *ST = dyn_cast<StructType>(Agg)) {
Frits van Bommel16ebe772010-12-05 20:50:26 +00001613 if (Index >= ST->getNumElements())
Craig Topperc6207612014-04-09 06:08:46 +00001614 return nullptr;
Frits van Bommel16ebe772010-12-05 20:50:26 +00001615 } else {
1616 // Not a valid type to index into.
Craig Topperc6207612014-04-09 06:08:46 +00001617 return nullptr;
Frits van Bommel16ebe772010-12-05 20:50:26 +00001618 }
1619
1620 Agg = cast<CompositeType>(Agg)->getTypeAtIndex(Index);
Dan Gohman12fce772008-05-15 19:50:34 +00001621 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001622 return const_cast<Type*>(Agg);
Dan Gohman12fce772008-05-15 19:50:34 +00001623}
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001624
1625//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001626// BinaryOperator Class
1627//===----------------------------------------------------------------------===//
1628
Chris Lattner2195fc42007-02-24 00:55:48 +00001629BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2,
Chris Lattner229907c2011-07-18 04:54:35 +00001630 Type *Ty, const Twine &Name,
Chris Lattner2195fc42007-02-24 00:55:48 +00001631 Instruction *InsertBefore)
Dan Gohmana2414ea2010-05-03 22:44:19 +00001632 : Instruction(Ty, iType,
Gabor Greiff6caff662008-05-10 08:32:32 +00001633 OperandTraits<BinaryOperator>::op_begin(this),
1634 OperandTraits<BinaryOperator>::operands(this),
1635 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001636 Op<0>() = S1;
1637 Op<1>() = S2;
Dan Gohmana2414ea2010-05-03 22:44:19 +00001638 init(iType);
Chris Lattner2195fc42007-02-24 00:55:48 +00001639 setName(Name);
1640}
1641
1642BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2,
Chris Lattner229907c2011-07-18 04:54:35 +00001643 Type *Ty, const Twine &Name,
Chris Lattner2195fc42007-02-24 00:55:48 +00001644 BasicBlock *InsertAtEnd)
Dan Gohmana2414ea2010-05-03 22:44:19 +00001645 : Instruction(Ty, iType,
Gabor Greiff6caff662008-05-10 08:32:32 +00001646 OperandTraits<BinaryOperator>::op_begin(this),
1647 OperandTraits<BinaryOperator>::operands(this),
1648 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001649 Op<0>() = S1;
1650 Op<1>() = S2;
Dan Gohmana2414ea2010-05-03 22:44:19 +00001651 init(iType);
Chris Lattner2195fc42007-02-24 00:55:48 +00001652 setName(Name);
1653}
1654
1655
1656void BinaryOperator::init(BinaryOps iType) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001657 Value *LHS = getOperand(0), *RHS = getOperand(1);
Jeffrey Yasskin9b43f332010-12-23 00:58:24 +00001658 (void)LHS; (void)RHS; // Silence warnings.
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001659 assert(LHS->getType() == RHS->getType() &&
1660 "Binary operator operand types must match!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001661#ifndef NDEBUG
1662 switch (iType) {
1663 case Add: case Sub:
Dan Gohmana5b96452009-06-04 22:49:04 +00001664 case Mul:
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001665 assert(getType() == LHS->getType() &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001666 "Arithmetic operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001667 assert(getType()->isIntOrIntVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001668 "Tried to create an integer operation on a non-integer type!");
1669 break;
1670 case FAdd: case FSub:
1671 case FMul:
1672 assert(getType() == LHS->getType() &&
1673 "Arithmetic operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001674 assert(getType()->isFPOrFPVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001675 "Tried to create a floating-point operation on a "
1676 "non-floating-point type!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001677 break;
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001678 case UDiv:
1679 case SDiv:
1680 assert(getType() == LHS->getType() &&
1681 "Arithmetic operation should return same type as operands!");
Duncan Sands19d0b472010-02-16 11:11:14 +00001682 assert((getType()->isIntegerTy() || (getType()->isVectorTy() &&
Duncan Sands9dff9be2010-02-15 16:12:20 +00001683 cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001684 "Incorrect operand type (not integer) for S/UDIV");
1685 break;
1686 case FDiv:
1687 assert(getType() == LHS->getType() &&
1688 "Arithmetic operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001689 assert(getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001690 "Incorrect operand type (not floating point) for FDIV");
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001691 break;
Reid Spencer7eb55b32006-11-02 01:53:59 +00001692 case URem:
1693 case SRem:
1694 assert(getType() == LHS->getType() &&
1695 "Arithmetic operation should return same type as operands!");
Duncan Sands19d0b472010-02-16 11:11:14 +00001696 assert((getType()->isIntegerTy() || (getType()->isVectorTy() &&
Duncan Sands9dff9be2010-02-15 16:12:20 +00001697 cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
Reid Spencer7eb55b32006-11-02 01:53:59 +00001698 "Incorrect operand type (not integer) for S/UREM");
1699 break;
1700 case FRem:
1701 assert(getType() == LHS->getType() &&
1702 "Arithmetic operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001703 assert(getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001704 "Incorrect operand type (not floating point) for FREM");
Reid Spencer7eb55b32006-11-02 01:53:59 +00001705 break;
Reid Spencer2341c222007-02-02 02:16:23 +00001706 case Shl:
1707 case LShr:
1708 case AShr:
1709 assert(getType() == LHS->getType() &&
1710 "Shift operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001711 assert((getType()->isIntegerTy() ||
Duncan Sands19d0b472010-02-16 11:11:14 +00001712 (getType()->isVectorTy() &&
Duncan Sands9dff9be2010-02-15 16:12:20 +00001713 cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
Nate Begemanfecbc8c2008-07-29 15:49:41 +00001714 "Tried to create a shift operation on a non-integral type!");
Reid Spencer2341c222007-02-02 02:16:23 +00001715 break;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001716 case And: case Or:
1717 case Xor:
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001718 assert(getType() == LHS->getType() &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001719 "Logical operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001720 assert((getType()->isIntegerTy() ||
Duncan Sands19d0b472010-02-16 11:11:14 +00001721 (getType()->isVectorTy() &&
Duncan Sands9dff9be2010-02-15 16:12:20 +00001722 cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
Misha Brukman3852f652005-01-27 06:46:38 +00001723 "Tried to create a logical operation on a non-integral type!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001724 break;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001725 default:
1726 break;
1727 }
1728#endif
1729}
1730
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001731BinaryOperator *BinaryOperator::Create(BinaryOps Op, Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001732 const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001733 Instruction *InsertBefore) {
1734 assert(S1->getType() == S2->getType() &&
1735 "Cannot create binary operator with two operands of differing type!");
Reid Spencer266e42b2006-12-23 06:05:41 +00001736 return new BinaryOperator(Op, S1, S2, S1->getType(), Name, InsertBefore);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001737}
1738
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001739BinaryOperator *BinaryOperator::Create(BinaryOps Op, Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001740 const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001741 BasicBlock *InsertAtEnd) {
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001742 BinaryOperator *Res = Create(Op, S1, S2, Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001743 InsertAtEnd->getInstList().push_back(Res);
1744 return Res;
1745}
1746
Dan Gohman5476cfd2009-08-12 16:23:25 +00001747BinaryOperator *BinaryOperator::CreateNeg(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001748 Instruction *InsertBefore) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001749 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Reid Spencer2eadb532007-01-21 00:29:26 +00001750 return new BinaryOperator(Instruction::Sub,
1751 zero, Op,
1752 Op->getType(), Name, InsertBefore);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001753}
1754
Dan Gohman5476cfd2009-08-12 16:23:25 +00001755BinaryOperator *BinaryOperator::CreateNeg(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001756 BasicBlock *InsertAtEnd) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001757 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Reid Spencer2eadb532007-01-21 00:29:26 +00001758 return new BinaryOperator(Instruction::Sub,
1759 zero, Op,
1760 Op->getType(), Name, InsertAtEnd);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001761}
1762
Dan Gohman4ab44202009-12-18 02:58:50 +00001763BinaryOperator *BinaryOperator::CreateNSWNeg(Value *Op, const Twine &Name,
1764 Instruction *InsertBefore) {
1765 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1766 return BinaryOperator::CreateNSWSub(zero, Op, Name, InsertBefore);
1767}
1768
1769BinaryOperator *BinaryOperator::CreateNSWNeg(Value *Op, const Twine &Name,
1770 BasicBlock *InsertAtEnd) {
1771 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1772 return BinaryOperator::CreateNSWSub(zero, Op, Name, InsertAtEnd);
1773}
1774
Duncan Sandsfa5f5962010-02-02 12:53:04 +00001775BinaryOperator *BinaryOperator::CreateNUWNeg(Value *Op, const Twine &Name,
1776 Instruction *InsertBefore) {
1777 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1778 return BinaryOperator::CreateNUWSub(zero, Op, Name, InsertBefore);
1779}
1780
1781BinaryOperator *BinaryOperator::CreateNUWNeg(Value *Op, const Twine &Name,
1782 BasicBlock *InsertAtEnd) {
1783 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1784 return BinaryOperator::CreateNUWSub(zero, Op, Name, InsertAtEnd);
1785}
1786
Dan Gohman5476cfd2009-08-12 16:23:25 +00001787BinaryOperator *BinaryOperator::CreateFNeg(Value *Op, const Twine &Name,
Dan Gohmana5b96452009-06-04 22:49:04 +00001788 Instruction *InsertBefore) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001789 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Chris Lattner47a86bd2012-01-25 06:02:56 +00001790 return new BinaryOperator(Instruction::FSub, zero, Op,
Dan Gohmana5b96452009-06-04 22:49:04 +00001791 Op->getType(), Name, InsertBefore);
1792}
1793
Dan Gohman5476cfd2009-08-12 16:23:25 +00001794BinaryOperator *BinaryOperator::CreateFNeg(Value *Op, const Twine &Name,
Dan Gohmana5b96452009-06-04 22:49:04 +00001795 BasicBlock *InsertAtEnd) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001796 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Chris Lattner47a86bd2012-01-25 06:02:56 +00001797 return new BinaryOperator(Instruction::FSub, zero, Op,
Dan Gohmana5b96452009-06-04 22:49:04 +00001798 Op->getType(), Name, InsertAtEnd);
1799}
1800
Dan Gohman5476cfd2009-08-12 16:23:25 +00001801BinaryOperator *BinaryOperator::CreateNot(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001802 Instruction *InsertBefore) {
Chris Lattner47a86bd2012-01-25 06:02:56 +00001803 Constant *C = Constant::getAllOnesValue(Op->getType());
Chris Lattnere8e7ac42006-03-25 21:54:21 +00001804 return new BinaryOperator(Instruction::Xor, Op, C,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001805 Op->getType(), Name, InsertBefore);
1806}
1807
Dan Gohman5476cfd2009-08-12 16:23:25 +00001808BinaryOperator *BinaryOperator::CreateNot(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001809 BasicBlock *InsertAtEnd) {
Chris Lattner47a86bd2012-01-25 06:02:56 +00001810 Constant *AllOnes = Constant::getAllOnesValue(Op->getType());
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001811 return new BinaryOperator(Instruction::Xor, Op, AllOnes,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001812 Op->getType(), Name, InsertAtEnd);
1813}
1814
1815
1816// isConstantAllOnes - Helper function for several functions below
1817static inline bool isConstantAllOnes(const Value *V) {
Chris Lattner0256be92012-01-27 03:08:05 +00001818 if (const Constant *C = dyn_cast<Constant>(V))
1819 return C->isAllOnesValue();
Chris Lattner1edec382007-06-15 06:04:24 +00001820 return false;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001821}
1822
Owen Andersonbb2501b2009-07-13 22:18:28 +00001823bool BinaryOperator::isNeg(const Value *V) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001824 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1825 if (Bop->getOpcode() == Instruction::Sub)
Owen Andersonbb2501b2009-07-13 22:18:28 +00001826 if (Constant* C = dyn_cast<Constant>(Bop->getOperand(0)))
1827 return C->isNegativeZeroValue();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001828 return false;
1829}
1830
Shuxin Yangf0537ab2013-01-09 00:13:41 +00001831bool BinaryOperator::isFNeg(const Value *V, bool IgnoreZeroSign) {
Dan Gohmana5b96452009-06-04 22:49:04 +00001832 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1833 if (Bop->getOpcode() == Instruction::FSub)
Shuxin Yangf0537ab2013-01-09 00:13:41 +00001834 if (Constant* C = dyn_cast<Constant>(Bop->getOperand(0))) {
1835 if (!IgnoreZeroSign)
1836 IgnoreZeroSign = cast<Instruction>(V)->hasNoSignedZeros();
1837 return !IgnoreZeroSign ? C->isNegativeZeroValue() : C->isZeroValue();
1838 }
Dan Gohmana5b96452009-06-04 22:49:04 +00001839 return false;
1840}
1841
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001842bool BinaryOperator::isNot(const Value *V) {
1843 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1844 return (Bop->getOpcode() == Instruction::Xor &&
1845 (isConstantAllOnes(Bop->getOperand(1)) ||
1846 isConstantAllOnes(Bop->getOperand(0))));
1847 return false;
1848}
1849
Chris Lattner2c7d1772005-04-24 07:28:37 +00001850Value *BinaryOperator::getNegArgument(Value *BinOp) {
Chris Lattner2c7d1772005-04-24 07:28:37 +00001851 return cast<BinaryOperator>(BinOp)->getOperand(1);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001852}
1853
Chris Lattner2c7d1772005-04-24 07:28:37 +00001854const Value *BinaryOperator::getNegArgument(const Value *BinOp) {
1855 return getNegArgument(const_cast<Value*>(BinOp));
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001856}
1857
Dan Gohmana5b96452009-06-04 22:49:04 +00001858Value *BinaryOperator::getFNegArgument(Value *BinOp) {
Dan Gohmana5b96452009-06-04 22:49:04 +00001859 return cast<BinaryOperator>(BinOp)->getOperand(1);
1860}
1861
1862const Value *BinaryOperator::getFNegArgument(const Value *BinOp) {
1863 return getFNegArgument(const_cast<Value*>(BinOp));
1864}
1865
Chris Lattner2c7d1772005-04-24 07:28:37 +00001866Value *BinaryOperator::getNotArgument(Value *BinOp) {
1867 assert(isNot(BinOp) && "getNotArgument on non-'not' instruction!");
1868 BinaryOperator *BO = cast<BinaryOperator>(BinOp);
1869 Value *Op0 = BO->getOperand(0);
1870 Value *Op1 = BO->getOperand(1);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001871 if (isConstantAllOnes(Op0)) return Op1;
1872
1873 assert(isConstantAllOnes(Op1));
1874 return Op0;
1875}
1876
Chris Lattner2c7d1772005-04-24 07:28:37 +00001877const Value *BinaryOperator::getNotArgument(const Value *BinOp) {
1878 return getNotArgument(const_cast<Value*>(BinOp));
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001879}
1880
1881
1882// swapOperands - Exchange the two operands to this instruction. This
1883// instruction is safe to use on any binary instruction and does not
1884// modify the semantics of the instruction. If the instruction is
1885// order dependent (SetLT f.e.) the opcode is changed.
1886//
1887bool BinaryOperator::swapOperands() {
Reid Spencer266e42b2006-12-23 06:05:41 +00001888 if (!isCommutative())
1889 return true; // Can't commute operands
Gabor Greif5ef74042008-05-13 22:51:52 +00001890 Op<0>().swap(Op<1>());
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001891 return false;
1892}
1893
Dan Gohman1b849082009-09-07 23:54:19 +00001894void BinaryOperator::setHasNoUnsignedWrap(bool b) {
1895 cast<OverflowingBinaryOperator>(this)->setHasNoUnsignedWrap(b);
1896}
1897
1898void BinaryOperator::setHasNoSignedWrap(bool b) {
1899 cast<OverflowingBinaryOperator>(this)->setHasNoSignedWrap(b);
1900}
1901
1902void BinaryOperator::setIsExact(bool b) {
Chris Lattner35315d02011-02-06 21:44:57 +00001903 cast<PossiblyExactOperator>(this)->setIsExact(b);
Dan Gohman1b849082009-09-07 23:54:19 +00001904}
1905
Nick Lewycky28a5f252009-09-27 21:33:04 +00001906bool BinaryOperator::hasNoUnsignedWrap() const {
1907 return cast<OverflowingBinaryOperator>(this)->hasNoUnsignedWrap();
1908}
1909
1910bool BinaryOperator::hasNoSignedWrap() const {
1911 return cast<OverflowingBinaryOperator>(this)->hasNoSignedWrap();
1912}
1913
1914bool BinaryOperator::isExact() const {
Chris Lattner35315d02011-02-06 21:44:57 +00001915 return cast<PossiblyExactOperator>(this)->isExact();
Nick Lewycky28a5f252009-09-27 21:33:04 +00001916}
1917
Sanjay Patela982d992014-09-03 01:06:50 +00001918void BinaryOperator::copyIRFlags(const Value *V) {
Sanjay Patel5ad239e2014-09-01 18:44:57 +00001919 // Copy the wrapping flags.
1920 if (auto *OB = dyn_cast<OverflowingBinaryOperator>(V)) {
1921 setHasNoSignedWrap(OB->hasNoSignedWrap());
1922 setHasNoUnsignedWrap(OB->hasNoUnsignedWrap());
1923 }
1924
1925 // Copy the exact flag.
1926 if (auto *PE = dyn_cast<PossiblyExactOperator>(V))
1927 setIsExact(PE->isExact());
1928
1929 // Copy the fast-math flags.
1930 if (auto *FP = dyn_cast<FPMathOperator>(V))
Sanjay Patelb2325b92014-09-02 20:03:00 +00001931 copyFastMathFlags(FP->getFastMathFlags());
Sanjay Patel5ad239e2014-09-01 18:44:57 +00001932}
1933
Sanjay Patela982d992014-09-03 01:06:50 +00001934void BinaryOperator::andIRFlags(const Value *V) {
1935 if (auto *OB = dyn_cast<OverflowingBinaryOperator>(V)) {
1936 setHasNoSignedWrap(hasNoSignedWrap() & OB->hasNoSignedWrap());
1937 setHasNoUnsignedWrap(hasNoUnsignedWrap() & OB->hasNoUnsignedWrap());
1938 }
1939
1940 if (auto *PE = dyn_cast<PossiblyExactOperator>(V))
1941 setIsExact(isExact() & PE->isExact());
1942
1943 if (auto *FP = dyn_cast<FPMathOperator>(V)) {
1944 FastMathFlags FM = getFastMathFlags();
1945 FM &= FP->getFastMathFlags();
1946 copyFastMathFlags(FM);
1947 }
1948}
1949
1950
Chris Lattnerb0b8ddd2006-09-18 04:54:57 +00001951//===----------------------------------------------------------------------===//
Duncan Sands05f4df82012-04-16 16:28:59 +00001952// FPMathOperator Class
1953//===----------------------------------------------------------------------===//
1954
1955/// getFPAccuracy - Get the maximum error permitted by this operation in ULPs.
1956/// An accuracy of 0.0 means that the operation should be performed with the
Duncan Sands9af62982012-04-16 19:39:33 +00001957/// default precision.
Duncan Sands05f4df82012-04-16 16:28:59 +00001958float FPMathOperator::getFPAccuracy() const {
Duncan P. N. Exon Smithde36e802014-11-11 21:30:22 +00001959 const MDNode *MD =
1960 cast<Instruction>(this)->getMetadata(LLVMContext::MD_fpmath);
Duncan Sands05f4df82012-04-16 16:28:59 +00001961 if (!MD)
1962 return 0.0;
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00001963 ConstantFP *Accuracy = mdconst::extract<ConstantFP>(MD->getOperand(0));
Duncan Sands9af62982012-04-16 19:39:33 +00001964 return Accuracy->getValueAPF().convertToFloat();
Duncan Sands05f4df82012-04-16 16:28:59 +00001965}
1966
1967
1968//===----------------------------------------------------------------------===//
Chris Lattnerb0b8ddd2006-09-18 04:54:57 +00001969// CastInst Class
1970//===----------------------------------------------------------------------===//
1971
David Blaikie3a15e142011-12-01 08:00:17 +00001972void CastInst::anchor() {}
1973
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001974// Just determine if this cast only deals with integral->integral conversion.
1975bool CastInst::isIntegerCast() const {
1976 switch (getOpcode()) {
1977 default: return false;
1978 case Instruction::ZExt:
1979 case Instruction::SExt:
1980 case Instruction::Trunc:
1981 return true;
1982 case Instruction::BitCast:
Duncan Sands9dff9be2010-02-15 16:12:20 +00001983 return getOperand(0)->getType()->isIntegerTy() &&
1984 getType()->isIntegerTy();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001985 }
Chris Lattnerb0b8ddd2006-09-18 04:54:57 +00001986}
1987
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001988bool CastInst::isLosslessCast() const {
1989 // Only BitCast can be lossless, exit fast if we're not BitCast
1990 if (getOpcode() != Instruction::BitCast)
1991 return false;
1992
1993 // Identity cast is always lossless
Chris Lattner229907c2011-07-18 04:54:35 +00001994 Type* SrcTy = getOperand(0)->getType();
1995 Type* DstTy = getType();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001996 if (SrcTy == DstTy)
1997 return true;
1998
Reid Spencer8d9336d2006-12-31 05:26:44 +00001999 // Pointer to pointer is always lossless.
Duncan Sands19d0b472010-02-16 11:11:14 +00002000 if (SrcTy->isPointerTy())
2001 return DstTy->isPointerTy();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002002 return false; // Other types have no identity values
2003}
2004
2005/// This function determines if the CastInst does not require any bits to be
2006/// changed in order to effect the cast. Essentially, it identifies cases where
2007/// no code gen is necessary for the cast, hence the name no-op cast. For
2008/// example, the following are all no-op casts:
Dan Gohmane9bc2ba2008-05-12 16:34:30 +00002009/// # bitcast i32* %x to i8*
2010/// # bitcast <2 x i32> %x to <4 x i16>
2011/// # ptrtoint i32* %x to i32 ; on 32-bit plaforms only
Dan Gohman0d7f3b82010-05-28 21:41:37 +00002012/// @brief Determine if the described cast is a no-op.
2013bool CastInst::isNoopCast(Instruction::CastOps Opcode,
Chris Lattner229907c2011-07-18 04:54:35 +00002014 Type *SrcTy,
2015 Type *DestTy,
2016 Type *IntPtrTy) {
Dan Gohman0d7f3b82010-05-28 21:41:37 +00002017 switch (Opcode) {
Craig Topperc514b542012-02-05 22:14:15 +00002018 default: llvm_unreachable("Invalid CastOp");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002019 case Instruction::Trunc:
2020 case Instruction::ZExt:
2021 case Instruction::SExt:
2022 case Instruction::FPTrunc:
2023 case Instruction::FPExt:
2024 case Instruction::UIToFP:
2025 case Instruction::SIToFP:
2026 case Instruction::FPToUI:
2027 case Instruction::FPToSI:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002028 case Instruction::AddrSpaceCast:
2029 // TODO: Target informations may give a more accurate answer here.
2030 return false;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002031 case Instruction::BitCast:
2032 return true; // BitCast never modifies bits.
2033 case Instruction::PtrToInt:
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002034 return IntPtrTy->getScalarSizeInBits() ==
Dan Gohman0d7f3b82010-05-28 21:41:37 +00002035 DestTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002036 case Instruction::IntToPtr:
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002037 return IntPtrTy->getScalarSizeInBits() ==
Dan Gohman0d7f3b82010-05-28 21:41:37 +00002038 SrcTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002039 }
2040}
2041
Dan Gohman0d7f3b82010-05-28 21:41:37 +00002042/// @brief Determine if a cast is a no-op.
Chris Lattner229907c2011-07-18 04:54:35 +00002043bool CastInst::isNoopCast(Type *IntPtrTy) const {
Dan Gohman0d7f3b82010-05-28 21:41:37 +00002044 return isNoopCast(getOpcode(), getOperand(0)->getType(), getType(), IntPtrTy);
2045}
2046
Mehdi Aminia28d91d2015-03-10 02:37:25 +00002047bool CastInst::isNoopCast(const DataLayout &DL) const {
Craig Topperc6207612014-04-09 06:08:46 +00002048 Type *PtrOpTy = nullptr;
Matt Arsenaulta236ea52014-03-06 17:33:55 +00002049 if (getOpcode() == Instruction::PtrToInt)
2050 PtrOpTy = getOperand(0)->getType();
2051 else if (getOpcode() == Instruction::IntToPtr)
2052 PtrOpTy = getType();
2053
Mehdi Aminia28d91d2015-03-10 02:37:25 +00002054 Type *IntPtrTy =
2055 PtrOpTy ? DL.getIntPtrType(PtrOpTy) : DL.getIntPtrType(getContext(), 0);
Matt Arsenaulta236ea52014-03-06 17:33:55 +00002056
2057 return isNoopCast(getOpcode(), getOperand(0)->getType(), getType(), IntPtrTy);
2058}
2059
2060/// This function determines if a pair of casts can be eliminated and what
2061/// opcode should be used in the elimination. This assumes that there are two
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002062/// instructions like this:
2063/// * %F = firstOpcode SrcTy %x to MidTy
2064/// * %S = secondOpcode MidTy %F to DstTy
2065/// The function returns a resultOpcode so these two casts can be replaced with:
2066/// * %Replacement = resultOpcode %SrcTy %x to DstTy
2067/// If no such cast is permited, the function returns 0.
2068unsigned CastInst::isEliminableCastPair(
2069 Instruction::CastOps firstOp, Instruction::CastOps secondOp,
Duncan Sandse2395dc2012-10-30 16:03:32 +00002070 Type *SrcTy, Type *MidTy, Type *DstTy, Type *SrcIntPtrTy, Type *MidIntPtrTy,
2071 Type *DstIntPtrTy) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002072 // Define the 144 possibilities for these two cast instructions. The values
2073 // in this matrix determine what to do in a given situation and select the
2074 // case in the switch below. The rows correspond to firstOp, the columns
2075 // correspond to secondOp. In looking at the table below, keep in mind
2076 // the following cast properties:
2077 //
2078 // Size Compare Source Destination
2079 // Operator Src ? Size Type Sign Type Sign
2080 // -------- ------------ ------------------- ---------------------
2081 // TRUNC > Integer Any Integral Any
2082 // ZEXT < Integral Unsigned Integer Any
2083 // SEXT < Integral Signed Integer Any
2084 // FPTOUI n/a FloatPt n/a Integral Unsigned
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002085 // FPTOSI n/a FloatPt n/a Integral Signed
2086 // UITOFP n/a Integral Unsigned FloatPt n/a
2087 // SITOFP n/a Integral Signed FloatPt n/a
2088 // FPTRUNC > FloatPt n/a FloatPt n/a
2089 // FPEXT < FloatPt n/a FloatPt n/a
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002090 // PTRTOINT n/a Pointer n/a Integral Unsigned
2091 // INTTOPTR n/a Integral Unsigned Pointer n/a
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002092 // BITCAST = FirstClass n/a FirstClass n/a
2093 // ADDRSPCST n/a Pointer n/a Pointer n/a
Chris Lattner6f6b4972006-12-05 23:43:59 +00002094 //
2095 // NOTE: some transforms are safe, but we consider them to be non-profitable.
Dan Gohman4fe64de2009-06-14 23:30:43 +00002096 // For example, we could merge "fptoui double to i32" + "zext i32 to i64",
2097 // into "fptoui double to i64", but this loses information about the range
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002098 // of the produced value (we no longer know the top-part is all zeros).
Chris Lattner6f6b4972006-12-05 23:43:59 +00002099 // Further this conversion is often much more expensive for typical hardware,
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002100 // and causes issues when building libgcc. We disallow fptosi+sext for the
Chris Lattner6f6b4972006-12-05 23:43:59 +00002101 // same reason.
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002102 const unsigned numCastOps =
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002103 Instruction::CastOpsEnd - Instruction::CastOpsBegin;
2104 static const uint8_t CastResults[numCastOps][numCastOps] = {
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002105 // T F F U S F F P I B A -+
2106 // R Z S P P I I T P 2 N T S |
2107 // U E E 2 2 2 2 R E I T C C +- secondOp
2108 // N X X U S F F N X N 2 V V |
2109 // C T T I I P P C T T P T T -+
2110 { 1, 0, 0,99,99, 0, 0,99,99,99, 0, 3, 0}, // Trunc -+
2111 { 8, 1, 9,99,99, 2, 0,99,99,99, 2, 3, 0}, // ZExt |
2112 { 8, 0, 1,99,99, 0, 2,99,99,99, 0, 3, 0}, // SExt |
2113 { 0, 0, 0,99,99, 0, 0,99,99,99, 0, 3, 0}, // FPToUI |
2114 { 0, 0, 0,99,99, 0, 0,99,99,99, 0, 3, 0}, // FPToSI |
2115 { 99,99,99, 0, 0,99,99, 0, 0,99,99, 4, 0}, // UIToFP +- firstOp
2116 { 99,99,99, 0, 0,99,99, 0, 0,99,99, 4, 0}, // SIToFP |
2117 { 99,99,99, 0, 0,99,99, 1, 0,99,99, 4, 0}, // FPTrunc |
2118 { 99,99,99, 2, 2,99,99,10, 2,99,99, 4, 0}, // FPExt |
2119 { 1, 0, 0,99,99, 0, 0,99,99,99, 7, 3, 0}, // PtrToInt |
2120 { 99,99,99,99,99,99,99,99,99,11,99,15, 0}, // IntToPtr |
2121 { 5, 5, 5, 6, 6, 5, 5, 6, 6,16, 5, 1,14}, // BitCast |
2122 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13,12}, // AddrSpaceCast -+
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002123 };
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002124
Chris Lattner25eea4d2010-07-12 01:19:22 +00002125 // If either of the casts are a bitcast from scalar to vector, disallow the
Nadav Rotem5fc81ff2011-08-29 19:58:36 +00002126 // merging. However, bitcast of A->B->A are allowed.
2127 bool isFirstBitcast = (firstOp == Instruction::BitCast);
2128 bool isSecondBitcast = (secondOp == Instruction::BitCast);
2129 bool chainedBitcast = (SrcTy == DstTy && isFirstBitcast && isSecondBitcast);
2130
2131 // Check if any of the bitcasts convert scalars<->vectors.
2132 if ((isFirstBitcast && isa<VectorType>(SrcTy) != isa<VectorType>(MidTy)) ||
2133 (isSecondBitcast && isa<VectorType>(MidTy) != isa<VectorType>(DstTy)))
2134 // Unless we are bitcasing to the original type, disallow optimizations.
2135 if (!chainedBitcast) return 0;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002136
2137 int ElimCase = CastResults[firstOp-Instruction::CastOpsBegin]
2138 [secondOp-Instruction::CastOpsBegin];
2139 switch (ElimCase) {
2140 case 0:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002141 // Categorically disallowed.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002142 return 0;
2143 case 1:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002144 // Allowed, use first cast's opcode.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002145 return firstOp;
2146 case 2:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002147 // Allowed, use second cast's opcode.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002148 return secondOp;
2149 case 3:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002150 // No-op cast in second op implies firstOp as long as the DestTy
Mon P Wange04b4562010-01-23 04:35:57 +00002151 // is integer and we are not converting between a vector and a
Alp Tokerf907b892013-12-05 05:44:44 +00002152 // non-vector type.
Duncan Sands19d0b472010-02-16 11:11:14 +00002153 if (!SrcTy->isVectorTy() && DstTy->isIntegerTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002154 return firstOp;
2155 return 0;
2156 case 4:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002157 // No-op cast in second op implies firstOp as long as the DestTy
Chris Lattner531732b2010-01-23 04:42:42 +00002158 // is floating point.
Duncan Sands9dff9be2010-02-15 16:12:20 +00002159 if (DstTy->isFloatingPointTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002160 return firstOp;
2161 return 0;
2162 case 5:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002163 // No-op cast in first op implies secondOp as long as the SrcTy
Chris Lattner531732b2010-01-23 04:42:42 +00002164 // is an integer.
Duncan Sands9dff9be2010-02-15 16:12:20 +00002165 if (SrcTy->isIntegerTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002166 return secondOp;
2167 return 0;
2168 case 6:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002169 // No-op cast in first op implies secondOp as long as the SrcTy
Chris Lattner531732b2010-01-23 04:42:42 +00002170 // is a floating point.
Duncan Sands9dff9be2010-02-15 16:12:20 +00002171 if (SrcTy->isFloatingPointTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002172 return secondOp;
2173 return 0;
Matt Arsenault130e0ef2013-07-30 22:27:10 +00002174 case 7: {
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002175 // Cannot simplify if address spaces are different!
2176 if (SrcTy->getPointerAddressSpace() != DstTy->getPointerAddressSpace())
2177 return 0;
2178
Matt Arsenault130e0ef2013-07-30 22:27:10 +00002179 unsigned MidSize = MidTy->getScalarSizeInBits();
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002180 // We can still fold this without knowing the actual sizes as long we
2181 // know that the intermediate pointer is the largest possible
2182 // pointer size.
2183 // FIXME: Is this always true?
2184 if (MidSize == 64)
Matt Arsenault130e0ef2013-07-30 22:27:10 +00002185 return Instruction::BitCast;
2186
2187 // ptrtoint, inttoptr -> bitcast (ptr -> ptr) if int size is >= ptr size.
Duncan Sandse2395dc2012-10-30 16:03:32 +00002188 if (!SrcIntPtrTy || DstIntPtrTy != SrcIntPtrTy)
Dan Gohman9413de12009-07-21 23:19:40 +00002189 return 0;
Duncan Sandse2395dc2012-10-30 16:03:32 +00002190 unsigned PtrSize = SrcIntPtrTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002191 if (MidSize >= PtrSize)
2192 return Instruction::BitCast;
2193 return 0;
2194 }
2195 case 8: {
2196 // ext, trunc -> bitcast, if the SrcTy and DstTy are same size
2197 // ext, trunc -> ext, if sizeof(SrcTy) < sizeof(DstTy)
2198 // ext, trunc -> trunc, if sizeof(SrcTy) > sizeof(DstTy)
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002199 unsigned SrcSize = SrcTy->getScalarSizeInBits();
2200 unsigned DstSize = DstTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002201 if (SrcSize == DstSize)
2202 return Instruction::BitCast;
2203 else if (SrcSize < DstSize)
2204 return firstOp;
2205 return secondOp;
2206 }
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002207 case 9:
2208 // zext, sext -> zext, because sext can't sign extend after zext
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002209 return Instruction::ZExt;
2210 case 10:
2211 // fpext followed by ftrunc is allowed if the bit size returned to is
2212 // the same as the original, in which case its just a bitcast
2213 if (SrcTy == DstTy)
2214 return Instruction::BitCast;
2215 return 0; // If the types are not the same we can't eliminate it.
Matt Arsenault130e0ef2013-07-30 22:27:10 +00002216 case 11: {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002217 // inttoptr, ptrtoint -> bitcast if SrcSize<=PtrSize and SrcSize==DstSize
Duncan Sandse2395dc2012-10-30 16:03:32 +00002218 if (!MidIntPtrTy)
Dan Gohman9413de12009-07-21 23:19:40 +00002219 return 0;
Duncan Sandse2395dc2012-10-30 16:03:32 +00002220 unsigned PtrSize = MidIntPtrTy->getScalarSizeInBits();
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002221 unsigned SrcSize = SrcTy->getScalarSizeInBits();
2222 unsigned DstSize = DstTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002223 if (SrcSize <= PtrSize && SrcSize == DstSize)
2224 return Instruction::BitCast;
2225 return 0;
2226 }
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002227 case 12: {
2228 // addrspacecast, addrspacecast -> bitcast, if SrcAS == DstAS
2229 // addrspacecast, addrspacecast -> addrspacecast, if SrcAS != DstAS
2230 if (SrcTy->getPointerAddressSpace() != DstTy->getPointerAddressSpace())
2231 return Instruction::AddrSpaceCast;
2232 return Instruction::BitCast;
2233 }
2234 case 13:
2235 // FIXME: this state can be merged with (1), but the following assert
2236 // is useful to check the correcteness of the sequence due to semantic
2237 // change of bitcast.
2238 assert(
2239 SrcTy->isPtrOrPtrVectorTy() &&
2240 MidTy->isPtrOrPtrVectorTy() &&
2241 DstTy->isPtrOrPtrVectorTy() &&
2242 SrcTy->getPointerAddressSpace() != MidTy->getPointerAddressSpace() &&
2243 MidTy->getPointerAddressSpace() == DstTy->getPointerAddressSpace() &&
2244 "Illegal addrspacecast, bitcast sequence!");
2245 // Allowed, use first cast's opcode
2246 return firstOp;
2247 case 14:
Jingyue Wu77145d92014-06-06 21:52:55 +00002248 // bitcast, addrspacecast -> addrspacecast if the element type of
2249 // bitcast's source is the same as that of addrspacecast's destination.
2250 if (SrcTy->getPointerElementType() == DstTy->getPointerElementType())
2251 return Instruction::AddrSpaceCast;
2252 return 0;
2253
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002254 case 15:
2255 // FIXME: this state can be merged with (1), but the following assert
2256 // is useful to check the correcteness of the sequence due to semantic
2257 // change of bitcast.
2258 assert(
2259 SrcTy->isIntOrIntVectorTy() &&
2260 MidTy->isPtrOrPtrVectorTy() &&
2261 DstTy->isPtrOrPtrVectorTy() &&
2262 MidTy->getPointerAddressSpace() == DstTy->getPointerAddressSpace() &&
2263 "Illegal inttoptr, bitcast sequence!");
2264 // Allowed, use first cast's opcode
2265 return firstOp;
2266 case 16:
2267 // FIXME: this state can be merged with (2), but the following assert
2268 // is useful to check the correcteness of the sequence due to semantic
2269 // change of bitcast.
2270 assert(
2271 SrcTy->isPtrOrPtrVectorTy() &&
2272 MidTy->isPtrOrPtrVectorTy() &&
2273 DstTy->isIntOrIntVectorTy() &&
2274 SrcTy->getPointerAddressSpace() == MidTy->getPointerAddressSpace() &&
2275 "Illegal bitcast, ptrtoint sequence!");
2276 // Allowed, use second cast's opcode
2277 return secondOp;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002278 case 99:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002279 // Cast combination can't happen (error in input). This is for all cases
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002280 // where the MidTy is not the same for the two cast instructions.
Craig Topperc514b542012-02-05 22:14:15 +00002281 llvm_unreachable("Invalid Cast Combination");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002282 default:
Craig Topperc514b542012-02-05 22:14:15 +00002283 llvm_unreachable("Error in CastResults table!!!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002284 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002285}
2286
Chris Lattner229907c2011-07-18 04:54:35 +00002287CastInst *CastInst::Create(Instruction::CastOps op, Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002288 const Twine &Name, Instruction *InsertBefore) {
Duncan Sands7f646562011-05-18 09:21:57 +00002289 assert(castIsValid(op, S, Ty) && "Invalid cast!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002290 // Construct and return the appropriate CastInst subclass
2291 switch (op) {
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002292 case Trunc: return new TruncInst (S, Ty, Name, InsertBefore);
2293 case ZExt: return new ZExtInst (S, Ty, Name, InsertBefore);
2294 case SExt: return new SExtInst (S, Ty, Name, InsertBefore);
2295 case FPTrunc: return new FPTruncInst (S, Ty, Name, InsertBefore);
2296 case FPExt: return new FPExtInst (S, Ty, Name, InsertBefore);
2297 case UIToFP: return new UIToFPInst (S, Ty, Name, InsertBefore);
2298 case SIToFP: return new SIToFPInst (S, Ty, Name, InsertBefore);
2299 case FPToUI: return new FPToUIInst (S, Ty, Name, InsertBefore);
2300 case FPToSI: return new FPToSIInst (S, Ty, Name, InsertBefore);
2301 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertBefore);
2302 case IntToPtr: return new IntToPtrInst (S, Ty, Name, InsertBefore);
2303 case BitCast: return new BitCastInst (S, Ty, Name, InsertBefore);
2304 case AddrSpaceCast: return new AddrSpaceCastInst (S, Ty, Name, InsertBefore);
2305 default: llvm_unreachable("Invalid opcode provided");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002306 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002307}
2308
Chris Lattner229907c2011-07-18 04:54:35 +00002309CastInst *CastInst::Create(Instruction::CastOps op, Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002310 const Twine &Name, BasicBlock *InsertAtEnd) {
Duncan Sands7f646562011-05-18 09:21:57 +00002311 assert(castIsValid(op, S, Ty) && "Invalid cast!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002312 // Construct and return the appropriate CastInst subclass
2313 switch (op) {
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002314 case Trunc: return new TruncInst (S, Ty, Name, InsertAtEnd);
2315 case ZExt: return new ZExtInst (S, Ty, Name, InsertAtEnd);
2316 case SExt: return new SExtInst (S, Ty, Name, InsertAtEnd);
2317 case FPTrunc: return new FPTruncInst (S, Ty, Name, InsertAtEnd);
2318 case FPExt: return new FPExtInst (S, Ty, Name, InsertAtEnd);
2319 case UIToFP: return new UIToFPInst (S, Ty, Name, InsertAtEnd);
2320 case SIToFP: return new SIToFPInst (S, Ty, Name, InsertAtEnd);
2321 case FPToUI: return new FPToUIInst (S, Ty, Name, InsertAtEnd);
2322 case FPToSI: return new FPToSIInst (S, Ty, Name, InsertAtEnd);
2323 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertAtEnd);
2324 case IntToPtr: return new IntToPtrInst (S, Ty, Name, InsertAtEnd);
2325 case BitCast: return new BitCastInst (S, Ty, Name, InsertAtEnd);
2326 case AddrSpaceCast: return new AddrSpaceCastInst (S, Ty, Name, InsertAtEnd);
2327 default: llvm_unreachable("Invalid opcode provided");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002328 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002329}
2330
Chris Lattner229907c2011-07-18 04:54:35 +00002331CastInst *CastInst::CreateZExtOrBitCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002332 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002333 Instruction *InsertBefore) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002334 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002335 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
2336 return Create(Instruction::ZExt, S, Ty, Name, InsertBefore);
Reid Spencer5c140882006-12-04 20:17:56 +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 BasicBlock *InsertAtEnd) {
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, InsertAtEnd);
2344 return Create(Instruction::ZExt, S, Ty, Name, InsertAtEnd);
Reid Spencer5c140882006-12-04 20:17:56 +00002345}
2346
Chris Lattner229907c2011-07-18 04:54:35 +00002347CastInst *CastInst::CreateSExtOrBitCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002348 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002349 Instruction *InsertBefore) {
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, InsertBefore);
2352 return Create(Instruction::SExt, S, Ty, Name, InsertBefore);
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 BasicBlock *InsertAtEnd) {
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, InsertAtEnd);
2360 return Create(Instruction::SExt, S, Ty, Name, InsertAtEnd);
Reid Spencer5c140882006-12-04 20:17:56 +00002361}
2362
Chris Lattner229907c2011-07-18 04:54:35 +00002363CastInst *CastInst::CreateTruncOrBitCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002364 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002365 Instruction *InsertBefore) {
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, InsertBefore);
2368 return Create(Instruction::Trunc, S, Ty, Name, InsertBefore);
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 BasicBlock *InsertAtEnd) {
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, InsertAtEnd);
2376 return Create(Instruction::Trunc, S, Ty, Name, InsertAtEnd);
Reid Spencer5c140882006-12-04 20:17:56 +00002377}
2378
Chris Lattner229907c2011-07-18 04:54:35 +00002379CastInst *CastInst::CreatePointerCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002380 const Twine &Name,
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002381 BasicBlock *InsertAtEnd) {
Matt Arsenault065ced92013-07-31 00:17:33 +00002382 assert(S->getType()->isPtrOrPtrVectorTy() && "Invalid cast");
2383 assert((Ty->isIntOrIntVectorTy() || Ty->isPtrOrPtrVectorTy()) &&
2384 "Invalid cast");
2385 assert(Ty->isVectorTy() == S->getType()->isVectorTy() && "Invalid cast");
Richard Trieu8dc43232013-07-31 04:07:28 +00002386 assert((!Ty->isVectorTy() ||
2387 Ty->getVectorNumElements() == S->getType()->getVectorNumElements()) &&
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002388 "Invalid cast");
2389
Matt Arsenault065ced92013-07-31 00:17:33 +00002390 if (Ty->isIntOrIntVectorTy())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002391 return Create(Instruction::PtrToInt, S, Ty, Name, InsertAtEnd);
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002392
Matt Arsenault740980e2014-07-14 17:24:35 +00002393 return CreatePointerBitCastOrAddrSpaceCast(S, Ty, Name, InsertAtEnd);
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002394}
2395
2396/// @brief Create a BitCast or a PtrToInt cast instruction
Matt Arsenault065ced92013-07-31 00:17:33 +00002397CastInst *CastInst::CreatePointerCast(Value *S, Type *Ty,
2398 const Twine &Name,
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002399 Instruction *InsertBefore) {
Evgeniy Stepanovc9bd35b2013-01-15 16:43:00 +00002400 assert(S->getType()->isPtrOrPtrVectorTy() && "Invalid cast");
2401 assert((Ty->isIntOrIntVectorTy() || Ty->isPtrOrPtrVectorTy()) &&
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002402 "Invalid cast");
Matt Arsenault065ced92013-07-31 00:17:33 +00002403 assert(Ty->isVectorTy() == S->getType()->isVectorTy() && "Invalid cast");
Richard Trieu8dc43232013-07-31 04:07:28 +00002404 assert((!Ty->isVectorTy() ||
2405 Ty->getVectorNumElements() == S->getType()->getVectorNumElements()) &&
Matt Arsenault065ced92013-07-31 00:17:33 +00002406 "Invalid cast");
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002407
Evgeniy Stepanovc9bd35b2013-01-15 16:43:00 +00002408 if (Ty->isIntOrIntVectorTy())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002409 return Create(Instruction::PtrToInt, S, Ty, Name, InsertBefore);
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002410
Matt Arsenault740980e2014-07-14 17:24:35 +00002411 return CreatePointerBitCastOrAddrSpaceCast(S, Ty, Name, InsertBefore);
2412}
2413
2414CastInst *CastInst::CreatePointerBitCastOrAddrSpaceCast(
2415 Value *S, Type *Ty,
2416 const Twine &Name,
2417 BasicBlock *InsertAtEnd) {
2418 assert(S->getType()->isPtrOrPtrVectorTy() && "Invalid cast");
2419 assert(Ty->isPtrOrPtrVectorTy() && "Invalid cast");
2420
2421 if (S->getType()->getPointerAddressSpace() != Ty->getPointerAddressSpace())
2422 return Create(Instruction::AddrSpaceCast, S, Ty, Name, InsertAtEnd);
2423
2424 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
2425}
2426
2427CastInst *CastInst::CreatePointerBitCastOrAddrSpaceCast(
2428 Value *S, Type *Ty,
2429 const Twine &Name,
2430 Instruction *InsertBefore) {
2431 assert(S->getType()->isPtrOrPtrVectorTy() && "Invalid cast");
2432 assert(Ty->isPtrOrPtrVectorTy() && "Invalid cast");
2433
2434 if (S->getType()->getPointerAddressSpace() != Ty->getPointerAddressSpace())
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002435 return Create(Instruction::AddrSpaceCast, S, Ty, Name, InsertBefore);
2436
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002437 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002438}
2439
Chandler Carruth1a3c2c42014-11-25 08:20:27 +00002440CastInst *CastInst::CreateBitOrPointerCast(Value *S, Type *Ty,
2441 const Twine &Name,
2442 Instruction *InsertBefore) {
2443 if (S->getType()->isPointerTy() && Ty->isIntegerTy())
2444 return Create(Instruction::PtrToInt, S, Ty, Name, InsertBefore);
2445 if (S->getType()->isIntegerTy() && Ty->isPointerTy())
2446 return Create(Instruction::IntToPtr, S, Ty, Name, InsertBefore);
2447
2448 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
2449}
2450
Matt Arsenault740980e2014-07-14 17:24:35 +00002451CastInst *CastInst::CreateIntegerCast(Value *C, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002452 bool isSigned, const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002453 Instruction *InsertBefore) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002454 assert(C->getType()->isIntOrIntVectorTy() && Ty->isIntOrIntVectorTy() &&
Chris Lattner5370ae72010-01-10 20:21:42 +00002455 "Invalid integer cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002456 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2457 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002458 Instruction::CastOps opcode =
2459 (SrcBits == DstBits ? Instruction::BitCast :
2460 (SrcBits > DstBits ? Instruction::Trunc :
2461 (isSigned ? Instruction::SExt : Instruction::ZExt)));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002462 return Create(opcode, C, Ty, Name, InsertBefore);
Reid Spencer7e933472006-12-12 00:49:44 +00002463}
2464
Chris Lattner229907c2011-07-18 04:54:35 +00002465CastInst *CastInst::CreateIntegerCast(Value *C, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002466 bool isSigned, const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002467 BasicBlock *InsertAtEnd) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002468 assert(C->getType()->isIntOrIntVectorTy() && Ty->isIntOrIntVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00002469 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002470 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2471 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002472 Instruction::CastOps opcode =
2473 (SrcBits == DstBits ? Instruction::BitCast :
2474 (SrcBits > DstBits ? Instruction::Trunc :
2475 (isSigned ? Instruction::SExt : Instruction::ZExt)));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002476 return Create(opcode, C, Ty, Name, InsertAtEnd);
Reid Spencer7e933472006-12-12 00:49:44 +00002477}
2478
Chris Lattner229907c2011-07-18 04:54:35 +00002479CastInst *CastInst::CreateFPCast(Value *C, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002480 const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002481 Instruction *InsertBefore) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002482 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer7e933472006-12-12 00:49:44 +00002483 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002484 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2485 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002486 Instruction::CastOps opcode =
2487 (SrcBits == DstBits ? Instruction::BitCast :
2488 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002489 return Create(opcode, C, Ty, Name, InsertBefore);
Reid Spencer7e933472006-12-12 00:49:44 +00002490}
2491
Chris Lattner229907c2011-07-18 04:54:35 +00002492CastInst *CastInst::CreateFPCast(Value *C, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002493 const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002494 BasicBlock *InsertAtEnd) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002495 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer7e933472006-12-12 00:49:44 +00002496 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002497 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2498 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002499 Instruction::CastOps opcode =
2500 (SrcBits == DstBits ? Instruction::BitCast :
2501 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002502 return Create(opcode, C, Ty, Name, InsertAtEnd);
Reid Spencer7e933472006-12-12 00:49:44 +00002503}
2504
Matt Arsenaultb4019ae2013-07-30 22:02:14 +00002505// Check whether it is valid to call getCastOpcode for these types.
2506// This routine must be kept in sync with getCastOpcode.
2507bool CastInst::isCastable(Type *SrcTy, Type *DestTy) {
2508 if (!SrcTy->isFirstClassType() || !DestTy->isFirstClassType())
2509 return false;
2510
2511 if (SrcTy == DestTy)
2512 return true;
2513
2514 if (VectorType *SrcVecTy = dyn_cast<VectorType>(SrcTy))
2515 if (VectorType *DestVecTy = dyn_cast<VectorType>(DestTy))
2516 if (SrcVecTy->getNumElements() == DestVecTy->getNumElements()) {
2517 // An element by element cast. Valid if casting the elements is valid.
2518 SrcTy = SrcVecTy->getElementType();
2519 DestTy = DestVecTy->getElementType();
2520 }
2521
2522 // Get the bit sizes, we'll need these
2523 unsigned SrcBits = SrcTy->getPrimitiveSizeInBits(); // 0 for ptr
2524 unsigned DestBits = DestTy->getPrimitiveSizeInBits(); // 0 for ptr
2525
2526 // Run through the possibilities ...
2527 if (DestTy->isIntegerTy()) { // Casting to integral
David Blaikie9965c5a2015-03-23 19:51:23 +00002528 if (SrcTy->isIntegerTy()) // Casting from integral
Matt Arsenaultb4019ae2013-07-30 22:02:14 +00002529 return true;
David Blaikie9965c5a2015-03-23 19:51:23 +00002530 if (SrcTy->isFloatingPointTy()) // Casting from floating pt
Matt Arsenaultb4019ae2013-07-30 22:02:14 +00002531 return true;
David Blaikie9965c5a2015-03-23 19:51:23 +00002532 if (SrcTy->isVectorTy()) // Casting from vector
Matt Arsenaultb4019ae2013-07-30 22:02:14 +00002533 return DestBits == SrcBits;
David Blaikie9965c5a2015-03-23 19:51:23 +00002534 // Casting from something else
2535 return SrcTy->isPointerTy();
2536 }
2537 if (DestTy->isFloatingPointTy()) { // Casting to floating pt
2538 if (SrcTy->isIntegerTy()) // Casting from integral
Matt Arsenaultb4019ae2013-07-30 22:02:14 +00002539 return true;
David Blaikie9965c5a2015-03-23 19:51:23 +00002540 if (SrcTy->isFloatingPointTy()) // Casting from floating pt
Matt Arsenaultb4019ae2013-07-30 22:02:14 +00002541 return true;
David Blaikie9965c5a2015-03-23 19:51:23 +00002542 if (SrcTy->isVectorTy()) // Casting from vector
Matt Arsenaultb4019ae2013-07-30 22:02:14 +00002543 return DestBits == SrcBits;
David Blaikie9965c5a2015-03-23 19:51:23 +00002544 // Casting from something else
Matt Arsenaultb4019ae2013-07-30 22:02:14 +00002545 return false;
2546 }
David Blaikie9965c5a2015-03-23 19:51:23 +00002547 if (DestTy->isVectorTy()) // Casting to vector
2548 return DestBits == SrcBits;
2549 if (DestTy->isPointerTy()) { // Casting to pointer
2550 if (SrcTy->isPointerTy()) // Casting from pointer
2551 return true;
2552 return SrcTy->isIntegerTy(); // Casting from integral
2553 }
2554 if (DestTy->isX86_MMXTy()) {
2555 if (SrcTy->isVectorTy())
2556 return DestBits == SrcBits; // 64-bit vector to MMX
2557 return false;
2558 } // Casting to something else
2559 return false;
Matt Arsenaultb4019ae2013-07-30 22:02:14 +00002560}
2561
Matt Arsenaultcacbb232013-07-30 20:45:05 +00002562bool CastInst::isBitCastable(Type *SrcTy, Type *DestTy) {
2563 if (!SrcTy->isFirstClassType() || !DestTy->isFirstClassType())
2564 return false;
2565
2566 if (SrcTy == DestTy)
2567 return true;
2568
2569 if (VectorType *SrcVecTy = dyn_cast<VectorType>(SrcTy)) {
2570 if (VectorType *DestVecTy = dyn_cast<VectorType>(DestTy)) {
2571 if (SrcVecTy->getNumElements() == DestVecTy->getNumElements()) {
2572 // An element by element cast. Valid if casting the elements is valid.
2573 SrcTy = SrcVecTy->getElementType();
2574 DestTy = DestVecTy->getElementType();
2575 }
2576 }
2577 }
2578
2579 if (PointerType *DestPtrTy = dyn_cast<PointerType>(DestTy)) {
2580 if (PointerType *SrcPtrTy = dyn_cast<PointerType>(SrcTy)) {
2581 return SrcPtrTy->getAddressSpace() == DestPtrTy->getAddressSpace();
2582 }
2583 }
2584
2585 unsigned SrcBits = SrcTy->getPrimitiveSizeInBits(); // 0 for ptr
2586 unsigned DestBits = DestTy->getPrimitiveSizeInBits(); // 0 for ptr
2587
2588 // Could still have vectors of pointers if the number of elements doesn't
2589 // match
2590 if (SrcBits == 0 || DestBits == 0)
2591 return false;
2592
2593 if (SrcBits != DestBits)
2594 return false;
2595
2596 if (DestTy->isX86_MMXTy() || SrcTy->isX86_MMXTy())
2597 return false;
2598
2599 return true;
2600}
2601
Chandler Carruth1a3c2c42014-11-25 08:20:27 +00002602bool CastInst::isBitOrNoopPointerCastable(Type *SrcTy, Type *DestTy,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00002603 const DataLayout &DL) {
Chandler Carruth1a3c2c42014-11-25 08:20:27 +00002604 if (auto *PtrTy = dyn_cast<PointerType>(SrcTy))
2605 if (auto *IntTy = dyn_cast<IntegerType>(DestTy))
Mehdi Aminia28d91d2015-03-10 02:37:25 +00002606 return IntTy->getBitWidth() == DL.getPointerTypeSizeInBits(PtrTy);
Chandler Carruth1a3c2c42014-11-25 08:20:27 +00002607 if (auto *PtrTy = dyn_cast<PointerType>(DestTy))
2608 if (auto *IntTy = dyn_cast<IntegerType>(SrcTy))
Mehdi Aminia28d91d2015-03-10 02:37:25 +00002609 return IntTy->getBitWidth() == DL.getPointerTypeSizeInBits(PtrTy);
Chandler Carruth1a3c2c42014-11-25 08:20:27 +00002610
2611 return isBitCastable(SrcTy, DestTy);
2612}
2613
Matt Arsenaultcacbb232013-07-30 20:45:05 +00002614// Provide a way to get a "cast" where the cast opcode is inferred from the
2615// types and size of the operand. This, basically, is a parallel of the
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002616// logic in the castIsValid function below. This axiom should hold:
2617// castIsValid( getCastOpcode(Val, Ty), Val, Ty)
2618// should not assert in castIsValid. In other words, this produces a "correct"
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002619// casting opcode for the arguments passed to it.
Duncan Sands55e50902008-01-06 10:12:28 +00002620// This routine must be kept in sync with isCastable.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002621Instruction::CastOps
Reid Spencerc4dacf22006-12-04 02:43:42 +00002622CastInst::getCastOpcode(
Chris Lattner229907c2011-07-18 04:54:35 +00002623 const Value *Src, bool SrcIsSigned, Type *DestTy, bool DestIsSigned) {
2624 Type *SrcTy = Src->getType();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002625
Duncan Sands55e50902008-01-06 10:12:28 +00002626 assert(SrcTy->isFirstClassType() && DestTy->isFirstClassType() &&
2627 "Only first class types are castable!");
2628
Duncan Sandsa8514532011-05-18 07:13:41 +00002629 if (SrcTy == DestTy)
2630 return BitCast;
2631
Matt Arsenaultcacbb232013-07-30 20:45:05 +00002632 // FIXME: Check address space sizes here
Chris Lattner229907c2011-07-18 04:54:35 +00002633 if (VectorType *SrcVecTy = dyn_cast<VectorType>(SrcTy))
2634 if (VectorType *DestVecTy = dyn_cast<VectorType>(DestTy))
Duncan Sandsa8514532011-05-18 07:13:41 +00002635 if (SrcVecTy->getNumElements() == DestVecTy->getNumElements()) {
2636 // An element by element cast. Find the appropriate opcode based on the
2637 // element types.
2638 SrcTy = SrcVecTy->getElementType();
2639 DestTy = DestVecTy->getElementType();
2640 }
2641
2642 // Get the bit sizes, we'll need these
Duncan Sands7f646562011-05-18 09:21:57 +00002643 unsigned SrcBits = SrcTy->getPrimitiveSizeInBits(); // 0 for ptr
2644 unsigned DestBits = DestTy->getPrimitiveSizeInBits(); // 0 for ptr
Duncan Sandsa8514532011-05-18 07:13:41 +00002645
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002646 // Run through the possibilities ...
Duncan Sands9dff9be2010-02-15 16:12:20 +00002647 if (DestTy->isIntegerTy()) { // Casting to integral
2648 if (SrcTy->isIntegerTy()) { // Casting from integral
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002649 if (DestBits < SrcBits)
2650 return Trunc; // int -> smaller int
2651 else if (DestBits > SrcBits) { // its an extension
Reid Spencerc4dacf22006-12-04 02:43:42 +00002652 if (SrcIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002653 return SExt; // signed -> SEXT
2654 else
2655 return ZExt; // unsigned -> ZEXT
2656 } else {
2657 return BitCast; // Same size, No-op cast
2658 }
Duncan Sands9dff9be2010-02-15 16:12:20 +00002659 } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt
Reid Spencerc4dacf22006-12-04 02:43:42 +00002660 if (DestIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002661 return FPToSI; // FP -> sint
2662 else
2663 return FPToUI; // FP -> uint
Duncan Sands27bd0df2011-05-18 10:59:25 +00002664 } else if (SrcTy->isVectorTy()) {
2665 assert(DestBits == SrcBits &&
2666 "Casting vector to integer of different width");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002667 return BitCast; // Same size, no-op cast
2668 } else {
Duncan Sands19d0b472010-02-16 11:11:14 +00002669 assert(SrcTy->isPointerTy() &&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002670 "Casting from a value that is not first-class type");
2671 return PtrToInt; // ptr -> int
2672 }
Duncan Sands9dff9be2010-02-15 16:12:20 +00002673 } else if (DestTy->isFloatingPointTy()) { // Casting to floating pt
2674 if (SrcTy->isIntegerTy()) { // Casting from integral
Reid Spencerc4dacf22006-12-04 02:43:42 +00002675 if (SrcIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002676 return SIToFP; // sint -> FP
2677 else
2678 return UIToFP; // uint -> FP
Duncan Sands9dff9be2010-02-15 16:12:20 +00002679 } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002680 if (DestBits < SrcBits) {
2681 return FPTrunc; // FP -> smaller FP
2682 } else if (DestBits > SrcBits) {
2683 return FPExt; // FP -> larger FP
2684 } else {
2685 return BitCast; // same size, no-op cast
2686 }
Duncan Sands27bd0df2011-05-18 10:59:25 +00002687 } else if (SrcTy->isVectorTy()) {
2688 assert(DestBits == SrcBits &&
Dan Gohmanfead7972007-05-11 21:43:24 +00002689 "Casting vector to floating point of different width");
Devang Patele9432132008-11-05 01:37:40 +00002690 return BitCast; // same size, no-op cast
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002691 }
Ahmed Charles636a3d62012-02-19 11:37:01 +00002692 llvm_unreachable("Casting pointer or non-first class to float");
Duncan Sands27bd0df2011-05-18 10:59:25 +00002693 } else if (DestTy->isVectorTy()) {
2694 assert(DestBits == SrcBits &&
2695 "Illegal cast to vector (wrong type or size)");
2696 return BitCast;
Duncan Sands19d0b472010-02-16 11:11:14 +00002697 } else if (DestTy->isPointerTy()) {
2698 if (SrcTy->isPointerTy()) {
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002699 if (DestTy->getPointerAddressSpace() != SrcTy->getPointerAddressSpace())
2700 return AddrSpaceCast;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002701 return BitCast; // ptr -> ptr
Duncan Sands9dff9be2010-02-15 16:12:20 +00002702 } else if (SrcTy->isIntegerTy()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002703 return IntToPtr; // int -> ptr
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002704 }
Ahmed Charles636a3d62012-02-19 11:37:01 +00002705 llvm_unreachable("Casting pointer to other than pointer or int");
Dale Johannesendd224d22010-09-30 23:57:10 +00002706 } else if (DestTy->isX86_MMXTy()) {
Duncan Sands27bd0df2011-05-18 10:59:25 +00002707 if (SrcTy->isVectorTy()) {
2708 assert(DestBits == SrcBits && "Casting vector of wrong width to X86_MMX");
Dale Johannesendd224d22010-09-30 23:57:10 +00002709 return BitCast; // 64-bit vector to MMX
Dale Johannesendd224d22010-09-30 23:57:10 +00002710 }
Ahmed Charles636a3d62012-02-19 11:37:01 +00002711 llvm_unreachable("Illegal cast to X86_MMX");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002712 }
Ahmed Charles636a3d62012-02-19 11:37:01 +00002713 llvm_unreachable("Casting to type that is not first-class");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002714}
2715
2716//===----------------------------------------------------------------------===//
2717// CastInst SubClass Constructors
2718//===----------------------------------------------------------------------===//
2719
2720/// Check that the construction parameters for a CastInst are correct. This
2721/// could be broken out into the separate constructors but it is useful to have
2722/// it in one place and to eliminate the redundant code for getting the sizes
2723/// of the types involved.
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002724bool
Chris Lattner229907c2011-07-18 04:54:35 +00002725CastInst::castIsValid(Instruction::CastOps op, Value *S, Type *DstTy) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002726
2727 // Check for type sanity on the arguments
Chris Lattner229907c2011-07-18 04:54:35 +00002728 Type *SrcTy = S->getType();
Evan Cheng098d7b72013-01-10 23:22:53 +00002729
Chris Lattner37bc78a2010-01-26 21:51:43 +00002730 if (!SrcTy->isFirstClassType() || !DstTy->isFirstClassType() ||
2731 SrcTy->isAggregateType() || DstTy->isAggregateType())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002732 return false;
2733
2734 // Get the size of the types in bits, we'll need this later
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002735 unsigned SrcBitSize = SrcTy->getScalarSizeInBits();
2736 unsigned DstBitSize = DstTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002737
Duncan Sands7f646562011-05-18 09:21:57 +00002738 // If these are vector types, get the lengths of the vectors (using zero for
2739 // scalar types means that checking that vector lengths match also checks that
2740 // scalars are not being converted to vectors or vectors to scalars).
2741 unsigned SrcLength = SrcTy->isVectorTy() ?
2742 cast<VectorType>(SrcTy)->getNumElements() : 0;
2743 unsigned DstLength = DstTy->isVectorTy() ?
2744 cast<VectorType>(DstTy)->getNumElements() : 0;
2745
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002746 // Switch on the opcode provided
2747 switch (op) {
2748 default: return false; // This is an input error
2749 case Instruction::Trunc:
Duncan Sands7f646562011-05-18 09:21:57 +00002750 return SrcTy->isIntOrIntVectorTy() && DstTy->isIntOrIntVectorTy() &&
2751 SrcLength == DstLength && SrcBitSize > DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002752 case Instruction::ZExt:
Duncan Sands7f646562011-05-18 09:21:57 +00002753 return SrcTy->isIntOrIntVectorTy() && DstTy->isIntOrIntVectorTy() &&
2754 SrcLength == DstLength && SrcBitSize < DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002755 case Instruction::SExt:
Duncan Sands7f646562011-05-18 09:21:57 +00002756 return SrcTy->isIntOrIntVectorTy() && DstTy->isIntOrIntVectorTy() &&
2757 SrcLength == DstLength && SrcBitSize < DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002758 case Instruction::FPTrunc:
Duncan Sands7f646562011-05-18 09:21:57 +00002759 return SrcTy->isFPOrFPVectorTy() && DstTy->isFPOrFPVectorTy() &&
2760 SrcLength == DstLength && SrcBitSize > DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002761 case Instruction::FPExt:
Duncan Sands7f646562011-05-18 09:21:57 +00002762 return SrcTy->isFPOrFPVectorTy() && DstTy->isFPOrFPVectorTy() &&
2763 SrcLength == DstLength && SrcBitSize < DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002764 case Instruction::UIToFP:
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002765 case Instruction::SIToFP:
Duncan Sands7f646562011-05-18 09:21:57 +00002766 return SrcTy->isIntOrIntVectorTy() && DstTy->isFPOrFPVectorTy() &&
2767 SrcLength == DstLength;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002768 case Instruction::FPToUI:
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002769 case Instruction::FPToSI:
Duncan Sands7f646562011-05-18 09:21:57 +00002770 return SrcTy->isFPOrFPVectorTy() && DstTy->isIntOrIntVectorTy() &&
2771 SrcLength == DstLength;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002772 case Instruction::PtrToInt:
Chris Lattner8a3df542012-01-25 01:32:59 +00002773 if (isa<VectorType>(SrcTy) != isa<VectorType>(DstTy))
Nadav Rotem3924cb02011-12-05 06:29:09 +00002774 return false;
Chris Lattner8a3df542012-01-25 01:32:59 +00002775 if (VectorType *VT = dyn_cast<VectorType>(SrcTy))
2776 if (VT->getNumElements() != cast<VectorType>(DstTy)->getNumElements())
2777 return false;
Nadav Rotem3924cb02011-12-05 06:29:09 +00002778 return SrcTy->getScalarType()->isPointerTy() &&
2779 DstTy->getScalarType()->isIntegerTy();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002780 case Instruction::IntToPtr:
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()->isIntegerTy() &&
2787 DstTy->getScalarType()->isPointerTy();
Matt Arsenaultfc3c91d2014-01-22 19:21:33 +00002788 case Instruction::BitCast: {
2789 PointerType *SrcPtrTy = dyn_cast<PointerType>(SrcTy->getScalarType());
2790 PointerType *DstPtrTy = dyn_cast<PointerType>(DstTy->getScalarType());
2791
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002792 // BitCast implies a no-op cast of type only. No bits change.
2793 // However, you can't cast pointers to anything but pointers.
Matt Arsenaultfc3c91d2014-01-22 19:21:33 +00002794 if (!SrcPtrTy != !DstPtrTy)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002795 return false;
2796
Alp Tokerf907b892013-12-05 05:44:44 +00002797 // For non-pointer cases, the cast is okay if the source and destination bit
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002798 // widths are identical.
Matt Arsenaultfc3c91d2014-01-22 19:21:33 +00002799 if (!SrcPtrTy)
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002800 return SrcTy->getPrimitiveSizeInBits() == DstTy->getPrimitiveSizeInBits();
2801
Matt Arsenaultfc3c91d2014-01-22 19:21:33 +00002802 // If both are pointers then the address spaces must match.
2803 if (SrcPtrTy->getAddressSpace() != DstPtrTy->getAddressSpace())
2804 return false;
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002805
Matt Arsenaultfc3c91d2014-01-22 19:21:33 +00002806 // A vector of pointers must have the same number of elements.
2807 if (VectorType *SrcVecTy = dyn_cast<VectorType>(SrcTy)) {
2808 if (VectorType *DstVecTy = dyn_cast<VectorType>(DstTy))
2809 return (SrcVecTy->getNumElements() == DstVecTy->getNumElements());
2810
2811 return false;
2812 }
2813
2814 return true;
2815 }
2816 case Instruction::AddrSpaceCast: {
2817 PointerType *SrcPtrTy = dyn_cast<PointerType>(SrcTy->getScalarType());
2818 if (!SrcPtrTy)
2819 return false;
2820
2821 PointerType *DstPtrTy = dyn_cast<PointerType>(DstTy->getScalarType());
2822 if (!DstPtrTy)
2823 return false;
2824
2825 if (SrcPtrTy->getAddressSpace() == DstPtrTy->getAddressSpace())
2826 return false;
2827
2828 if (VectorType *SrcVecTy = dyn_cast<VectorType>(SrcTy)) {
2829 if (VectorType *DstVecTy = dyn_cast<VectorType>(DstTy))
2830 return (SrcVecTy->getNumElements() == DstVecTy->getNumElements());
2831
2832 return false;
2833 }
2834
2835 return true;
2836 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002837 }
2838}
2839
2840TruncInst::TruncInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002841 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002842) : CastInst(Ty, Trunc, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002843 assert(castIsValid(getOpcode(), S, Ty) && "Illegal Trunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002844}
2845
2846TruncInst::TruncInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002847 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002848) : CastInst(Ty, Trunc, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002849 assert(castIsValid(getOpcode(), S, Ty) && "Illegal Trunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002850}
2851
2852ZExtInst::ZExtInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002853 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002854) : CastInst(Ty, ZExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002855 assert(castIsValid(getOpcode(), S, Ty) && "Illegal ZExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002856}
2857
2858ZExtInst::ZExtInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002859 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002860) : CastInst(Ty, ZExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002861 assert(castIsValid(getOpcode(), S, Ty) && "Illegal ZExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002862}
2863SExtInst::SExtInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002864 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002865) : CastInst(Ty, SExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002866 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002867}
2868
Jeff Cohencc08c832006-12-02 02:22:01 +00002869SExtInst::SExtInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002870 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002871) : CastInst(Ty, SExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002872 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002873}
2874
2875FPTruncInst::FPTruncInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002876 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002877) : CastInst(Ty, FPTrunc, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002878 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPTrunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002879}
2880
2881FPTruncInst::FPTruncInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002882 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002883) : CastInst(Ty, FPTrunc, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002884 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPTrunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002885}
2886
2887FPExtInst::FPExtInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002888 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002889) : CastInst(Ty, FPExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002890 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002891}
2892
2893FPExtInst::FPExtInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002894 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002895) : CastInst(Ty, FPExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002896 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002897}
2898
2899UIToFPInst::UIToFPInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002900 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002901) : CastInst(Ty, UIToFP, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002902 assert(castIsValid(getOpcode(), S, Ty) && "Illegal UIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002903}
2904
2905UIToFPInst::UIToFPInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002906 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002907) : CastInst(Ty, UIToFP, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002908 assert(castIsValid(getOpcode(), S, Ty) && "Illegal UIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002909}
2910
2911SIToFPInst::SIToFPInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002912 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002913) : CastInst(Ty, SIToFP, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002914 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002915}
2916
2917SIToFPInst::SIToFPInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002918 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002919) : CastInst(Ty, SIToFP, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002920 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002921}
2922
2923FPToUIInst::FPToUIInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002924 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002925) : CastInst(Ty, FPToUI, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002926 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToUI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002927}
2928
2929FPToUIInst::FPToUIInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002930 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002931) : CastInst(Ty, FPToUI, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002932 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToUI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002933}
2934
2935FPToSIInst::FPToSIInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002936 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002937) : CastInst(Ty, FPToSI, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002938 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToSI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002939}
2940
2941FPToSIInst::FPToSIInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002942 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002943) : CastInst(Ty, FPToSI, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002944 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToSI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002945}
2946
2947PtrToIntInst::PtrToIntInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002948 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002949) : CastInst(Ty, PtrToInt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002950 assert(castIsValid(getOpcode(), S, Ty) && "Illegal PtrToInt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002951}
2952
2953PtrToIntInst::PtrToIntInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002954 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002955) : CastInst(Ty, PtrToInt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002956 assert(castIsValid(getOpcode(), S, Ty) && "Illegal PtrToInt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002957}
2958
2959IntToPtrInst::IntToPtrInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002960 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002961) : CastInst(Ty, IntToPtr, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002962 assert(castIsValid(getOpcode(), S, Ty) && "Illegal IntToPtr");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002963}
2964
2965IntToPtrInst::IntToPtrInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002966 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002967) : CastInst(Ty, IntToPtr, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002968 assert(castIsValid(getOpcode(), S, Ty) && "Illegal IntToPtr");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002969}
2970
2971BitCastInst::BitCastInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002972 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002973) : CastInst(Ty, BitCast, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002974 assert(castIsValid(getOpcode(), S, Ty) && "Illegal BitCast");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002975}
2976
2977BitCastInst::BitCastInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002978 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002979) : CastInst(Ty, BitCast, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002980 assert(castIsValid(getOpcode(), S, Ty) && "Illegal BitCast");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002981}
Chris Lattnerf16dc002006-09-17 19:29:56 +00002982
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002983AddrSpaceCastInst::AddrSpaceCastInst(
2984 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
2985) : CastInst(Ty, AddrSpaceCast, S, Name, InsertBefore) {
2986 assert(castIsValid(getOpcode(), S, Ty) && "Illegal AddrSpaceCast");
2987}
2988
2989AddrSpaceCastInst::AddrSpaceCastInst(
2990 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
2991) : CastInst(Ty, AddrSpaceCast, S, Name, InsertAtEnd) {
2992 assert(castIsValid(getOpcode(), S, Ty) && "Illegal AddrSpaceCast");
2993}
2994
Chris Lattnerf16dc002006-09-17 19:29:56 +00002995//===----------------------------------------------------------------------===//
Reid Spencerd9436b62006-11-20 01:22:35 +00002996// CmpInst Classes
2997//===----------------------------------------------------------------------===//
2998
Craig Topper3186c012012-09-23 02:12:10 +00002999void CmpInst::anchor() {}
Chris Lattneraec33da2010-01-22 06:25:37 +00003000
Chris Lattner229907c2011-07-18 04:54:35 +00003001CmpInst::CmpInst(Type *ty, OtherOps op, unsigned short predicate,
Daniel Dunbar4975db62009-07-25 04:41:11 +00003002 Value *LHS, Value *RHS, const Twine &Name,
Nate Begemand2195702008-05-12 19:01:56 +00003003 Instruction *InsertBefore)
Nate Begeman66d0a0e2008-05-12 20:11:05 +00003004 : Instruction(ty, op,
Gabor Greiff6caff662008-05-10 08:32:32 +00003005 OperandTraits<CmpInst>::op_begin(this),
3006 OperandTraits<CmpInst>::operands(this),
3007 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00003008 Op<0>() = LHS;
3009 Op<1>() = RHS;
Chris Lattnerb9c86512009-12-29 02:14:09 +00003010 setPredicate((Predicate)predicate);
Reid Spencer871a9ea2007-04-11 13:04:48 +00003011 setName(Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00003012}
Gabor Greiff6caff662008-05-10 08:32:32 +00003013
Chris Lattner229907c2011-07-18 04:54:35 +00003014CmpInst::CmpInst(Type *ty, OtherOps op, unsigned short predicate,
Daniel Dunbar4975db62009-07-25 04:41:11 +00003015 Value *LHS, Value *RHS, const Twine &Name,
Nate Begemand2195702008-05-12 19:01:56 +00003016 BasicBlock *InsertAtEnd)
Nate Begeman66d0a0e2008-05-12 20:11:05 +00003017 : Instruction(ty, op,
Gabor Greiff6caff662008-05-10 08:32:32 +00003018 OperandTraits<CmpInst>::op_begin(this),
3019 OperandTraits<CmpInst>::operands(this),
3020 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00003021 Op<0>() = LHS;
3022 Op<1>() = RHS;
Chris Lattnerb9c86512009-12-29 02:14:09 +00003023 setPredicate((Predicate)predicate);
Reid Spencer871a9ea2007-04-11 13:04:48 +00003024 setName(Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00003025}
3026
3027CmpInst *
Dan Gohmanad1f0a12009-08-25 23:17:54 +00003028CmpInst::Create(OtherOps Op, unsigned short predicate,
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003029 Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00003030 const Twine &Name, Instruction *InsertBefore) {
Reid Spencerd9436b62006-11-20 01:22:35 +00003031 if (Op == Instruction::ICmp) {
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003032 if (InsertBefore)
3033 return new ICmpInst(InsertBefore, CmpInst::Predicate(predicate),
3034 S1, S2, Name);
3035 else
Dan Gohmanad1f0a12009-08-25 23:17:54 +00003036 return new ICmpInst(CmpInst::Predicate(predicate),
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003037 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00003038 }
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003039
3040 if (InsertBefore)
3041 return new FCmpInst(InsertBefore, CmpInst::Predicate(predicate),
3042 S1, S2, Name);
3043 else
Dan Gohmanad1f0a12009-08-25 23:17:54 +00003044 return new FCmpInst(CmpInst::Predicate(predicate),
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003045 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00003046}
3047
3048CmpInst *
Gabor Greife1f6e4b2008-05-16 19:29:10 +00003049CmpInst::Create(OtherOps Op, unsigned short predicate, Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00003050 const Twine &Name, BasicBlock *InsertAtEnd) {
Reid Spencerd9436b62006-11-20 01:22:35 +00003051 if (Op == Instruction::ICmp) {
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003052 return new ICmpInst(*InsertAtEnd, CmpInst::Predicate(predicate),
3053 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00003054 }
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003055 return new FCmpInst(*InsertAtEnd, CmpInst::Predicate(predicate),
3056 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00003057}
3058
3059void CmpInst::swapOperands() {
3060 if (ICmpInst *IC = dyn_cast<ICmpInst>(this))
3061 IC->swapOperands();
3062 else
3063 cast<FCmpInst>(this)->swapOperands();
3064}
3065
Duncan Sands95c4ecc2011-01-04 12:52:29 +00003066bool CmpInst::isCommutative() const {
3067 if (const ICmpInst *IC = dyn_cast<ICmpInst>(this))
Reid Spencerd9436b62006-11-20 01:22:35 +00003068 return IC->isCommutative();
3069 return cast<FCmpInst>(this)->isCommutative();
3070}
3071
Duncan Sands95c4ecc2011-01-04 12:52:29 +00003072bool CmpInst::isEquality() const {
3073 if (const ICmpInst *IC = dyn_cast<ICmpInst>(this))
Reid Spencerd9436b62006-11-20 01:22:35 +00003074 return IC->isEquality();
3075 return cast<FCmpInst>(this)->isEquality();
3076}
3077
3078
Dan Gohman4e724382008-05-31 02:47:54 +00003079CmpInst::Predicate CmpInst::getInversePredicate(Predicate pred) {
Reid Spencerd9436b62006-11-20 01:22:35 +00003080 switch (pred) {
Craig Topperc514b542012-02-05 22:14:15 +00003081 default: llvm_unreachable("Unknown cmp predicate!");
Reid Spencerd9436b62006-11-20 01:22:35 +00003082 case ICMP_EQ: return ICMP_NE;
3083 case ICMP_NE: return ICMP_EQ;
3084 case ICMP_UGT: return ICMP_ULE;
3085 case ICMP_ULT: return ICMP_UGE;
3086 case ICMP_UGE: return ICMP_ULT;
3087 case ICMP_ULE: return ICMP_UGT;
3088 case ICMP_SGT: return ICMP_SLE;
3089 case ICMP_SLT: return ICMP_SGE;
3090 case ICMP_SGE: return ICMP_SLT;
3091 case ICMP_SLE: return ICMP_SGT;
Reid Spencerd9436b62006-11-20 01:22:35 +00003092
Dan Gohman4e724382008-05-31 02:47:54 +00003093 case FCMP_OEQ: return FCMP_UNE;
3094 case FCMP_ONE: return FCMP_UEQ;
3095 case FCMP_OGT: return FCMP_ULE;
3096 case FCMP_OLT: return FCMP_UGE;
3097 case FCMP_OGE: return FCMP_ULT;
3098 case FCMP_OLE: return FCMP_UGT;
3099 case FCMP_UEQ: return FCMP_ONE;
3100 case FCMP_UNE: return FCMP_OEQ;
3101 case FCMP_UGT: return FCMP_OLE;
3102 case FCMP_ULT: return FCMP_OGE;
3103 case FCMP_UGE: return FCMP_OLT;
3104 case FCMP_ULE: return FCMP_OGT;
3105 case FCMP_ORD: return FCMP_UNO;
3106 case FCMP_UNO: return FCMP_ORD;
3107 case FCMP_TRUE: return FCMP_FALSE;
3108 case FCMP_FALSE: return FCMP_TRUE;
Reid Spencerd9436b62006-11-20 01:22:35 +00003109 }
3110}
3111
Reid Spencer266e42b2006-12-23 06:05:41 +00003112ICmpInst::Predicate ICmpInst::getSignedPredicate(Predicate pred) {
3113 switch (pred) {
Craig Topperc514b542012-02-05 22:14:15 +00003114 default: llvm_unreachable("Unknown icmp predicate!");
Reid Spencer266e42b2006-12-23 06:05:41 +00003115 case ICMP_EQ: case ICMP_NE:
3116 case ICMP_SGT: case ICMP_SLT: case ICMP_SGE: case ICMP_SLE:
3117 return pred;
3118 case ICMP_UGT: return ICMP_SGT;
3119 case ICMP_ULT: return ICMP_SLT;
3120 case ICMP_UGE: return ICMP_SGE;
3121 case ICMP_ULE: return ICMP_SLE;
3122 }
3123}
3124
Nick Lewycky8ea81e82008-01-28 03:48:02 +00003125ICmpInst::Predicate ICmpInst::getUnsignedPredicate(Predicate pred) {
3126 switch (pred) {
Craig Topperc514b542012-02-05 22:14:15 +00003127 default: llvm_unreachable("Unknown icmp predicate!");
Nick Lewycky8ea81e82008-01-28 03:48:02 +00003128 case ICMP_EQ: case ICMP_NE:
3129 case ICMP_UGT: case ICMP_ULT: case ICMP_UGE: case ICMP_ULE:
3130 return pred;
3131 case ICMP_SGT: return ICMP_UGT;
3132 case ICMP_SLT: return ICMP_ULT;
3133 case ICMP_SGE: return ICMP_UGE;
3134 case ICMP_SLE: return ICMP_ULE;
3135 }
3136}
3137
Reid Spencer0286bc12007-02-28 22:00:54 +00003138/// Initialize a set of values that all satisfy the condition with C.
3139///
3140ConstantRange
3141ICmpInst::makeConstantRange(Predicate pred, const APInt &C) {
3142 APInt Lower(C);
3143 APInt Upper(C);
3144 uint32_t BitWidth = C.getBitWidth();
3145 switch (pred) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00003146 default: llvm_unreachable("Invalid ICmp opcode to ConstantRange ctor!");
Jakub Staszak773be0c2013-03-20 23:56:19 +00003147 case ICmpInst::ICMP_EQ: ++Upper; break;
3148 case ICmpInst::ICMP_NE: ++Lower; break;
Dan Gohmand86e2952010-01-26 16:04:20 +00003149 case ICmpInst::ICMP_ULT:
3150 Lower = APInt::getMinValue(BitWidth);
3151 // Check for an empty-set condition.
3152 if (Lower == Upper)
3153 return ConstantRange(BitWidth, /*isFullSet=*/false);
3154 break;
3155 case ICmpInst::ICMP_SLT:
3156 Lower = APInt::getSignedMinValue(BitWidth);
3157 // Check for an empty-set condition.
3158 if (Lower == Upper)
3159 return ConstantRange(BitWidth, /*isFullSet=*/false);
3160 break;
Reid Spencer0286bc12007-02-28 22:00:54 +00003161 case ICmpInst::ICMP_UGT:
Jakub Staszak773be0c2013-03-20 23:56:19 +00003162 ++Lower; Upper = APInt::getMinValue(BitWidth); // Min = Next(Max)
Dan Gohmand86e2952010-01-26 16:04:20 +00003163 // Check for an empty-set condition.
3164 if (Lower == Upper)
3165 return ConstantRange(BitWidth, /*isFullSet=*/false);
Reid Spencer0286bc12007-02-28 22:00:54 +00003166 break;
3167 case ICmpInst::ICMP_SGT:
Jakub Staszak773be0c2013-03-20 23:56:19 +00003168 ++Lower; Upper = APInt::getSignedMinValue(BitWidth); // Min = Next(Max)
Dan Gohmand86e2952010-01-26 16:04:20 +00003169 // Check for an empty-set condition.
3170 if (Lower == Upper)
3171 return ConstantRange(BitWidth, /*isFullSet=*/false);
Reid Spencer0286bc12007-02-28 22:00:54 +00003172 break;
3173 case ICmpInst::ICMP_ULE:
Jakub Staszak773be0c2013-03-20 23:56:19 +00003174 Lower = APInt::getMinValue(BitWidth); ++Upper;
Dan Gohmand86e2952010-01-26 16:04:20 +00003175 // Check for a full-set condition.
3176 if (Lower == Upper)
3177 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer0286bc12007-02-28 22:00:54 +00003178 break;
3179 case ICmpInst::ICMP_SLE:
Jakub Staszak773be0c2013-03-20 23:56:19 +00003180 Lower = APInt::getSignedMinValue(BitWidth); ++Upper;
Dan Gohmand86e2952010-01-26 16:04:20 +00003181 // Check for a full-set condition.
3182 if (Lower == Upper)
3183 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer0286bc12007-02-28 22:00:54 +00003184 break;
3185 case ICmpInst::ICMP_UGE:
3186 Upper = APInt::getMinValue(BitWidth); // Min = Next(Max)
Dan Gohmand86e2952010-01-26 16:04:20 +00003187 // Check for a full-set condition.
3188 if (Lower == Upper)
3189 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer0286bc12007-02-28 22:00:54 +00003190 break;
3191 case ICmpInst::ICMP_SGE:
3192 Upper = APInt::getSignedMinValue(BitWidth); // Min = Next(Max)
Dan Gohmand86e2952010-01-26 16:04:20 +00003193 // Check for a full-set condition.
3194 if (Lower == Upper)
3195 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer0286bc12007-02-28 22:00:54 +00003196 break;
3197 }
3198 return ConstantRange(Lower, Upper);
3199}
3200
Dan Gohman4e724382008-05-31 02:47:54 +00003201CmpInst::Predicate CmpInst::getSwappedPredicate(Predicate pred) {
Reid Spencerd9436b62006-11-20 01:22:35 +00003202 switch (pred) {
Craig Topperc514b542012-02-05 22:14:15 +00003203 default: llvm_unreachable("Unknown cmp predicate!");
Dan Gohman4e724382008-05-31 02:47:54 +00003204 case ICMP_EQ: case ICMP_NE:
3205 return pred;
3206 case ICMP_SGT: return ICMP_SLT;
3207 case ICMP_SLT: return ICMP_SGT;
3208 case ICMP_SGE: return ICMP_SLE;
3209 case ICMP_SLE: return ICMP_SGE;
3210 case ICMP_UGT: return ICMP_ULT;
3211 case ICMP_ULT: return ICMP_UGT;
3212 case ICMP_UGE: return ICMP_ULE;
3213 case ICMP_ULE: return ICMP_UGE;
3214
Reid Spencerd9436b62006-11-20 01:22:35 +00003215 case FCMP_FALSE: case FCMP_TRUE:
3216 case FCMP_OEQ: case FCMP_ONE:
3217 case FCMP_UEQ: case FCMP_UNE:
3218 case FCMP_ORD: case FCMP_UNO:
3219 return pred;
3220 case FCMP_OGT: return FCMP_OLT;
3221 case FCMP_OLT: return FCMP_OGT;
3222 case FCMP_OGE: return FCMP_OLE;
3223 case FCMP_OLE: return FCMP_OGE;
3224 case FCMP_UGT: return FCMP_ULT;
3225 case FCMP_ULT: return FCMP_UGT;
3226 case FCMP_UGE: return FCMP_ULE;
3227 case FCMP_ULE: return FCMP_UGE;
3228 }
3229}
3230
Reid Spencer266e42b2006-12-23 06:05:41 +00003231bool CmpInst::isUnsigned(unsigned short predicate) {
3232 switch (predicate) {
3233 default: return false;
3234 case ICmpInst::ICMP_ULT: case ICmpInst::ICMP_ULE: case ICmpInst::ICMP_UGT:
3235 case ICmpInst::ICMP_UGE: return true;
3236 }
3237}
3238
Nick Lewycky7494b3b2009-10-25 03:50:03 +00003239bool CmpInst::isSigned(unsigned short predicate) {
Reid Spencer266e42b2006-12-23 06:05:41 +00003240 switch (predicate) {
3241 default: return false;
3242 case ICmpInst::ICMP_SLT: case ICmpInst::ICMP_SLE: case ICmpInst::ICMP_SGT:
3243 case ICmpInst::ICMP_SGE: return true;
3244 }
3245}
3246
3247bool CmpInst::isOrdered(unsigned short predicate) {
3248 switch (predicate) {
3249 default: return false;
3250 case FCmpInst::FCMP_OEQ: case FCmpInst::FCMP_ONE: case FCmpInst::FCMP_OGT:
3251 case FCmpInst::FCMP_OLT: case FCmpInst::FCMP_OGE: case FCmpInst::FCMP_OLE:
3252 case FCmpInst::FCMP_ORD: return true;
3253 }
3254}
3255
3256bool CmpInst::isUnordered(unsigned short predicate) {
3257 switch (predicate) {
3258 default: return false;
3259 case FCmpInst::FCMP_UEQ: case FCmpInst::FCMP_UNE: case FCmpInst::FCMP_UGT:
3260 case FCmpInst::FCMP_ULT: case FCmpInst::FCMP_UGE: case FCmpInst::FCMP_ULE:
3261 case FCmpInst::FCMP_UNO: return true;
3262 }
3263}
3264
Nick Lewycky7494b3b2009-10-25 03:50:03 +00003265bool CmpInst::isTrueWhenEqual(unsigned short predicate) {
3266 switch(predicate) {
3267 default: return false;
3268 case ICMP_EQ: case ICMP_UGE: case ICMP_ULE: case ICMP_SGE: case ICMP_SLE:
3269 case FCMP_TRUE: case FCMP_UEQ: case FCMP_UGE: case FCMP_ULE: return true;
3270 }
3271}
3272
3273bool CmpInst::isFalseWhenEqual(unsigned short predicate) {
3274 switch(predicate) {
3275 case ICMP_NE: case ICMP_UGT: case ICMP_ULT: case ICMP_SGT: case ICMP_SLT:
3276 case FCMP_FALSE: case FCMP_ONE: case FCMP_OGT: case FCMP_OLT: return true;
3277 default: return false;
3278 }
3279}
3280
3281
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003282//===----------------------------------------------------------------------===//
3283// SwitchInst Implementation
3284//===----------------------------------------------------------------------===//
3285
Chris Lattnerbaf00152010-11-17 05:41:46 +00003286void SwitchInst::init(Value *Value, BasicBlock *Default, unsigned NumReserved) {
3287 assert(Value && Default && NumReserved);
3288 ReservedSpace = NumReserved;
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003289 NumOperands = 2;
Gabor Greiff6caff662008-05-10 08:32:32 +00003290 OperandList = allocHungoffUses(ReservedSpace);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003291
Gabor Greif2d3024d2008-05-26 21:33:52 +00003292 OperandList[0] = Value;
3293 OperandList[1] = Default;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003294}
3295
Chris Lattner2195fc42007-02-24 00:55:48 +00003296/// SwitchInst ctor - Create a new switch instruction, specifying a value to
3297/// switch on and a default destination. The number of additional cases can
3298/// be specified here to make memory allocation more efficient. This
3299/// constructor can also autoinsert before another instruction.
3300SwitchInst::SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
3301 Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +00003302 : TerminatorInst(Type::getVoidTy(Value->getContext()), Instruction::Switch,
Craig Topperc6207612014-04-09 06:08:46 +00003303 nullptr, 0, InsertBefore) {
Chris Lattnerbaf00152010-11-17 05:41:46 +00003304 init(Value, Default, 2+NumCases*2);
Chris Lattner2195fc42007-02-24 00:55:48 +00003305}
3306
3307/// SwitchInst ctor - Create a new switch instruction, specifying a value to
3308/// switch on and a default destination. The number of additional cases can
3309/// be specified here to make memory allocation more efficient. This
3310/// constructor also autoinserts at the end of the specified BasicBlock.
3311SwitchInst::SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
3312 BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +00003313 : TerminatorInst(Type::getVoidTy(Value->getContext()), Instruction::Switch,
Craig Topperc6207612014-04-09 06:08:46 +00003314 nullptr, 0, InsertAtEnd) {
Chris Lattnerbaf00152010-11-17 05:41:46 +00003315 init(Value, Default, 2+NumCases*2);
Chris Lattner2195fc42007-02-24 00:55:48 +00003316}
3317
Misha Brukmanb1c93172005-04-21 23:48:37 +00003318SwitchInst::SwitchInst(const SwitchInst &SI)
Craig Topperc6207612014-04-09 06:08:46 +00003319 : TerminatorInst(SI.getType(), Instruction::Switch, nullptr, 0) {
Chris Lattnerbaf00152010-11-17 05:41:46 +00003320 init(SI.getCondition(), SI.getDefaultDest(), SI.getNumOperands());
3321 NumOperands = SI.getNumOperands();
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003322 Use *OL = OperandList, *InOL = SI.OperandList;
Chris Lattnerbaf00152010-11-17 05:41:46 +00003323 for (unsigned i = 2, E = SI.getNumOperands(); i != E; i += 2) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00003324 OL[i] = InOL[i];
3325 OL[i+1] = InOL[i+1];
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003326 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003327 SubclassOptionalData = SI.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003328}
3329
Gordon Henriksen14a55692007-12-10 02:14:30 +00003330SwitchInst::~SwitchInst() {
Jay Foadbbb91f22011-01-16 15:30:52 +00003331 dropHungoffUses();
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003332}
3333
3334
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003335/// addCase - Add an entry to the switch instruction...
3336///
Chris Lattner47ac1872005-02-24 05:32:09 +00003337void SwitchInst::addCase(ConstantInt *OnVal, BasicBlock *Dest) {
Stepan Dyatkovskiy513aaa52012-02-01 07:49:51 +00003338 unsigned NewCaseIdx = getNumCases();
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003339 unsigned OpNo = NumOperands;
3340 if (OpNo+2 > ReservedSpace)
Jay Foade98f29d2011-04-01 08:00:58 +00003341 growOperands(); // Get more space!
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003342 // Initialize some new operands.
Chris Lattnerf711f8d2005-01-29 01:05:12 +00003343 assert(OpNo+1 < ReservedSpace && "Growing didn't work!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003344 NumOperands = OpNo+2;
Bob Wilsone4077362013-09-09 19:14:35 +00003345 CaseIt Case(this, NewCaseIdx);
3346 Case.setValue(OnVal);
Stepan Dyatkovskiy5b648af2012-03-08 07:06:20 +00003347 Case.setSuccessor(Dest);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003348}
3349
Stepan Dyatkovskiy513aaa52012-02-01 07:49:51 +00003350/// removeCase - This method removes the specified case and its successor
3351/// from the switch instruction.
Bob Wilsone4077362013-09-09 19:14:35 +00003352void SwitchInst::removeCase(CaseIt i) {
Stepan Dyatkovskiy5b648af2012-03-08 07:06:20 +00003353 unsigned idx = i.getCaseIndex();
3354
Stepan Dyatkovskiy513aaa52012-02-01 07:49:51 +00003355 assert(2 + idx*2 < getNumOperands() && "Case index out of range!!!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003356
3357 unsigned NumOps = getNumOperands();
3358 Use *OL = OperandList;
3359
Jay Foad14277722011-02-01 09:22:34 +00003360 // Overwrite this case with the end of the list.
Stepan Dyatkovskiy513aaa52012-02-01 07:49:51 +00003361 if (2 + (idx + 1) * 2 != NumOps) {
3362 OL[2 + idx * 2] = OL[NumOps - 2];
3363 OL[2 + idx * 2 + 1] = OL[NumOps - 1];
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003364 }
3365
3366 // Nuke the last value.
Craig Topperc6207612014-04-09 06:08:46 +00003367 OL[NumOps-2].set(nullptr);
3368 OL[NumOps-2+1].set(nullptr);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003369 NumOperands = NumOps-2;
3370}
3371
Jay Foade98f29d2011-04-01 08:00:58 +00003372/// growOperands - grow operands - This grows the operand list in response
3373/// to a push_back style of operation. This grows the number of ops by 3 times.
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003374///
Jay Foade98f29d2011-04-01 08:00:58 +00003375void SwitchInst::growOperands() {
Gabor Greiff6caff662008-05-10 08:32:32 +00003376 unsigned e = getNumOperands();
Jay Foade98f29d2011-04-01 08:00:58 +00003377 unsigned NumOps = e*3;
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003378
3379 ReservedSpace = NumOps;
Gabor Greiff6caff662008-05-10 08:32:32 +00003380 Use *NewOps = allocHungoffUses(NumOps);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003381 Use *OldOps = OperandList;
Gabor Greiff6caff662008-05-10 08:32:32 +00003382 for (unsigned i = 0; i != e; ++i) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00003383 NewOps[i] = OldOps[i];
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003384 }
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003385 OperandList = NewOps;
Jay Foadbbb91f22011-01-16 15:30:52 +00003386 Use::zap(OldOps, OldOps + e, true);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003387}
3388
3389
3390BasicBlock *SwitchInst::getSuccessorV(unsigned idx) const {
3391 return getSuccessor(idx);
3392}
3393unsigned SwitchInst::getNumSuccessorsV() const {
3394 return getNumSuccessors();
3395}
3396void SwitchInst::setSuccessorV(unsigned idx, BasicBlock *B) {
3397 setSuccessor(idx, B);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003398}
Chris Lattnerf22be932004-10-15 23:52:53 +00003399
Chris Lattner3ed871f2009-10-27 19:13:16 +00003400//===----------------------------------------------------------------------===//
Jay Foadbbb91f22011-01-16 15:30:52 +00003401// IndirectBrInst Implementation
Chris Lattner3ed871f2009-10-27 19:13:16 +00003402//===----------------------------------------------------------------------===//
3403
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003404void IndirectBrInst::init(Value *Address, unsigned NumDests) {
Duncan Sands19d0b472010-02-16 11:11:14 +00003405 assert(Address && Address->getType()->isPointerTy() &&
Chris Lattner6747b4c2009-10-29 05:53:32 +00003406 "Address of indirectbr must be a pointer");
Chris Lattner3ed871f2009-10-27 19:13:16 +00003407 ReservedSpace = 1+NumDests;
3408 NumOperands = 1;
3409 OperandList = allocHungoffUses(ReservedSpace);
3410
3411 OperandList[0] = Address;
3412}
3413
3414
Jay Foade98f29d2011-04-01 08:00:58 +00003415/// growOperands - grow operands - This grows the operand list in response
3416/// to a push_back style of operation. This grows the number of ops by 2 times.
Chris Lattner3ed871f2009-10-27 19:13:16 +00003417///
Jay Foade98f29d2011-04-01 08:00:58 +00003418void IndirectBrInst::growOperands() {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003419 unsigned e = getNumOperands();
Jay Foade98f29d2011-04-01 08:00:58 +00003420 unsigned NumOps = e*2;
Chris Lattner3ed871f2009-10-27 19:13:16 +00003421
3422 ReservedSpace = NumOps;
3423 Use *NewOps = allocHungoffUses(NumOps);
3424 Use *OldOps = OperandList;
3425 for (unsigned i = 0; i != e; ++i)
3426 NewOps[i] = OldOps[i];
3427 OperandList = NewOps;
Jay Foadbbb91f22011-01-16 15:30:52 +00003428 Use::zap(OldOps, OldOps + e, true);
Chris Lattner3ed871f2009-10-27 19:13:16 +00003429}
3430
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003431IndirectBrInst::IndirectBrInst(Value *Address, unsigned NumCases,
3432 Instruction *InsertBefore)
3433: TerminatorInst(Type::getVoidTy(Address->getContext()),Instruction::IndirectBr,
Craig Topperc6207612014-04-09 06:08:46 +00003434 nullptr, 0, InsertBefore) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003435 init(Address, NumCases);
3436}
3437
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003438IndirectBrInst::IndirectBrInst(Value *Address, unsigned NumCases,
3439 BasicBlock *InsertAtEnd)
3440: TerminatorInst(Type::getVoidTy(Address->getContext()),Instruction::IndirectBr,
Craig Topperc6207612014-04-09 06:08:46 +00003441 nullptr, 0, InsertAtEnd) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003442 init(Address, NumCases);
3443}
3444
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003445IndirectBrInst::IndirectBrInst(const IndirectBrInst &IBI)
3446 : TerminatorInst(Type::getVoidTy(IBI.getContext()), Instruction::IndirectBr,
Chris Lattner3ed871f2009-10-27 19:13:16 +00003447 allocHungoffUses(IBI.getNumOperands()),
3448 IBI.getNumOperands()) {
3449 Use *OL = OperandList, *InOL = IBI.OperandList;
3450 for (unsigned i = 0, E = IBI.getNumOperands(); i != E; ++i)
3451 OL[i] = InOL[i];
3452 SubclassOptionalData = IBI.SubclassOptionalData;
3453}
3454
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003455IndirectBrInst::~IndirectBrInst() {
Jay Foadbbb91f22011-01-16 15:30:52 +00003456 dropHungoffUses();
Chris Lattner3ed871f2009-10-27 19:13:16 +00003457}
3458
3459/// addDestination - Add a destination.
3460///
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003461void IndirectBrInst::addDestination(BasicBlock *DestBB) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003462 unsigned OpNo = NumOperands;
3463 if (OpNo+1 > ReservedSpace)
Jay Foade98f29d2011-04-01 08:00:58 +00003464 growOperands(); // Get more space!
Chris Lattner3ed871f2009-10-27 19:13:16 +00003465 // Initialize some new operands.
3466 assert(OpNo < ReservedSpace && "Growing didn't work!");
3467 NumOperands = OpNo+1;
3468 OperandList[OpNo] = DestBB;
3469}
3470
3471/// removeDestination - This method removes the specified successor from the
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003472/// indirectbr instruction.
3473void IndirectBrInst::removeDestination(unsigned idx) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003474 assert(idx < getNumOperands()-1 && "Successor index out of range!");
3475
3476 unsigned NumOps = getNumOperands();
3477 Use *OL = OperandList;
3478
3479 // Replace this value with the last one.
3480 OL[idx+1] = OL[NumOps-1];
3481
3482 // Nuke the last value.
Craig Topperc6207612014-04-09 06:08:46 +00003483 OL[NumOps-1].set(nullptr);
Chris Lattner3ed871f2009-10-27 19:13:16 +00003484 NumOperands = NumOps-1;
3485}
3486
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003487BasicBlock *IndirectBrInst::getSuccessorV(unsigned idx) const {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003488 return getSuccessor(idx);
3489}
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003490unsigned IndirectBrInst::getNumSuccessorsV() const {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003491 return getNumSuccessors();
3492}
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003493void IndirectBrInst::setSuccessorV(unsigned idx, BasicBlock *B) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003494 setSuccessor(idx, B);
3495}
3496
3497//===----------------------------------------------------------------------===//
Devang Patel11cf3f42009-10-27 22:16:29 +00003498// clone_impl() implementations
Chris Lattner3ed871f2009-10-27 19:13:16 +00003499//===----------------------------------------------------------------------===//
3500
Chris Lattnerf22be932004-10-15 23:52:53 +00003501// Define these methods here so vtables don't get emitted into every translation
3502// unit that uses these classes.
3503
Devang Patel11cf3f42009-10-27 22:16:29 +00003504GetElementPtrInst *GetElementPtrInst::clone_impl() const {
3505 return new (getNumOperands()) GetElementPtrInst(*this);
Chris Lattnerf22be932004-10-15 23:52:53 +00003506}
3507
Devang Patel11cf3f42009-10-27 22:16:29 +00003508BinaryOperator *BinaryOperator::clone_impl() const {
3509 return Create(getOpcode(), Op<0>(), Op<1>());
Chris Lattnerf22be932004-10-15 23:52:53 +00003510}
3511
Devang Patel11cf3f42009-10-27 22:16:29 +00003512FCmpInst* FCmpInst::clone_impl() const {
3513 return new FCmpInst(getPredicate(), Op<0>(), Op<1>());
Reid Spencerd9436b62006-11-20 01:22:35 +00003514}
3515
Devang Patel11cf3f42009-10-27 22:16:29 +00003516ICmpInst* ICmpInst::clone_impl() const {
3517 return new ICmpInst(getPredicate(), Op<0>(), Op<1>());
Dan Gohman0752bff2008-05-23 00:36:11 +00003518}
3519
Devang Patel11cf3f42009-10-27 22:16:29 +00003520ExtractValueInst *ExtractValueInst::clone_impl() const {
3521 return new ExtractValueInst(*this);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003522}
3523
Devang Patel11cf3f42009-10-27 22:16:29 +00003524InsertValueInst *InsertValueInst::clone_impl() const {
3525 return new InsertValueInst(*this);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003526}
3527
Devang Patel11cf3f42009-10-27 22:16:29 +00003528AllocaInst *AllocaInst::clone_impl() const {
David Majnemer6b3244c2014-04-30 16:12:21 +00003529 AllocaInst *Result = new AllocaInst(getAllocatedType(),
3530 (Value *)getOperand(0), getAlignment());
3531 Result->setUsedWithInAlloca(isUsedWithInAlloca());
3532 return Result;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003533}
3534
Devang Patel11cf3f42009-10-27 22:16:29 +00003535LoadInst *LoadInst::clone_impl() const {
Eli Friedman59b66882011-08-09 23:02:53 +00003536 return new LoadInst(getOperand(0), Twine(), isVolatile(),
3537 getAlignment(), getOrdering(), getSynchScope());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003538}
3539
Devang Patel11cf3f42009-10-27 22:16:29 +00003540StoreInst *StoreInst::clone_impl() const {
Eli Friedmancad9f2a2011-08-10 17:39:11 +00003541 return new StoreInst(getOperand(0), getOperand(1), isVolatile(),
Eli Friedman59b66882011-08-09 23:02:53 +00003542 getAlignment(), getOrdering(), getSynchScope());
3543
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003544}
3545
Eli Friedmanc9a551e2011-07-28 21:48:00 +00003546AtomicCmpXchgInst *AtomicCmpXchgInst::clone_impl() const {
3547 AtomicCmpXchgInst *Result =
3548 new AtomicCmpXchgInst(getOperand(0), getOperand(1), getOperand(2),
Tim Northovere94a5182014-03-11 10:48:52 +00003549 getSuccessOrdering(), getFailureOrdering(),
3550 getSynchScope());
Eli Friedmanc9a551e2011-07-28 21:48:00 +00003551 Result->setVolatile(isVolatile());
Tim Northover420a2162014-06-13 14:24:07 +00003552 Result->setWeak(isWeak());
Eli Friedmanc9a551e2011-07-28 21:48:00 +00003553 return Result;
3554}
3555
3556AtomicRMWInst *AtomicRMWInst::clone_impl() const {
3557 AtomicRMWInst *Result =
3558 new AtomicRMWInst(getOperation(),getOperand(0), getOperand(1),
3559 getOrdering(), getSynchScope());
3560 Result->setVolatile(isVolatile());
3561 return Result;
3562}
3563
Eli Friedmanfee02c62011-07-25 23:16:38 +00003564FenceInst *FenceInst::clone_impl() const {
3565 return new FenceInst(getContext(), getOrdering(), getSynchScope());
3566}
3567
Devang Patel11cf3f42009-10-27 22:16:29 +00003568TruncInst *TruncInst::clone_impl() const {
3569 return new TruncInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003570}
3571
Devang Patel11cf3f42009-10-27 22:16:29 +00003572ZExtInst *ZExtInst::clone_impl() const {
3573 return new ZExtInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003574}
3575
Devang Patel11cf3f42009-10-27 22:16:29 +00003576SExtInst *SExtInst::clone_impl() const {
3577 return new SExtInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003578}
3579
Devang Patel11cf3f42009-10-27 22:16:29 +00003580FPTruncInst *FPTruncInst::clone_impl() const {
3581 return new FPTruncInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003582}
3583
Devang Patel11cf3f42009-10-27 22:16:29 +00003584FPExtInst *FPExtInst::clone_impl() const {
3585 return new FPExtInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003586}
3587
Devang Patel11cf3f42009-10-27 22:16:29 +00003588UIToFPInst *UIToFPInst::clone_impl() const {
3589 return new UIToFPInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003590}
3591
Devang Patel11cf3f42009-10-27 22:16:29 +00003592SIToFPInst *SIToFPInst::clone_impl() const {
3593 return new SIToFPInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003594}
3595
Devang Patel11cf3f42009-10-27 22:16:29 +00003596FPToUIInst *FPToUIInst::clone_impl() const {
3597 return new FPToUIInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003598}
3599
Devang Patel11cf3f42009-10-27 22:16:29 +00003600FPToSIInst *FPToSIInst::clone_impl() const {
3601 return new FPToSIInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003602}
3603
Devang Patel11cf3f42009-10-27 22:16:29 +00003604PtrToIntInst *PtrToIntInst::clone_impl() const {
3605 return new PtrToIntInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003606}
3607
Devang Patel11cf3f42009-10-27 22:16:29 +00003608IntToPtrInst *IntToPtrInst::clone_impl() const {
3609 return new IntToPtrInst(getOperand(0), getType());
Gabor Greif697e94c2008-05-15 10:04:30 +00003610}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003611
Devang Patel11cf3f42009-10-27 22:16:29 +00003612BitCastInst *BitCastInst::clone_impl() const {
3613 return new BitCastInst(getOperand(0), getType());
Gabor Greif697e94c2008-05-15 10:04:30 +00003614}
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003615
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00003616AddrSpaceCastInst *AddrSpaceCastInst::clone_impl() const {
3617 return new AddrSpaceCastInst(getOperand(0), getType());
3618}
3619
Devang Patel11cf3f42009-10-27 22:16:29 +00003620CallInst *CallInst::clone_impl() const {
3621 return new(getNumOperands()) CallInst(*this);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003622}
3623
Devang Patel11cf3f42009-10-27 22:16:29 +00003624SelectInst *SelectInst::clone_impl() const {
3625 return SelectInst::Create(getOperand(0), getOperand(1), getOperand(2));
Chris Lattnerbbe0a422006-04-08 01:18:18 +00003626}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003627
Devang Patel11cf3f42009-10-27 22:16:29 +00003628VAArgInst *VAArgInst::clone_impl() const {
3629 return new VAArgInst(getOperand(0), getType());
Chris Lattnerbbe0a422006-04-08 01:18:18 +00003630}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003631
Devang Patel11cf3f42009-10-27 22:16:29 +00003632ExtractElementInst *ExtractElementInst::clone_impl() const {
3633 return ExtractElementInst::Create(getOperand(0), getOperand(1));
Chris Lattnerbbe0a422006-04-08 01:18:18 +00003634}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003635
Devang Patel11cf3f42009-10-27 22:16:29 +00003636InsertElementInst *InsertElementInst::clone_impl() const {
Chris Lattner1dcb6542012-01-25 23:49:49 +00003637 return InsertElementInst::Create(getOperand(0), getOperand(1), getOperand(2));
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003638}
3639
Devang Patel11cf3f42009-10-27 22:16:29 +00003640ShuffleVectorInst *ShuffleVectorInst::clone_impl() const {
Chris Lattner1dcb6542012-01-25 23:49:49 +00003641 return new ShuffleVectorInst(getOperand(0), getOperand(1), getOperand(2));
Gabor Greif697e94c2008-05-15 10:04:30 +00003642}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003643
Devang Patel11cf3f42009-10-27 22:16:29 +00003644PHINode *PHINode::clone_impl() const {
3645 return new PHINode(*this);
3646}
3647
Bill Wendlingfae14752011-08-12 20:24:12 +00003648LandingPadInst *LandingPadInst::clone_impl() const {
3649 return new LandingPadInst(*this);
3650}
3651
Devang Patel11cf3f42009-10-27 22:16:29 +00003652ReturnInst *ReturnInst::clone_impl() const {
3653 return new(getNumOperands()) ReturnInst(*this);
3654}
3655
3656BranchInst *BranchInst::clone_impl() const {
Jay Foadd81f3c92011-01-07 20:29:02 +00003657 return new(getNumOperands()) BranchInst(*this);
Gabor Greif697e94c2008-05-15 10:04:30 +00003658}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003659
Devang Patel11cf3f42009-10-27 22:16:29 +00003660SwitchInst *SwitchInst::clone_impl() const {
3661 return new SwitchInst(*this);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003662}
3663
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003664IndirectBrInst *IndirectBrInst::clone_impl() const {
3665 return new IndirectBrInst(*this);
Chris Lattner3ed871f2009-10-27 19:13:16 +00003666}
3667
3668
Devang Patel11cf3f42009-10-27 22:16:29 +00003669InvokeInst *InvokeInst::clone_impl() const {
3670 return new(getNumOperands()) InvokeInst(*this);
Gabor Greif697e94c2008-05-15 10:04:30 +00003671}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003672
Bill Wendlingf891bf82011-07-31 06:30:59 +00003673ResumeInst *ResumeInst::clone_impl() const {
3674 return new(1) ResumeInst(*this);
3675}
3676
Devang Patel11cf3f42009-10-27 22:16:29 +00003677UnreachableInst *UnreachableInst::clone_impl() const {
Nick Lewycky42fb7452009-09-27 07:38:41 +00003678 LLVMContext &Context = getContext();
Devang Patel11cf3f42009-10-27 22:16:29 +00003679 return new UnreachableInst(Context);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003680}