blob: 4b48d7d6eb0cda8289c93b016358aaa3b1f5bb04 [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");
Matt Arsenault69417852014-09-15 17:56:51 +0000368 const ConstantInt *CVal = dyn_cast<ConstantInt>(val);
369 return CVal && CVal->isOne();
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000370}
371
Nick Lewyckybb1410e2009-10-17 23:52:26 +0000372static Instruction *createMalloc(Instruction *InsertBefore,
Chris Lattner229907c2011-07-18 04:54:35 +0000373 BasicBlock *InsertAtEnd, Type *IntPtrTy,
374 Type *AllocTy, Value *AllocSize,
Victor Hernandezf3db9152009-11-07 00:16:28 +0000375 Value *ArraySize, Function *MallocF,
376 const Twine &Name) {
Benjamin Kramer4bf4e862009-09-10 11:31:39 +0000377 assert(((!InsertBefore && InsertAtEnd) || (InsertBefore && !InsertAtEnd)) &&
Victor Hernandez788eaab2009-09-18 19:20:02 +0000378 "createMalloc needs either InsertBefore or InsertAtEnd");
379
380 // malloc(type) becomes:
381 // bitcast (i8* malloc(typeSize)) to type*
382 // malloc(type, arraySize) becomes:
383 // bitcast (i8 *malloc(typeSize*arraySize)) to type*
Victor Hernandezf3db9152009-11-07 00:16:28 +0000384 if (!ArraySize)
385 ArraySize = ConstantInt::get(IntPtrTy, 1);
386 else if (ArraySize->getType() != IntPtrTy) {
387 if (InsertBefore)
Victor Hernandeze04ed0c2009-11-07 00:36:50 +0000388 ArraySize = CastInst::CreateIntegerCast(ArraySize, IntPtrTy, false,
389 "", InsertBefore);
Victor Hernandezf3db9152009-11-07 00:16:28 +0000390 else
Victor Hernandeze04ed0c2009-11-07 00:36:50 +0000391 ArraySize = CastInst::CreateIntegerCast(ArraySize, IntPtrTy, false,
392 "", InsertAtEnd);
Victor Hernandezf3db9152009-11-07 00:16:28 +0000393 }
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000394
Benjamin Kramer4bf4e862009-09-10 11:31:39 +0000395 if (!IsConstantOne(ArraySize)) {
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000396 if (IsConstantOne(AllocSize)) {
397 AllocSize = ArraySize; // Operand * 1 = Operand
398 } else if (Constant *CO = dyn_cast<Constant>(ArraySize)) {
399 Constant *Scale = ConstantExpr::getIntegerCast(CO, IntPtrTy,
400 false /*ZExt*/);
401 // Malloc arg is constant product of type size and array size
402 AllocSize = ConstantExpr::getMul(Scale, cast<Constant>(AllocSize));
403 } else {
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000404 // Multiply type size by the array size...
405 if (InsertBefore)
Victor Hernandez788eaab2009-09-18 19:20:02 +0000406 AllocSize = BinaryOperator::CreateMul(ArraySize, AllocSize,
407 "mallocsize", InsertBefore);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000408 else
Victor Hernandez788eaab2009-09-18 19:20:02 +0000409 AllocSize = BinaryOperator::CreateMul(ArraySize, AllocSize,
410 "mallocsize", InsertAtEnd);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000411 }
Benjamin Kramer4bf4e862009-09-10 11:31:39 +0000412 }
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000413
Victor Hernandez788eaab2009-09-18 19:20:02 +0000414 assert(AllocSize->getType() == IntPtrTy && "malloc arg is wrong size");
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000415 // Create the call to Malloc.
416 BasicBlock* BB = InsertBefore ? InsertBefore->getParent() : InsertAtEnd;
417 Module* M = BB->getParent()->getParent();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000418 Type *BPTy = Type::getInt8PtrTy(BB->getContext());
Victor Hernandezbb336a12009-11-10 19:53:28 +0000419 Value *MallocFunc = MallocF;
420 if (!MallocFunc)
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000421 // prototype malloc as "void *malloc(size_t)"
Victor Hernandezbb336a12009-11-10 19:53:28 +0000422 MallocFunc = M->getOrInsertFunction("malloc", BPTy, IntPtrTy, NULL);
Chris Lattner229907c2011-07-18 04:54:35 +0000423 PointerType *AllocPtrType = PointerType::getUnqual(AllocTy);
Craig Topperc6207612014-04-09 06:08:46 +0000424 CallInst *MCall = nullptr;
425 Instruction *Result = nullptr;
Victor Hernandez788eaab2009-09-18 19:20:02 +0000426 if (InsertBefore) {
Victor Hernandezbb336a12009-11-10 19:53:28 +0000427 MCall = CallInst::Create(MallocFunc, AllocSize, "malloccall", InsertBefore);
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000428 Result = MCall;
429 if (Result->getType() != AllocPtrType)
430 // Create a cast instruction to convert to the right type...
Victor Hernandezf3db9152009-11-07 00:16:28 +0000431 Result = new BitCastInst(MCall, AllocPtrType, Name, InsertBefore);
Victor Hernandez788eaab2009-09-18 19:20:02 +0000432 } else {
Victor Hernandezbb336a12009-11-10 19:53:28 +0000433 MCall = CallInst::Create(MallocFunc, AllocSize, "malloccall");
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000434 Result = MCall;
435 if (Result->getType() != AllocPtrType) {
436 InsertAtEnd->getInstList().push_back(MCall);
437 // Create a cast instruction to convert to the right type...
Victor Hernandezf3db9152009-11-07 00:16:28 +0000438 Result = new BitCastInst(MCall, AllocPtrType, Name);
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000439 }
Victor Hernandez788eaab2009-09-18 19:20:02 +0000440 }
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000441 MCall->setTailCall();
Victor Hernandezbb336a12009-11-10 19:53:28 +0000442 if (Function *F = dyn_cast<Function>(MallocFunc)) {
443 MCall->setCallingConv(F->getCallingConv());
444 if (!F->doesNotAlias(0)) F->setDoesNotAlias(0);
445 }
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000446 assert(!MCall->getType()->isVoidTy() && "Malloc has void return type");
Victor Hernandez788eaab2009-09-18 19:20:02 +0000447
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000448 return Result;
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000449}
450
451/// CreateMalloc - Generate the IR for a call to malloc:
452/// 1. Compute the malloc call's argument as the specified type's size,
453/// possibly multiplied by the array size if the array size is not
454/// constant 1.
455/// 2. Call malloc with that argument.
456/// 3. Bitcast the result of the malloc call to the specified type.
Nick Lewyckybb1410e2009-10-17 23:52:26 +0000457Instruction *CallInst::CreateMalloc(Instruction *InsertBefore,
Chris Lattner229907c2011-07-18 04:54:35 +0000458 Type *IntPtrTy, Type *AllocTy,
Victor Hernandezf3db9152009-11-07 00:16:28 +0000459 Value *AllocSize, Value *ArraySize,
Duncan Sands41b4a6b2010-07-12 08:16:59 +0000460 Function * MallocF,
Victor Hernandezf3db9152009-11-07 00:16:28 +0000461 const Twine &Name) {
Craig Topperc6207612014-04-09 06:08:46 +0000462 return createMalloc(InsertBefore, nullptr, IntPtrTy, AllocTy, AllocSize,
Chris Lattner601e390a2010-07-12 00:57:28 +0000463 ArraySize, MallocF, Name);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000464}
465
466/// CreateMalloc - Generate the IR for a call to malloc:
467/// 1. Compute the malloc call's argument as the specified type's size,
468/// possibly multiplied by the array size if the array size is not
469/// constant 1.
470/// 2. Call malloc with that argument.
471/// 3. Bitcast the result of the malloc call to the specified type.
472/// Note: This function does not add the bitcast to the basic block, that is the
473/// responsibility of the caller.
Nick Lewyckybb1410e2009-10-17 23:52:26 +0000474Instruction *CallInst::CreateMalloc(BasicBlock *InsertAtEnd,
Chris Lattner229907c2011-07-18 04:54:35 +0000475 Type *IntPtrTy, Type *AllocTy,
Victor Hernandezf3db9152009-11-07 00:16:28 +0000476 Value *AllocSize, Value *ArraySize,
477 Function *MallocF, const Twine &Name) {
Craig Topperc6207612014-04-09 06:08:46 +0000478 return createMalloc(nullptr, InsertAtEnd, IntPtrTy, AllocTy, AllocSize,
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000479 ArraySize, MallocF, Name);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000480}
Duncan Sands5208d1a2007-11-28 17:07:01 +0000481
Victor Hernandeze2971492009-10-24 04:23:03 +0000482static Instruction* createFree(Value* Source, Instruction *InsertBefore,
483 BasicBlock *InsertAtEnd) {
484 assert(((!InsertBefore && InsertAtEnd) || (InsertBefore && !InsertAtEnd)) &&
485 "createFree needs either InsertBefore or InsertAtEnd");
Duncan Sands19d0b472010-02-16 11:11:14 +0000486 assert(Source->getType()->isPointerTy() &&
Victor Hernandeze2971492009-10-24 04:23:03 +0000487 "Can not free something of nonpointer type!");
488
489 BasicBlock* BB = InsertBefore ? InsertBefore->getParent() : InsertAtEnd;
490 Module* M = BB->getParent()->getParent();
491
Chris Lattner229907c2011-07-18 04:54:35 +0000492 Type *VoidTy = Type::getVoidTy(M->getContext());
493 Type *IntPtrTy = Type::getInt8PtrTy(M->getContext());
Victor Hernandeze2971492009-10-24 04:23:03 +0000494 // prototype free as "void free(void*)"
Chris Lattner2156c222009-11-09 07:12:01 +0000495 Value *FreeFunc = M->getOrInsertFunction("free", VoidTy, IntPtrTy, NULL);
Craig Topperc6207612014-04-09 06:08:46 +0000496 CallInst* Result = nullptr;
Victor Hernandeze2971492009-10-24 04:23:03 +0000497 Value *PtrCast = Source;
498 if (InsertBefore) {
499 if (Source->getType() != IntPtrTy)
500 PtrCast = new BitCastInst(Source, IntPtrTy, "", InsertBefore);
501 Result = CallInst::Create(FreeFunc, PtrCast, "", InsertBefore);
502 } else {
503 if (Source->getType() != IntPtrTy)
504 PtrCast = new BitCastInst(Source, IntPtrTy, "", InsertAtEnd);
505 Result = CallInst::Create(FreeFunc, PtrCast, "");
506 }
507 Result->setTailCall();
Chris Lattner2156c222009-11-09 07:12:01 +0000508 if (Function *F = dyn_cast<Function>(FreeFunc))
509 Result->setCallingConv(F->getCallingConv());
Victor Hernandeze2971492009-10-24 04:23:03 +0000510
511 return Result;
512}
513
514/// CreateFree - Generate the IR for a call to the builtin free function.
Chris Lattner601e390a2010-07-12 00:57:28 +0000515Instruction * CallInst::CreateFree(Value* Source, Instruction *InsertBefore) {
Craig Topperc6207612014-04-09 06:08:46 +0000516 return createFree(Source, InsertBefore, nullptr);
Victor Hernandeze2971492009-10-24 04:23:03 +0000517}
518
519/// CreateFree - Generate the IR for a call to the builtin free function.
520/// Note: This function does not add the call to the basic block, that is the
521/// responsibility of the caller.
522Instruction* CallInst::CreateFree(Value* Source, BasicBlock *InsertAtEnd) {
Craig Topperc6207612014-04-09 06:08:46 +0000523 Instruction* FreeCall = createFree(Source, nullptr, InsertAtEnd);
Victor Hernandeze2971492009-10-24 04:23:03 +0000524 assert(FreeCall && "CreateFree did not create a CallInst");
525 return FreeCall;
526}
527
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000528//===----------------------------------------------------------------------===//
529// InvokeInst Implementation
530//===----------------------------------------------------------------------===//
531
532void InvokeInst::init(Value *Fn, BasicBlock *IfNormal, BasicBlock *IfException,
Jay Foad5bd375a2011-07-15 08:37:34 +0000533 ArrayRef<Value *> Args, const Twine &NameStr) {
534 assert(NumOperands == 3 + Args.size() && "NumOperands not set up?");
Gabor Greifa2fbc0a2010-03-24 13:21:49 +0000535 Op<-3>() = Fn;
536 Op<-2>() = IfNormal;
537 Op<-1>() = IfException;
Jay Foad5bd375a2011-07-15 08:37:34 +0000538
539#ifndef NDEBUG
Chris Lattner229907c2011-07-18 04:54:35 +0000540 FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000541 cast<FunctionType>(cast<PointerType>(Fn->getType())->getElementType());
Misha Brukmanb1c93172005-04-21 23:48:37 +0000542
Jay Foad5bd375a2011-07-15 08:37:34 +0000543 assert(((Args.size() == FTy->getNumParams()) ||
544 (FTy->isVarArg() && Args.size() > FTy->getNumParams())) &&
Gabor Greif668d7002010-03-23 13:45:54 +0000545 "Invoking a function with bad signature");
Misha Brukmanb1c93172005-04-21 23:48:37 +0000546
Jay Foad5bd375a2011-07-15 08:37:34 +0000547 for (unsigned i = 0, e = Args.size(); i != e; i++)
Chris Lattner667a0562006-05-03 00:48:22 +0000548 assert((i >= FTy->getNumParams() ||
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000549 FTy->getParamType(i) == Args[i]->getType()) &&
Chris Lattner667a0562006-05-03 00:48:22 +0000550 "Invoking a function with a bad signature!");
Jay Foad5bd375a2011-07-15 08:37:34 +0000551#endif
552
553 std::copy(Args.begin(), Args.end(), op_begin());
554 setName(NameStr);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000555}
556
Misha Brukmanb1c93172005-04-21 23:48:37 +0000557InvokeInst::InvokeInst(const InvokeInst &II)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000558 : TerminatorInst(II.getType(), Instruction::Invoke,
Gabor Greif697e94c2008-05-15 10:04:30 +0000559 OperandTraits<InvokeInst>::op_end(this)
560 - II.getNumOperands(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000561 II.getNumOperands()) {
Devang Patel4c758ea2008-09-25 21:00:45 +0000562 setAttributes(II.getAttributes());
Chris Lattnerb9c86512009-12-29 02:14:09 +0000563 setCallingConv(II.getCallingConv());
Jay Foad5bd375a2011-07-15 08:37:34 +0000564 std::copy(II.op_begin(), II.op_end(), op_begin());
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000565 SubclassOptionalData = II.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000566}
567
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000568BasicBlock *InvokeInst::getSuccessorV(unsigned idx) const {
569 return getSuccessor(idx);
570}
571unsigned InvokeInst::getNumSuccessorsV() const {
572 return getNumSuccessors();
573}
574void InvokeInst::setSuccessorV(unsigned idx, BasicBlock *B) {
575 return setSuccessor(idx, B);
576}
577
Michael Gottesman41748d72013-06-27 00:25:01 +0000578bool InvokeInst::hasFnAttrImpl(Attribute::AttrKind A) const {
Bill Wendling749a43d2012-12-30 13:50:49 +0000579 if (AttributeList.hasAttribute(AttributeSet::FunctionIndex, A))
Bill Wendling375eb1f2012-10-09 00:28:54 +0000580 return true;
581 if (const Function *F = getCalledFunction())
Bill Wendling94dcaf82012-12-30 12:45:13 +0000582 return F->getAttributes().hasAttribute(AttributeSet::FunctionIndex, A);
Bill Wendling375eb1f2012-10-09 00:28:54 +0000583 return false;
584}
585
Bill Wendlingc79e42c2012-12-22 00:37:52 +0000586bool InvokeInst::paramHasAttr(unsigned i, Attribute::AttrKind A) const {
Bill Wendling749a43d2012-12-30 13:50:49 +0000587 if (AttributeList.hasAttribute(i, A))
Bill Wendling8baa61d2012-10-03 17:54:26 +0000588 return true;
589 if (const Function *F = getCalledFunction())
Bill Wendling94dcaf82012-12-30 12:45:13 +0000590 return F->getAttributes().hasAttribute(i, A);
Bill Wendlingdaf8e382012-10-04 07:18:12 +0000591 return false;
592}
593
Peter Collingbourne1b97a9c2013-03-02 01:20:18 +0000594void InvokeInst::addAttribute(unsigned i, Attribute::AttrKind attr) {
Bill Wendlinge94d8432012-12-07 23:16:57 +0000595 AttributeSet PAL = getAttributes();
Peter Collingbourne1b97a9c2013-03-02 01:20:18 +0000596 PAL = PAL.addAttribute(getContext(), i, attr);
Devang Patel4c758ea2008-09-25 21:00:45 +0000597 setAttributes(PAL);
Eric Christopher901b1a72008-05-16 20:39:43 +0000598}
599
Bill Wendling3d7b0b82012-12-19 07:18:57 +0000600void InvokeInst::removeAttribute(unsigned i, Attribute attr) {
Bill Wendlinge94d8432012-12-07 23:16:57 +0000601 AttributeSet PAL = getAttributes();
Bill Wendling430fa9b2013-01-23 00:45:55 +0000602 AttrBuilder B(attr);
603 PAL = PAL.removeAttributes(getContext(), i,
604 AttributeSet::get(getContext(), i, B));
Devang Patel4c758ea2008-09-25 21:00:45 +0000605 setAttributes(PAL);
Duncan Sandsaa31b922007-12-19 21:13:37 +0000606}
607
Bill Wendlingfae14752011-08-12 20:24:12 +0000608LandingPadInst *InvokeInst::getLandingPadInst() const {
609 return cast<LandingPadInst>(getUnwindDest()->getFirstNonPHI());
610}
Duncan Sands5208d1a2007-11-28 17:07:01 +0000611
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000612//===----------------------------------------------------------------------===//
613// ReturnInst Implementation
614//===----------------------------------------------------------------------===//
615
Chris Lattner2195fc42007-02-24 00:55:48 +0000616ReturnInst::ReturnInst(const ReturnInst &RI)
Owen Anderson55f1c092009-08-13 21:58:54 +0000617 : TerminatorInst(Type::getVoidTy(RI.getContext()), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000618 OperandTraits<ReturnInst>::op_end(this) -
619 RI.getNumOperands(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000620 RI.getNumOperands()) {
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000621 if (RI.getNumOperands())
Gabor Greif2d3024d2008-05-26 21:33:52 +0000622 Op<0>() = RI.Op<0>();
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000623 SubclassOptionalData = RI.SubclassOptionalData;
Chris Lattner2195fc42007-02-24 00:55:48 +0000624}
625
Owen Anderson55f1c092009-08-13 21:58:54 +0000626ReturnInst::ReturnInst(LLVMContext &C, Value *retVal, Instruction *InsertBefore)
627 : TerminatorInst(Type::getVoidTy(C), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000628 OperandTraits<ReturnInst>::op_end(this) - !!retVal, !!retVal,
629 InsertBefore) {
Devang Patelc38eb522008-02-26 18:49:29 +0000630 if (retVal)
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000631 Op<0>() = retVal;
Chris Lattner2195fc42007-02-24 00:55:48 +0000632}
Owen Anderson55f1c092009-08-13 21:58:54 +0000633ReturnInst::ReturnInst(LLVMContext &C, Value *retVal, BasicBlock *InsertAtEnd)
634 : TerminatorInst(Type::getVoidTy(C), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000635 OperandTraits<ReturnInst>::op_end(this) - !!retVal, !!retVal,
636 InsertAtEnd) {
Devang Patelc38eb522008-02-26 18:49:29 +0000637 if (retVal)
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000638 Op<0>() = retVal;
Chris Lattner2195fc42007-02-24 00:55:48 +0000639}
Owen Anderson55f1c092009-08-13 21:58:54 +0000640ReturnInst::ReturnInst(LLVMContext &Context, BasicBlock *InsertAtEnd)
641 : TerminatorInst(Type::getVoidTy(Context), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000642 OperandTraits<ReturnInst>::op_end(this), 0, InsertAtEnd) {
Devang Patel59643e52008-02-23 00:35:18 +0000643}
644
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000645unsigned ReturnInst::getNumSuccessorsV() const {
646 return getNumSuccessors();
647}
648
Devang Patelae682fb2008-02-26 17:56:20 +0000649/// Out-of-line ReturnInst method, put here so the C++ compiler can choose to
650/// emit the vtable for the class in this translation unit.
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000651void ReturnInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000652 llvm_unreachable("ReturnInst has no successors!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000653}
654
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000655BasicBlock *ReturnInst::getSuccessorV(unsigned idx) const {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000656 llvm_unreachable("ReturnInst has no successors!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000657}
658
Devang Patel59643e52008-02-23 00:35:18 +0000659ReturnInst::~ReturnInst() {
Devang Patel59643e52008-02-23 00:35:18 +0000660}
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000661
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000662//===----------------------------------------------------------------------===//
Bill Wendlingf891bf82011-07-31 06:30:59 +0000663// ResumeInst Implementation
664//===----------------------------------------------------------------------===//
665
666ResumeInst::ResumeInst(const ResumeInst &RI)
667 : TerminatorInst(Type::getVoidTy(RI.getContext()), Instruction::Resume,
668 OperandTraits<ResumeInst>::op_begin(this), 1) {
669 Op<0>() = RI.Op<0>();
670}
671
672ResumeInst::ResumeInst(Value *Exn, Instruction *InsertBefore)
673 : TerminatorInst(Type::getVoidTy(Exn->getContext()), Instruction::Resume,
674 OperandTraits<ResumeInst>::op_begin(this), 1, InsertBefore) {
675 Op<0>() = Exn;
676}
677
678ResumeInst::ResumeInst(Value *Exn, BasicBlock *InsertAtEnd)
679 : TerminatorInst(Type::getVoidTy(Exn->getContext()), Instruction::Resume,
680 OperandTraits<ResumeInst>::op_begin(this), 1, InsertAtEnd) {
681 Op<0>() = Exn;
682}
683
684unsigned ResumeInst::getNumSuccessorsV() const {
685 return getNumSuccessors();
686}
687
688void ResumeInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
689 llvm_unreachable("ResumeInst has no successors!");
690}
691
692BasicBlock *ResumeInst::getSuccessorV(unsigned idx) const {
693 llvm_unreachable("ResumeInst has no successors!");
Bill Wendlingf891bf82011-07-31 06:30:59 +0000694}
695
696//===----------------------------------------------------------------------===//
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000697// UnreachableInst Implementation
698//===----------------------------------------------------------------------===//
699
Owen Anderson55f1c092009-08-13 21:58:54 +0000700UnreachableInst::UnreachableInst(LLVMContext &Context,
701 Instruction *InsertBefore)
702 : TerminatorInst(Type::getVoidTy(Context), Instruction::Unreachable,
Craig Topperc6207612014-04-09 06:08:46 +0000703 nullptr, 0, InsertBefore) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000704}
Owen Anderson55f1c092009-08-13 21:58:54 +0000705UnreachableInst::UnreachableInst(LLVMContext &Context, BasicBlock *InsertAtEnd)
706 : TerminatorInst(Type::getVoidTy(Context), Instruction::Unreachable,
Craig Topperc6207612014-04-09 06:08:46 +0000707 nullptr, 0, InsertAtEnd) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000708}
709
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000710unsigned UnreachableInst::getNumSuccessorsV() const {
711 return getNumSuccessors();
712}
713
714void UnreachableInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
Bill Wendling0aef16a2012-02-06 21:44:22 +0000715 llvm_unreachable("UnreachableInst has no successors!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000716}
717
718BasicBlock *UnreachableInst::getSuccessorV(unsigned idx) const {
Bill Wendling0aef16a2012-02-06 21:44:22 +0000719 llvm_unreachable("UnreachableInst has no successors!");
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000720}
721
722//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000723// BranchInst Implementation
724//===----------------------------------------------------------------------===//
725
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000726void BranchInst::AssertOK() {
727 if (isConditional())
Duncan Sands9dff9be2010-02-15 16:12:20 +0000728 assert(getCondition()->getType()->isIntegerTy(1) &&
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000729 "May only branch on boolean predicates!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000730}
731
Chris Lattner2195fc42007-02-24 00:55:48 +0000732BranchInst::BranchInst(BasicBlock *IfTrue, Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +0000733 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000734 OperandTraits<BranchInst>::op_end(this) - 1,
735 1, InsertBefore) {
Craig Topper2617dcc2014-04-15 06:32:26 +0000736 assert(IfTrue && "Branch destination may not be null!");
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000737 Op<-1>() = IfTrue;
Chris Lattner2195fc42007-02-24 00:55:48 +0000738}
739BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
740 Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +0000741 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000742 OperandTraits<BranchInst>::op_end(this) - 3,
743 3, InsertBefore) {
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000744 Op<-1>() = IfTrue;
745 Op<-2>() = IfFalse;
746 Op<-3>() = Cond;
Chris Lattner2195fc42007-02-24 00:55:48 +0000747#ifndef NDEBUG
748 AssertOK();
749#endif
750}
751
752BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +0000753 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000754 OperandTraits<BranchInst>::op_end(this) - 1,
755 1, InsertAtEnd) {
Craig Topper2617dcc2014-04-15 06:32:26 +0000756 assert(IfTrue && "Branch destination may not be null!");
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000757 Op<-1>() = IfTrue;
Chris Lattner2195fc42007-02-24 00:55:48 +0000758}
759
760BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
761 BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +0000762 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000763 OperandTraits<BranchInst>::op_end(this) - 3,
764 3, InsertAtEnd) {
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000765 Op<-1>() = IfTrue;
766 Op<-2>() = IfFalse;
767 Op<-3>() = Cond;
Chris Lattner2195fc42007-02-24 00:55:48 +0000768#ifndef NDEBUG
769 AssertOK();
770#endif
771}
772
773
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000774BranchInst::BranchInst(const BranchInst &BI) :
Owen Anderson55f1c092009-08-13 21:58:54 +0000775 TerminatorInst(Type::getVoidTy(BI.getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000776 OperandTraits<BranchInst>::op_end(this) - BI.getNumOperands(),
777 BI.getNumOperands()) {
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000778 Op<-1>() = BI.Op<-1>();
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000779 if (BI.getNumOperands() != 1) {
780 assert(BI.getNumOperands() == 3 && "BR can have 1 or 3 operands!");
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000781 Op<-3>() = BI.Op<-3>();
782 Op<-2>() = BI.Op<-2>();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000783 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000784 SubclassOptionalData = BI.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000785}
786
Chandler Carruth3e8aa652011-10-17 01:11:57 +0000787void BranchInst::swapSuccessors() {
788 assert(isConditional() &&
789 "Cannot swap successors of an unconditional branch");
790 Op<-1>().swap(Op<-2>());
791
792 // Update profile metadata if present and it matches our structural
793 // expectations.
Duncan P. N. Exon Smithde36e802014-11-11 21:30:22 +0000794 MDNode *ProfileData = getMetadata(LLVMContext::MD_prof);
Chandler Carruth3e8aa652011-10-17 01:11:57 +0000795 if (!ProfileData || ProfileData->getNumOperands() != 3)
796 return;
797
798 // The first operand is the name. Fetch them backwards and build a new one.
799 Value *Ops[] = {
800 ProfileData->getOperand(0),
801 ProfileData->getOperand(2),
802 ProfileData->getOperand(1)
803 };
804 setMetadata(LLVMContext::MD_prof,
805 MDNode::get(ProfileData->getContext(), Ops));
806}
807
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000808BasicBlock *BranchInst::getSuccessorV(unsigned idx) const {
809 return getSuccessor(idx);
810}
811unsigned BranchInst::getNumSuccessorsV() const {
812 return getNumSuccessors();
813}
814void BranchInst::setSuccessorV(unsigned idx, BasicBlock *B) {
815 setSuccessor(idx, B);
816}
817
818
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000819//===----------------------------------------------------------------------===//
Victor Hernandez8acf2952009-10-23 21:09:37 +0000820// AllocaInst Implementation
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000821//===----------------------------------------------------------------------===//
822
Owen Andersonb6b25302009-07-14 23:09:55 +0000823static Value *getAISize(LLVMContext &Context, Value *Amt) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000824 if (!Amt)
Owen Anderson55f1c092009-08-13 21:58:54 +0000825 Amt = ConstantInt::get(Type::getInt32Ty(Context), 1);
Chris Lattnerbb7ff662006-05-10 04:32:43 +0000826 else {
827 assert(!isa<BasicBlock>(Amt) &&
Chris Lattner9b6ec772007-10-18 16:10:48 +0000828 "Passed basic block into allocation size parameter! Use other ctor");
Dan Gohman2140a742010-05-28 01:14:11 +0000829 assert(Amt->getType()->isIntegerTy() &&
830 "Allocation array size is not an integer!");
Chris Lattnerbb7ff662006-05-10 04:32:43 +0000831 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000832 return Amt;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000833}
834
Chris Lattner229907c2011-07-18 04:54:35 +0000835AllocaInst::AllocaInst(Type *Ty, Value *ArraySize,
Victor Hernandez8acf2952009-10-23 21:09:37 +0000836 const Twine &Name, Instruction *InsertBefore)
837 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
838 getAISize(Ty->getContext(), ArraySize), InsertBefore) {
839 setAlignment(0);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000840 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Victor Hernandez8acf2952009-10-23 21:09:37 +0000841 setName(Name);
842}
843
Chris Lattner229907c2011-07-18 04:54:35 +0000844AllocaInst::AllocaInst(Type *Ty, Value *ArraySize,
Victor Hernandez8acf2952009-10-23 21:09:37 +0000845 const Twine &Name, BasicBlock *InsertAtEnd)
846 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
847 getAISize(Ty->getContext(), ArraySize), InsertAtEnd) {
848 setAlignment(0);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000849 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Victor Hernandez8acf2952009-10-23 21:09:37 +0000850 setName(Name);
851}
852
Chris Lattner229907c2011-07-18 04:54:35 +0000853AllocaInst::AllocaInst(Type *Ty, const Twine &Name,
Victor Hernandez8acf2952009-10-23 21:09:37 +0000854 Instruction *InsertBefore)
855 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
Craig Topperc6207612014-04-09 06:08:46 +0000856 getAISize(Ty->getContext(), nullptr), InsertBefore) {
Victor Hernandez8acf2952009-10-23 21:09:37 +0000857 setAlignment(0);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000858 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Victor Hernandez8acf2952009-10-23 21:09:37 +0000859 setName(Name);
860}
861
Chris Lattner229907c2011-07-18 04:54:35 +0000862AllocaInst::AllocaInst(Type *Ty, const Twine &Name,
Victor Hernandez8acf2952009-10-23 21:09:37 +0000863 BasicBlock *InsertAtEnd)
864 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
Craig Topperc6207612014-04-09 06:08:46 +0000865 getAISize(Ty->getContext(), nullptr), InsertAtEnd) {
Victor Hernandez8acf2952009-10-23 21:09:37 +0000866 setAlignment(0);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000867 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Victor Hernandez8acf2952009-10-23 21:09:37 +0000868 setName(Name);
869}
870
Chris Lattner229907c2011-07-18 04:54:35 +0000871AllocaInst::AllocaInst(Type *Ty, Value *ArraySize, unsigned Align,
Victor Hernandez8acf2952009-10-23 21:09:37 +0000872 const Twine &Name, Instruction *InsertBefore)
873 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
Owen Anderson4fdeba92009-07-15 23:53:25 +0000874 getAISize(Ty->getContext(), ArraySize), InsertBefore) {
Dan Gohmanaa583d72008-03-24 16:55:58 +0000875 setAlignment(Align);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000876 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Chris Lattner0f048162007-02-13 07:54:42 +0000877 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000878}
879
Chris Lattner229907c2011-07-18 04:54:35 +0000880AllocaInst::AllocaInst(Type *Ty, Value *ArraySize, unsigned Align,
Victor Hernandez8acf2952009-10-23 21:09:37 +0000881 const Twine &Name, BasicBlock *InsertAtEnd)
882 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
Owen Anderson4fdeba92009-07-15 23:53:25 +0000883 getAISize(Ty->getContext(), ArraySize), InsertAtEnd) {
Dan Gohmanaa583d72008-03-24 16:55:58 +0000884 setAlignment(Align);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000885 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Chris Lattner0f048162007-02-13 07:54:42 +0000886 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000887}
888
Gordon Henriksen14a55692007-12-10 02:14:30 +0000889// Out of line virtual method, so the vtable, etc has a home.
Victor Hernandez8acf2952009-10-23 21:09:37 +0000890AllocaInst::~AllocaInst() {
Gordon Henriksen14a55692007-12-10 02:14:30 +0000891}
892
Victor Hernandez8acf2952009-10-23 21:09:37 +0000893void AllocaInst::setAlignment(unsigned Align) {
Dan Gohmanaa583d72008-03-24 16:55:58 +0000894 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
Dan Gohmana7e5a242010-07-28 20:12:04 +0000895 assert(Align <= MaximumAlignment &&
896 "Alignment is greater than MaximumAlignment!");
Reid Kleckner436c42e2014-01-17 23:58:17 +0000897 setInstructionSubclassData((getSubclassDataFromInstruction() & ~31) |
898 (Log2_32(Align) + 1));
Dan Gohmanaa583d72008-03-24 16:55:58 +0000899 assert(getAlignment() == Align && "Alignment representation error!");
900}
901
Victor Hernandez8acf2952009-10-23 21:09:37 +0000902bool AllocaInst::isArrayAllocation() const {
Reid Spencera9e6e312007-03-01 20:27:41 +0000903 if (ConstantInt *CI = dyn_cast<ConstantInt>(getOperand(0)))
Dan Gohman9a1b8592010-09-27 15:15:44 +0000904 return !CI->isOne();
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000905 return true;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000906}
907
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000908Type *AllocaInst::getAllocatedType() const {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000909 return getType()->getElementType();
910}
911
Chris Lattner8b291e62008-11-26 02:54:17 +0000912/// isStaticAlloca - Return true if this alloca is in the entry block of the
913/// function and is a constant size. If so, the code generator will fold it
914/// into the prolog/epilog code, so it is basically free.
915bool AllocaInst::isStaticAlloca() const {
916 // Must be constant size.
917 if (!isa<ConstantInt>(getArraySize())) return false;
918
919 // Must be in the entry block.
920 const BasicBlock *Parent = getParent();
Reid Kleckner436c42e2014-01-17 23:58:17 +0000921 return Parent == &Parent->getParent()->front() && !isUsedWithInAlloca();
Chris Lattner8b291e62008-11-26 02:54:17 +0000922}
923
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000924//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000925// LoadInst Implementation
926//===----------------------------------------------------------------------===//
927
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000928void LoadInst::AssertOK() {
Duncan Sands19d0b472010-02-16 11:11:14 +0000929 assert(getOperand(0)->getType()->isPointerTy() &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000930 "Ptr must have pointer type.");
Eli Friedman59b66882011-08-09 23:02:53 +0000931 assert(!(isAtomic() && getAlignment() == 0) &&
932 "Alignment required for atomic load");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000933}
934
Daniel Dunbar4975db62009-07-25 04:41:11 +0000935LoadInst::LoadInst(Value *Ptr, const Twine &Name, Instruction *InsertBef)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000936 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000937 Load, Ptr, InsertBef) {
Chris Lattnerdf57a022005-02-05 01:38:38 +0000938 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000939 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +0000940 setAtomic(NotAtomic);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000941 AssertOK();
Chris Lattner0f048162007-02-13 07:54:42 +0000942 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000943}
944
Daniel Dunbar4975db62009-07-25 04:41:11 +0000945LoadInst::LoadInst(Value *Ptr, const Twine &Name, BasicBlock *InsertAE)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000946 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000947 Load, Ptr, InsertAE) {
Chris Lattnerdf57a022005-02-05 01:38:38 +0000948 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000949 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +0000950 setAtomic(NotAtomic);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000951 AssertOK();
Chris Lattner0f048162007-02-13 07:54:42 +0000952 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000953}
954
Daniel Dunbar4975db62009-07-25 04:41:11 +0000955LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000956 Instruction *InsertBef)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000957 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000958 Load, Ptr, InsertBef) {
Chris Lattnerdf57a022005-02-05 01:38:38 +0000959 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +0000960 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +0000961 setAtomic(NotAtomic);
962 AssertOK();
963 setName(Name);
964}
965
966LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
967 BasicBlock *InsertAE)
968 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
969 Load, Ptr, InsertAE) {
970 setVolatile(isVolatile);
971 setAlignment(0);
972 setAtomic(NotAtomic);
Christopher Lamb84485702007-04-22 19:24:39 +0000973 AssertOK();
974 setName(Name);
975}
976
Daniel Dunbar4975db62009-07-25 04:41:11 +0000977LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Christopher Lamb84485702007-04-22 19:24:39 +0000978 unsigned Align, Instruction *InsertBef)
979 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
980 Load, Ptr, InsertBef) {
981 setVolatile(isVolatile);
982 setAlignment(Align);
Eli Friedman59b66882011-08-09 23:02:53 +0000983 setAtomic(NotAtomic);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000984 AssertOK();
Chris Lattner0f048162007-02-13 07:54:42 +0000985 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000986}
987
Daniel Dunbar4975db62009-07-25 04:41:11 +0000988LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Dan Gohman68659282007-07-18 20:51:11 +0000989 unsigned Align, BasicBlock *InsertAE)
990 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
991 Load, Ptr, InsertAE) {
992 setVolatile(isVolatile);
993 setAlignment(Align);
Eli Friedman59b66882011-08-09 23:02:53 +0000994 setAtomic(NotAtomic);
Dan Gohman68659282007-07-18 20:51:11 +0000995 AssertOK();
996 setName(Name);
997}
998
Eli Friedman59b66882011-08-09 23:02:53 +0000999LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
1000 unsigned Align, AtomicOrdering Order,
1001 SynchronizationScope SynchScope,
1002 Instruction *InsertBef)
1003 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
1004 Load, Ptr, InsertBef) {
1005 setVolatile(isVolatile);
1006 setAlignment(Align);
1007 setAtomic(Order, SynchScope);
1008 AssertOK();
1009 setName(Name);
1010}
1011
1012LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
1013 unsigned Align, AtomicOrdering Order,
1014 SynchronizationScope SynchScope,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001015 BasicBlock *InsertAE)
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001016 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +00001017 Load, Ptr, InsertAE) {
Chris Lattner0f048162007-02-13 07:54:42 +00001018 setVolatile(isVolatile);
Eli Friedman59b66882011-08-09 23:02:53 +00001019 setAlignment(Align);
1020 setAtomic(Order, SynchScope);
Chris Lattner0f048162007-02-13 07:54:42 +00001021 AssertOK();
1022 setName(Name);
1023}
1024
Daniel Dunbar27096822009-08-11 18:11:15 +00001025LoadInst::LoadInst(Value *Ptr, const char *Name, Instruction *InsertBef)
1026 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
1027 Load, Ptr, InsertBef) {
1028 setVolatile(false);
1029 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +00001030 setAtomic(NotAtomic);
Daniel Dunbar27096822009-08-11 18:11:15 +00001031 AssertOK();
1032 if (Name && Name[0]) setName(Name);
1033}
1034
1035LoadInst::LoadInst(Value *Ptr, const char *Name, BasicBlock *InsertAE)
1036 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
1037 Load, Ptr, InsertAE) {
1038 setVolatile(false);
1039 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +00001040 setAtomic(NotAtomic);
Daniel Dunbar27096822009-08-11 18:11:15 +00001041 AssertOK();
1042 if (Name && Name[0]) setName(Name);
1043}
1044
1045LoadInst::LoadInst(Value *Ptr, const char *Name, bool isVolatile,
1046 Instruction *InsertBef)
1047: UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
1048 Load, Ptr, InsertBef) {
1049 setVolatile(isVolatile);
1050 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +00001051 setAtomic(NotAtomic);
Daniel Dunbar27096822009-08-11 18:11:15 +00001052 AssertOK();
1053 if (Name && Name[0]) setName(Name);
1054}
1055
1056LoadInst::LoadInst(Value *Ptr, const char *Name, bool isVolatile,
1057 BasicBlock *InsertAE)
1058 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
1059 Load, Ptr, InsertAE) {
1060 setVolatile(isVolatile);
1061 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +00001062 setAtomic(NotAtomic);
Daniel Dunbar27096822009-08-11 18:11:15 +00001063 AssertOK();
1064 if (Name && Name[0]) setName(Name);
1065}
1066
Christopher Lamb84485702007-04-22 19:24:39 +00001067void LoadInst::setAlignment(unsigned Align) {
1068 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
Dan Gohmana7e5a242010-07-28 20:12:04 +00001069 assert(Align <= MaximumAlignment &&
1070 "Alignment is greater than MaximumAlignment!");
Eli Friedman59b66882011-08-09 23:02:53 +00001071 setInstructionSubclassData((getSubclassDataFromInstruction() & ~(31 << 1)) |
Chris Lattnerd8eb2cf2009-12-29 02:46:09 +00001072 ((Log2_32(Align)+1)<<1));
Dan Gohmana7e5a242010-07-28 20:12:04 +00001073 assert(getAlignment() == Align && "Alignment representation error!");
Christopher Lamb84485702007-04-22 19:24:39 +00001074}
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001075
1076//===----------------------------------------------------------------------===//
1077// StoreInst Implementation
1078//===----------------------------------------------------------------------===//
1079
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001080void StoreInst::AssertOK() {
Nate Begemanfecbc8c2008-07-29 15:49:41 +00001081 assert(getOperand(0) && getOperand(1) && "Both operands must be non-null!");
Duncan Sands19d0b472010-02-16 11:11:14 +00001082 assert(getOperand(1)->getType()->isPointerTy() &&
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001083 "Ptr must have pointer type!");
1084 assert(getOperand(0)->getType() ==
1085 cast<PointerType>(getOperand(1)->getType())->getElementType()
Alkis Evlogimenos079fbde2004-08-06 14:33:37 +00001086 && "Ptr must be a pointer to Val type!");
Eli Friedman59b66882011-08-09 23:02:53 +00001087 assert(!(isAtomic() && getAlignment() == 0) &&
Mark Lacey1d7c97e2013-12-21 00:00:49 +00001088 "Alignment required for atomic store");
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001089}
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001090
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001091
1092StoreInst::StoreInst(Value *val, Value *addr, Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +00001093 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001094 OperandTraits<StoreInst>::op_begin(this),
1095 OperandTraits<StoreInst>::operands(this),
1096 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001097 Op<0>() = val;
1098 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +00001099 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +00001100 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +00001101 setAtomic(NotAtomic);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001102 AssertOK();
1103}
1104
1105StoreInst::StoreInst(Value *val, Value *addr, BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +00001106 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001107 OperandTraits<StoreInst>::op_begin(this),
1108 OperandTraits<StoreInst>::operands(this),
1109 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001110 Op<0>() = val;
1111 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +00001112 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +00001113 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +00001114 setAtomic(NotAtomic);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001115 AssertOK();
1116}
1117
Misha Brukmanb1c93172005-04-21 23:48:37 +00001118StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001119 Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +00001120 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001121 OperandTraits<StoreInst>::op_begin(this),
1122 OperandTraits<StoreInst>::operands(this),
1123 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001124 Op<0>() = val;
1125 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +00001126 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +00001127 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +00001128 setAtomic(NotAtomic);
Christopher Lamb84485702007-04-22 19:24:39 +00001129 AssertOK();
1130}
1131
1132StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
1133 unsigned Align, Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +00001134 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001135 OperandTraits<StoreInst>::op_begin(this),
1136 OperandTraits<StoreInst>::operands(this),
1137 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001138 Op<0>() = val;
1139 Op<1>() = addr;
Christopher Lamb84485702007-04-22 19:24:39 +00001140 setVolatile(isVolatile);
1141 setAlignment(Align);
Eli Friedman59b66882011-08-09 23:02:53 +00001142 setAtomic(NotAtomic);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001143 AssertOK();
1144}
1145
Misha Brukmanb1c93172005-04-21 23:48:37 +00001146StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Eli Friedman59b66882011-08-09 23:02:53 +00001147 unsigned Align, AtomicOrdering Order,
1148 SynchronizationScope SynchScope,
1149 Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +00001150 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001151 OperandTraits<StoreInst>::op_begin(this),
1152 OperandTraits<StoreInst>::operands(this),
Eli Friedman59b66882011-08-09 23:02:53 +00001153 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001154 Op<0>() = val;
1155 Op<1>() = addr;
Dan Gohman68659282007-07-18 20:51:11 +00001156 setVolatile(isVolatile);
1157 setAlignment(Align);
Eli Friedman59b66882011-08-09 23:02:53 +00001158 setAtomic(Order, SynchScope);
Dan Gohman68659282007-07-18 20:51:11 +00001159 AssertOK();
1160}
1161
1162StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001163 BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +00001164 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001165 OperandTraits<StoreInst>::op_begin(this),
1166 OperandTraits<StoreInst>::operands(this),
1167 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001168 Op<0>() = val;
1169 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +00001170 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +00001171 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +00001172 setAtomic(NotAtomic);
1173 AssertOK();
1174}
1175
1176StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
1177 unsigned Align, BasicBlock *InsertAtEnd)
1178 : Instruction(Type::getVoidTy(val->getContext()), Store,
1179 OperandTraits<StoreInst>::op_begin(this),
1180 OperandTraits<StoreInst>::operands(this),
1181 InsertAtEnd) {
1182 Op<0>() = val;
1183 Op<1>() = addr;
1184 setVolatile(isVolatile);
1185 setAlignment(Align);
1186 setAtomic(NotAtomic);
1187 AssertOK();
1188}
1189
1190StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
1191 unsigned Align, AtomicOrdering Order,
1192 SynchronizationScope SynchScope,
1193 BasicBlock *InsertAtEnd)
1194 : Instruction(Type::getVoidTy(val->getContext()), Store,
1195 OperandTraits<StoreInst>::op_begin(this),
1196 OperandTraits<StoreInst>::operands(this),
1197 InsertAtEnd) {
1198 Op<0>() = val;
1199 Op<1>() = addr;
1200 setVolatile(isVolatile);
1201 setAlignment(Align);
1202 setAtomic(Order, SynchScope);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001203 AssertOK();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001204}
1205
Christopher Lamb84485702007-04-22 19:24:39 +00001206void StoreInst::setAlignment(unsigned Align) {
1207 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
Dan Gohmana7e5a242010-07-28 20:12:04 +00001208 assert(Align <= MaximumAlignment &&
1209 "Alignment is greater than MaximumAlignment!");
Eli Friedman59b66882011-08-09 23:02:53 +00001210 setInstructionSubclassData((getSubclassDataFromInstruction() & ~(31 << 1)) |
Chris Lattnerd8eb2cf2009-12-29 02:46:09 +00001211 ((Log2_32(Align)+1) << 1));
Dan Gohmana7e5a242010-07-28 20:12:04 +00001212 assert(getAlignment() == Align && "Alignment representation error!");
Christopher Lamb84485702007-04-22 19:24:39 +00001213}
1214
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001215//===----------------------------------------------------------------------===//
Eli Friedmanc9a551e2011-07-28 21:48:00 +00001216// AtomicCmpXchgInst Implementation
1217//===----------------------------------------------------------------------===//
1218
1219void AtomicCmpXchgInst::Init(Value *Ptr, Value *Cmp, Value *NewVal,
Tim Northovere94a5182014-03-11 10:48:52 +00001220 AtomicOrdering SuccessOrdering,
1221 AtomicOrdering FailureOrdering,
Eli Friedmanc9a551e2011-07-28 21:48:00 +00001222 SynchronizationScope SynchScope) {
1223 Op<0>() = Ptr;
1224 Op<1>() = Cmp;
1225 Op<2>() = NewVal;
Tim Northovere94a5182014-03-11 10:48:52 +00001226 setSuccessOrdering(SuccessOrdering);
1227 setFailureOrdering(FailureOrdering);
Eli Friedmanc9a551e2011-07-28 21:48:00 +00001228 setSynchScope(SynchScope);
1229
1230 assert(getOperand(0) && getOperand(1) && getOperand(2) &&
1231 "All operands must be non-null!");
1232 assert(getOperand(0)->getType()->isPointerTy() &&
1233 "Ptr must have pointer type!");
1234 assert(getOperand(1)->getType() ==
1235 cast<PointerType>(getOperand(0)->getType())->getElementType()
1236 && "Ptr must be a pointer to Cmp type!");
1237 assert(getOperand(2)->getType() ==
1238 cast<PointerType>(getOperand(0)->getType())->getElementType()
1239 && "Ptr must be a pointer to NewVal type!");
Tim Northovere94a5182014-03-11 10:48:52 +00001240 assert(SuccessOrdering != NotAtomic &&
Eli Friedmanc9a551e2011-07-28 21:48:00 +00001241 "AtomicCmpXchg instructions must be atomic!");
Tim Northovere94a5182014-03-11 10:48:52 +00001242 assert(FailureOrdering != NotAtomic &&
1243 "AtomicCmpXchg instructions must be atomic!");
1244 assert(SuccessOrdering >= FailureOrdering &&
1245 "AtomicCmpXchg success ordering must be at least as strong as fail");
1246 assert(FailureOrdering != Release && FailureOrdering != AcquireRelease &&
1247 "AtomicCmpXchg failure ordering cannot include release semantics");
Eli Friedmanc9a551e2011-07-28 21:48:00 +00001248}
1249
1250AtomicCmpXchgInst::AtomicCmpXchgInst(Value *Ptr, Value *Cmp, Value *NewVal,
Tim Northovere94a5182014-03-11 10:48:52 +00001251 AtomicOrdering SuccessOrdering,
1252 AtomicOrdering FailureOrdering,
Eli Friedmanc9a551e2011-07-28 21:48:00 +00001253 SynchronizationScope SynchScope,
1254 Instruction *InsertBefore)
Tim Northover420a2162014-06-13 14:24:07 +00001255 : Instruction(
1256 StructType::get(Cmp->getType(), Type::getInt1Ty(Cmp->getContext()),
1257 nullptr),
1258 AtomicCmpXchg, OperandTraits<AtomicCmpXchgInst>::op_begin(this),
1259 OperandTraits<AtomicCmpXchgInst>::operands(this), InsertBefore) {
Tim Northovere94a5182014-03-11 10:48:52 +00001260 Init(Ptr, Cmp, NewVal, SuccessOrdering, FailureOrdering, SynchScope);
Eli Friedmanc9a551e2011-07-28 21:48:00 +00001261}
1262
1263AtomicCmpXchgInst::AtomicCmpXchgInst(Value *Ptr, Value *Cmp, Value *NewVal,
Tim Northovere94a5182014-03-11 10:48:52 +00001264 AtomicOrdering SuccessOrdering,
1265 AtomicOrdering FailureOrdering,
Eli Friedmanc9a551e2011-07-28 21:48:00 +00001266 SynchronizationScope SynchScope,
1267 BasicBlock *InsertAtEnd)
Tim Northover420a2162014-06-13 14:24:07 +00001268 : Instruction(
1269 StructType::get(Cmp->getType(), Type::getInt1Ty(Cmp->getContext()),
1270 nullptr),
1271 AtomicCmpXchg, OperandTraits<AtomicCmpXchgInst>::op_begin(this),
1272 OperandTraits<AtomicCmpXchgInst>::operands(this), InsertAtEnd) {
Tim Northovere94a5182014-03-11 10:48:52 +00001273 Init(Ptr, Cmp, NewVal, SuccessOrdering, FailureOrdering, SynchScope);
Eli Friedmanc9a551e2011-07-28 21:48:00 +00001274}
Tim Northover420a2162014-06-13 14:24:07 +00001275
Eli Friedmanc9a551e2011-07-28 21:48:00 +00001276//===----------------------------------------------------------------------===//
1277// AtomicRMWInst Implementation
1278//===----------------------------------------------------------------------===//
1279
1280void AtomicRMWInst::Init(BinOp Operation, Value *Ptr, Value *Val,
1281 AtomicOrdering Ordering,
1282 SynchronizationScope SynchScope) {
1283 Op<0>() = Ptr;
1284 Op<1>() = Val;
1285 setOperation(Operation);
1286 setOrdering(Ordering);
1287 setSynchScope(SynchScope);
1288
1289 assert(getOperand(0) && getOperand(1) &&
1290 "All operands must be non-null!");
1291 assert(getOperand(0)->getType()->isPointerTy() &&
1292 "Ptr must have pointer type!");
1293 assert(getOperand(1)->getType() ==
1294 cast<PointerType>(getOperand(0)->getType())->getElementType()
1295 && "Ptr must be a pointer to Val type!");
1296 assert(Ordering != NotAtomic &&
1297 "AtomicRMW instructions must be atomic!");
1298}
1299
1300AtomicRMWInst::AtomicRMWInst(BinOp Operation, Value *Ptr, Value *Val,
1301 AtomicOrdering Ordering,
1302 SynchronizationScope SynchScope,
1303 Instruction *InsertBefore)
1304 : Instruction(Val->getType(), AtomicRMW,
1305 OperandTraits<AtomicRMWInst>::op_begin(this),
1306 OperandTraits<AtomicRMWInst>::operands(this),
1307 InsertBefore) {
1308 Init(Operation, Ptr, Val, Ordering, SynchScope);
1309}
1310
1311AtomicRMWInst::AtomicRMWInst(BinOp Operation, Value *Ptr, Value *Val,
1312 AtomicOrdering Ordering,
1313 SynchronizationScope SynchScope,
1314 BasicBlock *InsertAtEnd)
1315 : Instruction(Val->getType(), AtomicRMW,
1316 OperandTraits<AtomicRMWInst>::op_begin(this),
1317 OperandTraits<AtomicRMWInst>::operands(this),
1318 InsertAtEnd) {
1319 Init(Operation, Ptr, Val, Ordering, SynchScope);
1320}
1321
1322//===----------------------------------------------------------------------===//
Eli Friedmanfee02c62011-07-25 23:16:38 +00001323// FenceInst Implementation
1324//===----------------------------------------------------------------------===//
1325
1326FenceInst::FenceInst(LLVMContext &C, AtomicOrdering Ordering,
1327 SynchronizationScope SynchScope,
1328 Instruction *InsertBefore)
Craig Topperc6207612014-04-09 06:08:46 +00001329 : Instruction(Type::getVoidTy(C), Fence, nullptr, 0, InsertBefore) {
Eli Friedmanfee02c62011-07-25 23:16:38 +00001330 setOrdering(Ordering);
1331 setSynchScope(SynchScope);
1332}
1333
1334FenceInst::FenceInst(LLVMContext &C, AtomicOrdering Ordering,
1335 SynchronizationScope SynchScope,
1336 BasicBlock *InsertAtEnd)
Craig Topperc6207612014-04-09 06:08:46 +00001337 : Instruction(Type::getVoidTy(C), Fence, nullptr, 0, InsertAtEnd) {
Eli Friedmanfee02c62011-07-25 23:16:38 +00001338 setOrdering(Ordering);
1339 setSynchScope(SynchScope);
1340}
1341
1342//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001343// GetElementPtrInst Implementation
1344//===----------------------------------------------------------------------===//
1345
Jay Foadd1b78492011-07-25 09:48:08 +00001346void GetElementPtrInst::init(Value *Ptr, ArrayRef<Value *> IdxList,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001347 const Twine &Name) {
Jay Foadd1b78492011-07-25 09:48:08 +00001348 assert(NumOperands == 1 + IdxList.size() && "NumOperands not initialized?");
1349 OperandList[0] = Ptr;
1350 std::copy(IdxList.begin(), IdxList.end(), op_begin() + 1);
Matthijs Kooijman76d8dec2008-06-04 16:14:12 +00001351 setName(Name);
Chris Lattner82981202005-05-03 05:43:30 +00001352}
1353
Gabor Greiff6caff662008-05-10 08:32:32 +00001354GetElementPtrInst::GetElementPtrInst(const GetElementPtrInst &GEPI)
Gabor Greife9408e62008-05-27 11:03:29 +00001355 : Instruction(GEPI.getType(), GetElementPtr,
Gabor Greif697e94c2008-05-15 10:04:30 +00001356 OperandTraits<GetElementPtrInst>::op_end(this)
1357 - GEPI.getNumOperands(),
Gabor Greiff6caff662008-05-10 08:32:32 +00001358 GEPI.getNumOperands()) {
Jay Foadd1b78492011-07-25 09:48:08 +00001359 std::copy(GEPI.op_begin(), GEPI.op_end(), op_begin());
Dan Gohmanc8a27f22009-08-25 22:11:20 +00001360 SubclassOptionalData = GEPI.SubclassOptionalData;
Gabor Greiff6caff662008-05-10 08:32:32 +00001361}
1362
Chris Lattner6090a422009-03-09 04:46:40 +00001363/// getIndexedType - Returns the type of the element that would be accessed with
1364/// a gep instruction with the specified parameters.
1365///
1366/// The Idxs pointer should point to a continuous piece of memory containing the
1367/// indices, either as Value* or uint64_t.
1368///
1369/// A null type is returned if the indices are invalid for the specified
1370/// pointer type.
1371///
Matthijs Kooijman04468622008-07-29 08:46:11 +00001372template <typename IndexTy>
Jay Foadd1b78492011-07-25 09:48:08 +00001373static Type *getIndexedTypeInternal(Type *Ptr, ArrayRef<IndexTy> IdxList) {
Duncan Sandse6beec62012-11-13 12:59:33 +00001374 PointerType *PTy = dyn_cast<PointerType>(Ptr->getScalarType());
Craig Topperc6207612014-04-09 06:08:46 +00001375 if (!PTy) return nullptr; // Type isn't a pointer type!
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001376 Type *Agg = PTy->getElementType();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001377
Chris Lattner6090a422009-03-09 04:46:40 +00001378 // Handle the special case of the empty set index set, which is always valid.
Jay Foadd1b78492011-07-25 09:48:08 +00001379 if (IdxList.empty())
Dan Gohman12fce772008-05-15 19:50:34 +00001380 return Agg;
Nadav Rotem3924cb02011-12-05 06:29:09 +00001381
Chris Lattner6090a422009-03-09 04:46:40 +00001382 // If there is at least one index, the top level type must be sized, otherwise
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001383 // it cannot be 'stepped over'.
1384 if (!Agg->isSized())
Craig Topperc6207612014-04-09 06:08:46 +00001385 return nullptr;
Misha Brukmanb1c93172005-04-21 23:48:37 +00001386
Dan Gohman1ecaf452008-05-31 00:58:22 +00001387 unsigned CurIdx = 1;
Jay Foadd1b78492011-07-25 09:48:08 +00001388 for (; CurIdx != IdxList.size(); ++CurIdx) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001389 CompositeType *CT = dyn_cast<CompositeType>(Agg);
Craig Topperc6207612014-04-09 06:08:46 +00001390 if (!CT || CT->isPointerTy()) return nullptr;
Jay Foadd1b78492011-07-25 09:48:08 +00001391 IndexTy Index = IdxList[CurIdx];
Craig Topperc6207612014-04-09 06:08:46 +00001392 if (!CT->indexValid(Index)) return nullptr;
Dan Gohman1ecaf452008-05-31 00:58:22 +00001393 Agg = CT->getTypeAtIndex(Index);
Dan Gohman1ecaf452008-05-31 00:58:22 +00001394 }
Craig Topperc6207612014-04-09 06:08:46 +00001395 return CurIdx == IdxList.size() ? Agg : nullptr;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001396}
1397
Jay Foadd1b78492011-07-25 09:48:08 +00001398Type *GetElementPtrInst::getIndexedType(Type *Ptr, ArrayRef<Value *> IdxList) {
1399 return getIndexedTypeInternal(Ptr, IdxList);
Matthijs Kooijman04468622008-07-29 08:46:11 +00001400}
1401
Chris Lattner229907c2011-07-18 04:54:35 +00001402Type *GetElementPtrInst::getIndexedType(Type *Ptr,
Jay Foadd1b78492011-07-25 09:48:08 +00001403 ArrayRef<Constant *> IdxList) {
1404 return getIndexedTypeInternal(Ptr, IdxList);
Jay Foad1d4a8fe2011-01-14 08:07:43 +00001405}
1406
Jay Foadd1b78492011-07-25 09:48:08 +00001407Type *GetElementPtrInst::getIndexedType(Type *Ptr, ArrayRef<uint64_t> IdxList) {
1408 return getIndexedTypeInternal(Ptr, IdxList);
Matthijs Kooijman04468622008-07-29 08:46:11 +00001409}
1410
Chris Lattner45f15572007-04-14 00:12:57 +00001411/// hasAllZeroIndices - Return true if all of the indices of this GEP are
1412/// zeros. If so, the result pointer and the first operand have the same
1413/// value, just potentially different types.
1414bool GetElementPtrInst::hasAllZeroIndices() const {
1415 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
1416 if (ConstantInt *CI = dyn_cast<ConstantInt>(getOperand(i))) {
1417 if (!CI->isZero()) return false;
1418 } else {
1419 return false;
1420 }
1421 }
1422 return true;
1423}
1424
Chris Lattner27058292007-04-27 20:35:56 +00001425/// hasAllConstantIndices - Return true if all of the indices of this GEP are
1426/// constant integers. If so, the result pointer and the first operand have
1427/// a constant offset between them.
1428bool GetElementPtrInst::hasAllConstantIndices() const {
1429 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
1430 if (!isa<ConstantInt>(getOperand(i)))
1431 return false;
1432 }
1433 return true;
1434}
1435
Dan Gohman1b849082009-09-07 23:54:19 +00001436void GetElementPtrInst::setIsInBounds(bool B) {
1437 cast<GEPOperator>(this)->setIsInBounds(B);
1438}
Chris Lattner45f15572007-04-14 00:12:57 +00001439
Nick Lewycky28a5f252009-09-27 21:33:04 +00001440bool GetElementPtrInst::isInBounds() const {
1441 return cast<GEPOperator>(this)->isInBounds();
1442}
1443
Chandler Carruth1e140532012-12-11 10:29:10 +00001444bool GetElementPtrInst::accumulateConstantOffset(const DataLayout &DL,
1445 APInt &Offset) const {
Chandler Carruth7ec41c72012-12-11 11:05:15 +00001446 // Delegate to the generic GEPOperator implementation.
1447 return cast<GEPOperator>(this)->accumulateConstantOffset(DL, Offset);
Chandler Carruth1e140532012-12-11 10:29:10 +00001448}
1449
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001450//===----------------------------------------------------------------------===//
Robert Bocchino23004482006-01-10 19:05:34 +00001451// ExtractElementInst Implementation
1452//===----------------------------------------------------------------------===//
1453
1454ExtractElementInst::ExtractElementInst(Value *Val, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001455 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001456 Instruction *InsertBef)
Reid Spencerd84d35b2007-02-15 02:26:10 +00001457 : Instruction(cast<VectorType>(Val->getType())->getElementType(),
Gabor Greiff6caff662008-05-10 08:32:32 +00001458 ExtractElement,
1459 OperandTraits<ExtractElementInst>::op_begin(this),
1460 2, InsertBef) {
Chris Lattner54865b32006-04-08 04:05:48 +00001461 assert(isValidOperands(Val, Index) &&
1462 "Invalid extractelement instruction operands!");
Gabor Greif2d3024d2008-05-26 21:33:52 +00001463 Op<0>() = Val;
1464 Op<1>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001465 setName(Name);
Robert Bocchino23004482006-01-10 19:05:34 +00001466}
1467
1468ExtractElementInst::ExtractElementInst(Value *Val, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001469 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001470 BasicBlock *InsertAE)
Reid Spencerd84d35b2007-02-15 02:26:10 +00001471 : Instruction(cast<VectorType>(Val->getType())->getElementType(),
Gabor Greiff6caff662008-05-10 08:32:32 +00001472 ExtractElement,
1473 OperandTraits<ExtractElementInst>::op_begin(this),
1474 2, InsertAE) {
Chris Lattner54865b32006-04-08 04:05:48 +00001475 assert(isValidOperands(Val, Index) &&
1476 "Invalid extractelement instruction operands!");
1477
Gabor Greif2d3024d2008-05-26 21:33:52 +00001478 Op<0>() = Val;
1479 Op<1>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001480 setName(Name);
Robert Bocchino23004482006-01-10 19:05:34 +00001481}
1482
Chris Lattner65511ff2006-10-05 06:24:58 +00001483
Chris Lattner54865b32006-04-08 04:05:48 +00001484bool ExtractElementInst::isValidOperands(const Value *Val, const Value *Index) {
Michael J. Spencer1f10c5ea2014-05-01 22:12:39 +00001485 if (!Val->getType()->isVectorTy() || !Index->getType()->isIntegerTy())
Chris Lattner54865b32006-04-08 04:05:48 +00001486 return false;
1487 return true;
1488}
1489
1490
Robert Bocchino23004482006-01-10 19:05:34 +00001491//===----------------------------------------------------------------------===//
Robert Bocchinoca27f032006-01-17 20:07:22 +00001492// InsertElementInst Implementation
1493//===----------------------------------------------------------------------===//
1494
Chris Lattner54865b32006-04-08 04:05:48 +00001495InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001496 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001497 Instruction *InsertBef)
Gabor Greiff6caff662008-05-10 08:32:32 +00001498 : Instruction(Vec->getType(), InsertElement,
1499 OperandTraits<InsertElementInst>::op_begin(this),
1500 3, InsertBef) {
Chris Lattner54865b32006-04-08 04:05:48 +00001501 assert(isValidOperands(Vec, Elt, Index) &&
1502 "Invalid insertelement instruction operands!");
Gabor Greif2d3024d2008-05-26 21:33:52 +00001503 Op<0>() = Vec;
1504 Op<1>() = Elt;
1505 Op<2>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001506 setName(Name);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001507}
1508
Chris Lattner54865b32006-04-08 04:05:48 +00001509InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001510 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001511 BasicBlock *InsertAE)
Gabor Greiff6caff662008-05-10 08:32:32 +00001512 : Instruction(Vec->getType(), InsertElement,
1513 OperandTraits<InsertElementInst>::op_begin(this),
1514 3, InsertAE) {
Chris Lattner54865b32006-04-08 04:05:48 +00001515 assert(isValidOperands(Vec, Elt, Index) &&
1516 "Invalid insertelement instruction operands!");
1517
Gabor Greif2d3024d2008-05-26 21:33:52 +00001518 Op<0>() = Vec;
1519 Op<1>() = Elt;
1520 Op<2>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001521 setName(Name);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001522}
1523
Chris Lattner54865b32006-04-08 04:05:48 +00001524bool InsertElementInst::isValidOperands(const Value *Vec, const Value *Elt,
1525 const Value *Index) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001526 if (!Vec->getType()->isVectorTy())
Reid Spencer09575ba2007-02-15 03:39:18 +00001527 return false; // First operand of insertelement must be vector type.
Chris Lattner54865b32006-04-08 04:05:48 +00001528
Reid Spencerd84d35b2007-02-15 02:26:10 +00001529 if (Elt->getType() != cast<VectorType>(Vec->getType())->getElementType())
Dan Gohmanfead7972007-05-11 21:43:24 +00001530 return false;// Second operand of insertelement must be vector element type.
Chris Lattner54865b32006-04-08 04:05:48 +00001531
Michael J. Spencer1f10c5ea2014-05-01 22:12:39 +00001532 if (!Index->getType()->isIntegerTy())
Dan Gohman4fe64de2009-06-14 23:30:43 +00001533 return false; // Third operand of insertelement must be i32.
Chris Lattner54865b32006-04-08 04:05:48 +00001534 return true;
1535}
1536
1537
Robert Bocchinoca27f032006-01-17 20:07:22 +00001538//===----------------------------------------------------------------------===//
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001539// ShuffleVectorInst Implementation
1540//===----------------------------------------------------------------------===//
1541
1542ShuffleVectorInst::ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001543 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001544 Instruction *InsertBefore)
Owen Anderson4056ca92009-07-29 22:17:13 +00001545: Instruction(VectorType::get(cast<VectorType>(V1->getType())->getElementType(),
Mon P Wang25f01062008-11-10 04:46:22 +00001546 cast<VectorType>(Mask->getType())->getNumElements()),
1547 ShuffleVector,
1548 OperandTraits<ShuffleVectorInst>::op_begin(this),
1549 OperandTraits<ShuffleVectorInst>::operands(this),
1550 InsertBefore) {
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001551 assert(isValidOperands(V1, V2, Mask) &&
1552 "Invalid shuffle vector instruction operands!");
Gabor Greif2d3024d2008-05-26 21:33:52 +00001553 Op<0>() = V1;
1554 Op<1>() = V2;
1555 Op<2>() = Mask;
Chris Lattner2195fc42007-02-24 00:55:48 +00001556 setName(Name);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001557}
1558
1559ShuffleVectorInst::ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001560 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001561 BasicBlock *InsertAtEnd)
Dan Gohmane5af8cd2009-08-25 23:27:45 +00001562: Instruction(VectorType::get(cast<VectorType>(V1->getType())->getElementType(),
1563 cast<VectorType>(Mask->getType())->getNumElements()),
1564 ShuffleVector,
1565 OperandTraits<ShuffleVectorInst>::op_begin(this),
1566 OperandTraits<ShuffleVectorInst>::operands(this),
1567 InsertAtEnd) {
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001568 assert(isValidOperands(V1, V2, Mask) &&
1569 "Invalid shuffle vector instruction operands!");
1570
Gabor Greif2d3024d2008-05-26 21:33:52 +00001571 Op<0>() = V1;
1572 Op<1>() = V2;
1573 Op<2>() = Mask;
Chris Lattner2195fc42007-02-24 00:55:48 +00001574 setName(Name);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001575}
1576
Mon P Wang25f01062008-11-10 04:46:22 +00001577bool ShuffleVectorInst::isValidOperands(const Value *V1, const Value *V2,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001578 const Value *Mask) {
Chris Lattner1dcb6542012-01-25 23:49:49 +00001579 // V1 and V2 must be vectors of the same type.
Duncan Sands19d0b472010-02-16 11:11:14 +00001580 if (!V1->getType()->isVectorTy() || V1->getType() != V2->getType())
Chris Lattnerf724e342008-03-02 05:28:33 +00001581 return false;
1582
Chris Lattner1dcb6542012-01-25 23:49:49 +00001583 // Mask must be vector of i32.
Chris Lattner229907c2011-07-18 04:54:35 +00001584 VectorType *MaskTy = dyn_cast<VectorType>(Mask->getType());
Craig Topperc6207612014-04-09 06:08:46 +00001585 if (!MaskTy || !MaskTy->getElementType()->isIntegerTy(32))
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001586 return false;
Nate Begeman60a31c32010-08-13 00:16:46 +00001587
1588 // Check to see if Mask is valid.
Chris Lattner1dcb6542012-01-25 23:49:49 +00001589 if (isa<UndefValue>(Mask) || isa<ConstantAggregateZero>(Mask))
1590 return true;
1591
Nate Begeman60a31c32010-08-13 00:16:46 +00001592 if (const ConstantVector *MV = dyn_cast<ConstantVector>(Mask)) {
Chris Lattner1dcb6542012-01-25 23:49:49 +00001593 unsigned V1Size = cast<VectorType>(V1->getType())->getNumElements();
Benjamin Kramer3ad5c962014-03-10 15:03:06 +00001594 for (Value *Op : MV->operands()) {
1595 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op)) {
Chris Lattner1dcb6542012-01-25 23:49:49 +00001596 if (CI->uge(V1Size*2))
Nate Begeman60a31c32010-08-13 00:16:46 +00001597 return false;
Benjamin Kramer3ad5c962014-03-10 15:03:06 +00001598 } else if (!isa<UndefValue>(Op)) {
Nate Begeman60a31c32010-08-13 00:16:46 +00001599 return false;
1600 }
1601 }
Chris Lattner1dcb6542012-01-25 23:49:49 +00001602 return true;
Mon P Wang6ebf4012011-10-26 00:34:48 +00001603 }
Chris Lattner1dcb6542012-01-25 23:49:49 +00001604
1605 if (const ConstantDataSequential *CDS =
1606 dyn_cast<ConstantDataSequential>(Mask)) {
1607 unsigned V1Size = cast<VectorType>(V1->getType())->getNumElements();
1608 for (unsigned i = 0, e = MaskTy->getNumElements(); i != e; ++i)
1609 if (CDS->getElementAsInteger(i) >= V1Size*2)
1610 return false;
1611 return true;
1612 }
1613
1614 // The bitcode reader can create a place holder for a forward reference
1615 // used as the shuffle mask. When this occurs, the shuffle mask will
1616 // fall into this case and fail. To avoid this error, do this bit of
1617 // ugliness to allow such a mask pass.
1618 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(Mask))
1619 if (CE->getOpcode() == Instruction::UserOp1)
1620 return true;
1621
1622 return false;
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001623}
1624
Chris Lattnerf724e342008-03-02 05:28:33 +00001625/// getMaskValue - Return the index from the shuffle mask for the specified
1626/// output result. This is either -1 if the element is undef or a number less
1627/// than 2*numelements.
Chris Lattnercf129702012-01-26 02:51:13 +00001628int ShuffleVectorInst::getMaskValue(Constant *Mask, unsigned i) {
1629 assert(i < Mask->getType()->getVectorNumElements() && "Index out of range");
1630 if (ConstantDataSequential *CDS =dyn_cast<ConstantDataSequential>(Mask))
Chris Lattner1dcb6542012-01-25 23:49:49 +00001631 return CDS->getElementAsInteger(i);
Chris Lattnercf129702012-01-26 02:51:13 +00001632 Constant *C = Mask->getAggregateElement(i);
Chris Lattner1dcb6542012-01-25 23:49:49 +00001633 if (isa<UndefValue>(C))
Chris Lattnerf724e342008-03-02 05:28:33 +00001634 return -1;
Chris Lattner1dcb6542012-01-25 23:49:49 +00001635 return cast<ConstantInt>(C)->getZExtValue();
Chris Lattnerf724e342008-03-02 05:28:33 +00001636}
1637
Chris Lattner1dcb6542012-01-25 23:49:49 +00001638/// getShuffleMask - Return the full mask for this instruction, where each
1639/// element is the element number and undef's are returned as -1.
Chris Lattnercf129702012-01-26 02:51:13 +00001640void ShuffleVectorInst::getShuffleMask(Constant *Mask,
1641 SmallVectorImpl<int> &Result) {
1642 unsigned NumElts = Mask->getType()->getVectorNumElements();
Chris Lattner1dcb6542012-01-25 23:49:49 +00001643
Chris Lattnercf129702012-01-26 02:51:13 +00001644 if (ConstantDataSequential *CDS=dyn_cast<ConstantDataSequential>(Mask)) {
Chris Lattner1dcb6542012-01-25 23:49:49 +00001645 for (unsigned i = 0; i != NumElts; ++i)
1646 Result.push_back(CDS->getElementAsInteger(i));
1647 return;
1648 }
Chris Lattner1dcb6542012-01-25 23:49:49 +00001649 for (unsigned i = 0; i != NumElts; ++i) {
1650 Constant *C = Mask->getAggregateElement(i);
1651 Result.push_back(isa<UndefValue>(C) ? -1 :
Chris Lattner3dbad4032012-01-26 00:41:50 +00001652 cast<ConstantInt>(C)->getZExtValue());
Chris Lattner1dcb6542012-01-25 23:49:49 +00001653 }
1654}
1655
1656
Dan Gohman12fce772008-05-15 19:50:34 +00001657//===----------------------------------------------------------------------===//
Dan Gohman0752bff2008-05-23 00:36:11 +00001658// InsertValueInst Class
1659//===----------------------------------------------------------------------===//
1660
Jay Foad57aa6362011-07-13 10:26:04 +00001661void InsertValueInst::init(Value *Agg, Value *Val, ArrayRef<unsigned> Idxs,
1662 const Twine &Name) {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001663 assert(NumOperands == 2 && "NumOperands not initialized?");
Jay Foad57aa6362011-07-13 10:26:04 +00001664
1665 // There's no fundamental reason why we require at least one index
1666 // (other than weirdness with &*IdxBegin being invalid; see
1667 // getelementptr's init routine for example). But there's no
1668 // present need to support it.
1669 assert(Idxs.size() > 0 && "InsertValueInst must have at least one index");
1670
1671 assert(ExtractValueInst::getIndexedType(Agg->getType(), Idxs) ==
Frits van Bommel16ebe772010-12-05 20:50:26 +00001672 Val->getType() && "Inserted value must match indexed type!");
Dan Gohman1ecaf452008-05-31 00:58:22 +00001673 Op<0>() = Agg;
1674 Op<1>() = Val;
Dan Gohman0752bff2008-05-23 00:36:11 +00001675
Jay Foad57aa6362011-07-13 10:26:04 +00001676 Indices.append(Idxs.begin(), Idxs.end());
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001677 setName(Name);
Dan Gohman0752bff2008-05-23 00:36:11 +00001678}
1679
1680InsertValueInst::InsertValueInst(const InsertValueInst &IVI)
Gabor Greife9408e62008-05-27 11:03:29 +00001681 : Instruction(IVI.getType(), InsertValue,
Dan Gohman1ecaf452008-05-31 00:58:22 +00001682 OperandTraits<InsertValueInst>::op_begin(this), 2),
1683 Indices(IVI.Indices) {
Dan Gohmand8ca05f2008-06-17 23:25:49 +00001684 Op<0>() = IVI.getOperand(0);
1685 Op<1>() = IVI.getOperand(1);
Dan Gohmanc8a27f22009-08-25 22:11:20 +00001686 SubclassOptionalData = IVI.SubclassOptionalData;
Dan Gohman0752bff2008-05-23 00:36:11 +00001687}
1688
1689//===----------------------------------------------------------------------===//
Dan Gohman12fce772008-05-15 19:50:34 +00001690// ExtractValueInst Class
1691//===----------------------------------------------------------------------===//
1692
Jay Foad57aa6362011-07-13 10:26:04 +00001693void ExtractValueInst::init(ArrayRef<unsigned> Idxs, const Twine &Name) {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001694 assert(NumOperands == 1 && "NumOperands not initialized?");
Dan Gohman0752bff2008-05-23 00:36:11 +00001695
Jay Foad57aa6362011-07-13 10:26:04 +00001696 // There's no fundamental reason why we require at least one index.
1697 // But there's no present need to support it.
1698 assert(Idxs.size() > 0 && "ExtractValueInst must have at least one index");
Dan Gohman0752bff2008-05-23 00:36:11 +00001699
Jay Foad57aa6362011-07-13 10:26:04 +00001700 Indices.append(Idxs.begin(), Idxs.end());
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001701 setName(Name);
Dan Gohman0752bff2008-05-23 00:36:11 +00001702}
1703
1704ExtractValueInst::ExtractValueInst(const ExtractValueInst &EVI)
Gabor Greif21ba1842008-06-06 20:28:12 +00001705 : UnaryInstruction(EVI.getType(), ExtractValue, EVI.getOperand(0)),
Dan Gohman1ecaf452008-05-31 00:58:22 +00001706 Indices(EVI.Indices) {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00001707 SubclassOptionalData = EVI.SubclassOptionalData;
Dan Gohman0752bff2008-05-23 00:36:11 +00001708}
1709
Dan Gohman12fce772008-05-15 19:50:34 +00001710// getIndexedType - Returns the type of the element that would be extracted
1711// with an extractvalue instruction with the specified parameters.
1712//
1713// A null type is returned if the indices are invalid for the specified
1714// pointer type.
1715//
Chris Lattner229907c2011-07-18 04:54:35 +00001716Type *ExtractValueInst::getIndexedType(Type *Agg,
Jay Foad57aa6362011-07-13 10:26:04 +00001717 ArrayRef<unsigned> Idxs) {
Benjamin Kramer3ad5c962014-03-10 15:03:06 +00001718 for (unsigned Index : Idxs) {
Frits van Bommel16ebe772010-12-05 20:50:26 +00001719 // We can't use CompositeType::indexValid(Index) here.
1720 // indexValid() always returns true for arrays because getelementptr allows
1721 // out-of-bounds indices. Since we don't allow those for extractvalue and
1722 // insertvalue we need to check array indexing manually.
1723 // Since the only other types we can index into are struct types it's just
1724 // as easy to check those manually as well.
Chris Lattner229907c2011-07-18 04:54:35 +00001725 if (ArrayType *AT = dyn_cast<ArrayType>(Agg)) {
Frits van Bommel16ebe772010-12-05 20:50:26 +00001726 if (Index >= AT->getNumElements())
Craig Topperc6207612014-04-09 06:08:46 +00001727 return nullptr;
Chris Lattner229907c2011-07-18 04:54:35 +00001728 } else if (StructType *ST = dyn_cast<StructType>(Agg)) {
Frits van Bommel16ebe772010-12-05 20:50:26 +00001729 if (Index >= ST->getNumElements())
Craig Topperc6207612014-04-09 06:08:46 +00001730 return nullptr;
Frits van Bommel16ebe772010-12-05 20:50:26 +00001731 } else {
1732 // Not a valid type to index into.
Craig Topperc6207612014-04-09 06:08:46 +00001733 return nullptr;
Frits van Bommel16ebe772010-12-05 20:50:26 +00001734 }
1735
1736 Agg = cast<CompositeType>(Agg)->getTypeAtIndex(Index);
Dan Gohman12fce772008-05-15 19:50:34 +00001737 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001738 return const_cast<Type*>(Agg);
Dan Gohman12fce772008-05-15 19:50:34 +00001739}
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001740
1741//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001742// BinaryOperator Class
1743//===----------------------------------------------------------------------===//
1744
Chris Lattner2195fc42007-02-24 00:55:48 +00001745BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2,
Chris Lattner229907c2011-07-18 04:54:35 +00001746 Type *Ty, const Twine &Name,
Chris Lattner2195fc42007-02-24 00:55:48 +00001747 Instruction *InsertBefore)
Dan Gohmana2414ea2010-05-03 22:44:19 +00001748 : Instruction(Ty, iType,
Gabor Greiff6caff662008-05-10 08:32:32 +00001749 OperandTraits<BinaryOperator>::op_begin(this),
1750 OperandTraits<BinaryOperator>::operands(this),
1751 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001752 Op<0>() = S1;
1753 Op<1>() = S2;
Dan Gohmana2414ea2010-05-03 22:44:19 +00001754 init(iType);
Chris Lattner2195fc42007-02-24 00:55:48 +00001755 setName(Name);
1756}
1757
1758BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2,
Chris Lattner229907c2011-07-18 04:54:35 +00001759 Type *Ty, const Twine &Name,
Chris Lattner2195fc42007-02-24 00:55:48 +00001760 BasicBlock *InsertAtEnd)
Dan Gohmana2414ea2010-05-03 22:44:19 +00001761 : Instruction(Ty, iType,
Gabor Greiff6caff662008-05-10 08:32:32 +00001762 OperandTraits<BinaryOperator>::op_begin(this),
1763 OperandTraits<BinaryOperator>::operands(this),
1764 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001765 Op<0>() = S1;
1766 Op<1>() = S2;
Dan Gohmana2414ea2010-05-03 22:44:19 +00001767 init(iType);
Chris Lattner2195fc42007-02-24 00:55:48 +00001768 setName(Name);
1769}
1770
1771
1772void BinaryOperator::init(BinaryOps iType) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001773 Value *LHS = getOperand(0), *RHS = getOperand(1);
Jeffrey Yasskin9b43f332010-12-23 00:58:24 +00001774 (void)LHS; (void)RHS; // Silence warnings.
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001775 assert(LHS->getType() == RHS->getType() &&
1776 "Binary operator operand types must match!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001777#ifndef NDEBUG
1778 switch (iType) {
1779 case Add: case Sub:
Dan Gohmana5b96452009-06-04 22:49:04 +00001780 case Mul:
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001781 assert(getType() == LHS->getType() &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001782 "Arithmetic operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001783 assert(getType()->isIntOrIntVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001784 "Tried to create an integer operation on a non-integer type!");
1785 break;
1786 case FAdd: case FSub:
1787 case FMul:
1788 assert(getType() == LHS->getType() &&
1789 "Arithmetic operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001790 assert(getType()->isFPOrFPVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001791 "Tried to create a floating-point operation on a "
1792 "non-floating-point type!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001793 break;
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001794 case UDiv:
1795 case SDiv:
1796 assert(getType() == LHS->getType() &&
1797 "Arithmetic operation should return same type as operands!");
Duncan Sands19d0b472010-02-16 11:11:14 +00001798 assert((getType()->isIntegerTy() || (getType()->isVectorTy() &&
Duncan Sands9dff9be2010-02-15 16:12:20 +00001799 cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001800 "Incorrect operand type (not integer) for S/UDIV");
1801 break;
1802 case FDiv:
1803 assert(getType() == LHS->getType() &&
1804 "Arithmetic operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001805 assert(getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001806 "Incorrect operand type (not floating point) for FDIV");
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001807 break;
Reid Spencer7eb55b32006-11-02 01:53:59 +00001808 case URem:
1809 case SRem:
1810 assert(getType() == LHS->getType() &&
1811 "Arithmetic operation should return same type as operands!");
Duncan Sands19d0b472010-02-16 11:11:14 +00001812 assert((getType()->isIntegerTy() || (getType()->isVectorTy() &&
Duncan Sands9dff9be2010-02-15 16:12:20 +00001813 cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
Reid Spencer7eb55b32006-11-02 01:53:59 +00001814 "Incorrect operand type (not integer) for S/UREM");
1815 break;
1816 case FRem:
1817 assert(getType() == LHS->getType() &&
1818 "Arithmetic operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001819 assert(getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001820 "Incorrect operand type (not floating point) for FREM");
Reid Spencer7eb55b32006-11-02 01:53:59 +00001821 break;
Reid Spencer2341c222007-02-02 02:16:23 +00001822 case Shl:
1823 case LShr:
1824 case AShr:
1825 assert(getType() == LHS->getType() &&
1826 "Shift operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001827 assert((getType()->isIntegerTy() ||
Duncan Sands19d0b472010-02-16 11:11:14 +00001828 (getType()->isVectorTy() &&
Duncan Sands9dff9be2010-02-15 16:12:20 +00001829 cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
Nate Begemanfecbc8c2008-07-29 15:49:41 +00001830 "Tried to create a shift operation on a non-integral type!");
Reid Spencer2341c222007-02-02 02:16:23 +00001831 break;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001832 case And: case Or:
1833 case Xor:
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001834 assert(getType() == LHS->getType() &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001835 "Logical operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001836 assert((getType()->isIntegerTy() ||
Duncan Sands19d0b472010-02-16 11:11:14 +00001837 (getType()->isVectorTy() &&
Duncan Sands9dff9be2010-02-15 16:12:20 +00001838 cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
Misha Brukman3852f652005-01-27 06:46:38 +00001839 "Tried to create a logical operation on a non-integral type!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001840 break;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001841 default:
1842 break;
1843 }
1844#endif
1845}
1846
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001847BinaryOperator *BinaryOperator::Create(BinaryOps Op, Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001848 const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001849 Instruction *InsertBefore) {
1850 assert(S1->getType() == S2->getType() &&
1851 "Cannot create binary operator with two operands of differing type!");
Reid Spencer266e42b2006-12-23 06:05:41 +00001852 return new BinaryOperator(Op, S1, S2, S1->getType(), Name, InsertBefore);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001853}
1854
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001855BinaryOperator *BinaryOperator::Create(BinaryOps Op, Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001856 const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001857 BasicBlock *InsertAtEnd) {
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001858 BinaryOperator *Res = Create(Op, S1, S2, Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001859 InsertAtEnd->getInstList().push_back(Res);
1860 return Res;
1861}
1862
Dan Gohman5476cfd2009-08-12 16:23:25 +00001863BinaryOperator *BinaryOperator::CreateNeg(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001864 Instruction *InsertBefore) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001865 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Reid Spencer2eadb532007-01-21 00:29:26 +00001866 return new BinaryOperator(Instruction::Sub,
1867 zero, Op,
1868 Op->getType(), Name, InsertBefore);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001869}
1870
Dan Gohman5476cfd2009-08-12 16:23:25 +00001871BinaryOperator *BinaryOperator::CreateNeg(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001872 BasicBlock *InsertAtEnd) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001873 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Reid Spencer2eadb532007-01-21 00:29:26 +00001874 return new BinaryOperator(Instruction::Sub,
1875 zero, Op,
1876 Op->getType(), Name, InsertAtEnd);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001877}
1878
Dan Gohman4ab44202009-12-18 02:58:50 +00001879BinaryOperator *BinaryOperator::CreateNSWNeg(Value *Op, const Twine &Name,
1880 Instruction *InsertBefore) {
1881 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1882 return BinaryOperator::CreateNSWSub(zero, Op, Name, InsertBefore);
1883}
1884
1885BinaryOperator *BinaryOperator::CreateNSWNeg(Value *Op, const Twine &Name,
1886 BasicBlock *InsertAtEnd) {
1887 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1888 return BinaryOperator::CreateNSWSub(zero, Op, Name, InsertAtEnd);
1889}
1890
Duncan Sandsfa5f5962010-02-02 12:53:04 +00001891BinaryOperator *BinaryOperator::CreateNUWNeg(Value *Op, const Twine &Name,
1892 Instruction *InsertBefore) {
1893 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1894 return BinaryOperator::CreateNUWSub(zero, Op, Name, InsertBefore);
1895}
1896
1897BinaryOperator *BinaryOperator::CreateNUWNeg(Value *Op, const Twine &Name,
1898 BasicBlock *InsertAtEnd) {
1899 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1900 return BinaryOperator::CreateNUWSub(zero, Op, Name, InsertAtEnd);
1901}
1902
Dan Gohman5476cfd2009-08-12 16:23:25 +00001903BinaryOperator *BinaryOperator::CreateFNeg(Value *Op, const Twine &Name,
Dan Gohmana5b96452009-06-04 22:49:04 +00001904 Instruction *InsertBefore) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001905 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Chris Lattner47a86bd2012-01-25 06:02:56 +00001906 return new BinaryOperator(Instruction::FSub, zero, Op,
Dan Gohmana5b96452009-06-04 22:49:04 +00001907 Op->getType(), Name, InsertBefore);
1908}
1909
Dan Gohman5476cfd2009-08-12 16:23:25 +00001910BinaryOperator *BinaryOperator::CreateFNeg(Value *Op, const Twine &Name,
Dan Gohmana5b96452009-06-04 22:49:04 +00001911 BasicBlock *InsertAtEnd) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001912 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Chris Lattner47a86bd2012-01-25 06:02:56 +00001913 return new BinaryOperator(Instruction::FSub, zero, Op,
Dan Gohmana5b96452009-06-04 22:49:04 +00001914 Op->getType(), Name, InsertAtEnd);
1915}
1916
Dan Gohman5476cfd2009-08-12 16:23:25 +00001917BinaryOperator *BinaryOperator::CreateNot(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001918 Instruction *InsertBefore) {
Chris Lattner47a86bd2012-01-25 06:02:56 +00001919 Constant *C = Constant::getAllOnesValue(Op->getType());
Chris Lattnere8e7ac42006-03-25 21:54:21 +00001920 return new BinaryOperator(Instruction::Xor, Op, C,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001921 Op->getType(), Name, InsertBefore);
1922}
1923
Dan Gohman5476cfd2009-08-12 16:23:25 +00001924BinaryOperator *BinaryOperator::CreateNot(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001925 BasicBlock *InsertAtEnd) {
Chris Lattner47a86bd2012-01-25 06:02:56 +00001926 Constant *AllOnes = Constant::getAllOnesValue(Op->getType());
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001927 return new BinaryOperator(Instruction::Xor, Op, AllOnes,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001928 Op->getType(), Name, InsertAtEnd);
1929}
1930
1931
1932// isConstantAllOnes - Helper function for several functions below
1933static inline bool isConstantAllOnes(const Value *V) {
Chris Lattner0256be92012-01-27 03:08:05 +00001934 if (const Constant *C = dyn_cast<Constant>(V))
1935 return C->isAllOnesValue();
Chris Lattner1edec382007-06-15 06:04:24 +00001936 return false;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001937}
1938
Owen Andersonbb2501b2009-07-13 22:18:28 +00001939bool BinaryOperator::isNeg(const Value *V) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001940 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1941 if (Bop->getOpcode() == Instruction::Sub)
Owen Andersonbb2501b2009-07-13 22:18:28 +00001942 if (Constant* C = dyn_cast<Constant>(Bop->getOperand(0)))
1943 return C->isNegativeZeroValue();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001944 return false;
1945}
1946
Shuxin Yangf0537ab2013-01-09 00:13:41 +00001947bool BinaryOperator::isFNeg(const Value *V, bool IgnoreZeroSign) {
Dan Gohmana5b96452009-06-04 22:49:04 +00001948 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1949 if (Bop->getOpcode() == Instruction::FSub)
Shuxin Yangf0537ab2013-01-09 00:13:41 +00001950 if (Constant* C = dyn_cast<Constant>(Bop->getOperand(0))) {
1951 if (!IgnoreZeroSign)
1952 IgnoreZeroSign = cast<Instruction>(V)->hasNoSignedZeros();
1953 return !IgnoreZeroSign ? C->isNegativeZeroValue() : C->isZeroValue();
1954 }
Dan Gohmana5b96452009-06-04 22:49:04 +00001955 return false;
1956}
1957
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001958bool BinaryOperator::isNot(const Value *V) {
1959 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1960 return (Bop->getOpcode() == Instruction::Xor &&
1961 (isConstantAllOnes(Bop->getOperand(1)) ||
1962 isConstantAllOnes(Bop->getOperand(0))));
1963 return false;
1964}
1965
Chris Lattner2c7d1772005-04-24 07:28:37 +00001966Value *BinaryOperator::getNegArgument(Value *BinOp) {
Chris Lattner2c7d1772005-04-24 07:28:37 +00001967 return cast<BinaryOperator>(BinOp)->getOperand(1);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001968}
1969
Chris Lattner2c7d1772005-04-24 07:28:37 +00001970const Value *BinaryOperator::getNegArgument(const Value *BinOp) {
1971 return getNegArgument(const_cast<Value*>(BinOp));
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001972}
1973
Dan Gohmana5b96452009-06-04 22:49:04 +00001974Value *BinaryOperator::getFNegArgument(Value *BinOp) {
Dan Gohmana5b96452009-06-04 22:49:04 +00001975 return cast<BinaryOperator>(BinOp)->getOperand(1);
1976}
1977
1978const Value *BinaryOperator::getFNegArgument(const Value *BinOp) {
1979 return getFNegArgument(const_cast<Value*>(BinOp));
1980}
1981
Chris Lattner2c7d1772005-04-24 07:28:37 +00001982Value *BinaryOperator::getNotArgument(Value *BinOp) {
1983 assert(isNot(BinOp) && "getNotArgument on non-'not' instruction!");
1984 BinaryOperator *BO = cast<BinaryOperator>(BinOp);
1985 Value *Op0 = BO->getOperand(0);
1986 Value *Op1 = BO->getOperand(1);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001987 if (isConstantAllOnes(Op0)) return Op1;
1988
1989 assert(isConstantAllOnes(Op1));
1990 return Op0;
1991}
1992
Chris Lattner2c7d1772005-04-24 07:28:37 +00001993const Value *BinaryOperator::getNotArgument(const Value *BinOp) {
1994 return getNotArgument(const_cast<Value*>(BinOp));
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001995}
1996
1997
1998// swapOperands - Exchange the two operands to this instruction. This
1999// instruction is safe to use on any binary instruction and does not
2000// modify the semantics of the instruction. If the instruction is
2001// order dependent (SetLT f.e.) the opcode is changed.
2002//
2003bool BinaryOperator::swapOperands() {
Reid Spencer266e42b2006-12-23 06:05:41 +00002004 if (!isCommutative())
2005 return true; // Can't commute operands
Gabor Greif5ef74042008-05-13 22:51:52 +00002006 Op<0>().swap(Op<1>());
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002007 return false;
2008}
2009
Dan Gohman1b849082009-09-07 23:54:19 +00002010void BinaryOperator::setHasNoUnsignedWrap(bool b) {
2011 cast<OverflowingBinaryOperator>(this)->setHasNoUnsignedWrap(b);
2012}
2013
2014void BinaryOperator::setHasNoSignedWrap(bool b) {
2015 cast<OverflowingBinaryOperator>(this)->setHasNoSignedWrap(b);
2016}
2017
2018void BinaryOperator::setIsExact(bool b) {
Chris Lattner35315d02011-02-06 21:44:57 +00002019 cast<PossiblyExactOperator>(this)->setIsExact(b);
Dan Gohman1b849082009-09-07 23:54:19 +00002020}
2021
Nick Lewycky28a5f252009-09-27 21:33:04 +00002022bool BinaryOperator::hasNoUnsignedWrap() const {
2023 return cast<OverflowingBinaryOperator>(this)->hasNoUnsignedWrap();
2024}
2025
2026bool BinaryOperator::hasNoSignedWrap() const {
2027 return cast<OverflowingBinaryOperator>(this)->hasNoSignedWrap();
2028}
2029
2030bool BinaryOperator::isExact() const {
Chris Lattner35315d02011-02-06 21:44:57 +00002031 return cast<PossiblyExactOperator>(this)->isExact();
Nick Lewycky28a5f252009-09-27 21:33:04 +00002032}
2033
Sanjay Patela982d992014-09-03 01:06:50 +00002034void BinaryOperator::copyIRFlags(const Value *V) {
Sanjay Patel5ad239e2014-09-01 18:44:57 +00002035 // Copy the wrapping flags.
2036 if (auto *OB = dyn_cast<OverflowingBinaryOperator>(V)) {
2037 setHasNoSignedWrap(OB->hasNoSignedWrap());
2038 setHasNoUnsignedWrap(OB->hasNoUnsignedWrap());
2039 }
2040
2041 // Copy the exact flag.
2042 if (auto *PE = dyn_cast<PossiblyExactOperator>(V))
2043 setIsExact(PE->isExact());
2044
2045 // Copy the fast-math flags.
2046 if (auto *FP = dyn_cast<FPMathOperator>(V))
Sanjay Patelb2325b92014-09-02 20:03:00 +00002047 copyFastMathFlags(FP->getFastMathFlags());
Sanjay Patel5ad239e2014-09-01 18:44:57 +00002048}
2049
Sanjay Patela982d992014-09-03 01:06:50 +00002050void BinaryOperator::andIRFlags(const Value *V) {
2051 if (auto *OB = dyn_cast<OverflowingBinaryOperator>(V)) {
2052 setHasNoSignedWrap(hasNoSignedWrap() & OB->hasNoSignedWrap());
2053 setHasNoUnsignedWrap(hasNoUnsignedWrap() & OB->hasNoUnsignedWrap());
2054 }
2055
2056 if (auto *PE = dyn_cast<PossiblyExactOperator>(V))
2057 setIsExact(isExact() & PE->isExact());
2058
2059 if (auto *FP = dyn_cast<FPMathOperator>(V)) {
2060 FastMathFlags FM = getFastMathFlags();
2061 FM &= FP->getFastMathFlags();
2062 copyFastMathFlags(FM);
2063 }
2064}
2065
2066
Chris Lattnerb0b8ddd2006-09-18 04:54:57 +00002067//===----------------------------------------------------------------------===//
Duncan Sands05f4df82012-04-16 16:28:59 +00002068// FPMathOperator Class
2069//===----------------------------------------------------------------------===//
2070
2071/// getFPAccuracy - Get the maximum error permitted by this operation in ULPs.
2072/// An accuracy of 0.0 means that the operation should be performed with the
Duncan Sands9af62982012-04-16 19:39:33 +00002073/// default precision.
Duncan Sands05f4df82012-04-16 16:28:59 +00002074float FPMathOperator::getFPAccuracy() const {
Duncan P. N. Exon Smithde36e802014-11-11 21:30:22 +00002075 const MDNode *MD =
2076 cast<Instruction>(this)->getMetadata(LLVMContext::MD_fpmath);
Duncan Sands05f4df82012-04-16 16:28:59 +00002077 if (!MD)
2078 return 0.0;
Duncan Sands9af62982012-04-16 19:39:33 +00002079 ConstantFP *Accuracy = cast<ConstantFP>(MD->getOperand(0));
2080 return Accuracy->getValueAPF().convertToFloat();
Duncan Sands05f4df82012-04-16 16:28:59 +00002081}
2082
2083
2084//===----------------------------------------------------------------------===//
Chris Lattnerb0b8ddd2006-09-18 04:54:57 +00002085// CastInst Class
2086//===----------------------------------------------------------------------===//
2087
David Blaikie3a15e142011-12-01 08:00:17 +00002088void CastInst::anchor() {}
2089
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002090// Just determine if this cast only deals with integral->integral conversion.
2091bool CastInst::isIntegerCast() const {
2092 switch (getOpcode()) {
2093 default: return false;
2094 case Instruction::ZExt:
2095 case Instruction::SExt:
2096 case Instruction::Trunc:
2097 return true;
2098 case Instruction::BitCast:
Duncan Sands9dff9be2010-02-15 16:12:20 +00002099 return getOperand(0)->getType()->isIntegerTy() &&
2100 getType()->isIntegerTy();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002101 }
Chris Lattnerb0b8ddd2006-09-18 04:54:57 +00002102}
2103
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002104bool CastInst::isLosslessCast() const {
2105 // Only BitCast can be lossless, exit fast if we're not BitCast
2106 if (getOpcode() != Instruction::BitCast)
2107 return false;
2108
2109 // Identity cast is always lossless
Chris Lattner229907c2011-07-18 04:54:35 +00002110 Type* SrcTy = getOperand(0)->getType();
2111 Type* DstTy = getType();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002112 if (SrcTy == DstTy)
2113 return true;
2114
Reid Spencer8d9336d2006-12-31 05:26:44 +00002115 // Pointer to pointer is always lossless.
Duncan Sands19d0b472010-02-16 11:11:14 +00002116 if (SrcTy->isPointerTy())
2117 return DstTy->isPointerTy();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002118 return false; // Other types have no identity values
2119}
2120
2121/// This function determines if the CastInst does not require any bits to be
2122/// changed in order to effect the cast. Essentially, it identifies cases where
2123/// no code gen is necessary for the cast, hence the name no-op cast. For
2124/// example, the following are all no-op casts:
Dan Gohmane9bc2ba2008-05-12 16:34:30 +00002125/// # bitcast i32* %x to i8*
2126/// # bitcast <2 x i32> %x to <4 x i16>
2127/// # ptrtoint i32* %x to i32 ; on 32-bit plaforms only
Dan Gohman0d7f3b82010-05-28 21:41:37 +00002128/// @brief Determine if the described cast is a no-op.
2129bool CastInst::isNoopCast(Instruction::CastOps Opcode,
Chris Lattner229907c2011-07-18 04:54:35 +00002130 Type *SrcTy,
2131 Type *DestTy,
2132 Type *IntPtrTy) {
Dan Gohman0d7f3b82010-05-28 21:41:37 +00002133 switch (Opcode) {
Craig Topperc514b542012-02-05 22:14:15 +00002134 default: llvm_unreachable("Invalid CastOp");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002135 case Instruction::Trunc:
2136 case Instruction::ZExt:
2137 case Instruction::SExt:
2138 case Instruction::FPTrunc:
2139 case Instruction::FPExt:
2140 case Instruction::UIToFP:
2141 case Instruction::SIToFP:
2142 case Instruction::FPToUI:
2143 case Instruction::FPToSI:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002144 case Instruction::AddrSpaceCast:
2145 // TODO: Target informations may give a more accurate answer here.
2146 return false;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002147 case Instruction::BitCast:
2148 return true; // BitCast never modifies bits.
2149 case Instruction::PtrToInt:
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002150 return IntPtrTy->getScalarSizeInBits() ==
Dan Gohman0d7f3b82010-05-28 21:41:37 +00002151 DestTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002152 case Instruction::IntToPtr:
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002153 return IntPtrTy->getScalarSizeInBits() ==
Dan Gohman0d7f3b82010-05-28 21:41:37 +00002154 SrcTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002155 }
2156}
2157
Dan Gohman0d7f3b82010-05-28 21:41:37 +00002158/// @brief Determine if a cast is a no-op.
Chris Lattner229907c2011-07-18 04:54:35 +00002159bool CastInst::isNoopCast(Type *IntPtrTy) const {
Dan Gohman0d7f3b82010-05-28 21:41:37 +00002160 return isNoopCast(getOpcode(), getOperand(0)->getType(), getType(), IntPtrTy);
2161}
2162
Matt Arsenaulta236ea52014-03-06 17:33:55 +00002163bool CastInst::isNoopCast(const DataLayout *DL) const {
2164 if (!DL) {
2165 // Assume maximum pointer size.
2166 return isNoopCast(Type::getInt64Ty(getContext()));
2167 }
2168
Craig Topperc6207612014-04-09 06:08:46 +00002169 Type *PtrOpTy = nullptr;
Matt Arsenaulta236ea52014-03-06 17:33:55 +00002170 if (getOpcode() == Instruction::PtrToInt)
2171 PtrOpTy = getOperand(0)->getType();
2172 else if (getOpcode() == Instruction::IntToPtr)
2173 PtrOpTy = getType();
2174
2175 Type *IntPtrTy = PtrOpTy
2176 ? DL->getIntPtrType(PtrOpTy)
2177 : DL->getIntPtrType(getContext(), 0);
2178
2179 return isNoopCast(getOpcode(), getOperand(0)->getType(), getType(), IntPtrTy);
2180}
2181
2182/// This function determines if a pair of casts can be eliminated and what
2183/// opcode should be used in the elimination. This assumes that there are two
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002184/// instructions like this:
2185/// * %F = firstOpcode SrcTy %x to MidTy
2186/// * %S = secondOpcode MidTy %F to DstTy
2187/// The function returns a resultOpcode so these two casts can be replaced with:
2188/// * %Replacement = resultOpcode %SrcTy %x to DstTy
2189/// If no such cast is permited, the function returns 0.
2190unsigned CastInst::isEliminableCastPair(
2191 Instruction::CastOps firstOp, Instruction::CastOps secondOp,
Duncan Sandse2395dc2012-10-30 16:03:32 +00002192 Type *SrcTy, Type *MidTy, Type *DstTy, Type *SrcIntPtrTy, Type *MidIntPtrTy,
2193 Type *DstIntPtrTy) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002194 // Define the 144 possibilities for these two cast instructions. The values
2195 // in this matrix determine what to do in a given situation and select the
2196 // case in the switch below. The rows correspond to firstOp, the columns
2197 // correspond to secondOp. In looking at the table below, keep in mind
2198 // the following cast properties:
2199 //
2200 // Size Compare Source Destination
2201 // Operator Src ? Size Type Sign Type Sign
2202 // -------- ------------ ------------------- ---------------------
2203 // TRUNC > Integer Any Integral Any
2204 // ZEXT < Integral Unsigned Integer Any
2205 // SEXT < Integral Signed Integer Any
2206 // FPTOUI n/a FloatPt n/a Integral Unsigned
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002207 // FPTOSI n/a FloatPt n/a Integral Signed
2208 // UITOFP n/a Integral Unsigned FloatPt n/a
2209 // SITOFP n/a Integral Signed FloatPt n/a
2210 // FPTRUNC > FloatPt n/a FloatPt n/a
2211 // FPEXT < FloatPt n/a FloatPt n/a
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002212 // PTRTOINT n/a Pointer n/a Integral Unsigned
2213 // INTTOPTR n/a Integral Unsigned Pointer n/a
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002214 // BITCAST = FirstClass n/a FirstClass n/a
2215 // ADDRSPCST n/a Pointer n/a Pointer n/a
Chris Lattner6f6b4972006-12-05 23:43:59 +00002216 //
2217 // NOTE: some transforms are safe, but we consider them to be non-profitable.
Dan Gohman4fe64de2009-06-14 23:30:43 +00002218 // For example, we could merge "fptoui double to i32" + "zext i32 to i64",
2219 // into "fptoui double to i64", but this loses information about the range
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002220 // of the produced value (we no longer know the top-part is all zeros).
Chris Lattner6f6b4972006-12-05 23:43:59 +00002221 // Further this conversion is often much more expensive for typical hardware,
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002222 // and causes issues when building libgcc. We disallow fptosi+sext for the
Chris Lattner6f6b4972006-12-05 23:43:59 +00002223 // same reason.
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002224 const unsigned numCastOps =
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002225 Instruction::CastOpsEnd - Instruction::CastOpsBegin;
2226 static const uint8_t CastResults[numCastOps][numCastOps] = {
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002227 // T F F U S F F P I B A -+
2228 // R Z S P P I I T P 2 N T S |
2229 // U E E 2 2 2 2 R E I T C C +- secondOp
2230 // N X X U S F F N X N 2 V V |
2231 // C T T I I P P C T T P T T -+
2232 { 1, 0, 0,99,99, 0, 0,99,99,99, 0, 3, 0}, // Trunc -+
2233 { 8, 1, 9,99,99, 2, 0,99,99,99, 2, 3, 0}, // ZExt |
2234 { 8, 0, 1,99,99, 0, 2,99,99,99, 0, 3, 0}, // SExt |
2235 { 0, 0, 0,99,99, 0, 0,99,99,99, 0, 3, 0}, // FPToUI |
2236 { 0, 0, 0,99,99, 0, 0,99,99,99, 0, 3, 0}, // FPToSI |
2237 { 99,99,99, 0, 0,99,99, 0, 0,99,99, 4, 0}, // UIToFP +- firstOp
2238 { 99,99,99, 0, 0,99,99, 0, 0,99,99, 4, 0}, // SIToFP |
2239 { 99,99,99, 0, 0,99,99, 1, 0,99,99, 4, 0}, // FPTrunc |
2240 { 99,99,99, 2, 2,99,99,10, 2,99,99, 4, 0}, // FPExt |
2241 { 1, 0, 0,99,99, 0, 0,99,99,99, 7, 3, 0}, // PtrToInt |
2242 { 99,99,99,99,99,99,99,99,99,11,99,15, 0}, // IntToPtr |
2243 { 5, 5, 5, 6, 6, 5, 5, 6, 6,16, 5, 1,14}, // BitCast |
2244 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13,12}, // AddrSpaceCast -+
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002245 };
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002246
Chris Lattner25eea4d2010-07-12 01:19:22 +00002247 // If either of the casts are a bitcast from scalar to vector, disallow the
Nadav Rotem5fc81ff2011-08-29 19:58:36 +00002248 // merging. However, bitcast of A->B->A are allowed.
2249 bool isFirstBitcast = (firstOp == Instruction::BitCast);
2250 bool isSecondBitcast = (secondOp == Instruction::BitCast);
2251 bool chainedBitcast = (SrcTy == DstTy && isFirstBitcast && isSecondBitcast);
2252
2253 // Check if any of the bitcasts convert scalars<->vectors.
2254 if ((isFirstBitcast && isa<VectorType>(SrcTy) != isa<VectorType>(MidTy)) ||
2255 (isSecondBitcast && isa<VectorType>(MidTy) != isa<VectorType>(DstTy)))
2256 // Unless we are bitcasing to the original type, disallow optimizations.
2257 if (!chainedBitcast) return 0;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002258
2259 int ElimCase = CastResults[firstOp-Instruction::CastOpsBegin]
2260 [secondOp-Instruction::CastOpsBegin];
2261 switch (ElimCase) {
2262 case 0:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002263 // Categorically disallowed.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002264 return 0;
2265 case 1:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002266 // Allowed, use first cast's opcode.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002267 return firstOp;
2268 case 2:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002269 // Allowed, use second cast's opcode.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002270 return secondOp;
2271 case 3:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002272 // No-op cast in second op implies firstOp as long as the DestTy
Mon P Wange04b4562010-01-23 04:35:57 +00002273 // is integer and we are not converting between a vector and a
Alp Tokerf907b892013-12-05 05:44:44 +00002274 // non-vector type.
Duncan Sands19d0b472010-02-16 11:11:14 +00002275 if (!SrcTy->isVectorTy() && DstTy->isIntegerTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002276 return firstOp;
2277 return 0;
2278 case 4:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002279 // No-op cast in second op implies firstOp as long as the DestTy
Chris Lattner531732b2010-01-23 04:42:42 +00002280 // is floating point.
Duncan Sands9dff9be2010-02-15 16:12:20 +00002281 if (DstTy->isFloatingPointTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002282 return firstOp;
2283 return 0;
2284 case 5:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002285 // No-op cast in first op implies secondOp as long as the SrcTy
Chris Lattner531732b2010-01-23 04:42:42 +00002286 // is an integer.
Duncan Sands9dff9be2010-02-15 16:12:20 +00002287 if (SrcTy->isIntegerTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002288 return secondOp;
2289 return 0;
2290 case 6:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002291 // No-op cast in first op implies secondOp as long as the SrcTy
Chris Lattner531732b2010-01-23 04:42:42 +00002292 // is a floating point.
Duncan Sands9dff9be2010-02-15 16:12:20 +00002293 if (SrcTy->isFloatingPointTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002294 return secondOp;
2295 return 0;
Matt Arsenault130e0ef2013-07-30 22:27:10 +00002296 case 7: {
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002297 // Cannot simplify if address spaces are different!
2298 if (SrcTy->getPointerAddressSpace() != DstTy->getPointerAddressSpace())
2299 return 0;
2300
Matt Arsenault130e0ef2013-07-30 22:27:10 +00002301 unsigned MidSize = MidTy->getScalarSizeInBits();
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002302 // We can still fold this without knowing the actual sizes as long we
2303 // know that the intermediate pointer is the largest possible
2304 // pointer size.
2305 // FIXME: Is this always true?
2306 if (MidSize == 64)
Matt Arsenault130e0ef2013-07-30 22:27:10 +00002307 return Instruction::BitCast;
2308
2309 // ptrtoint, inttoptr -> bitcast (ptr -> ptr) if int size is >= ptr size.
Duncan Sandse2395dc2012-10-30 16:03:32 +00002310 if (!SrcIntPtrTy || DstIntPtrTy != SrcIntPtrTy)
Dan Gohman9413de12009-07-21 23:19:40 +00002311 return 0;
Duncan Sandse2395dc2012-10-30 16:03:32 +00002312 unsigned PtrSize = SrcIntPtrTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002313 if (MidSize >= PtrSize)
2314 return Instruction::BitCast;
2315 return 0;
2316 }
2317 case 8: {
2318 // ext, trunc -> bitcast, if the SrcTy and DstTy are same size
2319 // ext, trunc -> ext, if sizeof(SrcTy) < sizeof(DstTy)
2320 // ext, trunc -> trunc, if sizeof(SrcTy) > sizeof(DstTy)
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002321 unsigned SrcSize = SrcTy->getScalarSizeInBits();
2322 unsigned DstSize = DstTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002323 if (SrcSize == DstSize)
2324 return Instruction::BitCast;
2325 else if (SrcSize < DstSize)
2326 return firstOp;
2327 return secondOp;
2328 }
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002329 case 9:
2330 // zext, sext -> zext, because sext can't sign extend after zext
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002331 return Instruction::ZExt;
2332 case 10:
2333 // fpext followed by ftrunc is allowed if the bit size returned to is
2334 // the same as the original, in which case its just a bitcast
2335 if (SrcTy == DstTy)
2336 return Instruction::BitCast;
2337 return 0; // If the types are not the same we can't eliminate it.
Matt Arsenault130e0ef2013-07-30 22:27:10 +00002338 case 11: {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002339 // inttoptr, ptrtoint -> bitcast if SrcSize<=PtrSize and SrcSize==DstSize
Duncan Sandse2395dc2012-10-30 16:03:32 +00002340 if (!MidIntPtrTy)
Dan Gohman9413de12009-07-21 23:19:40 +00002341 return 0;
Duncan Sandse2395dc2012-10-30 16:03:32 +00002342 unsigned PtrSize = MidIntPtrTy->getScalarSizeInBits();
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002343 unsigned SrcSize = SrcTy->getScalarSizeInBits();
2344 unsigned DstSize = DstTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002345 if (SrcSize <= PtrSize && SrcSize == DstSize)
2346 return Instruction::BitCast;
2347 return 0;
2348 }
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002349 case 12: {
2350 // addrspacecast, addrspacecast -> bitcast, if SrcAS == DstAS
2351 // addrspacecast, addrspacecast -> addrspacecast, if SrcAS != DstAS
2352 if (SrcTy->getPointerAddressSpace() != DstTy->getPointerAddressSpace())
2353 return Instruction::AddrSpaceCast;
2354 return Instruction::BitCast;
2355 }
2356 case 13:
2357 // FIXME: this state can be merged with (1), but the following assert
2358 // is useful to check the correcteness of the sequence due to semantic
2359 // change of bitcast.
2360 assert(
2361 SrcTy->isPtrOrPtrVectorTy() &&
2362 MidTy->isPtrOrPtrVectorTy() &&
2363 DstTy->isPtrOrPtrVectorTy() &&
2364 SrcTy->getPointerAddressSpace() != MidTy->getPointerAddressSpace() &&
2365 MidTy->getPointerAddressSpace() == DstTy->getPointerAddressSpace() &&
2366 "Illegal addrspacecast, bitcast sequence!");
2367 // Allowed, use first cast's opcode
2368 return firstOp;
2369 case 14:
Jingyue Wu77145d92014-06-06 21:52:55 +00002370 // bitcast, addrspacecast -> addrspacecast if the element type of
2371 // bitcast's source is the same as that of addrspacecast's destination.
2372 if (SrcTy->getPointerElementType() == DstTy->getPointerElementType())
2373 return Instruction::AddrSpaceCast;
2374 return 0;
2375
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002376 case 15:
2377 // FIXME: this state can be merged with (1), but the following assert
2378 // is useful to check the correcteness of the sequence due to semantic
2379 // change of bitcast.
2380 assert(
2381 SrcTy->isIntOrIntVectorTy() &&
2382 MidTy->isPtrOrPtrVectorTy() &&
2383 DstTy->isPtrOrPtrVectorTy() &&
2384 MidTy->getPointerAddressSpace() == DstTy->getPointerAddressSpace() &&
2385 "Illegal inttoptr, bitcast sequence!");
2386 // Allowed, use first cast's opcode
2387 return firstOp;
2388 case 16:
2389 // FIXME: this state can be merged with (2), but the following assert
2390 // is useful to check the correcteness of the sequence due to semantic
2391 // change of bitcast.
2392 assert(
2393 SrcTy->isPtrOrPtrVectorTy() &&
2394 MidTy->isPtrOrPtrVectorTy() &&
2395 DstTy->isIntOrIntVectorTy() &&
2396 SrcTy->getPointerAddressSpace() == MidTy->getPointerAddressSpace() &&
2397 "Illegal bitcast, ptrtoint sequence!");
2398 // Allowed, use second cast's opcode
2399 return secondOp;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002400 case 99:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002401 // Cast combination can't happen (error in input). This is for all cases
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002402 // where the MidTy is not the same for the two cast instructions.
Craig Topperc514b542012-02-05 22:14:15 +00002403 llvm_unreachable("Invalid Cast Combination");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002404 default:
Craig Topperc514b542012-02-05 22:14:15 +00002405 llvm_unreachable("Error in CastResults table!!!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002406 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002407}
2408
Chris Lattner229907c2011-07-18 04:54:35 +00002409CastInst *CastInst::Create(Instruction::CastOps op, Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002410 const Twine &Name, Instruction *InsertBefore) {
Duncan Sands7f646562011-05-18 09:21:57 +00002411 assert(castIsValid(op, S, Ty) && "Invalid cast!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002412 // Construct and return the appropriate CastInst subclass
2413 switch (op) {
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002414 case Trunc: return new TruncInst (S, Ty, Name, InsertBefore);
2415 case ZExt: return new ZExtInst (S, Ty, Name, InsertBefore);
2416 case SExt: return new SExtInst (S, Ty, Name, InsertBefore);
2417 case FPTrunc: return new FPTruncInst (S, Ty, Name, InsertBefore);
2418 case FPExt: return new FPExtInst (S, Ty, Name, InsertBefore);
2419 case UIToFP: return new UIToFPInst (S, Ty, Name, InsertBefore);
2420 case SIToFP: return new SIToFPInst (S, Ty, Name, InsertBefore);
2421 case FPToUI: return new FPToUIInst (S, Ty, Name, InsertBefore);
2422 case FPToSI: return new FPToSIInst (S, Ty, Name, InsertBefore);
2423 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertBefore);
2424 case IntToPtr: return new IntToPtrInst (S, Ty, Name, InsertBefore);
2425 case BitCast: return new BitCastInst (S, Ty, Name, InsertBefore);
2426 case AddrSpaceCast: return new AddrSpaceCastInst (S, Ty, Name, InsertBefore);
2427 default: llvm_unreachable("Invalid opcode provided");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002428 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002429}
2430
Chris Lattner229907c2011-07-18 04:54:35 +00002431CastInst *CastInst::Create(Instruction::CastOps op, Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002432 const Twine &Name, BasicBlock *InsertAtEnd) {
Duncan Sands7f646562011-05-18 09:21:57 +00002433 assert(castIsValid(op, S, Ty) && "Invalid cast!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002434 // Construct and return the appropriate CastInst subclass
2435 switch (op) {
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002436 case Trunc: return new TruncInst (S, Ty, Name, InsertAtEnd);
2437 case ZExt: return new ZExtInst (S, Ty, Name, InsertAtEnd);
2438 case SExt: return new SExtInst (S, Ty, Name, InsertAtEnd);
2439 case FPTrunc: return new FPTruncInst (S, Ty, Name, InsertAtEnd);
2440 case FPExt: return new FPExtInst (S, Ty, Name, InsertAtEnd);
2441 case UIToFP: return new UIToFPInst (S, Ty, Name, InsertAtEnd);
2442 case SIToFP: return new SIToFPInst (S, Ty, Name, InsertAtEnd);
2443 case FPToUI: return new FPToUIInst (S, Ty, Name, InsertAtEnd);
2444 case FPToSI: return new FPToSIInst (S, Ty, Name, InsertAtEnd);
2445 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertAtEnd);
2446 case IntToPtr: return new IntToPtrInst (S, Ty, Name, InsertAtEnd);
2447 case BitCast: return new BitCastInst (S, Ty, Name, InsertAtEnd);
2448 case AddrSpaceCast: return new AddrSpaceCastInst (S, Ty, Name, InsertAtEnd);
2449 default: llvm_unreachable("Invalid opcode provided");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002450 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002451}
2452
Chris Lattner229907c2011-07-18 04:54:35 +00002453CastInst *CastInst::CreateZExtOrBitCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002454 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002455 Instruction *InsertBefore) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002456 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002457 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
2458 return Create(Instruction::ZExt, S, Ty, Name, InsertBefore);
Reid Spencer5c140882006-12-04 20:17:56 +00002459}
2460
Chris Lattner229907c2011-07-18 04:54:35 +00002461CastInst *CastInst::CreateZExtOrBitCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002462 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002463 BasicBlock *InsertAtEnd) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002464 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002465 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
2466 return Create(Instruction::ZExt, S, Ty, Name, InsertAtEnd);
Reid Spencer5c140882006-12-04 20:17:56 +00002467}
2468
Chris Lattner229907c2011-07-18 04:54:35 +00002469CastInst *CastInst::CreateSExtOrBitCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002470 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002471 Instruction *InsertBefore) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002472 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002473 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
2474 return Create(Instruction::SExt, S, Ty, Name, InsertBefore);
Reid Spencer5c140882006-12-04 20:17:56 +00002475}
2476
Chris Lattner229907c2011-07-18 04:54:35 +00002477CastInst *CastInst::CreateSExtOrBitCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002478 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002479 BasicBlock *InsertAtEnd) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002480 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002481 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
2482 return Create(Instruction::SExt, S, Ty, Name, InsertAtEnd);
Reid Spencer5c140882006-12-04 20:17:56 +00002483}
2484
Chris Lattner229907c2011-07-18 04:54:35 +00002485CastInst *CastInst::CreateTruncOrBitCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002486 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002487 Instruction *InsertBefore) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002488 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002489 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
2490 return Create(Instruction::Trunc, S, Ty, Name, InsertBefore);
Reid Spencer5c140882006-12-04 20:17:56 +00002491}
2492
Chris Lattner229907c2011-07-18 04:54:35 +00002493CastInst *CastInst::CreateTruncOrBitCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002494 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002495 BasicBlock *InsertAtEnd) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002496 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002497 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
2498 return Create(Instruction::Trunc, S, Ty, Name, InsertAtEnd);
Reid Spencer5c140882006-12-04 20:17:56 +00002499}
2500
Chris Lattner229907c2011-07-18 04:54:35 +00002501CastInst *CastInst::CreatePointerCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002502 const Twine &Name,
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002503 BasicBlock *InsertAtEnd) {
Matt Arsenault065ced92013-07-31 00:17:33 +00002504 assert(S->getType()->isPtrOrPtrVectorTy() && "Invalid cast");
2505 assert((Ty->isIntOrIntVectorTy() || Ty->isPtrOrPtrVectorTy()) &&
2506 "Invalid cast");
2507 assert(Ty->isVectorTy() == S->getType()->isVectorTy() && "Invalid cast");
Richard Trieu8dc43232013-07-31 04:07:28 +00002508 assert((!Ty->isVectorTy() ||
2509 Ty->getVectorNumElements() == S->getType()->getVectorNumElements()) &&
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002510 "Invalid cast");
2511
Matt Arsenault065ced92013-07-31 00:17:33 +00002512 if (Ty->isIntOrIntVectorTy())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002513 return Create(Instruction::PtrToInt, S, Ty, Name, InsertAtEnd);
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002514
Matt Arsenault740980e2014-07-14 17:24:35 +00002515 return CreatePointerBitCastOrAddrSpaceCast(S, Ty, Name, InsertAtEnd);
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002516}
2517
2518/// @brief Create a BitCast or a PtrToInt cast instruction
Matt Arsenault065ced92013-07-31 00:17:33 +00002519CastInst *CastInst::CreatePointerCast(Value *S, Type *Ty,
2520 const Twine &Name,
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002521 Instruction *InsertBefore) {
Evgeniy Stepanovc9bd35b2013-01-15 16:43:00 +00002522 assert(S->getType()->isPtrOrPtrVectorTy() && "Invalid cast");
2523 assert((Ty->isIntOrIntVectorTy() || Ty->isPtrOrPtrVectorTy()) &&
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002524 "Invalid cast");
Matt Arsenault065ced92013-07-31 00:17:33 +00002525 assert(Ty->isVectorTy() == S->getType()->isVectorTy() && "Invalid cast");
Richard Trieu8dc43232013-07-31 04:07:28 +00002526 assert((!Ty->isVectorTy() ||
2527 Ty->getVectorNumElements() == S->getType()->getVectorNumElements()) &&
Matt Arsenault065ced92013-07-31 00:17:33 +00002528 "Invalid cast");
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002529
Evgeniy Stepanovc9bd35b2013-01-15 16:43:00 +00002530 if (Ty->isIntOrIntVectorTy())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002531 return Create(Instruction::PtrToInt, S, Ty, Name, InsertBefore);
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002532
Matt Arsenault740980e2014-07-14 17:24:35 +00002533 return CreatePointerBitCastOrAddrSpaceCast(S, Ty, Name, InsertBefore);
2534}
2535
2536CastInst *CastInst::CreatePointerBitCastOrAddrSpaceCast(
2537 Value *S, Type *Ty,
2538 const Twine &Name,
2539 BasicBlock *InsertAtEnd) {
2540 assert(S->getType()->isPtrOrPtrVectorTy() && "Invalid cast");
2541 assert(Ty->isPtrOrPtrVectorTy() && "Invalid cast");
2542
2543 if (S->getType()->getPointerAddressSpace() != Ty->getPointerAddressSpace())
2544 return Create(Instruction::AddrSpaceCast, S, Ty, Name, InsertAtEnd);
2545
2546 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
2547}
2548
2549CastInst *CastInst::CreatePointerBitCastOrAddrSpaceCast(
2550 Value *S, Type *Ty,
2551 const Twine &Name,
2552 Instruction *InsertBefore) {
2553 assert(S->getType()->isPtrOrPtrVectorTy() && "Invalid cast");
2554 assert(Ty->isPtrOrPtrVectorTy() && "Invalid cast");
2555
2556 if (S->getType()->getPointerAddressSpace() != Ty->getPointerAddressSpace())
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002557 return Create(Instruction::AddrSpaceCast, S, Ty, Name, InsertBefore);
2558
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002559 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002560}
2561
Matt Arsenault740980e2014-07-14 17:24:35 +00002562CastInst *CastInst::CreateIntegerCast(Value *C, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002563 bool isSigned, const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002564 Instruction *InsertBefore) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002565 assert(C->getType()->isIntOrIntVectorTy() && Ty->isIntOrIntVectorTy() &&
Chris Lattner5370ae72010-01-10 20:21:42 +00002566 "Invalid integer cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002567 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2568 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002569 Instruction::CastOps opcode =
2570 (SrcBits == DstBits ? Instruction::BitCast :
2571 (SrcBits > DstBits ? Instruction::Trunc :
2572 (isSigned ? Instruction::SExt : Instruction::ZExt)));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002573 return Create(opcode, C, Ty, Name, InsertBefore);
Reid Spencer7e933472006-12-12 00:49:44 +00002574}
2575
Chris Lattner229907c2011-07-18 04:54:35 +00002576CastInst *CastInst::CreateIntegerCast(Value *C, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002577 bool isSigned, const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002578 BasicBlock *InsertAtEnd) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002579 assert(C->getType()->isIntOrIntVectorTy() && Ty->isIntOrIntVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00002580 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002581 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2582 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002583 Instruction::CastOps opcode =
2584 (SrcBits == DstBits ? Instruction::BitCast :
2585 (SrcBits > DstBits ? Instruction::Trunc :
2586 (isSigned ? Instruction::SExt : Instruction::ZExt)));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002587 return Create(opcode, C, Ty, Name, InsertAtEnd);
Reid Spencer7e933472006-12-12 00:49:44 +00002588}
2589
Chris Lattner229907c2011-07-18 04:54:35 +00002590CastInst *CastInst::CreateFPCast(Value *C, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002591 const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002592 Instruction *InsertBefore) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002593 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer7e933472006-12-12 00:49:44 +00002594 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002595 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2596 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002597 Instruction::CastOps opcode =
2598 (SrcBits == DstBits ? Instruction::BitCast :
2599 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002600 return Create(opcode, C, Ty, Name, InsertBefore);
Reid Spencer7e933472006-12-12 00:49:44 +00002601}
2602
Chris Lattner229907c2011-07-18 04:54:35 +00002603CastInst *CastInst::CreateFPCast(Value *C, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002604 const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002605 BasicBlock *InsertAtEnd) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002606 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer7e933472006-12-12 00:49:44 +00002607 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002608 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2609 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002610 Instruction::CastOps opcode =
2611 (SrcBits == DstBits ? Instruction::BitCast :
2612 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002613 return Create(opcode, C, Ty, Name, InsertAtEnd);
Reid Spencer7e933472006-12-12 00:49:44 +00002614}
2615
Matt Arsenaultb4019ae2013-07-30 22:02:14 +00002616// Check whether it is valid to call getCastOpcode for these types.
2617// This routine must be kept in sync with getCastOpcode.
2618bool CastInst::isCastable(Type *SrcTy, Type *DestTy) {
2619 if (!SrcTy->isFirstClassType() || !DestTy->isFirstClassType())
2620 return false;
2621
2622 if (SrcTy == DestTy)
2623 return true;
2624
2625 if (VectorType *SrcVecTy = dyn_cast<VectorType>(SrcTy))
2626 if (VectorType *DestVecTy = dyn_cast<VectorType>(DestTy))
2627 if (SrcVecTy->getNumElements() == DestVecTy->getNumElements()) {
2628 // An element by element cast. Valid if casting the elements is valid.
2629 SrcTy = SrcVecTy->getElementType();
2630 DestTy = DestVecTy->getElementType();
2631 }
2632
2633 // Get the bit sizes, we'll need these
2634 unsigned SrcBits = SrcTy->getPrimitiveSizeInBits(); // 0 for ptr
2635 unsigned DestBits = DestTy->getPrimitiveSizeInBits(); // 0 for ptr
2636
2637 // Run through the possibilities ...
2638 if (DestTy->isIntegerTy()) { // Casting to integral
2639 if (SrcTy->isIntegerTy()) { // Casting from integral
2640 return true;
2641 } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt
2642 return true;
2643 } else if (SrcTy->isVectorTy()) { // Casting from vector
2644 return DestBits == SrcBits;
2645 } else { // Casting from something else
2646 return SrcTy->isPointerTy();
2647 }
2648 } else if (DestTy->isFloatingPointTy()) { // Casting to floating pt
2649 if (SrcTy->isIntegerTy()) { // Casting from integral
2650 return true;
2651 } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt
2652 return true;
2653 } else if (SrcTy->isVectorTy()) { // Casting from vector
2654 return DestBits == SrcBits;
2655 } else { // Casting from something else
2656 return false;
2657 }
2658 } else if (DestTy->isVectorTy()) { // Casting to vector
2659 return DestBits == SrcBits;
2660 } else if (DestTy->isPointerTy()) { // Casting to pointer
2661 if (SrcTy->isPointerTy()) { // Casting from pointer
2662 return true;
2663 } else if (SrcTy->isIntegerTy()) { // Casting from integral
2664 return true;
2665 } else { // Casting from something else
2666 return false;
2667 }
2668 } else if (DestTy->isX86_MMXTy()) {
2669 if (SrcTy->isVectorTy()) {
2670 return DestBits == SrcBits; // 64-bit vector to MMX
2671 } else {
2672 return false;
2673 }
2674 } else { // Casting to something else
2675 return false;
2676 }
2677}
2678
Matt Arsenaultcacbb232013-07-30 20:45:05 +00002679bool CastInst::isBitCastable(Type *SrcTy, Type *DestTy) {
2680 if (!SrcTy->isFirstClassType() || !DestTy->isFirstClassType())
2681 return false;
2682
2683 if (SrcTy == DestTy)
2684 return true;
2685
2686 if (VectorType *SrcVecTy = dyn_cast<VectorType>(SrcTy)) {
2687 if (VectorType *DestVecTy = dyn_cast<VectorType>(DestTy)) {
2688 if (SrcVecTy->getNumElements() == DestVecTy->getNumElements()) {
2689 // An element by element cast. Valid if casting the elements is valid.
2690 SrcTy = SrcVecTy->getElementType();
2691 DestTy = DestVecTy->getElementType();
2692 }
2693 }
2694 }
2695
2696 if (PointerType *DestPtrTy = dyn_cast<PointerType>(DestTy)) {
2697 if (PointerType *SrcPtrTy = dyn_cast<PointerType>(SrcTy)) {
2698 return SrcPtrTy->getAddressSpace() == DestPtrTy->getAddressSpace();
2699 }
2700 }
2701
2702 unsigned SrcBits = SrcTy->getPrimitiveSizeInBits(); // 0 for ptr
2703 unsigned DestBits = DestTy->getPrimitiveSizeInBits(); // 0 for ptr
2704
2705 // Could still have vectors of pointers if the number of elements doesn't
2706 // match
2707 if (SrcBits == 0 || DestBits == 0)
2708 return false;
2709
2710 if (SrcBits != DestBits)
2711 return false;
2712
2713 if (DestTy->isX86_MMXTy() || SrcTy->isX86_MMXTy())
2714 return false;
2715
2716 return true;
2717}
2718
2719// Provide a way to get a "cast" where the cast opcode is inferred from the
2720// types and size of the operand. This, basically, is a parallel of the
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002721// logic in the castIsValid function below. This axiom should hold:
2722// castIsValid( getCastOpcode(Val, Ty), Val, Ty)
2723// should not assert in castIsValid. In other words, this produces a "correct"
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002724// casting opcode for the arguments passed to it.
Duncan Sands55e50902008-01-06 10:12:28 +00002725// This routine must be kept in sync with isCastable.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002726Instruction::CastOps
Reid Spencerc4dacf22006-12-04 02:43:42 +00002727CastInst::getCastOpcode(
Chris Lattner229907c2011-07-18 04:54:35 +00002728 const Value *Src, bool SrcIsSigned, Type *DestTy, bool DestIsSigned) {
2729 Type *SrcTy = Src->getType();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002730
Duncan Sands55e50902008-01-06 10:12:28 +00002731 assert(SrcTy->isFirstClassType() && DestTy->isFirstClassType() &&
2732 "Only first class types are castable!");
2733
Duncan Sandsa8514532011-05-18 07:13:41 +00002734 if (SrcTy == DestTy)
2735 return BitCast;
2736
Matt Arsenaultcacbb232013-07-30 20:45:05 +00002737 // FIXME: Check address space sizes here
Chris Lattner229907c2011-07-18 04:54:35 +00002738 if (VectorType *SrcVecTy = dyn_cast<VectorType>(SrcTy))
2739 if (VectorType *DestVecTy = dyn_cast<VectorType>(DestTy))
Duncan Sandsa8514532011-05-18 07:13:41 +00002740 if (SrcVecTy->getNumElements() == DestVecTy->getNumElements()) {
2741 // An element by element cast. Find the appropriate opcode based on the
2742 // element types.
2743 SrcTy = SrcVecTy->getElementType();
2744 DestTy = DestVecTy->getElementType();
2745 }
2746
2747 // Get the bit sizes, we'll need these
Duncan Sands7f646562011-05-18 09:21:57 +00002748 unsigned SrcBits = SrcTy->getPrimitiveSizeInBits(); // 0 for ptr
2749 unsigned DestBits = DestTy->getPrimitiveSizeInBits(); // 0 for ptr
Duncan Sandsa8514532011-05-18 07:13:41 +00002750
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002751 // Run through the possibilities ...
Duncan Sands9dff9be2010-02-15 16:12:20 +00002752 if (DestTy->isIntegerTy()) { // Casting to integral
2753 if (SrcTy->isIntegerTy()) { // Casting from integral
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002754 if (DestBits < SrcBits)
2755 return Trunc; // int -> smaller int
2756 else if (DestBits > SrcBits) { // its an extension
Reid Spencerc4dacf22006-12-04 02:43:42 +00002757 if (SrcIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002758 return SExt; // signed -> SEXT
2759 else
2760 return ZExt; // unsigned -> ZEXT
2761 } else {
2762 return BitCast; // Same size, No-op cast
2763 }
Duncan Sands9dff9be2010-02-15 16:12:20 +00002764 } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt
Reid Spencerc4dacf22006-12-04 02:43:42 +00002765 if (DestIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002766 return FPToSI; // FP -> sint
2767 else
2768 return FPToUI; // FP -> uint
Duncan Sands27bd0df2011-05-18 10:59:25 +00002769 } else if (SrcTy->isVectorTy()) {
2770 assert(DestBits == SrcBits &&
2771 "Casting vector to integer of different width");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002772 return BitCast; // Same size, no-op cast
2773 } else {
Duncan Sands19d0b472010-02-16 11:11:14 +00002774 assert(SrcTy->isPointerTy() &&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002775 "Casting from a value that is not first-class type");
2776 return PtrToInt; // ptr -> int
2777 }
Duncan Sands9dff9be2010-02-15 16:12:20 +00002778 } else if (DestTy->isFloatingPointTy()) { // Casting to floating pt
2779 if (SrcTy->isIntegerTy()) { // Casting from integral
Reid Spencerc4dacf22006-12-04 02:43:42 +00002780 if (SrcIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002781 return SIToFP; // sint -> FP
2782 else
2783 return UIToFP; // uint -> FP
Duncan Sands9dff9be2010-02-15 16:12:20 +00002784 } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002785 if (DestBits < SrcBits) {
2786 return FPTrunc; // FP -> smaller FP
2787 } else if (DestBits > SrcBits) {
2788 return FPExt; // FP -> larger FP
2789 } else {
2790 return BitCast; // same size, no-op cast
2791 }
Duncan Sands27bd0df2011-05-18 10:59:25 +00002792 } else if (SrcTy->isVectorTy()) {
2793 assert(DestBits == SrcBits &&
Dan Gohmanfead7972007-05-11 21:43:24 +00002794 "Casting vector to floating point of different width");
Devang Patele9432132008-11-05 01:37:40 +00002795 return BitCast; // same size, no-op cast
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002796 }
Ahmed Charles636a3d62012-02-19 11:37:01 +00002797 llvm_unreachable("Casting pointer or non-first class to float");
Duncan Sands27bd0df2011-05-18 10:59:25 +00002798 } else if (DestTy->isVectorTy()) {
2799 assert(DestBits == SrcBits &&
2800 "Illegal cast to vector (wrong type or size)");
2801 return BitCast;
Duncan Sands19d0b472010-02-16 11:11:14 +00002802 } else if (DestTy->isPointerTy()) {
2803 if (SrcTy->isPointerTy()) {
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002804 if (DestTy->getPointerAddressSpace() != SrcTy->getPointerAddressSpace())
2805 return AddrSpaceCast;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002806 return BitCast; // ptr -> ptr
Duncan Sands9dff9be2010-02-15 16:12:20 +00002807 } else if (SrcTy->isIntegerTy()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002808 return IntToPtr; // int -> ptr
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002809 }
Ahmed Charles636a3d62012-02-19 11:37:01 +00002810 llvm_unreachable("Casting pointer to other than pointer or int");
Dale Johannesendd224d22010-09-30 23:57:10 +00002811 } else if (DestTy->isX86_MMXTy()) {
Duncan Sands27bd0df2011-05-18 10:59:25 +00002812 if (SrcTy->isVectorTy()) {
2813 assert(DestBits == SrcBits && "Casting vector of wrong width to X86_MMX");
Dale Johannesendd224d22010-09-30 23:57:10 +00002814 return BitCast; // 64-bit vector to MMX
Dale Johannesendd224d22010-09-30 23:57:10 +00002815 }
Ahmed Charles636a3d62012-02-19 11:37:01 +00002816 llvm_unreachable("Illegal cast to X86_MMX");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002817 }
Ahmed Charles636a3d62012-02-19 11:37:01 +00002818 llvm_unreachable("Casting to type that is not first-class");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002819}
2820
2821//===----------------------------------------------------------------------===//
2822// CastInst SubClass Constructors
2823//===----------------------------------------------------------------------===//
2824
2825/// Check that the construction parameters for a CastInst are correct. This
2826/// could be broken out into the separate constructors but it is useful to have
2827/// it in one place and to eliminate the redundant code for getting the sizes
2828/// of the types involved.
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002829bool
Chris Lattner229907c2011-07-18 04:54:35 +00002830CastInst::castIsValid(Instruction::CastOps op, Value *S, Type *DstTy) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002831
2832 // Check for type sanity on the arguments
Chris Lattner229907c2011-07-18 04:54:35 +00002833 Type *SrcTy = S->getType();
Evan Cheng098d7b72013-01-10 23:22:53 +00002834
2835 // If this is a cast to the same type then it's trivially true.
2836 if (SrcTy == DstTy)
2837 return true;
2838
Chris Lattner37bc78a2010-01-26 21:51:43 +00002839 if (!SrcTy->isFirstClassType() || !DstTy->isFirstClassType() ||
2840 SrcTy->isAggregateType() || DstTy->isAggregateType())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002841 return false;
2842
2843 // Get the size of the types in bits, we'll need this later
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002844 unsigned SrcBitSize = SrcTy->getScalarSizeInBits();
2845 unsigned DstBitSize = DstTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002846
Duncan Sands7f646562011-05-18 09:21:57 +00002847 // If these are vector types, get the lengths of the vectors (using zero for
2848 // scalar types means that checking that vector lengths match also checks that
2849 // scalars are not being converted to vectors or vectors to scalars).
2850 unsigned SrcLength = SrcTy->isVectorTy() ?
2851 cast<VectorType>(SrcTy)->getNumElements() : 0;
2852 unsigned DstLength = DstTy->isVectorTy() ?
2853 cast<VectorType>(DstTy)->getNumElements() : 0;
2854
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002855 // Switch on the opcode provided
2856 switch (op) {
2857 default: return false; // This is an input error
2858 case Instruction::Trunc:
Duncan Sands7f646562011-05-18 09:21:57 +00002859 return SrcTy->isIntOrIntVectorTy() && DstTy->isIntOrIntVectorTy() &&
2860 SrcLength == DstLength && SrcBitSize > DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002861 case Instruction::ZExt:
Duncan Sands7f646562011-05-18 09:21:57 +00002862 return SrcTy->isIntOrIntVectorTy() && DstTy->isIntOrIntVectorTy() &&
2863 SrcLength == DstLength && SrcBitSize < DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002864 case Instruction::SExt:
Duncan Sands7f646562011-05-18 09:21:57 +00002865 return SrcTy->isIntOrIntVectorTy() && DstTy->isIntOrIntVectorTy() &&
2866 SrcLength == DstLength && SrcBitSize < DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002867 case Instruction::FPTrunc:
Duncan Sands7f646562011-05-18 09:21:57 +00002868 return SrcTy->isFPOrFPVectorTy() && DstTy->isFPOrFPVectorTy() &&
2869 SrcLength == DstLength && SrcBitSize > DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002870 case Instruction::FPExt:
Duncan Sands7f646562011-05-18 09:21:57 +00002871 return SrcTy->isFPOrFPVectorTy() && DstTy->isFPOrFPVectorTy() &&
2872 SrcLength == DstLength && SrcBitSize < DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002873 case Instruction::UIToFP:
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002874 case Instruction::SIToFP:
Duncan Sands7f646562011-05-18 09:21:57 +00002875 return SrcTy->isIntOrIntVectorTy() && DstTy->isFPOrFPVectorTy() &&
2876 SrcLength == DstLength;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002877 case Instruction::FPToUI:
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002878 case Instruction::FPToSI:
Duncan Sands7f646562011-05-18 09:21:57 +00002879 return SrcTy->isFPOrFPVectorTy() && DstTy->isIntOrIntVectorTy() &&
2880 SrcLength == DstLength;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002881 case Instruction::PtrToInt:
Chris Lattner8a3df542012-01-25 01:32:59 +00002882 if (isa<VectorType>(SrcTy) != isa<VectorType>(DstTy))
Nadav Rotem3924cb02011-12-05 06:29:09 +00002883 return false;
Chris Lattner8a3df542012-01-25 01:32:59 +00002884 if (VectorType *VT = dyn_cast<VectorType>(SrcTy))
2885 if (VT->getNumElements() != cast<VectorType>(DstTy)->getNumElements())
2886 return false;
Nadav Rotem3924cb02011-12-05 06:29:09 +00002887 return SrcTy->getScalarType()->isPointerTy() &&
2888 DstTy->getScalarType()->isIntegerTy();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002889 case Instruction::IntToPtr:
Chris Lattner8a3df542012-01-25 01:32:59 +00002890 if (isa<VectorType>(SrcTy) != isa<VectorType>(DstTy))
Nadav Rotem3924cb02011-12-05 06:29:09 +00002891 return false;
Chris Lattner8a3df542012-01-25 01:32:59 +00002892 if (VectorType *VT = dyn_cast<VectorType>(SrcTy))
2893 if (VT->getNumElements() != cast<VectorType>(DstTy)->getNumElements())
2894 return false;
Nadav Rotem3924cb02011-12-05 06:29:09 +00002895 return SrcTy->getScalarType()->isIntegerTy() &&
2896 DstTy->getScalarType()->isPointerTy();
Matt Arsenaultfc3c91d2014-01-22 19:21:33 +00002897 case Instruction::BitCast: {
2898 PointerType *SrcPtrTy = dyn_cast<PointerType>(SrcTy->getScalarType());
2899 PointerType *DstPtrTy = dyn_cast<PointerType>(DstTy->getScalarType());
2900
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002901 // BitCast implies a no-op cast of type only. No bits change.
2902 // However, you can't cast pointers to anything but pointers.
Matt Arsenaultfc3c91d2014-01-22 19:21:33 +00002903 if (!SrcPtrTy != !DstPtrTy)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002904 return false;
2905
Alp Tokerf907b892013-12-05 05:44:44 +00002906 // For non-pointer cases, the cast is okay if the source and destination bit
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002907 // widths are identical.
Matt Arsenaultfc3c91d2014-01-22 19:21:33 +00002908 if (!SrcPtrTy)
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002909 return SrcTy->getPrimitiveSizeInBits() == DstTy->getPrimitiveSizeInBits();
2910
Matt Arsenaultfc3c91d2014-01-22 19:21:33 +00002911 // If both are pointers then the address spaces must match.
2912 if (SrcPtrTy->getAddressSpace() != DstPtrTy->getAddressSpace())
2913 return false;
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002914
Matt Arsenaultfc3c91d2014-01-22 19:21:33 +00002915 // A vector of pointers must have the same number of elements.
2916 if (VectorType *SrcVecTy = dyn_cast<VectorType>(SrcTy)) {
2917 if (VectorType *DstVecTy = dyn_cast<VectorType>(DstTy))
2918 return (SrcVecTy->getNumElements() == DstVecTy->getNumElements());
2919
2920 return false;
2921 }
2922
2923 return true;
2924 }
2925 case Instruction::AddrSpaceCast: {
2926 PointerType *SrcPtrTy = dyn_cast<PointerType>(SrcTy->getScalarType());
2927 if (!SrcPtrTy)
2928 return false;
2929
2930 PointerType *DstPtrTy = dyn_cast<PointerType>(DstTy->getScalarType());
2931 if (!DstPtrTy)
2932 return false;
2933
2934 if (SrcPtrTy->getAddressSpace() == DstPtrTy->getAddressSpace())
2935 return false;
2936
2937 if (VectorType *SrcVecTy = dyn_cast<VectorType>(SrcTy)) {
2938 if (VectorType *DstVecTy = dyn_cast<VectorType>(DstTy))
2939 return (SrcVecTy->getNumElements() == DstVecTy->getNumElements());
2940
2941 return false;
2942 }
2943
2944 return true;
2945 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002946 }
2947}
2948
2949TruncInst::TruncInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002950 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002951) : CastInst(Ty, Trunc, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002952 assert(castIsValid(getOpcode(), S, Ty) && "Illegal Trunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002953}
2954
2955TruncInst::TruncInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002956 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002957) : CastInst(Ty, Trunc, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002958 assert(castIsValid(getOpcode(), S, Ty) && "Illegal Trunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002959}
2960
2961ZExtInst::ZExtInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002962 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002963) : CastInst(Ty, ZExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002964 assert(castIsValid(getOpcode(), S, Ty) && "Illegal ZExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002965}
2966
2967ZExtInst::ZExtInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002968 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002969) : CastInst(Ty, ZExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002970 assert(castIsValid(getOpcode(), S, Ty) && "Illegal ZExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002971}
2972SExtInst::SExtInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002973 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002974) : CastInst(Ty, SExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002975 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002976}
2977
Jeff Cohencc08c832006-12-02 02:22:01 +00002978SExtInst::SExtInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002979 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002980) : CastInst(Ty, SExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002981 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002982}
2983
2984FPTruncInst::FPTruncInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002985 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002986) : CastInst(Ty, FPTrunc, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002987 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPTrunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002988}
2989
2990FPTruncInst::FPTruncInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002991 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002992) : CastInst(Ty, FPTrunc, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002993 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPTrunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002994}
2995
2996FPExtInst::FPExtInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002997 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002998) : CastInst(Ty, FPExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002999 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003000}
3001
3002FPExtInst::FPExtInst(
Chris Lattner229907c2011-07-18 04:54:35 +00003003 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003004) : CastInst(Ty, FPExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00003005 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003006}
3007
3008UIToFPInst::UIToFPInst(
Chris Lattner229907c2011-07-18 04:54:35 +00003009 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003010) : CastInst(Ty, UIToFP, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00003011 assert(castIsValid(getOpcode(), S, Ty) && "Illegal UIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003012}
3013
3014UIToFPInst::UIToFPInst(
Chris Lattner229907c2011-07-18 04:54:35 +00003015 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003016) : CastInst(Ty, UIToFP, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00003017 assert(castIsValid(getOpcode(), S, Ty) && "Illegal UIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003018}
3019
3020SIToFPInst::SIToFPInst(
Chris Lattner229907c2011-07-18 04:54:35 +00003021 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003022) : CastInst(Ty, SIToFP, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00003023 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003024}
3025
3026SIToFPInst::SIToFPInst(
Chris Lattner229907c2011-07-18 04:54:35 +00003027 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003028) : CastInst(Ty, SIToFP, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00003029 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003030}
3031
3032FPToUIInst::FPToUIInst(
Chris Lattner229907c2011-07-18 04:54:35 +00003033 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003034) : CastInst(Ty, FPToUI, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00003035 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToUI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003036}
3037
3038FPToUIInst::FPToUIInst(
Chris Lattner229907c2011-07-18 04:54:35 +00003039 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003040) : CastInst(Ty, FPToUI, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00003041 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToUI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003042}
3043
3044FPToSIInst::FPToSIInst(
Chris Lattner229907c2011-07-18 04:54:35 +00003045 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003046) : CastInst(Ty, FPToSI, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00003047 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToSI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003048}
3049
3050FPToSIInst::FPToSIInst(
Chris Lattner229907c2011-07-18 04:54:35 +00003051 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003052) : CastInst(Ty, FPToSI, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00003053 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToSI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003054}
3055
3056PtrToIntInst::PtrToIntInst(
Chris Lattner229907c2011-07-18 04:54:35 +00003057 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003058) : CastInst(Ty, PtrToInt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00003059 assert(castIsValid(getOpcode(), S, Ty) && "Illegal PtrToInt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003060}
3061
3062PtrToIntInst::PtrToIntInst(
Chris Lattner229907c2011-07-18 04:54:35 +00003063 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003064) : CastInst(Ty, PtrToInt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00003065 assert(castIsValid(getOpcode(), S, Ty) && "Illegal PtrToInt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003066}
3067
3068IntToPtrInst::IntToPtrInst(
Chris Lattner229907c2011-07-18 04:54:35 +00003069 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003070) : CastInst(Ty, IntToPtr, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00003071 assert(castIsValid(getOpcode(), S, Ty) && "Illegal IntToPtr");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003072}
3073
3074IntToPtrInst::IntToPtrInst(
Chris Lattner229907c2011-07-18 04:54:35 +00003075 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003076) : CastInst(Ty, IntToPtr, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00003077 assert(castIsValid(getOpcode(), S, Ty) && "Illegal IntToPtr");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003078}
3079
3080BitCastInst::BitCastInst(
Chris Lattner229907c2011-07-18 04:54:35 +00003081 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003082) : CastInst(Ty, BitCast, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00003083 assert(castIsValid(getOpcode(), S, Ty) && "Illegal BitCast");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003084}
3085
3086BitCastInst::BitCastInst(
Chris Lattner229907c2011-07-18 04:54:35 +00003087 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003088) : CastInst(Ty, BitCast, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00003089 assert(castIsValid(getOpcode(), S, Ty) && "Illegal BitCast");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003090}
Chris Lattnerf16dc002006-09-17 19:29:56 +00003091
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00003092AddrSpaceCastInst::AddrSpaceCastInst(
3093 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
3094) : CastInst(Ty, AddrSpaceCast, S, Name, InsertBefore) {
3095 assert(castIsValid(getOpcode(), S, Ty) && "Illegal AddrSpaceCast");
3096}
3097
3098AddrSpaceCastInst::AddrSpaceCastInst(
3099 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
3100) : CastInst(Ty, AddrSpaceCast, S, Name, InsertAtEnd) {
3101 assert(castIsValid(getOpcode(), S, Ty) && "Illegal AddrSpaceCast");
3102}
3103
Chris Lattnerf16dc002006-09-17 19:29:56 +00003104//===----------------------------------------------------------------------===//
Reid Spencerd9436b62006-11-20 01:22:35 +00003105// CmpInst Classes
3106//===----------------------------------------------------------------------===//
3107
Craig Topper3186c012012-09-23 02:12:10 +00003108void CmpInst::anchor() {}
Chris Lattneraec33da2010-01-22 06:25:37 +00003109
Chris Lattner229907c2011-07-18 04:54:35 +00003110CmpInst::CmpInst(Type *ty, OtherOps op, unsigned short predicate,
Daniel Dunbar4975db62009-07-25 04:41:11 +00003111 Value *LHS, Value *RHS, const Twine &Name,
Nate Begemand2195702008-05-12 19:01:56 +00003112 Instruction *InsertBefore)
Nate Begeman66d0a0e2008-05-12 20:11:05 +00003113 : Instruction(ty, op,
Gabor Greiff6caff662008-05-10 08:32:32 +00003114 OperandTraits<CmpInst>::op_begin(this),
3115 OperandTraits<CmpInst>::operands(this),
3116 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00003117 Op<0>() = LHS;
3118 Op<1>() = RHS;
Chris Lattnerb9c86512009-12-29 02:14:09 +00003119 setPredicate((Predicate)predicate);
Reid Spencer871a9ea2007-04-11 13:04:48 +00003120 setName(Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00003121}
Gabor Greiff6caff662008-05-10 08:32:32 +00003122
Chris Lattner229907c2011-07-18 04:54:35 +00003123CmpInst::CmpInst(Type *ty, OtherOps op, unsigned short predicate,
Daniel Dunbar4975db62009-07-25 04:41:11 +00003124 Value *LHS, Value *RHS, const Twine &Name,
Nate Begemand2195702008-05-12 19:01:56 +00003125 BasicBlock *InsertAtEnd)
Nate Begeman66d0a0e2008-05-12 20:11:05 +00003126 : Instruction(ty, op,
Gabor Greiff6caff662008-05-10 08:32:32 +00003127 OperandTraits<CmpInst>::op_begin(this),
3128 OperandTraits<CmpInst>::operands(this),
3129 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00003130 Op<0>() = LHS;
3131 Op<1>() = RHS;
Chris Lattnerb9c86512009-12-29 02:14:09 +00003132 setPredicate((Predicate)predicate);
Reid Spencer871a9ea2007-04-11 13:04:48 +00003133 setName(Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00003134}
3135
3136CmpInst *
Dan Gohmanad1f0a12009-08-25 23:17:54 +00003137CmpInst::Create(OtherOps Op, unsigned short predicate,
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003138 Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00003139 const Twine &Name, Instruction *InsertBefore) {
Reid Spencerd9436b62006-11-20 01:22:35 +00003140 if (Op == Instruction::ICmp) {
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003141 if (InsertBefore)
3142 return new ICmpInst(InsertBefore, CmpInst::Predicate(predicate),
3143 S1, S2, Name);
3144 else
Dan Gohmanad1f0a12009-08-25 23:17:54 +00003145 return new ICmpInst(CmpInst::Predicate(predicate),
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003146 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00003147 }
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003148
3149 if (InsertBefore)
3150 return new FCmpInst(InsertBefore, CmpInst::Predicate(predicate),
3151 S1, S2, Name);
3152 else
Dan Gohmanad1f0a12009-08-25 23:17:54 +00003153 return new FCmpInst(CmpInst::Predicate(predicate),
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003154 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00003155}
3156
3157CmpInst *
Gabor Greife1f6e4b2008-05-16 19:29:10 +00003158CmpInst::Create(OtherOps Op, unsigned short predicate, Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00003159 const Twine &Name, BasicBlock *InsertAtEnd) {
Reid Spencerd9436b62006-11-20 01:22:35 +00003160 if (Op == Instruction::ICmp) {
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003161 return new ICmpInst(*InsertAtEnd, CmpInst::Predicate(predicate),
3162 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00003163 }
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003164 return new FCmpInst(*InsertAtEnd, CmpInst::Predicate(predicate),
3165 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00003166}
3167
3168void CmpInst::swapOperands() {
3169 if (ICmpInst *IC = dyn_cast<ICmpInst>(this))
3170 IC->swapOperands();
3171 else
3172 cast<FCmpInst>(this)->swapOperands();
3173}
3174
Duncan Sands95c4ecc2011-01-04 12:52:29 +00003175bool CmpInst::isCommutative() const {
3176 if (const ICmpInst *IC = dyn_cast<ICmpInst>(this))
Reid Spencerd9436b62006-11-20 01:22:35 +00003177 return IC->isCommutative();
3178 return cast<FCmpInst>(this)->isCommutative();
3179}
3180
Duncan Sands95c4ecc2011-01-04 12:52:29 +00003181bool CmpInst::isEquality() const {
3182 if (const ICmpInst *IC = dyn_cast<ICmpInst>(this))
Reid Spencerd9436b62006-11-20 01:22:35 +00003183 return IC->isEquality();
3184 return cast<FCmpInst>(this)->isEquality();
3185}
3186
3187
Dan Gohman4e724382008-05-31 02:47:54 +00003188CmpInst::Predicate CmpInst::getInversePredicate(Predicate pred) {
Reid Spencerd9436b62006-11-20 01:22:35 +00003189 switch (pred) {
Craig Topperc514b542012-02-05 22:14:15 +00003190 default: llvm_unreachable("Unknown cmp predicate!");
Reid Spencerd9436b62006-11-20 01:22:35 +00003191 case ICMP_EQ: return ICMP_NE;
3192 case ICMP_NE: return ICMP_EQ;
3193 case ICMP_UGT: return ICMP_ULE;
3194 case ICMP_ULT: return ICMP_UGE;
3195 case ICMP_UGE: return ICMP_ULT;
3196 case ICMP_ULE: return ICMP_UGT;
3197 case ICMP_SGT: return ICMP_SLE;
3198 case ICMP_SLT: return ICMP_SGE;
3199 case ICMP_SGE: return ICMP_SLT;
3200 case ICMP_SLE: return ICMP_SGT;
Reid Spencerd9436b62006-11-20 01:22:35 +00003201
Dan Gohman4e724382008-05-31 02:47:54 +00003202 case FCMP_OEQ: return FCMP_UNE;
3203 case FCMP_ONE: return FCMP_UEQ;
3204 case FCMP_OGT: return FCMP_ULE;
3205 case FCMP_OLT: return FCMP_UGE;
3206 case FCMP_OGE: return FCMP_ULT;
3207 case FCMP_OLE: return FCMP_UGT;
3208 case FCMP_UEQ: return FCMP_ONE;
3209 case FCMP_UNE: return FCMP_OEQ;
3210 case FCMP_UGT: return FCMP_OLE;
3211 case FCMP_ULT: return FCMP_OGE;
3212 case FCMP_UGE: return FCMP_OLT;
3213 case FCMP_ULE: return FCMP_OGT;
3214 case FCMP_ORD: return FCMP_UNO;
3215 case FCMP_UNO: return FCMP_ORD;
3216 case FCMP_TRUE: return FCMP_FALSE;
3217 case FCMP_FALSE: return FCMP_TRUE;
Reid Spencerd9436b62006-11-20 01:22:35 +00003218 }
3219}
3220
Reid Spencer266e42b2006-12-23 06:05:41 +00003221ICmpInst::Predicate ICmpInst::getSignedPredicate(Predicate pred) {
3222 switch (pred) {
Craig Topperc514b542012-02-05 22:14:15 +00003223 default: llvm_unreachable("Unknown icmp predicate!");
Reid Spencer266e42b2006-12-23 06:05:41 +00003224 case ICMP_EQ: case ICMP_NE:
3225 case ICMP_SGT: case ICMP_SLT: case ICMP_SGE: case ICMP_SLE:
3226 return pred;
3227 case ICMP_UGT: return ICMP_SGT;
3228 case ICMP_ULT: return ICMP_SLT;
3229 case ICMP_UGE: return ICMP_SGE;
3230 case ICMP_ULE: return ICMP_SLE;
3231 }
3232}
3233
Nick Lewycky8ea81e82008-01-28 03:48:02 +00003234ICmpInst::Predicate ICmpInst::getUnsignedPredicate(Predicate pred) {
3235 switch (pred) {
Craig Topperc514b542012-02-05 22:14:15 +00003236 default: llvm_unreachable("Unknown icmp predicate!");
Nick Lewycky8ea81e82008-01-28 03:48:02 +00003237 case ICMP_EQ: case ICMP_NE:
3238 case ICMP_UGT: case ICMP_ULT: case ICMP_UGE: case ICMP_ULE:
3239 return pred;
3240 case ICMP_SGT: return ICMP_UGT;
3241 case ICMP_SLT: return ICMP_ULT;
3242 case ICMP_SGE: return ICMP_UGE;
3243 case ICMP_SLE: return ICMP_ULE;
3244 }
3245}
3246
Reid Spencer0286bc12007-02-28 22:00:54 +00003247/// Initialize a set of values that all satisfy the condition with C.
3248///
3249ConstantRange
3250ICmpInst::makeConstantRange(Predicate pred, const APInt &C) {
3251 APInt Lower(C);
3252 APInt Upper(C);
3253 uint32_t BitWidth = C.getBitWidth();
3254 switch (pred) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00003255 default: llvm_unreachable("Invalid ICmp opcode to ConstantRange ctor!");
Jakub Staszak773be0c2013-03-20 23:56:19 +00003256 case ICmpInst::ICMP_EQ: ++Upper; break;
3257 case ICmpInst::ICMP_NE: ++Lower; break;
Dan Gohmand86e2952010-01-26 16:04:20 +00003258 case ICmpInst::ICMP_ULT:
3259 Lower = APInt::getMinValue(BitWidth);
3260 // Check for an empty-set condition.
3261 if (Lower == Upper)
3262 return ConstantRange(BitWidth, /*isFullSet=*/false);
3263 break;
3264 case ICmpInst::ICMP_SLT:
3265 Lower = APInt::getSignedMinValue(BitWidth);
3266 // Check for an empty-set condition.
3267 if (Lower == Upper)
3268 return ConstantRange(BitWidth, /*isFullSet=*/false);
3269 break;
Reid Spencer0286bc12007-02-28 22:00:54 +00003270 case ICmpInst::ICMP_UGT:
Jakub Staszak773be0c2013-03-20 23:56:19 +00003271 ++Lower; Upper = APInt::getMinValue(BitWidth); // Min = Next(Max)
Dan Gohmand86e2952010-01-26 16:04:20 +00003272 // Check for an empty-set condition.
3273 if (Lower == Upper)
3274 return ConstantRange(BitWidth, /*isFullSet=*/false);
Reid Spencer0286bc12007-02-28 22:00:54 +00003275 break;
3276 case ICmpInst::ICMP_SGT:
Jakub Staszak773be0c2013-03-20 23:56:19 +00003277 ++Lower; Upper = APInt::getSignedMinValue(BitWidth); // Min = Next(Max)
Dan Gohmand86e2952010-01-26 16:04:20 +00003278 // Check for an empty-set condition.
3279 if (Lower == Upper)
3280 return ConstantRange(BitWidth, /*isFullSet=*/false);
Reid Spencer0286bc12007-02-28 22:00:54 +00003281 break;
3282 case ICmpInst::ICMP_ULE:
Jakub Staszak773be0c2013-03-20 23:56:19 +00003283 Lower = APInt::getMinValue(BitWidth); ++Upper;
Dan Gohmand86e2952010-01-26 16:04:20 +00003284 // Check for a full-set condition.
3285 if (Lower == Upper)
3286 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer0286bc12007-02-28 22:00:54 +00003287 break;
3288 case ICmpInst::ICMP_SLE:
Jakub Staszak773be0c2013-03-20 23:56:19 +00003289 Lower = APInt::getSignedMinValue(BitWidth); ++Upper;
Dan Gohmand86e2952010-01-26 16:04:20 +00003290 // Check for a full-set condition.
3291 if (Lower == Upper)
3292 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer0286bc12007-02-28 22:00:54 +00003293 break;
3294 case ICmpInst::ICMP_UGE:
3295 Upper = APInt::getMinValue(BitWidth); // Min = Next(Max)
Dan Gohmand86e2952010-01-26 16:04:20 +00003296 // Check for a full-set condition.
3297 if (Lower == Upper)
3298 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer0286bc12007-02-28 22:00:54 +00003299 break;
3300 case ICmpInst::ICMP_SGE:
3301 Upper = APInt::getSignedMinValue(BitWidth); // Min = Next(Max)
Dan Gohmand86e2952010-01-26 16:04:20 +00003302 // Check for a full-set condition.
3303 if (Lower == Upper)
3304 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer0286bc12007-02-28 22:00:54 +00003305 break;
3306 }
3307 return ConstantRange(Lower, Upper);
3308}
3309
Dan Gohman4e724382008-05-31 02:47:54 +00003310CmpInst::Predicate CmpInst::getSwappedPredicate(Predicate pred) {
Reid Spencerd9436b62006-11-20 01:22:35 +00003311 switch (pred) {
Craig Topperc514b542012-02-05 22:14:15 +00003312 default: llvm_unreachable("Unknown cmp predicate!");
Dan Gohman4e724382008-05-31 02:47:54 +00003313 case ICMP_EQ: case ICMP_NE:
3314 return pred;
3315 case ICMP_SGT: return ICMP_SLT;
3316 case ICMP_SLT: return ICMP_SGT;
3317 case ICMP_SGE: return ICMP_SLE;
3318 case ICMP_SLE: return ICMP_SGE;
3319 case ICMP_UGT: return ICMP_ULT;
3320 case ICMP_ULT: return ICMP_UGT;
3321 case ICMP_UGE: return ICMP_ULE;
3322 case ICMP_ULE: return ICMP_UGE;
3323
Reid Spencerd9436b62006-11-20 01:22:35 +00003324 case FCMP_FALSE: case FCMP_TRUE:
3325 case FCMP_OEQ: case FCMP_ONE:
3326 case FCMP_UEQ: case FCMP_UNE:
3327 case FCMP_ORD: case FCMP_UNO:
3328 return pred;
3329 case FCMP_OGT: return FCMP_OLT;
3330 case FCMP_OLT: return FCMP_OGT;
3331 case FCMP_OGE: return FCMP_OLE;
3332 case FCMP_OLE: return FCMP_OGE;
3333 case FCMP_UGT: return FCMP_ULT;
3334 case FCMP_ULT: return FCMP_UGT;
3335 case FCMP_UGE: return FCMP_ULE;
3336 case FCMP_ULE: return FCMP_UGE;
3337 }
3338}
3339
Reid Spencer266e42b2006-12-23 06:05:41 +00003340bool CmpInst::isUnsigned(unsigned short predicate) {
3341 switch (predicate) {
3342 default: return false;
3343 case ICmpInst::ICMP_ULT: case ICmpInst::ICMP_ULE: case ICmpInst::ICMP_UGT:
3344 case ICmpInst::ICMP_UGE: return true;
3345 }
3346}
3347
Nick Lewycky7494b3b2009-10-25 03:50:03 +00003348bool CmpInst::isSigned(unsigned short predicate) {
Reid Spencer266e42b2006-12-23 06:05:41 +00003349 switch (predicate) {
3350 default: return false;
3351 case ICmpInst::ICMP_SLT: case ICmpInst::ICMP_SLE: case ICmpInst::ICMP_SGT:
3352 case ICmpInst::ICMP_SGE: return true;
3353 }
3354}
3355
3356bool CmpInst::isOrdered(unsigned short predicate) {
3357 switch (predicate) {
3358 default: return false;
3359 case FCmpInst::FCMP_OEQ: case FCmpInst::FCMP_ONE: case FCmpInst::FCMP_OGT:
3360 case FCmpInst::FCMP_OLT: case FCmpInst::FCMP_OGE: case FCmpInst::FCMP_OLE:
3361 case FCmpInst::FCMP_ORD: return true;
3362 }
3363}
3364
3365bool CmpInst::isUnordered(unsigned short predicate) {
3366 switch (predicate) {
3367 default: return false;
3368 case FCmpInst::FCMP_UEQ: case FCmpInst::FCMP_UNE: case FCmpInst::FCMP_UGT:
3369 case FCmpInst::FCMP_ULT: case FCmpInst::FCMP_UGE: case FCmpInst::FCMP_ULE:
3370 case FCmpInst::FCMP_UNO: return true;
3371 }
3372}
3373
Nick Lewycky7494b3b2009-10-25 03:50:03 +00003374bool CmpInst::isTrueWhenEqual(unsigned short predicate) {
3375 switch(predicate) {
3376 default: return false;
3377 case ICMP_EQ: case ICMP_UGE: case ICMP_ULE: case ICMP_SGE: case ICMP_SLE:
3378 case FCMP_TRUE: case FCMP_UEQ: case FCMP_UGE: case FCMP_ULE: return true;
3379 }
3380}
3381
3382bool CmpInst::isFalseWhenEqual(unsigned short predicate) {
3383 switch(predicate) {
3384 case ICMP_NE: case ICMP_UGT: case ICMP_ULT: case ICMP_SGT: case ICMP_SLT:
3385 case FCMP_FALSE: case FCMP_ONE: case FCMP_OGT: case FCMP_OLT: return true;
3386 default: return false;
3387 }
3388}
3389
3390
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003391//===----------------------------------------------------------------------===//
3392// SwitchInst Implementation
3393//===----------------------------------------------------------------------===//
3394
Chris Lattnerbaf00152010-11-17 05:41:46 +00003395void SwitchInst::init(Value *Value, BasicBlock *Default, unsigned NumReserved) {
3396 assert(Value && Default && NumReserved);
3397 ReservedSpace = NumReserved;
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003398 NumOperands = 2;
Gabor Greiff6caff662008-05-10 08:32:32 +00003399 OperandList = allocHungoffUses(ReservedSpace);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003400
Gabor Greif2d3024d2008-05-26 21:33:52 +00003401 OperandList[0] = Value;
3402 OperandList[1] = Default;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003403}
3404
Chris Lattner2195fc42007-02-24 00:55:48 +00003405/// SwitchInst ctor - Create a new switch instruction, specifying a value to
3406/// switch on and a default destination. The number of additional cases can
3407/// be specified here to make memory allocation more efficient. This
3408/// constructor can also autoinsert before another instruction.
3409SwitchInst::SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
3410 Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +00003411 : TerminatorInst(Type::getVoidTy(Value->getContext()), Instruction::Switch,
Craig Topperc6207612014-04-09 06:08:46 +00003412 nullptr, 0, InsertBefore) {
Chris Lattnerbaf00152010-11-17 05:41:46 +00003413 init(Value, Default, 2+NumCases*2);
Chris Lattner2195fc42007-02-24 00:55:48 +00003414}
3415
3416/// SwitchInst ctor - Create a new switch instruction, specifying a value to
3417/// switch on and a default destination. The number of additional cases can
3418/// be specified here to make memory allocation more efficient. This
3419/// constructor also autoinserts at the end of the specified BasicBlock.
3420SwitchInst::SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
3421 BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +00003422 : TerminatorInst(Type::getVoidTy(Value->getContext()), Instruction::Switch,
Craig Topperc6207612014-04-09 06:08:46 +00003423 nullptr, 0, InsertAtEnd) {
Chris Lattnerbaf00152010-11-17 05:41:46 +00003424 init(Value, Default, 2+NumCases*2);
Chris Lattner2195fc42007-02-24 00:55:48 +00003425}
3426
Misha Brukmanb1c93172005-04-21 23:48:37 +00003427SwitchInst::SwitchInst(const SwitchInst &SI)
Craig Topperc6207612014-04-09 06:08:46 +00003428 : TerminatorInst(SI.getType(), Instruction::Switch, nullptr, 0) {
Chris Lattnerbaf00152010-11-17 05:41:46 +00003429 init(SI.getCondition(), SI.getDefaultDest(), SI.getNumOperands());
3430 NumOperands = SI.getNumOperands();
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003431 Use *OL = OperandList, *InOL = SI.OperandList;
Chris Lattnerbaf00152010-11-17 05:41:46 +00003432 for (unsigned i = 2, E = SI.getNumOperands(); i != E; i += 2) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00003433 OL[i] = InOL[i];
3434 OL[i+1] = InOL[i+1];
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003435 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003436 SubclassOptionalData = SI.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003437}
3438
Gordon Henriksen14a55692007-12-10 02:14:30 +00003439SwitchInst::~SwitchInst() {
Jay Foadbbb91f22011-01-16 15:30:52 +00003440 dropHungoffUses();
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003441}
3442
3443
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003444/// addCase - Add an entry to the switch instruction...
3445///
Chris Lattner47ac1872005-02-24 05:32:09 +00003446void SwitchInst::addCase(ConstantInt *OnVal, BasicBlock *Dest) {
Stepan Dyatkovskiy513aaa52012-02-01 07:49:51 +00003447 unsigned NewCaseIdx = getNumCases();
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003448 unsigned OpNo = NumOperands;
3449 if (OpNo+2 > ReservedSpace)
Jay Foade98f29d2011-04-01 08:00:58 +00003450 growOperands(); // Get more space!
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003451 // Initialize some new operands.
Chris Lattnerf711f8d2005-01-29 01:05:12 +00003452 assert(OpNo+1 < ReservedSpace && "Growing didn't work!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003453 NumOperands = OpNo+2;
Bob Wilsone4077362013-09-09 19:14:35 +00003454 CaseIt Case(this, NewCaseIdx);
3455 Case.setValue(OnVal);
Stepan Dyatkovskiy5b648af2012-03-08 07:06:20 +00003456 Case.setSuccessor(Dest);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003457}
3458
Stepan Dyatkovskiy513aaa52012-02-01 07:49:51 +00003459/// removeCase - This method removes the specified case and its successor
3460/// from the switch instruction.
Bob Wilsone4077362013-09-09 19:14:35 +00003461void SwitchInst::removeCase(CaseIt i) {
Stepan Dyatkovskiy5b648af2012-03-08 07:06:20 +00003462 unsigned idx = i.getCaseIndex();
3463
Stepan Dyatkovskiy513aaa52012-02-01 07:49:51 +00003464 assert(2 + idx*2 < getNumOperands() && "Case index out of range!!!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003465
3466 unsigned NumOps = getNumOperands();
3467 Use *OL = OperandList;
3468
Jay Foad14277722011-02-01 09:22:34 +00003469 // Overwrite this case with the end of the list.
Stepan Dyatkovskiy513aaa52012-02-01 07:49:51 +00003470 if (2 + (idx + 1) * 2 != NumOps) {
3471 OL[2 + idx * 2] = OL[NumOps - 2];
3472 OL[2 + idx * 2 + 1] = OL[NumOps - 1];
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003473 }
3474
3475 // Nuke the last value.
Craig Topperc6207612014-04-09 06:08:46 +00003476 OL[NumOps-2].set(nullptr);
3477 OL[NumOps-2+1].set(nullptr);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003478 NumOperands = NumOps-2;
3479}
3480
Jay Foade98f29d2011-04-01 08:00:58 +00003481/// growOperands - grow operands - This grows the operand list in response
3482/// to a push_back style of operation. This grows the number of ops by 3 times.
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003483///
Jay Foade98f29d2011-04-01 08:00:58 +00003484void SwitchInst::growOperands() {
Gabor Greiff6caff662008-05-10 08:32:32 +00003485 unsigned e = getNumOperands();
Jay Foade98f29d2011-04-01 08:00:58 +00003486 unsigned NumOps = e*3;
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003487
3488 ReservedSpace = NumOps;
Gabor Greiff6caff662008-05-10 08:32:32 +00003489 Use *NewOps = allocHungoffUses(NumOps);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003490 Use *OldOps = OperandList;
Gabor Greiff6caff662008-05-10 08:32:32 +00003491 for (unsigned i = 0; i != e; ++i) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00003492 NewOps[i] = OldOps[i];
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003493 }
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003494 OperandList = NewOps;
Jay Foadbbb91f22011-01-16 15:30:52 +00003495 Use::zap(OldOps, OldOps + e, true);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003496}
3497
3498
3499BasicBlock *SwitchInst::getSuccessorV(unsigned idx) const {
3500 return getSuccessor(idx);
3501}
3502unsigned SwitchInst::getNumSuccessorsV() const {
3503 return getNumSuccessors();
3504}
3505void SwitchInst::setSuccessorV(unsigned idx, BasicBlock *B) {
3506 setSuccessor(idx, B);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003507}
Chris Lattnerf22be932004-10-15 23:52:53 +00003508
Chris Lattner3ed871f2009-10-27 19:13:16 +00003509//===----------------------------------------------------------------------===//
Jay Foadbbb91f22011-01-16 15:30:52 +00003510// IndirectBrInst Implementation
Chris Lattner3ed871f2009-10-27 19:13:16 +00003511//===----------------------------------------------------------------------===//
3512
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003513void IndirectBrInst::init(Value *Address, unsigned NumDests) {
Duncan Sands19d0b472010-02-16 11:11:14 +00003514 assert(Address && Address->getType()->isPointerTy() &&
Chris Lattner6747b4c2009-10-29 05:53:32 +00003515 "Address of indirectbr must be a pointer");
Chris Lattner3ed871f2009-10-27 19:13:16 +00003516 ReservedSpace = 1+NumDests;
3517 NumOperands = 1;
3518 OperandList = allocHungoffUses(ReservedSpace);
3519
3520 OperandList[0] = Address;
3521}
3522
3523
Jay Foade98f29d2011-04-01 08:00:58 +00003524/// growOperands - grow operands - This grows the operand list in response
3525/// to a push_back style of operation. This grows the number of ops by 2 times.
Chris Lattner3ed871f2009-10-27 19:13:16 +00003526///
Jay Foade98f29d2011-04-01 08:00:58 +00003527void IndirectBrInst::growOperands() {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003528 unsigned e = getNumOperands();
Jay Foade98f29d2011-04-01 08:00:58 +00003529 unsigned NumOps = e*2;
Chris Lattner3ed871f2009-10-27 19:13:16 +00003530
3531 ReservedSpace = NumOps;
3532 Use *NewOps = allocHungoffUses(NumOps);
3533 Use *OldOps = OperandList;
3534 for (unsigned i = 0; i != e; ++i)
3535 NewOps[i] = OldOps[i];
3536 OperandList = NewOps;
Jay Foadbbb91f22011-01-16 15:30:52 +00003537 Use::zap(OldOps, OldOps + e, true);
Chris Lattner3ed871f2009-10-27 19:13:16 +00003538}
3539
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003540IndirectBrInst::IndirectBrInst(Value *Address, unsigned NumCases,
3541 Instruction *InsertBefore)
3542: TerminatorInst(Type::getVoidTy(Address->getContext()),Instruction::IndirectBr,
Craig Topperc6207612014-04-09 06:08:46 +00003543 nullptr, 0, InsertBefore) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003544 init(Address, NumCases);
3545}
3546
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003547IndirectBrInst::IndirectBrInst(Value *Address, unsigned NumCases,
3548 BasicBlock *InsertAtEnd)
3549: TerminatorInst(Type::getVoidTy(Address->getContext()),Instruction::IndirectBr,
Craig Topperc6207612014-04-09 06:08:46 +00003550 nullptr, 0, InsertAtEnd) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003551 init(Address, NumCases);
3552}
3553
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003554IndirectBrInst::IndirectBrInst(const IndirectBrInst &IBI)
3555 : TerminatorInst(Type::getVoidTy(IBI.getContext()), Instruction::IndirectBr,
Chris Lattner3ed871f2009-10-27 19:13:16 +00003556 allocHungoffUses(IBI.getNumOperands()),
3557 IBI.getNumOperands()) {
3558 Use *OL = OperandList, *InOL = IBI.OperandList;
3559 for (unsigned i = 0, E = IBI.getNumOperands(); i != E; ++i)
3560 OL[i] = InOL[i];
3561 SubclassOptionalData = IBI.SubclassOptionalData;
3562}
3563
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003564IndirectBrInst::~IndirectBrInst() {
Jay Foadbbb91f22011-01-16 15:30:52 +00003565 dropHungoffUses();
Chris Lattner3ed871f2009-10-27 19:13:16 +00003566}
3567
3568/// addDestination - Add a destination.
3569///
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003570void IndirectBrInst::addDestination(BasicBlock *DestBB) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003571 unsigned OpNo = NumOperands;
3572 if (OpNo+1 > ReservedSpace)
Jay Foade98f29d2011-04-01 08:00:58 +00003573 growOperands(); // Get more space!
Chris Lattner3ed871f2009-10-27 19:13:16 +00003574 // Initialize some new operands.
3575 assert(OpNo < ReservedSpace && "Growing didn't work!");
3576 NumOperands = OpNo+1;
3577 OperandList[OpNo] = DestBB;
3578}
3579
3580/// removeDestination - This method removes the specified successor from the
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003581/// indirectbr instruction.
3582void IndirectBrInst::removeDestination(unsigned idx) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003583 assert(idx < getNumOperands()-1 && "Successor index out of range!");
3584
3585 unsigned NumOps = getNumOperands();
3586 Use *OL = OperandList;
3587
3588 // Replace this value with the last one.
3589 OL[idx+1] = OL[NumOps-1];
3590
3591 // Nuke the last value.
Craig Topperc6207612014-04-09 06:08:46 +00003592 OL[NumOps-1].set(nullptr);
Chris Lattner3ed871f2009-10-27 19:13:16 +00003593 NumOperands = NumOps-1;
3594}
3595
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003596BasicBlock *IndirectBrInst::getSuccessorV(unsigned idx) const {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003597 return getSuccessor(idx);
3598}
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003599unsigned IndirectBrInst::getNumSuccessorsV() const {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003600 return getNumSuccessors();
3601}
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003602void IndirectBrInst::setSuccessorV(unsigned idx, BasicBlock *B) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003603 setSuccessor(idx, B);
3604}
3605
3606//===----------------------------------------------------------------------===//
Devang Patel11cf3f42009-10-27 22:16:29 +00003607// clone_impl() implementations
Chris Lattner3ed871f2009-10-27 19:13:16 +00003608//===----------------------------------------------------------------------===//
3609
Chris Lattnerf22be932004-10-15 23:52:53 +00003610// Define these methods here so vtables don't get emitted into every translation
3611// unit that uses these classes.
3612
Devang Patel11cf3f42009-10-27 22:16:29 +00003613GetElementPtrInst *GetElementPtrInst::clone_impl() const {
3614 return new (getNumOperands()) GetElementPtrInst(*this);
Chris Lattnerf22be932004-10-15 23:52:53 +00003615}
3616
Devang Patel11cf3f42009-10-27 22:16:29 +00003617BinaryOperator *BinaryOperator::clone_impl() const {
3618 return Create(getOpcode(), Op<0>(), Op<1>());
Chris Lattnerf22be932004-10-15 23:52:53 +00003619}
3620
Devang Patel11cf3f42009-10-27 22:16:29 +00003621FCmpInst* FCmpInst::clone_impl() const {
3622 return new FCmpInst(getPredicate(), Op<0>(), Op<1>());
Reid Spencerd9436b62006-11-20 01:22:35 +00003623}
3624
Devang Patel11cf3f42009-10-27 22:16:29 +00003625ICmpInst* ICmpInst::clone_impl() const {
3626 return new ICmpInst(getPredicate(), Op<0>(), Op<1>());
Dan Gohman0752bff2008-05-23 00:36:11 +00003627}
3628
Devang Patel11cf3f42009-10-27 22:16:29 +00003629ExtractValueInst *ExtractValueInst::clone_impl() const {
3630 return new ExtractValueInst(*this);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003631}
3632
Devang Patel11cf3f42009-10-27 22:16:29 +00003633InsertValueInst *InsertValueInst::clone_impl() const {
3634 return new InsertValueInst(*this);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003635}
3636
Devang Patel11cf3f42009-10-27 22:16:29 +00003637AllocaInst *AllocaInst::clone_impl() const {
David Majnemer6b3244c2014-04-30 16:12:21 +00003638 AllocaInst *Result = new AllocaInst(getAllocatedType(),
3639 (Value *)getOperand(0), getAlignment());
3640 Result->setUsedWithInAlloca(isUsedWithInAlloca());
3641 return Result;
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003642}
3643
Devang Patel11cf3f42009-10-27 22:16:29 +00003644LoadInst *LoadInst::clone_impl() const {
Eli Friedman59b66882011-08-09 23:02:53 +00003645 return new LoadInst(getOperand(0), Twine(), isVolatile(),
3646 getAlignment(), getOrdering(), getSynchScope());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003647}
3648
Devang Patel11cf3f42009-10-27 22:16:29 +00003649StoreInst *StoreInst::clone_impl() const {
Eli Friedmancad9f2a2011-08-10 17:39:11 +00003650 return new StoreInst(getOperand(0), getOperand(1), isVolatile(),
Eli Friedman59b66882011-08-09 23:02:53 +00003651 getAlignment(), getOrdering(), getSynchScope());
3652
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003653}
3654
Eli Friedmanc9a551e2011-07-28 21:48:00 +00003655AtomicCmpXchgInst *AtomicCmpXchgInst::clone_impl() const {
3656 AtomicCmpXchgInst *Result =
3657 new AtomicCmpXchgInst(getOperand(0), getOperand(1), getOperand(2),
Tim Northovere94a5182014-03-11 10:48:52 +00003658 getSuccessOrdering(), getFailureOrdering(),
3659 getSynchScope());
Eli Friedmanc9a551e2011-07-28 21:48:00 +00003660 Result->setVolatile(isVolatile());
Tim Northover420a2162014-06-13 14:24:07 +00003661 Result->setWeak(isWeak());
Eli Friedmanc9a551e2011-07-28 21:48:00 +00003662 return Result;
3663}
3664
3665AtomicRMWInst *AtomicRMWInst::clone_impl() const {
3666 AtomicRMWInst *Result =
3667 new AtomicRMWInst(getOperation(),getOperand(0), getOperand(1),
3668 getOrdering(), getSynchScope());
3669 Result->setVolatile(isVolatile());
3670 return Result;
3671}
3672
Eli Friedmanfee02c62011-07-25 23:16:38 +00003673FenceInst *FenceInst::clone_impl() const {
3674 return new FenceInst(getContext(), getOrdering(), getSynchScope());
3675}
3676
Devang Patel11cf3f42009-10-27 22:16:29 +00003677TruncInst *TruncInst::clone_impl() const {
3678 return new TruncInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003679}
3680
Devang Patel11cf3f42009-10-27 22:16:29 +00003681ZExtInst *ZExtInst::clone_impl() const {
3682 return new ZExtInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003683}
3684
Devang Patel11cf3f42009-10-27 22:16:29 +00003685SExtInst *SExtInst::clone_impl() const {
3686 return new SExtInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003687}
3688
Devang Patel11cf3f42009-10-27 22:16:29 +00003689FPTruncInst *FPTruncInst::clone_impl() const {
3690 return new FPTruncInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003691}
3692
Devang Patel11cf3f42009-10-27 22:16:29 +00003693FPExtInst *FPExtInst::clone_impl() const {
3694 return new FPExtInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003695}
3696
Devang Patel11cf3f42009-10-27 22:16:29 +00003697UIToFPInst *UIToFPInst::clone_impl() const {
3698 return new UIToFPInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003699}
3700
Devang Patel11cf3f42009-10-27 22:16:29 +00003701SIToFPInst *SIToFPInst::clone_impl() const {
3702 return new SIToFPInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003703}
3704
Devang Patel11cf3f42009-10-27 22:16:29 +00003705FPToUIInst *FPToUIInst::clone_impl() const {
3706 return new FPToUIInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003707}
3708
Devang Patel11cf3f42009-10-27 22:16:29 +00003709FPToSIInst *FPToSIInst::clone_impl() const {
3710 return new FPToSIInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003711}
3712
Devang Patel11cf3f42009-10-27 22:16:29 +00003713PtrToIntInst *PtrToIntInst::clone_impl() const {
3714 return new PtrToIntInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003715}
3716
Devang Patel11cf3f42009-10-27 22:16:29 +00003717IntToPtrInst *IntToPtrInst::clone_impl() const {
3718 return new IntToPtrInst(getOperand(0), getType());
Gabor Greif697e94c2008-05-15 10:04:30 +00003719}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003720
Devang Patel11cf3f42009-10-27 22:16:29 +00003721BitCastInst *BitCastInst::clone_impl() const {
3722 return new BitCastInst(getOperand(0), getType());
Gabor Greif697e94c2008-05-15 10:04:30 +00003723}
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003724
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00003725AddrSpaceCastInst *AddrSpaceCastInst::clone_impl() const {
3726 return new AddrSpaceCastInst(getOperand(0), getType());
3727}
3728
Devang Patel11cf3f42009-10-27 22:16:29 +00003729CallInst *CallInst::clone_impl() const {
3730 return new(getNumOperands()) CallInst(*this);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003731}
3732
Devang Patel11cf3f42009-10-27 22:16:29 +00003733SelectInst *SelectInst::clone_impl() const {
3734 return SelectInst::Create(getOperand(0), getOperand(1), getOperand(2));
Chris Lattnerbbe0a422006-04-08 01:18:18 +00003735}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003736
Devang Patel11cf3f42009-10-27 22:16:29 +00003737VAArgInst *VAArgInst::clone_impl() const {
3738 return new VAArgInst(getOperand(0), getType());
Chris Lattnerbbe0a422006-04-08 01:18:18 +00003739}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003740
Devang Patel11cf3f42009-10-27 22:16:29 +00003741ExtractElementInst *ExtractElementInst::clone_impl() const {
3742 return ExtractElementInst::Create(getOperand(0), getOperand(1));
Chris Lattnerbbe0a422006-04-08 01:18:18 +00003743}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003744
Devang Patel11cf3f42009-10-27 22:16:29 +00003745InsertElementInst *InsertElementInst::clone_impl() const {
Chris Lattner1dcb6542012-01-25 23:49:49 +00003746 return InsertElementInst::Create(getOperand(0), getOperand(1), getOperand(2));
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003747}
3748
Devang Patel11cf3f42009-10-27 22:16:29 +00003749ShuffleVectorInst *ShuffleVectorInst::clone_impl() const {
Chris Lattner1dcb6542012-01-25 23:49:49 +00003750 return new ShuffleVectorInst(getOperand(0), getOperand(1), getOperand(2));
Gabor Greif697e94c2008-05-15 10:04:30 +00003751}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003752
Devang Patel11cf3f42009-10-27 22:16:29 +00003753PHINode *PHINode::clone_impl() const {
3754 return new PHINode(*this);
3755}
3756
Bill Wendlingfae14752011-08-12 20:24:12 +00003757LandingPadInst *LandingPadInst::clone_impl() const {
3758 return new LandingPadInst(*this);
3759}
3760
Devang Patel11cf3f42009-10-27 22:16:29 +00003761ReturnInst *ReturnInst::clone_impl() const {
3762 return new(getNumOperands()) ReturnInst(*this);
3763}
3764
3765BranchInst *BranchInst::clone_impl() const {
Jay Foadd81f3c92011-01-07 20:29:02 +00003766 return new(getNumOperands()) BranchInst(*this);
Gabor Greif697e94c2008-05-15 10:04:30 +00003767}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003768
Devang Patel11cf3f42009-10-27 22:16:29 +00003769SwitchInst *SwitchInst::clone_impl() const {
3770 return new SwitchInst(*this);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003771}
3772
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003773IndirectBrInst *IndirectBrInst::clone_impl() const {
3774 return new IndirectBrInst(*this);
Chris Lattner3ed871f2009-10-27 19:13:16 +00003775}
3776
3777
Devang Patel11cf3f42009-10-27 22:16:29 +00003778InvokeInst *InvokeInst::clone_impl() const {
3779 return new(getNumOperands()) InvokeInst(*this);
Gabor Greif697e94c2008-05-15 10:04:30 +00003780}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003781
Bill Wendlingf891bf82011-07-31 06:30:59 +00003782ResumeInst *ResumeInst::clone_impl() const {
3783 return new(1) ResumeInst(*this);
3784}
3785
Devang Patel11cf3f42009-10-27 22:16:29 +00003786UnreachableInst *UnreachableInst::clone_impl() const {
Nick Lewycky42fb7452009-09-27 07:38:41 +00003787 LLVMContext &Context = getContext();
Devang Patel11cf3f42009-10-27 22:16:29 +00003788 return new UnreachableInst(Context);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003789}