blob: be32dee06381ea979204a9aa020296848d014017 [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
Michael Gottesman41748d72013-06-27 00:25:01 +0000349bool CallInst::hasFnAttrImpl(Attribute::AttrKind A) const {
Bill Wendling749a43d2012-12-30 13:50:49 +0000350 if (AttributeList.hasAttribute(AttributeSet::FunctionIndex, A))
Bill Wendling375eb1f2012-10-09 00:28:54 +0000351 return true;
352 if (const Function *F = getCalledFunction())
Bill Wendling94dcaf82012-12-30 12:45:13 +0000353 return F->getAttributes().hasAttribute(AttributeSet::FunctionIndex, A);
Bill Wendling375eb1f2012-10-09 00:28:54 +0000354 return false;
355}
356
Bill Wendlingc79e42c2012-12-22 00:37:52 +0000357bool CallInst::paramHasAttr(unsigned i, Attribute::AttrKind A) const {
Bill Wendling749a43d2012-12-30 13:50:49 +0000358 if (AttributeList.hasAttribute(i, A))
Bill Wendling8baa61d2012-10-03 17:54:26 +0000359 return true;
360 if (const Function *F = getCalledFunction())
Bill Wendling94dcaf82012-12-30 12:45:13 +0000361 return F->getAttributes().hasAttribute(i, A);
Bill Wendlingdaf8e382012-10-04 07:18:12 +0000362 return false;
363}
364
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000365/// IsConstantOne - Return true only if val is constant int 1
366static bool IsConstantOne(Value *val) {
367 assert(val && "IsConstantOne does not work with NULL val");
368 return isa<ConstantInt>(val) && cast<ConstantInt>(val)->isOne();
369}
370
Nick Lewyckybb1410e2009-10-17 23:52:26 +0000371static Instruction *createMalloc(Instruction *InsertBefore,
Chris Lattner229907c2011-07-18 04:54:35 +0000372 BasicBlock *InsertAtEnd, Type *IntPtrTy,
373 Type *AllocTy, Value *AllocSize,
Victor Hernandezf3db9152009-11-07 00:16:28 +0000374 Value *ArraySize, Function *MallocF,
375 const Twine &Name) {
Benjamin Kramer4bf4e862009-09-10 11:31:39 +0000376 assert(((!InsertBefore && InsertAtEnd) || (InsertBefore && !InsertAtEnd)) &&
Victor Hernandez788eaab2009-09-18 19:20:02 +0000377 "createMalloc needs either InsertBefore or InsertAtEnd");
378
379 // malloc(type) becomes:
380 // bitcast (i8* malloc(typeSize)) to type*
381 // malloc(type, arraySize) becomes:
382 // bitcast (i8 *malloc(typeSize*arraySize)) to type*
Victor Hernandezf3db9152009-11-07 00:16:28 +0000383 if (!ArraySize)
384 ArraySize = ConstantInt::get(IntPtrTy, 1);
385 else if (ArraySize->getType() != IntPtrTy) {
386 if (InsertBefore)
Victor Hernandeze04ed0c2009-11-07 00:36:50 +0000387 ArraySize = CastInst::CreateIntegerCast(ArraySize, IntPtrTy, false,
388 "", InsertBefore);
Victor Hernandezf3db9152009-11-07 00:16:28 +0000389 else
Victor Hernandeze04ed0c2009-11-07 00:36:50 +0000390 ArraySize = CastInst::CreateIntegerCast(ArraySize, IntPtrTy, false,
391 "", InsertAtEnd);
Victor Hernandezf3db9152009-11-07 00:16:28 +0000392 }
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000393
Benjamin Kramer4bf4e862009-09-10 11:31:39 +0000394 if (!IsConstantOne(ArraySize)) {
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000395 if (IsConstantOne(AllocSize)) {
396 AllocSize = ArraySize; // Operand * 1 = Operand
397 } else if (Constant *CO = dyn_cast<Constant>(ArraySize)) {
398 Constant *Scale = ConstantExpr::getIntegerCast(CO, IntPtrTy,
399 false /*ZExt*/);
400 // Malloc arg is constant product of type size and array size
401 AllocSize = ConstantExpr::getMul(Scale, cast<Constant>(AllocSize));
402 } else {
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000403 // Multiply type size by the array size...
404 if (InsertBefore)
Victor Hernandez788eaab2009-09-18 19:20:02 +0000405 AllocSize = BinaryOperator::CreateMul(ArraySize, AllocSize,
406 "mallocsize", InsertBefore);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000407 else
Victor Hernandez788eaab2009-09-18 19:20:02 +0000408 AllocSize = BinaryOperator::CreateMul(ArraySize, AllocSize,
409 "mallocsize", InsertAtEnd);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000410 }
Benjamin Kramer4bf4e862009-09-10 11:31:39 +0000411 }
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000412
Victor Hernandez788eaab2009-09-18 19:20:02 +0000413 assert(AllocSize->getType() == IntPtrTy && "malloc arg is wrong size");
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000414 // Create the call to Malloc.
415 BasicBlock* BB = InsertBefore ? InsertBefore->getParent() : InsertAtEnd;
416 Module* M = BB->getParent()->getParent();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000417 Type *BPTy = Type::getInt8PtrTy(BB->getContext());
Victor Hernandezbb336a12009-11-10 19:53:28 +0000418 Value *MallocFunc = MallocF;
419 if (!MallocFunc)
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000420 // prototype malloc as "void *malloc(size_t)"
Victor Hernandezbb336a12009-11-10 19:53:28 +0000421 MallocFunc = M->getOrInsertFunction("malloc", BPTy, IntPtrTy, NULL);
Chris Lattner229907c2011-07-18 04:54:35 +0000422 PointerType *AllocPtrType = PointerType::getUnqual(AllocTy);
Craig Topperc6207612014-04-09 06:08:46 +0000423 CallInst *MCall = nullptr;
424 Instruction *Result = nullptr;
Victor Hernandez788eaab2009-09-18 19:20:02 +0000425 if (InsertBefore) {
Victor Hernandezbb336a12009-11-10 19:53:28 +0000426 MCall = CallInst::Create(MallocFunc, AllocSize, "malloccall", InsertBefore);
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000427 Result = MCall;
428 if (Result->getType() != AllocPtrType)
429 // Create a cast instruction to convert to the right type...
Victor Hernandezf3db9152009-11-07 00:16:28 +0000430 Result = new BitCastInst(MCall, AllocPtrType, Name, InsertBefore);
Victor Hernandez788eaab2009-09-18 19:20:02 +0000431 } else {
Victor Hernandezbb336a12009-11-10 19:53:28 +0000432 MCall = CallInst::Create(MallocFunc, AllocSize, "malloccall");
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000433 Result = MCall;
434 if (Result->getType() != AllocPtrType) {
435 InsertAtEnd->getInstList().push_back(MCall);
436 // Create a cast instruction to convert to the right type...
Victor Hernandezf3db9152009-11-07 00:16:28 +0000437 Result = new BitCastInst(MCall, AllocPtrType, Name);
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000438 }
Victor Hernandez788eaab2009-09-18 19:20:02 +0000439 }
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000440 MCall->setTailCall();
Victor Hernandezbb336a12009-11-10 19:53:28 +0000441 if (Function *F = dyn_cast<Function>(MallocFunc)) {
442 MCall->setCallingConv(F->getCallingConv());
443 if (!F->doesNotAlias(0)) F->setDoesNotAlias(0);
444 }
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000445 assert(!MCall->getType()->isVoidTy() && "Malloc has void return type");
Victor Hernandez788eaab2009-09-18 19:20:02 +0000446
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000447 return Result;
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000448}
449
450/// CreateMalloc - Generate the IR for a call to malloc:
451/// 1. Compute the malloc call's argument as the specified type's size,
452/// possibly multiplied by the array size if the array size is not
453/// constant 1.
454/// 2. Call malloc with that argument.
455/// 3. Bitcast the result of the malloc call to the specified type.
Nick Lewyckybb1410e2009-10-17 23:52:26 +0000456Instruction *CallInst::CreateMalloc(Instruction *InsertBefore,
Chris Lattner229907c2011-07-18 04:54:35 +0000457 Type *IntPtrTy, Type *AllocTy,
Victor Hernandezf3db9152009-11-07 00:16:28 +0000458 Value *AllocSize, Value *ArraySize,
Duncan Sands41b4a6b2010-07-12 08:16:59 +0000459 Function * MallocF,
Victor Hernandezf3db9152009-11-07 00:16:28 +0000460 const Twine &Name) {
Craig Topperc6207612014-04-09 06:08:46 +0000461 return createMalloc(InsertBefore, nullptr, IntPtrTy, AllocTy, AllocSize,
Chris Lattner601e390a2010-07-12 00:57:28 +0000462 ArraySize, MallocF, Name);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000463}
464
465/// CreateMalloc - Generate the IR for a call to malloc:
466/// 1. Compute the malloc call's argument as the specified type's size,
467/// possibly multiplied by the array size if the array size is not
468/// constant 1.
469/// 2. Call malloc with that argument.
470/// 3. Bitcast the result of the malloc call to the specified type.
471/// Note: This function does not add the bitcast to the basic block, that is the
472/// responsibility of the caller.
Nick Lewyckybb1410e2009-10-17 23:52:26 +0000473Instruction *CallInst::CreateMalloc(BasicBlock *InsertAtEnd,
Chris Lattner229907c2011-07-18 04:54:35 +0000474 Type *IntPtrTy, Type *AllocTy,
Victor Hernandezf3db9152009-11-07 00:16:28 +0000475 Value *AllocSize, Value *ArraySize,
476 Function *MallocF, const Twine &Name) {
Craig Topperc6207612014-04-09 06:08:46 +0000477 return createMalloc(nullptr, InsertAtEnd, IntPtrTy, AllocTy, AllocSize,
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000478 ArraySize, MallocF, Name);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000479}
Duncan Sands5208d1a2007-11-28 17:07:01 +0000480
Victor Hernandeze2971492009-10-24 04:23:03 +0000481static Instruction* createFree(Value* Source, Instruction *InsertBefore,
482 BasicBlock *InsertAtEnd) {
483 assert(((!InsertBefore && InsertAtEnd) || (InsertBefore && !InsertAtEnd)) &&
484 "createFree needs either InsertBefore or InsertAtEnd");
Duncan Sands19d0b472010-02-16 11:11:14 +0000485 assert(Source->getType()->isPointerTy() &&
Victor Hernandeze2971492009-10-24 04:23:03 +0000486 "Can not free something of nonpointer type!");
487
488 BasicBlock* BB = InsertBefore ? InsertBefore->getParent() : InsertAtEnd;
489 Module* M = BB->getParent()->getParent();
490
Chris Lattner229907c2011-07-18 04:54:35 +0000491 Type *VoidTy = Type::getVoidTy(M->getContext());
492 Type *IntPtrTy = Type::getInt8PtrTy(M->getContext());
Victor Hernandeze2971492009-10-24 04:23:03 +0000493 // prototype free as "void free(void*)"
Chris Lattner2156c222009-11-09 07:12:01 +0000494 Value *FreeFunc = M->getOrInsertFunction("free", VoidTy, IntPtrTy, NULL);
Craig Topperc6207612014-04-09 06:08:46 +0000495 CallInst* Result = nullptr;
Victor Hernandeze2971492009-10-24 04:23:03 +0000496 Value *PtrCast = Source;
497 if (InsertBefore) {
498 if (Source->getType() != IntPtrTy)
499 PtrCast = new BitCastInst(Source, IntPtrTy, "", InsertBefore);
500 Result = CallInst::Create(FreeFunc, PtrCast, "", InsertBefore);
501 } else {
502 if (Source->getType() != IntPtrTy)
503 PtrCast = new BitCastInst(Source, IntPtrTy, "", InsertAtEnd);
504 Result = CallInst::Create(FreeFunc, PtrCast, "");
505 }
506 Result->setTailCall();
Chris Lattner2156c222009-11-09 07:12:01 +0000507 if (Function *F = dyn_cast<Function>(FreeFunc))
508 Result->setCallingConv(F->getCallingConv());
Victor Hernandeze2971492009-10-24 04:23:03 +0000509
510 return Result;
511}
512
513/// CreateFree - Generate the IR for a call to the builtin free function.
Chris Lattner601e390a2010-07-12 00:57:28 +0000514Instruction * CallInst::CreateFree(Value* Source, Instruction *InsertBefore) {
Craig Topperc6207612014-04-09 06:08:46 +0000515 return createFree(Source, InsertBefore, nullptr);
Victor Hernandeze2971492009-10-24 04:23:03 +0000516}
517
518/// CreateFree - Generate the IR for a call to the builtin free function.
519/// Note: This function does not add the call to the basic block, that is the
520/// responsibility of the caller.
521Instruction* CallInst::CreateFree(Value* Source, BasicBlock *InsertAtEnd) {
Craig Topperc6207612014-04-09 06:08:46 +0000522 Instruction* FreeCall = createFree(Source, nullptr, InsertAtEnd);
Victor Hernandeze2971492009-10-24 04:23:03 +0000523 assert(FreeCall && "CreateFree did not create a CallInst");
524 return FreeCall;
525}
526
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000527//===----------------------------------------------------------------------===//
528// InvokeInst Implementation
529//===----------------------------------------------------------------------===//
530
531void InvokeInst::init(Value *Fn, BasicBlock *IfNormal, BasicBlock *IfException,
Jay Foad5bd375a2011-07-15 08:37:34 +0000532 ArrayRef<Value *> Args, const Twine &NameStr) {
533 assert(NumOperands == 3 + Args.size() && "NumOperands not set up?");
Gabor Greifa2fbc0a2010-03-24 13:21:49 +0000534 Op<-3>() = Fn;
535 Op<-2>() = IfNormal;
536 Op<-1>() = IfException;
Jay Foad5bd375a2011-07-15 08:37:34 +0000537
538#ifndef NDEBUG
Chris Lattner229907c2011-07-18 04:54:35 +0000539 FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000540 cast<FunctionType>(cast<PointerType>(Fn->getType())->getElementType());
Misha Brukmanb1c93172005-04-21 23:48:37 +0000541
Jay Foad5bd375a2011-07-15 08:37:34 +0000542 assert(((Args.size() == FTy->getNumParams()) ||
543 (FTy->isVarArg() && Args.size() > FTy->getNumParams())) &&
Gabor Greif668d7002010-03-23 13:45:54 +0000544 "Invoking a function with bad signature");
Misha Brukmanb1c93172005-04-21 23:48:37 +0000545
Jay Foad5bd375a2011-07-15 08:37:34 +0000546 for (unsigned i = 0, e = Args.size(); i != e; i++)
Chris Lattner667a0562006-05-03 00:48:22 +0000547 assert((i >= FTy->getNumParams() ||
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000548 FTy->getParamType(i) == Args[i]->getType()) &&
Chris Lattner667a0562006-05-03 00:48:22 +0000549 "Invoking a function with a bad signature!");
Jay Foad5bd375a2011-07-15 08:37:34 +0000550#endif
551
552 std::copy(Args.begin(), Args.end(), op_begin());
553 setName(NameStr);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000554}
555
Misha Brukmanb1c93172005-04-21 23:48:37 +0000556InvokeInst::InvokeInst(const InvokeInst &II)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000557 : TerminatorInst(II.getType(), Instruction::Invoke,
Gabor Greif697e94c2008-05-15 10:04:30 +0000558 OperandTraits<InvokeInst>::op_end(this)
559 - II.getNumOperands(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000560 II.getNumOperands()) {
Devang Patel4c758ea2008-09-25 21:00:45 +0000561 setAttributes(II.getAttributes());
Chris Lattnerb9c86512009-12-29 02:14:09 +0000562 setCallingConv(II.getCallingConv());
Jay Foad5bd375a2011-07-15 08:37:34 +0000563 std::copy(II.op_begin(), II.op_end(), op_begin());
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000564 SubclassOptionalData = II.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000565}
566
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000567BasicBlock *InvokeInst::getSuccessorV(unsigned idx) const {
568 return getSuccessor(idx);
569}
570unsigned InvokeInst::getNumSuccessorsV() const {
571 return getNumSuccessors();
572}
573void InvokeInst::setSuccessorV(unsigned idx, BasicBlock *B) {
574 return setSuccessor(idx, B);
575}
576
Michael Gottesman41748d72013-06-27 00:25:01 +0000577bool InvokeInst::hasFnAttrImpl(Attribute::AttrKind A) const {
Bill Wendling749a43d2012-12-30 13:50:49 +0000578 if (AttributeList.hasAttribute(AttributeSet::FunctionIndex, A))
Bill Wendling375eb1f2012-10-09 00:28:54 +0000579 return true;
580 if (const Function *F = getCalledFunction())
Bill Wendling94dcaf82012-12-30 12:45:13 +0000581 return F->getAttributes().hasAttribute(AttributeSet::FunctionIndex, A);
Bill Wendling375eb1f2012-10-09 00:28:54 +0000582 return false;
583}
584
Bill Wendlingc79e42c2012-12-22 00:37:52 +0000585bool InvokeInst::paramHasAttr(unsigned i, Attribute::AttrKind A) const {
Bill Wendling749a43d2012-12-30 13:50:49 +0000586 if (AttributeList.hasAttribute(i, A))
Bill Wendling8baa61d2012-10-03 17:54:26 +0000587 return true;
588 if (const Function *F = getCalledFunction())
Bill Wendling94dcaf82012-12-30 12:45:13 +0000589 return F->getAttributes().hasAttribute(i, A);
Bill Wendlingdaf8e382012-10-04 07:18:12 +0000590 return false;
591}
592
Peter Collingbourne1b97a9c2013-03-02 01:20:18 +0000593void InvokeInst::addAttribute(unsigned i, Attribute::AttrKind attr) {
Bill Wendlinge94d8432012-12-07 23:16:57 +0000594 AttributeSet PAL = getAttributes();
Peter Collingbourne1b97a9c2013-03-02 01:20:18 +0000595 PAL = PAL.addAttribute(getContext(), i, attr);
Devang Patel4c758ea2008-09-25 21:00:45 +0000596 setAttributes(PAL);
Eric Christopher901b1a72008-05-16 20:39:43 +0000597}
598
Bill Wendling3d7b0b82012-12-19 07:18:57 +0000599void InvokeInst::removeAttribute(unsigned i, Attribute attr) {
Bill Wendlinge94d8432012-12-07 23:16:57 +0000600 AttributeSet PAL = getAttributes();
Bill Wendling430fa9b2013-01-23 00:45:55 +0000601 AttrBuilder B(attr);
602 PAL = PAL.removeAttributes(getContext(), i,
603 AttributeSet::get(getContext(), i, B));
Devang Patel4c758ea2008-09-25 21:00:45 +0000604 setAttributes(PAL);
Duncan Sandsaa31b922007-12-19 21:13:37 +0000605}
606
Bill Wendlingfae14752011-08-12 20:24:12 +0000607LandingPadInst *InvokeInst::getLandingPadInst() const {
608 return cast<LandingPadInst>(getUnwindDest()->getFirstNonPHI());
609}
Duncan Sands5208d1a2007-11-28 17:07:01 +0000610
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000611//===----------------------------------------------------------------------===//
612// ReturnInst Implementation
613//===----------------------------------------------------------------------===//
614
Chris Lattner2195fc42007-02-24 00:55:48 +0000615ReturnInst::ReturnInst(const ReturnInst &RI)
Owen Anderson55f1c092009-08-13 21:58:54 +0000616 : TerminatorInst(Type::getVoidTy(RI.getContext()), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000617 OperandTraits<ReturnInst>::op_end(this) -
618 RI.getNumOperands(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000619 RI.getNumOperands()) {
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000620 if (RI.getNumOperands())
Gabor Greif2d3024d2008-05-26 21:33:52 +0000621 Op<0>() = RI.Op<0>();
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000622 SubclassOptionalData = RI.SubclassOptionalData;
Chris Lattner2195fc42007-02-24 00:55:48 +0000623}
624
Owen Anderson55f1c092009-08-13 21:58:54 +0000625ReturnInst::ReturnInst(LLVMContext &C, Value *retVal, Instruction *InsertBefore)
626 : TerminatorInst(Type::getVoidTy(C), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000627 OperandTraits<ReturnInst>::op_end(this) - !!retVal, !!retVal,
628 InsertBefore) {
Devang Patelc38eb522008-02-26 18:49:29 +0000629 if (retVal)
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000630 Op<0>() = retVal;
Chris Lattner2195fc42007-02-24 00:55:48 +0000631}
Owen Anderson55f1c092009-08-13 21:58:54 +0000632ReturnInst::ReturnInst(LLVMContext &C, Value *retVal, BasicBlock *InsertAtEnd)
633 : TerminatorInst(Type::getVoidTy(C), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000634 OperandTraits<ReturnInst>::op_end(this) - !!retVal, !!retVal,
635 InsertAtEnd) {
Devang Patelc38eb522008-02-26 18:49:29 +0000636 if (retVal)
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000637 Op<0>() = retVal;
Chris Lattner2195fc42007-02-24 00:55:48 +0000638}
Owen Anderson55f1c092009-08-13 21:58:54 +0000639ReturnInst::ReturnInst(LLVMContext &Context, BasicBlock *InsertAtEnd)
640 : TerminatorInst(Type::getVoidTy(Context), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000641 OperandTraits<ReturnInst>::op_end(this), 0, InsertAtEnd) {
Devang Patel59643e52008-02-23 00:35:18 +0000642}
643
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000644unsigned ReturnInst::getNumSuccessorsV() const {
645 return getNumSuccessors();
646}
647
Devang Patelae682fb2008-02-26 17:56:20 +0000648/// Out-of-line ReturnInst method, put here so the C++ compiler can choose to
649/// emit the vtable for the class in this translation unit.
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000650void ReturnInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000651 llvm_unreachable("ReturnInst has no successors!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000652}
653
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000654BasicBlock *ReturnInst::getSuccessorV(unsigned idx) const {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000655 llvm_unreachable("ReturnInst has no successors!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000656}
657
Devang Patel59643e52008-02-23 00:35:18 +0000658ReturnInst::~ReturnInst() {
Devang Patel59643e52008-02-23 00:35:18 +0000659}
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000660
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000661//===----------------------------------------------------------------------===//
Bill Wendlingf891bf82011-07-31 06:30:59 +0000662// ResumeInst Implementation
663//===----------------------------------------------------------------------===//
664
665ResumeInst::ResumeInst(const ResumeInst &RI)
666 : TerminatorInst(Type::getVoidTy(RI.getContext()), Instruction::Resume,
667 OperandTraits<ResumeInst>::op_begin(this), 1) {
668 Op<0>() = RI.Op<0>();
669}
670
671ResumeInst::ResumeInst(Value *Exn, Instruction *InsertBefore)
672 : TerminatorInst(Type::getVoidTy(Exn->getContext()), Instruction::Resume,
673 OperandTraits<ResumeInst>::op_begin(this), 1, InsertBefore) {
674 Op<0>() = Exn;
675}
676
677ResumeInst::ResumeInst(Value *Exn, BasicBlock *InsertAtEnd)
678 : TerminatorInst(Type::getVoidTy(Exn->getContext()), Instruction::Resume,
679 OperandTraits<ResumeInst>::op_begin(this), 1, InsertAtEnd) {
680 Op<0>() = Exn;
681}
682
683unsigned ResumeInst::getNumSuccessorsV() const {
684 return getNumSuccessors();
685}
686
687void ResumeInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
688 llvm_unreachable("ResumeInst has no successors!");
689}
690
691BasicBlock *ResumeInst::getSuccessorV(unsigned idx) const {
692 llvm_unreachable("ResumeInst has no successors!");
Bill Wendlingf891bf82011-07-31 06:30:59 +0000693}
694
695//===----------------------------------------------------------------------===//
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000696// UnreachableInst Implementation
697//===----------------------------------------------------------------------===//
698
Owen Anderson55f1c092009-08-13 21:58:54 +0000699UnreachableInst::UnreachableInst(LLVMContext &Context,
700 Instruction *InsertBefore)
701 : TerminatorInst(Type::getVoidTy(Context), Instruction::Unreachable,
Craig Topperc6207612014-04-09 06:08:46 +0000702 nullptr, 0, InsertBefore) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000703}
Owen Anderson55f1c092009-08-13 21:58:54 +0000704UnreachableInst::UnreachableInst(LLVMContext &Context, BasicBlock *InsertAtEnd)
705 : TerminatorInst(Type::getVoidTy(Context), Instruction::Unreachable,
Craig Topperc6207612014-04-09 06:08:46 +0000706 nullptr, 0, InsertAtEnd) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000707}
708
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000709unsigned UnreachableInst::getNumSuccessorsV() const {
710 return getNumSuccessors();
711}
712
713void UnreachableInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
Bill Wendling0aef16a2012-02-06 21:44:22 +0000714 llvm_unreachable("UnreachableInst has no successors!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000715}
716
717BasicBlock *UnreachableInst::getSuccessorV(unsigned idx) const {
Bill Wendling0aef16a2012-02-06 21:44:22 +0000718 llvm_unreachable("UnreachableInst has no successors!");
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000719}
720
721//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000722// BranchInst Implementation
723//===----------------------------------------------------------------------===//
724
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000725void BranchInst::AssertOK() {
726 if (isConditional())
Duncan Sands9dff9be2010-02-15 16:12:20 +0000727 assert(getCondition()->getType()->isIntegerTy(1) &&
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000728 "May only branch on boolean predicates!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000729}
730
Chris Lattner2195fc42007-02-24 00:55:48 +0000731BranchInst::BranchInst(BasicBlock *IfTrue, Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +0000732 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000733 OperandTraits<BranchInst>::op_end(this) - 1,
734 1, InsertBefore) {
Craig Topper2617dcc2014-04-15 06:32:26 +0000735 assert(IfTrue && "Branch destination may not be null!");
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000736 Op<-1>() = IfTrue;
Chris Lattner2195fc42007-02-24 00:55:48 +0000737}
738BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
739 Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +0000740 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000741 OperandTraits<BranchInst>::op_end(this) - 3,
742 3, InsertBefore) {
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000743 Op<-1>() = IfTrue;
744 Op<-2>() = IfFalse;
745 Op<-3>() = Cond;
Chris Lattner2195fc42007-02-24 00:55:48 +0000746#ifndef NDEBUG
747 AssertOK();
748#endif
749}
750
751BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +0000752 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000753 OperandTraits<BranchInst>::op_end(this) - 1,
754 1, InsertAtEnd) {
Craig Topper2617dcc2014-04-15 06:32:26 +0000755 assert(IfTrue && "Branch destination may not be null!");
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000756 Op<-1>() = IfTrue;
Chris Lattner2195fc42007-02-24 00:55:48 +0000757}
758
759BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
760 BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +0000761 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000762 OperandTraits<BranchInst>::op_end(this) - 3,
763 3, InsertAtEnd) {
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000764 Op<-1>() = IfTrue;
765 Op<-2>() = IfFalse;
766 Op<-3>() = Cond;
Chris Lattner2195fc42007-02-24 00:55:48 +0000767#ifndef NDEBUG
768 AssertOK();
769#endif
770}
771
772
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000773BranchInst::BranchInst(const BranchInst &BI) :
Owen Anderson55f1c092009-08-13 21:58:54 +0000774 TerminatorInst(Type::getVoidTy(BI.getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000775 OperandTraits<BranchInst>::op_end(this) - BI.getNumOperands(),
776 BI.getNumOperands()) {
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000777 Op<-1>() = BI.Op<-1>();
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000778 if (BI.getNumOperands() != 1) {
779 assert(BI.getNumOperands() == 3 && "BR can have 1 or 3 operands!");
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000780 Op<-3>() = BI.Op<-3>();
781 Op<-2>() = BI.Op<-2>();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000782 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000783 SubclassOptionalData = BI.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000784}
785
Chandler Carruth3e8aa652011-10-17 01:11:57 +0000786void BranchInst::swapSuccessors() {
787 assert(isConditional() &&
788 "Cannot swap successors of an unconditional branch");
789 Op<-1>().swap(Op<-2>());
790
791 // Update profile metadata if present and it matches our structural
792 // expectations.
793 MDNode *ProfileData = getMetadata(LLVMContext::MD_prof);
794 if (!ProfileData || ProfileData->getNumOperands() != 3)
795 return;
796
797 // The first operand is the name. Fetch them backwards and build a new one.
798 Value *Ops[] = {
799 ProfileData->getOperand(0),
800 ProfileData->getOperand(2),
801 ProfileData->getOperand(1)
802 };
803 setMetadata(LLVMContext::MD_prof,
804 MDNode::get(ProfileData->getContext(), Ops));
805}
806
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000807BasicBlock *BranchInst::getSuccessorV(unsigned idx) const {
808 return getSuccessor(idx);
809}
810unsigned BranchInst::getNumSuccessorsV() const {
811 return getNumSuccessors();
812}
813void BranchInst::setSuccessorV(unsigned idx, BasicBlock *B) {
814 setSuccessor(idx, B);
815}
816
817
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000818//===----------------------------------------------------------------------===//
Victor Hernandez8acf2952009-10-23 21:09:37 +0000819// AllocaInst Implementation
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000820//===----------------------------------------------------------------------===//
821
Owen Andersonb6b25302009-07-14 23:09:55 +0000822static Value *getAISize(LLVMContext &Context, Value *Amt) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000823 if (!Amt)
Owen Anderson55f1c092009-08-13 21:58:54 +0000824 Amt = ConstantInt::get(Type::getInt32Ty(Context), 1);
Chris Lattnerbb7ff662006-05-10 04:32:43 +0000825 else {
826 assert(!isa<BasicBlock>(Amt) &&
Chris Lattner9b6ec772007-10-18 16:10:48 +0000827 "Passed basic block into allocation size parameter! Use other ctor");
Dan Gohman2140a742010-05-28 01:14:11 +0000828 assert(Amt->getType()->isIntegerTy() &&
829 "Allocation array size is not an integer!");
Chris Lattnerbb7ff662006-05-10 04:32:43 +0000830 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000831 return Amt;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000832}
833
Chris Lattner229907c2011-07-18 04:54:35 +0000834AllocaInst::AllocaInst(Type *Ty, Value *ArraySize,
Victor Hernandez8acf2952009-10-23 21:09:37 +0000835 const Twine &Name, Instruction *InsertBefore)
836 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
837 getAISize(Ty->getContext(), ArraySize), InsertBefore) {
838 setAlignment(0);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000839 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Victor Hernandez8acf2952009-10-23 21:09:37 +0000840 setName(Name);
841}
842
Chris Lattner229907c2011-07-18 04:54:35 +0000843AllocaInst::AllocaInst(Type *Ty, Value *ArraySize,
Victor Hernandez8acf2952009-10-23 21:09:37 +0000844 const Twine &Name, BasicBlock *InsertAtEnd)
845 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
846 getAISize(Ty->getContext(), ArraySize), InsertAtEnd) {
847 setAlignment(0);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000848 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Victor Hernandez8acf2952009-10-23 21:09:37 +0000849 setName(Name);
850}
851
Chris Lattner229907c2011-07-18 04:54:35 +0000852AllocaInst::AllocaInst(Type *Ty, const Twine &Name,
Victor Hernandez8acf2952009-10-23 21:09:37 +0000853 Instruction *InsertBefore)
854 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
Craig Topperc6207612014-04-09 06:08:46 +0000855 getAISize(Ty->getContext(), nullptr), InsertBefore) {
Victor Hernandez8acf2952009-10-23 21:09:37 +0000856 setAlignment(0);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000857 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Victor Hernandez8acf2952009-10-23 21:09:37 +0000858 setName(Name);
859}
860
Chris Lattner229907c2011-07-18 04:54:35 +0000861AllocaInst::AllocaInst(Type *Ty, const Twine &Name,
Victor Hernandez8acf2952009-10-23 21:09:37 +0000862 BasicBlock *InsertAtEnd)
863 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
Craig Topperc6207612014-04-09 06:08:46 +0000864 getAISize(Ty->getContext(), nullptr), InsertAtEnd) {
Victor Hernandez8acf2952009-10-23 21:09:37 +0000865 setAlignment(0);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000866 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Victor Hernandez8acf2952009-10-23 21:09:37 +0000867 setName(Name);
868}
869
Chris Lattner229907c2011-07-18 04:54:35 +0000870AllocaInst::AllocaInst(Type *Ty, Value *ArraySize, unsigned Align,
Victor Hernandez8acf2952009-10-23 21:09:37 +0000871 const Twine &Name, Instruction *InsertBefore)
872 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
Owen Anderson4fdeba92009-07-15 23:53:25 +0000873 getAISize(Ty->getContext(), ArraySize), InsertBefore) {
Dan Gohmanaa583d72008-03-24 16:55:58 +0000874 setAlignment(Align);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000875 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Chris Lattner0f048162007-02-13 07:54:42 +0000876 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000877}
878
Chris Lattner229907c2011-07-18 04:54:35 +0000879AllocaInst::AllocaInst(Type *Ty, Value *ArraySize, unsigned Align,
Victor Hernandez8acf2952009-10-23 21:09:37 +0000880 const Twine &Name, BasicBlock *InsertAtEnd)
881 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
Owen Anderson4fdeba92009-07-15 23:53:25 +0000882 getAISize(Ty->getContext(), ArraySize), InsertAtEnd) {
Dan Gohmanaa583d72008-03-24 16:55:58 +0000883 setAlignment(Align);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000884 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Chris Lattner0f048162007-02-13 07:54:42 +0000885 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000886}
887
Gordon Henriksen14a55692007-12-10 02:14:30 +0000888// Out of line virtual method, so the vtable, etc has a home.
Victor Hernandez8acf2952009-10-23 21:09:37 +0000889AllocaInst::~AllocaInst() {
Gordon Henriksen14a55692007-12-10 02:14:30 +0000890}
891
Victor Hernandez8acf2952009-10-23 21:09:37 +0000892void AllocaInst::setAlignment(unsigned Align) {
Dan Gohmanaa583d72008-03-24 16:55:58 +0000893 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
Dan Gohmana7e5a242010-07-28 20:12:04 +0000894 assert(Align <= MaximumAlignment &&
895 "Alignment is greater than MaximumAlignment!");
Reid Kleckner436c42e2014-01-17 23:58:17 +0000896 setInstructionSubclassData((getSubclassDataFromInstruction() & ~31) |
897 (Log2_32(Align) + 1));
Dan Gohmanaa583d72008-03-24 16:55:58 +0000898 assert(getAlignment() == Align && "Alignment representation error!");
899}
900
Victor Hernandez8acf2952009-10-23 21:09:37 +0000901bool AllocaInst::isArrayAllocation() const {
Reid Spencera9e6e312007-03-01 20:27:41 +0000902 if (ConstantInt *CI = dyn_cast<ConstantInt>(getOperand(0)))
Dan Gohman9a1b8592010-09-27 15:15:44 +0000903 return !CI->isOne();
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000904 return true;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000905}
906
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000907Type *AllocaInst::getAllocatedType() const {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000908 return getType()->getElementType();
909}
910
Chris Lattner8b291e62008-11-26 02:54:17 +0000911/// isStaticAlloca - Return true if this alloca is in the entry block of the
912/// function and is a constant size. If so, the code generator will fold it
913/// into the prolog/epilog code, so it is basically free.
914bool AllocaInst::isStaticAlloca() const {
915 // Must be constant size.
916 if (!isa<ConstantInt>(getArraySize())) return false;
917
918 // Must be in the entry block.
919 const BasicBlock *Parent = getParent();
Reid Kleckner436c42e2014-01-17 23:58:17 +0000920 return Parent == &Parent->getParent()->front() && !isUsedWithInAlloca();
Chris Lattner8b291e62008-11-26 02:54:17 +0000921}
922
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000923//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000924// LoadInst Implementation
925//===----------------------------------------------------------------------===//
926
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000927void LoadInst::AssertOK() {
Duncan Sands19d0b472010-02-16 11:11:14 +0000928 assert(getOperand(0)->getType()->isPointerTy() &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000929 "Ptr must have pointer type.");
Eli Friedman59b66882011-08-09 23:02:53 +0000930 assert(!(isAtomic() && getAlignment() == 0) &&
931 "Alignment required for atomic load");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000932}
933
Daniel Dunbar4975db62009-07-25 04:41:11 +0000934LoadInst::LoadInst(Value *Ptr, const Twine &Name, Instruction *InsertBef)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000935 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000936 Load, Ptr, InsertBef) {
Chris Lattnerdf57a022005-02-05 01:38:38 +0000937 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000938 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +0000939 setAtomic(NotAtomic);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000940 AssertOK();
Chris Lattner0f048162007-02-13 07:54:42 +0000941 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000942}
943
Daniel Dunbar4975db62009-07-25 04:41:11 +0000944LoadInst::LoadInst(Value *Ptr, const Twine &Name, BasicBlock *InsertAE)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000945 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000946 Load, Ptr, InsertAE) {
Chris Lattnerdf57a022005-02-05 01:38:38 +0000947 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000948 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +0000949 setAtomic(NotAtomic);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000950 AssertOK();
Chris Lattner0f048162007-02-13 07:54:42 +0000951 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000952}
953
Daniel Dunbar4975db62009-07-25 04:41:11 +0000954LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000955 Instruction *InsertBef)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000956 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000957 Load, Ptr, InsertBef) {
Chris Lattnerdf57a022005-02-05 01:38:38 +0000958 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +0000959 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +0000960 setAtomic(NotAtomic);
961 AssertOK();
962 setName(Name);
963}
964
965LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
966 BasicBlock *InsertAE)
967 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
968 Load, Ptr, InsertAE) {
969 setVolatile(isVolatile);
970 setAlignment(0);
971 setAtomic(NotAtomic);
Christopher Lamb84485702007-04-22 19:24:39 +0000972 AssertOK();
973 setName(Name);
974}
975
Daniel Dunbar4975db62009-07-25 04:41:11 +0000976LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Christopher Lamb84485702007-04-22 19:24:39 +0000977 unsigned Align, Instruction *InsertBef)
978 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
979 Load, Ptr, InsertBef) {
980 setVolatile(isVolatile);
981 setAlignment(Align);
Eli Friedman59b66882011-08-09 23:02:53 +0000982 setAtomic(NotAtomic);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000983 AssertOK();
Chris Lattner0f048162007-02-13 07:54:42 +0000984 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000985}
986
Daniel Dunbar4975db62009-07-25 04:41:11 +0000987LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Dan Gohman68659282007-07-18 20:51:11 +0000988 unsigned Align, BasicBlock *InsertAE)
989 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
990 Load, Ptr, InsertAE) {
991 setVolatile(isVolatile);
992 setAlignment(Align);
Eli Friedman59b66882011-08-09 23:02:53 +0000993 setAtomic(NotAtomic);
Dan Gohman68659282007-07-18 20:51:11 +0000994 AssertOK();
995 setName(Name);
996}
997
Eli Friedman59b66882011-08-09 23:02:53 +0000998LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
999 unsigned Align, AtomicOrdering Order,
1000 SynchronizationScope SynchScope,
1001 Instruction *InsertBef)
1002 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
1003 Load, Ptr, InsertBef) {
1004 setVolatile(isVolatile);
1005 setAlignment(Align);
1006 setAtomic(Order, SynchScope);
1007 AssertOK();
1008 setName(Name);
1009}
1010
1011LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
1012 unsigned Align, AtomicOrdering Order,
1013 SynchronizationScope SynchScope,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001014 BasicBlock *InsertAE)
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001015 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +00001016 Load, Ptr, InsertAE) {
Chris Lattner0f048162007-02-13 07:54:42 +00001017 setVolatile(isVolatile);
Eli Friedman59b66882011-08-09 23:02:53 +00001018 setAlignment(Align);
1019 setAtomic(Order, SynchScope);
Chris Lattner0f048162007-02-13 07:54:42 +00001020 AssertOK();
1021 setName(Name);
1022}
1023
Daniel Dunbar27096822009-08-11 18:11:15 +00001024LoadInst::LoadInst(Value *Ptr, const char *Name, Instruction *InsertBef)
1025 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
1026 Load, Ptr, InsertBef) {
1027 setVolatile(false);
1028 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +00001029 setAtomic(NotAtomic);
Daniel Dunbar27096822009-08-11 18:11:15 +00001030 AssertOK();
1031 if (Name && Name[0]) setName(Name);
1032}
1033
1034LoadInst::LoadInst(Value *Ptr, const char *Name, BasicBlock *InsertAE)
1035 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
1036 Load, Ptr, InsertAE) {
1037 setVolatile(false);
1038 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +00001039 setAtomic(NotAtomic);
Daniel Dunbar27096822009-08-11 18:11:15 +00001040 AssertOK();
1041 if (Name && Name[0]) setName(Name);
1042}
1043
1044LoadInst::LoadInst(Value *Ptr, const char *Name, bool isVolatile,
1045 Instruction *InsertBef)
1046: UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
1047 Load, Ptr, InsertBef) {
1048 setVolatile(isVolatile);
1049 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +00001050 setAtomic(NotAtomic);
Daniel Dunbar27096822009-08-11 18:11:15 +00001051 AssertOK();
1052 if (Name && Name[0]) setName(Name);
1053}
1054
1055LoadInst::LoadInst(Value *Ptr, const char *Name, bool isVolatile,
1056 BasicBlock *InsertAE)
1057 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
1058 Load, Ptr, InsertAE) {
1059 setVolatile(isVolatile);
1060 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +00001061 setAtomic(NotAtomic);
Daniel Dunbar27096822009-08-11 18:11:15 +00001062 AssertOK();
1063 if (Name && Name[0]) setName(Name);
1064}
1065
Christopher Lamb84485702007-04-22 19:24:39 +00001066void LoadInst::setAlignment(unsigned Align) {
1067 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
Dan Gohmana7e5a242010-07-28 20:12:04 +00001068 assert(Align <= MaximumAlignment &&
1069 "Alignment is greater than MaximumAlignment!");
Eli Friedman59b66882011-08-09 23:02:53 +00001070 setInstructionSubclassData((getSubclassDataFromInstruction() & ~(31 << 1)) |
Chris Lattnerd8eb2cf2009-12-29 02:46:09 +00001071 ((Log2_32(Align)+1)<<1));
Dan Gohmana7e5a242010-07-28 20:12:04 +00001072 assert(getAlignment() == Align && "Alignment representation error!");
Christopher Lamb84485702007-04-22 19:24:39 +00001073}
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001074
1075//===----------------------------------------------------------------------===//
1076// StoreInst Implementation
1077//===----------------------------------------------------------------------===//
1078
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001079void StoreInst::AssertOK() {
Nate Begemanfecbc8c2008-07-29 15:49:41 +00001080 assert(getOperand(0) && getOperand(1) && "Both operands must be non-null!");
Duncan Sands19d0b472010-02-16 11:11:14 +00001081 assert(getOperand(1)->getType()->isPointerTy() &&
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001082 "Ptr must have pointer type!");
1083 assert(getOperand(0)->getType() ==
1084 cast<PointerType>(getOperand(1)->getType())->getElementType()
Alkis Evlogimenos079fbde2004-08-06 14:33:37 +00001085 && "Ptr must be a pointer to Val type!");
Eli Friedman59b66882011-08-09 23:02:53 +00001086 assert(!(isAtomic() && getAlignment() == 0) &&
Mark Lacey1d7c97e2013-12-21 00:00:49 +00001087 "Alignment required for atomic store");
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001088}
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001089
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001090
1091StoreInst::StoreInst(Value *val, Value *addr, Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +00001092 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001093 OperandTraits<StoreInst>::op_begin(this),
1094 OperandTraits<StoreInst>::operands(this),
1095 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001096 Op<0>() = val;
1097 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +00001098 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +00001099 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +00001100 setAtomic(NotAtomic);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001101 AssertOK();
1102}
1103
1104StoreInst::StoreInst(Value *val, Value *addr, BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +00001105 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001106 OperandTraits<StoreInst>::op_begin(this),
1107 OperandTraits<StoreInst>::operands(this),
1108 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001109 Op<0>() = val;
1110 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +00001111 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +00001112 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +00001113 setAtomic(NotAtomic);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001114 AssertOK();
1115}
1116
Misha Brukmanb1c93172005-04-21 23:48:37 +00001117StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001118 Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +00001119 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001120 OperandTraits<StoreInst>::op_begin(this),
1121 OperandTraits<StoreInst>::operands(this),
1122 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001123 Op<0>() = val;
1124 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +00001125 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +00001126 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +00001127 setAtomic(NotAtomic);
Christopher Lamb84485702007-04-22 19:24:39 +00001128 AssertOK();
1129}
1130
1131StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
1132 unsigned Align, Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +00001133 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001134 OperandTraits<StoreInst>::op_begin(this),
1135 OperandTraits<StoreInst>::operands(this),
1136 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001137 Op<0>() = val;
1138 Op<1>() = addr;
Christopher Lamb84485702007-04-22 19:24:39 +00001139 setVolatile(isVolatile);
1140 setAlignment(Align);
Eli Friedman59b66882011-08-09 23:02:53 +00001141 setAtomic(NotAtomic);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001142 AssertOK();
1143}
1144
Misha Brukmanb1c93172005-04-21 23:48:37 +00001145StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Eli Friedman59b66882011-08-09 23:02:53 +00001146 unsigned Align, AtomicOrdering Order,
1147 SynchronizationScope SynchScope,
1148 Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +00001149 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001150 OperandTraits<StoreInst>::op_begin(this),
1151 OperandTraits<StoreInst>::operands(this),
Eli Friedman59b66882011-08-09 23:02:53 +00001152 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001153 Op<0>() = val;
1154 Op<1>() = addr;
Dan Gohman68659282007-07-18 20:51:11 +00001155 setVolatile(isVolatile);
1156 setAlignment(Align);
Eli Friedman59b66882011-08-09 23:02:53 +00001157 setAtomic(Order, SynchScope);
Dan Gohman68659282007-07-18 20:51:11 +00001158 AssertOK();
1159}
1160
1161StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001162 BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +00001163 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001164 OperandTraits<StoreInst>::op_begin(this),
1165 OperandTraits<StoreInst>::operands(this),
1166 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001167 Op<0>() = val;
1168 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +00001169 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +00001170 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +00001171 setAtomic(NotAtomic);
1172 AssertOK();
1173}
1174
1175StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
1176 unsigned Align, BasicBlock *InsertAtEnd)
1177 : Instruction(Type::getVoidTy(val->getContext()), Store,
1178 OperandTraits<StoreInst>::op_begin(this),
1179 OperandTraits<StoreInst>::operands(this),
1180 InsertAtEnd) {
1181 Op<0>() = val;
1182 Op<1>() = addr;
1183 setVolatile(isVolatile);
1184 setAlignment(Align);
1185 setAtomic(NotAtomic);
1186 AssertOK();
1187}
1188
1189StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
1190 unsigned Align, AtomicOrdering Order,
1191 SynchronizationScope SynchScope,
1192 BasicBlock *InsertAtEnd)
1193 : Instruction(Type::getVoidTy(val->getContext()), Store,
1194 OperandTraits<StoreInst>::op_begin(this),
1195 OperandTraits<StoreInst>::operands(this),
1196 InsertAtEnd) {
1197 Op<0>() = val;
1198 Op<1>() = addr;
1199 setVolatile(isVolatile);
1200 setAlignment(Align);
1201 setAtomic(Order, SynchScope);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001202 AssertOK();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001203}
1204
Christopher Lamb84485702007-04-22 19:24:39 +00001205void StoreInst::setAlignment(unsigned Align) {
1206 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
Dan Gohmana7e5a242010-07-28 20:12:04 +00001207 assert(Align <= MaximumAlignment &&
1208 "Alignment is greater than MaximumAlignment!");
Eli Friedman59b66882011-08-09 23:02:53 +00001209 setInstructionSubclassData((getSubclassDataFromInstruction() & ~(31 << 1)) |
Chris Lattnerd8eb2cf2009-12-29 02:46:09 +00001210 ((Log2_32(Align)+1) << 1));
Dan Gohmana7e5a242010-07-28 20:12:04 +00001211 assert(getAlignment() == Align && "Alignment representation error!");
Christopher Lamb84485702007-04-22 19:24:39 +00001212}
1213
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001214//===----------------------------------------------------------------------===//
Eli Friedmanc9a551e2011-07-28 21:48:00 +00001215// AtomicCmpXchgInst Implementation
1216//===----------------------------------------------------------------------===//
1217
1218void AtomicCmpXchgInst::Init(Value *Ptr, Value *Cmp, Value *NewVal,
Tim Northovere94a5182014-03-11 10:48:52 +00001219 AtomicOrdering SuccessOrdering,
1220 AtomicOrdering FailureOrdering,
Eli Friedmanc9a551e2011-07-28 21:48:00 +00001221 SynchronizationScope SynchScope) {
1222 Op<0>() = Ptr;
1223 Op<1>() = Cmp;
1224 Op<2>() = NewVal;
Tim Northovere94a5182014-03-11 10:48:52 +00001225 setSuccessOrdering(SuccessOrdering);
1226 setFailureOrdering(FailureOrdering);
Eli Friedmanc9a551e2011-07-28 21:48:00 +00001227 setSynchScope(SynchScope);
1228
1229 assert(getOperand(0) && getOperand(1) && getOperand(2) &&
1230 "All operands must be non-null!");
1231 assert(getOperand(0)->getType()->isPointerTy() &&
1232 "Ptr must have pointer type!");
1233 assert(getOperand(1)->getType() ==
1234 cast<PointerType>(getOperand(0)->getType())->getElementType()
1235 && "Ptr must be a pointer to Cmp type!");
1236 assert(getOperand(2)->getType() ==
1237 cast<PointerType>(getOperand(0)->getType())->getElementType()
1238 && "Ptr must be a pointer to NewVal type!");
Tim Northovere94a5182014-03-11 10:48:52 +00001239 assert(SuccessOrdering != NotAtomic &&
Eli Friedmanc9a551e2011-07-28 21:48:00 +00001240 "AtomicCmpXchg instructions must be atomic!");
Tim Northovere94a5182014-03-11 10:48:52 +00001241 assert(FailureOrdering != NotAtomic &&
1242 "AtomicCmpXchg instructions must be atomic!");
1243 assert(SuccessOrdering >= FailureOrdering &&
1244 "AtomicCmpXchg success ordering must be at least as strong as fail");
1245 assert(FailureOrdering != Release && FailureOrdering != AcquireRelease &&
1246 "AtomicCmpXchg failure ordering cannot include release semantics");
Eli Friedmanc9a551e2011-07-28 21:48:00 +00001247}
1248
1249AtomicCmpXchgInst::AtomicCmpXchgInst(Value *Ptr, Value *Cmp, Value *NewVal,
Tim Northovere94a5182014-03-11 10:48:52 +00001250 AtomicOrdering SuccessOrdering,
1251 AtomicOrdering FailureOrdering,
Eli Friedmanc9a551e2011-07-28 21:48:00 +00001252 SynchronizationScope SynchScope,
1253 Instruction *InsertBefore)
Tim Northover420a2162014-06-13 14:24:07 +00001254 : Instruction(
1255 StructType::get(Cmp->getType(), Type::getInt1Ty(Cmp->getContext()),
1256 nullptr),
1257 AtomicCmpXchg, OperandTraits<AtomicCmpXchgInst>::op_begin(this),
1258 OperandTraits<AtomicCmpXchgInst>::operands(this), InsertBefore) {
Tim Northovere94a5182014-03-11 10:48:52 +00001259 Init(Ptr, Cmp, NewVal, SuccessOrdering, FailureOrdering, SynchScope);
Eli Friedmanc9a551e2011-07-28 21:48:00 +00001260}
1261
1262AtomicCmpXchgInst::AtomicCmpXchgInst(Value *Ptr, Value *Cmp, Value *NewVal,
Tim Northovere94a5182014-03-11 10:48:52 +00001263 AtomicOrdering SuccessOrdering,
1264 AtomicOrdering FailureOrdering,
Eli Friedmanc9a551e2011-07-28 21:48:00 +00001265 SynchronizationScope SynchScope,
1266 BasicBlock *InsertAtEnd)
Tim Northover420a2162014-06-13 14:24:07 +00001267 : Instruction(
1268 StructType::get(Cmp->getType(), Type::getInt1Ty(Cmp->getContext()),
1269 nullptr),
1270 AtomicCmpXchg, OperandTraits<AtomicCmpXchgInst>::op_begin(this),
1271 OperandTraits<AtomicCmpXchgInst>::operands(this), InsertAtEnd) {
Tim Northovere94a5182014-03-11 10:48:52 +00001272 Init(Ptr, Cmp, NewVal, SuccessOrdering, FailureOrdering, SynchScope);
Eli Friedmanc9a551e2011-07-28 21:48:00 +00001273}
Tim Northover420a2162014-06-13 14:24:07 +00001274
Eli Friedmanc9a551e2011-07-28 21:48:00 +00001275//===----------------------------------------------------------------------===//
1276// AtomicRMWInst Implementation
1277//===----------------------------------------------------------------------===//
1278
1279void AtomicRMWInst::Init(BinOp Operation, Value *Ptr, Value *Val,
1280 AtomicOrdering Ordering,
1281 SynchronizationScope SynchScope) {
1282 Op<0>() = Ptr;
1283 Op<1>() = Val;
1284 setOperation(Operation);
1285 setOrdering(Ordering);
1286 setSynchScope(SynchScope);
1287
1288 assert(getOperand(0) && getOperand(1) &&
1289 "All operands must be non-null!");
1290 assert(getOperand(0)->getType()->isPointerTy() &&
1291 "Ptr must have pointer type!");
1292 assert(getOperand(1)->getType() ==
1293 cast<PointerType>(getOperand(0)->getType())->getElementType()
1294 && "Ptr must be a pointer to Val type!");
1295 assert(Ordering != NotAtomic &&
1296 "AtomicRMW instructions must be atomic!");
1297}
1298
1299AtomicRMWInst::AtomicRMWInst(BinOp Operation, Value *Ptr, Value *Val,
1300 AtomicOrdering Ordering,
1301 SynchronizationScope SynchScope,
1302 Instruction *InsertBefore)
1303 : Instruction(Val->getType(), AtomicRMW,
1304 OperandTraits<AtomicRMWInst>::op_begin(this),
1305 OperandTraits<AtomicRMWInst>::operands(this),
1306 InsertBefore) {
1307 Init(Operation, Ptr, Val, Ordering, SynchScope);
1308}
1309
1310AtomicRMWInst::AtomicRMWInst(BinOp Operation, Value *Ptr, Value *Val,
1311 AtomicOrdering Ordering,
1312 SynchronizationScope SynchScope,
1313 BasicBlock *InsertAtEnd)
1314 : Instruction(Val->getType(), AtomicRMW,
1315 OperandTraits<AtomicRMWInst>::op_begin(this),
1316 OperandTraits<AtomicRMWInst>::operands(this),
1317 InsertAtEnd) {
1318 Init(Operation, Ptr, Val, Ordering, SynchScope);
1319}
1320
1321//===----------------------------------------------------------------------===//
Eli Friedmanfee02c62011-07-25 23:16:38 +00001322// FenceInst Implementation
1323//===----------------------------------------------------------------------===//
1324
1325FenceInst::FenceInst(LLVMContext &C, AtomicOrdering Ordering,
1326 SynchronizationScope SynchScope,
1327 Instruction *InsertBefore)
Craig Topperc6207612014-04-09 06:08:46 +00001328 : Instruction(Type::getVoidTy(C), Fence, nullptr, 0, InsertBefore) {
Eli Friedmanfee02c62011-07-25 23:16:38 +00001329 setOrdering(Ordering);
1330 setSynchScope(SynchScope);
1331}
1332
1333FenceInst::FenceInst(LLVMContext &C, AtomicOrdering Ordering,
1334 SynchronizationScope SynchScope,
1335 BasicBlock *InsertAtEnd)
Craig Topperc6207612014-04-09 06:08:46 +00001336 : Instruction(Type::getVoidTy(C), Fence, nullptr, 0, InsertAtEnd) {
Eli Friedmanfee02c62011-07-25 23:16:38 +00001337 setOrdering(Ordering);
1338 setSynchScope(SynchScope);
1339}
1340
1341//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001342// GetElementPtrInst Implementation
1343//===----------------------------------------------------------------------===//
1344
Jay Foadd1b78492011-07-25 09:48:08 +00001345void GetElementPtrInst::init(Value *Ptr, ArrayRef<Value *> IdxList,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001346 const Twine &Name) {
Jay Foadd1b78492011-07-25 09:48:08 +00001347 assert(NumOperands == 1 + IdxList.size() && "NumOperands not initialized?");
1348 OperandList[0] = Ptr;
1349 std::copy(IdxList.begin(), IdxList.end(), op_begin() + 1);
Matthijs Kooijman76d8dec2008-06-04 16:14:12 +00001350 setName(Name);
Chris Lattner82981202005-05-03 05:43:30 +00001351}
1352
Gabor Greiff6caff662008-05-10 08:32:32 +00001353GetElementPtrInst::GetElementPtrInst(const GetElementPtrInst &GEPI)
Gabor Greife9408e62008-05-27 11:03:29 +00001354 : Instruction(GEPI.getType(), GetElementPtr,
Gabor Greif697e94c2008-05-15 10:04:30 +00001355 OperandTraits<GetElementPtrInst>::op_end(this)
1356 - GEPI.getNumOperands(),
Gabor Greiff6caff662008-05-10 08:32:32 +00001357 GEPI.getNumOperands()) {
Jay Foadd1b78492011-07-25 09:48:08 +00001358 std::copy(GEPI.op_begin(), GEPI.op_end(), op_begin());
Dan Gohmanc8a27f22009-08-25 22:11:20 +00001359 SubclassOptionalData = GEPI.SubclassOptionalData;
Gabor Greiff6caff662008-05-10 08:32:32 +00001360}
1361
Chris Lattner6090a422009-03-09 04:46:40 +00001362/// getIndexedType - Returns the type of the element that would be accessed with
1363/// a gep instruction with the specified parameters.
1364///
1365/// The Idxs pointer should point to a continuous piece of memory containing the
1366/// indices, either as Value* or uint64_t.
1367///
1368/// A null type is returned if the indices are invalid for the specified
1369/// pointer type.
1370///
Matthijs Kooijman04468622008-07-29 08:46:11 +00001371template <typename IndexTy>
Jay Foadd1b78492011-07-25 09:48:08 +00001372static Type *getIndexedTypeInternal(Type *Ptr, ArrayRef<IndexTy> IdxList) {
Duncan Sandse6beec62012-11-13 12:59:33 +00001373 PointerType *PTy = dyn_cast<PointerType>(Ptr->getScalarType());
Craig Topperc6207612014-04-09 06:08:46 +00001374 if (!PTy) return nullptr; // Type isn't a pointer type!
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001375 Type *Agg = PTy->getElementType();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001376
Chris Lattner6090a422009-03-09 04:46:40 +00001377 // Handle the special case of the empty set index set, which is always valid.
Jay Foadd1b78492011-07-25 09:48:08 +00001378 if (IdxList.empty())
Dan Gohman12fce772008-05-15 19:50:34 +00001379 return Agg;
Nadav Rotem3924cb02011-12-05 06:29:09 +00001380
Chris Lattner6090a422009-03-09 04:46:40 +00001381 // If there is at least one index, the top level type must be sized, otherwise
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001382 // it cannot be 'stepped over'.
1383 if (!Agg->isSized())
Craig Topperc6207612014-04-09 06:08:46 +00001384 return nullptr;
Misha Brukmanb1c93172005-04-21 23:48:37 +00001385
Dan Gohman1ecaf452008-05-31 00:58:22 +00001386 unsigned CurIdx = 1;
Jay Foadd1b78492011-07-25 09:48:08 +00001387 for (; CurIdx != IdxList.size(); ++CurIdx) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001388 CompositeType *CT = dyn_cast<CompositeType>(Agg);
Craig Topperc6207612014-04-09 06:08:46 +00001389 if (!CT || CT->isPointerTy()) return nullptr;
Jay Foadd1b78492011-07-25 09:48:08 +00001390 IndexTy Index = IdxList[CurIdx];
Craig Topperc6207612014-04-09 06:08:46 +00001391 if (!CT->indexValid(Index)) return nullptr;
Dan Gohman1ecaf452008-05-31 00:58:22 +00001392 Agg = CT->getTypeAtIndex(Index);
Dan Gohman1ecaf452008-05-31 00:58:22 +00001393 }
Craig Topperc6207612014-04-09 06:08:46 +00001394 return CurIdx == IdxList.size() ? Agg : nullptr;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001395}
1396
Jay Foadd1b78492011-07-25 09:48:08 +00001397Type *GetElementPtrInst::getIndexedType(Type *Ptr, ArrayRef<Value *> IdxList) {
1398 return getIndexedTypeInternal(Ptr, IdxList);
Matthijs Kooijman04468622008-07-29 08:46:11 +00001399}
1400
Chris Lattner229907c2011-07-18 04:54:35 +00001401Type *GetElementPtrInst::getIndexedType(Type *Ptr,
Jay Foadd1b78492011-07-25 09:48:08 +00001402 ArrayRef<Constant *> IdxList) {
1403 return getIndexedTypeInternal(Ptr, IdxList);
Jay Foad1d4a8fe2011-01-14 08:07:43 +00001404}
1405
Jay Foadd1b78492011-07-25 09:48:08 +00001406Type *GetElementPtrInst::getIndexedType(Type *Ptr, ArrayRef<uint64_t> IdxList) {
1407 return getIndexedTypeInternal(Ptr, IdxList);
Matthijs Kooijman04468622008-07-29 08:46:11 +00001408}
1409
Chris Lattner45f15572007-04-14 00:12:57 +00001410/// hasAllZeroIndices - Return true if all of the indices of this GEP are
1411/// zeros. If so, the result pointer and the first operand have the same
1412/// value, just potentially different types.
1413bool GetElementPtrInst::hasAllZeroIndices() const {
1414 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
1415 if (ConstantInt *CI = dyn_cast<ConstantInt>(getOperand(i))) {
1416 if (!CI->isZero()) return false;
1417 } else {
1418 return false;
1419 }
1420 }
1421 return true;
1422}
1423
Chris Lattner27058292007-04-27 20:35:56 +00001424/// hasAllConstantIndices - Return true if all of the indices of this GEP are
1425/// constant integers. If so, the result pointer and the first operand have
1426/// a constant offset between them.
1427bool GetElementPtrInst::hasAllConstantIndices() const {
1428 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
1429 if (!isa<ConstantInt>(getOperand(i)))
1430 return false;
1431 }
1432 return true;
1433}
1434
Dan Gohman1b849082009-09-07 23:54:19 +00001435void GetElementPtrInst::setIsInBounds(bool B) {
1436 cast<GEPOperator>(this)->setIsInBounds(B);
1437}
Chris Lattner45f15572007-04-14 00:12:57 +00001438
Nick Lewycky28a5f252009-09-27 21:33:04 +00001439bool GetElementPtrInst::isInBounds() const {
1440 return cast<GEPOperator>(this)->isInBounds();
1441}
1442
Chandler Carruth1e140532012-12-11 10:29:10 +00001443bool GetElementPtrInst::accumulateConstantOffset(const DataLayout &DL,
1444 APInt &Offset) const {
Chandler Carruth7ec41c72012-12-11 11:05:15 +00001445 // Delegate to the generic GEPOperator implementation.
1446 return cast<GEPOperator>(this)->accumulateConstantOffset(DL, Offset);
Chandler Carruth1e140532012-12-11 10:29:10 +00001447}
1448
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001449//===----------------------------------------------------------------------===//
Robert Bocchino23004482006-01-10 19:05:34 +00001450// ExtractElementInst Implementation
1451//===----------------------------------------------------------------------===//
1452
1453ExtractElementInst::ExtractElementInst(Value *Val, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001454 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001455 Instruction *InsertBef)
Reid Spencerd84d35b2007-02-15 02:26:10 +00001456 : Instruction(cast<VectorType>(Val->getType())->getElementType(),
Gabor Greiff6caff662008-05-10 08:32:32 +00001457 ExtractElement,
1458 OperandTraits<ExtractElementInst>::op_begin(this),
1459 2, InsertBef) {
Chris Lattner54865b32006-04-08 04:05:48 +00001460 assert(isValidOperands(Val, Index) &&
1461 "Invalid extractelement instruction operands!");
Gabor Greif2d3024d2008-05-26 21:33:52 +00001462 Op<0>() = Val;
1463 Op<1>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001464 setName(Name);
Robert Bocchino23004482006-01-10 19:05:34 +00001465}
1466
1467ExtractElementInst::ExtractElementInst(Value *Val, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001468 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001469 BasicBlock *InsertAE)
Reid Spencerd84d35b2007-02-15 02:26:10 +00001470 : Instruction(cast<VectorType>(Val->getType())->getElementType(),
Gabor Greiff6caff662008-05-10 08:32:32 +00001471 ExtractElement,
1472 OperandTraits<ExtractElementInst>::op_begin(this),
1473 2, InsertAE) {
Chris Lattner54865b32006-04-08 04:05:48 +00001474 assert(isValidOperands(Val, Index) &&
1475 "Invalid extractelement instruction operands!");
1476
Gabor Greif2d3024d2008-05-26 21:33:52 +00001477 Op<0>() = Val;
1478 Op<1>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001479 setName(Name);
Robert Bocchino23004482006-01-10 19:05:34 +00001480}
1481
Chris Lattner65511ff2006-10-05 06:24:58 +00001482
Chris Lattner54865b32006-04-08 04:05:48 +00001483bool ExtractElementInst::isValidOperands(const Value *Val, const Value *Index) {
Michael J. Spencer1f10c5ea2014-05-01 22:12:39 +00001484 if (!Val->getType()->isVectorTy() || !Index->getType()->isIntegerTy())
Chris Lattner54865b32006-04-08 04:05:48 +00001485 return false;
1486 return true;
1487}
1488
1489
Robert Bocchino23004482006-01-10 19:05:34 +00001490//===----------------------------------------------------------------------===//
Robert Bocchinoca27f032006-01-17 20:07:22 +00001491// InsertElementInst Implementation
1492//===----------------------------------------------------------------------===//
1493
Chris Lattner54865b32006-04-08 04:05:48 +00001494InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001495 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001496 Instruction *InsertBef)
Gabor Greiff6caff662008-05-10 08:32:32 +00001497 : Instruction(Vec->getType(), InsertElement,
1498 OperandTraits<InsertElementInst>::op_begin(this),
1499 3, InsertBef) {
Chris Lattner54865b32006-04-08 04:05:48 +00001500 assert(isValidOperands(Vec, Elt, Index) &&
1501 "Invalid insertelement instruction operands!");
Gabor Greif2d3024d2008-05-26 21:33:52 +00001502 Op<0>() = Vec;
1503 Op<1>() = Elt;
1504 Op<2>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001505 setName(Name);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001506}
1507
Chris Lattner54865b32006-04-08 04:05:48 +00001508InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001509 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001510 BasicBlock *InsertAE)
Gabor Greiff6caff662008-05-10 08:32:32 +00001511 : Instruction(Vec->getType(), InsertElement,
1512 OperandTraits<InsertElementInst>::op_begin(this),
1513 3, InsertAE) {
Chris Lattner54865b32006-04-08 04:05:48 +00001514 assert(isValidOperands(Vec, Elt, Index) &&
1515 "Invalid insertelement instruction operands!");
1516
Gabor Greif2d3024d2008-05-26 21:33:52 +00001517 Op<0>() = Vec;
1518 Op<1>() = Elt;
1519 Op<2>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001520 setName(Name);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001521}
1522
Chris Lattner54865b32006-04-08 04:05:48 +00001523bool InsertElementInst::isValidOperands(const Value *Vec, const Value *Elt,
1524 const Value *Index) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001525 if (!Vec->getType()->isVectorTy())
Reid Spencer09575ba2007-02-15 03:39:18 +00001526 return false; // First operand of insertelement must be vector type.
Chris Lattner54865b32006-04-08 04:05:48 +00001527
Reid Spencerd84d35b2007-02-15 02:26:10 +00001528 if (Elt->getType() != cast<VectorType>(Vec->getType())->getElementType())
Dan Gohmanfead7972007-05-11 21:43:24 +00001529 return false;// Second operand of insertelement must be vector element type.
Chris Lattner54865b32006-04-08 04:05:48 +00001530
Michael J. Spencer1f10c5ea2014-05-01 22:12:39 +00001531 if (!Index->getType()->isIntegerTy())
Dan Gohman4fe64de2009-06-14 23:30:43 +00001532 return false; // Third operand of insertelement must be i32.
Chris Lattner54865b32006-04-08 04:05:48 +00001533 return true;
1534}
1535
1536
Robert Bocchinoca27f032006-01-17 20:07:22 +00001537//===----------------------------------------------------------------------===//
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001538// ShuffleVectorInst Implementation
1539//===----------------------------------------------------------------------===//
1540
1541ShuffleVectorInst::ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001542 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001543 Instruction *InsertBefore)
Owen Anderson4056ca92009-07-29 22:17:13 +00001544: Instruction(VectorType::get(cast<VectorType>(V1->getType())->getElementType(),
Mon P Wang25f01062008-11-10 04:46:22 +00001545 cast<VectorType>(Mask->getType())->getNumElements()),
1546 ShuffleVector,
1547 OperandTraits<ShuffleVectorInst>::op_begin(this),
1548 OperandTraits<ShuffleVectorInst>::operands(this),
1549 InsertBefore) {
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001550 assert(isValidOperands(V1, V2, Mask) &&
1551 "Invalid shuffle vector instruction operands!");
Gabor Greif2d3024d2008-05-26 21:33:52 +00001552 Op<0>() = V1;
1553 Op<1>() = V2;
1554 Op<2>() = Mask;
Chris Lattner2195fc42007-02-24 00:55:48 +00001555 setName(Name);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001556}
1557
1558ShuffleVectorInst::ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001559 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001560 BasicBlock *InsertAtEnd)
Dan Gohmane5af8cd2009-08-25 23:27:45 +00001561: Instruction(VectorType::get(cast<VectorType>(V1->getType())->getElementType(),
1562 cast<VectorType>(Mask->getType())->getNumElements()),
1563 ShuffleVector,
1564 OperandTraits<ShuffleVectorInst>::op_begin(this),
1565 OperandTraits<ShuffleVectorInst>::operands(this),
1566 InsertAtEnd) {
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001567 assert(isValidOperands(V1, V2, Mask) &&
1568 "Invalid shuffle vector instruction operands!");
1569
Gabor Greif2d3024d2008-05-26 21:33:52 +00001570 Op<0>() = V1;
1571 Op<1>() = V2;
1572 Op<2>() = Mask;
Chris Lattner2195fc42007-02-24 00:55:48 +00001573 setName(Name);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001574}
1575
Mon P Wang25f01062008-11-10 04:46:22 +00001576bool ShuffleVectorInst::isValidOperands(const Value *V1, const Value *V2,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001577 const Value *Mask) {
Chris Lattner1dcb6542012-01-25 23:49:49 +00001578 // V1 and V2 must be vectors of the same type.
Duncan Sands19d0b472010-02-16 11:11:14 +00001579 if (!V1->getType()->isVectorTy() || V1->getType() != V2->getType())
Chris Lattnerf724e342008-03-02 05:28:33 +00001580 return false;
1581
Chris Lattner1dcb6542012-01-25 23:49:49 +00001582 // Mask must be vector of i32.
Chris Lattner229907c2011-07-18 04:54:35 +00001583 VectorType *MaskTy = dyn_cast<VectorType>(Mask->getType());
Craig Topperc6207612014-04-09 06:08:46 +00001584 if (!MaskTy || !MaskTy->getElementType()->isIntegerTy(32))
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001585 return false;
Nate Begeman60a31c32010-08-13 00:16:46 +00001586
1587 // Check to see if Mask is valid.
Chris Lattner1dcb6542012-01-25 23:49:49 +00001588 if (isa<UndefValue>(Mask) || isa<ConstantAggregateZero>(Mask))
1589 return true;
1590
Nate Begeman60a31c32010-08-13 00:16:46 +00001591 if (const ConstantVector *MV = dyn_cast<ConstantVector>(Mask)) {
Chris Lattner1dcb6542012-01-25 23:49:49 +00001592 unsigned V1Size = cast<VectorType>(V1->getType())->getNumElements();
Benjamin Kramer3ad5c962014-03-10 15:03:06 +00001593 for (Value *Op : MV->operands()) {
1594 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op)) {
Chris Lattner1dcb6542012-01-25 23:49:49 +00001595 if (CI->uge(V1Size*2))
Nate Begeman60a31c32010-08-13 00:16:46 +00001596 return false;
Benjamin Kramer3ad5c962014-03-10 15:03:06 +00001597 } else if (!isa<UndefValue>(Op)) {
Nate Begeman60a31c32010-08-13 00:16:46 +00001598 return false;
1599 }
1600 }
Chris Lattner1dcb6542012-01-25 23:49:49 +00001601 return true;
Mon P Wang6ebf4012011-10-26 00:34:48 +00001602 }
Chris Lattner1dcb6542012-01-25 23:49:49 +00001603
1604 if (const ConstantDataSequential *CDS =
1605 dyn_cast<ConstantDataSequential>(Mask)) {
1606 unsigned V1Size = cast<VectorType>(V1->getType())->getNumElements();
1607 for (unsigned i = 0, e = MaskTy->getNumElements(); i != e; ++i)
1608 if (CDS->getElementAsInteger(i) >= V1Size*2)
1609 return false;
1610 return true;
1611 }
1612
1613 // The bitcode reader can create a place holder for a forward reference
1614 // used as the shuffle mask. When this occurs, the shuffle mask will
1615 // fall into this case and fail. To avoid this error, do this bit of
1616 // ugliness to allow such a mask pass.
1617 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(Mask))
1618 if (CE->getOpcode() == Instruction::UserOp1)
1619 return true;
1620
1621 return false;
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001622}
1623
Chris Lattnerf724e342008-03-02 05:28:33 +00001624/// getMaskValue - Return the index from the shuffle mask for the specified
1625/// output result. This is either -1 if the element is undef or a number less
1626/// than 2*numelements.
Chris Lattnercf129702012-01-26 02:51:13 +00001627int ShuffleVectorInst::getMaskValue(Constant *Mask, unsigned i) {
1628 assert(i < Mask->getType()->getVectorNumElements() && "Index out of range");
1629 if (ConstantDataSequential *CDS =dyn_cast<ConstantDataSequential>(Mask))
Chris Lattner1dcb6542012-01-25 23:49:49 +00001630 return CDS->getElementAsInteger(i);
Chris Lattnercf129702012-01-26 02:51:13 +00001631 Constant *C = Mask->getAggregateElement(i);
Chris Lattner1dcb6542012-01-25 23:49:49 +00001632 if (isa<UndefValue>(C))
Chris Lattnerf724e342008-03-02 05:28:33 +00001633 return -1;
Chris Lattner1dcb6542012-01-25 23:49:49 +00001634 return cast<ConstantInt>(C)->getZExtValue();
Chris Lattnerf724e342008-03-02 05:28:33 +00001635}
1636
Chris Lattner1dcb6542012-01-25 23:49:49 +00001637/// getShuffleMask - Return the full mask for this instruction, where each
1638/// element is the element number and undef's are returned as -1.
Chris Lattnercf129702012-01-26 02:51:13 +00001639void ShuffleVectorInst::getShuffleMask(Constant *Mask,
1640 SmallVectorImpl<int> &Result) {
1641 unsigned NumElts = Mask->getType()->getVectorNumElements();
Chris Lattner1dcb6542012-01-25 23:49:49 +00001642
Chris Lattnercf129702012-01-26 02:51:13 +00001643 if (ConstantDataSequential *CDS=dyn_cast<ConstantDataSequential>(Mask)) {
Chris Lattner1dcb6542012-01-25 23:49:49 +00001644 for (unsigned i = 0; i != NumElts; ++i)
1645 Result.push_back(CDS->getElementAsInteger(i));
1646 return;
1647 }
Chris Lattner1dcb6542012-01-25 23:49:49 +00001648 for (unsigned i = 0; i != NumElts; ++i) {
1649 Constant *C = Mask->getAggregateElement(i);
1650 Result.push_back(isa<UndefValue>(C) ? -1 :
Chris Lattner3dbad4032012-01-26 00:41:50 +00001651 cast<ConstantInt>(C)->getZExtValue());
Chris Lattner1dcb6542012-01-25 23:49:49 +00001652 }
1653}
1654
1655
Dan Gohman12fce772008-05-15 19:50:34 +00001656//===----------------------------------------------------------------------===//
Dan Gohman0752bff2008-05-23 00:36:11 +00001657// InsertValueInst Class
1658//===----------------------------------------------------------------------===//
1659
Jay Foad57aa6362011-07-13 10:26:04 +00001660void InsertValueInst::init(Value *Agg, Value *Val, ArrayRef<unsigned> Idxs,
1661 const Twine &Name) {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001662 assert(NumOperands == 2 && "NumOperands not initialized?");
Jay Foad57aa6362011-07-13 10:26:04 +00001663
1664 // There's no fundamental reason why we require at least one index
1665 // (other than weirdness with &*IdxBegin being invalid; see
1666 // getelementptr's init routine for example). But there's no
1667 // present need to support it.
1668 assert(Idxs.size() > 0 && "InsertValueInst must have at least one index");
1669
1670 assert(ExtractValueInst::getIndexedType(Agg->getType(), Idxs) ==
Frits van Bommel16ebe772010-12-05 20:50:26 +00001671 Val->getType() && "Inserted value must match indexed type!");
Dan Gohman1ecaf452008-05-31 00:58:22 +00001672 Op<0>() = Agg;
1673 Op<1>() = Val;
Dan Gohman0752bff2008-05-23 00:36:11 +00001674
Jay Foad57aa6362011-07-13 10:26:04 +00001675 Indices.append(Idxs.begin(), Idxs.end());
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001676 setName(Name);
Dan Gohman0752bff2008-05-23 00:36:11 +00001677}
1678
1679InsertValueInst::InsertValueInst(const InsertValueInst &IVI)
Gabor Greife9408e62008-05-27 11:03:29 +00001680 : Instruction(IVI.getType(), InsertValue,
Dan Gohman1ecaf452008-05-31 00:58:22 +00001681 OperandTraits<InsertValueInst>::op_begin(this), 2),
1682 Indices(IVI.Indices) {
Dan Gohmand8ca05f2008-06-17 23:25:49 +00001683 Op<0>() = IVI.getOperand(0);
1684 Op<1>() = IVI.getOperand(1);
Dan Gohmanc8a27f22009-08-25 22:11:20 +00001685 SubclassOptionalData = IVI.SubclassOptionalData;
Dan Gohman0752bff2008-05-23 00:36:11 +00001686}
1687
1688//===----------------------------------------------------------------------===//
Dan Gohman12fce772008-05-15 19:50:34 +00001689// ExtractValueInst Class
1690//===----------------------------------------------------------------------===//
1691
Jay Foad57aa6362011-07-13 10:26:04 +00001692void ExtractValueInst::init(ArrayRef<unsigned> Idxs, const Twine &Name) {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001693 assert(NumOperands == 1 && "NumOperands not initialized?");
Dan Gohman0752bff2008-05-23 00:36:11 +00001694
Jay Foad57aa6362011-07-13 10:26:04 +00001695 // There's no fundamental reason why we require at least one index.
1696 // But there's no present need to support it.
1697 assert(Idxs.size() > 0 && "ExtractValueInst must have at least one index");
Dan Gohman0752bff2008-05-23 00:36:11 +00001698
Jay Foad57aa6362011-07-13 10:26:04 +00001699 Indices.append(Idxs.begin(), Idxs.end());
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001700 setName(Name);
Dan Gohman0752bff2008-05-23 00:36:11 +00001701}
1702
1703ExtractValueInst::ExtractValueInst(const ExtractValueInst &EVI)
Gabor Greif21ba1842008-06-06 20:28:12 +00001704 : UnaryInstruction(EVI.getType(), ExtractValue, EVI.getOperand(0)),
Dan Gohman1ecaf452008-05-31 00:58:22 +00001705 Indices(EVI.Indices) {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00001706 SubclassOptionalData = EVI.SubclassOptionalData;
Dan Gohman0752bff2008-05-23 00:36:11 +00001707}
1708
Dan Gohman12fce772008-05-15 19:50:34 +00001709// getIndexedType - Returns the type of the element that would be extracted
1710// with an extractvalue instruction with the specified parameters.
1711//
1712// A null type is returned if the indices are invalid for the specified
1713// pointer type.
1714//
Chris Lattner229907c2011-07-18 04:54:35 +00001715Type *ExtractValueInst::getIndexedType(Type *Agg,
Jay Foad57aa6362011-07-13 10:26:04 +00001716 ArrayRef<unsigned> Idxs) {
Benjamin Kramer3ad5c962014-03-10 15:03:06 +00001717 for (unsigned Index : Idxs) {
Frits van Bommel16ebe772010-12-05 20:50:26 +00001718 // We can't use CompositeType::indexValid(Index) here.
1719 // indexValid() always returns true for arrays because getelementptr allows
1720 // out-of-bounds indices. Since we don't allow those for extractvalue and
1721 // insertvalue we need to check array indexing manually.
1722 // Since the only other types we can index into are struct types it's just
1723 // as easy to check those manually as well.
Chris Lattner229907c2011-07-18 04:54:35 +00001724 if (ArrayType *AT = dyn_cast<ArrayType>(Agg)) {
Frits van Bommel16ebe772010-12-05 20:50:26 +00001725 if (Index >= AT->getNumElements())
Craig Topperc6207612014-04-09 06:08:46 +00001726 return nullptr;
Chris Lattner229907c2011-07-18 04:54:35 +00001727 } else if (StructType *ST = dyn_cast<StructType>(Agg)) {
Frits van Bommel16ebe772010-12-05 20:50:26 +00001728 if (Index >= ST->getNumElements())
Craig Topperc6207612014-04-09 06:08:46 +00001729 return nullptr;
Frits van Bommel16ebe772010-12-05 20:50:26 +00001730 } else {
1731 // Not a valid type to index into.
Craig Topperc6207612014-04-09 06:08:46 +00001732 return nullptr;
Frits van Bommel16ebe772010-12-05 20:50:26 +00001733 }
1734
1735 Agg = cast<CompositeType>(Agg)->getTypeAtIndex(Index);
Dan Gohman12fce772008-05-15 19:50:34 +00001736 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001737 return const_cast<Type*>(Agg);
Dan Gohman12fce772008-05-15 19:50:34 +00001738}
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001739
1740//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001741// BinaryOperator Class
1742//===----------------------------------------------------------------------===//
1743
Chris Lattner2195fc42007-02-24 00:55:48 +00001744BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2,
Chris Lattner229907c2011-07-18 04:54:35 +00001745 Type *Ty, const Twine &Name,
Chris Lattner2195fc42007-02-24 00:55:48 +00001746 Instruction *InsertBefore)
Dan Gohmana2414ea2010-05-03 22:44:19 +00001747 : Instruction(Ty, iType,
Gabor Greiff6caff662008-05-10 08:32:32 +00001748 OperandTraits<BinaryOperator>::op_begin(this),
1749 OperandTraits<BinaryOperator>::operands(this),
1750 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001751 Op<0>() = S1;
1752 Op<1>() = S2;
Dan Gohmana2414ea2010-05-03 22:44:19 +00001753 init(iType);
Chris Lattner2195fc42007-02-24 00:55:48 +00001754 setName(Name);
1755}
1756
1757BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2,
Chris Lattner229907c2011-07-18 04:54:35 +00001758 Type *Ty, const Twine &Name,
Chris Lattner2195fc42007-02-24 00:55:48 +00001759 BasicBlock *InsertAtEnd)
Dan Gohmana2414ea2010-05-03 22:44:19 +00001760 : Instruction(Ty, iType,
Gabor Greiff6caff662008-05-10 08:32:32 +00001761 OperandTraits<BinaryOperator>::op_begin(this),
1762 OperandTraits<BinaryOperator>::operands(this),
1763 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001764 Op<0>() = S1;
1765 Op<1>() = S2;
Dan Gohmana2414ea2010-05-03 22:44:19 +00001766 init(iType);
Chris Lattner2195fc42007-02-24 00:55:48 +00001767 setName(Name);
1768}
1769
1770
1771void BinaryOperator::init(BinaryOps iType) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001772 Value *LHS = getOperand(0), *RHS = getOperand(1);
Jeffrey Yasskin9b43f332010-12-23 00:58:24 +00001773 (void)LHS; (void)RHS; // Silence warnings.
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001774 assert(LHS->getType() == RHS->getType() &&
1775 "Binary operator operand types must match!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001776#ifndef NDEBUG
1777 switch (iType) {
1778 case Add: case Sub:
Dan Gohmana5b96452009-06-04 22:49:04 +00001779 case Mul:
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001780 assert(getType() == LHS->getType() &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001781 "Arithmetic operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001782 assert(getType()->isIntOrIntVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001783 "Tried to create an integer operation on a non-integer type!");
1784 break;
1785 case FAdd: case FSub:
1786 case FMul:
1787 assert(getType() == LHS->getType() &&
1788 "Arithmetic operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001789 assert(getType()->isFPOrFPVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001790 "Tried to create a floating-point operation on a "
1791 "non-floating-point type!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001792 break;
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001793 case UDiv:
1794 case SDiv:
1795 assert(getType() == LHS->getType() &&
1796 "Arithmetic operation should return same type as operands!");
Duncan Sands19d0b472010-02-16 11:11:14 +00001797 assert((getType()->isIntegerTy() || (getType()->isVectorTy() &&
Duncan Sands9dff9be2010-02-15 16:12:20 +00001798 cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001799 "Incorrect operand type (not integer) for S/UDIV");
1800 break;
1801 case FDiv:
1802 assert(getType() == LHS->getType() &&
1803 "Arithmetic operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001804 assert(getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001805 "Incorrect operand type (not floating point) for FDIV");
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001806 break;
Reid Spencer7eb55b32006-11-02 01:53:59 +00001807 case URem:
1808 case SRem:
1809 assert(getType() == LHS->getType() &&
1810 "Arithmetic operation should return same type as operands!");
Duncan Sands19d0b472010-02-16 11:11:14 +00001811 assert((getType()->isIntegerTy() || (getType()->isVectorTy() &&
Duncan Sands9dff9be2010-02-15 16:12:20 +00001812 cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
Reid Spencer7eb55b32006-11-02 01:53:59 +00001813 "Incorrect operand type (not integer) for S/UREM");
1814 break;
1815 case FRem:
1816 assert(getType() == LHS->getType() &&
1817 "Arithmetic operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001818 assert(getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001819 "Incorrect operand type (not floating point) for FREM");
Reid Spencer7eb55b32006-11-02 01:53:59 +00001820 break;
Reid Spencer2341c222007-02-02 02:16:23 +00001821 case Shl:
1822 case LShr:
1823 case AShr:
1824 assert(getType() == LHS->getType() &&
1825 "Shift operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001826 assert((getType()->isIntegerTy() ||
Duncan Sands19d0b472010-02-16 11:11:14 +00001827 (getType()->isVectorTy() &&
Duncan Sands9dff9be2010-02-15 16:12:20 +00001828 cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
Nate Begemanfecbc8c2008-07-29 15:49:41 +00001829 "Tried to create a shift operation on a non-integral type!");
Reid Spencer2341c222007-02-02 02:16:23 +00001830 break;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001831 case And: case Or:
1832 case Xor:
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001833 assert(getType() == LHS->getType() &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001834 "Logical operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001835 assert((getType()->isIntegerTy() ||
Duncan Sands19d0b472010-02-16 11:11:14 +00001836 (getType()->isVectorTy() &&
Duncan Sands9dff9be2010-02-15 16:12:20 +00001837 cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
Misha Brukman3852f652005-01-27 06:46:38 +00001838 "Tried to create a logical operation on a non-integral type!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001839 break;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001840 default:
1841 break;
1842 }
1843#endif
1844}
1845
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001846BinaryOperator *BinaryOperator::Create(BinaryOps Op, Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001847 const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001848 Instruction *InsertBefore) {
1849 assert(S1->getType() == S2->getType() &&
1850 "Cannot create binary operator with two operands of differing type!");
Reid Spencer266e42b2006-12-23 06:05:41 +00001851 return new BinaryOperator(Op, S1, S2, S1->getType(), Name, InsertBefore);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001852}
1853
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001854BinaryOperator *BinaryOperator::Create(BinaryOps Op, Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001855 const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001856 BasicBlock *InsertAtEnd) {
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001857 BinaryOperator *Res = Create(Op, S1, S2, Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001858 InsertAtEnd->getInstList().push_back(Res);
1859 return Res;
1860}
1861
Dan Gohman5476cfd2009-08-12 16:23:25 +00001862BinaryOperator *BinaryOperator::CreateNeg(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001863 Instruction *InsertBefore) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001864 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Reid Spencer2eadb532007-01-21 00:29:26 +00001865 return new BinaryOperator(Instruction::Sub,
1866 zero, Op,
1867 Op->getType(), Name, InsertBefore);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001868}
1869
Dan Gohman5476cfd2009-08-12 16:23:25 +00001870BinaryOperator *BinaryOperator::CreateNeg(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001871 BasicBlock *InsertAtEnd) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001872 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Reid Spencer2eadb532007-01-21 00:29:26 +00001873 return new BinaryOperator(Instruction::Sub,
1874 zero, Op,
1875 Op->getType(), Name, InsertAtEnd);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001876}
1877
Dan Gohman4ab44202009-12-18 02:58:50 +00001878BinaryOperator *BinaryOperator::CreateNSWNeg(Value *Op, const Twine &Name,
1879 Instruction *InsertBefore) {
1880 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1881 return BinaryOperator::CreateNSWSub(zero, Op, Name, InsertBefore);
1882}
1883
1884BinaryOperator *BinaryOperator::CreateNSWNeg(Value *Op, const Twine &Name,
1885 BasicBlock *InsertAtEnd) {
1886 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1887 return BinaryOperator::CreateNSWSub(zero, Op, Name, InsertAtEnd);
1888}
1889
Duncan Sandsfa5f5962010-02-02 12:53:04 +00001890BinaryOperator *BinaryOperator::CreateNUWNeg(Value *Op, const Twine &Name,
1891 Instruction *InsertBefore) {
1892 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1893 return BinaryOperator::CreateNUWSub(zero, Op, Name, InsertBefore);
1894}
1895
1896BinaryOperator *BinaryOperator::CreateNUWNeg(Value *Op, const Twine &Name,
1897 BasicBlock *InsertAtEnd) {
1898 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1899 return BinaryOperator::CreateNUWSub(zero, Op, Name, InsertAtEnd);
1900}
1901
Dan Gohman5476cfd2009-08-12 16:23:25 +00001902BinaryOperator *BinaryOperator::CreateFNeg(Value *Op, const Twine &Name,
Dan Gohmana5b96452009-06-04 22:49:04 +00001903 Instruction *InsertBefore) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001904 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Chris Lattner47a86bd2012-01-25 06:02:56 +00001905 return new BinaryOperator(Instruction::FSub, zero, Op,
Dan Gohmana5b96452009-06-04 22:49:04 +00001906 Op->getType(), Name, InsertBefore);
1907}
1908
Dan Gohman5476cfd2009-08-12 16:23:25 +00001909BinaryOperator *BinaryOperator::CreateFNeg(Value *Op, const Twine &Name,
Dan Gohmana5b96452009-06-04 22:49:04 +00001910 BasicBlock *InsertAtEnd) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001911 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Chris Lattner47a86bd2012-01-25 06:02:56 +00001912 return new BinaryOperator(Instruction::FSub, zero, Op,
Dan Gohmana5b96452009-06-04 22:49:04 +00001913 Op->getType(), Name, InsertAtEnd);
1914}
1915
Dan Gohman5476cfd2009-08-12 16:23:25 +00001916BinaryOperator *BinaryOperator::CreateNot(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001917 Instruction *InsertBefore) {
Chris Lattner47a86bd2012-01-25 06:02:56 +00001918 Constant *C = Constant::getAllOnesValue(Op->getType());
Chris Lattnere8e7ac42006-03-25 21:54:21 +00001919 return new BinaryOperator(Instruction::Xor, Op, C,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001920 Op->getType(), Name, InsertBefore);
1921}
1922
Dan Gohman5476cfd2009-08-12 16:23:25 +00001923BinaryOperator *BinaryOperator::CreateNot(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001924 BasicBlock *InsertAtEnd) {
Chris Lattner47a86bd2012-01-25 06:02:56 +00001925 Constant *AllOnes = Constant::getAllOnesValue(Op->getType());
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001926 return new BinaryOperator(Instruction::Xor, Op, AllOnes,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001927 Op->getType(), Name, InsertAtEnd);
1928}
1929
1930
1931// isConstantAllOnes - Helper function for several functions below
1932static inline bool isConstantAllOnes(const Value *V) {
Chris Lattner0256be92012-01-27 03:08:05 +00001933 if (const Constant *C = dyn_cast<Constant>(V))
1934 return C->isAllOnesValue();
Chris Lattner1edec382007-06-15 06:04:24 +00001935 return false;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001936}
1937
Owen Andersonbb2501b2009-07-13 22:18:28 +00001938bool BinaryOperator::isNeg(const Value *V) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001939 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1940 if (Bop->getOpcode() == Instruction::Sub)
Owen Andersonbb2501b2009-07-13 22:18:28 +00001941 if (Constant* C = dyn_cast<Constant>(Bop->getOperand(0)))
1942 return C->isNegativeZeroValue();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001943 return false;
1944}
1945
Shuxin Yangf0537ab2013-01-09 00:13:41 +00001946bool BinaryOperator::isFNeg(const Value *V, bool IgnoreZeroSign) {
Dan Gohmana5b96452009-06-04 22:49:04 +00001947 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1948 if (Bop->getOpcode() == Instruction::FSub)
Shuxin Yangf0537ab2013-01-09 00:13:41 +00001949 if (Constant* C = dyn_cast<Constant>(Bop->getOperand(0))) {
1950 if (!IgnoreZeroSign)
1951 IgnoreZeroSign = cast<Instruction>(V)->hasNoSignedZeros();
1952 return !IgnoreZeroSign ? C->isNegativeZeroValue() : C->isZeroValue();
1953 }
Dan Gohmana5b96452009-06-04 22:49:04 +00001954 return false;
1955}
1956
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001957bool BinaryOperator::isNot(const Value *V) {
1958 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1959 return (Bop->getOpcode() == Instruction::Xor &&
1960 (isConstantAllOnes(Bop->getOperand(1)) ||
1961 isConstantAllOnes(Bop->getOperand(0))));
1962 return false;
1963}
1964
Chris Lattner2c7d1772005-04-24 07:28:37 +00001965Value *BinaryOperator::getNegArgument(Value *BinOp) {
Chris Lattner2c7d1772005-04-24 07:28:37 +00001966 return cast<BinaryOperator>(BinOp)->getOperand(1);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001967}
1968
Chris Lattner2c7d1772005-04-24 07:28:37 +00001969const Value *BinaryOperator::getNegArgument(const Value *BinOp) {
1970 return getNegArgument(const_cast<Value*>(BinOp));
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001971}
1972
Dan Gohmana5b96452009-06-04 22:49:04 +00001973Value *BinaryOperator::getFNegArgument(Value *BinOp) {
Dan Gohmana5b96452009-06-04 22:49:04 +00001974 return cast<BinaryOperator>(BinOp)->getOperand(1);
1975}
1976
1977const Value *BinaryOperator::getFNegArgument(const Value *BinOp) {
1978 return getFNegArgument(const_cast<Value*>(BinOp));
1979}
1980
Chris Lattner2c7d1772005-04-24 07:28:37 +00001981Value *BinaryOperator::getNotArgument(Value *BinOp) {
1982 assert(isNot(BinOp) && "getNotArgument on non-'not' instruction!");
1983 BinaryOperator *BO = cast<BinaryOperator>(BinOp);
1984 Value *Op0 = BO->getOperand(0);
1985 Value *Op1 = BO->getOperand(1);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001986 if (isConstantAllOnes(Op0)) return Op1;
1987
1988 assert(isConstantAllOnes(Op1));
1989 return Op0;
1990}
1991
Chris Lattner2c7d1772005-04-24 07:28:37 +00001992const Value *BinaryOperator::getNotArgument(const Value *BinOp) {
1993 return getNotArgument(const_cast<Value*>(BinOp));
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001994}
1995
1996
1997// swapOperands - Exchange the two operands to this instruction. This
1998// instruction is safe to use on any binary instruction and does not
1999// modify the semantics of the instruction. If the instruction is
2000// order dependent (SetLT f.e.) the opcode is changed.
2001//
2002bool BinaryOperator::swapOperands() {
Reid Spencer266e42b2006-12-23 06:05:41 +00002003 if (!isCommutative())
2004 return true; // Can't commute operands
Gabor Greif5ef74042008-05-13 22:51:52 +00002005 Op<0>().swap(Op<1>());
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002006 return false;
2007}
2008
Dan Gohman1b849082009-09-07 23:54:19 +00002009void BinaryOperator::setHasNoUnsignedWrap(bool b) {
2010 cast<OverflowingBinaryOperator>(this)->setHasNoUnsignedWrap(b);
2011}
2012
2013void BinaryOperator::setHasNoSignedWrap(bool b) {
2014 cast<OverflowingBinaryOperator>(this)->setHasNoSignedWrap(b);
2015}
2016
2017void BinaryOperator::setIsExact(bool b) {
Chris Lattner35315d02011-02-06 21:44:57 +00002018 cast<PossiblyExactOperator>(this)->setIsExact(b);
Dan Gohman1b849082009-09-07 23:54:19 +00002019}
2020
Nick Lewycky28a5f252009-09-27 21:33:04 +00002021bool BinaryOperator::hasNoUnsignedWrap() const {
2022 return cast<OverflowingBinaryOperator>(this)->hasNoUnsignedWrap();
2023}
2024
2025bool BinaryOperator::hasNoSignedWrap() const {
2026 return cast<OverflowingBinaryOperator>(this)->hasNoSignedWrap();
2027}
2028
2029bool BinaryOperator::isExact() const {
Chris Lattner35315d02011-02-06 21:44:57 +00002030 return cast<PossiblyExactOperator>(this)->isExact();
Nick Lewycky28a5f252009-09-27 21:33:04 +00002031}
2032
Sanjay Patela982d992014-09-03 01:06:50 +00002033void BinaryOperator::copyIRFlags(const Value *V) {
Sanjay Patel5ad239e2014-09-01 18:44:57 +00002034 // Copy the wrapping flags.
2035 if (auto *OB = dyn_cast<OverflowingBinaryOperator>(V)) {
2036 setHasNoSignedWrap(OB->hasNoSignedWrap());
2037 setHasNoUnsignedWrap(OB->hasNoUnsignedWrap());
2038 }
2039
2040 // Copy the exact flag.
2041 if (auto *PE = dyn_cast<PossiblyExactOperator>(V))
2042 setIsExact(PE->isExact());
2043
2044 // Copy the fast-math flags.
2045 if (auto *FP = dyn_cast<FPMathOperator>(V))
Sanjay Patelb2325b92014-09-02 20:03:00 +00002046 copyFastMathFlags(FP->getFastMathFlags());
Sanjay Patel5ad239e2014-09-01 18:44:57 +00002047}
2048
Sanjay Patela982d992014-09-03 01:06:50 +00002049void BinaryOperator::andIRFlags(const Value *V) {
2050 if (auto *OB = dyn_cast<OverflowingBinaryOperator>(V)) {
2051 setHasNoSignedWrap(hasNoSignedWrap() & OB->hasNoSignedWrap());
2052 setHasNoUnsignedWrap(hasNoUnsignedWrap() & OB->hasNoUnsignedWrap());
2053 }
2054
2055 if (auto *PE = dyn_cast<PossiblyExactOperator>(V))
2056 setIsExact(isExact() & PE->isExact());
2057
2058 if (auto *FP = dyn_cast<FPMathOperator>(V)) {
2059 FastMathFlags FM = getFastMathFlags();
2060 FM &= FP->getFastMathFlags();
2061 copyFastMathFlags(FM);
2062 }
2063}
2064
2065
Chris Lattnerb0b8ddd2006-09-18 04:54:57 +00002066//===----------------------------------------------------------------------===//
Duncan Sands05f4df82012-04-16 16:28:59 +00002067// FPMathOperator Class
2068//===----------------------------------------------------------------------===//
2069
2070/// getFPAccuracy - Get the maximum error permitted by this operation in ULPs.
2071/// An accuracy of 0.0 means that the operation should be performed with the
Duncan Sands9af62982012-04-16 19:39:33 +00002072/// default precision.
Duncan Sands05f4df82012-04-16 16:28:59 +00002073float FPMathOperator::getFPAccuracy() const {
2074 const MDNode *MD =
2075 cast<Instruction>(this)->getMetadata(LLVMContext::MD_fpmath);
2076 if (!MD)
2077 return 0.0;
Duncan Sands9af62982012-04-16 19:39:33 +00002078 ConstantFP *Accuracy = cast<ConstantFP>(MD->getOperand(0));
2079 return Accuracy->getValueAPF().convertToFloat();
Duncan Sands05f4df82012-04-16 16:28:59 +00002080}
2081
2082
2083//===----------------------------------------------------------------------===//
Chris Lattnerb0b8ddd2006-09-18 04:54:57 +00002084// CastInst Class
2085//===----------------------------------------------------------------------===//
2086
David Blaikie3a15e142011-12-01 08:00:17 +00002087void CastInst::anchor() {}
2088
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002089// Just determine if this cast only deals with integral->integral conversion.
2090bool CastInst::isIntegerCast() const {
2091 switch (getOpcode()) {
2092 default: return false;
2093 case Instruction::ZExt:
2094 case Instruction::SExt:
2095 case Instruction::Trunc:
2096 return true;
2097 case Instruction::BitCast:
Duncan Sands9dff9be2010-02-15 16:12:20 +00002098 return getOperand(0)->getType()->isIntegerTy() &&
2099 getType()->isIntegerTy();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002100 }
Chris Lattnerb0b8ddd2006-09-18 04:54:57 +00002101}
2102
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002103bool CastInst::isLosslessCast() const {
2104 // Only BitCast can be lossless, exit fast if we're not BitCast
2105 if (getOpcode() != Instruction::BitCast)
2106 return false;
2107
2108 // Identity cast is always lossless
Chris Lattner229907c2011-07-18 04:54:35 +00002109 Type* SrcTy = getOperand(0)->getType();
2110 Type* DstTy = getType();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002111 if (SrcTy == DstTy)
2112 return true;
2113
Reid Spencer8d9336d2006-12-31 05:26:44 +00002114 // Pointer to pointer is always lossless.
Duncan Sands19d0b472010-02-16 11:11:14 +00002115 if (SrcTy->isPointerTy())
2116 return DstTy->isPointerTy();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002117 return false; // Other types have no identity values
2118}
2119
2120/// This function determines if the CastInst does not require any bits to be
2121/// changed in order to effect the cast. Essentially, it identifies cases where
2122/// no code gen is necessary for the cast, hence the name no-op cast. For
2123/// example, the following are all no-op casts:
Dan Gohmane9bc2ba2008-05-12 16:34:30 +00002124/// # bitcast i32* %x to i8*
2125/// # bitcast <2 x i32> %x to <4 x i16>
2126/// # ptrtoint i32* %x to i32 ; on 32-bit plaforms only
Dan Gohman0d7f3b82010-05-28 21:41:37 +00002127/// @brief Determine if the described cast is a no-op.
2128bool CastInst::isNoopCast(Instruction::CastOps Opcode,
Chris Lattner229907c2011-07-18 04:54:35 +00002129 Type *SrcTy,
2130 Type *DestTy,
2131 Type *IntPtrTy) {
Dan Gohman0d7f3b82010-05-28 21:41:37 +00002132 switch (Opcode) {
Craig Topperc514b542012-02-05 22:14:15 +00002133 default: llvm_unreachable("Invalid CastOp");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002134 case Instruction::Trunc:
2135 case Instruction::ZExt:
2136 case Instruction::SExt:
2137 case Instruction::FPTrunc:
2138 case Instruction::FPExt:
2139 case Instruction::UIToFP:
2140 case Instruction::SIToFP:
2141 case Instruction::FPToUI:
2142 case Instruction::FPToSI:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002143 case Instruction::AddrSpaceCast:
2144 // TODO: Target informations may give a more accurate answer here.
2145 return false;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002146 case Instruction::BitCast:
2147 return true; // BitCast never modifies bits.
2148 case Instruction::PtrToInt:
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002149 return IntPtrTy->getScalarSizeInBits() ==
Dan Gohman0d7f3b82010-05-28 21:41:37 +00002150 DestTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002151 case Instruction::IntToPtr:
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002152 return IntPtrTy->getScalarSizeInBits() ==
Dan Gohman0d7f3b82010-05-28 21:41:37 +00002153 SrcTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002154 }
2155}
2156
Dan Gohman0d7f3b82010-05-28 21:41:37 +00002157/// @brief Determine if a cast is a no-op.
Chris Lattner229907c2011-07-18 04:54:35 +00002158bool CastInst::isNoopCast(Type *IntPtrTy) const {
Dan Gohman0d7f3b82010-05-28 21:41:37 +00002159 return isNoopCast(getOpcode(), getOperand(0)->getType(), getType(), IntPtrTy);
2160}
2161
Matt Arsenaulta236ea52014-03-06 17:33:55 +00002162bool CastInst::isNoopCast(const DataLayout *DL) const {
2163 if (!DL) {
2164 // Assume maximum pointer size.
2165 return isNoopCast(Type::getInt64Ty(getContext()));
2166 }
2167
Craig Topperc6207612014-04-09 06:08:46 +00002168 Type *PtrOpTy = nullptr;
Matt Arsenaulta236ea52014-03-06 17:33:55 +00002169 if (getOpcode() == Instruction::PtrToInt)
2170 PtrOpTy = getOperand(0)->getType();
2171 else if (getOpcode() == Instruction::IntToPtr)
2172 PtrOpTy = getType();
2173
2174 Type *IntPtrTy = PtrOpTy
2175 ? DL->getIntPtrType(PtrOpTy)
2176 : DL->getIntPtrType(getContext(), 0);
2177
2178 return isNoopCast(getOpcode(), getOperand(0)->getType(), getType(), IntPtrTy);
2179}
2180
2181/// This function determines if a pair of casts can be eliminated and what
2182/// opcode should be used in the elimination. This assumes that there are two
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002183/// instructions like this:
2184/// * %F = firstOpcode SrcTy %x to MidTy
2185/// * %S = secondOpcode MidTy %F to DstTy
2186/// The function returns a resultOpcode so these two casts can be replaced with:
2187/// * %Replacement = resultOpcode %SrcTy %x to DstTy
2188/// If no such cast is permited, the function returns 0.
2189unsigned CastInst::isEliminableCastPair(
2190 Instruction::CastOps firstOp, Instruction::CastOps secondOp,
Duncan Sandse2395dc2012-10-30 16:03:32 +00002191 Type *SrcTy, Type *MidTy, Type *DstTy, Type *SrcIntPtrTy, Type *MidIntPtrTy,
2192 Type *DstIntPtrTy) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002193 // Define the 144 possibilities for these two cast instructions. The values
2194 // in this matrix determine what to do in a given situation and select the
2195 // case in the switch below. The rows correspond to firstOp, the columns
2196 // correspond to secondOp. In looking at the table below, keep in mind
2197 // the following cast properties:
2198 //
2199 // Size Compare Source Destination
2200 // Operator Src ? Size Type Sign Type Sign
2201 // -------- ------------ ------------------- ---------------------
2202 // TRUNC > Integer Any Integral Any
2203 // ZEXT < Integral Unsigned Integer Any
2204 // SEXT < Integral Signed Integer Any
2205 // FPTOUI n/a FloatPt n/a Integral Unsigned
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002206 // FPTOSI n/a FloatPt n/a Integral Signed
2207 // UITOFP n/a Integral Unsigned FloatPt n/a
2208 // SITOFP n/a Integral Signed FloatPt n/a
2209 // FPTRUNC > FloatPt n/a FloatPt n/a
2210 // FPEXT < FloatPt n/a FloatPt n/a
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002211 // PTRTOINT n/a Pointer n/a Integral Unsigned
2212 // INTTOPTR n/a Integral Unsigned Pointer n/a
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002213 // BITCAST = FirstClass n/a FirstClass n/a
2214 // ADDRSPCST n/a Pointer n/a Pointer n/a
Chris Lattner6f6b4972006-12-05 23:43:59 +00002215 //
2216 // NOTE: some transforms are safe, but we consider them to be non-profitable.
Dan Gohman4fe64de2009-06-14 23:30:43 +00002217 // For example, we could merge "fptoui double to i32" + "zext i32 to i64",
2218 // into "fptoui double to i64", but this loses information about the range
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002219 // of the produced value (we no longer know the top-part is all zeros).
Chris Lattner6f6b4972006-12-05 23:43:59 +00002220 // Further this conversion is often much more expensive for typical hardware,
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002221 // and causes issues when building libgcc. We disallow fptosi+sext for the
Chris Lattner6f6b4972006-12-05 23:43:59 +00002222 // same reason.
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002223 const unsigned numCastOps =
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002224 Instruction::CastOpsEnd - Instruction::CastOpsBegin;
2225 static const uint8_t CastResults[numCastOps][numCastOps] = {
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002226 // T F F U S F F P I B A -+
2227 // R Z S P P I I T P 2 N T S |
2228 // U E E 2 2 2 2 R E I T C C +- secondOp
2229 // N X X U S F F N X N 2 V V |
2230 // C T T I I P P C T T P T T -+
2231 { 1, 0, 0,99,99, 0, 0,99,99,99, 0, 3, 0}, // Trunc -+
2232 { 8, 1, 9,99,99, 2, 0,99,99,99, 2, 3, 0}, // ZExt |
2233 { 8, 0, 1,99,99, 0, 2,99,99,99, 0, 3, 0}, // SExt |
2234 { 0, 0, 0,99,99, 0, 0,99,99,99, 0, 3, 0}, // FPToUI |
2235 { 0, 0, 0,99,99, 0, 0,99,99,99, 0, 3, 0}, // FPToSI |
2236 { 99,99,99, 0, 0,99,99, 0, 0,99,99, 4, 0}, // UIToFP +- firstOp
2237 { 99,99,99, 0, 0,99,99, 0, 0,99,99, 4, 0}, // SIToFP |
2238 { 99,99,99, 0, 0,99,99, 1, 0,99,99, 4, 0}, // FPTrunc |
2239 { 99,99,99, 2, 2,99,99,10, 2,99,99, 4, 0}, // FPExt |
2240 { 1, 0, 0,99,99, 0, 0,99,99,99, 7, 3, 0}, // PtrToInt |
2241 { 99,99,99,99,99,99,99,99,99,11,99,15, 0}, // IntToPtr |
2242 { 5, 5, 5, 6, 6, 5, 5, 6, 6,16, 5, 1,14}, // BitCast |
2243 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13,12}, // AddrSpaceCast -+
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002244 };
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002245
Chris Lattner25eea4d2010-07-12 01:19:22 +00002246 // If either of the casts are a bitcast from scalar to vector, disallow the
Nadav Rotem5fc81ff2011-08-29 19:58:36 +00002247 // merging. However, bitcast of A->B->A are allowed.
2248 bool isFirstBitcast = (firstOp == Instruction::BitCast);
2249 bool isSecondBitcast = (secondOp == Instruction::BitCast);
2250 bool chainedBitcast = (SrcTy == DstTy && isFirstBitcast && isSecondBitcast);
2251
2252 // Check if any of the bitcasts convert scalars<->vectors.
2253 if ((isFirstBitcast && isa<VectorType>(SrcTy) != isa<VectorType>(MidTy)) ||
2254 (isSecondBitcast && isa<VectorType>(MidTy) != isa<VectorType>(DstTy)))
2255 // Unless we are bitcasing to the original type, disallow optimizations.
2256 if (!chainedBitcast) return 0;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002257
2258 int ElimCase = CastResults[firstOp-Instruction::CastOpsBegin]
2259 [secondOp-Instruction::CastOpsBegin];
2260 switch (ElimCase) {
2261 case 0:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002262 // Categorically disallowed.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002263 return 0;
2264 case 1:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002265 // Allowed, use first cast's opcode.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002266 return firstOp;
2267 case 2:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002268 // Allowed, use second cast's opcode.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002269 return secondOp;
2270 case 3:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002271 // No-op cast in second op implies firstOp as long as the DestTy
Mon P Wange04b4562010-01-23 04:35:57 +00002272 // is integer and we are not converting between a vector and a
Alp Tokerf907b892013-12-05 05:44:44 +00002273 // non-vector type.
Duncan Sands19d0b472010-02-16 11:11:14 +00002274 if (!SrcTy->isVectorTy() && DstTy->isIntegerTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002275 return firstOp;
2276 return 0;
2277 case 4:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002278 // No-op cast in second op implies firstOp as long as the DestTy
Chris Lattner531732b2010-01-23 04:42:42 +00002279 // is floating point.
Duncan Sands9dff9be2010-02-15 16:12:20 +00002280 if (DstTy->isFloatingPointTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002281 return firstOp;
2282 return 0;
2283 case 5:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002284 // No-op cast in first op implies secondOp as long as the SrcTy
Chris Lattner531732b2010-01-23 04:42:42 +00002285 // is an integer.
Duncan Sands9dff9be2010-02-15 16:12:20 +00002286 if (SrcTy->isIntegerTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002287 return secondOp;
2288 return 0;
2289 case 6:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002290 // No-op cast in first op implies secondOp as long as the SrcTy
Chris Lattner531732b2010-01-23 04:42:42 +00002291 // is a floating point.
Duncan Sands9dff9be2010-02-15 16:12:20 +00002292 if (SrcTy->isFloatingPointTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002293 return secondOp;
2294 return 0;
Matt Arsenault130e0ef2013-07-30 22:27:10 +00002295 case 7: {
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002296 // Cannot simplify if address spaces are different!
2297 if (SrcTy->getPointerAddressSpace() != DstTy->getPointerAddressSpace())
2298 return 0;
2299
Matt Arsenault130e0ef2013-07-30 22:27:10 +00002300 unsigned MidSize = MidTy->getScalarSizeInBits();
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002301 // We can still fold this without knowing the actual sizes as long we
2302 // know that the intermediate pointer is the largest possible
2303 // pointer size.
2304 // FIXME: Is this always true?
2305 if (MidSize == 64)
Matt Arsenault130e0ef2013-07-30 22:27:10 +00002306 return Instruction::BitCast;
2307
2308 // ptrtoint, inttoptr -> bitcast (ptr -> ptr) if int size is >= ptr size.
Duncan Sandse2395dc2012-10-30 16:03:32 +00002309 if (!SrcIntPtrTy || DstIntPtrTy != SrcIntPtrTy)
Dan Gohman9413de12009-07-21 23:19:40 +00002310 return 0;
Duncan Sandse2395dc2012-10-30 16:03:32 +00002311 unsigned PtrSize = SrcIntPtrTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002312 if (MidSize >= PtrSize)
2313 return Instruction::BitCast;
2314 return 0;
2315 }
2316 case 8: {
2317 // ext, trunc -> bitcast, if the SrcTy and DstTy are same size
2318 // ext, trunc -> ext, if sizeof(SrcTy) < sizeof(DstTy)
2319 // ext, trunc -> trunc, if sizeof(SrcTy) > sizeof(DstTy)
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002320 unsigned SrcSize = SrcTy->getScalarSizeInBits();
2321 unsigned DstSize = DstTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002322 if (SrcSize == DstSize)
2323 return Instruction::BitCast;
2324 else if (SrcSize < DstSize)
2325 return firstOp;
2326 return secondOp;
2327 }
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002328 case 9:
2329 // zext, sext -> zext, because sext can't sign extend after zext
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002330 return Instruction::ZExt;
2331 case 10:
2332 // fpext followed by ftrunc is allowed if the bit size returned to is
2333 // the same as the original, in which case its just a bitcast
2334 if (SrcTy == DstTy)
2335 return Instruction::BitCast;
2336 return 0; // If the types are not the same we can't eliminate it.
Matt Arsenault130e0ef2013-07-30 22:27:10 +00002337 case 11: {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002338 // inttoptr, ptrtoint -> bitcast if SrcSize<=PtrSize and SrcSize==DstSize
Duncan Sandse2395dc2012-10-30 16:03:32 +00002339 if (!MidIntPtrTy)
Dan Gohman9413de12009-07-21 23:19:40 +00002340 return 0;
Duncan Sandse2395dc2012-10-30 16:03:32 +00002341 unsigned PtrSize = MidIntPtrTy->getScalarSizeInBits();
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002342 unsigned SrcSize = SrcTy->getScalarSizeInBits();
2343 unsigned DstSize = DstTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002344 if (SrcSize <= PtrSize && SrcSize == DstSize)
2345 return Instruction::BitCast;
2346 return 0;
2347 }
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002348 case 12: {
2349 // addrspacecast, addrspacecast -> bitcast, if SrcAS == DstAS
2350 // addrspacecast, addrspacecast -> addrspacecast, if SrcAS != DstAS
2351 if (SrcTy->getPointerAddressSpace() != DstTy->getPointerAddressSpace())
2352 return Instruction::AddrSpaceCast;
2353 return Instruction::BitCast;
2354 }
2355 case 13:
2356 // FIXME: this state can be merged with (1), but the following assert
2357 // is useful to check the correcteness of the sequence due to semantic
2358 // change of bitcast.
2359 assert(
2360 SrcTy->isPtrOrPtrVectorTy() &&
2361 MidTy->isPtrOrPtrVectorTy() &&
2362 DstTy->isPtrOrPtrVectorTy() &&
2363 SrcTy->getPointerAddressSpace() != MidTy->getPointerAddressSpace() &&
2364 MidTy->getPointerAddressSpace() == DstTy->getPointerAddressSpace() &&
2365 "Illegal addrspacecast, bitcast sequence!");
2366 // Allowed, use first cast's opcode
2367 return firstOp;
2368 case 14:
Jingyue Wu77145d92014-06-06 21:52:55 +00002369 // bitcast, addrspacecast -> addrspacecast if the element type of
2370 // bitcast's source is the same as that of addrspacecast's destination.
2371 if (SrcTy->getPointerElementType() == DstTy->getPointerElementType())
2372 return Instruction::AddrSpaceCast;
2373 return 0;
2374
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002375 case 15:
2376 // FIXME: this state can be merged with (1), but the following assert
2377 // is useful to check the correcteness of the sequence due to semantic
2378 // change of bitcast.
2379 assert(
2380 SrcTy->isIntOrIntVectorTy() &&
2381 MidTy->isPtrOrPtrVectorTy() &&
2382 DstTy->isPtrOrPtrVectorTy() &&
2383 MidTy->getPointerAddressSpace() == DstTy->getPointerAddressSpace() &&
2384 "Illegal inttoptr, bitcast sequence!");
2385 // Allowed, use first cast's opcode
2386 return firstOp;
2387 case 16:
2388 // FIXME: this state can be merged with (2), but the following assert
2389 // is useful to check the correcteness of the sequence due to semantic
2390 // change of bitcast.
2391 assert(
2392 SrcTy->isPtrOrPtrVectorTy() &&
2393 MidTy->isPtrOrPtrVectorTy() &&
2394 DstTy->isIntOrIntVectorTy() &&
2395 SrcTy->getPointerAddressSpace() == MidTy->getPointerAddressSpace() &&
2396 "Illegal bitcast, ptrtoint sequence!");
2397 // Allowed, use second cast's opcode
2398 return secondOp;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002399 case 99:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002400 // Cast combination can't happen (error in input). This is for all cases
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002401 // where the MidTy is not the same for the two cast instructions.
Craig Topperc514b542012-02-05 22:14:15 +00002402 llvm_unreachable("Invalid Cast Combination");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002403 default:
Craig Topperc514b542012-02-05 22:14:15 +00002404 llvm_unreachable("Error in CastResults table!!!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002405 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002406}
2407
Chris Lattner229907c2011-07-18 04:54:35 +00002408CastInst *CastInst::Create(Instruction::CastOps op, Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002409 const Twine &Name, Instruction *InsertBefore) {
Duncan Sands7f646562011-05-18 09:21:57 +00002410 assert(castIsValid(op, S, Ty) && "Invalid cast!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002411 // Construct and return the appropriate CastInst subclass
2412 switch (op) {
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002413 case Trunc: return new TruncInst (S, Ty, Name, InsertBefore);
2414 case ZExt: return new ZExtInst (S, Ty, Name, InsertBefore);
2415 case SExt: return new SExtInst (S, Ty, Name, InsertBefore);
2416 case FPTrunc: return new FPTruncInst (S, Ty, Name, InsertBefore);
2417 case FPExt: return new FPExtInst (S, Ty, Name, InsertBefore);
2418 case UIToFP: return new UIToFPInst (S, Ty, Name, InsertBefore);
2419 case SIToFP: return new SIToFPInst (S, Ty, Name, InsertBefore);
2420 case FPToUI: return new FPToUIInst (S, Ty, Name, InsertBefore);
2421 case FPToSI: return new FPToSIInst (S, Ty, Name, InsertBefore);
2422 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertBefore);
2423 case IntToPtr: return new IntToPtrInst (S, Ty, Name, InsertBefore);
2424 case BitCast: return new BitCastInst (S, Ty, Name, InsertBefore);
2425 case AddrSpaceCast: return new AddrSpaceCastInst (S, Ty, Name, InsertBefore);
2426 default: llvm_unreachable("Invalid opcode provided");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002427 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002428}
2429
Chris Lattner229907c2011-07-18 04:54:35 +00002430CastInst *CastInst::Create(Instruction::CastOps op, Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002431 const Twine &Name, BasicBlock *InsertAtEnd) {
Duncan Sands7f646562011-05-18 09:21:57 +00002432 assert(castIsValid(op, S, Ty) && "Invalid cast!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002433 // Construct and return the appropriate CastInst subclass
2434 switch (op) {
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002435 case Trunc: return new TruncInst (S, Ty, Name, InsertAtEnd);
2436 case ZExt: return new ZExtInst (S, Ty, Name, InsertAtEnd);
2437 case SExt: return new SExtInst (S, Ty, Name, InsertAtEnd);
2438 case FPTrunc: return new FPTruncInst (S, Ty, Name, InsertAtEnd);
2439 case FPExt: return new FPExtInst (S, Ty, Name, InsertAtEnd);
2440 case UIToFP: return new UIToFPInst (S, Ty, Name, InsertAtEnd);
2441 case SIToFP: return new SIToFPInst (S, Ty, Name, InsertAtEnd);
2442 case FPToUI: return new FPToUIInst (S, Ty, Name, InsertAtEnd);
2443 case FPToSI: return new FPToSIInst (S, Ty, Name, InsertAtEnd);
2444 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertAtEnd);
2445 case IntToPtr: return new IntToPtrInst (S, Ty, Name, InsertAtEnd);
2446 case BitCast: return new BitCastInst (S, Ty, Name, InsertAtEnd);
2447 case AddrSpaceCast: return new AddrSpaceCastInst (S, Ty, Name, InsertAtEnd);
2448 default: llvm_unreachable("Invalid opcode provided");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002449 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002450}
2451
Chris Lattner229907c2011-07-18 04:54:35 +00002452CastInst *CastInst::CreateZExtOrBitCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002453 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002454 Instruction *InsertBefore) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002455 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002456 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
2457 return Create(Instruction::ZExt, S, Ty, Name, InsertBefore);
Reid Spencer5c140882006-12-04 20:17:56 +00002458}
2459
Chris Lattner229907c2011-07-18 04:54:35 +00002460CastInst *CastInst::CreateZExtOrBitCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002461 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002462 BasicBlock *InsertAtEnd) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002463 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002464 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
2465 return Create(Instruction::ZExt, S, Ty, Name, InsertAtEnd);
Reid Spencer5c140882006-12-04 20:17:56 +00002466}
2467
Chris Lattner229907c2011-07-18 04:54:35 +00002468CastInst *CastInst::CreateSExtOrBitCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002469 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002470 Instruction *InsertBefore) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002471 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002472 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
2473 return Create(Instruction::SExt, S, Ty, Name, InsertBefore);
Reid Spencer5c140882006-12-04 20:17:56 +00002474}
2475
Chris Lattner229907c2011-07-18 04:54:35 +00002476CastInst *CastInst::CreateSExtOrBitCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002477 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002478 BasicBlock *InsertAtEnd) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002479 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002480 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
2481 return Create(Instruction::SExt, S, Ty, Name, InsertAtEnd);
Reid Spencer5c140882006-12-04 20:17:56 +00002482}
2483
Chris Lattner229907c2011-07-18 04:54:35 +00002484CastInst *CastInst::CreateTruncOrBitCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002485 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002486 Instruction *InsertBefore) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002487 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002488 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
2489 return Create(Instruction::Trunc, S, Ty, Name, InsertBefore);
Reid Spencer5c140882006-12-04 20:17:56 +00002490}
2491
Chris Lattner229907c2011-07-18 04:54:35 +00002492CastInst *CastInst::CreateTruncOrBitCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002493 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002494 BasicBlock *InsertAtEnd) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002495 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002496 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
2497 return Create(Instruction::Trunc, S, Ty, Name, InsertAtEnd);
Reid Spencer5c140882006-12-04 20:17:56 +00002498}
2499
Chris Lattner229907c2011-07-18 04:54:35 +00002500CastInst *CastInst::CreatePointerCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002501 const Twine &Name,
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002502 BasicBlock *InsertAtEnd) {
Matt Arsenault065ced92013-07-31 00:17:33 +00002503 assert(S->getType()->isPtrOrPtrVectorTy() && "Invalid cast");
2504 assert((Ty->isIntOrIntVectorTy() || Ty->isPtrOrPtrVectorTy()) &&
2505 "Invalid cast");
2506 assert(Ty->isVectorTy() == S->getType()->isVectorTy() && "Invalid cast");
Richard Trieu8dc43232013-07-31 04:07:28 +00002507 assert((!Ty->isVectorTy() ||
2508 Ty->getVectorNumElements() == S->getType()->getVectorNumElements()) &&
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002509 "Invalid cast");
2510
Matt Arsenault065ced92013-07-31 00:17:33 +00002511 if (Ty->isIntOrIntVectorTy())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002512 return Create(Instruction::PtrToInt, S, Ty, Name, InsertAtEnd);
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002513
Matt Arsenault740980e2014-07-14 17:24:35 +00002514 return CreatePointerBitCastOrAddrSpaceCast(S, Ty, Name, InsertAtEnd);
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002515}
2516
2517/// @brief Create a BitCast or a PtrToInt cast instruction
Matt Arsenault065ced92013-07-31 00:17:33 +00002518CastInst *CastInst::CreatePointerCast(Value *S, Type *Ty,
2519 const Twine &Name,
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002520 Instruction *InsertBefore) {
Evgeniy Stepanovc9bd35b2013-01-15 16:43:00 +00002521 assert(S->getType()->isPtrOrPtrVectorTy() && "Invalid cast");
2522 assert((Ty->isIntOrIntVectorTy() || Ty->isPtrOrPtrVectorTy()) &&
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002523 "Invalid cast");
Matt Arsenault065ced92013-07-31 00:17:33 +00002524 assert(Ty->isVectorTy() == S->getType()->isVectorTy() && "Invalid cast");
Richard Trieu8dc43232013-07-31 04:07:28 +00002525 assert((!Ty->isVectorTy() ||
2526 Ty->getVectorNumElements() == S->getType()->getVectorNumElements()) &&
Matt Arsenault065ced92013-07-31 00:17:33 +00002527 "Invalid cast");
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002528
Evgeniy Stepanovc9bd35b2013-01-15 16:43:00 +00002529 if (Ty->isIntOrIntVectorTy())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002530 return Create(Instruction::PtrToInt, S, Ty, Name, InsertBefore);
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002531
Matt Arsenault740980e2014-07-14 17:24:35 +00002532 return CreatePointerBitCastOrAddrSpaceCast(S, Ty, Name, InsertBefore);
2533}
2534
2535CastInst *CastInst::CreatePointerBitCastOrAddrSpaceCast(
2536 Value *S, Type *Ty,
2537 const Twine &Name,
2538 BasicBlock *InsertAtEnd) {
2539 assert(S->getType()->isPtrOrPtrVectorTy() && "Invalid cast");
2540 assert(Ty->isPtrOrPtrVectorTy() && "Invalid cast");
2541
2542 if (S->getType()->getPointerAddressSpace() != Ty->getPointerAddressSpace())
2543 return Create(Instruction::AddrSpaceCast, S, Ty, Name, InsertAtEnd);
2544
2545 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
2546}
2547
2548CastInst *CastInst::CreatePointerBitCastOrAddrSpaceCast(
2549 Value *S, Type *Ty,
2550 const Twine &Name,
2551 Instruction *InsertBefore) {
2552 assert(S->getType()->isPtrOrPtrVectorTy() && "Invalid cast");
2553 assert(Ty->isPtrOrPtrVectorTy() && "Invalid cast");
2554
2555 if (S->getType()->getPointerAddressSpace() != Ty->getPointerAddressSpace())
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002556 return Create(Instruction::AddrSpaceCast, S, Ty, Name, InsertBefore);
2557
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002558 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002559}
2560
Matt Arsenault740980e2014-07-14 17:24:35 +00002561CastInst *CastInst::CreateIntegerCast(Value *C, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002562 bool isSigned, const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002563 Instruction *InsertBefore) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002564 assert(C->getType()->isIntOrIntVectorTy() && Ty->isIntOrIntVectorTy() &&
Chris Lattner5370ae72010-01-10 20:21:42 +00002565 "Invalid integer cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002566 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2567 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002568 Instruction::CastOps opcode =
2569 (SrcBits == DstBits ? Instruction::BitCast :
2570 (SrcBits > DstBits ? Instruction::Trunc :
2571 (isSigned ? Instruction::SExt : Instruction::ZExt)));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002572 return Create(opcode, C, Ty, Name, InsertBefore);
Reid Spencer7e933472006-12-12 00:49:44 +00002573}
2574
Chris Lattner229907c2011-07-18 04:54:35 +00002575CastInst *CastInst::CreateIntegerCast(Value *C, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002576 bool isSigned, const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002577 BasicBlock *InsertAtEnd) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002578 assert(C->getType()->isIntOrIntVectorTy() && Ty->isIntOrIntVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00002579 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002580 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2581 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002582 Instruction::CastOps opcode =
2583 (SrcBits == DstBits ? Instruction::BitCast :
2584 (SrcBits > DstBits ? Instruction::Trunc :
2585 (isSigned ? Instruction::SExt : Instruction::ZExt)));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002586 return Create(opcode, C, Ty, Name, InsertAtEnd);
Reid Spencer7e933472006-12-12 00:49:44 +00002587}
2588
Chris Lattner229907c2011-07-18 04:54:35 +00002589CastInst *CastInst::CreateFPCast(Value *C, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002590 const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002591 Instruction *InsertBefore) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002592 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer7e933472006-12-12 00:49:44 +00002593 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002594 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2595 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002596 Instruction::CastOps opcode =
2597 (SrcBits == DstBits ? Instruction::BitCast :
2598 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002599 return Create(opcode, C, Ty, Name, InsertBefore);
Reid Spencer7e933472006-12-12 00:49:44 +00002600}
2601
Chris Lattner229907c2011-07-18 04:54:35 +00002602CastInst *CastInst::CreateFPCast(Value *C, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002603 const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002604 BasicBlock *InsertAtEnd) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002605 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer7e933472006-12-12 00:49:44 +00002606 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002607 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2608 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002609 Instruction::CastOps opcode =
2610 (SrcBits == DstBits ? Instruction::BitCast :
2611 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002612 return Create(opcode, C, Ty, Name, InsertAtEnd);
Reid Spencer7e933472006-12-12 00:49:44 +00002613}
2614
Matt Arsenaultb4019ae2013-07-30 22:02:14 +00002615// Check whether it is valid to call getCastOpcode for these types.
2616// This routine must be kept in sync with getCastOpcode.
2617bool CastInst::isCastable(Type *SrcTy, Type *DestTy) {
2618 if (!SrcTy->isFirstClassType() || !DestTy->isFirstClassType())
2619 return false;
2620
2621 if (SrcTy == DestTy)
2622 return true;
2623
2624 if (VectorType *SrcVecTy = dyn_cast<VectorType>(SrcTy))
2625 if (VectorType *DestVecTy = dyn_cast<VectorType>(DestTy))
2626 if (SrcVecTy->getNumElements() == DestVecTy->getNumElements()) {
2627 // An element by element cast. Valid if casting the elements is valid.
2628 SrcTy = SrcVecTy->getElementType();
2629 DestTy = DestVecTy->getElementType();
2630 }
2631
2632 // Get the bit sizes, we'll need these
2633 unsigned SrcBits = SrcTy->getPrimitiveSizeInBits(); // 0 for ptr
2634 unsigned DestBits = DestTy->getPrimitiveSizeInBits(); // 0 for ptr
2635
2636 // Run through the possibilities ...
2637 if (DestTy->isIntegerTy()) { // Casting to integral
2638 if (SrcTy->isIntegerTy()) { // Casting from integral
2639 return true;
2640 } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt
2641 return true;
2642 } else if (SrcTy->isVectorTy()) { // Casting from vector
2643 return DestBits == SrcBits;
2644 } else { // Casting from something else
2645 return SrcTy->isPointerTy();
2646 }
2647 } else if (DestTy->isFloatingPointTy()) { // Casting to floating pt
2648 if (SrcTy->isIntegerTy()) { // Casting from integral
2649 return true;
2650 } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt
2651 return true;
2652 } else if (SrcTy->isVectorTy()) { // Casting from vector
2653 return DestBits == SrcBits;
2654 } else { // Casting from something else
2655 return false;
2656 }
2657 } else if (DestTy->isVectorTy()) { // Casting to vector
2658 return DestBits == SrcBits;
2659 } else if (DestTy->isPointerTy()) { // Casting to pointer
2660 if (SrcTy->isPointerTy()) { // Casting from pointer
2661 return true;
2662 } else if (SrcTy->isIntegerTy()) { // Casting from integral
2663 return true;
2664 } else { // Casting from something else
2665 return false;
2666 }
2667 } else if (DestTy->isX86_MMXTy()) {
2668 if (SrcTy->isVectorTy()) {
2669 return DestBits == SrcBits; // 64-bit vector to MMX
2670 } else {
2671 return false;
2672 }
2673 } else { // Casting to something else
2674 return false;
2675 }
2676}
2677
Matt Arsenaultcacbb232013-07-30 20:45:05 +00002678bool CastInst::isBitCastable(Type *SrcTy, Type *DestTy) {
2679 if (!SrcTy->isFirstClassType() || !DestTy->isFirstClassType())
2680 return false;
2681
2682 if (SrcTy == DestTy)
2683 return true;
2684
2685 if (VectorType *SrcVecTy = dyn_cast<VectorType>(SrcTy)) {
2686 if (VectorType *DestVecTy = dyn_cast<VectorType>(DestTy)) {
2687 if (SrcVecTy->getNumElements() == DestVecTy->getNumElements()) {
2688 // An element by element cast. Valid if casting the elements is valid.
2689 SrcTy = SrcVecTy->getElementType();
2690 DestTy = DestVecTy->getElementType();
2691 }
2692 }
2693 }
2694
2695 if (PointerType *DestPtrTy = dyn_cast<PointerType>(DestTy)) {
2696 if (PointerType *SrcPtrTy = dyn_cast<PointerType>(SrcTy)) {
2697 return SrcPtrTy->getAddressSpace() == DestPtrTy->getAddressSpace();
2698 }
2699 }
2700
2701 unsigned SrcBits = SrcTy->getPrimitiveSizeInBits(); // 0 for ptr
2702 unsigned DestBits = DestTy->getPrimitiveSizeInBits(); // 0 for ptr
2703
2704 // Could still have vectors of pointers if the number of elements doesn't
2705 // match
2706 if (SrcBits == 0 || DestBits == 0)
2707 return false;
2708
2709 if (SrcBits != DestBits)
2710 return false;
2711
2712 if (DestTy->isX86_MMXTy() || SrcTy->isX86_MMXTy())
2713 return false;
2714
2715 return true;
2716}
2717
2718// Provide a way to get a "cast" where the cast opcode is inferred from the
2719// types and size of the operand. This, basically, is a parallel of the
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002720// logic in the castIsValid function below. This axiom should hold:
2721// castIsValid( getCastOpcode(Val, Ty), Val, Ty)
2722// should not assert in castIsValid. In other words, this produces a "correct"
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002723// casting opcode for the arguments passed to it.
Duncan Sands55e50902008-01-06 10:12:28 +00002724// This routine must be kept in sync with isCastable.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002725Instruction::CastOps
Reid Spencerc4dacf22006-12-04 02:43:42 +00002726CastInst::getCastOpcode(
Chris Lattner229907c2011-07-18 04:54:35 +00002727 const Value *Src, bool SrcIsSigned, Type *DestTy, bool DestIsSigned) {
2728 Type *SrcTy = Src->getType();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002729
Duncan Sands55e50902008-01-06 10:12:28 +00002730 assert(SrcTy->isFirstClassType() && DestTy->isFirstClassType() &&
2731 "Only first class types are castable!");
2732
Duncan Sandsa8514532011-05-18 07:13:41 +00002733 if (SrcTy == DestTy)
2734 return BitCast;
2735
Matt Arsenaultcacbb232013-07-30 20:45:05 +00002736 // FIXME: Check address space sizes here
Chris Lattner229907c2011-07-18 04:54:35 +00002737 if (VectorType *SrcVecTy = dyn_cast<VectorType>(SrcTy))
2738 if (VectorType *DestVecTy = dyn_cast<VectorType>(DestTy))
Duncan Sandsa8514532011-05-18 07:13:41 +00002739 if (SrcVecTy->getNumElements() == DestVecTy->getNumElements()) {
2740 // An element by element cast. Find the appropriate opcode based on the
2741 // element types.
2742 SrcTy = SrcVecTy->getElementType();
2743 DestTy = DestVecTy->getElementType();
2744 }
2745
2746 // Get the bit sizes, we'll need these
Duncan Sands7f646562011-05-18 09:21:57 +00002747 unsigned SrcBits = SrcTy->getPrimitiveSizeInBits(); // 0 for ptr
2748 unsigned DestBits = DestTy->getPrimitiveSizeInBits(); // 0 for ptr
Duncan Sandsa8514532011-05-18 07:13:41 +00002749
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002750 // Run through the possibilities ...
Duncan Sands9dff9be2010-02-15 16:12:20 +00002751 if (DestTy->isIntegerTy()) { // Casting to integral
2752 if (SrcTy->isIntegerTy()) { // Casting from integral
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002753 if (DestBits < SrcBits)
2754 return Trunc; // int -> smaller int
2755 else if (DestBits > SrcBits) { // its an extension
Reid Spencerc4dacf22006-12-04 02:43:42 +00002756 if (SrcIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002757 return SExt; // signed -> SEXT
2758 else
2759 return ZExt; // unsigned -> ZEXT
2760 } else {
2761 return BitCast; // Same size, No-op cast
2762 }
Duncan Sands9dff9be2010-02-15 16:12:20 +00002763 } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt
Reid Spencerc4dacf22006-12-04 02:43:42 +00002764 if (DestIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002765 return FPToSI; // FP -> sint
2766 else
2767 return FPToUI; // FP -> uint
Duncan Sands27bd0df2011-05-18 10:59:25 +00002768 } else if (SrcTy->isVectorTy()) {
2769 assert(DestBits == SrcBits &&
2770 "Casting vector to integer of different width");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002771 return BitCast; // Same size, no-op cast
2772 } else {
Duncan Sands19d0b472010-02-16 11:11:14 +00002773 assert(SrcTy->isPointerTy() &&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002774 "Casting from a value that is not first-class type");
2775 return PtrToInt; // ptr -> int
2776 }
Duncan Sands9dff9be2010-02-15 16:12:20 +00002777 } else if (DestTy->isFloatingPointTy()) { // Casting to floating pt
2778 if (SrcTy->isIntegerTy()) { // Casting from integral
Reid Spencerc4dacf22006-12-04 02:43:42 +00002779 if (SrcIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002780 return SIToFP; // sint -> FP
2781 else
2782 return UIToFP; // uint -> FP
Duncan Sands9dff9be2010-02-15 16:12:20 +00002783 } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002784 if (DestBits < SrcBits) {
2785 return FPTrunc; // FP -> smaller FP
2786 } else if (DestBits > SrcBits) {
2787 return FPExt; // FP -> larger FP
2788 } else {
2789 return BitCast; // same size, no-op cast
2790 }
Duncan Sands27bd0df2011-05-18 10:59:25 +00002791 } else if (SrcTy->isVectorTy()) {
2792 assert(DestBits == SrcBits &&
Dan Gohmanfead7972007-05-11 21:43:24 +00002793 "Casting vector to floating point of different width");
Devang Patele9432132008-11-05 01:37:40 +00002794 return BitCast; // same size, no-op cast
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002795 }
Ahmed Charles636a3d62012-02-19 11:37:01 +00002796 llvm_unreachable("Casting pointer or non-first class to float");
Duncan Sands27bd0df2011-05-18 10:59:25 +00002797 } else if (DestTy->isVectorTy()) {
2798 assert(DestBits == SrcBits &&
2799 "Illegal cast to vector (wrong type or size)");
2800 return BitCast;
Duncan Sands19d0b472010-02-16 11:11:14 +00002801 } else if (DestTy->isPointerTy()) {
2802 if (SrcTy->isPointerTy()) {
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002803 if (DestTy->getPointerAddressSpace() != SrcTy->getPointerAddressSpace())
2804 return AddrSpaceCast;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002805 return BitCast; // ptr -> ptr
Duncan Sands9dff9be2010-02-15 16:12:20 +00002806 } else if (SrcTy->isIntegerTy()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002807 return IntToPtr; // int -> ptr
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002808 }
Ahmed Charles636a3d62012-02-19 11:37:01 +00002809 llvm_unreachable("Casting pointer to other than pointer or int");
Dale Johannesendd224d22010-09-30 23:57:10 +00002810 } else if (DestTy->isX86_MMXTy()) {
Duncan Sands27bd0df2011-05-18 10:59:25 +00002811 if (SrcTy->isVectorTy()) {
2812 assert(DestBits == SrcBits && "Casting vector of wrong width to X86_MMX");
Dale Johannesendd224d22010-09-30 23:57:10 +00002813 return BitCast; // 64-bit vector to MMX
Dale Johannesendd224d22010-09-30 23:57:10 +00002814 }
Ahmed Charles636a3d62012-02-19 11:37:01 +00002815 llvm_unreachable("Illegal cast to X86_MMX");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002816 }
Ahmed Charles636a3d62012-02-19 11:37:01 +00002817 llvm_unreachable("Casting to type that is not first-class");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002818}
2819
2820//===----------------------------------------------------------------------===//
2821// CastInst SubClass Constructors
2822//===----------------------------------------------------------------------===//
2823
2824/// Check that the construction parameters for a CastInst are correct. This
2825/// could be broken out into the separate constructors but it is useful to have
2826/// it in one place and to eliminate the redundant code for getting the sizes
2827/// of the types involved.
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002828bool
Chris Lattner229907c2011-07-18 04:54:35 +00002829CastInst::castIsValid(Instruction::CastOps op, Value *S, Type *DstTy) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002830
2831 // Check for type sanity on the arguments
Chris Lattner229907c2011-07-18 04:54:35 +00002832 Type *SrcTy = S->getType();
Evan Cheng098d7b72013-01-10 23:22:53 +00002833
2834 // If this is a cast to the same type then it's trivially true.
2835 if (SrcTy == DstTy)
2836 return true;
2837
Chris Lattner37bc78a2010-01-26 21:51:43 +00002838 if (!SrcTy->isFirstClassType() || !DstTy->isFirstClassType() ||
2839 SrcTy->isAggregateType() || DstTy->isAggregateType())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002840 return false;
2841
2842 // Get the size of the types in bits, we'll need this later
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002843 unsigned SrcBitSize = SrcTy->getScalarSizeInBits();
2844 unsigned DstBitSize = DstTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002845
Duncan Sands7f646562011-05-18 09:21:57 +00002846 // If these are vector types, get the lengths of the vectors (using zero for
2847 // scalar types means that checking that vector lengths match also checks that
2848 // scalars are not being converted to vectors or vectors to scalars).
2849 unsigned SrcLength = SrcTy->isVectorTy() ?
2850 cast<VectorType>(SrcTy)->getNumElements() : 0;
2851 unsigned DstLength = DstTy->isVectorTy() ?
2852 cast<VectorType>(DstTy)->getNumElements() : 0;
2853
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002854 // Switch on the opcode provided
2855 switch (op) {
2856 default: return false; // This is an input error
2857 case Instruction::Trunc:
Duncan Sands7f646562011-05-18 09:21:57 +00002858 return SrcTy->isIntOrIntVectorTy() && DstTy->isIntOrIntVectorTy() &&
2859 SrcLength == DstLength && SrcBitSize > DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002860 case Instruction::ZExt:
Duncan Sands7f646562011-05-18 09:21:57 +00002861 return SrcTy->isIntOrIntVectorTy() && DstTy->isIntOrIntVectorTy() &&
2862 SrcLength == DstLength && SrcBitSize < DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002863 case Instruction::SExt:
Duncan Sands7f646562011-05-18 09:21:57 +00002864 return SrcTy->isIntOrIntVectorTy() && DstTy->isIntOrIntVectorTy() &&
2865 SrcLength == DstLength && SrcBitSize < DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002866 case Instruction::FPTrunc:
Duncan Sands7f646562011-05-18 09:21:57 +00002867 return SrcTy->isFPOrFPVectorTy() && DstTy->isFPOrFPVectorTy() &&
2868 SrcLength == DstLength && SrcBitSize > DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002869 case Instruction::FPExt:
Duncan Sands7f646562011-05-18 09:21:57 +00002870 return SrcTy->isFPOrFPVectorTy() && DstTy->isFPOrFPVectorTy() &&
2871 SrcLength == DstLength && SrcBitSize < DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002872 case Instruction::UIToFP:
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002873 case Instruction::SIToFP:
Duncan Sands7f646562011-05-18 09:21:57 +00002874 return SrcTy->isIntOrIntVectorTy() && DstTy->isFPOrFPVectorTy() &&
2875 SrcLength == DstLength;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002876 case Instruction::FPToUI:
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002877 case Instruction::FPToSI:
Duncan Sands7f646562011-05-18 09:21:57 +00002878 return SrcTy->isFPOrFPVectorTy() && DstTy->isIntOrIntVectorTy() &&
2879 SrcLength == DstLength;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002880 case Instruction::PtrToInt:
Chris Lattner8a3df542012-01-25 01:32:59 +00002881 if (isa<VectorType>(SrcTy) != isa<VectorType>(DstTy))
Nadav Rotem3924cb02011-12-05 06:29:09 +00002882 return false;
Chris Lattner8a3df542012-01-25 01:32:59 +00002883 if (VectorType *VT = dyn_cast<VectorType>(SrcTy))
2884 if (VT->getNumElements() != cast<VectorType>(DstTy)->getNumElements())
2885 return false;
Nadav Rotem3924cb02011-12-05 06:29:09 +00002886 return SrcTy->getScalarType()->isPointerTy() &&
2887 DstTy->getScalarType()->isIntegerTy();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002888 case Instruction::IntToPtr:
Chris Lattner8a3df542012-01-25 01:32:59 +00002889 if (isa<VectorType>(SrcTy) != isa<VectorType>(DstTy))
Nadav Rotem3924cb02011-12-05 06:29:09 +00002890 return false;
Chris Lattner8a3df542012-01-25 01:32:59 +00002891 if (VectorType *VT = dyn_cast<VectorType>(SrcTy))
2892 if (VT->getNumElements() != cast<VectorType>(DstTy)->getNumElements())
2893 return false;
Nadav Rotem3924cb02011-12-05 06:29:09 +00002894 return SrcTy->getScalarType()->isIntegerTy() &&
2895 DstTy->getScalarType()->isPointerTy();
Matt Arsenaultfc3c91d2014-01-22 19:21:33 +00002896 case Instruction::BitCast: {
2897 PointerType *SrcPtrTy = dyn_cast<PointerType>(SrcTy->getScalarType());
2898 PointerType *DstPtrTy = dyn_cast<PointerType>(DstTy->getScalarType());
2899
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002900 // BitCast implies a no-op cast of type only. No bits change.
2901 // However, you can't cast pointers to anything but pointers.
Matt Arsenaultfc3c91d2014-01-22 19:21:33 +00002902 if (!SrcPtrTy != !DstPtrTy)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002903 return false;
2904
Alp Tokerf907b892013-12-05 05:44:44 +00002905 // For non-pointer cases, the cast is okay if the source and destination bit
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002906 // widths are identical.
Matt Arsenaultfc3c91d2014-01-22 19:21:33 +00002907 if (!SrcPtrTy)
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002908 return SrcTy->getPrimitiveSizeInBits() == DstTy->getPrimitiveSizeInBits();
2909
Matt Arsenaultfc3c91d2014-01-22 19:21:33 +00002910 // If both are pointers then the address spaces must match.
2911 if (SrcPtrTy->getAddressSpace() != DstPtrTy->getAddressSpace())
2912 return false;
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002913
Matt Arsenaultfc3c91d2014-01-22 19:21:33 +00002914 // A vector of pointers must have the same number of elements.
2915 if (VectorType *SrcVecTy = dyn_cast<VectorType>(SrcTy)) {
2916 if (VectorType *DstVecTy = dyn_cast<VectorType>(DstTy))
2917 return (SrcVecTy->getNumElements() == DstVecTy->getNumElements());
2918
2919 return false;
2920 }
2921
2922 return true;
2923 }
2924 case Instruction::AddrSpaceCast: {
2925 PointerType *SrcPtrTy = dyn_cast<PointerType>(SrcTy->getScalarType());
2926 if (!SrcPtrTy)
2927 return false;
2928
2929 PointerType *DstPtrTy = dyn_cast<PointerType>(DstTy->getScalarType());
2930 if (!DstPtrTy)
2931 return false;
2932
2933 if (SrcPtrTy->getAddressSpace() == DstPtrTy->getAddressSpace())
2934 return false;
2935
2936 if (VectorType *SrcVecTy = dyn_cast<VectorType>(SrcTy)) {
2937 if (VectorType *DstVecTy = dyn_cast<VectorType>(DstTy))
2938 return (SrcVecTy->getNumElements() == DstVecTy->getNumElements());
2939
2940 return false;
2941 }
2942
2943 return true;
2944 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002945 }
2946}
2947
2948TruncInst::TruncInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002949 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002950) : CastInst(Ty, Trunc, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002951 assert(castIsValid(getOpcode(), S, Ty) && "Illegal Trunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002952}
2953
2954TruncInst::TruncInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002955 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002956) : CastInst(Ty, Trunc, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002957 assert(castIsValid(getOpcode(), S, Ty) && "Illegal Trunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002958}
2959
2960ZExtInst::ZExtInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002961 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002962) : CastInst(Ty, ZExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002963 assert(castIsValid(getOpcode(), S, Ty) && "Illegal ZExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002964}
2965
2966ZExtInst::ZExtInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002967 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002968) : CastInst(Ty, ZExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002969 assert(castIsValid(getOpcode(), S, Ty) && "Illegal ZExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002970}
2971SExtInst::SExtInst(
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, SExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002974 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002975}
2976
Jeff Cohencc08c832006-12-02 02:22:01 +00002977SExtInst::SExtInst(
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, SExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002980 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002981}
2982
2983FPTruncInst::FPTruncInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002984 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002985) : CastInst(Ty, FPTrunc, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002986 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPTrunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002987}
2988
2989FPTruncInst::FPTruncInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002990 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002991) : CastInst(Ty, FPTrunc, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002992 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPTrunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002993}
2994
2995FPExtInst::FPExtInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002996 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002997) : CastInst(Ty, FPExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002998 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002999}
3000
3001FPExtInst::FPExtInst(
Chris Lattner229907c2011-07-18 04:54:35 +00003002 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003003) : CastInst(Ty, FPExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00003004 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003005}
3006
3007UIToFPInst::UIToFPInst(
Chris Lattner229907c2011-07-18 04:54:35 +00003008 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003009) : CastInst(Ty, UIToFP, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00003010 assert(castIsValid(getOpcode(), S, Ty) && "Illegal UIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003011}
3012
3013UIToFPInst::UIToFPInst(
Chris Lattner229907c2011-07-18 04:54:35 +00003014 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003015) : CastInst(Ty, UIToFP, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00003016 assert(castIsValid(getOpcode(), S, Ty) && "Illegal UIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003017}
3018
3019SIToFPInst::SIToFPInst(
Chris Lattner229907c2011-07-18 04:54:35 +00003020 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003021) : CastInst(Ty, SIToFP, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00003022 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003023}
3024
3025SIToFPInst::SIToFPInst(
Chris Lattner229907c2011-07-18 04:54:35 +00003026 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003027) : CastInst(Ty, SIToFP, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00003028 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003029}
3030
3031FPToUIInst::FPToUIInst(
Chris Lattner229907c2011-07-18 04:54:35 +00003032 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003033) : CastInst(Ty, FPToUI, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00003034 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToUI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003035}
3036
3037FPToUIInst::FPToUIInst(
Chris Lattner229907c2011-07-18 04:54:35 +00003038 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003039) : CastInst(Ty, FPToUI, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00003040 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToUI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003041}
3042
3043FPToSIInst::FPToSIInst(
Chris Lattner229907c2011-07-18 04:54:35 +00003044 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003045) : CastInst(Ty, FPToSI, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00003046 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToSI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003047}
3048
3049FPToSIInst::FPToSIInst(
Chris Lattner229907c2011-07-18 04:54:35 +00003050 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003051) : CastInst(Ty, FPToSI, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00003052 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToSI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003053}
3054
3055PtrToIntInst::PtrToIntInst(
Chris Lattner229907c2011-07-18 04:54:35 +00003056 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003057) : CastInst(Ty, PtrToInt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00003058 assert(castIsValid(getOpcode(), S, Ty) && "Illegal PtrToInt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003059}
3060
3061PtrToIntInst::PtrToIntInst(
Chris Lattner229907c2011-07-18 04:54:35 +00003062 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003063) : CastInst(Ty, PtrToInt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00003064 assert(castIsValid(getOpcode(), S, Ty) && "Illegal PtrToInt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003065}
3066
3067IntToPtrInst::IntToPtrInst(
Chris Lattner229907c2011-07-18 04:54:35 +00003068 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003069) : CastInst(Ty, IntToPtr, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00003070 assert(castIsValid(getOpcode(), S, Ty) && "Illegal IntToPtr");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003071}
3072
3073IntToPtrInst::IntToPtrInst(
Chris Lattner229907c2011-07-18 04:54:35 +00003074 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003075) : CastInst(Ty, IntToPtr, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00003076 assert(castIsValid(getOpcode(), S, Ty) && "Illegal IntToPtr");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003077}
3078
3079BitCastInst::BitCastInst(
Chris Lattner229907c2011-07-18 04:54:35 +00003080 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003081) : CastInst(Ty, BitCast, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00003082 assert(castIsValid(getOpcode(), S, Ty) && "Illegal BitCast");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003083}
3084
3085BitCastInst::BitCastInst(
Chris Lattner229907c2011-07-18 04:54:35 +00003086 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003087) : CastInst(Ty, BitCast, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00003088 assert(castIsValid(getOpcode(), S, Ty) && "Illegal BitCast");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003089}
Chris Lattnerf16dc002006-09-17 19:29:56 +00003090
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00003091AddrSpaceCastInst::AddrSpaceCastInst(
3092 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
3093) : CastInst(Ty, AddrSpaceCast, S, Name, InsertBefore) {
3094 assert(castIsValid(getOpcode(), S, Ty) && "Illegal AddrSpaceCast");
3095}
3096
3097AddrSpaceCastInst::AddrSpaceCastInst(
3098 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
3099) : CastInst(Ty, AddrSpaceCast, S, Name, InsertAtEnd) {
3100 assert(castIsValid(getOpcode(), S, Ty) && "Illegal AddrSpaceCast");
3101}
3102
Chris Lattnerf16dc002006-09-17 19:29:56 +00003103//===----------------------------------------------------------------------===//
Reid Spencerd9436b62006-11-20 01:22:35 +00003104// CmpInst Classes
3105//===----------------------------------------------------------------------===//
3106
Craig Topper3186c012012-09-23 02:12:10 +00003107void CmpInst::anchor() {}
Chris Lattneraec33da2010-01-22 06:25:37 +00003108
Chris Lattner229907c2011-07-18 04:54:35 +00003109CmpInst::CmpInst(Type *ty, OtherOps op, unsigned short predicate,
Daniel Dunbar4975db62009-07-25 04:41:11 +00003110 Value *LHS, Value *RHS, const Twine &Name,
Nate Begemand2195702008-05-12 19:01:56 +00003111 Instruction *InsertBefore)
Nate Begeman66d0a0e2008-05-12 20:11:05 +00003112 : Instruction(ty, op,
Gabor Greiff6caff662008-05-10 08:32:32 +00003113 OperandTraits<CmpInst>::op_begin(this),
3114 OperandTraits<CmpInst>::operands(this),
3115 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00003116 Op<0>() = LHS;
3117 Op<1>() = RHS;
Chris Lattnerb9c86512009-12-29 02:14:09 +00003118 setPredicate((Predicate)predicate);
Reid Spencer871a9ea2007-04-11 13:04:48 +00003119 setName(Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00003120}
Gabor Greiff6caff662008-05-10 08:32:32 +00003121
Chris Lattner229907c2011-07-18 04:54:35 +00003122CmpInst::CmpInst(Type *ty, OtherOps op, unsigned short predicate,
Daniel Dunbar4975db62009-07-25 04:41:11 +00003123 Value *LHS, Value *RHS, const Twine &Name,
Nate Begemand2195702008-05-12 19:01:56 +00003124 BasicBlock *InsertAtEnd)
Nate Begeman66d0a0e2008-05-12 20:11:05 +00003125 : Instruction(ty, op,
Gabor Greiff6caff662008-05-10 08:32:32 +00003126 OperandTraits<CmpInst>::op_begin(this),
3127 OperandTraits<CmpInst>::operands(this),
3128 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00003129 Op<0>() = LHS;
3130 Op<1>() = RHS;
Chris Lattnerb9c86512009-12-29 02:14:09 +00003131 setPredicate((Predicate)predicate);
Reid Spencer871a9ea2007-04-11 13:04:48 +00003132 setName(Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00003133}
3134
3135CmpInst *
Dan Gohmanad1f0a12009-08-25 23:17:54 +00003136CmpInst::Create(OtherOps Op, unsigned short predicate,
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003137 Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00003138 const Twine &Name, Instruction *InsertBefore) {
Reid Spencerd9436b62006-11-20 01:22:35 +00003139 if (Op == Instruction::ICmp) {
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003140 if (InsertBefore)
3141 return new ICmpInst(InsertBefore, CmpInst::Predicate(predicate),
3142 S1, S2, Name);
3143 else
Dan Gohmanad1f0a12009-08-25 23:17:54 +00003144 return new ICmpInst(CmpInst::Predicate(predicate),
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003145 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00003146 }
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003147
3148 if (InsertBefore)
3149 return new FCmpInst(InsertBefore, CmpInst::Predicate(predicate),
3150 S1, S2, Name);
3151 else
Dan Gohmanad1f0a12009-08-25 23:17:54 +00003152 return new FCmpInst(CmpInst::Predicate(predicate),
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003153 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00003154}
3155
3156CmpInst *
Gabor Greife1f6e4b2008-05-16 19:29:10 +00003157CmpInst::Create(OtherOps Op, unsigned short predicate, Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00003158 const Twine &Name, BasicBlock *InsertAtEnd) {
Reid Spencerd9436b62006-11-20 01:22:35 +00003159 if (Op == Instruction::ICmp) {
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003160 return new ICmpInst(*InsertAtEnd, CmpInst::Predicate(predicate),
3161 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00003162 }
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003163 return new FCmpInst(*InsertAtEnd, CmpInst::Predicate(predicate),
3164 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00003165}
3166
3167void CmpInst::swapOperands() {
3168 if (ICmpInst *IC = dyn_cast<ICmpInst>(this))
3169 IC->swapOperands();
3170 else
3171 cast<FCmpInst>(this)->swapOperands();
3172}
3173
Duncan Sands95c4ecc2011-01-04 12:52:29 +00003174bool CmpInst::isCommutative() const {
3175 if (const ICmpInst *IC = dyn_cast<ICmpInst>(this))
Reid Spencerd9436b62006-11-20 01:22:35 +00003176 return IC->isCommutative();
3177 return cast<FCmpInst>(this)->isCommutative();
3178}
3179
Duncan Sands95c4ecc2011-01-04 12:52:29 +00003180bool CmpInst::isEquality() const {
3181 if (const ICmpInst *IC = dyn_cast<ICmpInst>(this))
Reid Spencerd9436b62006-11-20 01:22:35 +00003182 return IC->isEquality();
3183 return cast<FCmpInst>(this)->isEquality();
3184}
3185
3186
Dan Gohman4e724382008-05-31 02:47:54 +00003187CmpInst::Predicate CmpInst::getInversePredicate(Predicate pred) {
Reid Spencerd9436b62006-11-20 01:22:35 +00003188 switch (pred) {
Craig Topperc514b542012-02-05 22:14:15 +00003189 default: llvm_unreachable("Unknown cmp predicate!");
Reid Spencerd9436b62006-11-20 01:22:35 +00003190 case ICMP_EQ: return ICMP_NE;
3191 case ICMP_NE: return ICMP_EQ;
3192 case ICMP_UGT: return ICMP_ULE;
3193 case ICMP_ULT: return ICMP_UGE;
3194 case ICMP_UGE: return ICMP_ULT;
3195 case ICMP_ULE: return ICMP_UGT;
3196 case ICMP_SGT: return ICMP_SLE;
3197 case ICMP_SLT: return ICMP_SGE;
3198 case ICMP_SGE: return ICMP_SLT;
3199 case ICMP_SLE: return ICMP_SGT;
Reid Spencerd9436b62006-11-20 01:22:35 +00003200
Dan Gohman4e724382008-05-31 02:47:54 +00003201 case FCMP_OEQ: return FCMP_UNE;
3202 case FCMP_ONE: return FCMP_UEQ;
3203 case FCMP_OGT: return FCMP_ULE;
3204 case FCMP_OLT: return FCMP_UGE;
3205 case FCMP_OGE: return FCMP_ULT;
3206 case FCMP_OLE: return FCMP_UGT;
3207 case FCMP_UEQ: return FCMP_ONE;
3208 case FCMP_UNE: return FCMP_OEQ;
3209 case FCMP_UGT: return FCMP_OLE;
3210 case FCMP_ULT: return FCMP_OGE;
3211 case FCMP_UGE: return FCMP_OLT;
3212 case FCMP_ULE: return FCMP_OGT;
3213 case FCMP_ORD: return FCMP_UNO;
3214 case FCMP_UNO: return FCMP_ORD;
3215 case FCMP_TRUE: return FCMP_FALSE;
3216 case FCMP_FALSE: return FCMP_TRUE;
Reid Spencerd9436b62006-11-20 01:22:35 +00003217 }
3218}
3219
Reid Spencer266e42b2006-12-23 06:05:41 +00003220ICmpInst::Predicate ICmpInst::getSignedPredicate(Predicate pred) {
3221 switch (pred) {
Craig Topperc514b542012-02-05 22:14:15 +00003222 default: llvm_unreachable("Unknown icmp predicate!");
Reid Spencer266e42b2006-12-23 06:05:41 +00003223 case ICMP_EQ: case ICMP_NE:
3224 case ICMP_SGT: case ICMP_SLT: case ICMP_SGE: case ICMP_SLE:
3225 return pred;
3226 case ICMP_UGT: return ICMP_SGT;
3227 case ICMP_ULT: return ICMP_SLT;
3228 case ICMP_UGE: return ICMP_SGE;
3229 case ICMP_ULE: return ICMP_SLE;
3230 }
3231}
3232
Nick Lewycky8ea81e82008-01-28 03:48:02 +00003233ICmpInst::Predicate ICmpInst::getUnsignedPredicate(Predicate pred) {
3234 switch (pred) {
Craig Topperc514b542012-02-05 22:14:15 +00003235 default: llvm_unreachable("Unknown icmp predicate!");
Nick Lewycky8ea81e82008-01-28 03:48:02 +00003236 case ICMP_EQ: case ICMP_NE:
3237 case ICMP_UGT: case ICMP_ULT: case ICMP_UGE: case ICMP_ULE:
3238 return pred;
3239 case ICMP_SGT: return ICMP_UGT;
3240 case ICMP_SLT: return ICMP_ULT;
3241 case ICMP_SGE: return ICMP_UGE;
3242 case ICMP_SLE: return ICMP_ULE;
3243 }
3244}
3245
Reid Spencer0286bc12007-02-28 22:00:54 +00003246/// Initialize a set of values that all satisfy the condition with C.
3247///
3248ConstantRange
3249ICmpInst::makeConstantRange(Predicate pred, const APInt &C) {
3250 APInt Lower(C);
3251 APInt Upper(C);
3252 uint32_t BitWidth = C.getBitWidth();
3253 switch (pred) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00003254 default: llvm_unreachable("Invalid ICmp opcode to ConstantRange ctor!");
Jakub Staszak773be0c2013-03-20 23:56:19 +00003255 case ICmpInst::ICMP_EQ: ++Upper; break;
3256 case ICmpInst::ICMP_NE: ++Lower; break;
Dan Gohmand86e2952010-01-26 16:04:20 +00003257 case ICmpInst::ICMP_ULT:
3258 Lower = APInt::getMinValue(BitWidth);
3259 // Check for an empty-set condition.
3260 if (Lower == Upper)
3261 return ConstantRange(BitWidth, /*isFullSet=*/false);
3262 break;
3263 case ICmpInst::ICMP_SLT:
3264 Lower = APInt::getSignedMinValue(BitWidth);
3265 // Check for an empty-set condition.
3266 if (Lower == Upper)
3267 return ConstantRange(BitWidth, /*isFullSet=*/false);
3268 break;
Reid Spencer0286bc12007-02-28 22:00:54 +00003269 case ICmpInst::ICMP_UGT:
Jakub Staszak773be0c2013-03-20 23:56:19 +00003270 ++Lower; Upper = APInt::getMinValue(BitWidth); // Min = Next(Max)
Dan Gohmand86e2952010-01-26 16:04:20 +00003271 // Check for an empty-set condition.
3272 if (Lower == Upper)
3273 return ConstantRange(BitWidth, /*isFullSet=*/false);
Reid Spencer0286bc12007-02-28 22:00:54 +00003274 break;
3275 case ICmpInst::ICMP_SGT:
Jakub Staszak773be0c2013-03-20 23:56:19 +00003276 ++Lower; Upper = APInt::getSignedMinValue(BitWidth); // Min = Next(Max)
Dan Gohmand86e2952010-01-26 16:04:20 +00003277 // Check for an empty-set condition.
3278 if (Lower == Upper)
3279 return ConstantRange(BitWidth, /*isFullSet=*/false);
Reid Spencer0286bc12007-02-28 22:00:54 +00003280 break;
3281 case ICmpInst::ICMP_ULE:
Jakub Staszak773be0c2013-03-20 23:56:19 +00003282 Lower = APInt::getMinValue(BitWidth); ++Upper;
Dan Gohmand86e2952010-01-26 16:04:20 +00003283 // Check for a full-set condition.
3284 if (Lower == Upper)
3285 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer0286bc12007-02-28 22:00:54 +00003286 break;
3287 case ICmpInst::ICMP_SLE:
Jakub Staszak773be0c2013-03-20 23:56:19 +00003288 Lower = APInt::getSignedMinValue(BitWidth); ++Upper;
Dan Gohmand86e2952010-01-26 16:04:20 +00003289 // Check for a full-set condition.
3290 if (Lower == Upper)
3291 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer0286bc12007-02-28 22:00:54 +00003292 break;
3293 case ICmpInst::ICMP_UGE:
3294 Upper = APInt::getMinValue(BitWidth); // Min = Next(Max)
Dan Gohmand86e2952010-01-26 16:04:20 +00003295 // Check for a full-set condition.
3296 if (Lower == Upper)
3297 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer0286bc12007-02-28 22:00:54 +00003298 break;
3299 case ICmpInst::ICMP_SGE:
3300 Upper = APInt::getSignedMinValue(BitWidth); // Min = Next(Max)
Dan Gohmand86e2952010-01-26 16:04:20 +00003301 // Check for a full-set condition.
3302 if (Lower == Upper)
3303 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer0286bc12007-02-28 22:00:54 +00003304 break;
3305 }
3306 return ConstantRange(Lower, Upper);
3307}
3308
Dan Gohman4e724382008-05-31 02:47:54 +00003309CmpInst::Predicate CmpInst::getSwappedPredicate(Predicate pred) {
Reid Spencerd9436b62006-11-20 01:22:35 +00003310 switch (pred) {
Craig Topperc514b542012-02-05 22:14:15 +00003311 default: llvm_unreachable("Unknown cmp predicate!");
Dan Gohman4e724382008-05-31 02:47:54 +00003312 case ICMP_EQ: case ICMP_NE:
3313 return pred;
3314 case ICMP_SGT: return ICMP_SLT;
3315 case ICMP_SLT: return ICMP_SGT;
3316 case ICMP_SGE: return ICMP_SLE;
3317 case ICMP_SLE: return ICMP_SGE;
3318 case ICMP_UGT: return ICMP_ULT;
3319 case ICMP_ULT: return ICMP_UGT;
3320 case ICMP_UGE: return ICMP_ULE;
3321 case ICMP_ULE: return ICMP_UGE;
3322
Reid Spencerd9436b62006-11-20 01:22:35 +00003323 case FCMP_FALSE: case FCMP_TRUE:
3324 case FCMP_OEQ: case FCMP_ONE:
3325 case FCMP_UEQ: case FCMP_UNE:
3326 case FCMP_ORD: case FCMP_UNO:
3327 return pred;
3328 case FCMP_OGT: return FCMP_OLT;
3329 case FCMP_OLT: return FCMP_OGT;
3330 case FCMP_OGE: return FCMP_OLE;
3331 case FCMP_OLE: return FCMP_OGE;
3332 case FCMP_UGT: return FCMP_ULT;
3333 case FCMP_ULT: return FCMP_UGT;
3334 case FCMP_UGE: return FCMP_ULE;
3335 case FCMP_ULE: return FCMP_UGE;
3336 }
3337}
3338
Reid Spencer266e42b2006-12-23 06:05:41 +00003339bool CmpInst::isUnsigned(unsigned short predicate) {
3340 switch (predicate) {
3341 default: return false;
3342 case ICmpInst::ICMP_ULT: case ICmpInst::ICMP_ULE: case ICmpInst::ICMP_UGT:
3343 case ICmpInst::ICMP_UGE: return true;
3344 }
3345}
3346
Nick Lewycky7494b3b2009-10-25 03:50:03 +00003347bool CmpInst::isSigned(unsigned short predicate) {
Reid Spencer266e42b2006-12-23 06:05:41 +00003348 switch (predicate) {
3349 default: return false;
3350 case ICmpInst::ICMP_SLT: case ICmpInst::ICMP_SLE: case ICmpInst::ICMP_SGT:
3351 case ICmpInst::ICMP_SGE: return true;
3352 }
3353}
3354
3355bool CmpInst::isOrdered(unsigned short predicate) {
3356 switch (predicate) {
3357 default: return false;
3358 case FCmpInst::FCMP_OEQ: case FCmpInst::FCMP_ONE: case FCmpInst::FCMP_OGT:
3359 case FCmpInst::FCMP_OLT: case FCmpInst::FCMP_OGE: case FCmpInst::FCMP_OLE:
3360 case FCmpInst::FCMP_ORD: return true;
3361 }
3362}
3363
3364bool CmpInst::isUnordered(unsigned short predicate) {
3365 switch (predicate) {
3366 default: return false;
3367 case FCmpInst::FCMP_UEQ: case FCmpInst::FCMP_UNE: case FCmpInst::FCMP_UGT:
3368 case FCmpInst::FCMP_ULT: case FCmpInst::FCMP_UGE: case FCmpInst::FCMP_ULE:
3369 case FCmpInst::FCMP_UNO: return true;
3370 }
3371}
3372
Nick Lewycky7494b3b2009-10-25 03:50:03 +00003373bool CmpInst::isTrueWhenEqual(unsigned short predicate) {
3374 switch(predicate) {
3375 default: return false;
3376 case ICMP_EQ: case ICMP_UGE: case ICMP_ULE: case ICMP_SGE: case ICMP_SLE:
3377 case FCMP_TRUE: case FCMP_UEQ: case FCMP_UGE: case FCMP_ULE: return true;
3378 }
3379}
3380
3381bool CmpInst::isFalseWhenEqual(unsigned short predicate) {
3382 switch(predicate) {
3383 case ICMP_NE: case ICMP_UGT: case ICMP_ULT: case ICMP_SGT: case ICMP_SLT:
3384 case FCMP_FALSE: case FCMP_ONE: case FCMP_OGT: case FCMP_OLT: return true;
3385 default: return false;
3386 }
3387}
3388
3389
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003390//===----------------------------------------------------------------------===//
3391// SwitchInst Implementation
3392//===----------------------------------------------------------------------===//
3393
Chris Lattnerbaf00152010-11-17 05:41:46 +00003394void SwitchInst::init(Value *Value, BasicBlock *Default, unsigned NumReserved) {
3395 assert(Value && Default && NumReserved);
3396 ReservedSpace = NumReserved;
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003397 NumOperands = 2;
Gabor Greiff6caff662008-05-10 08:32:32 +00003398 OperandList = allocHungoffUses(ReservedSpace);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003399
Gabor Greif2d3024d2008-05-26 21:33:52 +00003400 OperandList[0] = Value;
3401 OperandList[1] = Default;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003402}
3403
Chris Lattner2195fc42007-02-24 00:55:48 +00003404/// SwitchInst ctor - Create a new switch instruction, specifying a value to
3405/// switch on and a default destination. The number of additional cases can
3406/// be specified here to make memory allocation more efficient. This
3407/// constructor can also autoinsert before another instruction.
3408SwitchInst::SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
3409 Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +00003410 : TerminatorInst(Type::getVoidTy(Value->getContext()), Instruction::Switch,
Craig Topperc6207612014-04-09 06:08:46 +00003411 nullptr, 0, InsertBefore) {
Chris Lattnerbaf00152010-11-17 05:41:46 +00003412 init(Value, Default, 2+NumCases*2);
Chris Lattner2195fc42007-02-24 00:55:48 +00003413}
3414
3415/// SwitchInst ctor - Create a new switch instruction, specifying a value to
3416/// switch on and a default destination. The number of additional cases can
3417/// be specified here to make memory allocation more efficient. This
3418/// constructor also autoinserts at the end of the specified BasicBlock.
3419SwitchInst::SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
3420 BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +00003421 : TerminatorInst(Type::getVoidTy(Value->getContext()), Instruction::Switch,
Craig Topperc6207612014-04-09 06:08:46 +00003422 nullptr, 0, InsertAtEnd) {
Chris Lattnerbaf00152010-11-17 05:41:46 +00003423 init(Value, Default, 2+NumCases*2);
Chris Lattner2195fc42007-02-24 00:55:48 +00003424}
3425
Misha Brukmanb1c93172005-04-21 23:48:37 +00003426SwitchInst::SwitchInst(const SwitchInst &SI)
Craig Topperc6207612014-04-09 06:08:46 +00003427 : TerminatorInst(SI.getType(), Instruction::Switch, nullptr, 0) {
Chris Lattnerbaf00152010-11-17 05:41:46 +00003428 init(SI.getCondition(), SI.getDefaultDest(), SI.getNumOperands());
3429 NumOperands = SI.getNumOperands();
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003430 Use *OL = OperandList, *InOL = SI.OperandList;
Chris Lattnerbaf00152010-11-17 05:41:46 +00003431 for (unsigned i = 2, E = SI.getNumOperands(); i != E; i += 2) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00003432 OL[i] = InOL[i];
3433 OL[i+1] = InOL[i+1];
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003434 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003435 SubclassOptionalData = SI.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003436}
3437
Gordon Henriksen14a55692007-12-10 02:14:30 +00003438SwitchInst::~SwitchInst() {
Jay Foadbbb91f22011-01-16 15:30:52 +00003439 dropHungoffUses();
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003440}
3441
3442
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003443/// addCase - Add an entry to the switch instruction...
3444///
Chris Lattner47ac1872005-02-24 05:32:09 +00003445void SwitchInst::addCase(ConstantInt *OnVal, BasicBlock *Dest) {
Stepan Dyatkovskiy513aaa52012-02-01 07:49:51 +00003446 unsigned NewCaseIdx = getNumCases();
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003447 unsigned OpNo = NumOperands;
3448 if (OpNo+2 > ReservedSpace)
Jay Foade98f29d2011-04-01 08:00:58 +00003449 growOperands(); // Get more space!
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003450 // Initialize some new operands.
Chris Lattnerf711f8d2005-01-29 01:05:12 +00003451 assert(OpNo+1 < ReservedSpace && "Growing didn't work!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003452 NumOperands = OpNo+2;
Bob Wilsone4077362013-09-09 19:14:35 +00003453 CaseIt Case(this, NewCaseIdx);
3454 Case.setValue(OnVal);
Stepan Dyatkovskiy5b648af2012-03-08 07:06:20 +00003455 Case.setSuccessor(Dest);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003456}
3457
Stepan Dyatkovskiy513aaa52012-02-01 07:49:51 +00003458/// removeCase - This method removes the specified case and its successor
3459/// from the switch instruction.
Bob Wilsone4077362013-09-09 19:14:35 +00003460void SwitchInst::removeCase(CaseIt i) {
Stepan Dyatkovskiy5b648af2012-03-08 07:06:20 +00003461 unsigned idx = i.getCaseIndex();
3462
Stepan Dyatkovskiy513aaa52012-02-01 07:49:51 +00003463 assert(2 + idx*2 < getNumOperands() && "Case index out of range!!!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003464
3465 unsigned NumOps = getNumOperands();
3466 Use *OL = OperandList;
3467
Jay Foad14277722011-02-01 09:22:34 +00003468 // Overwrite this case with the end of the list.
Stepan Dyatkovskiy513aaa52012-02-01 07:49:51 +00003469 if (2 + (idx + 1) * 2 != NumOps) {
3470 OL[2 + idx * 2] = OL[NumOps - 2];
3471 OL[2 + idx * 2 + 1] = OL[NumOps - 1];
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003472 }
3473
3474 // Nuke the last value.
Craig Topperc6207612014-04-09 06:08:46 +00003475 OL[NumOps-2].set(nullptr);
3476 OL[NumOps-2+1].set(nullptr);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003477 NumOperands = NumOps-2;
3478}
3479
Jay Foade98f29d2011-04-01 08:00:58 +00003480/// growOperands - grow operands - This grows the operand list in response
3481/// to a push_back style of operation. This grows the number of ops by 3 times.
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003482///
Jay Foade98f29d2011-04-01 08:00:58 +00003483void SwitchInst::growOperands() {
Gabor Greiff6caff662008-05-10 08:32:32 +00003484 unsigned e = getNumOperands();
Jay Foade98f29d2011-04-01 08:00:58 +00003485 unsigned NumOps = e*3;
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003486
3487 ReservedSpace = NumOps;
Gabor Greiff6caff662008-05-10 08:32:32 +00003488 Use *NewOps = allocHungoffUses(NumOps);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003489 Use *OldOps = OperandList;
Gabor Greiff6caff662008-05-10 08:32:32 +00003490 for (unsigned i = 0; i != e; ++i) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00003491 NewOps[i] = OldOps[i];
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003492 }
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003493 OperandList = NewOps;
Jay Foadbbb91f22011-01-16 15:30:52 +00003494 Use::zap(OldOps, OldOps + e, true);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003495}
3496
3497
3498BasicBlock *SwitchInst::getSuccessorV(unsigned idx) const {
3499 return getSuccessor(idx);
3500}
3501unsigned SwitchInst::getNumSuccessorsV() const {
3502 return getNumSuccessors();
3503}
3504void SwitchInst::setSuccessorV(unsigned idx, BasicBlock *B) {
3505 setSuccessor(idx, B);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003506}
Chris Lattnerf22be932004-10-15 23:52:53 +00003507
Chris Lattner3ed871f2009-10-27 19:13:16 +00003508//===----------------------------------------------------------------------===//
Jay Foadbbb91f22011-01-16 15:30:52 +00003509// IndirectBrInst Implementation
Chris Lattner3ed871f2009-10-27 19:13:16 +00003510//===----------------------------------------------------------------------===//
3511
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003512void IndirectBrInst::init(Value *Address, unsigned NumDests) {
Duncan Sands19d0b472010-02-16 11:11:14 +00003513 assert(Address && Address->getType()->isPointerTy() &&
Chris Lattner6747b4c2009-10-29 05:53:32 +00003514 "Address of indirectbr must be a pointer");
Chris Lattner3ed871f2009-10-27 19:13:16 +00003515 ReservedSpace = 1+NumDests;
3516 NumOperands = 1;
3517 OperandList = allocHungoffUses(ReservedSpace);
3518
3519 OperandList[0] = Address;
3520}
3521
3522
Jay Foade98f29d2011-04-01 08:00:58 +00003523/// growOperands - grow operands - This grows the operand list in response
3524/// to a push_back style of operation. This grows the number of ops by 2 times.
Chris Lattner3ed871f2009-10-27 19:13:16 +00003525///
Jay Foade98f29d2011-04-01 08:00:58 +00003526void IndirectBrInst::growOperands() {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003527 unsigned e = getNumOperands();
Jay Foade98f29d2011-04-01 08:00:58 +00003528 unsigned NumOps = e*2;
Chris Lattner3ed871f2009-10-27 19:13:16 +00003529
3530 ReservedSpace = NumOps;
3531 Use *NewOps = allocHungoffUses(NumOps);
3532 Use *OldOps = OperandList;
3533 for (unsigned i = 0; i != e; ++i)
3534 NewOps[i] = OldOps[i];
3535 OperandList = NewOps;
Jay Foadbbb91f22011-01-16 15:30:52 +00003536 Use::zap(OldOps, OldOps + e, true);
Chris Lattner3ed871f2009-10-27 19:13:16 +00003537}
3538
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003539IndirectBrInst::IndirectBrInst(Value *Address, unsigned NumCases,
3540 Instruction *InsertBefore)
3541: TerminatorInst(Type::getVoidTy(Address->getContext()),Instruction::IndirectBr,
Craig Topperc6207612014-04-09 06:08:46 +00003542 nullptr, 0, InsertBefore) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003543 init(Address, NumCases);
3544}
3545
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003546IndirectBrInst::IndirectBrInst(Value *Address, unsigned NumCases,
3547 BasicBlock *InsertAtEnd)
3548: TerminatorInst(Type::getVoidTy(Address->getContext()),Instruction::IndirectBr,
Craig Topperc6207612014-04-09 06:08:46 +00003549 nullptr, 0, InsertAtEnd) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003550 init(Address, NumCases);
3551}
3552
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003553IndirectBrInst::IndirectBrInst(const IndirectBrInst &IBI)
3554 : TerminatorInst(Type::getVoidTy(IBI.getContext()), Instruction::IndirectBr,
Chris Lattner3ed871f2009-10-27 19:13:16 +00003555 allocHungoffUses(IBI.getNumOperands()),
3556 IBI.getNumOperands()) {
3557 Use *OL = OperandList, *InOL = IBI.OperandList;
3558 for (unsigned i = 0, E = IBI.getNumOperands(); i != E; ++i)
3559 OL[i] = InOL[i];
3560 SubclassOptionalData = IBI.SubclassOptionalData;
3561}
3562
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003563IndirectBrInst::~IndirectBrInst() {
Jay Foadbbb91f22011-01-16 15:30:52 +00003564 dropHungoffUses();
Chris Lattner3ed871f2009-10-27 19:13:16 +00003565}
3566
3567/// addDestination - Add a destination.
3568///
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003569void IndirectBrInst::addDestination(BasicBlock *DestBB) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003570 unsigned OpNo = NumOperands;
3571 if (OpNo+1 > ReservedSpace)
Jay Foade98f29d2011-04-01 08:00:58 +00003572 growOperands(); // Get more space!
Chris Lattner3ed871f2009-10-27 19:13:16 +00003573 // Initialize some new operands.
3574 assert(OpNo < ReservedSpace && "Growing didn't work!");
3575 NumOperands = OpNo+1;
3576 OperandList[OpNo] = DestBB;
3577}
3578
3579/// removeDestination - This method removes the specified successor from the
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003580/// indirectbr instruction.
3581void IndirectBrInst::removeDestination(unsigned idx) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003582 assert(idx < getNumOperands()-1 && "Successor index out of range!");
3583
3584 unsigned NumOps = getNumOperands();
3585 Use *OL = OperandList;
3586
3587 // Replace this value with the last one.
3588 OL[idx+1] = OL[NumOps-1];
3589
3590 // Nuke the last value.
Craig Topperc6207612014-04-09 06:08:46 +00003591 OL[NumOps-1].set(nullptr);
Chris Lattner3ed871f2009-10-27 19:13:16 +00003592 NumOperands = NumOps-1;
3593}
3594
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003595BasicBlock *IndirectBrInst::getSuccessorV(unsigned idx) const {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003596 return getSuccessor(idx);
3597}
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003598unsigned IndirectBrInst::getNumSuccessorsV() const {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003599 return getNumSuccessors();
3600}
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003601void IndirectBrInst::setSuccessorV(unsigned idx, BasicBlock *B) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003602 setSuccessor(idx, B);
3603}
3604
3605//===----------------------------------------------------------------------===//
Devang Patel11cf3f42009-10-27 22:16:29 +00003606// clone_impl() implementations
Chris Lattner3ed871f2009-10-27 19:13:16 +00003607//===----------------------------------------------------------------------===//
3608
Chris Lattnerf22be932004-10-15 23:52:53 +00003609// Define these methods here so vtables don't get emitted into every translation
3610// unit that uses these classes.
3611
Devang Patel11cf3f42009-10-27 22:16:29 +00003612GetElementPtrInst *GetElementPtrInst::clone_impl() const {
3613 return new (getNumOperands()) GetElementPtrInst(*this);
Chris Lattnerf22be932004-10-15 23:52:53 +00003614}
3615
Devang Patel11cf3f42009-10-27 22:16:29 +00003616BinaryOperator *BinaryOperator::clone_impl() const {
3617 return Create(getOpcode(), Op<0>(), Op<1>());
Chris Lattnerf22be932004-10-15 23:52:53 +00003618}
3619
Devang Patel11cf3f42009-10-27 22:16:29 +00003620FCmpInst* FCmpInst::clone_impl() const {
3621 return new FCmpInst(getPredicate(), Op<0>(), Op<1>());
Reid Spencerd9436b62006-11-20 01:22:35 +00003622}
3623
Devang Patel11cf3f42009-10-27 22:16:29 +00003624ICmpInst* ICmpInst::clone_impl() const {
3625 return new ICmpInst(getPredicate(), Op<0>(), Op<1>());
Dan Gohman0752bff2008-05-23 00:36:11 +00003626}
3627
Devang Patel11cf3f42009-10-27 22:16:29 +00003628ExtractValueInst *ExtractValueInst::clone_impl() const {
3629 return new ExtractValueInst(*this);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003630}
3631
Devang Patel11cf3f42009-10-27 22:16:29 +00003632InsertValueInst *InsertValueInst::clone_impl() const {
3633 return new InsertValueInst(*this);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003634}
3635
Devang Patel11cf3f42009-10-27 22:16:29 +00003636AllocaInst *AllocaInst::clone_impl() const {
David Majnemer6b3244c2014-04-30 16:12:21 +00003637 AllocaInst *Result = new AllocaInst(getAllocatedType(),
3638 (Value *)getOperand(0), getAlignment());
3639 Result->setUsedWithInAlloca(isUsedWithInAlloca());
3640 return Result;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003641}
3642
Devang Patel11cf3f42009-10-27 22:16:29 +00003643LoadInst *LoadInst::clone_impl() const {
Eli Friedman59b66882011-08-09 23:02:53 +00003644 return new LoadInst(getOperand(0), Twine(), isVolatile(),
3645 getAlignment(), getOrdering(), getSynchScope());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003646}
3647
Devang Patel11cf3f42009-10-27 22:16:29 +00003648StoreInst *StoreInst::clone_impl() const {
Eli Friedmancad9f2a2011-08-10 17:39:11 +00003649 return new StoreInst(getOperand(0), getOperand(1), isVolatile(),
Eli Friedman59b66882011-08-09 23:02:53 +00003650 getAlignment(), getOrdering(), getSynchScope());
3651
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003652}
3653
Eli Friedmanc9a551e2011-07-28 21:48:00 +00003654AtomicCmpXchgInst *AtomicCmpXchgInst::clone_impl() const {
3655 AtomicCmpXchgInst *Result =
3656 new AtomicCmpXchgInst(getOperand(0), getOperand(1), getOperand(2),
Tim Northovere94a5182014-03-11 10:48:52 +00003657 getSuccessOrdering(), getFailureOrdering(),
3658 getSynchScope());
Eli Friedmanc9a551e2011-07-28 21:48:00 +00003659 Result->setVolatile(isVolatile());
Tim Northover420a2162014-06-13 14:24:07 +00003660 Result->setWeak(isWeak());
Eli Friedmanc9a551e2011-07-28 21:48:00 +00003661 return Result;
3662}
3663
3664AtomicRMWInst *AtomicRMWInst::clone_impl() const {
3665 AtomicRMWInst *Result =
3666 new AtomicRMWInst(getOperation(),getOperand(0), getOperand(1),
3667 getOrdering(), getSynchScope());
3668 Result->setVolatile(isVolatile());
3669 return Result;
3670}
3671
Eli Friedmanfee02c62011-07-25 23:16:38 +00003672FenceInst *FenceInst::clone_impl() const {
3673 return new FenceInst(getContext(), getOrdering(), getSynchScope());
3674}
3675
Devang Patel11cf3f42009-10-27 22:16:29 +00003676TruncInst *TruncInst::clone_impl() const {
3677 return new TruncInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003678}
3679
Devang Patel11cf3f42009-10-27 22:16:29 +00003680ZExtInst *ZExtInst::clone_impl() const {
3681 return new ZExtInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003682}
3683
Devang Patel11cf3f42009-10-27 22:16:29 +00003684SExtInst *SExtInst::clone_impl() const {
3685 return new SExtInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003686}
3687
Devang Patel11cf3f42009-10-27 22:16:29 +00003688FPTruncInst *FPTruncInst::clone_impl() const {
3689 return new FPTruncInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003690}
3691
Devang Patel11cf3f42009-10-27 22:16:29 +00003692FPExtInst *FPExtInst::clone_impl() const {
3693 return new FPExtInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003694}
3695
Devang Patel11cf3f42009-10-27 22:16:29 +00003696UIToFPInst *UIToFPInst::clone_impl() const {
3697 return new UIToFPInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003698}
3699
Devang Patel11cf3f42009-10-27 22:16:29 +00003700SIToFPInst *SIToFPInst::clone_impl() const {
3701 return new SIToFPInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003702}
3703
Devang Patel11cf3f42009-10-27 22:16:29 +00003704FPToUIInst *FPToUIInst::clone_impl() const {
3705 return new FPToUIInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003706}
3707
Devang Patel11cf3f42009-10-27 22:16:29 +00003708FPToSIInst *FPToSIInst::clone_impl() const {
3709 return new FPToSIInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003710}
3711
Devang Patel11cf3f42009-10-27 22:16:29 +00003712PtrToIntInst *PtrToIntInst::clone_impl() const {
3713 return new PtrToIntInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003714}
3715
Devang Patel11cf3f42009-10-27 22:16:29 +00003716IntToPtrInst *IntToPtrInst::clone_impl() const {
3717 return new IntToPtrInst(getOperand(0), getType());
Gabor Greif697e94c2008-05-15 10:04:30 +00003718}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003719
Devang Patel11cf3f42009-10-27 22:16:29 +00003720BitCastInst *BitCastInst::clone_impl() const {
3721 return new BitCastInst(getOperand(0), getType());
Gabor Greif697e94c2008-05-15 10:04:30 +00003722}
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003723
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00003724AddrSpaceCastInst *AddrSpaceCastInst::clone_impl() const {
3725 return new AddrSpaceCastInst(getOperand(0), getType());
3726}
3727
Devang Patel11cf3f42009-10-27 22:16:29 +00003728CallInst *CallInst::clone_impl() const {
3729 return new(getNumOperands()) CallInst(*this);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003730}
3731
Devang Patel11cf3f42009-10-27 22:16:29 +00003732SelectInst *SelectInst::clone_impl() const {
3733 return SelectInst::Create(getOperand(0), getOperand(1), getOperand(2));
Chris Lattnerbbe0a422006-04-08 01:18:18 +00003734}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003735
Devang Patel11cf3f42009-10-27 22:16:29 +00003736VAArgInst *VAArgInst::clone_impl() const {
3737 return new VAArgInst(getOperand(0), getType());
Chris Lattnerbbe0a422006-04-08 01:18:18 +00003738}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003739
Devang Patel11cf3f42009-10-27 22:16:29 +00003740ExtractElementInst *ExtractElementInst::clone_impl() const {
3741 return ExtractElementInst::Create(getOperand(0), getOperand(1));
Chris Lattnerbbe0a422006-04-08 01:18:18 +00003742}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003743
Devang Patel11cf3f42009-10-27 22:16:29 +00003744InsertElementInst *InsertElementInst::clone_impl() const {
Chris Lattner1dcb6542012-01-25 23:49:49 +00003745 return InsertElementInst::Create(getOperand(0), getOperand(1), getOperand(2));
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003746}
3747
Devang Patel11cf3f42009-10-27 22:16:29 +00003748ShuffleVectorInst *ShuffleVectorInst::clone_impl() const {
Chris Lattner1dcb6542012-01-25 23:49:49 +00003749 return new ShuffleVectorInst(getOperand(0), getOperand(1), getOperand(2));
Gabor Greif697e94c2008-05-15 10:04:30 +00003750}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003751
Devang Patel11cf3f42009-10-27 22:16:29 +00003752PHINode *PHINode::clone_impl() const {
3753 return new PHINode(*this);
3754}
3755
Bill Wendlingfae14752011-08-12 20:24:12 +00003756LandingPadInst *LandingPadInst::clone_impl() const {
3757 return new LandingPadInst(*this);
3758}
3759
Devang Patel11cf3f42009-10-27 22:16:29 +00003760ReturnInst *ReturnInst::clone_impl() const {
3761 return new(getNumOperands()) ReturnInst(*this);
3762}
3763
3764BranchInst *BranchInst::clone_impl() const {
Jay Foadd81f3c92011-01-07 20:29:02 +00003765 return new(getNumOperands()) BranchInst(*this);
Gabor Greif697e94c2008-05-15 10:04:30 +00003766}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003767
Devang Patel11cf3f42009-10-27 22:16:29 +00003768SwitchInst *SwitchInst::clone_impl() const {
3769 return new SwitchInst(*this);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003770}
3771
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003772IndirectBrInst *IndirectBrInst::clone_impl() const {
3773 return new IndirectBrInst(*this);
Chris Lattner3ed871f2009-10-27 19:13:16 +00003774}
3775
3776
Devang Patel11cf3f42009-10-27 22:16:29 +00003777InvokeInst *InvokeInst::clone_impl() const {
3778 return new(getNumOperands()) InvokeInst(*this);
Gabor Greif697e94c2008-05-15 10:04:30 +00003779}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003780
Bill Wendlingf891bf82011-07-31 06:30:59 +00003781ResumeInst *ResumeInst::clone_impl() const {
3782 return new(1) ResumeInst(*this);
3783}
3784
Devang Patel11cf3f42009-10-27 22:16:29 +00003785UnreachableInst *UnreachableInst::clone_impl() const {
Nick Lewycky42fb7452009-09-27 07:38:41 +00003786 LLVMContext &Context = getContext();
Devang Patel11cf3f42009-10-27 22:16:29 +00003787 return new UnreachableInst(Context);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003788}