blob: 8a0a465a96bbc77b8aefa641c985bc8fef7b624f [file] [log] [blame]
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00001//===-- Instructions.cpp - Implement the LLVM instructions ----------------===//
Misha Brukmanfd939082005-04-21 23:48:37 +00002//
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-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 Brukmanfd939082005-04-21 23:48:37 +00007//
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00008//===----------------------------------------------------------------------===//
9//
Chris Lattnerb12261a2005-01-29 00:35:16 +000010// This file implements all of the non-inline methods for the LLVM instruction
11// classes.
Alkis Evlogimenos91366a82004-07-29 12:33:25 +000012//
13//===----------------------------------------------------------------------===//
14
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000015#include "llvm/IR/Instructions.h"
Devang Patel6c6c0162009-09-23 18:32:25 +000016#include "LLVMContextImpl.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000017#include "llvm/IR/Constants.h"
18#include "llvm/IR/DataLayout.h"
19#include "llvm/IR/DerivedTypes.h"
20#include "llvm/IR/Function.h"
21#include "llvm/IR/Module.h"
22#include "llvm/IR/Operator.h"
Alkis Evlogimenos91366a82004-07-29 12:33:25 +000023#include "llvm/Support/CallSite.h"
Reid Spencer3da43842007-02-28 22:00:54 +000024#include "llvm/Support/ConstantRange.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000025#include "llvm/Support/ErrorHandling.h"
Christopher Lamb43c7f372007-04-22 19:24:39 +000026#include "llvm/Support/MathExtras.h"
Alkis Evlogimenos91366a82004-07-29 12:33:25 +000027using namespace llvm;
28
Chris Lattner50ee9dd2008-01-02 23:42:30 +000029//===----------------------------------------------------------------------===//
30// CallSite Class
31//===----------------------------------------------------------------------===//
32
Gabor Greifc9f75002010-03-24 13:21:49 +000033User::op_iterator CallSite::getCallee() const {
34 Instruction *II(getInstruction());
35 return isCall()
Gabor Greif3ecf3552010-08-05 21:25:49 +000036 ? cast<CallInst>(II)->op_end() - 1 // Skip Callee
Gabor Greifa6aac4c2010-07-16 09:38:02 +000037 : cast<InvokeInst>(II)->op_end() - 3; // Skip BB, BB, Callee
Gabor Greifc9f75002010-03-24 13:21:49 +000038}
39
Gordon Henriksenafba8fe2007-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 Greifefe65362008-05-10 08:32:32 +000048//===----------------------------------------------------------------------===//
49// UnaryInstruction Class
50//===----------------------------------------------------------------------===//
51
Gordon Henriksenafba8fe2007-12-10 02:14:30 +000052// Out of line virtual method, so the vtable, etc has a home.
53UnaryInstruction::~UnaryInstruction() {
54}
55
Chris Lattnerb12261a2005-01-29 00:35:16 +000056//===----------------------------------------------------------------------===//
Chris Lattnerb76ec322008-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 Lattnerdb125cf2011-07-18 04:54:35 +000066 if (VectorType *VT = dyn_cast<VectorType>(Op0->getType())) {
Chris Lattnerb76ec322008-12-29 00:12:50 +000067 // Vector select.
Owen Anderson1d0be152009-08-13 21:58:54 +000068 if (VT->getElementType() != Type::getInt1Ty(Op0->getContext()))
Chris Lattnerb76ec322008-12-29 00:12:50 +000069 return "vector select condition element type must be i1";
Chris Lattnerdb125cf2011-07-18 04:54:35 +000070 VectorType *ET = dyn_cast<VectorType>(Op1->getType());
Chris Lattnerb76ec322008-12-29 00:12:50 +000071 if (ET == 0)
72 return "selected values for vector select must be vectors";
73 if (ET->getNumElements() != VT->getNumElements())
74 return "vector select requires selected vectors to have "
75 "the same vector length as select condition";
Owen Anderson1d0be152009-08-13 21:58:54 +000076 } else if (Op0->getType() != Type::getInt1Ty(Op0->getContext())) {
Chris Lattnerb76ec322008-12-29 00:12:50 +000077 return "select condition must be i1 or <n x i1>";
78 }
79 return 0;
80}
81
82
83//===----------------------------------------------------------------------===//
Chris Lattnerb12261a2005-01-29 00:35:16 +000084// PHINode Class
85//===----------------------------------------------------------------------===//
86
87PHINode::PHINode(const PHINode &PN)
88 : Instruction(PN.getType(), Instruction::PHI,
Gabor Greifefe65362008-05-10 08:32:32 +000089 allocHungoffUses(PN.getNumOperands()), PN.getNumOperands()),
Chris Lattnerb12261a2005-01-29 00:35:16 +000090 ReservedSpace(PN.getNumOperands()) {
Jay Foad95c3e482011-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 Gohman58cfa3b2009-08-25 22:11:20 +000093 SubclassOptionalData = PN.SubclassOptionalData;
Chris Lattnerb12261a2005-01-29 00:35:16 +000094}
95
Gordon Henriksenafba8fe2007-12-10 02:14:30 +000096PHINode::~PHINode() {
Jay Foad1ed26ac2011-01-16 15:30:52 +000097 dropHungoffUses();
Chris Lattnerb12261a2005-01-29 00:35:16 +000098}
99
Jay Foad95c3e482011-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 Lattnerb12261a2005-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 Foad95c3e482011-06-23 09:09:15 +0000115 Value *Removed = getIncomingValue(Idx);
Chris Lattnerb12261a2005-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 Foad95c3e482011-06-23 09:09:15 +0000120 // clients might not expect this to happen. The code as it is thrashes the
Chris Lattnerb12261a2005-01-29 00:35:16 +0000121 // use/def lists, which is kinda lame.
Jay Foad95c3e482011-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 Lattnerb12261a2005-01-29 00:35:16 +0000124
125 // Nuke the last value.
Jay Foad95c3e482011-06-23 09:09:15 +0000126 Op<-1>().set(0);
127 --NumOperands;
Chris Lattnerb12261a2005-01-29 00:35:16 +0000128
129 // If the PHI node is dead, because it has zero entries, nuke it now.
Jay Foad95c3e482011-06-23 09:09:15 +0000130 if (getNumOperands() == 0 && DeletePHIIfEmpty) {
Chris Lattnerb12261a2005-01-29 00:35:16 +0000131 // If anyone is using this PHI, make them use a dummy value instead...
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000132 replaceAllUsesWith(UndefValue::get(getType()));
Chris Lattnerb12261a2005-01-29 00:35:16 +0000133 eraseFromParent();
134 }
135 return Removed;
136}
137
Jay Foad8891ed72011-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 Lattnerb12261a2005-01-29 00:35:16 +0000141///
Jay Foad8891ed72011-04-01 08:00:58 +0000142void PHINode::growOperands() {
Gabor Greifefe65362008-05-10 08:32:32 +0000143 unsigned e = getNumOperands();
Jay Foad95c3e482011-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 Foad72f5f312011-06-20 14:38:01 +0000149
Chris Lattnerb12261a2005-01-29 00:35:16 +0000150 ReservedSpace = NumOps;
Jay Foad95c3e482011-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 Foad1ed26ac2011-01-16 15:30:52 +0000156 Use::zap(OldOps, OldOps + e, true);
Chris Lattnerb12261a2005-01-29 00:35:16 +0000157}
158
Nate Begemana83ba0f2005-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 Sandsff103412010-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 Lopes44d5c062012-07-03 17:10:28 +0000165 if (getIncomingValue(i) != ConstantValue && getIncomingValue(i) != this) {
166 if (ConstantValue != this)
167 return 0; // Incoming values not all the same.
168 // The case where the first value is this PHI.
169 ConstantValue = getIncomingValue(i);
170 }
Nuno Lopes0fd518b2012-07-03 21:15:40 +0000171 if (ConstantValue == this)
172 return UndefValue::get(getType());
Duncan Sandsff103412010-11-17 04:30:22 +0000173 return ConstantValue;
Nate Begemana83ba0f2005-08-04 23:24:19 +0000174}
175
Bill Wendlinge6e88262011-08-12 20:24:12 +0000176//===----------------------------------------------------------------------===//
177// LandingPadInst Implementation
178//===----------------------------------------------------------------------===//
179
180LandingPadInst::LandingPadInst(Type *RetTy, Value *PersonalityFn,
181 unsigned NumReservedValues, const Twine &NameStr,
182 Instruction *InsertBefore)
183 : Instruction(RetTy, Instruction::LandingPad, 0, 0, InsertBefore) {
184 init(PersonalityFn, 1 + NumReservedValues, NameStr);
185}
186
187LandingPadInst::LandingPadInst(Type *RetTy, Value *PersonalityFn,
188 unsigned NumReservedValues, const Twine &NameStr,
189 BasicBlock *InsertAtEnd)
190 : Instruction(RetTy, Instruction::LandingPad, 0, 0, InsertAtEnd) {
191 init(PersonalityFn, 1 + NumReservedValues, NameStr);
192}
193
194LandingPadInst::LandingPadInst(const LandingPadInst &LP)
195 : Instruction(LP.getType(), Instruction::LandingPad,
196 allocHungoffUses(LP.getNumOperands()), LP.getNumOperands()),
197 ReservedSpace(LP.getNumOperands()) {
198 Use *OL = OperandList, *InOL = LP.OperandList;
199 for (unsigned I = 0, E = ReservedSpace; I != E; ++I)
200 OL[I] = InOL[I];
201
202 setCleanup(LP.isCleanup());
203}
204
205LandingPadInst::~LandingPadInst() {
206 dropHungoffUses();
207}
208
209LandingPadInst *LandingPadInst::Create(Type *RetTy, Value *PersonalityFn,
210 unsigned NumReservedClauses,
211 const Twine &NameStr,
212 Instruction *InsertBefore) {
213 return new LandingPadInst(RetTy, PersonalityFn, NumReservedClauses, NameStr,
214 InsertBefore);
215}
216
217LandingPadInst *LandingPadInst::Create(Type *RetTy, Value *PersonalityFn,
218 unsigned NumReservedClauses,
219 const Twine &NameStr,
220 BasicBlock *InsertAtEnd) {
221 return new LandingPadInst(RetTy, PersonalityFn, NumReservedClauses, NameStr,
222 InsertAtEnd);
223}
224
225void LandingPadInst::init(Value *PersFn, unsigned NumReservedValues,
226 const Twine &NameStr) {
227 ReservedSpace = NumReservedValues;
228 NumOperands = 1;
229 OperandList = allocHungoffUses(ReservedSpace);
230 OperandList[0] = PersFn;
231 setName(NameStr);
232 setCleanup(false);
233}
234
235/// growOperands - grow operands - This grows the operand list in response to a
236/// push_back style of operation. This grows the number of ops by 2 times.
237void LandingPadInst::growOperands(unsigned Size) {
238 unsigned e = getNumOperands();
239 if (ReservedSpace >= e + Size) return;
240 ReservedSpace = (e + Size / 2) * 2;
241
242 Use *NewOps = allocHungoffUses(ReservedSpace);
243 Use *OldOps = OperandList;
244 for (unsigned i = 0; i != e; ++i)
245 NewOps[i] = OldOps[i];
246
247 OperandList = NewOps;
248 Use::zap(OldOps, OldOps + e, true);
249}
250
251void LandingPadInst::addClause(Value *Val) {
252 unsigned OpNo = getNumOperands();
253 growOperands(1);
254 assert(OpNo < ReservedSpace && "Growing didn't work!");
255 ++NumOperands;
256 OperandList[OpNo] = Val;
257}
Chris Lattnerb12261a2005-01-29 00:35:16 +0000258
259//===----------------------------------------------------------------------===//
Alkis Evlogimenos91366a82004-07-29 12:33:25 +0000260// CallInst Implementation
261//===----------------------------------------------------------------------===//
262
Gordon Henriksenafba8fe2007-12-10 02:14:30 +0000263CallInst::~CallInst() {
Chris Lattnerb12261a2005-01-29 00:35:16 +0000264}
265
Jay Foada3efbb12011-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 Greifa6aac4c2010-07-16 09:38:02 +0000268 Op<-1>() = Func;
Alkis Evlogimenos91366a82004-07-29 12:33:25 +0000269
Jay Foada3efbb12011-07-15 08:37:34 +0000270#ifndef NDEBUG
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000271 FunctionType *FTy =
Alkis Evlogimenos91366a82004-07-29 12:33:25 +0000272 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
273
Jay Foada3efbb12011-07-15 08:37:34 +0000274 assert((Args.size() == FTy->getNumParams() ||
275 (FTy->isVarArg() && Args.size() > FTy->getNumParams())) &&
Chris Lattner9b4c96d2006-05-03 00:48:22 +0000276 "Calling a function with bad signature!");
Jay Foada3efbb12011-07-15 08:37:34 +0000277
278 for (unsigned i = 0; i != Args.size(); ++i)
Chris Lattner9b4c96d2006-05-03 00:48:22 +0000279 assert((i >= FTy->getNumParams() ||
Jay Foada3efbb12011-07-15 08:37:34 +0000280 FTy->getParamType(i) == Args[i]->getType()) &&
Chris Lattner9b4c96d2006-05-03 00:48:22 +0000281 "Calling a function with a bad signature!");
Jay Foada3efbb12011-07-15 08:37:34 +0000282#endif
283
284 std::copy(Args.begin(), Args.end(), op_begin());
285 setName(NameStr);
Alkis Evlogimenos91366a82004-07-29 12:33:25 +0000286}
287
Jay Foada3efbb12011-07-15 08:37:34 +0000288void CallInst::init(Value *Func, const Twine &NameStr) {
Gabor Greifefe65362008-05-10 08:32:32 +0000289 assert(NumOperands == 1 && "NumOperands not set up?");
Gabor Greifa6aac4c2010-07-16 09:38:02 +0000290 Op<-1>() = Func;
Misha Brukmanfd939082005-04-21 23:48:37 +0000291
Jay Foada3efbb12011-07-15 08:37:34 +0000292#ifndef NDEBUG
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000293 FunctionType *FTy =
Alkis Evlogimenos91366a82004-07-29 12:33:25 +0000294 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
295
Chris Lattner2e21fce2007-02-01 04:59:37 +0000296 assert(FTy->getNumParams() == 0 && "Calling a function with bad signature");
Jay Foada3efbb12011-07-15 08:37:34 +0000297#endif
298
299 setName(NameStr);
Alkis Evlogimenos91366a82004-07-29 12:33:25 +0000300}
301
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +0000302CallInst::CallInst(Value *Func, const Twine &Name,
Alkis Evlogimenos91366a82004-07-29 12:33:25 +0000303 Instruction *InsertBefore)
304 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
305 ->getElementType())->getReturnType(),
Gabor Greifefe65362008-05-10 08:32:32 +0000306 Instruction::Call,
307 OperandTraits<CallInst>::op_end(this) - 1,
308 1, InsertBefore) {
Jay Foada3efbb12011-07-15 08:37:34 +0000309 init(Func, Name);
Alkis Evlogimenos91366a82004-07-29 12:33:25 +0000310}
311
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +0000312CallInst::CallInst(Value *Func, const Twine &Name,
Alkis Evlogimenos91366a82004-07-29 12:33:25 +0000313 BasicBlock *InsertAtEnd)
314 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
315 ->getElementType())->getReturnType(),
Gabor Greifefe65362008-05-10 08:32:32 +0000316 Instruction::Call,
317 OperandTraits<CallInst>::op_end(this) - 1,
318 1, InsertAtEnd) {
Jay Foada3efbb12011-07-15 08:37:34 +0000319 init(Func, Name);
Alkis Evlogimenos91366a82004-07-29 12:33:25 +0000320}
321
Misha Brukmanfd939082005-04-21 23:48:37 +0000322CallInst::CallInst(const CallInst &CI)
Gabor Greifefe65362008-05-10 08:32:32 +0000323 : Instruction(CI.getType(), Instruction::Call,
324 OperandTraits<CallInst>::op_end(this) - CI.getNumOperands(),
Chris Lattner58d74912008-03-12 17:45:29 +0000325 CI.getNumOperands()) {
Devang Patel05988662008-09-25 21:00:45 +0000326 setAttributes(CI.getAttributes());
Chris Lattnercafe9bb2009-12-29 02:14:09 +0000327 setTailCall(CI.isTailCall());
328 setCallingConv(CI.getCallingConv());
329
Jay Foada3efbb12011-07-15 08:37:34 +0000330 std::copy(CI.op_begin(), CI.op_end(), op_begin());
Dan Gohman58cfa3b2009-08-25 22:11:20 +0000331 SubclassOptionalData = CI.SubclassOptionalData;
Alkis Evlogimenos91366a82004-07-29 12:33:25 +0000332}
333
Bill Wendling034b94b2012-12-19 07:18:57 +0000334void CallInst::addAttribute(unsigned i, Attribute attr) {
Bill Wendling99faa3b2012-12-07 23:16:57 +0000335 AttributeSet PAL = getAttributes();
Bill Wendlingdefaca02013-01-22 21:15:51 +0000336 AttrBuilder B(attr);
Bill Wendling8246df62013-01-23 00:45:55 +0000337 LLVMContext &Context = getContext();
338 PAL = PAL.addAttributes(Context, i,
339 AttributeSet::get(Context, i, B));
Devang Patel05988662008-09-25 21:00:45 +0000340 setAttributes(PAL);
Eric Christopher0bf7b412008-05-16 20:39:43 +0000341}
342
Bill Wendling034b94b2012-12-19 07:18:57 +0000343void CallInst::removeAttribute(unsigned i, Attribute attr) {
Bill Wendling99faa3b2012-12-07 23:16:57 +0000344 AttributeSet PAL = getAttributes();
Bill Wendling8246df62013-01-23 00:45:55 +0000345 AttrBuilder B(attr);
346 LLVMContext &Context = getContext();
347 PAL = PAL.removeAttributes(Context, i,
348 AttributeSet::get(Context, i, B));
Devang Patel05988662008-09-25 21:00:45 +0000349 setAttributes(PAL);
Duncan Sands2e033f32008-07-08 08:38:44 +0000350}
351
Bill Wendling629fb822012-12-22 00:37:52 +0000352bool CallInst::hasFnAttr(Attribute::AttrKind A) const {
Bill Wendling94e94b32012-12-30 13:50:49 +0000353 if (AttributeList.hasAttribute(AttributeSet::FunctionIndex, A))
Bill Wendling060f20a2012-10-09 00:28:54 +0000354 return true;
355 if (const Function *F = getCalledFunction())
Bill Wendling39cd0c82012-12-30 12:45:13 +0000356 return F->getAttributes().hasAttribute(AttributeSet::FunctionIndex, A);
Bill Wendling060f20a2012-10-09 00:28:54 +0000357 return false;
358}
359
Bill Wendling629fb822012-12-22 00:37:52 +0000360bool CallInst::paramHasAttr(unsigned i, Attribute::AttrKind A) const {
Bill Wendling94e94b32012-12-30 13:50:49 +0000361 if (AttributeList.hasAttribute(i, A))
Bill Wendling847d1652012-10-03 17:54:26 +0000362 return true;
363 if (const Function *F = getCalledFunction())
Bill Wendling39cd0c82012-12-30 12:45:13 +0000364 return F->getAttributes().hasAttribute(i, A);
Bill Wendling365b9e02012-10-04 07:18:12 +0000365 return false;
366}
367
Evan Chengfabcb912009-09-10 04:36:43 +0000368/// IsConstantOne - Return true only if val is constant int 1
369static bool IsConstantOne(Value *val) {
370 assert(val && "IsConstantOne does not work with NULL val");
371 return isa<ConstantInt>(val) && cast<ConstantInt>(val)->isOne();
372}
373
Nick Lewycky3fc35c52009-10-17 23:52:26 +0000374static Instruction *createMalloc(Instruction *InsertBefore,
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000375 BasicBlock *InsertAtEnd, Type *IntPtrTy,
376 Type *AllocTy, Value *AllocSize,
Victor Hernandez9d0b7042009-11-07 00:16:28 +0000377 Value *ArraySize, Function *MallocF,
378 const Twine &Name) {
Benjamin Kramerb84c5ae2009-09-10 11:31:39 +0000379 assert(((!InsertBefore && InsertAtEnd) || (InsertBefore && !InsertAtEnd)) &&
Victor Hernandez88d98392009-09-18 19:20:02 +0000380 "createMalloc needs either InsertBefore or InsertAtEnd");
381
382 // malloc(type) becomes:
383 // bitcast (i8* malloc(typeSize)) to type*
384 // malloc(type, arraySize) becomes:
385 // bitcast (i8 *malloc(typeSize*arraySize)) to type*
Victor Hernandez9d0b7042009-11-07 00:16:28 +0000386 if (!ArraySize)
387 ArraySize = ConstantInt::get(IntPtrTy, 1);
388 else if (ArraySize->getType() != IntPtrTy) {
389 if (InsertBefore)
Victor Hernandez4d81d972009-11-07 00:36:50 +0000390 ArraySize = CastInst::CreateIntegerCast(ArraySize, IntPtrTy, false,
391 "", InsertBefore);
Victor Hernandez9d0b7042009-11-07 00:16:28 +0000392 else
Victor Hernandez4d81d972009-11-07 00:36:50 +0000393 ArraySize = CastInst::CreateIntegerCast(ArraySize, IntPtrTy, false,
394 "", InsertAtEnd);
Victor Hernandez9d0b7042009-11-07 00:16:28 +0000395 }
Evan Chengfabcb912009-09-10 04:36:43 +0000396
Benjamin Kramerb84c5ae2009-09-10 11:31:39 +0000397 if (!IsConstantOne(ArraySize)) {
Evan Chengfabcb912009-09-10 04:36:43 +0000398 if (IsConstantOne(AllocSize)) {
399 AllocSize = ArraySize; // Operand * 1 = Operand
400 } else if (Constant *CO = dyn_cast<Constant>(ArraySize)) {
401 Constant *Scale = ConstantExpr::getIntegerCast(CO, IntPtrTy,
402 false /*ZExt*/);
403 // Malloc arg is constant product of type size and array size
404 AllocSize = ConstantExpr::getMul(Scale, cast<Constant>(AllocSize));
405 } else {
Evan Chengfabcb912009-09-10 04:36:43 +0000406 // Multiply type size by the array size...
407 if (InsertBefore)
Victor Hernandez88d98392009-09-18 19:20:02 +0000408 AllocSize = BinaryOperator::CreateMul(ArraySize, AllocSize,
409 "mallocsize", InsertBefore);
Evan Chengfabcb912009-09-10 04:36:43 +0000410 else
Victor Hernandez88d98392009-09-18 19:20:02 +0000411 AllocSize = BinaryOperator::CreateMul(ArraySize, AllocSize,
412 "mallocsize", InsertAtEnd);
Evan Chengfabcb912009-09-10 04:36:43 +0000413 }
Benjamin Kramerb84c5ae2009-09-10 11:31:39 +0000414 }
Evan Chengfabcb912009-09-10 04:36:43 +0000415
Victor Hernandez88d98392009-09-18 19:20:02 +0000416 assert(AllocSize->getType() == IntPtrTy && "malloc arg is wrong size");
Evan Chengfabcb912009-09-10 04:36:43 +0000417 // Create the call to Malloc.
418 BasicBlock* BB = InsertBefore ? InsertBefore->getParent() : InsertAtEnd;
419 Module* M = BB->getParent()->getParent();
Chris Lattner1afcace2011-07-09 17:41:24 +0000420 Type *BPTy = Type::getInt8PtrTy(BB->getContext());
Victor Hernandezf06dca22009-11-10 19:53:28 +0000421 Value *MallocFunc = MallocF;
422 if (!MallocFunc)
Victor Hernandez13ad5aa2009-10-17 00:00:19 +0000423 // prototype malloc as "void *malloc(size_t)"
Victor Hernandezf06dca22009-11-10 19:53:28 +0000424 MallocFunc = M->getOrInsertFunction("malloc", BPTy, IntPtrTy, NULL);
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000425 PointerType *AllocPtrType = PointerType::getUnqual(AllocTy);
Evan Chengfabcb912009-09-10 04:36:43 +0000426 CallInst *MCall = NULL;
Nick Lewycky3fc35c52009-10-17 23:52:26 +0000427 Instruction *Result = NULL;
Victor Hernandez88d98392009-09-18 19:20:02 +0000428 if (InsertBefore) {
Victor Hernandezf06dca22009-11-10 19:53:28 +0000429 MCall = CallInst::Create(MallocFunc, AllocSize, "malloccall", InsertBefore);
Victor Hernandez13ad5aa2009-10-17 00:00:19 +0000430 Result = MCall;
431 if (Result->getType() != AllocPtrType)
432 // Create a cast instruction to convert to the right type...
Victor Hernandez9d0b7042009-11-07 00:16:28 +0000433 Result = new BitCastInst(MCall, AllocPtrType, Name, InsertBefore);
Victor Hernandez88d98392009-09-18 19:20:02 +0000434 } else {
Victor Hernandezf06dca22009-11-10 19:53:28 +0000435 MCall = CallInst::Create(MallocFunc, AllocSize, "malloccall");
Victor Hernandez13ad5aa2009-10-17 00:00:19 +0000436 Result = MCall;
437 if (Result->getType() != AllocPtrType) {
438 InsertAtEnd->getInstList().push_back(MCall);
439 // Create a cast instruction to convert to the right type...
Victor Hernandez9d0b7042009-11-07 00:16:28 +0000440 Result = new BitCastInst(MCall, AllocPtrType, Name);
Victor Hernandez13ad5aa2009-10-17 00:00:19 +0000441 }
Victor Hernandez88d98392009-09-18 19:20:02 +0000442 }
Evan Chengfabcb912009-09-10 04:36:43 +0000443 MCall->setTailCall();
Victor Hernandezf06dca22009-11-10 19:53:28 +0000444 if (Function *F = dyn_cast<Function>(MallocFunc)) {
445 MCall->setCallingConv(F->getCallingConv());
446 if (!F->doesNotAlias(0)) F->setDoesNotAlias(0);
447 }
Benjamin Kramerf0127052010-01-05 13:12:22 +0000448 assert(!MCall->getType()->isVoidTy() && "Malloc has void return type");
Victor Hernandez88d98392009-09-18 19:20:02 +0000449
Victor Hernandez13ad5aa2009-10-17 00:00:19 +0000450 return Result;
Evan Chengfabcb912009-09-10 04:36:43 +0000451}
452
453/// CreateMalloc - Generate the IR for a call to malloc:
454/// 1. Compute the malloc call's argument as the specified type's size,
455/// possibly multiplied by the array size if the array size is not
456/// constant 1.
457/// 2. Call malloc with that argument.
458/// 3. Bitcast the result of the malloc call to the specified type.
Nick Lewycky3fc35c52009-10-17 23:52:26 +0000459Instruction *CallInst::CreateMalloc(Instruction *InsertBefore,
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000460 Type *IntPtrTy, Type *AllocTy,
Victor Hernandez9d0b7042009-11-07 00:16:28 +0000461 Value *AllocSize, Value *ArraySize,
Duncan Sands34727662010-07-12 08:16:59 +0000462 Function * MallocF,
Victor Hernandez9d0b7042009-11-07 00:16:28 +0000463 const Twine &Name) {
464 return createMalloc(InsertBefore, NULL, IntPtrTy, AllocTy, AllocSize,
Chris Lattner5a30a852010-07-12 00:57:28 +0000465 ArraySize, MallocF, Name);
Evan Chengfabcb912009-09-10 04:36:43 +0000466}
467
468/// CreateMalloc - Generate the IR for a call to malloc:
469/// 1. Compute the malloc call's argument as the specified type's size,
470/// possibly multiplied by the array size if the array size is not
471/// constant 1.
472/// 2. Call malloc with that argument.
473/// 3. Bitcast the result of the malloc call to the specified type.
474/// Note: This function does not add the bitcast to the basic block, that is the
475/// responsibility of the caller.
Nick Lewycky3fc35c52009-10-17 23:52:26 +0000476Instruction *CallInst::CreateMalloc(BasicBlock *InsertAtEnd,
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000477 Type *IntPtrTy, Type *AllocTy,
Victor Hernandez9d0b7042009-11-07 00:16:28 +0000478 Value *AllocSize, Value *ArraySize,
479 Function *MallocF, const Twine &Name) {
480 return createMalloc(NULL, InsertAtEnd, IntPtrTy, AllocTy, AllocSize,
Victor Hernandez13ad5aa2009-10-17 00:00:19 +0000481 ArraySize, MallocF, Name);
Evan Chengfabcb912009-09-10 04:36:43 +0000482}
Duncan Sandsafa3b6d2007-11-28 17:07:01 +0000483
Victor Hernandez66284e02009-10-24 04:23:03 +0000484static Instruction* createFree(Value* Source, Instruction *InsertBefore,
485 BasicBlock *InsertAtEnd) {
486 assert(((!InsertBefore && InsertAtEnd) || (InsertBefore && !InsertAtEnd)) &&
487 "createFree needs either InsertBefore or InsertAtEnd");
Duncan Sands1df98592010-02-16 11:11:14 +0000488 assert(Source->getType()->isPointerTy() &&
Victor Hernandez66284e02009-10-24 04:23:03 +0000489 "Can not free something of nonpointer type!");
490
491 BasicBlock* BB = InsertBefore ? InsertBefore->getParent() : InsertAtEnd;
492 Module* M = BB->getParent()->getParent();
493
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000494 Type *VoidTy = Type::getVoidTy(M->getContext());
495 Type *IntPtrTy = Type::getInt8PtrTy(M->getContext());
Victor Hernandez66284e02009-10-24 04:23:03 +0000496 // prototype free as "void free(void*)"
Chris Lattner47fc9d32009-11-09 07:12:01 +0000497 Value *FreeFunc = M->getOrInsertFunction("free", VoidTy, IntPtrTy, NULL);
Victor Hernandez66284e02009-10-24 04:23:03 +0000498 CallInst* Result = NULL;
499 Value *PtrCast = Source;
500 if (InsertBefore) {
501 if (Source->getType() != IntPtrTy)
502 PtrCast = new BitCastInst(Source, IntPtrTy, "", InsertBefore);
503 Result = CallInst::Create(FreeFunc, PtrCast, "", InsertBefore);
504 } else {
505 if (Source->getType() != IntPtrTy)
506 PtrCast = new BitCastInst(Source, IntPtrTy, "", InsertAtEnd);
507 Result = CallInst::Create(FreeFunc, PtrCast, "");
508 }
509 Result->setTailCall();
Chris Lattner47fc9d32009-11-09 07:12:01 +0000510 if (Function *F = dyn_cast<Function>(FreeFunc))
511 Result->setCallingConv(F->getCallingConv());
Victor Hernandez66284e02009-10-24 04:23:03 +0000512
513 return Result;
514}
515
516/// CreateFree - Generate the IR for a call to the builtin free function.
Chris Lattner5a30a852010-07-12 00:57:28 +0000517Instruction * CallInst::CreateFree(Value* Source, Instruction *InsertBefore) {
518 return createFree(Source, InsertBefore, NULL);
Victor Hernandez66284e02009-10-24 04:23:03 +0000519}
520
521/// CreateFree - Generate the IR for a call to the builtin free function.
522/// Note: This function does not add the call to the basic block, that is the
523/// responsibility of the caller.
524Instruction* CallInst::CreateFree(Value* Source, BasicBlock *InsertAtEnd) {
525 Instruction* FreeCall = createFree(Source, NULL, InsertAtEnd);
526 assert(FreeCall && "CreateFree did not create a CallInst");
527 return FreeCall;
528}
529
Alkis Evlogimenos91366a82004-07-29 12:33:25 +0000530//===----------------------------------------------------------------------===//
531// InvokeInst Implementation
532//===----------------------------------------------------------------------===//
533
534void InvokeInst::init(Value *Fn, BasicBlock *IfNormal, BasicBlock *IfException,
Jay Foada3efbb12011-07-15 08:37:34 +0000535 ArrayRef<Value *> Args, const Twine &NameStr) {
536 assert(NumOperands == 3 + Args.size() && "NumOperands not set up?");
Gabor Greifc9f75002010-03-24 13:21:49 +0000537 Op<-3>() = Fn;
538 Op<-2>() = IfNormal;
539 Op<-1>() = IfException;
Jay Foada3efbb12011-07-15 08:37:34 +0000540
541#ifndef NDEBUG
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000542 FunctionType *FTy =
Alkis Evlogimenos91366a82004-07-29 12:33:25 +0000543 cast<FunctionType>(cast<PointerType>(Fn->getType())->getElementType());
Misha Brukmanfd939082005-04-21 23:48:37 +0000544
Jay Foada3efbb12011-07-15 08:37:34 +0000545 assert(((Args.size() == FTy->getNumParams()) ||
546 (FTy->isVarArg() && Args.size() > FTy->getNumParams())) &&
Gabor Greif050560e2010-03-23 13:45:54 +0000547 "Invoking a function with bad signature");
Misha Brukmanfd939082005-04-21 23:48:37 +0000548
Jay Foada3efbb12011-07-15 08:37:34 +0000549 for (unsigned i = 0, e = Args.size(); i != e; i++)
Chris Lattner9b4c96d2006-05-03 00:48:22 +0000550 assert((i >= FTy->getNumParams() ||
Chris Lattnerd2dd1502007-02-13 01:04:01 +0000551 FTy->getParamType(i) == Args[i]->getType()) &&
Chris Lattner9b4c96d2006-05-03 00:48:22 +0000552 "Invoking a function with a bad signature!");
Jay Foada3efbb12011-07-15 08:37:34 +0000553#endif
554
555 std::copy(Args.begin(), Args.end(), op_begin());
556 setName(NameStr);
Alkis Evlogimenos91366a82004-07-29 12:33:25 +0000557}
558
Misha Brukmanfd939082005-04-21 23:48:37 +0000559InvokeInst::InvokeInst(const InvokeInst &II)
Chris Lattnerb12261a2005-01-29 00:35:16 +0000560 : TerminatorInst(II.getType(), Instruction::Invoke,
Gabor Greifb1dbcd82008-05-15 10:04:30 +0000561 OperandTraits<InvokeInst>::op_end(this)
562 - II.getNumOperands(),
Gabor Greifefe65362008-05-10 08:32:32 +0000563 II.getNumOperands()) {
Devang Patel05988662008-09-25 21:00:45 +0000564 setAttributes(II.getAttributes());
Chris Lattnercafe9bb2009-12-29 02:14:09 +0000565 setCallingConv(II.getCallingConv());
Jay Foada3efbb12011-07-15 08:37:34 +0000566 std::copy(II.op_begin(), II.op_end(), op_begin());
Dan Gohman58cfa3b2009-08-25 22:11:20 +0000567 SubclassOptionalData = II.SubclassOptionalData;
Alkis Evlogimenos91366a82004-07-29 12:33:25 +0000568}
569
Chris Lattnerb12261a2005-01-29 00:35:16 +0000570BasicBlock *InvokeInst::getSuccessorV(unsigned idx) const {
571 return getSuccessor(idx);
572}
573unsigned InvokeInst::getNumSuccessorsV() const {
574 return getNumSuccessors();
575}
576void InvokeInst::setSuccessorV(unsigned idx, BasicBlock *B) {
577 return setSuccessor(idx, B);
578}
579
Bill Wendling629fb822012-12-22 00:37:52 +0000580bool InvokeInst::hasFnAttr(Attribute::AttrKind A) const {
Bill Wendling94e94b32012-12-30 13:50:49 +0000581 if (AttributeList.hasAttribute(AttributeSet::FunctionIndex, A))
Bill Wendling060f20a2012-10-09 00:28:54 +0000582 return true;
583 if (const Function *F = getCalledFunction())
Bill Wendling39cd0c82012-12-30 12:45:13 +0000584 return F->getAttributes().hasAttribute(AttributeSet::FunctionIndex, A);
Bill Wendling060f20a2012-10-09 00:28:54 +0000585 return false;
586}
587
Bill Wendling629fb822012-12-22 00:37:52 +0000588bool InvokeInst::paramHasAttr(unsigned i, Attribute::AttrKind A) const {
Bill Wendling94e94b32012-12-30 13:50:49 +0000589 if (AttributeList.hasAttribute(i, A))
Bill Wendling847d1652012-10-03 17:54:26 +0000590 return true;
591 if (const Function *F = getCalledFunction())
Bill Wendling39cd0c82012-12-30 12:45:13 +0000592 return F->getAttributes().hasAttribute(i, A);
Bill Wendling365b9e02012-10-04 07:18:12 +0000593 return false;
594}
595
Bill Wendling034b94b2012-12-19 07:18:57 +0000596void InvokeInst::addAttribute(unsigned i, Attribute attr) {
Bill Wendling99faa3b2012-12-07 23:16:57 +0000597 AttributeSet PAL = getAttributes();
Bill Wendlingdefaca02013-01-22 21:15:51 +0000598 AttrBuilder B(attr);
599 PAL = PAL.addAttributes(getContext(), i,
600 AttributeSet::get(getContext(), i, B));
Devang Patel05988662008-09-25 21:00:45 +0000601 setAttributes(PAL);
Eric Christopher0bf7b412008-05-16 20:39:43 +0000602}
603
Bill Wendling034b94b2012-12-19 07:18:57 +0000604void InvokeInst::removeAttribute(unsigned i, Attribute attr) {
Bill Wendling99faa3b2012-12-07 23:16:57 +0000605 AttributeSet PAL = getAttributes();
Bill Wendling8246df62013-01-23 00:45:55 +0000606 AttrBuilder B(attr);
607 PAL = PAL.removeAttributes(getContext(), i,
608 AttributeSet::get(getContext(), i, B));
Devang Patel05988662008-09-25 21:00:45 +0000609 setAttributes(PAL);
Duncan Sandsf0c33542007-12-19 21:13:37 +0000610}
611
Bill Wendlinge6e88262011-08-12 20:24:12 +0000612LandingPadInst *InvokeInst::getLandingPadInst() const {
613 return cast<LandingPadInst>(getUnwindDest()->getFirstNonPHI());
614}
Duncan Sandsafa3b6d2007-11-28 17:07:01 +0000615
Alkis Evlogimenos91366a82004-07-29 12:33:25 +0000616//===----------------------------------------------------------------------===//
617// ReturnInst Implementation
618//===----------------------------------------------------------------------===//
619
Chris Lattner910c80a2007-02-24 00:55:48 +0000620ReturnInst::ReturnInst(const ReturnInst &RI)
Owen Anderson1d0be152009-08-13 21:58:54 +0000621 : TerminatorInst(Type::getVoidTy(RI.getContext()), Instruction::Ret,
Dan Gohmanfc74abf2008-07-23 00:34:11 +0000622 OperandTraits<ReturnInst>::op_end(this) -
623 RI.getNumOperands(),
Gabor Greifefe65362008-05-10 08:32:32 +0000624 RI.getNumOperands()) {
Dan Gohmanfc74abf2008-07-23 00:34:11 +0000625 if (RI.getNumOperands())
Gabor Greif6c80c382008-05-26 21:33:52 +0000626 Op<0>() = RI.Op<0>();
Dan Gohman58cfa3b2009-08-25 22:11:20 +0000627 SubclassOptionalData = RI.SubclassOptionalData;
Chris Lattner910c80a2007-02-24 00:55:48 +0000628}
629
Owen Anderson1d0be152009-08-13 21:58:54 +0000630ReturnInst::ReturnInst(LLVMContext &C, Value *retVal, Instruction *InsertBefore)
631 : TerminatorInst(Type::getVoidTy(C), Instruction::Ret,
Dan Gohmanfc74abf2008-07-23 00:34:11 +0000632 OperandTraits<ReturnInst>::op_end(this) - !!retVal, !!retVal,
633 InsertBefore) {
Devang Patel814ebd72008-02-26 18:49:29 +0000634 if (retVal)
Dan Gohmanfc74abf2008-07-23 00:34:11 +0000635 Op<0>() = retVal;
Chris Lattner910c80a2007-02-24 00:55:48 +0000636}
Owen Anderson1d0be152009-08-13 21:58:54 +0000637ReturnInst::ReturnInst(LLVMContext &C, Value *retVal, BasicBlock *InsertAtEnd)
638 : TerminatorInst(Type::getVoidTy(C), Instruction::Ret,
Dan Gohmanfc74abf2008-07-23 00:34:11 +0000639 OperandTraits<ReturnInst>::op_end(this) - !!retVal, !!retVal,
640 InsertAtEnd) {
Devang Patel814ebd72008-02-26 18:49:29 +0000641 if (retVal)
Dan Gohmanfc74abf2008-07-23 00:34:11 +0000642 Op<0>() = retVal;
Chris Lattner910c80a2007-02-24 00:55:48 +0000643}
Owen Anderson1d0be152009-08-13 21:58:54 +0000644ReturnInst::ReturnInst(LLVMContext &Context, BasicBlock *InsertAtEnd)
645 : TerminatorInst(Type::getVoidTy(Context), Instruction::Ret,
Dan Gohmanfc74abf2008-07-23 00:34:11 +0000646 OperandTraits<ReturnInst>::op_end(this), 0, InsertAtEnd) {
Devang Patel57ef4f42008-02-23 00:35:18 +0000647}
648
Chris Lattnerb12261a2005-01-29 00:35:16 +0000649unsigned ReturnInst::getNumSuccessorsV() const {
650 return getNumSuccessors();
651}
652
Devang Patel64d4e612008-02-26 17:56:20 +0000653/// Out-of-line ReturnInst method, put here so the C++ compiler can choose to
654/// emit the vtable for the class in this translation unit.
Chris Lattnerb12261a2005-01-29 00:35:16 +0000655void ReturnInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000656 llvm_unreachable("ReturnInst has no successors!");
Alkis Evlogimenos91366a82004-07-29 12:33:25 +0000657}
658
Chris Lattnerb12261a2005-01-29 00:35:16 +0000659BasicBlock *ReturnInst::getSuccessorV(unsigned idx) const {
Torok Edwinc23197a2009-07-14 16:55:14 +0000660 llvm_unreachable("ReturnInst has no successors!");
Chris Lattnerb12261a2005-01-29 00:35:16 +0000661}
662
Devang Patel57ef4f42008-02-23 00:35:18 +0000663ReturnInst::~ReturnInst() {
Devang Patel57ef4f42008-02-23 00:35:18 +0000664}
Chris Lattnerb12261a2005-01-29 00:35:16 +0000665
Alkis Evlogimenos91366a82004-07-29 12:33:25 +0000666//===----------------------------------------------------------------------===//
Bill Wendlingdccc03b2011-07-31 06:30:59 +0000667// ResumeInst Implementation
668//===----------------------------------------------------------------------===//
669
670ResumeInst::ResumeInst(const ResumeInst &RI)
671 : TerminatorInst(Type::getVoidTy(RI.getContext()), Instruction::Resume,
672 OperandTraits<ResumeInst>::op_begin(this), 1) {
673 Op<0>() = RI.Op<0>();
674}
675
676ResumeInst::ResumeInst(Value *Exn, Instruction *InsertBefore)
677 : TerminatorInst(Type::getVoidTy(Exn->getContext()), Instruction::Resume,
678 OperandTraits<ResumeInst>::op_begin(this), 1, InsertBefore) {
679 Op<0>() = Exn;
680}
681
682ResumeInst::ResumeInst(Value *Exn, BasicBlock *InsertAtEnd)
683 : TerminatorInst(Type::getVoidTy(Exn->getContext()), Instruction::Resume,
684 OperandTraits<ResumeInst>::op_begin(this), 1, InsertAtEnd) {
685 Op<0>() = Exn;
686}
687
688unsigned ResumeInst::getNumSuccessorsV() const {
689 return getNumSuccessors();
690}
691
692void ResumeInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
693 llvm_unreachable("ResumeInst has no successors!");
694}
695
696BasicBlock *ResumeInst::getSuccessorV(unsigned idx) const {
697 llvm_unreachable("ResumeInst has no successors!");
Bill Wendlingdccc03b2011-07-31 06:30:59 +0000698}
699
700//===----------------------------------------------------------------------===//
Chris Lattnerb976e662004-10-16 18:08:06 +0000701// UnreachableInst Implementation
702//===----------------------------------------------------------------------===//
703
Owen Anderson1d0be152009-08-13 21:58:54 +0000704UnreachableInst::UnreachableInst(LLVMContext &Context,
705 Instruction *InsertBefore)
706 : TerminatorInst(Type::getVoidTy(Context), Instruction::Unreachable,
707 0, 0, InsertBefore) {
Chris Lattner910c80a2007-02-24 00:55:48 +0000708}
Owen Anderson1d0be152009-08-13 21:58:54 +0000709UnreachableInst::UnreachableInst(LLVMContext &Context, BasicBlock *InsertAtEnd)
710 : TerminatorInst(Type::getVoidTy(Context), Instruction::Unreachable,
711 0, 0, InsertAtEnd) {
Chris Lattner910c80a2007-02-24 00:55:48 +0000712}
713
Chris Lattnerb12261a2005-01-29 00:35:16 +0000714unsigned UnreachableInst::getNumSuccessorsV() const {
715 return getNumSuccessors();
716}
717
718void UnreachableInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
Bill Wendling8833ef02012-02-06 21:44:22 +0000719 llvm_unreachable("UnreachableInst has no successors!");
Chris Lattnerb12261a2005-01-29 00:35:16 +0000720}
721
722BasicBlock *UnreachableInst::getSuccessorV(unsigned idx) const {
Bill Wendling8833ef02012-02-06 21:44:22 +0000723 llvm_unreachable("UnreachableInst has no successors!");
Chris Lattnerb976e662004-10-16 18:08:06 +0000724}
725
726//===----------------------------------------------------------------------===//
Alkis Evlogimenos91366a82004-07-29 12:33:25 +0000727// BranchInst Implementation
728//===----------------------------------------------------------------------===//
729
Chris Lattnerb12261a2005-01-29 00:35:16 +0000730void BranchInst::AssertOK() {
731 if (isConditional())
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000732 assert(getCondition()->getType()->isIntegerTy(1) &&
Chris Lattnerb12261a2005-01-29 00:35:16 +0000733 "May only branch on boolean predicates!");
Alkis Evlogimenos91366a82004-07-29 12:33:25 +0000734}
735
Chris Lattner910c80a2007-02-24 00:55:48 +0000736BranchInst::BranchInst(BasicBlock *IfTrue, Instruction *InsertBefore)
Owen Anderson1d0be152009-08-13 21:58:54 +0000737 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greifefe65362008-05-10 08:32:32 +0000738 OperandTraits<BranchInst>::op_end(this) - 1,
739 1, InsertBefore) {
Chris Lattner910c80a2007-02-24 00:55:48 +0000740 assert(IfTrue != 0 && "Branch destination may not be null!");
Gabor Greifae5a20a2009-03-12 18:34:49 +0000741 Op<-1>() = IfTrue;
Chris Lattner910c80a2007-02-24 00:55:48 +0000742}
743BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
744 Instruction *InsertBefore)
Owen Anderson1d0be152009-08-13 21:58:54 +0000745 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greifefe65362008-05-10 08:32:32 +0000746 OperandTraits<BranchInst>::op_end(this) - 3,
747 3, InsertBefore) {
Gabor Greifae5a20a2009-03-12 18:34:49 +0000748 Op<-1>() = IfTrue;
749 Op<-2>() = IfFalse;
750 Op<-3>() = Cond;
Chris Lattner910c80a2007-02-24 00:55:48 +0000751#ifndef NDEBUG
752 AssertOK();
753#endif
754}
755
756BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *InsertAtEnd)
Owen Anderson1d0be152009-08-13 21:58:54 +0000757 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greifefe65362008-05-10 08:32:32 +0000758 OperandTraits<BranchInst>::op_end(this) - 1,
759 1, InsertAtEnd) {
Chris Lattner910c80a2007-02-24 00:55:48 +0000760 assert(IfTrue != 0 && "Branch destination may not be null!");
Gabor Greifae5a20a2009-03-12 18:34:49 +0000761 Op<-1>() = IfTrue;
Chris Lattner910c80a2007-02-24 00:55:48 +0000762}
763
764BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
765 BasicBlock *InsertAtEnd)
Owen Anderson1d0be152009-08-13 21:58:54 +0000766 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greifefe65362008-05-10 08:32:32 +0000767 OperandTraits<BranchInst>::op_end(this) - 3,
768 3, InsertAtEnd) {
Gabor Greifae5a20a2009-03-12 18:34:49 +0000769 Op<-1>() = IfTrue;
770 Op<-2>() = IfFalse;
771 Op<-3>() = Cond;
Chris Lattner910c80a2007-02-24 00:55:48 +0000772#ifndef NDEBUG
773 AssertOK();
774#endif
775}
776
777
Chris Lattnerb12261a2005-01-29 00:35:16 +0000778BranchInst::BranchInst(const BranchInst &BI) :
Owen Anderson1d0be152009-08-13 21:58:54 +0000779 TerminatorInst(Type::getVoidTy(BI.getContext()), Instruction::Br,
Gabor Greifefe65362008-05-10 08:32:32 +0000780 OperandTraits<BranchInst>::op_end(this) - BI.getNumOperands(),
781 BI.getNumOperands()) {
Gabor Greifae5a20a2009-03-12 18:34:49 +0000782 Op<-1>() = BI.Op<-1>();
Chris Lattnerb12261a2005-01-29 00:35:16 +0000783 if (BI.getNumOperands() != 1) {
784 assert(BI.getNumOperands() == 3 && "BR can have 1 or 3 operands!");
Gabor Greifae5a20a2009-03-12 18:34:49 +0000785 Op<-3>() = BI.Op<-3>();
786 Op<-2>() = BI.Op<-2>();
Alkis Evlogimenos91366a82004-07-29 12:33:25 +0000787 }
Dan Gohman58cfa3b2009-08-25 22:11:20 +0000788 SubclassOptionalData = BI.SubclassOptionalData;
Alkis Evlogimenos91366a82004-07-29 12:33:25 +0000789}
790
Chandler Carruth602650c2011-10-17 01:11:57 +0000791void BranchInst::swapSuccessors() {
792 assert(isConditional() &&
793 "Cannot swap successors of an unconditional branch");
794 Op<-1>().swap(Op<-2>());
795
796 // Update profile metadata if present and it matches our structural
797 // expectations.
798 MDNode *ProfileData = getMetadata(LLVMContext::MD_prof);
799 if (!ProfileData || ProfileData->getNumOperands() != 3)
800 return;
801
802 // The first operand is the name. Fetch them backwards and build a new one.
803 Value *Ops[] = {
804 ProfileData->getOperand(0),
805 ProfileData->getOperand(2),
806 ProfileData->getOperand(1)
807 };
808 setMetadata(LLVMContext::MD_prof,
809 MDNode::get(ProfileData->getContext(), Ops));
810}
811
Chris Lattnerb12261a2005-01-29 00:35:16 +0000812BasicBlock *BranchInst::getSuccessorV(unsigned idx) const {
813 return getSuccessor(idx);
814}
815unsigned BranchInst::getNumSuccessorsV() const {
816 return getNumSuccessors();
817}
818void BranchInst::setSuccessorV(unsigned idx, BasicBlock *B) {
819 setSuccessor(idx, B);
820}
821
822
Alkis Evlogimenos91366a82004-07-29 12:33:25 +0000823//===----------------------------------------------------------------------===//
Victor Hernandez7b929da2009-10-23 21:09:37 +0000824// AllocaInst Implementation
Alkis Evlogimenos91366a82004-07-29 12:33:25 +0000825//===----------------------------------------------------------------------===//
826
Owen Anderson9adc0ab2009-07-14 23:09:55 +0000827static Value *getAISize(LLVMContext &Context, Value *Amt) {
Chris Lattnerb12261a2005-01-29 00:35:16 +0000828 if (!Amt)
Owen Anderson1d0be152009-08-13 21:58:54 +0000829 Amt = ConstantInt::get(Type::getInt32Ty(Context), 1);
Chris Lattnere46749c2006-05-10 04:32:43 +0000830 else {
831 assert(!isa<BasicBlock>(Amt) &&
Chris Lattner53336cb2007-10-18 16:10:48 +0000832 "Passed basic block into allocation size parameter! Use other ctor");
Dan Gohmanf75a7d32010-05-28 01:14:11 +0000833 assert(Amt->getType()->isIntegerTy() &&
834 "Allocation array size is not an integer!");
Chris Lattnere46749c2006-05-10 04:32:43 +0000835 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000836 return Amt;
Alkis Evlogimenos91366a82004-07-29 12:33:25 +0000837}
838
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000839AllocaInst::AllocaInst(Type *Ty, Value *ArraySize,
Victor Hernandez7b929da2009-10-23 21:09:37 +0000840 const Twine &Name, Instruction *InsertBefore)
841 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
842 getAISize(Ty->getContext(), ArraySize), InsertBefore) {
843 setAlignment(0);
Benjamin Kramerf0127052010-01-05 13:12:22 +0000844 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Victor Hernandez7b929da2009-10-23 21:09:37 +0000845 setName(Name);
846}
847
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000848AllocaInst::AllocaInst(Type *Ty, Value *ArraySize,
Victor Hernandez7b929da2009-10-23 21:09:37 +0000849 const Twine &Name, BasicBlock *InsertAtEnd)
850 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
851 getAISize(Ty->getContext(), ArraySize), InsertAtEnd) {
852 setAlignment(0);
Benjamin Kramerf0127052010-01-05 13:12:22 +0000853 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Victor Hernandez7b929da2009-10-23 21:09:37 +0000854 setName(Name);
855}
856
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000857AllocaInst::AllocaInst(Type *Ty, const Twine &Name,
Victor Hernandez7b929da2009-10-23 21:09:37 +0000858 Instruction *InsertBefore)
859 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
860 getAISize(Ty->getContext(), 0), InsertBefore) {
861 setAlignment(0);
Benjamin Kramerf0127052010-01-05 13:12:22 +0000862 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Victor Hernandez7b929da2009-10-23 21:09:37 +0000863 setName(Name);
864}
865
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000866AllocaInst::AllocaInst(Type *Ty, const Twine &Name,
Victor Hernandez7b929da2009-10-23 21:09:37 +0000867 BasicBlock *InsertAtEnd)
868 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
869 getAISize(Ty->getContext(), 0), InsertAtEnd) {
870 setAlignment(0);
Benjamin Kramerf0127052010-01-05 13:12:22 +0000871 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Victor Hernandez7b929da2009-10-23 21:09:37 +0000872 setName(Name);
873}
874
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000875AllocaInst::AllocaInst(Type *Ty, Value *ArraySize, unsigned Align,
Victor Hernandez7b929da2009-10-23 21:09:37 +0000876 const Twine &Name, Instruction *InsertBefore)
877 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
Owen Anderson50dead02009-07-15 23:53:25 +0000878 getAISize(Ty->getContext(), ArraySize), InsertBefore) {
Dan Gohman52837072008-03-24 16:55:58 +0000879 setAlignment(Align);
Benjamin Kramerf0127052010-01-05 13:12:22 +0000880 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Chris Lattnerf00042a2007-02-13 07:54:42 +0000881 setName(Name);
Alkis Evlogimenos91366a82004-07-29 12:33:25 +0000882}
883
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000884AllocaInst::AllocaInst(Type *Ty, Value *ArraySize, unsigned Align,
Victor Hernandez7b929da2009-10-23 21:09:37 +0000885 const Twine &Name, BasicBlock *InsertAtEnd)
886 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
Owen Anderson50dead02009-07-15 23:53:25 +0000887 getAISize(Ty->getContext(), ArraySize), InsertAtEnd) {
Dan Gohman52837072008-03-24 16:55:58 +0000888 setAlignment(Align);
Benjamin Kramerf0127052010-01-05 13:12:22 +0000889 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Chris Lattnerf00042a2007-02-13 07:54:42 +0000890 setName(Name);
Alkis Evlogimenos91366a82004-07-29 12:33:25 +0000891}
892
Gordon Henriksenafba8fe2007-12-10 02:14:30 +0000893// Out of line virtual method, so the vtable, etc has a home.
Victor Hernandez7b929da2009-10-23 21:09:37 +0000894AllocaInst::~AllocaInst() {
Gordon Henriksenafba8fe2007-12-10 02:14:30 +0000895}
896
Victor Hernandez7b929da2009-10-23 21:09:37 +0000897void AllocaInst::setAlignment(unsigned Align) {
Dan Gohman52837072008-03-24 16:55:58 +0000898 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
Dan Gohman138aa2a2010-07-28 20:12:04 +0000899 assert(Align <= MaximumAlignment &&
900 "Alignment is greater than MaximumAlignment!");
Chris Lattnerb2406d92009-12-29 02:46:09 +0000901 setInstructionSubclassData(Log2_32(Align) + 1);
Dan Gohman52837072008-03-24 16:55:58 +0000902 assert(getAlignment() == Align && "Alignment representation error!");
903}
904
Victor Hernandez7b929da2009-10-23 21:09:37 +0000905bool AllocaInst::isArrayAllocation() const {
Reid Spencerbb9723b2007-03-01 20:27:41 +0000906 if (ConstantInt *CI = dyn_cast<ConstantInt>(getOperand(0)))
Dan Gohmane0214d52010-09-27 15:15:44 +0000907 return !CI->isOne();
Chris Lattnerb12261a2005-01-29 00:35:16 +0000908 return true;
Alkis Evlogimenos91366a82004-07-29 12:33:25 +0000909}
910
Chris Lattner1afcace2011-07-09 17:41:24 +0000911Type *AllocaInst::getAllocatedType() const {
Alkis Evlogimenos91366a82004-07-29 12:33:25 +0000912 return getType()->getElementType();
913}
914
Chris Lattnerc5dd22a2008-11-26 02:54:17 +0000915/// isStaticAlloca - Return true if this alloca is in the entry block of the
916/// function and is a constant size. If so, the code generator will fold it
917/// into the prolog/epilog code, so it is basically free.
918bool AllocaInst::isStaticAlloca() const {
919 // Must be constant size.
920 if (!isa<ConstantInt>(getArraySize())) return false;
921
922 // Must be in the entry block.
923 const BasicBlock *Parent = getParent();
924 return Parent == &Parent->getParent()->front();
925}
926
Alkis Evlogimenos91366a82004-07-29 12:33:25 +0000927//===----------------------------------------------------------------------===//
Alkis Evlogimenos91366a82004-07-29 12:33:25 +0000928// LoadInst Implementation
929//===----------------------------------------------------------------------===//
930
Chris Lattnerb12261a2005-01-29 00:35:16 +0000931void LoadInst::AssertOK() {
Duncan Sands1df98592010-02-16 11:11:14 +0000932 assert(getOperand(0)->getType()->isPointerTy() &&
Alkis Evlogimenos91366a82004-07-29 12:33:25 +0000933 "Ptr must have pointer type.");
Eli Friedman21006d42011-08-09 23:02:53 +0000934 assert(!(isAtomic() && getAlignment() == 0) &&
935 "Alignment required for atomic load");
Alkis Evlogimenos91366a82004-07-29 12:33:25 +0000936}
937
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +0000938LoadInst::LoadInst(Value *Ptr, const Twine &Name, Instruction *InsertBef)
Chris Lattnerb12261a2005-01-29 00:35:16 +0000939 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner910c80a2007-02-24 00:55:48 +0000940 Load, Ptr, InsertBef) {
Chris Lattner28662972005-02-05 01:38:38 +0000941 setVolatile(false);
Christopher Lamb43c7f372007-04-22 19:24:39 +0000942 setAlignment(0);
Eli Friedman21006d42011-08-09 23:02:53 +0000943 setAtomic(NotAtomic);
Chris Lattnerb12261a2005-01-29 00:35:16 +0000944 AssertOK();
Chris Lattnerf00042a2007-02-13 07:54:42 +0000945 setName(Name);
Alkis Evlogimenos91366a82004-07-29 12:33:25 +0000946}
947
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +0000948LoadInst::LoadInst(Value *Ptr, const Twine &Name, BasicBlock *InsertAE)
Chris Lattnerb12261a2005-01-29 00:35:16 +0000949 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner910c80a2007-02-24 00:55:48 +0000950 Load, Ptr, InsertAE) {
Chris Lattner28662972005-02-05 01:38:38 +0000951 setVolatile(false);
Christopher Lamb43c7f372007-04-22 19:24:39 +0000952 setAlignment(0);
Eli Friedman21006d42011-08-09 23:02:53 +0000953 setAtomic(NotAtomic);
Chris Lattnerb12261a2005-01-29 00:35:16 +0000954 AssertOK();
Chris Lattnerf00042a2007-02-13 07:54:42 +0000955 setName(Name);
Alkis Evlogimenos91366a82004-07-29 12:33:25 +0000956}
957
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +0000958LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Alkis Evlogimenos91366a82004-07-29 12:33:25 +0000959 Instruction *InsertBef)
Chris Lattnerb12261a2005-01-29 00:35:16 +0000960 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner910c80a2007-02-24 00:55:48 +0000961 Load, Ptr, InsertBef) {
Chris Lattner28662972005-02-05 01:38:38 +0000962 setVolatile(isVolatile);
Christopher Lamb43c7f372007-04-22 19:24:39 +0000963 setAlignment(0);
Eli Friedman21006d42011-08-09 23:02:53 +0000964 setAtomic(NotAtomic);
965 AssertOK();
966 setName(Name);
967}
968
969LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
970 BasicBlock *InsertAE)
971 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
972 Load, Ptr, InsertAE) {
973 setVolatile(isVolatile);
974 setAlignment(0);
975 setAtomic(NotAtomic);
Christopher Lamb43c7f372007-04-22 19:24:39 +0000976 AssertOK();
977 setName(Name);
978}
979
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +0000980LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Christopher Lamb43c7f372007-04-22 19:24:39 +0000981 unsigned Align, Instruction *InsertBef)
982 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
983 Load, Ptr, InsertBef) {
984 setVolatile(isVolatile);
985 setAlignment(Align);
Eli Friedman21006d42011-08-09 23:02:53 +0000986 setAtomic(NotAtomic);
Chris Lattnerb12261a2005-01-29 00:35:16 +0000987 AssertOK();
Chris Lattnerf00042a2007-02-13 07:54:42 +0000988 setName(Name);
Alkis Evlogimenos91366a82004-07-29 12:33:25 +0000989}
990
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +0000991LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Dan Gohman6ab2d182007-07-18 20:51:11 +0000992 unsigned Align, BasicBlock *InsertAE)
993 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
994 Load, Ptr, InsertAE) {
995 setVolatile(isVolatile);
996 setAlignment(Align);
Eli Friedman21006d42011-08-09 23:02:53 +0000997 setAtomic(NotAtomic);
Dan Gohman6ab2d182007-07-18 20:51:11 +0000998 AssertOK();
999 setName(Name);
1000}
1001
Eli Friedman21006d42011-08-09 23:02:53 +00001002LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
1003 unsigned Align, AtomicOrdering Order,
1004 SynchronizationScope SynchScope,
1005 Instruction *InsertBef)
1006 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
1007 Load, Ptr, InsertBef) {
1008 setVolatile(isVolatile);
1009 setAlignment(Align);
1010 setAtomic(Order, SynchScope);
1011 AssertOK();
1012 setName(Name);
1013}
1014
1015LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
1016 unsigned Align, AtomicOrdering Order,
1017 SynchronizationScope SynchScope,
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00001018 BasicBlock *InsertAE)
Chris Lattnerb12261a2005-01-29 00:35:16 +00001019 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner910c80a2007-02-24 00:55:48 +00001020 Load, Ptr, InsertAE) {
Chris Lattnerf00042a2007-02-13 07:54:42 +00001021 setVolatile(isVolatile);
Eli Friedman21006d42011-08-09 23:02:53 +00001022 setAlignment(Align);
1023 setAtomic(Order, SynchScope);
Chris Lattnerf00042a2007-02-13 07:54:42 +00001024 AssertOK();
1025 setName(Name);
1026}
1027
Daniel Dunbar3603d7a2009-08-11 18:11:15 +00001028LoadInst::LoadInst(Value *Ptr, const char *Name, Instruction *InsertBef)
1029 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
1030 Load, Ptr, InsertBef) {
1031 setVolatile(false);
1032 setAlignment(0);
Eli Friedman21006d42011-08-09 23:02:53 +00001033 setAtomic(NotAtomic);
Daniel Dunbar3603d7a2009-08-11 18:11:15 +00001034 AssertOK();
1035 if (Name && Name[0]) setName(Name);
1036}
1037
1038LoadInst::LoadInst(Value *Ptr, const char *Name, BasicBlock *InsertAE)
1039 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
1040 Load, Ptr, InsertAE) {
1041 setVolatile(false);
1042 setAlignment(0);
Eli Friedman21006d42011-08-09 23:02:53 +00001043 setAtomic(NotAtomic);
Daniel Dunbar3603d7a2009-08-11 18:11:15 +00001044 AssertOK();
1045 if (Name && Name[0]) setName(Name);
1046}
1047
1048LoadInst::LoadInst(Value *Ptr, const char *Name, bool isVolatile,
1049 Instruction *InsertBef)
1050: UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
1051 Load, Ptr, InsertBef) {
1052 setVolatile(isVolatile);
1053 setAlignment(0);
Eli Friedman21006d42011-08-09 23:02:53 +00001054 setAtomic(NotAtomic);
Daniel Dunbar3603d7a2009-08-11 18:11:15 +00001055 AssertOK();
1056 if (Name && Name[0]) setName(Name);
1057}
1058
1059LoadInst::LoadInst(Value *Ptr, const char *Name, bool isVolatile,
1060 BasicBlock *InsertAE)
1061 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
1062 Load, Ptr, InsertAE) {
1063 setVolatile(isVolatile);
1064 setAlignment(0);
Eli Friedman21006d42011-08-09 23:02:53 +00001065 setAtomic(NotAtomic);
Daniel Dunbar3603d7a2009-08-11 18:11:15 +00001066 AssertOK();
1067 if (Name && Name[0]) setName(Name);
1068}
1069
Christopher Lamb43c7f372007-04-22 19:24:39 +00001070void LoadInst::setAlignment(unsigned Align) {
1071 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
Dan Gohman138aa2a2010-07-28 20:12:04 +00001072 assert(Align <= MaximumAlignment &&
1073 "Alignment is greater than MaximumAlignment!");
Eli Friedman21006d42011-08-09 23:02:53 +00001074 setInstructionSubclassData((getSubclassDataFromInstruction() & ~(31 << 1)) |
Chris Lattnerb2406d92009-12-29 02:46:09 +00001075 ((Log2_32(Align)+1)<<1));
Dan Gohman138aa2a2010-07-28 20:12:04 +00001076 assert(getAlignment() == Align && "Alignment representation error!");
Christopher Lamb43c7f372007-04-22 19:24:39 +00001077}
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00001078
1079//===----------------------------------------------------------------------===//
1080// StoreInst Implementation
1081//===----------------------------------------------------------------------===//
1082
Chris Lattnerb12261a2005-01-29 00:35:16 +00001083void StoreInst::AssertOK() {
Nate Begeman5bc1ea02008-07-29 15:49:41 +00001084 assert(getOperand(0) && getOperand(1) && "Both operands must be non-null!");
Duncan Sands1df98592010-02-16 11:11:14 +00001085 assert(getOperand(1)->getType()->isPointerTy() &&
Chris Lattnerb12261a2005-01-29 00:35:16 +00001086 "Ptr must have pointer type!");
1087 assert(getOperand(0)->getType() ==
1088 cast<PointerType>(getOperand(1)->getType())->getElementType()
Alkis Evlogimenos8fabb622004-08-06 14:33:37 +00001089 && "Ptr must be a pointer to Val type!");
Eli Friedman21006d42011-08-09 23:02:53 +00001090 assert(!(isAtomic() && getAlignment() == 0) &&
1091 "Alignment required for atomic load");
Chris Lattnerb12261a2005-01-29 00:35:16 +00001092}
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00001093
Chris Lattnerb12261a2005-01-29 00:35:16 +00001094
1095StoreInst::StoreInst(Value *val, Value *addr, Instruction *InsertBefore)
Owen Anderson1d0be152009-08-13 21:58:54 +00001096 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greifefe65362008-05-10 08:32:32 +00001097 OperandTraits<StoreInst>::op_begin(this),
1098 OperandTraits<StoreInst>::operands(this),
1099 InsertBefore) {
Gabor Greif6c80c382008-05-26 21:33:52 +00001100 Op<0>() = val;
1101 Op<1>() = addr;
Chris Lattner28662972005-02-05 01:38:38 +00001102 setVolatile(false);
Christopher Lamb43c7f372007-04-22 19:24:39 +00001103 setAlignment(0);
Eli Friedman21006d42011-08-09 23:02:53 +00001104 setAtomic(NotAtomic);
Chris Lattnerb12261a2005-01-29 00:35:16 +00001105 AssertOK();
1106}
1107
1108StoreInst::StoreInst(Value *val, Value *addr, BasicBlock *InsertAtEnd)
Owen Anderson1d0be152009-08-13 21:58:54 +00001109 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greifefe65362008-05-10 08:32:32 +00001110 OperandTraits<StoreInst>::op_begin(this),
1111 OperandTraits<StoreInst>::operands(this),
1112 InsertAtEnd) {
Gabor Greif6c80c382008-05-26 21:33:52 +00001113 Op<0>() = val;
1114 Op<1>() = addr;
Chris Lattner28662972005-02-05 01:38:38 +00001115 setVolatile(false);
Christopher Lamb43c7f372007-04-22 19:24:39 +00001116 setAlignment(0);
Eli Friedman21006d42011-08-09 23:02:53 +00001117 setAtomic(NotAtomic);
Chris Lattnerb12261a2005-01-29 00:35:16 +00001118 AssertOK();
1119}
1120
Misha Brukmanfd939082005-04-21 23:48:37 +00001121StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Chris Lattnerb12261a2005-01-29 00:35:16 +00001122 Instruction *InsertBefore)
Owen Anderson1d0be152009-08-13 21:58:54 +00001123 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greifefe65362008-05-10 08:32:32 +00001124 OperandTraits<StoreInst>::op_begin(this),
1125 OperandTraits<StoreInst>::operands(this),
1126 InsertBefore) {
Gabor Greif6c80c382008-05-26 21:33:52 +00001127 Op<0>() = val;
1128 Op<1>() = addr;
Chris Lattner28662972005-02-05 01:38:38 +00001129 setVolatile(isVolatile);
Christopher Lamb43c7f372007-04-22 19:24:39 +00001130 setAlignment(0);
Eli Friedman21006d42011-08-09 23:02:53 +00001131 setAtomic(NotAtomic);
Christopher Lamb43c7f372007-04-22 19:24:39 +00001132 AssertOK();
1133}
1134
1135StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
1136 unsigned Align, Instruction *InsertBefore)
Owen Anderson1d0be152009-08-13 21:58:54 +00001137 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greifefe65362008-05-10 08:32:32 +00001138 OperandTraits<StoreInst>::op_begin(this),
1139 OperandTraits<StoreInst>::operands(this),
1140 InsertBefore) {
Gabor Greif6c80c382008-05-26 21:33:52 +00001141 Op<0>() = val;
1142 Op<1>() = addr;
Christopher Lamb43c7f372007-04-22 19:24:39 +00001143 setVolatile(isVolatile);
1144 setAlignment(Align);
Eli Friedman21006d42011-08-09 23:02:53 +00001145 setAtomic(NotAtomic);
Chris Lattnerb12261a2005-01-29 00:35:16 +00001146 AssertOK();
1147}
1148
Misha Brukmanfd939082005-04-21 23:48:37 +00001149StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Eli Friedman21006d42011-08-09 23:02:53 +00001150 unsigned Align, AtomicOrdering Order,
1151 SynchronizationScope SynchScope,
1152 Instruction *InsertBefore)
Owen Anderson1d0be152009-08-13 21:58:54 +00001153 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greifefe65362008-05-10 08:32:32 +00001154 OperandTraits<StoreInst>::op_begin(this),
1155 OperandTraits<StoreInst>::operands(this),
Eli Friedman21006d42011-08-09 23:02:53 +00001156 InsertBefore) {
Gabor Greif6c80c382008-05-26 21:33:52 +00001157 Op<0>() = val;
1158 Op<1>() = addr;
Dan Gohman6ab2d182007-07-18 20:51:11 +00001159 setVolatile(isVolatile);
1160 setAlignment(Align);
Eli Friedman21006d42011-08-09 23:02:53 +00001161 setAtomic(Order, SynchScope);
Dan Gohman6ab2d182007-07-18 20:51:11 +00001162 AssertOK();
1163}
1164
1165StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Chris Lattnerb12261a2005-01-29 00:35:16 +00001166 BasicBlock *InsertAtEnd)
Owen Anderson1d0be152009-08-13 21:58:54 +00001167 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greifefe65362008-05-10 08:32:32 +00001168 OperandTraits<StoreInst>::op_begin(this),
1169 OperandTraits<StoreInst>::operands(this),
1170 InsertAtEnd) {
Gabor Greif6c80c382008-05-26 21:33:52 +00001171 Op<0>() = val;
1172 Op<1>() = addr;
Chris Lattner28662972005-02-05 01:38:38 +00001173 setVolatile(isVolatile);
Christopher Lamb43c7f372007-04-22 19:24:39 +00001174 setAlignment(0);
Eli Friedman21006d42011-08-09 23:02:53 +00001175 setAtomic(NotAtomic);
1176 AssertOK();
1177}
1178
1179StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
1180 unsigned Align, BasicBlock *InsertAtEnd)
1181 : Instruction(Type::getVoidTy(val->getContext()), Store,
1182 OperandTraits<StoreInst>::op_begin(this),
1183 OperandTraits<StoreInst>::operands(this),
1184 InsertAtEnd) {
1185 Op<0>() = val;
1186 Op<1>() = addr;
1187 setVolatile(isVolatile);
1188 setAlignment(Align);
1189 setAtomic(NotAtomic);
1190 AssertOK();
1191}
1192
1193StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
1194 unsigned Align, AtomicOrdering Order,
1195 SynchronizationScope SynchScope,
1196 BasicBlock *InsertAtEnd)
1197 : Instruction(Type::getVoidTy(val->getContext()), Store,
1198 OperandTraits<StoreInst>::op_begin(this),
1199 OperandTraits<StoreInst>::operands(this),
1200 InsertAtEnd) {
1201 Op<0>() = val;
1202 Op<1>() = addr;
1203 setVolatile(isVolatile);
1204 setAlignment(Align);
1205 setAtomic(Order, SynchScope);
Chris Lattnerb12261a2005-01-29 00:35:16 +00001206 AssertOK();
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00001207}
1208
Christopher Lamb43c7f372007-04-22 19:24:39 +00001209void StoreInst::setAlignment(unsigned Align) {
1210 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
Dan Gohman138aa2a2010-07-28 20:12:04 +00001211 assert(Align <= MaximumAlignment &&
1212 "Alignment is greater than MaximumAlignment!");
Eli Friedman21006d42011-08-09 23:02:53 +00001213 setInstructionSubclassData((getSubclassDataFromInstruction() & ~(31 << 1)) |
Chris Lattnerb2406d92009-12-29 02:46:09 +00001214 ((Log2_32(Align)+1) << 1));
Dan Gohman138aa2a2010-07-28 20:12:04 +00001215 assert(getAlignment() == Align && "Alignment representation error!");
Christopher Lamb43c7f372007-04-22 19:24:39 +00001216}
1217
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00001218//===----------------------------------------------------------------------===//
Eli Friedmanff030482011-07-28 21:48:00 +00001219// AtomicCmpXchgInst Implementation
1220//===----------------------------------------------------------------------===//
1221
1222void AtomicCmpXchgInst::Init(Value *Ptr, Value *Cmp, Value *NewVal,
1223 AtomicOrdering Ordering,
1224 SynchronizationScope SynchScope) {
1225 Op<0>() = Ptr;
1226 Op<1>() = Cmp;
1227 Op<2>() = NewVal;
1228 setOrdering(Ordering);
1229 setSynchScope(SynchScope);
1230
1231 assert(getOperand(0) && getOperand(1) && getOperand(2) &&
1232 "All operands must be non-null!");
1233 assert(getOperand(0)->getType()->isPointerTy() &&
1234 "Ptr must have pointer type!");
1235 assert(getOperand(1)->getType() ==
1236 cast<PointerType>(getOperand(0)->getType())->getElementType()
1237 && "Ptr must be a pointer to Cmp type!");
1238 assert(getOperand(2)->getType() ==
1239 cast<PointerType>(getOperand(0)->getType())->getElementType()
1240 && "Ptr must be a pointer to NewVal type!");
1241 assert(Ordering != NotAtomic &&
1242 "AtomicCmpXchg instructions must be atomic!");
1243}
1244
1245AtomicCmpXchgInst::AtomicCmpXchgInst(Value *Ptr, Value *Cmp, Value *NewVal,
1246 AtomicOrdering Ordering,
1247 SynchronizationScope SynchScope,
1248 Instruction *InsertBefore)
1249 : Instruction(Cmp->getType(), AtomicCmpXchg,
1250 OperandTraits<AtomicCmpXchgInst>::op_begin(this),
1251 OperandTraits<AtomicCmpXchgInst>::operands(this),
1252 InsertBefore) {
1253 Init(Ptr, Cmp, NewVal, Ordering, SynchScope);
1254}
1255
1256AtomicCmpXchgInst::AtomicCmpXchgInst(Value *Ptr, Value *Cmp, Value *NewVal,
1257 AtomicOrdering Ordering,
1258 SynchronizationScope SynchScope,
1259 BasicBlock *InsertAtEnd)
1260 : Instruction(Cmp->getType(), AtomicCmpXchg,
1261 OperandTraits<AtomicCmpXchgInst>::op_begin(this),
1262 OperandTraits<AtomicCmpXchgInst>::operands(this),
1263 InsertAtEnd) {
1264 Init(Ptr, Cmp, NewVal, Ordering, SynchScope);
1265}
1266
1267//===----------------------------------------------------------------------===//
1268// AtomicRMWInst Implementation
1269//===----------------------------------------------------------------------===//
1270
1271void AtomicRMWInst::Init(BinOp Operation, Value *Ptr, Value *Val,
1272 AtomicOrdering Ordering,
1273 SynchronizationScope SynchScope) {
1274 Op<0>() = Ptr;
1275 Op<1>() = Val;
1276 setOperation(Operation);
1277 setOrdering(Ordering);
1278 setSynchScope(SynchScope);
1279
1280 assert(getOperand(0) && getOperand(1) &&
1281 "All operands must be non-null!");
1282 assert(getOperand(0)->getType()->isPointerTy() &&
1283 "Ptr must have pointer type!");
1284 assert(getOperand(1)->getType() ==
1285 cast<PointerType>(getOperand(0)->getType())->getElementType()
1286 && "Ptr must be a pointer to Val type!");
1287 assert(Ordering != NotAtomic &&
1288 "AtomicRMW instructions must be atomic!");
1289}
1290
1291AtomicRMWInst::AtomicRMWInst(BinOp Operation, Value *Ptr, Value *Val,
1292 AtomicOrdering Ordering,
1293 SynchronizationScope SynchScope,
1294 Instruction *InsertBefore)
1295 : Instruction(Val->getType(), AtomicRMW,
1296 OperandTraits<AtomicRMWInst>::op_begin(this),
1297 OperandTraits<AtomicRMWInst>::operands(this),
1298 InsertBefore) {
1299 Init(Operation, Ptr, Val, Ordering, SynchScope);
1300}
1301
1302AtomicRMWInst::AtomicRMWInst(BinOp Operation, Value *Ptr, Value *Val,
1303 AtomicOrdering Ordering,
1304 SynchronizationScope SynchScope,
1305 BasicBlock *InsertAtEnd)
1306 : Instruction(Val->getType(), AtomicRMW,
1307 OperandTraits<AtomicRMWInst>::op_begin(this),
1308 OperandTraits<AtomicRMWInst>::operands(this),
1309 InsertAtEnd) {
1310 Init(Operation, Ptr, Val, Ordering, SynchScope);
1311}
1312
1313//===----------------------------------------------------------------------===//
Eli Friedman47f35132011-07-25 23:16:38 +00001314// FenceInst Implementation
1315//===----------------------------------------------------------------------===//
1316
1317FenceInst::FenceInst(LLVMContext &C, AtomicOrdering Ordering,
1318 SynchronizationScope SynchScope,
1319 Instruction *InsertBefore)
1320 : Instruction(Type::getVoidTy(C), Fence, 0, 0, InsertBefore) {
1321 setOrdering(Ordering);
1322 setSynchScope(SynchScope);
1323}
1324
1325FenceInst::FenceInst(LLVMContext &C, AtomicOrdering Ordering,
1326 SynchronizationScope SynchScope,
1327 BasicBlock *InsertAtEnd)
1328 : Instruction(Type::getVoidTy(C), Fence, 0, 0, InsertAtEnd) {
1329 setOrdering(Ordering);
1330 setSynchScope(SynchScope);
1331}
1332
1333//===----------------------------------------------------------------------===//
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00001334// GetElementPtrInst Implementation
1335//===----------------------------------------------------------------------===//
1336
Jay Foada9203102011-07-25 09:48:08 +00001337void GetElementPtrInst::init(Value *Ptr, ArrayRef<Value *> IdxList,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001338 const Twine &Name) {
Jay Foada9203102011-07-25 09:48:08 +00001339 assert(NumOperands == 1 + IdxList.size() && "NumOperands not initialized?");
1340 OperandList[0] = Ptr;
1341 std::copy(IdxList.begin(), IdxList.end(), op_begin() + 1);
Matthijs Kooijman338169d2008-06-04 16:14:12 +00001342 setName(Name);
Chris Lattner38bacf22005-05-03 05:43:30 +00001343}
1344
Gabor Greifefe65362008-05-10 08:32:32 +00001345GetElementPtrInst::GetElementPtrInst(const GetElementPtrInst &GEPI)
Gabor Greifb9d9eba2008-05-27 11:03:29 +00001346 : Instruction(GEPI.getType(), GetElementPtr,
Gabor Greifb1dbcd82008-05-15 10:04:30 +00001347 OperandTraits<GetElementPtrInst>::op_end(this)
1348 - GEPI.getNumOperands(),
Gabor Greifefe65362008-05-10 08:32:32 +00001349 GEPI.getNumOperands()) {
Jay Foada9203102011-07-25 09:48:08 +00001350 std::copy(GEPI.op_begin(), GEPI.op_end(), op_begin());
Dan Gohman58cfa3b2009-08-25 22:11:20 +00001351 SubclassOptionalData = GEPI.SubclassOptionalData;
Gabor Greifefe65362008-05-10 08:32:32 +00001352}
1353
Chris Lattnerc66996a2009-03-09 04:46:40 +00001354/// getIndexedType - Returns the type of the element that would be accessed with
1355/// a gep instruction with the specified parameters.
1356///
1357/// The Idxs pointer should point to a continuous piece of memory containing the
1358/// indices, either as Value* or uint64_t.
1359///
1360/// A null type is returned if the indices are invalid for the specified
1361/// pointer type.
1362///
Matthijs Kooijmane2afded2008-07-29 08:46:11 +00001363template <typename IndexTy>
Jay Foada9203102011-07-25 09:48:08 +00001364static Type *getIndexedTypeInternal(Type *Ptr, ArrayRef<IndexTy> IdxList) {
Duncan Sands2333e292012-11-13 12:59:33 +00001365 PointerType *PTy = dyn_cast<PointerType>(Ptr->getScalarType());
Dan Gohman041e2eb2008-05-15 19:50:34 +00001366 if (!PTy) return 0; // Type isn't a pointer type!
Chris Lattner1afcace2011-07-09 17:41:24 +00001367 Type *Agg = PTy->getElementType();
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00001368
Chris Lattnerc66996a2009-03-09 04:46:40 +00001369 // Handle the special case of the empty set index set, which is always valid.
Jay Foada9203102011-07-25 09:48:08 +00001370 if (IdxList.empty())
Dan Gohman041e2eb2008-05-15 19:50:34 +00001371 return Agg;
Nadav Rotem16087692011-12-05 06:29:09 +00001372
Chris Lattnerc66996a2009-03-09 04:46:40 +00001373 // If there is at least one index, the top level type must be sized, otherwise
Chris Lattner1afcace2011-07-09 17:41:24 +00001374 // it cannot be 'stepped over'.
1375 if (!Agg->isSized())
Chris Lattnerc66996a2009-03-09 04:46:40 +00001376 return 0;
Misha Brukmanfd939082005-04-21 23:48:37 +00001377
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001378 unsigned CurIdx = 1;
Jay Foada9203102011-07-25 09:48:08 +00001379 for (; CurIdx != IdxList.size(); ++CurIdx) {
Chris Lattner1afcace2011-07-09 17:41:24 +00001380 CompositeType *CT = dyn_cast<CompositeType>(Agg);
Duncan Sands1df98592010-02-16 11:11:14 +00001381 if (!CT || CT->isPointerTy()) return 0;
Jay Foada9203102011-07-25 09:48:08 +00001382 IndexTy Index = IdxList[CurIdx];
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001383 if (!CT->indexValid(Index)) return 0;
1384 Agg = CT->getTypeAtIndex(Index);
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001385 }
Jay Foada9203102011-07-25 09:48:08 +00001386 return CurIdx == IdxList.size() ? Agg : 0;
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00001387}
1388
Jay Foada9203102011-07-25 09:48:08 +00001389Type *GetElementPtrInst::getIndexedType(Type *Ptr, ArrayRef<Value *> IdxList) {
1390 return getIndexedTypeInternal(Ptr, IdxList);
Matthijs Kooijmane2afded2008-07-29 08:46:11 +00001391}
1392
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001393Type *GetElementPtrInst::getIndexedType(Type *Ptr,
Jay Foada9203102011-07-25 09:48:08 +00001394 ArrayRef<Constant *> IdxList) {
1395 return getIndexedTypeInternal(Ptr, IdxList);
Jay Foad25052d82011-01-14 08:07:43 +00001396}
1397
Jay Foada9203102011-07-25 09:48:08 +00001398Type *GetElementPtrInst::getIndexedType(Type *Ptr, ArrayRef<uint64_t> IdxList) {
1399 return getIndexedTypeInternal(Ptr, IdxList);
Matthijs Kooijmane2afded2008-07-29 08:46:11 +00001400}
1401
Chris Lattner6f771d42007-04-14 00:12:57 +00001402/// hasAllZeroIndices - Return true if all of the indices of this GEP are
1403/// zeros. If so, the result pointer and the first operand have the same
1404/// value, just potentially different types.
1405bool GetElementPtrInst::hasAllZeroIndices() const {
1406 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
1407 if (ConstantInt *CI = dyn_cast<ConstantInt>(getOperand(i))) {
1408 if (!CI->isZero()) return false;
1409 } else {
1410 return false;
1411 }
1412 }
1413 return true;
1414}
1415
Chris Lattner6b0974c2007-04-27 20:35:56 +00001416/// hasAllConstantIndices - Return true if all of the indices of this GEP are
1417/// constant integers. If so, the result pointer and the first operand have
1418/// a constant offset between them.
1419bool GetElementPtrInst::hasAllConstantIndices() const {
1420 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
1421 if (!isa<ConstantInt>(getOperand(i)))
1422 return false;
1423 }
1424 return true;
1425}
1426
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001427void GetElementPtrInst::setIsInBounds(bool B) {
1428 cast<GEPOperator>(this)->setIsInBounds(B);
1429}
Chris Lattner6f771d42007-04-14 00:12:57 +00001430
Nick Lewyckyae05e7d2009-09-27 21:33:04 +00001431bool GetElementPtrInst::isInBounds() const {
1432 return cast<GEPOperator>(this)->isInBounds();
1433}
1434
Chandler Carruth4ced4ee2012-12-11 10:29:10 +00001435bool GetElementPtrInst::accumulateConstantOffset(const DataLayout &DL,
1436 APInt &Offset) const {
Chandler Carruth7550f962012-12-11 11:05:15 +00001437 // Delegate to the generic GEPOperator implementation.
1438 return cast<GEPOperator>(this)->accumulateConstantOffset(DL, Offset);
Chandler Carruth4ced4ee2012-12-11 10:29:10 +00001439}
1440
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00001441//===----------------------------------------------------------------------===//
Robert Bocchinob52ee7f2006-01-10 19:05:34 +00001442// ExtractElementInst Implementation
1443//===----------------------------------------------------------------------===//
1444
1445ExtractElementInst::ExtractElementInst(Value *Val, Value *Index,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001446 const Twine &Name,
Chris Lattner00f10232006-04-08 01:18:18 +00001447 Instruction *InsertBef)
Reid Spencer9d6565a2007-02-15 02:26:10 +00001448 : Instruction(cast<VectorType>(Val->getType())->getElementType(),
Gabor Greifefe65362008-05-10 08:32:32 +00001449 ExtractElement,
1450 OperandTraits<ExtractElementInst>::op_begin(this),
1451 2, InsertBef) {
Chris Lattnerd2325d02006-04-08 04:05:48 +00001452 assert(isValidOperands(Val, Index) &&
1453 "Invalid extractelement instruction operands!");
Gabor Greif6c80c382008-05-26 21:33:52 +00001454 Op<0>() = Val;
1455 Op<1>() = Index;
Chris Lattner910c80a2007-02-24 00:55:48 +00001456 setName(Name);
Robert Bocchinob52ee7f2006-01-10 19:05:34 +00001457}
1458
1459ExtractElementInst::ExtractElementInst(Value *Val, Value *Index,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001460 const Twine &Name,
Chris Lattner00f10232006-04-08 01:18:18 +00001461 BasicBlock *InsertAE)
Reid Spencer9d6565a2007-02-15 02:26:10 +00001462 : Instruction(cast<VectorType>(Val->getType())->getElementType(),
Gabor Greifefe65362008-05-10 08:32:32 +00001463 ExtractElement,
1464 OperandTraits<ExtractElementInst>::op_begin(this),
1465 2, InsertAE) {
Chris Lattnerd2325d02006-04-08 04:05:48 +00001466 assert(isValidOperands(Val, Index) &&
1467 "Invalid extractelement instruction operands!");
1468
Gabor Greif6c80c382008-05-26 21:33:52 +00001469 Op<0>() = Val;
1470 Op<1>() = Index;
Chris Lattner910c80a2007-02-24 00:55:48 +00001471 setName(Name);
Robert Bocchinob52ee7f2006-01-10 19:05:34 +00001472}
1473
Chris Lattner06a248c22006-10-05 06:24:58 +00001474
Chris Lattnerd2325d02006-04-08 04:05:48 +00001475bool ExtractElementInst::isValidOperands(const Value *Val, const Value *Index) {
Duncan Sands1df98592010-02-16 11:11:14 +00001476 if (!Val->getType()->isVectorTy() || !Index->getType()->isIntegerTy(32))
Chris Lattnerd2325d02006-04-08 04:05:48 +00001477 return false;
1478 return true;
1479}
1480
1481
Robert Bocchinob52ee7f2006-01-10 19:05:34 +00001482//===----------------------------------------------------------------------===//
Robert Bocchinoc152f9c2006-01-17 20:07:22 +00001483// InsertElementInst Implementation
1484//===----------------------------------------------------------------------===//
1485
Chris Lattnerd2325d02006-04-08 04:05:48 +00001486InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, Value *Index,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001487 const Twine &Name,
Chris Lattner00f10232006-04-08 01:18:18 +00001488 Instruction *InsertBef)
Gabor Greifefe65362008-05-10 08:32:32 +00001489 : Instruction(Vec->getType(), InsertElement,
1490 OperandTraits<InsertElementInst>::op_begin(this),
1491 3, InsertBef) {
Chris Lattnerd2325d02006-04-08 04:05:48 +00001492 assert(isValidOperands(Vec, Elt, Index) &&
1493 "Invalid insertelement instruction operands!");
Gabor Greif6c80c382008-05-26 21:33:52 +00001494 Op<0>() = Vec;
1495 Op<1>() = Elt;
1496 Op<2>() = Index;
Chris Lattner910c80a2007-02-24 00:55:48 +00001497 setName(Name);
Robert Bocchinoc152f9c2006-01-17 20:07:22 +00001498}
1499
Chris Lattnerd2325d02006-04-08 04:05:48 +00001500InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, Value *Index,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001501 const Twine &Name,
Chris Lattner00f10232006-04-08 01:18:18 +00001502 BasicBlock *InsertAE)
Gabor Greifefe65362008-05-10 08:32:32 +00001503 : Instruction(Vec->getType(), InsertElement,
1504 OperandTraits<InsertElementInst>::op_begin(this),
1505 3, InsertAE) {
Chris Lattnerd2325d02006-04-08 04:05:48 +00001506 assert(isValidOperands(Vec, Elt, Index) &&
1507 "Invalid insertelement instruction operands!");
1508
Gabor Greif6c80c382008-05-26 21:33:52 +00001509 Op<0>() = Vec;
1510 Op<1>() = Elt;
1511 Op<2>() = Index;
Chris Lattner910c80a2007-02-24 00:55:48 +00001512 setName(Name);
Robert Bocchinoc152f9c2006-01-17 20:07:22 +00001513}
1514
Chris Lattnerd2325d02006-04-08 04:05:48 +00001515bool InsertElementInst::isValidOperands(const Value *Vec, const Value *Elt,
1516 const Value *Index) {
Duncan Sands1df98592010-02-16 11:11:14 +00001517 if (!Vec->getType()->isVectorTy())
Reid Spencerac9dcb92007-02-15 03:39:18 +00001518 return false; // First operand of insertelement must be vector type.
Chris Lattnerd2325d02006-04-08 04:05:48 +00001519
Reid Spencer9d6565a2007-02-15 02:26:10 +00001520 if (Elt->getType() != cast<VectorType>(Vec->getType())->getElementType())
Dan Gohman86296cc2007-05-11 21:43:24 +00001521 return false;// Second operand of insertelement must be vector element type.
Chris Lattnerd2325d02006-04-08 04:05:48 +00001522
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001523 if (!Index->getType()->isIntegerTy(32))
Dan Gohmana119de82009-06-14 23:30:43 +00001524 return false; // Third operand of insertelement must be i32.
Chris Lattnerd2325d02006-04-08 04:05:48 +00001525 return true;
1526}
1527
1528
Robert Bocchinoc152f9c2006-01-17 20:07:22 +00001529//===----------------------------------------------------------------------===//
Chris Lattner00f10232006-04-08 01:18:18 +00001530// ShuffleVectorInst Implementation
1531//===----------------------------------------------------------------------===//
1532
1533ShuffleVectorInst::ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001534 const Twine &Name,
Chris Lattner00f10232006-04-08 01:18:18 +00001535 Instruction *InsertBefore)
Owen Andersondebcb012009-07-29 22:17:13 +00001536: Instruction(VectorType::get(cast<VectorType>(V1->getType())->getElementType(),
Mon P Wangaeb06d22008-11-10 04:46:22 +00001537 cast<VectorType>(Mask->getType())->getNumElements()),
1538 ShuffleVector,
1539 OperandTraits<ShuffleVectorInst>::op_begin(this),
1540 OperandTraits<ShuffleVectorInst>::operands(this),
1541 InsertBefore) {
Chris Lattner00f10232006-04-08 01:18:18 +00001542 assert(isValidOperands(V1, V2, Mask) &&
1543 "Invalid shuffle vector instruction operands!");
Gabor Greif6c80c382008-05-26 21:33:52 +00001544 Op<0>() = V1;
1545 Op<1>() = V2;
1546 Op<2>() = Mask;
Chris Lattner910c80a2007-02-24 00:55:48 +00001547 setName(Name);
Chris Lattner00f10232006-04-08 01:18:18 +00001548}
1549
1550ShuffleVectorInst::ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001551 const Twine &Name,
Chris Lattner00f10232006-04-08 01:18:18 +00001552 BasicBlock *InsertAtEnd)
Dan Gohman638d8532009-08-25 23:27:45 +00001553: Instruction(VectorType::get(cast<VectorType>(V1->getType())->getElementType(),
1554 cast<VectorType>(Mask->getType())->getNumElements()),
1555 ShuffleVector,
1556 OperandTraits<ShuffleVectorInst>::op_begin(this),
1557 OperandTraits<ShuffleVectorInst>::operands(this),
1558 InsertAtEnd) {
Chris Lattner00f10232006-04-08 01:18:18 +00001559 assert(isValidOperands(V1, V2, Mask) &&
1560 "Invalid shuffle vector instruction operands!");
1561
Gabor Greif6c80c382008-05-26 21:33:52 +00001562 Op<0>() = V1;
1563 Op<1>() = V2;
1564 Op<2>() = Mask;
Chris Lattner910c80a2007-02-24 00:55:48 +00001565 setName(Name);
Chris Lattner00f10232006-04-08 01:18:18 +00001566}
1567
Mon P Wangaeb06d22008-11-10 04:46:22 +00001568bool ShuffleVectorInst::isValidOperands(const Value *V1, const Value *V2,
Chris Lattner00f10232006-04-08 01:18:18 +00001569 const Value *Mask) {
Chris Lattner83694a92012-01-25 23:49:49 +00001570 // V1 and V2 must be vectors of the same type.
Duncan Sands1df98592010-02-16 11:11:14 +00001571 if (!V1->getType()->isVectorTy() || V1->getType() != V2->getType())
Chris Lattner8728f192008-03-02 05:28:33 +00001572 return false;
1573
Chris Lattner83694a92012-01-25 23:49:49 +00001574 // Mask must be vector of i32.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001575 VectorType *MaskTy = dyn_cast<VectorType>(Mask->getType());
Nate Begemana966af22010-08-13 00:16:46 +00001576 if (MaskTy == 0 || !MaskTy->getElementType()->isIntegerTy(32))
Chris Lattner00f10232006-04-08 01:18:18 +00001577 return false;
Nate Begemana966af22010-08-13 00:16:46 +00001578
1579 // Check to see if Mask is valid.
Chris Lattner83694a92012-01-25 23:49:49 +00001580 if (isa<UndefValue>(Mask) || isa<ConstantAggregateZero>(Mask))
1581 return true;
1582
Nate Begemana966af22010-08-13 00:16:46 +00001583 if (const ConstantVector *MV = dyn_cast<ConstantVector>(Mask)) {
Chris Lattner83694a92012-01-25 23:49:49 +00001584 unsigned V1Size = cast<VectorType>(V1->getType())->getNumElements();
Nate Begemana966af22010-08-13 00:16:46 +00001585 for (unsigned i = 0, e = MV->getNumOperands(); i != e; ++i) {
Chris Lattner83694a92012-01-25 23:49:49 +00001586 if (ConstantInt *CI = dyn_cast<ConstantInt>(MV->getOperand(i))) {
1587 if (CI->uge(V1Size*2))
Nate Begemana966af22010-08-13 00:16:46 +00001588 return false;
1589 } else if (!isa<UndefValue>(MV->getOperand(i))) {
1590 return false;
1591 }
1592 }
Chris Lattner83694a92012-01-25 23:49:49 +00001593 return true;
Mon P Wangcf62b372011-10-26 00:34:48 +00001594 }
Chris Lattner83694a92012-01-25 23:49:49 +00001595
1596 if (const ConstantDataSequential *CDS =
1597 dyn_cast<ConstantDataSequential>(Mask)) {
1598 unsigned V1Size = cast<VectorType>(V1->getType())->getNumElements();
1599 for (unsigned i = 0, e = MaskTy->getNumElements(); i != e; ++i)
1600 if (CDS->getElementAsInteger(i) >= V1Size*2)
1601 return false;
1602 return true;
1603 }
1604
1605 // The bitcode reader can create a place holder for a forward reference
1606 // used as the shuffle mask. When this occurs, the shuffle mask will
1607 // fall into this case and fail. To avoid this error, do this bit of
1608 // ugliness to allow such a mask pass.
1609 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(Mask))
1610 if (CE->getOpcode() == Instruction::UserOp1)
1611 return true;
1612
1613 return false;
Chris Lattner00f10232006-04-08 01:18:18 +00001614}
1615
Chris Lattner8728f192008-03-02 05:28:33 +00001616/// getMaskValue - Return the index from the shuffle mask for the specified
1617/// output result. This is either -1 if the element is undef or a number less
1618/// than 2*numelements.
Chris Lattner56243b82012-01-26 02:51:13 +00001619int ShuffleVectorInst::getMaskValue(Constant *Mask, unsigned i) {
1620 assert(i < Mask->getType()->getVectorNumElements() && "Index out of range");
1621 if (ConstantDataSequential *CDS =dyn_cast<ConstantDataSequential>(Mask))
Chris Lattner83694a92012-01-25 23:49:49 +00001622 return CDS->getElementAsInteger(i);
Chris Lattner56243b82012-01-26 02:51:13 +00001623 Constant *C = Mask->getAggregateElement(i);
Chris Lattner83694a92012-01-25 23:49:49 +00001624 if (isa<UndefValue>(C))
Chris Lattner8728f192008-03-02 05:28:33 +00001625 return -1;
Chris Lattner83694a92012-01-25 23:49:49 +00001626 return cast<ConstantInt>(C)->getZExtValue();
Chris Lattner8728f192008-03-02 05:28:33 +00001627}
1628
Chris Lattner83694a92012-01-25 23:49:49 +00001629/// getShuffleMask - Return the full mask for this instruction, where each
1630/// element is the element number and undef's are returned as -1.
Chris Lattner56243b82012-01-26 02:51:13 +00001631void ShuffleVectorInst::getShuffleMask(Constant *Mask,
1632 SmallVectorImpl<int> &Result) {
1633 unsigned NumElts = Mask->getType()->getVectorNumElements();
Chris Lattner83694a92012-01-25 23:49:49 +00001634
Chris Lattner56243b82012-01-26 02:51:13 +00001635 if (ConstantDataSequential *CDS=dyn_cast<ConstantDataSequential>(Mask)) {
Chris Lattner83694a92012-01-25 23:49:49 +00001636 for (unsigned i = 0; i != NumElts; ++i)
1637 Result.push_back(CDS->getElementAsInteger(i));
1638 return;
1639 }
Chris Lattner83694a92012-01-25 23:49:49 +00001640 for (unsigned i = 0; i != NumElts; ++i) {
1641 Constant *C = Mask->getAggregateElement(i);
1642 Result.push_back(isa<UndefValue>(C) ? -1 :
Chris Lattner220dfa72012-01-26 00:41:50 +00001643 cast<ConstantInt>(C)->getZExtValue());
Chris Lattner83694a92012-01-25 23:49:49 +00001644 }
1645}
1646
1647
Dan Gohman041e2eb2008-05-15 19:50:34 +00001648//===----------------------------------------------------------------------===//
Dan Gohmane4569942008-05-23 00:36:11 +00001649// InsertValueInst Class
1650//===----------------------------------------------------------------------===//
1651
Jay Foadfc6d3a42011-07-13 10:26:04 +00001652void InsertValueInst::init(Value *Agg, Value *Val, ArrayRef<unsigned> Idxs,
1653 const Twine &Name) {
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001654 assert(NumOperands == 2 && "NumOperands not initialized?");
Jay Foadfc6d3a42011-07-13 10:26:04 +00001655
1656 // There's no fundamental reason why we require at least one index
1657 // (other than weirdness with &*IdxBegin being invalid; see
1658 // getelementptr's init routine for example). But there's no
1659 // present need to support it.
1660 assert(Idxs.size() > 0 && "InsertValueInst must have at least one index");
1661
1662 assert(ExtractValueInst::getIndexedType(Agg->getType(), Idxs) ==
Frits van Bommela4805cf2010-12-05 20:50:26 +00001663 Val->getType() && "Inserted value must match indexed type!");
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001664 Op<0>() = Agg;
1665 Op<1>() = Val;
Dan Gohmane4569942008-05-23 00:36:11 +00001666
Jay Foadfc6d3a42011-07-13 10:26:04 +00001667 Indices.append(Idxs.begin(), Idxs.end());
Matthijs Kooijman444099f62008-06-04 14:40:55 +00001668 setName(Name);
Dan Gohmane4569942008-05-23 00:36:11 +00001669}
1670
1671InsertValueInst::InsertValueInst(const InsertValueInst &IVI)
Gabor Greifb9d9eba2008-05-27 11:03:29 +00001672 : Instruction(IVI.getType(), InsertValue,
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001673 OperandTraits<InsertValueInst>::op_begin(this), 2),
1674 Indices(IVI.Indices) {
Dan Gohman80b96262008-06-17 23:25:49 +00001675 Op<0>() = IVI.getOperand(0);
1676 Op<1>() = IVI.getOperand(1);
Dan Gohman58cfa3b2009-08-25 22:11:20 +00001677 SubclassOptionalData = IVI.SubclassOptionalData;
Dan Gohmane4569942008-05-23 00:36:11 +00001678}
1679
1680//===----------------------------------------------------------------------===//
Dan Gohman041e2eb2008-05-15 19:50:34 +00001681// ExtractValueInst Class
1682//===----------------------------------------------------------------------===//
1683
Jay Foadfc6d3a42011-07-13 10:26:04 +00001684void ExtractValueInst::init(ArrayRef<unsigned> Idxs, const Twine &Name) {
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001685 assert(NumOperands == 1 && "NumOperands not initialized?");
Dan Gohmane4569942008-05-23 00:36:11 +00001686
Jay Foadfc6d3a42011-07-13 10:26:04 +00001687 // There's no fundamental reason why we require at least one index.
1688 // But there's no present need to support it.
1689 assert(Idxs.size() > 0 && "ExtractValueInst must have at least one index");
Dan Gohmane4569942008-05-23 00:36:11 +00001690
Jay Foadfc6d3a42011-07-13 10:26:04 +00001691 Indices.append(Idxs.begin(), Idxs.end());
Matthijs Kooijman444099f62008-06-04 14:40:55 +00001692 setName(Name);
Dan Gohmane4569942008-05-23 00:36:11 +00001693}
1694
1695ExtractValueInst::ExtractValueInst(const ExtractValueInst &EVI)
Gabor Greifd4f268b2008-06-06 20:28:12 +00001696 : UnaryInstruction(EVI.getType(), ExtractValue, EVI.getOperand(0)),
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001697 Indices(EVI.Indices) {
Dan Gohman58cfa3b2009-08-25 22:11:20 +00001698 SubclassOptionalData = EVI.SubclassOptionalData;
Dan Gohmane4569942008-05-23 00:36:11 +00001699}
1700
Dan Gohman041e2eb2008-05-15 19:50:34 +00001701// getIndexedType - Returns the type of the element that would be extracted
1702// with an extractvalue instruction with the specified parameters.
1703//
1704// A null type is returned if the indices are invalid for the specified
1705// pointer type.
1706//
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001707Type *ExtractValueInst::getIndexedType(Type *Agg,
Jay Foadfc6d3a42011-07-13 10:26:04 +00001708 ArrayRef<unsigned> Idxs) {
1709 for (unsigned CurIdx = 0; CurIdx != Idxs.size(); ++CurIdx) {
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001710 unsigned Index = Idxs[CurIdx];
Frits van Bommela4805cf2010-12-05 20:50:26 +00001711 // We can't use CompositeType::indexValid(Index) here.
1712 // indexValid() always returns true for arrays because getelementptr allows
1713 // out-of-bounds indices. Since we don't allow those for extractvalue and
1714 // insertvalue we need to check array indexing manually.
1715 // Since the only other types we can index into are struct types it's just
1716 // as easy to check those manually as well.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001717 if (ArrayType *AT = dyn_cast<ArrayType>(Agg)) {
Frits van Bommela4805cf2010-12-05 20:50:26 +00001718 if (Index >= AT->getNumElements())
1719 return 0;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001720 } else if (StructType *ST = dyn_cast<StructType>(Agg)) {
Frits van Bommela4805cf2010-12-05 20:50:26 +00001721 if (Index >= ST->getNumElements())
1722 return 0;
1723 } else {
1724 // Not a valid type to index into.
1725 return 0;
1726 }
1727
1728 Agg = cast<CompositeType>(Agg)->getTypeAtIndex(Index);
Dan Gohman041e2eb2008-05-15 19:50:34 +00001729 }
Chris Lattner1afcace2011-07-09 17:41:24 +00001730 return const_cast<Type*>(Agg);
Dan Gohman041e2eb2008-05-15 19:50:34 +00001731}
Chris Lattner00f10232006-04-08 01:18:18 +00001732
1733//===----------------------------------------------------------------------===//
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00001734// BinaryOperator Class
1735//===----------------------------------------------------------------------===//
1736
Chris Lattner910c80a2007-02-24 00:55:48 +00001737BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001738 Type *Ty, const Twine &Name,
Chris Lattner910c80a2007-02-24 00:55:48 +00001739 Instruction *InsertBefore)
Dan Gohman1eaac532010-05-03 22:44:19 +00001740 : Instruction(Ty, iType,
Gabor Greifefe65362008-05-10 08:32:32 +00001741 OperandTraits<BinaryOperator>::op_begin(this),
1742 OperandTraits<BinaryOperator>::operands(this),
1743 InsertBefore) {
Gabor Greif6c80c382008-05-26 21:33:52 +00001744 Op<0>() = S1;
1745 Op<1>() = S2;
Dan Gohman1eaac532010-05-03 22:44:19 +00001746 init(iType);
Chris Lattner910c80a2007-02-24 00:55:48 +00001747 setName(Name);
1748}
1749
1750BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001751 Type *Ty, const Twine &Name,
Chris Lattner910c80a2007-02-24 00:55:48 +00001752 BasicBlock *InsertAtEnd)
Dan Gohman1eaac532010-05-03 22:44:19 +00001753 : Instruction(Ty, iType,
Gabor Greifefe65362008-05-10 08:32:32 +00001754 OperandTraits<BinaryOperator>::op_begin(this),
1755 OperandTraits<BinaryOperator>::operands(this),
1756 InsertAtEnd) {
Gabor Greif6c80c382008-05-26 21:33:52 +00001757 Op<0>() = S1;
1758 Op<1>() = S2;
Dan Gohman1eaac532010-05-03 22:44:19 +00001759 init(iType);
Chris Lattner910c80a2007-02-24 00:55:48 +00001760 setName(Name);
1761}
1762
1763
1764void BinaryOperator::init(BinaryOps iType) {
Chris Lattnerb12261a2005-01-29 00:35:16 +00001765 Value *LHS = getOperand(0), *RHS = getOperand(1);
Jeffrey Yasskin8e68c382010-12-23 00:58:24 +00001766 (void)LHS; (void)RHS; // Silence warnings.
Chris Lattnerb12261a2005-01-29 00:35:16 +00001767 assert(LHS->getType() == RHS->getType() &&
1768 "Binary operator operand types must match!");
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00001769#ifndef NDEBUG
1770 switch (iType) {
1771 case Add: case Sub:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00001772 case Mul:
Chris Lattnerb12261a2005-01-29 00:35:16 +00001773 assert(getType() == LHS->getType() &&
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00001774 "Arithmetic operation should return same type as operands!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001775 assert(getType()->isIntOrIntVectorTy() &&
Dan Gohmanae3a0be2009-06-04 22:49:04 +00001776 "Tried to create an integer operation on a non-integer type!");
1777 break;
1778 case FAdd: case FSub:
1779 case FMul:
1780 assert(getType() == LHS->getType() &&
1781 "Arithmetic operation should return same type as operands!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001782 assert(getType()->isFPOrFPVectorTy() &&
Dan Gohmanae3a0be2009-06-04 22:49:04 +00001783 "Tried to create a floating-point operation on a "
1784 "non-floating-point type!");
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00001785 break;
Reid Spencer1628cec2006-10-26 06:15:43 +00001786 case UDiv:
1787 case SDiv:
1788 assert(getType() == LHS->getType() &&
1789 "Arithmetic operation should return same type as operands!");
Duncan Sands1df98592010-02-16 11:11:14 +00001790 assert((getType()->isIntegerTy() || (getType()->isVectorTy() &&
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001791 cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
Reid Spencer1628cec2006-10-26 06:15:43 +00001792 "Incorrect operand type (not integer) for S/UDIV");
1793 break;
1794 case FDiv:
1795 assert(getType() == LHS->getType() &&
1796 "Arithmetic operation should return same type as operands!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001797 assert(getType()->isFPOrFPVectorTy() &&
Dan Gohmanf57478f2009-06-15 22:25:12 +00001798 "Incorrect operand type (not floating point) for FDIV");
Reid Spencer1628cec2006-10-26 06:15:43 +00001799 break;
Reid Spencer0a783f72006-11-02 01:53:59 +00001800 case URem:
1801 case SRem:
1802 assert(getType() == LHS->getType() &&
1803 "Arithmetic operation should return same type as operands!");
Duncan Sands1df98592010-02-16 11:11:14 +00001804 assert((getType()->isIntegerTy() || (getType()->isVectorTy() &&
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001805 cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
Reid Spencer0a783f72006-11-02 01:53:59 +00001806 "Incorrect operand type (not integer) for S/UREM");
1807 break;
1808 case FRem:
1809 assert(getType() == LHS->getType() &&
1810 "Arithmetic operation should return same type as operands!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001811 assert(getType()->isFPOrFPVectorTy() &&
Dan Gohmanf57478f2009-06-15 22:25:12 +00001812 "Incorrect operand type (not floating point) for FREM");
Reid Spencer0a783f72006-11-02 01:53:59 +00001813 break;
Reid Spencer832254e2007-02-02 02:16:23 +00001814 case Shl:
1815 case LShr:
1816 case AShr:
1817 assert(getType() == LHS->getType() &&
1818 "Shift operation should return same type as operands!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001819 assert((getType()->isIntegerTy() ||
Duncan Sands1df98592010-02-16 11:11:14 +00001820 (getType()->isVectorTy() &&
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001821 cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
Nate Begeman5bc1ea02008-07-29 15:49:41 +00001822 "Tried to create a shift operation on a non-integral type!");
Reid Spencer832254e2007-02-02 02:16:23 +00001823 break;
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00001824 case And: case Or:
1825 case Xor:
Chris Lattnerb12261a2005-01-29 00:35:16 +00001826 assert(getType() == LHS->getType() &&
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00001827 "Logical operation should return same type as operands!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001828 assert((getType()->isIntegerTy() ||
Duncan Sands1df98592010-02-16 11:11:14 +00001829 (getType()->isVectorTy() &&
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001830 cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
Misha Brukman1bae2912005-01-27 06:46:38 +00001831 "Tried to create a logical operation on a non-integral type!");
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00001832 break;
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00001833 default:
1834 break;
1835 }
1836#endif
1837}
1838
Gabor Greif7cbd8a32008-05-16 19:29:10 +00001839BinaryOperator *BinaryOperator::Create(BinaryOps Op, Value *S1, Value *S2,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001840 const Twine &Name,
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00001841 Instruction *InsertBefore) {
1842 assert(S1->getType() == S2->getType() &&
1843 "Cannot create binary operator with two operands of differing type!");
Reid Spencere4d87aa2006-12-23 06:05:41 +00001844 return new BinaryOperator(Op, S1, S2, S1->getType(), Name, InsertBefore);
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00001845}
1846
Gabor Greif7cbd8a32008-05-16 19:29:10 +00001847BinaryOperator *BinaryOperator::Create(BinaryOps Op, Value *S1, Value *S2,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001848 const Twine &Name,
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00001849 BasicBlock *InsertAtEnd) {
Gabor Greif7cbd8a32008-05-16 19:29:10 +00001850 BinaryOperator *Res = Create(Op, S1, S2, Name);
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00001851 InsertAtEnd->getInstList().push_back(Res);
1852 return Res;
1853}
1854
Dan Gohman4ae51262009-08-12 16:23:25 +00001855BinaryOperator *BinaryOperator::CreateNeg(Value *Op, const Twine &Name,
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00001856 Instruction *InsertBefore) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00001857 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Reid Spencer24d6da52007-01-21 00:29:26 +00001858 return new BinaryOperator(Instruction::Sub,
1859 zero, Op,
1860 Op->getType(), Name, InsertBefore);
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00001861}
1862
Dan Gohman4ae51262009-08-12 16:23:25 +00001863BinaryOperator *BinaryOperator::CreateNeg(Value *Op, const Twine &Name,
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00001864 BasicBlock *InsertAtEnd) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00001865 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Reid Spencer24d6da52007-01-21 00:29:26 +00001866 return new BinaryOperator(Instruction::Sub,
1867 zero, Op,
1868 Op->getType(), Name, InsertAtEnd);
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00001869}
1870
Dan Gohmanbdc46c62009-12-18 02:58:50 +00001871BinaryOperator *BinaryOperator::CreateNSWNeg(Value *Op, const Twine &Name,
1872 Instruction *InsertBefore) {
1873 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1874 return BinaryOperator::CreateNSWSub(zero, Op, Name, InsertBefore);
1875}
1876
1877BinaryOperator *BinaryOperator::CreateNSWNeg(Value *Op, const Twine &Name,
1878 BasicBlock *InsertAtEnd) {
1879 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1880 return BinaryOperator::CreateNSWSub(zero, Op, Name, InsertAtEnd);
1881}
1882
Duncan Sands8991d512010-02-02 12:53:04 +00001883BinaryOperator *BinaryOperator::CreateNUWNeg(Value *Op, const Twine &Name,
1884 Instruction *InsertBefore) {
1885 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1886 return BinaryOperator::CreateNUWSub(zero, Op, Name, InsertBefore);
1887}
1888
1889BinaryOperator *BinaryOperator::CreateNUWNeg(Value *Op, const Twine &Name,
1890 BasicBlock *InsertAtEnd) {
1891 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1892 return BinaryOperator::CreateNUWSub(zero, Op, Name, InsertAtEnd);
1893}
1894
Dan Gohman4ae51262009-08-12 16:23:25 +00001895BinaryOperator *BinaryOperator::CreateFNeg(Value *Op, const Twine &Name,
Dan Gohmanae3a0be2009-06-04 22:49:04 +00001896 Instruction *InsertBefore) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00001897 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Chris Lattner4ca829e2012-01-25 06:02:56 +00001898 return new BinaryOperator(Instruction::FSub, zero, Op,
Dan Gohmanae3a0be2009-06-04 22:49:04 +00001899 Op->getType(), Name, InsertBefore);
1900}
1901
Dan Gohman4ae51262009-08-12 16:23:25 +00001902BinaryOperator *BinaryOperator::CreateFNeg(Value *Op, const Twine &Name,
Dan Gohmanae3a0be2009-06-04 22:49:04 +00001903 BasicBlock *InsertAtEnd) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00001904 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Chris Lattner4ca829e2012-01-25 06:02:56 +00001905 return new BinaryOperator(Instruction::FSub, zero, Op,
Dan Gohmanae3a0be2009-06-04 22:49:04 +00001906 Op->getType(), Name, InsertAtEnd);
1907}
1908
Dan Gohman4ae51262009-08-12 16:23:25 +00001909BinaryOperator *BinaryOperator::CreateNot(Value *Op, const Twine &Name,
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00001910 Instruction *InsertBefore) {
Chris Lattner4ca829e2012-01-25 06:02:56 +00001911 Constant *C = Constant::getAllOnesValue(Op->getType());
Chris Lattnerfdbc82a2006-03-25 21:54:21 +00001912 return new BinaryOperator(Instruction::Xor, Op, C,
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00001913 Op->getType(), Name, InsertBefore);
1914}
1915
Dan Gohman4ae51262009-08-12 16:23:25 +00001916BinaryOperator *BinaryOperator::CreateNot(Value *Op, const Twine &Name,
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00001917 BasicBlock *InsertAtEnd) {
Chris Lattner4ca829e2012-01-25 06:02:56 +00001918 Constant *AllOnes = Constant::getAllOnesValue(Op->getType());
Chris Lattnerb9d41002005-12-21 18:22:19 +00001919 return new BinaryOperator(Instruction::Xor, Op, AllOnes,
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00001920 Op->getType(), Name, InsertAtEnd);
1921}
1922
1923
1924// isConstantAllOnes - Helper function for several functions below
1925static inline bool isConstantAllOnes(const Value *V) {
Chris Lattnera78fa8c2012-01-27 03:08:05 +00001926 if (const Constant *C = dyn_cast<Constant>(V))
1927 return C->isAllOnesValue();
Chris Lattnere20b7be2007-06-15 06:04:24 +00001928 return false;
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00001929}
1930
Owen Andersonfa82b6e2009-07-13 22:18:28 +00001931bool BinaryOperator::isNeg(const Value *V) {
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00001932 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1933 if (Bop->getOpcode() == Instruction::Sub)
Owen Andersonfa82b6e2009-07-13 22:18:28 +00001934 if (Constant* C = dyn_cast<Constant>(Bop->getOperand(0)))
1935 return C->isNegativeZeroValue();
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00001936 return false;
1937}
1938
Shuxin Yang935e35d2013-01-09 00:13:41 +00001939bool BinaryOperator::isFNeg(const Value *V, bool IgnoreZeroSign) {
Dan Gohmanae3a0be2009-06-04 22:49:04 +00001940 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1941 if (Bop->getOpcode() == Instruction::FSub)
Shuxin Yang935e35d2013-01-09 00:13:41 +00001942 if (Constant* C = dyn_cast<Constant>(Bop->getOperand(0))) {
1943 if (!IgnoreZeroSign)
1944 IgnoreZeroSign = cast<Instruction>(V)->hasNoSignedZeros();
1945 return !IgnoreZeroSign ? C->isNegativeZeroValue() : C->isZeroValue();
1946 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00001947 return false;
1948}
1949
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00001950bool BinaryOperator::isNot(const Value *V) {
1951 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1952 return (Bop->getOpcode() == Instruction::Xor &&
1953 (isConstantAllOnes(Bop->getOperand(1)) ||
1954 isConstantAllOnes(Bop->getOperand(0))));
1955 return false;
1956}
1957
Chris Lattner64001d02005-04-24 07:28:37 +00001958Value *BinaryOperator::getNegArgument(Value *BinOp) {
Chris Lattner64001d02005-04-24 07:28:37 +00001959 return cast<BinaryOperator>(BinOp)->getOperand(1);
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00001960}
1961
Chris Lattner64001d02005-04-24 07:28:37 +00001962const Value *BinaryOperator::getNegArgument(const Value *BinOp) {
1963 return getNegArgument(const_cast<Value*>(BinOp));
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00001964}
1965
Dan Gohmanae3a0be2009-06-04 22:49:04 +00001966Value *BinaryOperator::getFNegArgument(Value *BinOp) {
Dan Gohmanae3a0be2009-06-04 22:49:04 +00001967 return cast<BinaryOperator>(BinOp)->getOperand(1);
1968}
1969
1970const Value *BinaryOperator::getFNegArgument(const Value *BinOp) {
1971 return getFNegArgument(const_cast<Value*>(BinOp));
1972}
1973
Chris Lattner64001d02005-04-24 07:28:37 +00001974Value *BinaryOperator::getNotArgument(Value *BinOp) {
1975 assert(isNot(BinOp) && "getNotArgument on non-'not' instruction!");
1976 BinaryOperator *BO = cast<BinaryOperator>(BinOp);
1977 Value *Op0 = BO->getOperand(0);
1978 Value *Op1 = BO->getOperand(1);
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00001979 if (isConstantAllOnes(Op0)) return Op1;
1980
1981 assert(isConstantAllOnes(Op1));
1982 return Op0;
1983}
1984
Chris Lattner64001d02005-04-24 07:28:37 +00001985const Value *BinaryOperator::getNotArgument(const Value *BinOp) {
1986 return getNotArgument(const_cast<Value*>(BinOp));
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00001987}
1988
1989
1990// swapOperands - Exchange the two operands to this instruction. This
1991// instruction is safe to use on any binary instruction and does not
1992// modify the semantics of the instruction. If the instruction is
1993// order dependent (SetLT f.e.) the opcode is changed.
1994//
1995bool BinaryOperator::swapOperands() {
Reid Spencere4d87aa2006-12-23 06:05:41 +00001996 if (!isCommutative())
1997 return true; // Can't commute operands
Gabor Greif94fb68b2008-05-13 22:51:52 +00001998 Op<0>().swap(Op<1>());
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00001999 return false;
2000}
2001
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002002void BinaryOperator::setHasNoUnsignedWrap(bool b) {
2003 cast<OverflowingBinaryOperator>(this)->setHasNoUnsignedWrap(b);
2004}
2005
2006void BinaryOperator::setHasNoSignedWrap(bool b) {
2007 cast<OverflowingBinaryOperator>(this)->setHasNoSignedWrap(b);
2008}
2009
2010void BinaryOperator::setIsExact(bool b) {
Chris Lattner35bda892011-02-06 21:44:57 +00002011 cast<PossiblyExactOperator>(this)->setIsExact(b);
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002012}
2013
Nick Lewyckyae05e7d2009-09-27 21:33:04 +00002014bool BinaryOperator::hasNoUnsignedWrap() const {
2015 return cast<OverflowingBinaryOperator>(this)->hasNoUnsignedWrap();
2016}
2017
2018bool BinaryOperator::hasNoSignedWrap() const {
2019 return cast<OverflowingBinaryOperator>(this)->hasNoSignedWrap();
2020}
2021
2022bool BinaryOperator::isExact() const {
Chris Lattner35bda892011-02-06 21:44:57 +00002023 return cast<PossiblyExactOperator>(this)->isExact();
Nick Lewyckyae05e7d2009-09-27 21:33:04 +00002024}
2025
Chris Lattner79bc3322006-09-18 04:54:57 +00002026//===----------------------------------------------------------------------===//
Duncan Sands8883c432012-04-16 16:28:59 +00002027// FPMathOperator Class
2028//===----------------------------------------------------------------------===//
2029
2030/// getFPAccuracy - Get the maximum error permitted by this operation in ULPs.
2031/// An accuracy of 0.0 means that the operation should be performed with the
Duncan Sands2867c852012-04-16 19:39:33 +00002032/// default precision.
Duncan Sands8883c432012-04-16 16:28:59 +00002033float FPMathOperator::getFPAccuracy() const {
2034 const MDNode *MD =
2035 cast<Instruction>(this)->getMetadata(LLVMContext::MD_fpmath);
2036 if (!MD)
2037 return 0.0;
Duncan Sands2867c852012-04-16 19:39:33 +00002038 ConstantFP *Accuracy = cast<ConstantFP>(MD->getOperand(0));
2039 return Accuracy->getValueAPF().convertToFloat();
Duncan Sands8883c432012-04-16 16:28:59 +00002040}
2041
2042
2043//===----------------------------------------------------------------------===//
Chris Lattner79bc3322006-09-18 04:54:57 +00002044// CastInst Class
2045//===----------------------------------------------------------------------===//
2046
David Blaikie0becc962011-12-01 08:00:17 +00002047void CastInst::anchor() {}
2048
Reid Spencer3da59db2006-11-27 01:05:10 +00002049// Just determine if this cast only deals with integral->integral conversion.
2050bool CastInst::isIntegerCast() const {
2051 switch (getOpcode()) {
2052 default: return false;
2053 case Instruction::ZExt:
2054 case Instruction::SExt:
2055 case Instruction::Trunc:
2056 return true;
2057 case Instruction::BitCast:
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002058 return getOperand(0)->getType()->isIntegerTy() &&
2059 getType()->isIntegerTy();
Reid Spencer3da59db2006-11-27 01:05:10 +00002060 }
Chris Lattner79bc3322006-09-18 04:54:57 +00002061}
2062
Reid Spencer3da59db2006-11-27 01:05:10 +00002063bool CastInst::isLosslessCast() const {
2064 // Only BitCast can be lossless, exit fast if we're not BitCast
2065 if (getOpcode() != Instruction::BitCast)
2066 return false;
2067
2068 // Identity cast is always lossless
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002069 Type* SrcTy = getOperand(0)->getType();
2070 Type* DstTy = getType();
Reid Spencer3da59db2006-11-27 01:05:10 +00002071 if (SrcTy == DstTy)
2072 return true;
2073
Reid Spencer79e21d32006-12-31 05:26:44 +00002074 // Pointer to pointer is always lossless.
Duncan Sands1df98592010-02-16 11:11:14 +00002075 if (SrcTy->isPointerTy())
2076 return DstTy->isPointerTy();
Reid Spencer3da59db2006-11-27 01:05:10 +00002077 return false; // Other types have no identity values
2078}
2079
2080/// This function determines if the CastInst does not require any bits to be
2081/// changed in order to effect the cast. Essentially, it identifies cases where
2082/// no code gen is necessary for the cast, hence the name no-op cast. For
2083/// example, the following are all no-op casts:
Dan Gohman9b38d7d2008-05-12 16:34:30 +00002084/// # bitcast i32* %x to i8*
2085/// # bitcast <2 x i32> %x to <4 x i16>
2086/// # ptrtoint i32* %x to i32 ; on 32-bit plaforms only
Dan Gohman2c048ea2010-05-28 21:41:37 +00002087/// @brief Determine if the described cast is a no-op.
2088bool CastInst::isNoopCast(Instruction::CastOps Opcode,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002089 Type *SrcTy,
2090 Type *DestTy,
2091 Type *IntPtrTy) {
Dan Gohman2c048ea2010-05-28 21:41:37 +00002092 switch (Opcode) {
Craig Topper50bee422012-02-05 22:14:15 +00002093 default: llvm_unreachable("Invalid CastOp");
Reid Spencer3da59db2006-11-27 01:05:10 +00002094 case Instruction::Trunc:
2095 case Instruction::ZExt:
2096 case Instruction::SExt:
2097 case Instruction::FPTrunc:
2098 case Instruction::FPExt:
2099 case Instruction::UIToFP:
2100 case Instruction::SIToFP:
2101 case Instruction::FPToUI:
2102 case Instruction::FPToSI:
2103 return false; // These always modify bits
2104 case Instruction::BitCast:
2105 return true; // BitCast never modifies bits.
2106 case Instruction::PtrToInt:
Dan Gohman6de29f82009-06-15 22:12:54 +00002107 return IntPtrTy->getScalarSizeInBits() ==
Dan Gohman2c048ea2010-05-28 21:41:37 +00002108 DestTy->getScalarSizeInBits();
Reid Spencer3da59db2006-11-27 01:05:10 +00002109 case Instruction::IntToPtr:
Dan Gohman6de29f82009-06-15 22:12:54 +00002110 return IntPtrTy->getScalarSizeInBits() ==
Dan Gohman2c048ea2010-05-28 21:41:37 +00002111 SrcTy->getScalarSizeInBits();
Reid Spencer3da59db2006-11-27 01:05:10 +00002112 }
2113}
2114
Dan Gohman2c048ea2010-05-28 21:41:37 +00002115/// @brief Determine if a cast is a no-op.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002116bool CastInst::isNoopCast(Type *IntPtrTy) const {
Dan Gohman2c048ea2010-05-28 21:41:37 +00002117 return isNoopCast(getOpcode(), getOperand(0)->getType(), getType(), IntPtrTy);
2118}
2119
Reid Spencer3da59db2006-11-27 01:05:10 +00002120/// This function determines if a pair of casts can be eliminated and what
2121/// opcode should be used in the elimination. This assumes that there are two
2122/// instructions like this:
2123/// * %F = firstOpcode SrcTy %x to MidTy
2124/// * %S = secondOpcode MidTy %F to DstTy
2125/// The function returns a resultOpcode so these two casts can be replaced with:
2126/// * %Replacement = resultOpcode %SrcTy %x to DstTy
2127/// If no such cast is permited, the function returns 0.
2128unsigned CastInst::isEliminableCastPair(
2129 Instruction::CastOps firstOp, Instruction::CastOps secondOp,
Duncan Sands446cf942012-10-30 16:03:32 +00002130 Type *SrcTy, Type *MidTy, Type *DstTy, Type *SrcIntPtrTy, Type *MidIntPtrTy,
2131 Type *DstIntPtrTy) {
Reid Spencer3da59db2006-11-27 01:05:10 +00002132 // Define the 144 possibilities for these two cast instructions. The values
2133 // in this matrix determine what to do in a given situation and select the
2134 // case in the switch below. The rows correspond to firstOp, the columns
2135 // correspond to secondOp. In looking at the table below, keep in mind
2136 // the following cast properties:
2137 //
2138 // Size Compare Source Destination
2139 // Operator Src ? Size Type Sign Type Sign
2140 // -------- ------------ ------------------- ---------------------
2141 // TRUNC > Integer Any Integral Any
2142 // ZEXT < Integral Unsigned Integer Any
2143 // SEXT < Integral Signed Integer Any
2144 // FPTOUI n/a FloatPt n/a Integral Unsigned
2145 // FPTOSI n/a FloatPt n/a Integral Signed
2146 // UITOFP n/a Integral Unsigned FloatPt n/a
2147 // SITOFP n/a Integral Signed FloatPt n/a
2148 // FPTRUNC > FloatPt n/a FloatPt n/a
2149 // FPEXT < FloatPt n/a FloatPt n/a
2150 // PTRTOINT n/a Pointer n/a Integral Unsigned
2151 // INTTOPTR n/a Integral Unsigned Pointer n/a
Dan Gohmana5ced592010-04-07 23:22:42 +00002152 // BITCAST = FirstClass n/a FirstClass n/a
Chris Lattner518f6fa2006-12-05 23:43:59 +00002153 //
2154 // NOTE: some transforms are safe, but we consider them to be non-profitable.
Dan Gohmana119de82009-06-14 23:30:43 +00002155 // For example, we could merge "fptoui double to i32" + "zext i32 to i64",
2156 // into "fptoui double to i64", but this loses information about the range
Chris Lattner518f6fa2006-12-05 23:43:59 +00002157 // of the produced value (we no longer know the top-part is all zeros).
2158 // Further this conversion is often much more expensive for typical hardware,
2159 // and causes issues when building libgcc. We disallow fptosi+sext for the
2160 // same reason.
Reid Spencer3da59db2006-11-27 01:05:10 +00002161 const unsigned numCastOps =
2162 Instruction::CastOpsEnd - Instruction::CastOpsBegin;
2163 static const uint8_t CastResults[numCastOps][numCastOps] = {
2164 // T F F U S F F P I B -+
2165 // R Z S P P I I T P 2 N T |
2166 // U E E 2 2 2 2 R E I T C +- secondOp
2167 // N X X U S F F N X N 2 V |
2168 // C T T I I P P C T T P T -+
2169 { 1, 0, 0,99,99, 0, 0,99,99,99, 0, 3 }, // Trunc -+
2170 { 8, 1, 9,99,99, 2, 0,99,99,99, 2, 3 }, // ZExt |
2171 { 8, 0, 1,99,99, 0, 2,99,99,99, 0, 3 }, // SExt |
Chris Lattner518f6fa2006-12-05 23:43:59 +00002172 { 0, 0, 0,99,99, 0, 0,99,99,99, 0, 3 }, // FPToUI |
2173 { 0, 0, 0,99,99, 0, 0,99,99,99, 0, 3 }, // FPToSI |
Reid Spencer3da59db2006-11-27 01:05:10 +00002174 { 99,99,99, 0, 0,99,99, 0, 0,99,99, 4 }, // UIToFP +- firstOp
2175 { 99,99,99, 0, 0,99,99, 0, 0,99,99, 4 }, // SIToFP |
2176 { 99,99,99, 0, 0,99,99, 1, 0,99,99, 4 }, // FPTrunc |
2177 { 99,99,99, 2, 2,99,99,10, 2,99,99, 4 }, // FPExt |
2178 { 1, 0, 0,99,99, 0, 0,99,99,99, 7, 3 }, // PtrToInt |
2179 { 99,99,99,99,99,99,99,99,99,13,99,12 }, // IntToPtr |
2180 { 5, 5, 5, 6, 6, 5, 5, 6, 6,11, 5, 1 }, // BitCast -+
2181 };
Chris Lattnerdfd36262010-07-12 01:19:22 +00002182
2183 // If either of the casts are a bitcast from scalar to vector, disallow the
Nadav Rotem89879ec2011-08-29 19:58:36 +00002184 // merging. However, bitcast of A->B->A are allowed.
2185 bool isFirstBitcast = (firstOp == Instruction::BitCast);
2186 bool isSecondBitcast = (secondOp == Instruction::BitCast);
2187 bool chainedBitcast = (SrcTy == DstTy && isFirstBitcast && isSecondBitcast);
2188
2189 // Check if any of the bitcasts convert scalars<->vectors.
2190 if ((isFirstBitcast && isa<VectorType>(SrcTy) != isa<VectorType>(MidTy)) ||
2191 (isSecondBitcast && isa<VectorType>(MidTy) != isa<VectorType>(DstTy)))
2192 // Unless we are bitcasing to the original type, disallow optimizations.
2193 if (!chainedBitcast) return 0;
Reid Spencer3da59db2006-11-27 01:05:10 +00002194
2195 int ElimCase = CastResults[firstOp-Instruction::CastOpsBegin]
2196 [secondOp-Instruction::CastOpsBegin];
2197 switch (ElimCase) {
2198 case 0:
2199 // categorically disallowed
2200 return 0;
2201 case 1:
2202 // allowed, use first cast's opcode
2203 return firstOp;
2204 case 2:
2205 // allowed, use second cast's opcode
2206 return secondOp;
2207 case 3:
2208 // no-op cast in second op implies firstOp as long as the DestTy
Mon P Wange4a0a152010-01-23 04:35:57 +00002209 // is integer and we are not converting between a vector and a
Chris Lattner33b17582010-01-23 04:42:42 +00002210 // non vector type.
Duncan Sands1df98592010-02-16 11:11:14 +00002211 if (!SrcTy->isVectorTy() && DstTy->isIntegerTy())
Reid Spencer3da59db2006-11-27 01:05:10 +00002212 return firstOp;
2213 return 0;
2214 case 4:
2215 // no-op cast in second op implies firstOp as long as the DestTy
Chris Lattner33b17582010-01-23 04:42:42 +00002216 // is floating point.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002217 if (DstTy->isFloatingPointTy())
Reid Spencer3da59db2006-11-27 01:05:10 +00002218 return firstOp;
2219 return 0;
2220 case 5:
2221 // no-op cast in first op implies secondOp as long as the SrcTy
Chris Lattner33b17582010-01-23 04:42:42 +00002222 // is an integer.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002223 if (SrcTy->isIntegerTy())
Reid Spencer3da59db2006-11-27 01:05:10 +00002224 return secondOp;
2225 return 0;
2226 case 6:
2227 // no-op cast in first op implies secondOp as long as the SrcTy
Chris Lattner33b17582010-01-23 04:42:42 +00002228 // is a floating point.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002229 if (SrcTy->isFloatingPointTy())
Reid Spencer3da59db2006-11-27 01:05:10 +00002230 return secondOp;
2231 return 0;
2232 case 7: {
2233 // ptrtoint, inttoptr -> bitcast (ptr -> ptr) if int size is >= ptr size
Duncan Sands446cf942012-10-30 16:03:32 +00002234 if (!SrcIntPtrTy || DstIntPtrTy != SrcIntPtrTy)
Dan Gohman295643b2009-07-21 23:19:40 +00002235 return 0;
Duncan Sands446cf942012-10-30 16:03:32 +00002236 unsigned PtrSize = SrcIntPtrTy->getScalarSizeInBits();
Dan Gohman6de29f82009-06-15 22:12:54 +00002237 unsigned MidSize = MidTy->getScalarSizeInBits();
Reid Spencer3da59db2006-11-27 01:05:10 +00002238 if (MidSize >= PtrSize)
2239 return Instruction::BitCast;
2240 return 0;
2241 }
2242 case 8: {
2243 // ext, trunc -> bitcast, if the SrcTy and DstTy are same size
2244 // ext, trunc -> ext, if sizeof(SrcTy) < sizeof(DstTy)
2245 // ext, trunc -> trunc, if sizeof(SrcTy) > sizeof(DstTy)
Dan Gohman6de29f82009-06-15 22:12:54 +00002246 unsigned SrcSize = SrcTy->getScalarSizeInBits();
2247 unsigned DstSize = DstTy->getScalarSizeInBits();
Reid Spencer3da59db2006-11-27 01:05:10 +00002248 if (SrcSize == DstSize)
2249 return Instruction::BitCast;
2250 else if (SrcSize < DstSize)
2251 return firstOp;
2252 return secondOp;
2253 }
2254 case 9: // zext, sext -> zext, because sext can't sign extend after zext
2255 return Instruction::ZExt;
2256 case 10:
2257 // fpext followed by ftrunc is allowed if the bit size returned to is
2258 // the same as the original, in which case its just a bitcast
2259 if (SrcTy == DstTy)
2260 return Instruction::BitCast;
2261 return 0; // If the types are not the same we can't eliminate it.
2262 case 11:
2263 // bitcast followed by ptrtoint is allowed as long as the bitcast
2264 // is a pointer to pointer cast.
Duncan Sands1df98592010-02-16 11:11:14 +00002265 if (SrcTy->isPointerTy() && MidTy->isPointerTy())
Reid Spencer3da59db2006-11-27 01:05:10 +00002266 return secondOp;
2267 return 0;
2268 case 12:
2269 // inttoptr, bitcast -> intptr if bitcast is a ptr to ptr cast
Duncan Sands1df98592010-02-16 11:11:14 +00002270 if (MidTy->isPointerTy() && DstTy->isPointerTy())
Reid Spencer3da59db2006-11-27 01:05:10 +00002271 return firstOp;
2272 return 0;
2273 case 13: {
2274 // inttoptr, ptrtoint -> bitcast if SrcSize<=PtrSize and SrcSize==DstSize
Duncan Sands446cf942012-10-30 16:03:32 +00002275 if (!MidIntPtrTy)
Dan Gohman295643b2009-07-21 23:19:40 +00002276 return 0;
Duncan Sands446cf942012-10-30 16:03:32 +00002277 unsigned PtrSize = MidIntPtrTy->getScalarSizeInBits();
Dan Gohman6de29f82009-06-15 22:12:54 +00002278 unsigned SrcSize = SrcTy->getScalarSizeInBits();
2279 unsigned DstSize = DstTy->getScalarSizeInBits();
Reid Spencer3da59db2006-11-27 01:05:10 +00002280 if (SrcSize <= PtrSize && SrcSize == DstSize)
2281 return Instruction::BitCast;
2282 return 0;
2283 }
2284 case 99:
2285 // cast combination can't happen (error in input). This is for all cases
2286 // where the MidTy is not the same for the two cast instructions.
Craig Topper50bee422012-02-05 22:14:15 +00002287 llvm_unreachable("Invalid Cast Combination");
Reid Spencer3da59db2006-11-27 01:05:10 +00002288 default:
Craig Topper50bee422012-02-05 22:14:15 +00002289 llvm_unreachable("Error in CastResults table!!!");
Reid Spencer3da59db2006-11-27 01:05:10 +00002290 }
Reid Spencer3da59db2006-11-27 01:05:10 +00002291}
2292
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002293CastInst *CastInst::Create(Instruction::CastOps op, Value *S, Type *Ty,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00002294 const Twine &Name, Instruction *InsertBefore) {
Duncan Sandsbb1695e2011-05-18 09:21:57 +00002295 assert(castIsValid(op, S, Ty) && "Invalid cast!");
Reid Spencer3da59db2006-11-27 01:05:10 +00002296 // Construct and return the appropriate CastInst subclass
2297 switch (op) {
2298 case Trunc: return new TruncInst (S, Ty, Name, InsertBefore);
2299 case ZExt: return new ZExtInst (S, Ty, Name, InsertBefore);
2300 case SExt: return new SExtInst (S, Ty, Name, InsertBefore);
2301 case FPTrunc: return new FPTruncInst (S, Ty, Name, InsertBefore);
2302 case FPExt: return new FPExtInst (S, Ty, Name, InsertBefore);
2303 case UIToFP: return new UIToFPInst (S, Ty, Name, InsertBefore);
2304 case SIToFP: return new SIToFPInst (S, Ty, Name, InsertBefore);
2305 case FPToUI: return new FPToUIInst (S, Ty, Name, InsertBefore);
2306 case FPToSI: return new FPToSIInst (S, Ty, Name, InsertBefore);
2307 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertBefore);
2308 case IntToPtr: return new IntToPtrInst (S, Ty, Name, InsertBefore);
2309 case BitCast: return new BitCastInst (S, Ty, Name, InsertBefore);
Craig Topper50bee422012-02-05 22:14:15 +00002310 default: llvm_unreachable("Invalid opcode provided");
Reid Spencer3da59db2006-11-27 01:05:10 +00002311 }
Reid Spencer3da59db2006-11-27 01:05:10 +00002312}
2313
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002314CastInst *CastInst::Create(Instruction::CastOps op, Value *S, Type *Ty,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00002315 const Twine &Name, BasicBlock *InsertAtEnd) {
Duncan Sandsbb1695e2011-05-18 09:21:57 +00002316 assert(castIsValid(op, S, Ty) && "Invalid cast!");
Reid Spencer3da59db2006-11-27 01:05:10 +00002317 // Construct and return the appropriate CastInst subclass
2318 switch (op) {
2319 case Trunc: return new TruncInst (S, Ty, Name, InsertAtEnd);
2320 case ZExt: return new ZExtInst (S, Ty, Name, InsertAtEnd);
2321 case SExt: return new SExtInst (S, Ty, Name, InsertAtEnd);
2322 case FPTrunc: return new FPTruncInst (S, Ty, Name, InsertAtEnd);
2323 case FPExt: return new FPExtInst (S, Ty, Name, InsertAtEnd);
2324 case UIToFP: return new UIToFPInst (S, Ty, Name, InsertAtEnd);
2325 case SIToFP: return new SIToFPInst (S, Ty, Name, InsertAtEnd);
2326 case FPToUI: return new FPToUIInst (S, Ty, Name, InsertAtEnd);
2327 case FPToSI: return new FPToSIInst (S, Ty, Name, InsertAtEnd);
2328 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertAtEnd);
2329 case IntToPtr: return new IntToPtrInst (S, Ty, Name, InsertAtEnd);
2330 case BitCast: return new BitCastInst (S, Ty, Name, InsertAtEnd);
Craig Topper50bee422012-02-05 22:14:15 +00002331 default: llvm_unreachable("Invalid opcode provided");
Reid Spencer3da59db2006-11-27 01:05:10 +00002332 }
Reid Spencer3da59db2006-11-27 01:05:10 +00002333}
2334
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002335CastInst *CastInst::CreateZExtOrBitCast(Value *S, Type *Ty,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00002336 const Twine &Name,
Reid Spencer848414e2006-12-04 20:17:56 +00002337 Instruction *InsertBefore) {
Dan Gohman6de29f82009-06-15 22:12:54 +00002338 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002339 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
2340 return Create(Instruction::ZExt, S, Ty, Name, InsertBefore);
Reid Spencer848414e2006-12-04 20:17:56 +00002341}
2342
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002343CastInst *CastInst::CreateZExtOrBitCast(Value *S, Type *Ty,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00002344 const Twine &Name,
Reid Spencer848414e2006-12-04 20:17:56 +00002345 BasicBlock *InsertAtEnd) {
Dan Gohman6de29f82009-06-15 22:12:54 +00002346 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002347 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
2348 return Create(Instruction::ZExt, S, Ty, Name, InsertAtEnd);
Reid Spencer848414e2006-12-04 20:17:56 +00002349}
2350
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002351CastInst *CastInst::CreateSExtOrBitCast(Value *S, Type *Ty,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00002352 const Twine &Name,
Reid Spencer848414e2006-12-04 20:17:56 +00002353 Instruction *InsertBefore) {
Dan Gohman6de29f82009-06-15 22:12:54 +00002354 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002355 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
2356 return Create(Instruction::SExt, S, Ty, Name, InsertBefore);
Reid Spencer848414e2006-12-04 20:17:56 +00002357}
2358
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002359CastInst *CastInst::CreateSExtOrBitCast(Value *S, Type *Ty,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00002360 const Twine &Name,
Reid Spencer848414e2006-12-04 20:17:56 +00002361 BasicBlock *InsertAtEnd) {
Dan Gohman6de29f82009-06-15 22:12:54 +00002362 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002363 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
2364 return Create(Instruction::SExt, S, Ty, Name, InsertAtEnd);
Reid Spencer848414e2006-12-04 20:17:56 +00002365}
2366
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002367CastInst *CastInst::CreateTruncOrBitCast(Value *S, Type *Ty,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00002368 const Twine &Name,
Reid Spencer848414e2006-12-04 20:17:56 +00002369 Instruction *InsertBefore) {
Dan Gohman6de29f82009-06-15 22:12:54 +00002370 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002371 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
2372 return Create(Instruction::Trunc, S, Ty, Name, InsertBefore);
Reid Spencer848414e2006-12-04 20:17:56 +00002373}
2374
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002375CastInst *CastInst::CreateTruncOrBitCast(Value *S, Type *Ty,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00002376 const Twine &Name,
Reid Spencer848414e2006-12-04 20:17:56 +00002377 BasicBlock *InsertAtEnd) {
Dan Gohman6de29f82009-06-15 22:12:54 +00002378 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002379 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
2380 return Create(Instruction::Trunc, S, Ty, Name, InsertAtEnd);
Reid Spencer848414e2006-12-04 20:17:56 +00002381}
2382
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002383CastInst *CastInst::CreatePointerCast(Value *S, Type *Ty,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00002384 const Twine &Name,
Reid Spencer330d86d2006-12-05 03:28:26 +00002385 BasicBlock *InsertAtEnd) {
Duncan Sands1df98592010-02-16 11:11:14 +00002386 assert(S->getType()->isPointerTy() && "Invalid cast");
2387 assert((Ty->isIntegerTy() || Ty->isPointerTy()) &&
Reid Spencer330d86d2006-12-05 03:28:26 +00002388 "Invalid cast");
2389
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002390 if (Ty->isIntegerTy())
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002391 return Create(Instruction::PtrToInt, S, Ty, Name, InsertAtEnd);
2392 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
Reid Spencer330d86d2006-12-05 03:28:26 +00002393}
2394
2395/// @brief Create a BitCast or a PtrToInt cast instruction
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002396CastInst *CastInst::CreatePointerCast(Value *S, Type *Ty,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00002397 const Twine &Name,
Reid Spencer330d86d2006-12-05 03:28:26 +00002398 Instruction *InsertBefore) {
Evgeniy Stepanov344d3fb2013-01-15 16:43:00 +00002399 assert(S->getType()->isPtrOrPtrVectorTy() && "Invalid cast");
2400 assert((Ty->isIntOrIntVectorTy() || Ty->isPtrOrPtrVectorTy()) &&
Reid Spencer330d86d2006-12-05 03:28:26 +00002401 "Invalid cast");
2402
Evgeniy Stepanov344d3fb2013-01-15 16:43:00 +00002403 if (Ty->isIntOrIntVectorTy())
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002404 return Create(Instruction::PtrToInt, S, Ty, Name, InsertBefore);
2405 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
Reid Spencer330d86d2006-12-05 03:28:26 +00002406}
2407
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002408CastInst *CastInst::CreateIntegerCast(Value *C, Type *Ty,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00002409 bool isSigned, const Twine &Name,
Reid Spencer6d81a7d2006-12-12 00:49:44 +00002410 Instruction *InsertBefore) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002411 assert(C->getType()->isIntOrIntVectorTy() && Ty->isIntOrIntVectorTy() &&
Chris Lattner859c3722010-01-10 20:21:42 +00002412 "Invalid integer cast");
Dan Gohman6de29f82009-06-15 22:12:54 +00002413 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2414 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer6d81a7d2006-12-12 00:49:44 +00002415 Instruction::CastOps opcode =
2416 (SrcBits == DstBits ? Instruction::BitCast :
2417 (SrcBits > DstBits ? Instruction::Trunc :
2418 (isSigned ? Instruction::SExt : Instruction::ZExt)));
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002419 return Create(opcode, C, Ty, Name, InsertBefore);
Reid Spencer6d81a7d2006-12-12 00:49:44 +00002420}
2421
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002422CastInst *CastInst::CreateIntegerCast(Value *C, Type *Ty,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00002423 bool isSigned, const Twine &Name,
Reid Spencer6d81a7d2006-12-12 00:49:44 +00002424 BasicBlock *InsertAtEnd) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002425 assert(C->getType()->isIntOrIntVectorTy() && Ty->isIntOrIntVectorTy() &&
Dan Gohmanf57478f2009-06-15 22:25:12 +00002426 "Invalid cast");
Dan Gohman6de29f82009-06-15 22:12:54 +00002427 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2428 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer6d81a7d2006-12-12 00:49:44 +00002429 Instruction::CastOps opcode =
2430 (SrcBits == DstBits ? Instruction::BitCast :
2431 (SrcBits > DstBits ? Instruction::Trunc :
2432 (isSigned ? Instruction::SExt : Instruction::ZExt)));
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002433 return Create(opcode, C, Ty, Name, InsertAtEnd);
Reid Spencer6d81a7d2006-12-12 00:49:44 +00002434}
2435
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002436CastInst *CastInst::CreateFPCast(Value *C, Type *Ty,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00002437 const Twine &Name,
Reid Spencer6d81a7d2006-12-12 00:49:44 +00002438 Instruction *InsertBefore) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002439 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer6d81a7d2006-12-12 00:49:44 +00002440 "Invalid cast");
Dan Gohman6de29f82009-06-15 22:12:54 +00002441 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2442 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer6d81a7d2006-12-12 00:49:44 +00002443 Instruction::CastOps opcode =
2444 (SrcBits == DstBits ? Instruction::BitCast :
2445 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt));
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002446 return Create(opcode, C, Ty, Name, InsertBefore);
Reid Spencer6d81a7d2006-12-12 00:49:44 +00002447}
2448
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002449CastInst *CastInst::CreateFPCast(Value *C, Type *Ty,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00002450 const Twine &Name,
Reid Spencer6d81a7d2006-12-12 00:49:44 +00002451 BasicBlock *InsertAtEnd) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002452 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer6d81a7d2006-12-12 00:49:44 +00002453 "Invalid cast");
Dan Gohman6de29f82009-06-15 22:12:54 +00002454 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2455 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer6d81a7d2006-12-12 00:49:44 +00002456 Instruction::CastOps opcode =
2457 (SrcBits == DstBits ? Instruction::BitCast :
2458 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt));
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002459 return Create(opcode, C, Ty, Name, InsertAtEnd);
Reid Spencer6d81a7d2006-12-12 00:49:44 +00002460}
2461
Duncan Sandsa9d0c9d2008-01-06 10:12:28 +00002462// Check whether it is valid to call getCastOpcode for these types.
2463// This routine must be kept in sync with getCastOpcode.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002464bool CastInst::isCastable(Type *SrcTy, Type *DestTy) {
Duncan Sandsa9d0c9d2008-01-06 10:12:28 +00002465 if (!SrcTy->isFirstClassType() || !DestTy->isFirstClassType())
2466 return false;
2467
2468 if (SrcTy == DestTy)
2469 return true;
2470
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002471 if (VectorType *SrcVecTy = dyn_cast<VectorType>(SrcTy))
2472 if (VectorType *DestVecTy = dyn_cast<VectorType>(DestTy))
Duncan Sands117feba2011-05-18 07:13:41 +00002473 if (SrcVecTy->getNumElements() == DestVecTy->getNumElements()) {
2474 // An element by element cast. Valid if casting the elements is valid.
2475 SrcTy = SrcVecTy->getElementType();
2476 DestTy = DestVecTy->getElementType();
2477 }
2478
Duncan Sandsa9d0c9d2008-01-06 10:12:28 +00002479 // Get the bit sizes, we'll need these
Duncan Sandsbb1695e2011-05-18 09:21:57 +00002480 unsigned SrcBits = SrcTy->getPrimitiveSizeInBits(); // 0 for ptr
2481 unsigned DestBits = DestTy->getPrimitiveSizeInBits(); // 0 for ptr
Duncan Sandsa9d0c9d2008-01-06 10:12:28 +00002482
2483 // Run through the possibilities ...
Duncan Sands7016ec12011-05-18 10:59:25 +00002484 if (DestTy->isIntegerTy()) { // Casting to integral
2485 if (SrcTy->isIntegerTy()) { // Casting from integral
Duncan Sandsa9d0c9d2008-01-06 10:12:28 +00002486 return true;
Duncan Sands7016ec12011-05-18 10:59:25 +00002487 } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt
Duncan Sandsa9d0c9d2008-01-06 10:12:28 +00002488 return true;
Duncan Sands7016ec12011-05-18 10:59:25 +00002489 } else if (SrcTy->isVectorTy()) { // Casting from vector
2490 return DestBits == SrcBits;
Gabor Greifb1dbcd82008-05-15 10:04:30 +00002491 } else { // Casting from something else
Duncan Sands1df98592010-02-16 11:11:14 +00002492 return SrcTy->isPointerTy();
Duncan Sandsa9d0c9d2008-01-06 10:12:28 +00002493 }
Duncan Sands7016ec12011-05-18 10:59:25 +00002494 } else if (DestTy->isFloatingPointTy()) { // Casting to floating pt
2495 if (SrcTy->isIntegerTy()) { // Casting from integral
Duncan Sandsa9d0c9d2008-01-06 10:12:28 +00002496 return true;
Duncan Sands7016ec12011-05-18 10:59:25 +00002497 } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt
Duncan Sandsa9d0c9d2008-01-06 10:12:28 +00002498 return true;
Duncan Sands7016ec12011-05-18 10:59:25 +00002499 } else if (SrcTy->isVectorTy()) { // Casting from vector
2500 return DestBits == SrcBits;
Gabor Greifb1dbcd82008-05-15 10:04:30 +00002501 } else { // Casting from something else
Duncan Sandsa9d0c9d2008-01-06 10:12:28 +00002502 return false;
2503 }
Duncan Sands7016ec12011-05-18 10:59:25 +00002504 } else if (DestTy->isVectorTy()) { // Casting to vector
2505 return DestBits == SrcBits;
Duncan Sands1df98592010-02-16 11:11:14 +00002506 } else if (DestTy->isPointerTy()) { // Casting to pointer
Duncan Sands7016ec12011-05-18 10:59:25 +00002507 if (SrcTy->isPointerTy()) { // Casting from pointer
Duncan Sandsa9d0c9d2008-01-06 10:12:28 +00002508 return true;
Duncan Sands7016ec12011-05-18 10:59:25 +00002509 } else if (SrcTy->isIntegerTy()) { // Casting from integral
Duncan Sandsa9d0c9d2008-01-06 10:12:28 +00002510 return true;
Duncan Sands7016ec12011-05-18 10:59:25 +00002511 } else { // Casting from something else
Duncan Sandsa9d0c9d2008-01-06 10:12:28 +00002512 return false;
2513 }
Duncan Sands60794652011-04-01 03:34:54 +00002514 } else if (DestTy->isX86_MMXTy()) {
Duncan Sands7016ec12011-05-18 10:59:25 +00002515 if (SrcTy->isVectorTy()) {
2516 return DestBits == SrcBits; // 64-bit vector to MMX
Duncan Sands60794652011-04-01 03:34:54 +00002517 } else {
2518 return false;
2519 }
Duncan Sands7016ec12011-05-18 10:59:25 +00002520 } else { // Casting to something else
Duncan Sandsa9d0c9d2008-01-06 10:12:28 +00002521 return false;
2522 }
2523}
2524
Reid Spencer3da59db2006-11-27 01:05:10 +00002525// Provide a way to get a "cast" where the cast opcode is inferred from the
2526// types and size of the operand. This, basically, is a parallel of the
Reid Spencer0a11af12007-01-17 02:46:11 +00002527// logic in the castIsValid function below. This axiom should hold:
2528// castIsValid( getCastOpcode(Val, Ty), Val, Ty)
2529// should not assert in castIsValid. In other words, this produces a "correct"
Reid Spencer3da59db2006-11-27 01:05:10 +00002530// casting opcode for the arguments passed to it.
Duncan Sandsa9d0c9d2008-01-06 10:12:28 +00002531// This routine must be kept in sync with isCastable.
Reid Spencer3da59db2006-11-27 01:05:10 +00002532Instruction::CastOps
Reid Spencer56667122006-12-04 02:43:42 +00002533CastInst::getCastOpcode(
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002534 const Value *Src, bool SrcIsSigned, Type *DestTy, bool DestIsSigned) {
2535 Type *SrcTy = Src->getType();
Reid Spencer3da59db2006-11-27 01:05:10 +00002536
Duncan Sandsa9d0c9d2008-01-06 10:12:28 +00002537 assert(SrcTy->isFirstClassType() && DestTy->isFirstClassType() &&
2538 "Only first class types are castable!");
2539
Duncan Sands117feba2011-05-18 07:13:41 +00002540 if (SrcTy == DestTy)
2541 return BitCast;
2542
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002543 if (VectorType *SrcVecTy = dyn_cast<VectorType>(SrcTy))
2544 if (VectorType *DestVecTy = dyn_cast<VectorType>(DestTy))
Duncan Sands117feba2011-05-18 07:13:41 +00002545 if (SrcVecTy->getNumElements() == DestVecTy->getNumElements()) {
2546 // An element by element cast. Find the appropriate opcode based on the
2547 // element types.
2548 SrcTy = SrcVecTy->getElementType();
2549 DestTy = DestVecTy->getElementType();
2550 }
2551
2552 // Get the bit sizes, we'll need these
Duncan Sandsbb1695e2011-05-18 09:21:57 +00002553 unsigned SrcBits = SrcTy->getPrimitiveSizeInBits(); // 0 for ptr
2554 unsigned DestBits = DestTy->getPrimitiveSizeInBits(); // 0 for ptr
Duncan Sands117feba2011-05-18 07:13:41 +00002555
Reid Spencer3da59db2006-11-27 01:05:10 +00002556 // Run through the possibilities ...
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002557 if (DestTy->isIntegerTy()) { // Casting to integral
2558 if (SrcTy->isIntegerTy()) { // Casting from integral
Reid Spencer3da59db2006-11-27 01:05:10 +00002559 if (DestBits < SrcBits)
2560 return Trunc; // int -> smaller int
2561 else if (DestBits > SrcBits) { // its an extension
Reid Spencer56667122006-12-04 02:43:42 +00002562 if (SrcIsSigned)
Reid Spencer3da59db2006-11-27 01:05:10 +00002563 return SExt; // signed -> SEXT
2564 else
2565 return ZExt; // unsigned -> ZEXT
2566 } else {
2567 return BitCast; // Same size, No-op cast
2568 }
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002569 } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt
Reid Spencer56667122006-12-04 02:43:42 +00002570 if (DestIsSigned)
Reid Spencer3da59db2006-11-27 01:05:10 +00002571 return FPToSI; // FP -> sint
2572 else
2573 return FPToUI; // FP -> uint
Duncan Sands7016ec12011-05-18 10:59:25 +00002574 } else if (SrcTy->isVectorTy()) {
2575 assert(DestBits == SrcBits &&
2576 "Casting vector to integer of different width");
Reid Spencer3da59db2006-11-27 01:05:10 +00002577 return BitCast; // Same size, no-op cast
2578 } else {
Duncan Sands1df98592010-02-16 11:11:14 +00002579 assert(SrcTy->isPointerTy() &&
Reid Spencer3da59db2006-11-27 01:05:10 +00002580 "Casting from a value that is not first-class type");
2581 return PtrToInt; // ptr -> int
2582 }
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002583 } else if (DestTy->isFloatingPointTy()) { // Casting to floating pt
2584 if (SrcTy->isIntegerTy()) { // Casting from integral
Reid Spencer56667122006-12-04 02:43:42 +00002585 if (SrcIsSigned)
Reid Spencer3da59db2006-11-27 01:05:10 +00002586 return SIToFP; // sint -> FP
2587 else
2588 return UIToFP; // uint -> FP
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002589 } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt
Reid Spencer3da59db2006-11-27 01:05:10 +00002590 if (DestBits < SrcBits) {
2591 return FPTrunc; // FP -> smaller FP
2592 } else if (DestBits > SrcBits) {
2593 return FPExt; // FP -> larger FP
2594 } else {
2595 return BitCast; // same size, no-op cast
2596 }
Duncan Sands7016ec12011-05-18 10:59:25 +00002597 } else if (SrcTy->isVectorTy()) {
2598 assert(DestBits == SrcBits &&
Dan Gohman86296cc2007-05-11 21:43:24 +00002599 "Casting vector to floating point of different width");
Devang Patel8c3b47f2008-11-05 01:37:40 +00002600 return BitCast; // same size, no-op cast
Reid Spencer3da59db2006-11-27 01:05:10 +00002601 }
Ahmed Charlesb0934ab2012-02-19 11:37:01 +00002602 llvm_unreachable("Casting pointer or non-first class to float");
Duncan Sands7016ec12011-05-18 10:59:25 +00002603 } else if (DestTy->isVectorTy()) {
2604 assert(DestBits == SrcBits &&
2605 "Illegal cast to vector (wrong type or size)");
2606 return BitCast;
Duncan Sands1df98592010-02-16 11:11:14 +00002607 } else if (DestTy->isPointerTy()) {
2608 if (SrcTy->isPointerTy()) {
Reid Spencer3da59db2006-11-27 01:05:10 +00002609 return BitCast; // ptr -> ptr
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002610 } else if (SrcTy->isIntegerTy()) {
Reid Spencer3da59db2006-11-27 01:05:10 +00002611 return IntToPtr; // int -> ptr
Reid Spencer3da59db2006-11-27 01:05:10 +00002612 }
Ahmed Charlesb0934ab2012-02-19 11:37:01 +00002613 llvm_unreachable("Casting pointer to other than pointer or int");
Dale Johannesen0488fb62010-09-30 23:57:10 +00002614 } else if (DestTy->isX86_MMXTy()) {
Duncan Sands7016ec12011-05-18 10:59:25 +00002615 if (SrcTy->isVectorTy()) {
2616 assert(DestBits == SrcBits && "Casting vector of wrong width to X86_MMX");
Dale Johannesen0488fb62010-09-30 23:57:10 +00002617 return BitCast; // 64-bit vector to MMX
Dale Johannesen0488fb62010-09-30 23:57:10 +00002618 }
Ahmed Charlesb0934ab2012-02-19 11:37:01 +00002619 llvm_unreachable("Illegal cast to X86_MMX");
Reid Spencer3da59db2006-11-27 01:05:10 +00002620 }
Ahmed Charlesb0934ab2012-02-19 11:37:01 +00002621 llvm_unreachable("Casting to type that is not first-class");
Reid Spencer3da59db2006-11-27 01:05:10 +00002622}
2623
2624//===----------------------------------------------------------------------===//
2625// CastInst SubClass Constructors
2626//===----------------------------------------------------------------------===//
2627
2628/// Check that the construction parameters for a CastInst are correct. This
2629/// could be broken out into the separate constructors but it is useful to have
2630/// it in one place and to eliminate the redundant code for getting the sizes
2631/// of the types involved.
Reid Spencer0a11af12007-01-17 02:46:11 +00002632bool
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002633CastInst::castIsValid(Instruction::CastOps op, Value *S, Type *DstTy) {
Reid Spencer3da59db2006-11-27 01:05:10 +00002634
2635 // Check for type sanity on the arguments
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002636 Type *SrcTy = S->getType();
Evan Cheng582e4f22013-01-10 23:22:53 +00002637
2638 // If this is a cast to the same type then it's trivially true.
2639 if (SrcTy == DstTy)
2640 return true;
2641
Chris Lattner0b68a002010-01-26 21:51:43 +00002642 if (!SrcTy->isFirstClassType() || !DstTy->isFirstClassType() ||
2643 SrcTy->isAggregateType() || DstTy->isAggregateType())
Reid Spencer3da59db2006-11-27 01:05:10 +00002644 return false;
2645
2646 // Get the size of the types in bits, we'll need this later
Dan Gohman6de29f82009-06-15 22:12:54 +00002647 unsigned SrcBitSize = SrcTy->getScalarSizeInBits();
2648 unsigned DstBitSize = DstTy->getScalarSizeInBits();
Reid Spencer3da59db2006-11-27 01:05:10 +00002649
Duncan Sandsbb1695e2011-05-18 09:21:57 +00002650 // If these are vector types, get the lengths of the vectors (using zero for
2651 // scalar types means that checking that vector lengths match also checks that
2652 // scalars are not being converted to vectors or vectors to scalars).
2653 unsigned SrcLength = SrcTy->isVectorTy() ?
2654 cast<VectorType>(SrcTy)->getNumElements() : 0;
2655 unsigned DstLength = DstTy->isVectorTy() ?
2656 cast<VectorType>(DstTy)->getNumElements() : 0;
2657
Reid Spencer3da59db2006-11-27 01:05:10 +00002658 // Switch on the opcode provided
2659 switch (op) {
2660 default: return false; // This is an input error
2661 case Instruction::Trunc:
Duncan Sandsbb1695e2011-05-18 09:21:57 +00002662 return SrcTy->isIntOrIntVectorTy() && DstTy->isIntOrIntVectorTy() &&
2663 SrcLength == DstLength && SrcBitSize > DstBitSize;
Reid Spencer3da59db2006-11-27 01:05:10 +00002664 case Instruction::ZExt:
Duncan Sandsbb1695e2011-05-18 09:21:57 +00002665 return SrcTy->isIntOrIntVectorTy() && DstTy->isIntOrIntVectorTy() &&
2666 SrcLength == DstLength && SrcBitSize < DstBitSize;
Reid Spencer3da59db2006-11-27 01:05:10 +00002667 case Instruction::SExt:
Duncan Sandsbb1695e2011-05-18 09:21:57 +00002668 return SrcTy->isIntOrIntVectorTy() && DstTy->isIntOrIntVectorTy() &&
2669 SrcLength == DstLength && SrcBitSize < DstBitSize;
Reid Spencer3da59db2006-11-27 01:05:10 +00002670 case Instruction::FPTrunc:
Duncan Sandsbb1695e2011-05-18 09:21:57 +00002671 return SrcTy->isFPOrFPVectorTy() && DstTy->isFPOrFPVectorTy() &&
2672 SrcLength == DstLength && SrcBitSize > DstBitSize;
Reid Spencer3da59db2006-11-27 01:05:10 +00002673 case Instruction::FPExt:
Duncan Sandsbb1695e2011-05-18 09:21:57 +00002674 return SrcTy->isFPOrFPVectorTy() && DstTy->isFPOrFPVectorTy() &&
2675 SrcLength == DstLength && SrcBitSize < DstBitSize;
Reid Spencer3da59db2006-11-27 01:05:10 +00002676 case Instruction::UIToFP:
Reid Spencer3da59db2006-11-27 01:05:10 +00002677 case Instruction::SIToFP:
Duncan Sandsbb1695e2011-05-18 09:21:57 +00002678 return SrcTy->isIntOrIntVectorTy() && DstTy->isFPOrFPVectorTy() &&
2679 SrcLength == DstLength;
Reid Spencer3da59db2006-11-27 01:05:10 +00002680 case Instruction::FPToUI:
Reid Spencer3da59db2006-11-27 01:05:10 +00002681 case Instruction::FPToSI:
Duncan Sandsbb1695e2011-05-18 09:21:57 +00002682 return SrcTy->isFPOrFPVectorTy() && DstTy->isIntOrIntVectorTy() &&
2683 SrcLength == DstLength;
Reid Spencer3da59db2006-11-27 01:05:10 +00002684 case Instruction::PtrToInt:
Chris Lattneraf7b4fb2012-01-25 01:32:59 +00002685 if (isa<VectorType>(SrcTy) != isa<VectorType>(DstTy))
Nadav Rotem16087692011-12-05 06:29:09 +00002686 return false;
Chris Lattneraf7b4fb2012-01-25 01:32:59 +00002687 if (VectorType *VT = dyn_cast<VectorType>(SrcTy))
2688 if (VT->getNumElements() != cast<VectorType>(DstTy)->getNumElements())
2689 return false;
Nadav Rotem16087692011-12-05 06:29:09 +00002690 return SrcTy->getScalarType()->isPointerTy() &&
2691 DstTy->getScalarType()->isIntegerTy();
Reid Spencer3da59db2006-11-27 01:05:10 +00002692 case Instruction::IntToPtr:
Chris Lattneraf7b4fb2012-01-25 01:32:59 +00002693 if (isa<VectorType>(SrcTy) != isa<VectorType>(DstTy))
Nadav Rotem16087692011-12-05 06:29:09 +00002694 return false;
Chris Lattneraf7b4fb2012-01-25 01:32:59 +00002695 if (VectorType *VT = dyn_cast<VectorType>(SrcTy))
2696 if (VT->getNumElements() != cast<VectorType>(DstTy)->getNumElements())
2697 return false;
Nadav Rotem16087692011-12-05 06:29:09 +00002698 return SrcTy->getScalarType()->isIntegerTy() &&
2699 DstTy->getScalarType()->isPointerTy();
Reid Spencer3da59db2006-11-27 01:05:10 +00002700 case Instruction::BitCast:
2701 // BitCast implies a no-op cast of type only. No bits change.
2702 // However, you can't cast pointers to anything but pointers.
Duncan Sands1df98592010-02-16 11:11:14 +00002703 if (SrcTy->isPointerTy() != DstTy->isPointerTy())
Reid Spencer3da59db2006-11-27 01:05:10 +00002704 return false;
2705
Duncan Sandsa9d0c9d2008-01-06 10:12:28 +00002706 // Now we know we're not dealing with a pointer/non-pointer mismatch. In all
Reid Spencer3da59db2006-11-27 01:05:10 +00002707 // these cases, the cast is okay if the source and destination bit widths
2708 // are identical.
Dan Gohman6de29f82009-06-15 22:12:54 +00002709 return SrcTy->getPrimitiveSizeInBits() == DstTy->getPrimitiveSizeInBits();
Reid Spencer3da59db2006-11-27 01:05:10 +00002710 }
2711}
2712
2713TruncInst::TruncInst(
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002714 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer3da59db2006-11-27 01:05:10 +00002715) : CastInst(Ty, Trunc, S, Name, InsertBefore) {
Reid Spencer0a11af12007-01-17 02:46:11 +00002716 assert(castIsValid(getOpcode(), S, Ty) && "Illegal Trunc");
Reid Spencer3da59db2006-11-27 01:05:10 +00002717}
2718
2719TruncInst::TruncInst(
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002720 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer3da59db2006-11-27 01:05:10 +00002721) : CastInst(Ty, Trunc, S, Name, InsertAtEnd) {
Reid Spencer0a11af12007-01-17 02:46:11 +00002722 assert(castIsValid(getOpcode(), S, Ty) && "Illegal Trunc");
Reid Spencer3da59db2006-11-27 01:05:10 +00002723}
2724
2725ZExtInst::ZExtInst(
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002726 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer3da59db2006-11-27 01:05:10 +00002727) : CastInst(Ty, ZExt, S, Name, InsertBefore) {
Reid Spencer0a11af12007-01-17 02:46:11 +00002728 assert(castIsValid(getOpcode(), S, Ty) && "Illegal ZExt");
Reid Spencer3da59db2006-11-27 01:05:10 +00002729}
2730
2731ZExtInst::ZExtInst(
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002732 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer3da59db2006-11-27 01:05:10 +00002733) : CastInst(Ty, ZExt, S, Name, InsertAtEnd) {
Reid Spencer0a11af12007-01-17 02:46:11 +00002734 assert(castIsValid(getOpcode(), S, Ty) && "Illegal ZExt");
Reid Spencer3da59db2006-11-27 01:05:10 +00002735}
2736SExtInst::SExtInst(
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002737 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer3da59db2006-11-27 01:05:10 +00002738) : CastInst(Ty, SExt, S, Name, InsertBefore) {
Reid Spencer0a11af12007-01-17 02:46:11 +00002739 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SExt");
Reid Spencer3da59db2006-11-27 01:05:10 +00002740}
2741
Jeff Cohen97af7512006-12-02 02:22:01 +00002742SExtInst::SExtInst(
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002743 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer3da59db2006-11-27 01:05:10 +00002744) : CastInst(Ty, SExt, S, Name, InsertAtEnd) {
Reid Spencer0a11af12007-01-17 02:46:11 +00002745 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SExt");
Reid Spencer3da59db2006-11-27 01:05:10 +00002746}
2747
2748FPTruncInst::FPTruncInst(
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002749 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer3da59db2006-11-27 01:05:10 +00002750) : CastInst(Ty, FPTrunc, S, Name, InsertBefore) {
Reid Spencer0a11af12007-01-17 02:46:11 +00002751 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPTrunc");
Reid Spencer3da59db2006-11-27 01:05:10 +00002752}
2753
2754FPTruncInst::FPTruncInst(
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002755 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer3da59db2006-11-27 01:05:10 +00002756) : CastInst(Ty, FPTrunc, S, Name, InsertAtEnd) {
Reid Spencer0a11af12007-01-17 02:46:11 +00002757 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPTrunc");
Reid Spencer3da59db2006-11-27 01:05:10 +00002758}
2759
2760FPExtInst::FPExtInst(
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002761 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer3da59db2006-11-27 01:05:10 +00002762) : CastInst(Ty, FPExt, S, Name, InsertBefore) {
Reid Spencer0a11af12007-01-17 02:46:11 +00002763 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPExt");
Reid Spencer3da59db2006-11-27 01:05:10 +00002764}
2765
2766FPExtInst::FPExtInst(
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002767 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer3da59db2006-11-27 01:05:10 +00002768) : CastInst(Ty, FPExt, S, Name, InsertAtEnd) {
Reid Spencer0a11af12007-01-17 02:46:11 +00002769 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPExt");
Reid Spencer3da59db2006-11-27 01:05:10 +00002770}
2771
2772UIToFPInst::UIToFPInst(
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002773 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer3da59db2006-11-27 01:05:10 +00002774) : CastInst(Ty, UIToFP, S, Name, InsertBefore) {
Reid Spencer0a11af12007-01-17 02:46:11 +00002775 assert(castIsValid(getOpcode(), S, Ty) && "Illegal UIToFP");
Reid Spencer3da59db2006-11-27 01:05:10 +00002776}
2777
2778UIToFPInst::UIToFPInst(
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002779 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer3da59db2006-11-27 01:05:10 +00002780) : CastInst(Ty, UIToFP, S, Name, InsertAtEnd) {
Reid Spencer0a11af12007-01-17 02:46:11 +00002781 assert(castIsValid(getOpcode(), S, Ty) && "Illegal UIToFP");
Reid Spencer3da59db2006-11-27 01:05:10 +00002782}
2783
2784SIToFPInst::SIToFPInst(
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002785 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer3da59db2006-11-27 01:05:10 +00002786) : CastInst(Ty, SIToFP, S, Name, InsertBefore) {
Reid Spencer0a11af12007-01-17 02:46:11 +00002787 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SIToFP");
Reid Spencer3da59db2006-11-27 01:05:10 +00002788}
2789
2790SIToFPInst::SIToFPInst(
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002791 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer3da59db2006-11-27 01:05:10 +00002792) : CastInst(Ty, SIToFP, S, Name, InsertAtEnd) {
Reid Spencer0a11af12007-01-17 02:46:11 +00002793 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SIToFP");
Reid Spencer3da59db2006-11-27 01:05:10 +00002794}
2795
2796FPToUIInst::FPToUIInst(
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002797 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer3da59db2006-11-27 01:05:10 +00002798) : CastInst(Ty, FPToUI, S, Name, InsertBefore) {
Reid Spencer0a11af12007-01-17 02:46:11 +00002799 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToUI");
Reid Spencer3da59db2006-11-27 01:05:10 +00002800}
2801
2802FPToUIInst::FPToUIInst(
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002803 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer3da59db2006-11-27 01:05:10 +00002804) : CastInst(Ty, FPToUI, S, Name, InsertAtEnd) {
Reid Spencer0a11af12007-01-17 02:46:11 +00002805 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToUI");
Reid Spencer3da59db2006-11-27 01:05:10 +00002806}
2807
2808FPToSIInst::FPToSIInst(
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002809 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer3da59db2006-11-27 01:05:10 +00002810) : CastInst(Ty, FPToSI, S, Name, InsertBefore) {
Reid Spencer0a11af12007-01-17 02:46:11 +00002811 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToSI");
Reid Spencer3da59db2006-11-27 01:05:10 +00002812}
2813
2814FPToSIInst::FPToSIInst(
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002815 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer3da59db2006-11-27 01:05:10 +00002816) : CastInst(Ty, FPToSI, S, Name, InsertAtEnd) {
Reid Spencer0a11af12007-01-17 02:46:11 +00002817 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToSI");
Reid Spencer3da59db2006-11-27 01:05:10 +00002818}
2819
2820PtrToIntInst::PtrToIntInst(
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002821 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer3da59db2006-11-27 01:05:10 +00002822) : CastInst(Ty, PtrToInt, S, Name, InsertBefore) {
Reid Spencer0a11af12007-01-17 02:46:11 +00002823 assert(castIsValid(getOpcode(), S, Ty) && "Illegal PtrToInt");
Reid Spencer3da59db2006-11-27 01:05:10 +00002824}
2825
2826PtrToIntInst::PtrToIntInst(
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002827 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer3da59db2006-11-27 01:05:10 +00002828) : CastInst(Ty, PtrToInt, S, Name, InsertAtEnd) {
Reid Spencer0a11af12007-01-17 02:46:11 +00002829 assert(castIsValid(getOpcode(), S, Ty) && "Illegal PtrToInt");
Reid Spencer3da59db2006-11-27 01:05:10 +00002830}
2831
2832IntToPtrInst::IntToPtrInst(
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002833 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer3da59db2006-11-27 01:05:10 +00002834) : CastInst(Ty, IntToPtr, S, Name, InsertBefore) {
Reid Spencer0a11af12007-01-17 02:46:11 +00002835 assert(castIsValid(getOpcode(), S, Ty) && "Illegal IntToPtr");
Reid Spencer3da59db2006-11-27 01:05:10 +00002836}
2837
2838IntToPtrInst::IntToPtrInst(
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002839 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer3da59db2006-11-27 01:05:10 +00002840) : CastInst(Ty, IntToPtr, S, Name, InsertAtEnd) {
Reid Spencer0a11af12007-01-17 02:46:11 +00002841 assert(castIsValid(getOpcode(), S, Ty) && "Illegal IntToPtr");
Reid Spencer3da59db2006-11-27 01:05:10 +00002842}
2843
2844BitCastInst::BitCastInst(
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002845 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer3da59db2006-11-27 01:05:10 +00002846) : CastInst(Ty, BitCast, S, Name, InsertBefore) {
Reid Spencer0a11af12007-01-17 02:46:11 +00002847 assert(castIsValid(getOpcode(), S, Ty) && "Illegal BitCast");
Reid Spencer3da59db2006-11-27 01:05:10 +00002848}
2849
2850BitCastInst::BitCastInst(
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002851 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer3da59db2006-11-27 01:05:10 +00002852) : CastInst(Ty, BitCast, S, Name, InsertAtEnd) {
Reid Spencer0a11af12007-01-17 02:46:11 +00002853 assert(castIsValid(getOpcode(), S, Ty) && "Illegal BitCast");
Reid Spencer3da59db2006-11-27 01:05:10 +00002854}
Chris Lattner2f463862006-09-17 19:29:56 +00002855
2856//===----------------------------------------------------------------------===//
Reid Spencer45fb3f32006-11-20 01:22:35 +00002857// CmpInst Classes
2858//===----------------------------------------------------------------------===//
2859
Craig Toppera96a1822012-09-23 02:12:10 +00002860void CmpInst::anchor() {}
Chris Lattner36fe1982010-01-22 06:25:37 +00002861
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002862CmpInst::CmpInst(Type *ty, OtherOps op, unsigned short predicate,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00002863 Value *LHS, Value *RHS, const Twine &Name,
Nate Begemanac80ade2008-05-12 19:01:56 +00002864 Instruction *InsertBefore)
Nate Begemanc83ad0d2008-05-12 20:11:05 +00002865 : Instruction(ty, op,
Gabor Greifefe65362008-05-10 08:32:32 +00002866 OperandTraits<CmpInst>::op_begin(this),
2867 OperandTraits<CmpInst>::operands(this),
2868 InsertBefore) {
Gabor Greif6c80c382008-05-26 21:33:52 +00002869 Op<0>() = LHS;
2870 Op<1>() = RHS;
Chris Lattnercafe9bb2009-12-29 02:14:09 +00002871 setPredicate((Predicate)predicate);
Reid Spencer97c0e212007-04-11 13:04:48 +00002872 setName(Name);
Reid Spencer45fb3f32006-11-20 01:22:35 +00002873}
Gabor Greifefe65362008-05-10 08:32:32 +00002874
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002875CmpInst::CmpInst(Type *ty, OtherOps op, unsigned short predicate,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00002876 Value *LHS, Value *RHS, const Twine &Name,
Nate Begemanac80ade2008-05-12 19:01:56 +00002877 BasicBlock *InsertAtEnd)
Nate Begemanc83ad0d2008-05-12 20:11:05 +00002878 : Instruction(ty, op,
Gabor Greifefe65362008-05-10 08:32:32 +00002879 OperandTraits<CmpInst>::op_begin(this),
2880 OperandTraits<CmpInst>::operands(this),
2881 InsertAtEnd) {
Gabor Greif6c80c382008-05-26 21:33:52 +00002882 Op<0>() = LHS;
2883 Op<1>() = RHS;
Chris Lattnercafe9bb2009-12-29 02:14:09 +00002884 setPredicate((Predicate)predicate);
Reid Spencer97c0e212007-04-11 13:04:48 +00002885 setName(Name);
Reid Spencer45fb3f32006-11-20 01:22:35 +00002886}
2887
2888CmpInst *
Dan Gohman1c8a23c2009-08-25 23:17:54 +00002889CmpInst::Create(OtherOps Op, unsigned short predicate,
Owen Anderson333c4002009-07-09 23:48:35 +00002890 Value *S1, Value *S2,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00002891 const Twine &Name, Instruction *InsertBefore) {
Reid Spencer45fb3f32006-11-20 01:22:35 +00002892 if (Op == Instruction::ICmp) {
Owen Anderson333c4002009-07-09 23:48:35 +00002893 if (InsertBefore)
2894 return new ICmpInst(InsertBefore, CmpInst::Predicate(predicate),
2895 S1, S2, Name);
2896 else
Dan Gohman1c8a23c2009-08-25 23:17:54 +00002897 return new ICmpInst(CmpInst::Predicate(predicate),
Owen Anderson333c4002009-07-09 23:48:35 +00002898 S1, S2, Name);
Reid Spencer45fb3f32006-11-20 01:22:35 +00002899 }
Owen Anderson333c4002009-07-09 23:48:35 +00002900
2901 if (InsertBefore)
2902 return new FCmpInst(InsertBefore, CmpInst::Predicate(predicate),
2903 S1, S2, Name);
2904 else
Dan Gohman1c8a23c2009-08-25 23:17:54 +00002905 return new FCmpInst(CmpInst::Predicate(predicate),
Owen Anderson333c4002009-07-09 23:48:35 +00002906 S1, S2, Name);
Reid Spencer45fb3f32006-11-20 01:22:35 +00002907}
2908
2909CmpInst *
Gabor Greif7cbd8a32008-05-16 19:29:10 +00002910CmpInst::Create(OtherOps Op, unsigned short predicate, Value *S1, Value *S2,
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00002911 const Twine &Name, BasicBlock *InsertAtEnd) {
Reid Spencer45fb3f32006-11-20 01:22:35 +00002912 if (Op == Instruction::ICmp) {
Owen Anderson333c4002009-07-09 23:48:35 +00002913 return new ICmpInst(*InsertAtEnd, CmpInst::Predicate(predicate),
2914 S1, S2, Name);
Reid Spencer45fb3f32006-11-20 01:22:35 +00002915 }
Owen Anderson333c4002009-07-09 23:48:35 +00002916 return new FCmpInst(*InsertAtEnd, CmpInst::Predicate(predicate),
2917 S1, S2, Name);
Reid Spencer45fb3f32006-11-20 01:22:35 +00002918}
2919
2920void CmpInst::swapOperands() {
2921 if (ICmpInst *IC = dyn_cast<ICmpInst>(this))
2922 IC->swapOperands();
2923 else
2924 cast<FCmpInst>(this)->swapOperands();
2925}
2926
Duncan Sandsc449a222011-01-04 12:52:29 +00002927bool CmpInst::isCommutative() const {
2928 if (const ICmpInst *IC = dyn_cast<ICmpInst>(this))
Reid Spencer45fb3f32006-11-20 01:22:35 +00002929 return IC->isCommutative();
2930 return cast<FCmpInst>(this)->isCommutative();
2931}
2932
Duncan Sandsc449a222011-01-04 12:52:29 +00002933bool CmpInst::isEquality() const {
2934 if (const ICmpInst *IC = dyn_cast<ICmpInst>(this))
Reid Spencer45fb3f32006-11-20 01:22:35 +00002935 return IC->isEquality();
2936 return cast<FCmpInst>(this)->isEquality();
2937}
2938
2939
Dan Gohman7e2dd662008-05-31 02:47:54 +00002940CmpInst::Predicate CmpInst::getInversePredicate(Predicate pred) {
Reid Spencer45fb3f32006-11-20 01:22:35 +00002941 switch (pred) {
Craig Topper50bee422012-02-05 22:14:15 +00002942 default: llvm_unreachable("Unknown cmp predicate!");
Reid Spencer45fb3f32006-11-20 01:22:35 +00002943 case ICMP_EQ: return ICMP_NE;
2944 case ICMP_NE: return ICMP_EQ;
2945 case ICMP_UGT: return ICMP_ULE;
2946 case ICMP_ULT: return ICMP_UGE;
2947 case ICMP_UGE: return ICMP_ULT;
2948 case ICMP_ULE: return ICMP_UGT;
2949 case ICMP_SGT: return ICMP_SLE;
2950 case ICMP_SLT: return ICMP_SGE;
2951 case ICMP_SGE: return ICMP_SLT;
2952 case ICMP_SLE: return ICMP_SGT;
Reid Spencer45fb3f32006-11-20 01:22:35 +00002953
Dan Gohman7e2dd662008-05-31 02:47:54 +00002954 case FCMP_OEQ: return FCMP_UNE;
2955 case FCMP_ONE: return FCMP_UEQ;
2956 case FCMP_OGT: return FCMP_ULE;
2957 case FCMP_OLT: return FCMP_UGE;
2958 case FCMP_OGE: return FCMP_ULT;
2959 case FCMP_OLE: return FCMP_UGT;
2960 case FCMP_UEQ: return FCMP_ONE;
2961 case FCMP_UNE: return FCMP_OEQ;
2962 case FCMP_UGT: return FCMP_OLE;
2963 case FCMP_ULT: return FCMP_OGE;
2964 case FCMP_UGE: return FCMP_OLT;
2965 case FCMP_ULE: return FCMP_OGT;
2966 case FCMP_ORD: return FCMP_UNO;
2967 case FCMP_UNO: return FCMP_ORD;
2968 case FCMP_TRUE: return FCMP_FALSE;
2969 case FCMP_FALSE: return FCMP_TRUE;
Reid Spencer45fb3f32006-11-20 01:22:35 +00002970 }
2971}
2972
Reid Spencere4d87aa2006-12-23 06:05:41 +00002973ICmpInst::Predicate ICmpInst::getSignedPredicate(Predicate pred) {
2974 switch (pred) {
Craig Topper50bee422012-02-05 22:14:15 +00002975 default: llvm_unreachable("Unknown icmp predicate!");
Reid Spencere4d87aa2006-12-23 06:05:41 +00002976 case ICMP_EQ: case ICMP_NE:
2977 case ICMP_SGT: case ICMP_SLT: case ICMP_SGE: case ICMP_SLE:
2978 return pred;
2979 case ICMP_UGT: return ICMP_SGT;
2980 case ICMP_ULT: return ICMP_SLT;
2981 case ICMP_UGE: return ICMP_SGE;
2982 case ICMP_ULE: return ICMP_SLE;
2983 }
2984}
2985
Nick Lewycky4189a532008-01-28 03:48:02 +00002986ICmpInst::Predicate ICmpInst::getUnsignedPredicate(Predicate pred) {
2987 switch (pred) {
Craig Topper50bee422012-02-05 22:14:15 +00002988 default: llvm_unreachable("Unknown icmp predicate!");
Nick Lewycky4189a532008-01-28 03:48:02 +00002989 case ICMP_EQ: case ICMP_NE:
2990 case ICMP_UGT: case ICMP_ULT: case ICMP_UGE: case ICMP_ULE:
2991 return pred;
2992 case ICMP_SGT: return ICMP_UGT;
2993 case ICMP_SLT: return ICMP_ULT;
2994 case ICMP_SGE: return ICMP_UGE;
2995 case ICMP_SLE: return ICMP_ULE;
2996 }
2997}
2998
Reid Spencer3da43842007-02-28 22:00:54 +00002999/// Initialize a set of values that all satisfy the condition with C.
3000///
3001ConstantRange
3002ICmpInst::makeConstantRange(Predicate pred, const APInt &C) {
3003 APInt Lower(C);
3004 APInt Upper(C);
3005 uint32_t BitWidth = C.getBitWidth();
3006 switch (pred) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003007 default: llvm_unreachable("Invalid ICmp opcode to ConstantRange ctor!");
Reid Spencer3da43842007-02-28 22:00:54 +00003008 case ICmpInst::ICMP_EQ: Upper++; break;
3009 case ICmpInst::ICMP_NE: Lower++; break;
Dan Gohmanf21107c2010-01-26 16:04:20 +00003010 case ICmpInst::ICMP_ULT:
3011 Lower = APInt::getMinValue(BitWidth);
3012 // Check for an empty-set condition.
3013 if (Lower == Upper)
3014 return ConstantRange(BitWidth, /*isFullSet=*/false);
3015 break;
3016 case ICmpInst::ICMP_SLT:
3017 Lower = APInt::getSignedMinValue(BitWidth);
3018 // Check for an empty-set condition.
3019 if (Lower == Upper)
3020 return ConstantRange(BitWidth, /*isFullSet=*/false);
3021 break;
Reid Spencer3da43842007-02-28 22:00:54 +00003022 case ICmpInst::ICMP_UGT:
3023 Lower++; Upper = APInt::getMinValue(BitWidth); // Min = Next(Max)
Dan Gohmanf21107c2010-01-26 16:04:20 +00003024 // Check for an empty-set condition.
3025 if (Lower == Upper)
3026 return ConstantRange(BitWidth, /*isFullSet=*/false);
Reid Spencer3da43842007-02-28 22:00:54 +00003027 break;
3028 case ICmpInst::ICMP_SGT:
3029 Lower++; Upper = APInt::getSignedMinValue(BitWidth); // Min = Next(Max)
Dan Gohmanf21107c2010-01-26 16:04:20 +00003030 // Check for an empty-set condition.
3031 if (Lower == Upper)
3032 return ConstantRange(BitWidth, /*isFullSet=*/false);
Reid Spencer3da43842007-02-28 22:00:54 +00003033 break;
3034 case ICmpInst::ICMP_ULE:
3035 Lower = APInt::getMinValue(BitWidth); Upper++;
Dan Gohmanf21107c2010-01-26 16:04:20 +00003036 // Check for a full-set condition.
3037 if (Lower == Upper)
3038 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer3da43842007-02-28 22:00:54 +00003039 break;
3040 case ICmpInst::ICMP_SLE:
3041 Lower = APInt::getSignedMinValue(BitWidth); Upper++;
Dan Gohmanf21107c2010-01-26 16:04:20 +00003042 // Check for a full-set condition.
3043 if (Lower == Upper)
3044 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer3da43842007-02-28 22:00:54 +00003045 break;
3046 case ICmpInst::ICMP_UGE:
3047 Upper = APInt::getMinValue(BitWidth); // Min = Next(Max)
Dan Gohmanf21107c2010-01-26 16:04:20 +00003048 // Check for a full-set condition.
3049 if (Lower == Upper)
3050 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer3da43842007-02-28 22:00:54 +00003051 break;
3052 case ICmpInst::ICMP_SGE:
3053 Upper = APInt::getSignedMinValue(BitWidth); // Min = Next(Max)
Dan Gohmanf21107c2010-01-26 16:04:20 +00003054 // Check for a full-set condition.
3055 if (Lower == Upper)
3056 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer3da43842007-02-28 22:00:54 +00003057 break;
3058 }
3059 return ConstantRange(Lower, Upper);
3060}
3061
Dan Gohman7e2dd662008-05-31 02:47:54 +00003062CmpInst::Predicate CmpInst::getSwappedPredicate(Predicate pred) {
Reid Spencer45fb3f32006-11-20 01:22:35 +00003063 switch (pred) {
Craig Topper50bee422012-02-05 22:14:15 +00003064 default: llvm_unreachable("Unknown cmp predicate!");
Dan Gohman7e2dd662008-05-31 02:47:54 +00003065 case ICMP_EQ: case ICMP_NE:
3066 return pred;
3067 case ICMP_SGT: return ICMP_SLT;
3068 case ICMP_SLT: return ICMP_SGT;
3069 case ICMP_SGE: return ICMP_SLE;
3070 case ICMP_SLE: return ICMP_SGE;
3071 case ICMP_UGT: return ICMP_ULT;
3072 case ICMP_ULT: return ICMP_UGT;
3073 case ICMP_UGE: return ICMP_ULE;
3074 case ICMP_ULE: return ICMP_UGE;
3075
Reid Spencer45fb3f32006-11-20 01:22:35 +00003076 case FCMP_FALSE: case FCMP_TRUE:
3077 case FCMP_OEQ: case FCMP_ONE:
3078 case FCMP_UEQ: case FCMP_UNE:
3079 case FCMP_ORD: case FCMP_UNO:
3080 return pred;
3081 case FCMP_OGT: return FCMP_OLT;
3082 case FCMP_OLT: return FCMP_OGT;
3083 case FCMP_OGE: return FCMP_OLE;
3084 case FCMP_OLE: return FCMP_OGE;
3085 case FCMP_UGT: return FCMP_ULT;
3086 case FCMP_ULT: return FCMP_UGT;
3087 case FCMP_UGE: return FCMP_ULE;
3088 case FCMP_ULE: return FCMP_UGE;
3089 }
3090}
3091
Reid Spencere4d87aa2006-12-23 06:05:41 +00003092bool CmpInst::isUnsigned(unsigned short predicate) {
3093 switch (predicate) {
3094 default: return false;
3095 case ICmpInst::ICMP_ULT: case ICmpInst::ICMP_ULE: case ICmpInst::ICMP_UGT:
3096 case ICmpInst::ICMP_UGE: return true;
3097 }
3098}
3099
Nick Lewycky44df0232009-10-25 03:50:03 +00003100bool CmpInst::isSigned(unsigned short predicate) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00003101 switch (predicate) {
3102 default: return false;
3103 case ICmpInst::ICMP_SLT: case ICmpInst::ICMP_SLE: case ICmpInst::ICMP_SGT:
3104 case ICmpInst::ICMP_SGE: return true;
3105 }
3106}
3107
3108bool CmpInst::isOrdered(unsigned short predicate) {
3109 switch (predicate) {
3110 default: return false;
3111 case FCmpInst::FCMP_OEQ: case FCmpInst::FCMP_ONE: case FCmpInst::FCMP_OGT:
3112 case FCmpInst::FCMP_OLT: case FCmpInst::FCMP_OGE: case FCmpInst::FCMP_OLE:
3113 case FCmpInst::FCMP_ORD: return true;
3114 }
3115}
3116
3117bool CmpInst::isUnordered(unsigned short predicate) {
3118 switch (predicate) {
3119 default: return false;
3120 case FCmpInst::FCMP_UEQ: case FCmpInst::FCMP_UNE: case FCmpInst::FCMP_UGT:
3121 case FCmpInst::FCMP_ULT: case FCmpInst::FCMP_UGE: case FCmpInst::FCMP_ULE:
3122 case FCmpInst::FCMP_UNO: return true;
3123 }
3124}
3125
Nick Lewycky44df0232009-10-25 03:50:03 +00003126bool CmpInst::isTrueWhenEqual(unsigned short predicate) {
3127 switch(predicate) {
3128 default: return false;
3129 case ICMP_EQ: case ICMP_UGE: case ICMP_ULE: case ICMP_SGE: case ICMP_SLE:
3130 case FCMP_TRUE: case FCMP_UEQ: case FCMP_UGE: case FCMP_ULE: return true;
3131 }
3132}
3133
3134bool CmpInst::isFalseWhenEqual(unsigned short predicate) {
3135 switch(predicate) {
3136 case ICMP_NE: case ICMP_UGT: case ICMP_ULT: case ICMP_SGT: case ICMP_SLT:
3137 case FCMP_FALSE: case FCMP_ONE: case FCMP_OGT: case FCMP_OLT: return true;
3138 default: return false;
3139 }
3140}
3141
3142
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00003143//===----------------------------------------------------------------------===//
3144// SwitchInst Implementation
3145//===----------------------------------------------------------------------===//
3146
Chris Lattneraa6e3502010-11-17 05:41:46 +00003147void SwitchInst::init(Value *Value, BasicBlock *Default, unsigned NumReserved) {
3148 assert(Value && Default && NumReserved);
3149 ReservedSpace = NumReserved;
Chris Lattnerb12261a2005-01-29 00:35:16 +00003150 NumOperands = 2;
Gabor Greifefe65362008-05-10 08:32:32 +00003151 OperandList = allocHungoffUses(ReservedSpace);
Chris Lattnerb12261a2005-01-29 00:35:16 +00003152
Gabor Greif6c80c382008-05-26 21:33:52 +00003153 OperandList[0] = Value;
3154 OperandList[1] = Default;
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00003155}
3156
Chris Lattner910c80a2007-02-24 00:55:48 +00003157/// SwitchInst ctor - Create a new switch instruction, specifying a value to
3158/// switch on and a default destination. The number of additional cases can
3159/// be specified here to make memory allocation more efficient. This
3160/// constructor can also autoinsert before another instruction.
3161SwitchInst::SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
3162 Instruction *InsertBefore)
Owen Anderson1d0be152009-08-13 21:58:54 +00003163 : TerminatorInst(Type::getVoidTy(Value->getContext()), Instruction::Switch,
3164 0, 0, InsertBefore) {
Chris Lattneraa6e3502010-11-17 05:41:46 +00003165 init(Value, Default, 2+NumCases*2);
Chris Lattner910c80a2007-02-24 00:55:48 +00003166}
3167
3168/// SwitchInst ctor - Create a new switch instruction, specifying a value to
3169/// switch on and a default destination. The number of additional cases can
3170/// be specified here to make memory allocation more efficient. This
3171/// constructor also autoinserts at the end of the specified BasicBlock.
3172SwitchInst::SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
3173 BasicBlock *InsertAtEnd)
Owen Anderson1d0be152009-08-13 21:58:54 +00003174 : TerminatorInst(Type::getVoidTy(Value->getContext()), Instruction::Switch,
3175 0, 0, InsertAtEnd) {
Chris Lattneraa6e3502010-11-17 05:41:46 +00003176 init(Value, Default, 2+NumCases*2);
Chris Lattner910c80a2007-02-24 00:55:48 +00003177}
3178
Misha Brukmanfd939082005-04-21 23:48:37 +00003179SwitchInst::SwitchInst(const SwitchInst &SI)
Chris Lattneraa6e3502010-11-17 05:41:46 +00003180 : TerminatorInst(SI.getType(), Instruction::Switch, 0, 0) {
3181 init(SI.getCondition(), SI.getDefaultDest(), SI.getNumOperands());
3182 NumOperands = SI.getNumOperands();
Chris Lattnerb12261a2005-01-29 00:35:16 +00003183 Use *OL = OperandList, *InOL = SI.OperandList;
Chris Lattneraa6e3502010-11-17 05:41:46 +00003184 for (unsigned i = 2, E = SI.getNumOperands(); i != E; i += 2) {
Gabor Greif6c80c382008-05-26 21:33:52 +00003185 OL[i] = InOL[i];
3186 OL[i+1] = InOL[i+1];
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00003187 }
Stepan Dyatkovskiy43c3a4a2012-06-22 14:53:30 +00003188 TheSubsets = SI.TheSubsets;
Dan Gohman58cfa3b2009-08-25 22:11:20 +00003189 SubclassOptionalData = SI.SubclassOptionalData;
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00003190}
3191
Gordon Henriksenafba8fe2007-12-10 02:14:30 +00003192SwitchInst::~SwitchInst() {
Jay Foad1ed26ac2011-01-16 15:30:52 +00003193 dropHungoffUses();
Chris Lattnerb12261a2005-01-29 00:35:16 +00003194}
3195
3196
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00003197/// addCase - Add an entry to the switch instruction...
3198///
Chris Lattnerd1a32602005-02-24 05:32:09 +00003199void SwitchInst::addCase(ConstantInt *OnVal, BasicBlock *Dest) {
Stepan Dyatkovskiy0aa32d52012-05-29 12:26:47 +00003200 IntegersSubsetToBB Mapping;
Stepan Dyatkovskiy484fc932012-05-28 12:39:09 +00003201
3202 // FIXME: Currently we work with ConstantInt based cases.
3203 // So inititalize IntItem container directly from ConstantInt.
Stepan Dyatkovskiy0aa32d52012-05-29 12:26:47 +00003204 Mapping.add(IntItem::fromConstantInt(OnVal));
3205 IntegersSubset CaseRanges = Mapping.getCase();
3206 addCase(CaseRanges, Dest);
Stepan Dyatkovskiy1cce5bf2012-05-12 10:48:17 +00003207}
3208
Stepan Dyatkovskiy0aa32d52012-05-29 12:26:47 +00003209void SwitchInst::addCase(IntegersSubset& OnVal, BasicBlock *Dest) {
Stepan Dyatkovskiy24473122012-02-01 07:49:51 +00003210 unsigned NewCaseIdx = getNumCases();
Chris Lattnerb12261a2005-01-29 00:35:16 +00003211 unsigned OpNo = NumOperands;
3212 if (OpNo+2 > ReservedSpace)
Jay Foad8891ed72011-04-01 08:00:58 +00003213 growOperands(); // Get more space!
Chris Lattnerb12261a2005-01-29 00:35:16 +00003214 // Initialize some new operands.
Chris Lattner1f377fc2005-01-29 01:05:12 +00003215 assert(OpNo+1 < ReservedSpace && "Growing didn't work!");
Chris Lattnerb12261a2005-01-29 00:35:16 +00003216 NumOperands = OpNo+2;
Stepan Dyatkovskiy43c3a4a2012-06-22 14:53:30 +00003217
3218 SubsetsIt TheSubsetsIt = TheSubsets.insert(TheSubsets.end(), OnVal);
3219
3220 CaseIt Case(this, NewCaseIdx, TheSubsetsIt);
3221 Case.updateCaseValueOperand(OnVal);
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00003222 Case.setSuccessor(Dest);
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00003223}
3224
Stepan Dyatkovskiy24473122012-02-01 07:49:51 +00003225/// removeCase - This method removes the specified case and its successor
3226/// from the switch instruction.
Stepan Dyatkovskiy43c3a4a2012-06-22 14:53:30 +00003227void SwitchInst::removeCase(CaseIt& i) {
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00003228 unsigned idx = i.getCaseIndex();
3229
Stepan Dyatkovskiy24473122012-02-01 07:49:51 +00003230 assert(2 + idx*2 < getNumOperands() && "Case index out of range!!!");
Chris Lattnerb12261a2005-01-29 00:35:16 +00003231
3232 unsigned NumOps = getNumOperands();
3233 Use *OL = OperandList;
3234
Jay Foad0faa6092011-02-01 09:22:34 +00003235 // Overwrite this case with the end of the list.
Stepan Dyatkovskiy24473122012-02-01 07:49:51 +00003236 if (2 + (idx + 1) * 2 != NumOps) {
3237 OL[2 + idx * 2] = OL[NumOps - 2];
3238 OL[2 + idx * 2 + 1] = OL[NumOps - 1];
Chris Lattnerb12261a2005-01-29 00:35:16 +00003239 }
3240
3241 // Nuke the last value.
3242 OL[NumOps-2].set(0);
3243 OL[NumOps-2+1].set(0);
Stepan Dyatkovskiy43c3a4a2012-06-22 14:53:30 +00003244
3245 // Do the same with TheCases collection:
3246 if (i.SubsetIt != --TheSubsets.end()) {
3247 *i.SubsetIt = TheSubsets.back();
3248 TheSubsets.pop_back();
3249 } else {
3250 TheSubsets.pop_back();
3251 i.SubsetIt = TheSubsets.end();
3252 }
3253
Chris Lattnerb12261a2005-01-29 00:35:16 +00003254 NumOperands = NumOps-2;
3255}
3256
Jay Foad8891ed72011-04-01 08:00:58 +00003257/// growOperands - grow operands - This grows the operand list in response
3258/// to a push_back style of operation. This grows the number of ops by 3 times.
Chris Lattnerb12261a2005-01-29 00:35:16 +00003259///
Jay Foad8891ed72011-04-01 08:00:58 +00003260void SwitchInst::growOperands() {
Gabor Greifefe65362008-05-10 08:32:32 +00003261 unsigned e = getNumOperands();
Jay Foad8891ed72011-04-01 08:00:58 +00003262 unsigned NumOps = e*3;
Chris Lattnerb12261a2005-01-29 00:35:16 +00003263
3264 ReservedSpace = NumOps;
Gabor Greifefe65362008-05-10 08:32:32 +00003265 Use *NewOps = allocHungoffUses(NumOps);
Chris Lattnerb12261a2005-01-29 00:35:16 +00003266 Use *OldOps = OperandList;
Gabor Greifefe65362008-05-10 08:32:32 +00003267 for (unsigned i = 0; i != e; ++i) {
Gabor Greif6c80c382008-05-26 21:33:52 +00003268 NewOps[i] = OldOps[i];
Chris Lattnerb12261a2005-01-29 00:35:16 +00003269 }
Chris Lattnerb12261a2005-01-29 00:35:16 +00003270 OperandList = NewOps;
Jay Foad1ed26ac2011-01-16 15:30:52 +00003271 Use::zap(OldOps, OldOps + e, true);
Chris Lattnerb12261a2005-01-29 00:35:16 +00003272}
3273
3274
3275BasicBlock *SwitchInst::getSuccessorV(unsigned idx) const {
3276 return getSuccessor(idx);
3277}
3278unsigned SwitchInst::getNumSuccessorsV() const {
3279 return getNumSuccessors();
3280}
3281void SwitchInst::setSuccessorV(unsigned idx, BasicBlock *B) {
3282 setSuccessor(idx, B);
Alkis Evlogimenos91366a82004-07-29 12:33:25 +00003283}
Chris Lattner795948a2004-10-15 23:52:53 +00003284
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003285//===----------------------------------------------------------------------===//
Jay Foad1ed26ac2011-01-16 15:30:52 +00003286// IndirectBrInst Implementation
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003287//===----------------------------------------------------------------------===//
3288
Chris Lattnerab21db72009-10-28 00:19:10 +00003289void IndirectBrInst::init(Value *Address, unsigned NumDests) {
Duncan Sands1df98592010-02-16 11:11:14 +00003290 assert(Address && Address->getType()->isPointerTy() &&
Chris Lattnera4c206f2009-10-29 05:53:32 +00003291 "Address of indirectbr must be a pointer");
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003292 ReservedSpace = 1+NumDests;
3293 NumOperands = 1;
3294 OperandList = allocHungoffUses(ReservedSpace);
3295
3296 OperandList[0] = Address;
3297}
3298
3299
Jay Foad8891ed72011-04-01 08:00:58 +00003300/// growOperands - grow operands - This grows the operand list in response
3301/// to a push_back style of operation. This grows the number of ops by 2 times.
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003302///
Jay Foad8891ed72011-04-01 08:00:58 +00003303void IndirectBrInst::growOperands() {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003304 unsigned e = getNumOperands();
Jay Foad8891ed72011-04-01 08:00:58 +00003305 unsigned NumOps = e*2;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003306
3307 ReservedSpace = NumOps;
3308 Use *NewOps = allocHungoffUses(NumOps);
3309 Use *OldOps = OperandList;
3310 for (unsigned i = 0; i != e; ++i)
3311 NewOps[i] = OldOps[i];
3312 OperandList = NewOps;
Jay Foad1ed26ac2011-01-16 15:30:52 +00003313 Use::zap(OldOps, OldOps + e, true);
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003314}
3315
Chris Lattnerab21db72009-10-28 00:19:10 +00003316IndirectBrInst::IndirectBrInst(Value *Address, unsigned NumCases,
3317 Instruction *InsertBefore)
3318: TerminatorInst(Type::getVoidTy(Address->getContext()),Instruction::IndirectBr,
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003319 0, 0, InsertBefore) {
3320 init(Address, NumCases);
3321}
3322
Chris Lattnerab21db72009-10-28 00:19:10 +00003323IndirectBrInst::IndirectBrInst(Value *Address, unsigned NumCases,
3324 BasicBlock *InsertAtEnd)
3325: TerminatorInst(Type::getVoidTy(Address->getContext()),Instruction::IndirectBr,
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003326 0, 0, InsertAtEnd) {
3327 init(Address, NumCases);
3328}
3329
Chris Lattnerab21db72009-10-28 00:19:10 +00003330IndirectBrInst::IndirectBrInst(const IndirectBrInst &IBI)
3331 : TerminatorInst(Type::getVoidTy(IBI.getContext()), Instruction::IndirectBr,
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003332 allocHungoffUses(IBI.getNumOperands()),
3333 IBI.getNumOperands()) {
3334 Use *OL = OperandList, *InOL = IBI.OperandList;
3335 for (unsigned i = 0, E = IBI.getNumOperands(); i != E; ++i)
3336 OL[i] = InOL[i];
3337 SubclassOptionalData = IBI.SubclassOptionalData;
3338}
3339
Chris Lattnerab21db72009-10-28 00:19:10 +00003340IndirectBrInst::~IndirectBrInst() {
Jay Foad1ed26ac2011-01-16 15:30:52 +00003341 dropHungoffUses();
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003342}
3343
3344/// addDestination - Add a destination.
3345///
Chris Lattnerab21db72009-10-28 00:19:10 +00003346void IndirectBrInst::addDestination(BasicBlock *DestBB) {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003347 unsigned OpNo = NumOperands;
3348 if (OpNo+1 > ReservedSpace)
Jay Foad8891ed72011-04-01 08:00:58 +00003349 growOperands(); // Get more space!
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003350 // Initialize some new operands.
3351 assert(OpNo < ReservedSpace && "Growing didn't work!");
3352 NumOperands = OpNo+1;
3353 OperandList[OpNo] = DestBB;
3354}
3355
3356/// removeDestination - This method removes the specified successor from the
Chris Lattnerab21db72009-10-28 00:19:10 +00003357/// indirectbr instruction.
3358void IndirectBrInst::removeDestination(unsigned idx) {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003359 assert(idx < getNumOperands()-1 && "Successor index out of range!");
3360
3361 unsigned NumOps = getNumOperands();
3362 Use *OL = OperandList;
3363
3364 // Replace this value with the last one.
3365 OL[idx+1] = OL[NumOps-1];
3366
3367 // Nuke the last value.
3368 OL[NumOps-1].set(0);
3369 NumOperands = NumOps-1;
3370}
3371
Chris Lattnerab21db72009-10-28 00:19:10 +00003372BasicBlock *IndirectBrInst::getSuccessorV(unsigned idx) const {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003373 return getSuccessor(idx);
3374}
Chris Lattnerab21db72009-10-28 00:19:10 +00003375unsigned IndirectBrInst::getNumSuccessorsV() const {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003376 return getNumSuccessors();
3377}
Chris Lattnerab21db72009-10-28 00:19:10 +00003378void IndirectBrInst::setSuccessorV(unsigned idx, BasicBlock *B) {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003379 setSuccessor(idx, B);
3380}
3381
3382//===----------------------------------------------------------------------===//
Devang Patel50b6e332009-10-27 22:16:29 +00003383// clone_impl() implementations
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003384//===----------------------------------------------------------------------===//
3385
Chris Lattner795948a2004-10-15 23:52:53 +00003386// Define these methods here so vtables don't get emitted into every translation
3387// unit that uses these classes.
3388
Devang Patel50b6e332009-10-27 22:16:29 +00003389GetElementPtrInst *GetElementPtrInst::clone_impl() const {
3390 return new (getNumOperands()) GetElementPtrInst(*this);
Chris Lattner795948a2004-10-15 23:52:53 +00003391}
3392
Devang Patel50b6e332009-10-27 22:16:29 +00003393BinaryOperator *BinaryOperator::clone_impl() const {
3394 return Create(getOpcode(), Op<0>(), Op<1>());
Chris Lattner795948a2004-10-15 23:52:53 +00003395}
3396
Devang Patel50b6e332009-10-27 22:16:29 +00003397FCmpInst* FCmpInst::clone_impl() const {
3398 return new FCmpInst(getPredicate(), Op<0>(), Op<1>());
Reid Spencer45fb3f32006-11-20 01:22:35 +00003399}
3400
Devang Patel50b6e332009-10-27 22:16:29 +00003401ICmpInst* ICmpInst::clone_impl() const {
3402 return new ICmpInst(getPredicate(), Op<0>(), Op<1>());
Dan Gohmane4569942008-05-23 00:36:11 +00003403}
3404
Devang Patel50b6e332009-10-27 22:16:29 +00003405ExtractValueInst *ExtractValueInst::clone_impl() const {
3406 return new ExtractValueInst(*this);
Owen Anderson333c4002009-07-09 23:48:35 +00003407}
3408
Devang Patel50b6e332009-10-27 22:16:29 +00003409InsertValueInst *InsertValueInst::clone_impl() const {
3410 return new InsertValueInst(*this);
Owen Anderson333c4002009-07-09 23:48:35 +00003411}
3412
Devang Patel50b6e332009-10-27 22:16:29 +00003413AllocaInst *AllocaInst::clone_impl() const {
3414 return new AllocaInst(getAllocatedType(),
3415 (Value*)getOperand(0),
3416 getAlignment());
Owen Anderson333c4002009-07-09 23:48:35 +00003417}
3418
Devang Patel50b6e332009-10-27 22:16:29 +00003419LoadInst *LoadInst::clone_impl() const {
Eli Friedman21006d42011-08-09 23:02:53 +00003420 return new LoadInst(getOperand(0), Twine(), isVolatile(),
3421 getAlignment(), getOrdering(), getSynchScope());
Owen Anderson333c4002009-07-09 23:48:35 +00003422}
3423
Devang Patel50b6e332009-10-27 22:16:29 +00003424StoreInst *StoreInst::clone_impl() const {
Eli Friedman1cc5e382011-08-10 17:39:11 +00003425 return new StoreInst(getOperand(0), getOperand(1), isVolatile(),
Eli Friedman21006d42011-08-09 23:02:53 +00003426 getAlignment(), getOrdering(), getSynchScope());
3427
Owen Anderson333c4002009-07-09 23:48:35 +00003428}
3429
Eli Friedmanff030482011-07-28 21:48:00 +00003430AtomicCmpXchgInst *AtomicCmpXchgInst::clone_impl() const {
3431 AtomicCmpXchgInst *Result =
3432 new AtomicCmpXchgInst(getOperand(0), getOperand(1), getOperand(2),
3433 getOrdering(), getSynchScope());
3434 Result->setVolatile(isVolatile());
3435 return Result;
3436}
3437
3438AtomicRMWInst *AtomicRMWInst::clone_impl() const {
3439 AtomicRMWInst *Result =
3440 new AtomicRMWInst(getOperation(),getOperand(0), getOperand(1),
3441 getOrdering(), getSynchScope());
3442 Result->setVolatile(isVolatile());
3443 return Result;
3444}
3445
Eli Friedman47f35132011-07-25 23:16:38 +00003446FenceInst *FenceInst::clone_impl() const {
3447 return new FenceInst(getContext(), getOrdering(), getSynchScope());
3448}
3449
Devang Patel50b6e332009-10-27 22:16:29 +00003450TruncInst *TruncInst::clone_impl() const {
3451 return new TruncInst(getOperand(0), getType());
Owen Anderson333c4002009-07-09 23:48:35 +00003452}
3453
Devang Patel50b6e332009-10-27 22:16:29 +00003454ZExtInst *ZExtInst::clone_impl() const {
3455 return new ZExtInst(getOperand(0), getType());
Owen Anderson333c4002009-07-09 23:48:35 +00003456}
3457
Devang Patel50b6e332009-10-27 22:16:29 +00003458SExtInst *SExtInst::clone_impl() const {
3459 return new SExtInst(getOperand(0), getType());
Owen Anderson333c4002009-07-09 23:48:35 +00003460}
3461
Devang Patel50b6e332009-10-27 22:16:29 +00003462FPTruncInst *FPTruncInst::clone_impl() const {
3463 return new FPTruncInst(getOperand(0), getType());
Owen Anderson333c4002009-07-09 23:48:35 +00003464}
3465
Devang Patel50b6e332009-10-27 22:16:29 +00003466FPExtInst *FPExtInst::clone_impl() const {
3467 return new FPExtInst(getOperand(0), getType());
Owen Anderson333c4002009-07-09 23:48:35 +00003468}
3469
Devang Patel50b6e332009-10-27 22:16:29 +00003470UIToFPInst *UIToFPInst::clone_impl() const {
3471 return new UIToFPInst(getOperand(0), getType());
Owen Anderson333c4002009-07-09 23:48:35 +00003472}
3473
Devang Patel50b6e332009-10-27 22:16:29 +00003474SIToFPInst *SIToFPInst::clone_impl() const {
3475 return new SIToFPInst(getOperand(0), getType());
Owen Anderson333c4002009-07-09 23:48:35 +00003476}
3477
Devang Patel50b6e332009-10-27 22:16:29 +00003478FPToUIInst *FPToUIInst::clone_impl() const {
3479 return new FPToUIInst(getOperand(0), getType());
Owen Anderson333c4002009-07-09 23:48:35 +00003480}
3481
Devang Patel50b6e332009-10-27 22:16:29 +00003482FPToSIInst *FPToSIInst::clone_impl() const {
3483 return new FPToSIInst(getOperand(0), getType());
Owen Anderson333c4002009-07-09 23:48:35 +00003484}
3485
Devang Patel50b6e332009-10-27 22:16:29 +00003486PtrToIntInst *PtrToIntInst::clone_impl() const {
3487 return new PtrToIntInst(getOperand(0), getType());
Owen Anderson333c4002009-07-09 23:48:35 +00003488}
3489
Devang Patel50b6e332009-10-27 22:16:29 +00003490IntToPtrInst *IntToPtrInst::clone_impl() const {
3491 return new IntToPtrInst(getOperand(0), getType());
Gabor Greifb1dbcd82008-05-15 10:04:30 +00003492}
Owen Anderson333c4002009-07-09 23:48:35 +00003493
Devang Patel50b6e332009-10-27 22:16:29 +00003494BitCastInst *BitCastInst::clone_impl() const {
3495 return new BitCastInst(getOperand(0), getType());
Gabor Greifb1dbcd82008-05-15 10:04:30 +00003496}
Reid Spencer3da59db2006-11-27 01:05:10 +00003497
Devang Patel50b6e332009-10-27 22:16:29 +00003498CallInst *CallInst::clone_impl() const {
3499 return new(getNumOperands()) CallInst(*this);
Owen Anderson333c4002009-07-09 23:48:35 +00003500}
3501
Devang Patel50b6e332009-10-27 22:16:29 +00003502SelectInst *SelectInst::clone_impl() const {
3503 return SelectInst::Create(getOperand(0), getOperand(1), getOperand(2));
Chris Lattner00f10232006-04-08 01:18:18 +00003504}
Owen Anderson333c4002009-07-09 23:48:35 +00003505
Devang Patel50b6e332009-10-27 22:16:29 +00003506VAArgInst *VAArgInst::clone_impl() const {
3507 return new VAArgInst(getOperand(0), getType());
Chris Lattner00f10232006-04-08 01:18:18 +00003508}
Owen Anderson333c4002009-07-09 23:48:35 +00003509
Devang Patel50b6e332009-10-27 22:16:29 +00003510ExtractElementInst *ExtractElementInst::clone_impl() const {
3511 return ExtractElementInst::Create(getOperand(0), getOperand(1));
Chris Lattner00f10232006-04-08 01:18:18 +00003512}
Owen Anderson333c4002009-07-09 23:48:35 +00003513
Devang Patel50b6e332009-10-27 22:16:29 +00003514InsertElementInst *InsertElementInst::clone_impl() const {
Chris Lattner83694a92012-01-25 23:49:49 +00003515 return InsertElementInst::Create(getOperand(0), getOperand(1), getOperand(2));
Owen Anderson333c4002009-07-09 23:48:35 +00003516}
3517
Devang Patel50b6e332009-10-27 22:16:29 +00003518ShuffleVectorInst *ShuffleVectorInst::clone_impl() const {
Chris Lattner83694a92012-01-25 23:49:49 +00003519 return new ShuffleVectorInst(getOperand(0), getOperand(1), getOperand(2));
Gabor Greifb1dbcd82008-05-15 10:04:30 +00003520}
Owen Anderson333c4002009-07-09 23:48:35 +00003521
Devang Patel50b6e332009-10-27 22:16:29 +00003522PHINode *PHINode::clone_impl() const {
3523 return new PHINode(*this);
3524}
3525
Bill Wendlinge6e88262011-08-12 20:24:12 +00003526LandingPadInst *LandingPadInst::clone_impl() const {
3527 return new LandingPadInst(*this);
3528}
3529
Devang Patel50b6e332009-10-27 22:16:29 +00003530ReturnInst *ReturnInst::clone_impl() const {
3531 return new(getNumOperands()) ReturnInst(*this);
3532}
3533
3534BranchInst *BranchInst::clone_impl() const {
Jay Foad8e3914d2011-01-07 20:29:02 +00003535 return new(getNumOperands()) BranchInst(*this);
Gabor Greifb1dbcd82008-05-15 10:04:30 +00003536}
Owen Anderson333c4002009-07-09 23:48:35 +00003537
Devang Patel50b6e332009-10-27 22:16:29 +00003538SwitchInst *SwitchInst::clone_impl() const {
3539 return new SwitchInst(*this);
Owen Anderson333c4002009-07-09 23:48:35 +00003540}
3541
Chris Lattnerab21db72009-10-28 00:19:10 +00003542IndirectBrInst *IndirectBrInst::clone_impl() const {
3543 return new IndirectBrInst(*this);
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003544}
3545
3546
Devang Patel50b6e332009-10-27 22:16:29 +00003547InvokeInst *InvokeInst::clone_impl() const {
3548 return new(getNumOperands()) InvokeInst(*this);
Gabor Greifb1dbcd82008-05-15 10:04:30 +00003549}
Owen Anderson333c4002009-07-09 23:48:35 +00003550
Bill Wendlingdccc03b2011-07-31 06:30:59 +00003551ResumeInst *ResumeInst::clone_impl() const {
3552 return new(1) ResumeInst(*this);
3553}
3554
Devang Patel50b6e332009-10-27 22:16:29 +00003555UnreachableInst *UnreachableInst::clone_impl() const {
Nick Lewycky67760642009-09-27 07:38:41 +00003556 LLVMContext &Context = getContext();
Devang Patel50b6e332009-10-27 22:16:29 +00003557 return new UnreachableInst(Context);
Owen Anderson333c4002009-07-09 23:48:35 +00003558}