blob: 8c375c2af3f8ca2a30a081fb7f3937c9096d3d39 [file] [log] [blame]
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001//===-- Instructions.cpp - Implement the LLVM instructions ----------------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanb1c93172005-04-21 23:48:37 +00007//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00008//===----------------------------------------------------------------------===//
9//
Chris Lattnerafdb3de2005-01-29 00:35:16 +000010// This file implements all of the non-inline methods for the LLVM instruction
11// classes.
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +000012//
13//===----------------------------------------------------------------------===//
14
Devang Pateladd58652009-09-23 18:32:25 +000015#include "LLVMContextImpl.h"
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +000016#include "llvm/Constants.h"
17#include "llvm/DerivedTypes.h"
18#include "llvm/Function.h"
19#include "llvm/Instructions.h"
Evan Cheng1d9d4bd2009-09-10 04:36:43 +000020#include "llvm/Module.h"
Dan Gohmand2a251f2009-07-17 21:33:58 +000021#include "llvm/Operator.h"
Torok Edwin6dd27302009-07-08 18:01:40 +000022#include "llvm/Support/ErrorHandling.h"
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +000023#include "llvm/Support/CallSite.h"
Reid Spencer0286bc12007-02-28 22:00:54 +000024#include "llvm/Support/ConstantRange.h"
Christopher Lamb84485702007-04-22 19:24:39 +000025#include "llvm/Support/MathExtras.h"
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +000026using namespace llvm;
27
Chris Lattner3e13b8c2008-01-02 23:42:30 +000028//===----------------------------------------------------------------------===//
29// CallSite Class
30//===----------------------------------------------------------------------===//
31
Gabor Greifa2fbc0a2010-03-24 13:21:49 +000032User::op_iterator CallSite::getCallee() const {
33 Instruction *II(getInstruction());
34 return isCall()
Gabor Greif638c8232010-08-05 21:25:49 +000035 ? cast<CallInst>(II)->op_end() - 1 // Skip Callee
Gabor Greif6d673952010-07-16 09:38:02 +000036 : cast<InvokeInst>(II)->op_end() - 3; // Skip BB, BB, Callee
Gabor Greifa2fbc0a2010-03-24 13:21:49 +000037}
38
Gordon Henriksen14a55692007-12-10 02:14:30 +000039//===----------------------------------------------------------------------===//
40// TerminatorInst Class
41//===----------------------------------------------------------------------===//
42
43// Out of line virtual method, so the vtable, etc has a home.
44TerminatorInst::~TerminatorInst() {
45}
46
Gabor Greiff6caff662008-05-10 08:32:32 +000047//===----------------------------------------------------------------------===//
48// UnaryInstruction Class
49//===----------------------------------------------------------------------===//
50
Gordon Henriksen14a55692007-12-10 02:14:30 +000051// Out of line virtual method, so the vtable, etc has a home.
52UnaryInstruction::~UnaryInstruction() {
53}
54
Chris Lattnerafdb3de2005-01-29 00:35:16 +000055//===----------------------------------------------------------------------===//
Chris Lattner88107952008-12-29 00:12:50 +000056// SelectInst Class
57//===----------------------------------------------------------------------===//
58
59/// areInvalidOperands - Return a string if the specified operands are invalid
60/// for a select operation, otherwise return null.
61const char *SelectInst::areInvalidOperands(Value *Op0, Value *Op1, Value *Op2) {
62 if (Op1->getType() != Op2->getType())
63 return "both values to select must have same type";
64
Chris Lattner229907c2011-07-18 04:54:35 +000065 if (VectorType *VT = dyn_cast<VectorType>(Op0->getType())) {
Chris Lattner88107952008-12-29 00:12:50 +000066 // Vector select.
Owen Anderson55f1c092009-08-13 21:58:54 +000067 if (VT->getElementType() != Type::getInt1Ty(Op0->getContext()))
Chris Lattner88107952008-12-29 00:12:50 +000068 return "vector select condition element type must be i1";
Chris Lattner229907c2011-07-18 04:54:35 +000069 VectorType *ET = dyn_cast<VectorType>(Op1->getType());
Chris Lattner88107952008-12-29 00:12:50 +000070 if (ET == 0)
71 return "selected values for vector select must be vectors";
72 if (ET->getNumElements() != VT->getNumElements())
73 return "vector select requires selected vectors to have "
74 "the same vector length as select condition";
Owen Anderson55f1c092009-08-13 21:58:54 +000075 } else if (Op0->getType() != Type::getInt1Ty(Op0->getContext())) {
Chris Lattner88107952008-12-29 00:12:50 +000076 return "select condition must be i1 or <n x i1>";
77 }
78 return 0;
79}
80
81
82//===----------------------------------------------------------------------===//
Chris Lattnerafdb3de2005-01-29 00:35:16 +000083// PHINode Class
84//===----------------------------------------------------------------------===//
85
86PHINode::PHINode(const PHINode &PN)
87 : Instruction(PN.getType(), Instruction::PHI,
Gabor Greiff6caff662008-05-10 08:32:32 +000088 allocHungoffUses(PN.getNumOperands()), PN.getNumOperands()),
Chris Lattnerafdb3de2005-01-29 00:35:16 +000089 ReservedSpace(PN.getNumOperands()) {
Jay Foad61ea0e42011-06-23 09:09:15 +000090 std::copy(PN.op_begin(), PN.op_end(), op_begin());
91 std::copy(PN.block_begin(), PN.block_end(), block_begin());
Dan Gohmanc8a27f22009-08-25 22:11:20 +000092 SubclassOptionalData = PN.SubclassOptionalData;
Chris Lattnerafdb3de2005-01-29 00:35:16 +000093}
94
Gordon Henriksen14a55692007-12-10 02:14:30 +000095PHINode::~PHINode() {
Jay Foadbbb91f22011-01-16 15:30:52 +000096 dropHungoffUses();
Chris Lattnerafdb3de2005-01-29 00:35:16 +000097}
98
Jay Foad61ea0e42011-06-23 09:09:15 +000099Use *PHINode::allocHungoffUses(unsigned N) const {
100 // Allocate the array of Uses of the incoming values, followed by a pointer
101 // (with bottom bit set) to the User, followed by the array of pointers to
102 // the incoming basic blocks.
103 size_t size = N * sizeof(Use) + sizeof(Use::UserRef)
104 + N * sizeof(BasicBlock*);
105 Use *Begin = static_cast<Use*>(::operator new(size));
106 Use *End = Begin + N;
107 (void) new(End) Use::UserRef(const_cast<PHINode*>(this), 1);
108 return Use::initTags(Begin, End);
109}
110
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000111// removeIncomingValue - Remove an incoming value. This is useful if a
112// predecessor basic block is deleted.
113Value *PHINode::removeIncomingValue(unsigned Idx, bool DeletePHIIfEmpty) {
Jay Foad61ea0e42011-06-23 09:09:15 +0000114 Value *Removed = getIncomingValue(Idx);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000115
116 // Move everything after this operand down.
117 //
118 // FIXME: we could just swap with the end of the list, then erase. However,
Jay Foad61ea0e42011-06-23 09:09:15 +0000119 // clients might not expect this to happen. The code as it is thrashes the
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000120 // use/def lists, which is kinda lame.
Jay Foad61ea0e42011-06-23 09:09:15 +0000121 std::copy(op_begin() + Idx + 1, op_end(), op_begin() + Idx);
122 std::copy(block_begin() + Idx + 1, block_end(), block_begin() + Idx);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000123
124 // Nuke the last value.
Jay Foad61ea0e42011-06-23 09:09:15 +0000125 Op<-1>().set(0);
126 --NumOperands;
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000127
128 // If the PHI node is dead, because it has zero entries, nuke it now.
Jay Foad61ea0e42011-06-23 09:09:15 +0000129 if (getNumOperands() == 0 && DeletePHIIfEmpty) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000130 // If anyone is using this PHI, make them use a dummy value instead...
Owen Andersonb292b8c2009-07-30 23:03:37 +0000131 replaceAllUsesWith(UndefValue::get(getType()));
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000132 eraseFromParent();
133 }
134 return Removed;
135}
136
Jay Foade98f29d2011-04-01 08:00:58 +0000137/// growOperands - grow operands - This grows the operand list in response
138/// to a push_back style of operation. This grows the number of ops by 1.5
139/// times.
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000140///
Jay Foade98f29d2011-04-01 08:00:58 +0000141void PHINode::growOperands() {
Gabor Greiff6caff662008-05-10 08:32:32 +0000142 unsigned e = getNumOperands();
Jay Foad61ea0e42011-06-23 09:09:15 +0000143 unsigned NumOps = e + e / 2;
144 if (NumOps < 2) NumOps = 2; // 2 op PHI nodes are VERY common.
145
146 Use *OldOps = op_begin();
147 BasicBlock **OldBlocks = block_begin();
Jay Foade03c05c2011-06-20 14:38:01 +0000148
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000149 ReservedSpace = NumOps;
Jay Foad61ea0e42011-06-23 09:09:15 +0000150 OperandList = allocHungoffUses(ReservedSpace);
151
152 std::copy(OldOps, OldOps + e, op_begin());
153 std::copy(OldBlocks, OldBlocks + e, block_begin());
154
Jay Foadbbb91f22011-01-16 15:30:52 +0000155 Use::zap(OldOps, OldOps + e, true);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000156}
157
Nate Begemanb3923212005-08-04 23:24:19 +0000158/// hasConstantValue - If the specified PHI node always merges together the same
159/// value, return the value, otherwise return null.
Duncan Sands7412f6e2010-11-17 04:30:22 +0000160Value *PHINode::hasConstantValue() const {
161 // Exploit the fact that phi nodes always have at least one entry.
162 Value *ConstantValue = getIncomingValue(0);
163 for (unsigned i = 1, e = getNumIncomingValues(); i != e; ++i)
164 if (getIncomingValue(i) != ConstantValue)
165 return 0; // Incoming values not all the same.
166 return ConstantValue;
Nate Begemanb3923212005-08-04 23:24:19 +0000167}
168
Bill Wendlingfae14752011-08-12 20:24:12 +0000169//===----------------------------------------------------------------------===//
170// LandingPadInst Implementation
171//===----------------------------------------------------------------------===//
172
173LandingPadInst::LandingPadInst(Type *RetTy, Value *PersonalityFn,
174 unsigned NumReservedValues, const Twine &NameStr,
175 Instruction *InsertBefore)
176 : Instruction(RetTy, Instruction::LandingPad, 0, 0, InsertBefore) {
177 init(PersonalityFn, 1 + NumReservedValues, NameStr);
178}
179
180LandingPadInst::LandingPadInst(Type *RetTy, Value *PersonalityFn,
181 unsigned NumReservedValues, const Twine &NameStr,
182 BasicBlock *InsertAtEnd)
183 : Instruction(RetTy, Instruction::LandingPad, 0, 0, InsertAtEnd) {
184 init(PersonalityFn, 1 + NumReservedValues, NameStr);
185}
186
187LandingPadInst::LandingPadInst(const LandingPadInst &LP)
188 : Instruction(LP.getType(), Instruction::LandingPad,
189 allocHungoffUses(LP.getNumOperands()), LP.getNumOperands()),
190 ReservedSpace(LP.getNumOperands()) {
191 Use *OL = OperandList, *InOL = LP.OperandList;
192 for (unsigned I = 0, E = ReservedSpace; I != E; ++I)
193 OL[I] = InOL[I];
194
195 setCleanup(LP.isCleanup());
196}
197
198LandingPadInst::~LandingPadInst() {
199 dropHungoffUses();
200}
201
202LandingPadInst *LandingPadInst::Create(Type *RetTy, Value *PersonalityFn,
203 unsigned NumReservedClauses,
204 const Twine &NameStr,
205 Instruction *InsertBefore) {
206 return new LandingPadInst(RetTy, PersonalityFn, NumReservedClauses, NameStr,
207 InsertBefore);
208}
209
210LandingPadInst *LandingPadInst::Create(Type *RetTy, Value *PersonalityFn,
211 unsigned NumReservedClauses,
212 const Twine &NameStr,
213 BasicBlock *InsertAtEnd) {
214 return new LandingPadInst(RetTy, PersonalityFn, NumReservedClauses, NameStr,
215 InsertAtEnd);
216}
217
218void LandingPadInst::init(Value *PersFn, unsigned NumReservedValues,
219 const Twine &NameStr) {
220 ReservedSpace = NumReservedValues;
221 NumOperands = 1;
222 OperandList = allocHungoffUses(ReservedSpace);
223 OperandList[0] = PersFn;
224 setName(NameStr);
225 setCleanup(false);
226}
227
228/// growOperands - grow operands - This grows the operand list in response to a
229/// push_back style of operation. This grows the number of ops by 2 times.
230void LandingPadInst::growOperands(unsigned Size) {
231 unsigned e = getNumOperands();
232 if (ReservedSpace >= e + Size) return;
233 ReservedSpace = (e + Size / 2) * 2;
234
235 Use *NewOps = allocHungoffUses(ReservedSpace);
236 Use *OldOps = OperandList;
237 for (unsigned i = 0; i != e; ++i)
238 NewOps[i] = OldOps[i];
239
240 OperandList = NewOps;
241 Use::zap(OldOps, OldOps + e, true);
242}
243
244void LandingPadInst::addClause(Value *Val) {
245 unsigned OpNo = getNumOperands();
246 growOperands(1);
247 assert(OpNo < ReservedSpace && "Growing didn't work!");
248 ++NumOperands;
249 OperandList[OpNo] = Val;
250}
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000251
252//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000253// CallInst Implementation
254//===----------------------------------------------------------------------===//
255
Gordon Henriksen14a55692007-12-10 02:14:30 +0000256CallInst::~CallInst() {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000257}
258
Jay Foad5bd375a2011-07-15 08:37:34 +0000259void CallInst::init(Value *Func, ArrayRef<Value *> Args, const Twine &NameStr) {
260 assert(NumOperands == Args.size() + 1 && "NumOperands not set up?");
Gabor Greif6d673952010-07-16 09:38:02 +0000261 Op<-1>() = Func;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000262
Jay Foad5bd375a2011-07-15 08:37:34 +0000263#ifndef NDEBUG
Chris Lattner229907c2011-07-18 04:54:35 +0000264 FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000265 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
266
Jay Foad5bd375a2011-07-15 08:37:34 +0000267 assert((Args.size() == FTy->getNumParams() ||
268 (FTy->isVarArg() && Args.size() > FTy->getNumParams())) &&
Chris Lattner667a0562006-05-03 00:48:22 +0000269 "Calling a function with bad signature!");
Jay Foad5bd375a2011-07-15 08:37:34 +0000270
271 for (unsigned i = 0; i != Args.size(); ++i)
Chris Lattner667a0562006-05-03 00:48:22 +0000272 assert((i >= FTy->getNumParams() ||
Jay Foad5bd375a2011-07-15 08:37:34 +0000273 FTy->getParamType(i) == Args[i]->getType()) &&
Chris Lattner667a0562006-05-03 00:48:22 +0000274 "Calling a function with a bad signature!");
Jay Foad5bd375a2011-07-15 08:37:34 +0000275#endif
276
277 std::copy(Args.begin(), Args.end(), op_begin());
278 setName(NameStr);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000279}
280
Jay Foad5bd375a2011-07-15 08:37:34 +0000281void CallInst::init(Value *Func, const Twine &NameStr) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000282 assert(NumOperands == 1 && "NumOperands not set up?");
Gabor Greif6d673952010-07-16 09:38:02 +0000283 Op<-1>() = Func;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000284
Jay Foad5bd375a2011-07-15 08:37:34 +0000285#ifndef NDEBUG
Chris Lattner229907c2011-07-18 04:54:35 +0000286 FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000287 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
288
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000289 assert(FTy->getNumParams() == 0 && "Calling a function with bad signature");
Jay Foad5bd375a2011-07-15 08:37:34 +0000290#endif
291
292 setName(NameStr);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000293}
294
Daniel Dunbar4975db62009-07-25 04:41:11 +0000295CallInst::CallInst(Value *Func, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000296 Instruction *InsertBefore)
297 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
298 ->getElementType())->getReturnType(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000299 Instruction::Call,
300 OperandTraits<CallInst>::op_end(this) - 1,
301 1, InsertBefore) {
Jay Foad5bd375a2011-07-15 08:37:34 +0000302 init(Func, Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000303}
304
Daniel Dunbar4975db62009-07-25 04:41:11 +0000305CallInst::CallInst(Value *Func, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000306 BasicBlock *InsertAtEnd)
307 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
308 ->getElementType())->getReturnType(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000309 Instruction::Call,
310 OperandTraits<CallInst>::op_end(this) - 1,
311 1, InsertAtEnd) {
Jay Foad5bd375a2011-07-15 08:37:34 +0000312 init(Func, Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000313}
314
Misha Brukmanb1c93172005-04-21 23:48:37 +0000315CallInst::CallInst(const CallInst &CI)
Gabor Greiff6caff662008-05-10 08:32:32 +0000316 : Instruction(CI.getType(), Instruction::Call,
317 OperandTraits<CallInst>::op_end(this) - CI.getNumOperands(),
Chris Lattner8a923e72008-03-12 17:45:29 +0000318 CI.getNumOperands()) {
Devang Patel4c758ea2008-09-25 21:00:45 +0000319 setAttributes(CI.getAttributes());
Chris Lattnerb9c86512009-12-29 02:14:09 +0000320 setTailCall(CI.isTailCall());
321 setCallingConv(CI.getCallingConv());
322
Jay Foad5bd375a2011-07-15 08:37:34 +0000323 std::copy(CI.op_begin(), CI.op_end(), op_begin());
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000324 SubclassOptionalData = CI.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000325}
326
Devang Patel4c758ea2008-09-25 21:00:45 +0000327void CallInst::addAttribute(unsigned i, Attributes attr) {
328 AttrListPtr PAL = getAttributes();
Eric Christopher901b1a72008-05-16 20:39:43 +0000329 PAL = PAL.addAttr(i, attr);
Devang Patel4c758ea2008-09-25 21:00:45 +0000330 setAttributes(PAL);
Eric Christopher901b1a72008-05-16 20:39:43 +0000331}
332
Devang Patel4c758ea2008-09-25 21:00:45 +0000333void CallInst::removeAttribute(unsigned i, Attributes attr) {
334 AttrListPtr PAL = getAttributes();
Duncan Sands78c88722008-07-08 08:38:44 +0000335 PAL = PAL.removeAttr(i, attr);
Devang Patel4c758ea2008-09-25 21:00:45 +0000336 setAttributes(PAL);
Duncan Sands78c88722008-07-08 08:38:44 +0000337}
338
Devang Patelba3fa6c2008-09-23 23:03:40 +0000339bool CallInst::paramHasAttr(unsigned i, Attributes attr) const {
Devang Patel4c758ea2008-09-25 21:00:45 +0000340 if (AttributeList.paramHasAttr(i, attr))
Duncan Sands5208d1a2007-11-28 17:07:01 +0000341 return true;
Duncan Sands8dfcd592007-11-29 08:30:15 +0000342 if (const Function *F = getCalledFunction())
Dale Johannesen89268bc2008-02-19 21:38:47 +0000343 return F->paramHasAttr(i, attr);
Duncan Sands8dfcd592007-11-29 08:30:15 +0000344 return false;
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000345}
346
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000347/// IsConstantOne - Return true only if val is constant int 1
348static bool IsConstantOne(Value *val) {
349 assert(val && "IsConstantOne does not work with NULL val");
350 return isa<ConstantInt>(val) && cast<ConstantInt>(val)->isOne();
351}
352
Nick Lewyckybb1410e2009-10-17 23:52:26 +0000353static Instruction *createMalloc(Instruction *InsertBefore,
Chris Lattner229907c2011-07-18 04:54:35 +0000354 BasicBlock *InsertAtEnd, Type *IntPtrTy,
355 Type *AllocTy, Value *AllocSize,
Victor Hernandezf3db9152009-11-07 00:16:28 +0000356 Value *ArraySize, Function *MallocF,
357 const Twine &Name) {
Benjamin Kramer4bf4e862009-09-10 11:31:39 +0000358 assert(((!InsertBefore && InsertAtEnd) || (InsertBefore && !InsertAtEnd)) &&
Victor Hernandez788eaab2009-09-18 19:20:02 +0000359 "createMalloc needs either InsertBefore or InsertAtEnd");
360
361 // malloc(type) becomes:
362 // bitcast (i8* malloc(typeSize)) to type*
363 // malloc(type, arraySize) becomes:
364 // bitcast (i8 *malloc(typeSize*arraySize)) to type*
Victor Hernandezf3db9152009-11-07 00:16:28 +0000365 if (!ArraySize)
366 ArraySize = ConstantInt::get(IntPtrTy, 1);
367 else if (ArraySize->getType() != IntPtrTy) {
368 if (InsertBefore)
Victor Hernandeze04ed0c2009-11-07 00:36:50 +0000369 ArraySize = CastInst::CreateIntegerCast(ArraySize, IntPtrTy, false,
370 "", InsertBefore);
Victor Hernandezf3db9152009-11-07 00:16:28 +0000371 else
Victor Hernandeze04ed0c2009-11-07 00:36:50 +0000372 ArraySize = CastInst::CreateIntegerCast(ArraySize, IntPtrTy, false,
373 "", InsertAtEnd);
Victor Hernandezf3db9152009-11-07 00:16:28 +0000374 }
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000375
Benjamin Kramer4bf4e862009-09-10 11:31:39 +0000376 if (!IsConstantOne(ArraySize)) {
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000377 if (IsConstantOne(AllocSize)) {
378 AllocSize = ArraySize; // Operand * 1 = Operand
379 } else if (Constant *CO = dyn_cast<Constant>(ArraySize)) {
380 Constant *Scale = ConstantExpr::getIntegerCast(CO, IntPtrTy,
381 false /*ZExt*/);
382 // Malloc arg is constant product of type size and array size
383 AllocSize = ConstantExpr::getMul(Scale, cast<Constant>(AllocSize));
384 } else {
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000385 // Multiply type size by the array size...
386 if (InsertBefore)
Victor Hernandez788eaab2009-09-18 19:20:02 +0000387 AllocSize = BinaryOperator::CreateMul(ArraySize, AllocSize,
388 "mallocsize", InsertBefore);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000389 else
Victor Hernandez788eaab2009-09-18 19:20:02 +0000390 AllocSize = BinaryOperator::CreateMul(ArraySize, AllocSize,
391 "mallocsize", InsertAtEnd);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000392 }
Benjamin Kramer4bf4e862009-09-10 11:31:39 +0000393 }
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000394
Victor Hernandez788eaab2009-09-18 19:20:02 +0000395 assert(AllocSize->getType() == IntPtrTy && "malloc arg is wrong size");
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000396 // Create the call to Malloc.
397 BasicBlock* BB = InsertBefore ? InsertBefore->getParent() : InsertAtEnd;
398 Module* M = BB->getParent()->getParent();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000399 Type *BPTy = Type::getInt8PtrTy(BB->getContext());
Victor Hernandezbb336a12009-11-10 19:53:28 +0000400 Value *MallocFunc = MallocF;
401 if (!MallocFunc)
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000402 // prototype malloc as "void *malloc(size_t)"
Victor Hernandezbb336a12009-11-10 19:53:28 +0000403 MallocFunc = M->getOrInsertFunction("malloc", BPTy, IntPtrTy, NULL);
Chris Lattner229907c2011-07-18 04:54:35 +0000404 PointerType *AllocPtrType = PointerType::getUnqual(AllocTy);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000405 CallInst *MCall = NULL;
Nick Lewyckybb1410e2009-10-17 23:52:26 +0000406 Instruction *Result = NULL;
Victor Hernandez788eaab2009-09-18 19:20:02 +0000407 if (InsertBefore) {
Victor Hernandezbb336a12009-11-10 19:53:28 +0000408 MCall = CallInst::Create(MallocFunc, AllocSize, "malloccall", InsertBefore);
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000409 Result = MCall;
410 if (Result->getType() != AllocPtrType)
411 // Create a cast instruction to convert to the right type...
Victor Hernandezf3db9152009-11-07 00:16:28 +0000412 Result = new BitCastInst(MCall, AllocPtrType, Name, InsertBefore);
Victor Hernandez788eaab2009-09-18 19:20:02 +0000413 } else {
Victor Hernandezbb336a12009-11-10 19:53:28 +0000414 MCall = CallInst::Create(MallocFunc, AllocSize, "malloccall");
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000415 Result = MCall;
416 if (Result->getType() != AllocPtrType) {
417 InsertAtEnd->getInstList().push_back(MCall);
418 // Create a cast instruction to convert to the right type...
Victor Hernandezf3db9152009-11-07 00:16:28 +0000419 Result = new BitCastInst(MCall, AllocPtrType, Name);
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000420 }
Victor Hernandez788eaab2009-09-18 19:20:02 +0000421 }
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000422 MCall->setTailCall();
Victor Hernandezbb336a12009-11-10 19:53:28 +0000423 if (Function *F = dyn_cast<Function>(MallocFunc)) {
424 MCall->setCallingConv(F->getCallingConv());
425 if (!F->doesNotAlias(0)) F->setDoesNotAlias(0);
426 }
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000427 assert(!MCall->getType()->isVoidTy() && "Malloc has void return type");
Victor Hernandez788eaab2009-09-18 19:20:02 +0000428
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000429 return Result;
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000430}
431
432/// CreateMalloc - Generate the IR for a call to malloc:
433/// 1. Compute the malloc call's argument as the specified type's size,
434/// possibly multiplied by the array size if the array size is not
435/// constant 1.
436/// 2. Call malloc with that argument.
437/// 3. Bitcast the result of the malloc call to the specified type.
Nick Lewyckybb1410e2009-10-17 23:52:26 +0000438Instruction *CallInst::CreateMalloc(Instruction *InsertBefore,
Chris Lattner229907c2011-07-18 04:54:35 +0000439 Type *IntPtrTy, Type *AllocTy,
Victor Hernandezf3db9152009-11-07 00:16:28 +0000440 Value *AllocSize, Value *ArraySize,
Duncan Sands41b4a6b2010-07-12 08:16:59 +0000441 Function * MallocF,
Victor Hernandezf3db9152009-11-07 00:16:28 +0000442 const Twine &Name) {
443 return createMalloc(InsertBefore, NULL, IntPtrTy, AllocTy, AllocSize,
Chris Lattner601e390a2010-07-12 00:57:28 +0000444 ArraySize, MallocF, Name);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000445}
446
447/// CreateMalloc - Generate the IR for a call to malloc:
448/// 1. Compute the malloc call's argument as the specified type's size,
449/// possibly multiplied by the array size if the array size is not
450/// constant 1.
451/// 2. Call malloc with that argument.
452/// 3. Bitcast the result of the malloc call to the specified type.
453/// Note: This function does not add the bitcast to the basic block, that is the
454/// responsibility of the caller.
Nick Lewyckybb1410e2009-10-17 23:52:26 +0000455Instruction *CallInst::CreateMalloc(BasicBlock *InsertAtEnd,
Chris Lattner229907c2011-07-18 04:54:35 +0000456 Type *IntPtrTy, Type *AllocTy,
Victor Hernandezf3db9152009-11-07 00:16:28 +0000457 Value *AllocSize, Value *ArraySize,
458 Function *MallocF, const Twine &Name) {
459 return createMalloc(NULL, InsertAtEnd, IntPtrTy, AllocTy, AllocSize,
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000460 ArraySize, MallocF, Name);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000461}
Duncan Sands5208d1a2007-11-28 17:07:01 +0000462
Victor Hernandeze2971492009-10-24 04:23:03 +0000463static Instruction* createFree(Value* Source, Instruction *InsertBefore,
464 BasicBlock *InsertAtEnd) {
465 assert(((!InsertBefore && InsertAtEnd) || (InsertBefore && !InsertAtEnd)) &&
466 "createFree needs either InsertBefore or InsertAtEnd");
Duncan Sands19d0b472010-02-16 11:11:14 +0000467 assert(Source->getType()->isPointerTy() &&
Victor Hernandeze2971492009-10-24 04:23:03 +0000468 "Can not free something of nonpointer type!");
469
470 BasicBlock* BB = InsertBefore ? InsertBefore->getParent() : InsertAtEnd;
471 Module* M = BB->getParent()->getParent();
472
Chris Lattner229907c2011-07-18 04:54:35 +0000473 Type *VoidTy = Type::getVoidTy(M->getContext());
474 Type *IntPtrTy = Type::getInt8PtrTy(M->getContext());
Victor Hernandeze2971492009-10-24 04:23:03 +0000475 // prototype free as "void free(void*)"
Chris Lattner2156c222009-11-09 07:12:01 +0000476 Value *FreeFunc = M->getOrInsertFunction("free", VoidTy, IntPtrTy, NULL);
Victor Hernandeze2971492009-10-24 04:23:03 +0000477 CallInst* Result = NULL;
478 Value *PtrCast = Source;
479 if (InsertBefore) {
480 if (Source->getType() != IntPtrTy)
481 PtrCast = new BitCastInst(Source, IntPtrTy, "", InsertBefore);
482 Result = CallInst::Create(FreeFunc, PtrCast, "", InsertBefore);
483 } else {
484 if (Source->getType() != IntPtrTy)
485 PtrCast = new BitCastInst(Source, IntPtrTy, "", InsertAtEnd);
486 Result = CallInst::Create(FreeFunc, PtrCast, "");
487 }
488 Result->setTailCall();
Chris Lattner2156c222009-11-09 07:12:01 +0000489 if (Function *F = dyn_cast<Function>(FreeFunc))
490 Result->setCallingConv(F->getCallingConv());
Victor Hernandeze2971492009-10-24 04:23:03 +0000491
492 return Result;
493}
494
495/// CreateFree - Generate the IR for a call to the builtin free function.
Chris Lattner601e390a2010-07-12 00:57:28 +0000496Instruction * CallInst::CreateFree(Value* Source, Instruction *InsertBefore) {
497 return createFree(Source, InsertBefore, NULL);
Victor Hernandeze2971492009-10-24 04:23:03 +0000498}
499
500/// CreateFree - Generate the IR for a call to the builtin free function.
501/// Note: This function does not add the call to the basic block, that is the
502/// responsibility of the caller.
503Instruction* CallInst::CreateFree(Value* Source, BasicBlock *InsertAtEnd) {
504 Instruction* FreeCall = createFree(Source, NULL, InsertAtEnd);
505 assert(FreeCall && "CreateFree did not create a CallInst");
506 return FreeCall;
507}
508
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000509//===----------------------------------------------------------------------===//
510// InvokeInst Implementation
511//===----------------------------------------------------------------------===//
512
513void InvokeInst::init(Value *Fn, BasicBlock *IfNormal, BasicBlock *IfException,
Jay Foad5bd375a2011-07-15 08:37:34 +0000514 ArrayRef<Value *> Args, const Twine &NameStr) {
515 assert(NumOperands == 3 + Args.size() && "NumOperands not set up?");
Gabor Greifa2fbc0a2010-03-24 13:21:49 +0000516 Op<-3>() = Fn;
517 Op<-2>() = IfNormal;
518 Op<-1>() = IfException;
Jay Foad5bd375a2011-07-15 08:37:34 +0000519
520#ifndef NDEBUG
Chris Lattner229907c2011-07-18 04:54:35 +0000521 FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000522 cast<FunctionType>(cast<PointerType>(Fn->getType())->getElementType());
Misha Brukmanb1c93172005-04-21 23:48:37 +0000523
Jay Foad5bd375a2011-07-15 08:37:34 +0000524 assert(((Args.size() == FTy->getNumParams()) ||
525 (FTy->isVarArg() && Args.size() > FTy->getNumParams())) &&
Gabor Greif668d7002010-03-23 13:45:54 +0000526 "Invoking a function with bad signature");
Misha Brukmanb1c93172005-04-21 23:48:37 +0000527
Jay Foad5bd375a2011-07-15 08:37:34 +0000528 for (unsigned i = 0, e = Args.size(); i != e; i++)
Chris Lattner667a0562006-05-03 00:48:22 +0000529 assert((i >= FTy->getNumParams() ||
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000530 FTy->getParamType(i) == Args[i]->getType()) &&
Chris Lattner667a0562006-05-03 00:48:22 +0000531 "Invoking a function with a bad signature!");
Jay Foad5bd375a2011-07-15 08:37:34 +0000532#endif
533
534 std::copy(Args.begin(), Args.end(), op_begin());
535 setName(NameStr);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000536}
537
Misha Brukmanb1c93172005-04-21 23:48:37 +0000538InvokeInst::InvokeInst(const InvokeInst &II)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000539 : TerminatorInst(II.getType(), Instruction::Invoke,
Gabor Greif697e94c2008-05-15 10:04:30 +0000540 OperandTraits<InvokeInst>::op_end(this)
541 - II.getNumOperands(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000542 II.getNumOperands()) {
Devang Patel4c758ea2008-09-25 21:00:45 +0000543 setAttributes(II.getAttributes());
Chris Lattnerb9c86512009-12-29 02:14:09 +0000544 setCallingConv(II.getCallingConv());
Jay Foad5bd375a2011-07-15 08:37:34 +0000545 std::copy(II.op_begin(), II.op_end(), op_begin());
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000546 SubclassOptionalData = II.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000547}
548
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000549BasicBlock *InvokeInst::getSuccessorV(unsigned idx) const {
550 return getSuccessor(idx);
551}
552unsigned InvokeInst::getNumSuccessorsV() const {
553 return getNumSuccessors();
554}
555void InvokeInst::setSuccessorV(unsigned idx, BasicBlock *B) {
556 return setSuccessor(idx, B);
557}
558
Devang Patelba3fa6c2008-09-23 23:03:40 +0000559bool InvokeInst::paramHasAttr(unsigned i, Attributes attr) const {
Devang Patel4c758ea2008-09-25 21:00:45 +0000560 if (AttributeList.paramHasAttr(i, attr))
Duncan Sands5208d1a2007-11-28 17:07:01 +0000561 return true;
Duncan Sands8dfcd592007-11-29 08:30:15 +0000562 if (const Function *F = getCalledFunction())
Dale Johannesen89268bc2008-02-19 21:38:47 +0000563 return F->paramHasAttr(i, attr);
Duncan Sands8dfcd592007-11-29 08:30:15 +0000564 return false;
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000565}
566
Devang Patel4c758ea2008-09-25 21:00:45 +0000567void InvokeInst::addAttribute(unsigned i, Attributes attr) {
568 AttrListPtr PAL = getAttributes();
Eric Christopher901b1a72008-05-16 20:39:43 +0000569 PAL = PAL.addAttr(i, attr);
Devang Patel4c758ea2008-09-25 21:00:45 +0000570 setAttributes(PAL);
Eric Christopher901b1a72008-05-16 20:39:43 +0000571}
572
Devang Patel4c758ea2008-09-25 21:00:45 +0000573void InvokeInst::removeAttribute(unsigned i, Attributes attr) {
574 AttrListPtr PAL = getAttributes();
Duncan Sands78c88722008-07-08 08:38:44 +0000575 PAL = PAL.removeAttr(i, attr);
Devang Patel4c758ea2008-09-25 21:00:45 +0000576 setAttributes(PAL);
Duncan Sandsaa31b922007-12-19 21:13:37 +0000577}
578
Bill Wendlingfae14752011-08-12 20:24:12 +0000579LandingPadInst *InvokeInst::getLandingPadInst() const {
580 return cast<LandingPadInst>(getUnwindDest()->getFirstNonPHI());
581}
Duncan Sands5208d1a2007-11-28 17:07:01 +0000582
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000583//===----------------------------------------------------------------------===//
584// ReturnInst Implementation
585//===----------------------------------------------------------------------===//
586
Chris Lattner2195fc42007-02-24 00:55:48 +0000587ReturnInst::ReturnInst(const ReturnInst &RI)
Owen Anderson55f1c092009-08-13 21:58:54 +0000588 : TerminatorInst(Type::getVoidTy(RI.getContext()), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000589 OperandTraits<ReturnInst>::op_end(this) -
590 RI.getNumOperands(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000591 RI.getNumOperands()) {
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000592 if (RI.getNumOperands())
Gabor Greif2d3024d2008-05-26 21:33:52 +0000593 Op<0>() = RI.Op<0>();
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000594 SubclassOptionalData = RI.SubclassOptionalData;
Chris Lattner2195fc42007-02-24 00:55:48 +0000595}
596
Owen Anderson55f1c092009-08-13 21:58:54 +0000597ReturnInst::ReturnInst(LLVMContext &C, Value *retVal, Instruction *InsertBefore)
598 : TerminatorInst(Type::getVoidTy(C), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000599 OperandTraits<ReturnInst>::op_end(this) - !!retVal, !!retVal,
600 InsertBefore) {
Devang Patelc38eb522008-02-26 18:49:29 +0000601 if (retVal)
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000602 Op<0>() = retVal;
Chris Lattner2195fc42007-02-24 00:55:48 +0000603}
Owen Anderson55f1c092009-08-13 21:58:54 +0000604ReturnInst::ReturnInst(LLVMContext &C, Value *retVal, BasicBlock *InsertAtEnd)
605 : TerminatorInst(Type::getVoidTy(C), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000606 OperandTraits<ReturnInst>::op_end(this) - !!retVal, !!retVal,
607 InsertAtEnd) {
Devang Patelc38eb522008-02-26 18:49:29 +0000608 if (retVal)
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000609 Op<0>() = retVal;
Chris Lattner2195fc42007-02-24 00:55:48 +0000610}
Owen Anderson55f1c092009-08-13 21:58:54 +0000611ReturnInst::ReturnInst(LLVMContext &Context, BasicBlock *InsertAtEnd)
612 : TerminatorInst(Type::getVoidTy(Context), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000613 OperandTraits<ReturnInst>::op_end(this), 0, InsertAtEnd) {
Devang Patel59643e52008-02-23 00:35:18 +0000614}
615
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000616unsigned ReturnInst::getNumSuccessorsV() const {
617 return getNumSuccessors();
618}
619
Devang Patelae682fb2008-02-26 17:56:20 +0000620/// Out-of-line ReturnInst method, put here so the C++ compiler can choose to
621/// emit the vtable for the class in this translation unit.
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000622void ReturnInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000623 llvm_unreachable("ReturnInst has no successors!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000624}
625
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000626BasicBlock *ReturnInst::getSuccessorV(unsigned idx) const {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000627 llvm_unreachable("ReturnInst has no successors!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000628}
629
Devang Patel59643e52008-02-23 00:35:18 +0000630ReturnInst::~ReturnInst() {
Devang Patel59643e52008-02-23 00:35:18 +0000631}
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000632
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000633//===----------------------------------------------------------------------===//
634// UnwindInst Implementation
635//===----------------------------------------------------------------------===//
636
Owen Anderson55f1c092009-08-13 21:58:54 +0000637UnwindInst::UnwindInst(LLVMContext &Context, Instruction *InsertBefore)
638 : TerminatorInst(Type::getVoidTy(Context), Instruction::Unwind,
639 0, 0, InsertBefore) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000640}
Owen Anderson55f1c092009-08-13 21:58:54 +0000641UnwindInst::UnwindInst(LLVMContext &Context, BasicBlock *InsertAtEnd)
642 : TerminatorInst(Type::getVoidTy(Context), Instruction::Unwind,
643 0, 0, InsertAtEnd) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000644}
645
646
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000647unsigned UnwindInst::getNumSuccessorsV() const {
648 return getNumSuccessors();
649}
650
651void UnwindInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000652 llvm_unreachable("UnwindInst has no successors!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000653}
654
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000655BasicBlock *UnwindInst::getSuccessorV(unsigned idx) const {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000656 llvm_unreachable("UnwindInst has no successors!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000657}
658
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000659//===----------------------------------------------------------------------===//
Bill Wendlingf891bf82011-07-31 06:30:59 +0000660// ResumeInst Implementation
661//===----------------------------------------------------------------------===//
662
663ResumeInst::ResumeInst(const ResumeInst &RI)
664 : TerminatorInst(Type::getVoidTy(RI.getContext()), Instruction::Resume,
665 OperandTraits<ResumeInst>::op_begin(this), 1) {
666 Op<0>() = RI.Op<0>();
667}
668
669ResumeInst::ResumeInst(Value *Exn, Instruction *InsertBefore)
670 : TerminatorInst(Type::getVoidTy(Exn->getContext()), Instruction::Resume,
671 OperandTraits<ResumeInst>::op_begin(this), 1, InsertBefore) {
672 Op<0>() = Exn;
673}
674
675ResumeInst::ResumeInst(Value *Exn, BasicBlock *InsertAtEnd)
676 : TerminatorInst(Type::getVoidTy(Exn->getContext()), Instruction::Resume,
677 OperandTraits<ResumeInst>::op_begin(this), 1, InsertAtEnd) {
678 Op<0>() = Exn;
679}
680
681unsigned ResumeInst::getNumSuccessorsV() const {
682 return getNumSuccessors();
683}
684
685void ResumeInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
686 llvm_unreachable("ResumeInst has no successors!");
687}
688
689BasicBlock *ResumeInst::getSuccessorV(unsigned idx) const {
690 llvm_unreachable("ResumeInst has no successors!");
Bill Wendlingf891bf82011-07-31 06:30:59 +0000691}
692
693//===----------------------------------------------------------------------===//
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000694// UnreachableInst Implementation
695//===----------------------------------------------------------------------===//
696
Owen Anderson55f1c092009-08-13 21:58:54 +0000697UnreachableInst::UnreachableInst(LLVMContext &Context,
698 Instruction *InsertBefore)
699 : TerminatorInst(Type::getVoidTy(Context), Instruction::Unreachable,
700 0, 0, InsertBefore) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000701}
Owen Anderson55f1c092009-08-13 21:58:54 +0000702UnreachableInst::UnreachableInst(LLVMContext &Context, BasicBlock *InsertAtEnd)
703 : TerminatorInst(Type::getVoidTy(Context), Instruction::Unreachable,
704 0, 0, InsertAtEnd) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000705}
706
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000707unsigned UnreachableInst::getNumSuccessorsV() const {
708 return getNumSuccessors();
709}
710
711void UnreachableInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
Bill Wendlingad088e62011-07-30 05:42:50 +0000712 llvm_unreachable("UnwindInst has no successors!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000713}
714
715BasicBlock *UnreachableInst::getSuccessorV(unsigned idx) const {
Bill Wendlingad088e62011-07-30 05:42:50 +0000716 llvm_unreachable("UnwindInst has no successors!");
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000717}
718
719//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000720// BranchInst Implementation
721//===----------------------------------------------------------------------===//
722
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000723void BranchInst::AssertOK() {
724 if (isConditional())
Duncan Sands9dff9be2010-02-15 16:12:20 +0000725 assert(getCondition()->getType()->isIntegerTy(1) &&
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000726 "May only branch on boolean predicates!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000727}
728
Chris Lattner2195fc42007-02-24 00:55:48 +0000729BranchInst::BranchInst(BasicBlock *IfTrue, Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +0000730 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000731 OperandTraits<BranchInst>::op_end(this) - 1,
732 1, InsertBefore) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000733 assert(IfTrue != 0 && "Branch destination may not be null!");
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000734 Op<-1>() = IfTrue;
Chris Lattner2195fc42007-02-24 00:55:48 +0000735}
736BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
737 Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +0000738 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000739 OperandTraits<BranchInst>::op_end(this) - 3,
740 3, InsertBefore) {
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000741 Op<-1>() = IfTrue;
742 Op<-2>() = IfFalse;
743 Op<-3>() = Cond;
Chris Lattner2195fc42007-02-24 00:55:48 +0000744#ifndef NDEBUG
745 AssertOK();
746#endif
747}
748
749BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +0000750 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000751 OperandTraits<BranchInst>::op_end(this) - 1,
752 1, InsertAtEnd) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000753 assert(IfTrue != 0 && "Branch destination may not be null!");
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000754 Op<-1>() = IfTrue;
Chris Lattner2195fc42007-02-24 00:55:48 +0000755}
756
757BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
758 BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +0000759 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000760 OperandTraits<BranchInst>::op_end(this) - 3,
761 3, InsertAtEnd) {
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000762 Op<-1>() = IfTrue;
763 Op<-2>() = IfFalse;
764 Op<-3>() = Cond;
Chris Lattner2195fc42007-02-24 00:55:48 +0000765#ifndef NDEBUG
766 AssertOK();
767#endif
768}
769
770
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000771BranchInst::BranchInst(const BranchInst &BI) :
Owen Anderson55f1c092009-08-13 21:58:54 +0000772 TerminatorInst(Type::getVoidTy(BI.getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000773 OperandTraits<BranchInst>::op_end(this) - BI.getNumOperands(),
774 BI.getNumOperands()) {
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000775 Op<-1>() = BI.Op<-1>();
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000776 if (BI.getNumOperands() != 1) {
777 assert(BI.getNumOperands() == 3 && "BR can have 1 or 3 operands!");
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000778 Op<-3>() = BI.Op<-3>();
779 Op<-2>() = BI.Op<-2>();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000780 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000781 SubclassOptionalData = BI.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000782}
783
Chandler Carruth3e8aa652011-10-17 01:11:57 +0000784void BranchInst::swapSuccessors() {
785 assert(isConditional() &&
786 "Cannot swap successors of an unconditional branch");
787 Op<-1>().swap(Op<-2>());
788
789 // Update profile metadata if present and it matches our structural
790 // expectations.
791 MDNode *ProfileData = getMetadata(LLVMContext::MD_prof);
792 if (!ProfileData || ProfileData->getNumOperands() != 3)
793 return;
794
795 // The first operand is the name. Fetch them backwards and build a new one.
796 Value *Ops[] = {
797 ProfileData->getOperand(0),
798 ProfileData->getOperand(2),
799 ProfileData->getOperand(1)
800 };
801 setMetadata(LLVMContext::MD_prof,
802 MDNode::get(ProfileData->getContext(), Ops));
803}
804
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000805BasicBlock *BranchInst::getSuccessorV(unsigned idx) const {
806 return getSuccessor(idx);
807}
808unsigned BranchInst::getNumSuccessorsV() const {
809 return getNumSuccessors();
810}
811void BranchInst::setSuccessorV(unsigned idx, BasicBlock *B) {
812 setSuccessor(idx, B);
813}
814
815
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000816//===----------------------------------------------------------------------===//
Victor Hernandez8acf2952009-10-23 21:09:37 +0000817// AllocaInst Implementation
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000818//===----------------------------------------------------------------------===//
819
Owen Andersonb6b25302009-07-14 23:09:55 +0000820static Value *getAISize(LLVMContext &Context, Value *Amt) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000821 if (!Amt)
Owen Anderson55f1c092009-08-13 21:58:54 +0000822 Amt = ConstantInt::get(Type::getInt32Ty(Context), 1);
Chris Lattnerbb7ff662006-05-10 04:32:43 +0000823 else {
824 assert(!isa<BasicBlock>(Amt) &&
Chris Lattner9b6ec772007-10-18 16:10:48 +0000825 "Passed basic block into allocation size parameter! Use other ctor");
Dan Gohman2140a742010-05-28 01:14:11 +0000826 assert(Amt->getType()->isIntegerTy() &&
827 "Allocation array size is not an integer!");
Chris Lattnerbb7ff662006-05-10 04:32:43 +0000828 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000829 return Amt;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000830}
831
Chris Lattner229907c2011-07-18 04:54:35 +0000832AllocaInst::AllocaInst(Type *Ty, Value *ArraySize,
Victor Hernandez8acf2952009-10-23 21:09:37 +0000833 const Twine &Name, Instruction *InsertBefore)
834 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
835 getAISize(Ty->getContext(), ArraySize), InsertBefore) {
836 setAlignment(0);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000837 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Victor Hernandez8acf2952009-10-23 21:09:37 +0000838 setName(Name);
839}
840
Chris Lattner229907c2011-07-18 04:54:35 +0000841AllocaInst::AllocaInst(Type *Ty, Value *ArraySize,
Victor Hernandez8acf2952009-10-23 21:09:37 +0000842 const Twine &Name, BasicBlock *InsertAtEnd)
843 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
844 getAISize(Ty->getContext(), ArraySize), InsertAtEnd) {
845 setAlignment(0);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000846 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Victor Hernandez8acf2952009-10-23 21:09:37 +0000847 setName(Name);
848}
849
Chris Lattner229907c2011-07-18 04:54:35 +0000850AllocaInst::AllocaInst(Type *Ty, const Twine &Name,
Victor Hernandez8acf2952009-10-23 21:09:37 +0000851 Instruction *InsertBefore)
852 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
853 getAISize(Ty->getContext(), 0), InsertBefore) {
854 setAlignment(0);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000855 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Victor Hernandez8acf2952009-10-23 21:09:37 +0000856 setName(Name);
857}
858
Chris Lattner229907c2011-07-18 04:54:35 +0000859AllocaInst::AllocaInst(Type *Ty, const Twine &Name,
Victor Hernandez8acf2952009-10-23 21:09:37 +0000860 BasicBlock *InsertAtEnd)
861 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
862 getAISize(Ty->getContext(), 0), InsertAtEnd) {
863 setAlignment(0);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000864 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Victor Hernandez8acf2952009-10-23 21:09:37 +0000865 setName(Name);
866}
867
Chris Lattner229907c2011-07-18 04:54:35 +0000868AllocaInst::AllocaInst(Type *Ty, Value *ArraySize, unsigned Align,
Victor Hernandez8acf2952009-10-23 21:09:37 +0000869 const Twine &Name, Instruction *InsertBefore)
870 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
Owen Anderson4fdeba92009-07-15 23:53:25 +0000871 getAISize(Ty->getContext(), ArraySize), InsertBefore) {
Dan Gohmanaa583d72008-03-24 16:55:58 +0000872 setAlignment(Align);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000873 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Chris Lattner0f048162007-02-13 07:54:42 +0000874 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000875}
876
Chris Lattner229907c2011-07-18 04:54:35 +0000877AllocaInst::AllocaInst(Type *Ty, Value *ArraySize, unsigned Align,
Victor Hernandez8acf2952009-10-23 21:09:37 +0000878 const Twine &Name, BasicBlock *InsertAtEnd)
879 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
Owen Anderson4fdeba92009-07-15 23:53:25 +0000880 getAISize(Ty->getContext(), ArraySize), InsertAtEnd) {
Dan Gohmanaa583d72008-03-24 16:55:58 +0000881 setAlignment(Align);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000882 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Chris Lattner0f048162007-02-13 07:54:42 +0000883 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000884}
885
Gordon Henriksen14a55692007-12-10 02:14:30 +0000886// Out of line virtual method, so the vtable, etc has a home.
Victor Hernandez8acf2952009-10-23 21:09:37 +0000887AllocaInst::~AllocaInst() {
Gordon Henriksen14a55692007-12-10 02:14:30 +0000888}
889
Victor Hernandez8acf2952009-10-23 21:09:37 +0000890void AllocaInst::setAlignment(unsigned Align) {
Dan Gohmanaa583d72008-03-24 16:55:58 +0000891 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
Dan Gohmana7e5a242010-07-28 20:12:04 +0000892 assert(Align <= MaximumAlignment &&
893 "Alignment is greater than MaximumAlignment!");
Chris Lattnerd8eb2cf2009-12-29 02:46:09 +0000894 setInstructionSubclassData(Log2_32(Align) + 1);
Dan Gohmanaa583d72008-03-24 16:55:58 +0000895 assert(getAlignment() == Align && "Alignment representation error!");
896}
897
Victor Hernandez8acf2952009-10-23 21:09:37 +0000898bool AllocaInst::isArrayAllocation() const {
Reid Spencera9e6e312007-03-01 20:27:41 +0000899 if (ConstantInt *CI = dyn_cast<ConstantInt>(getOperand(0)))
Dan Gohman9a1b8592010-09-27 15:15:44 +0000900 return !CI->isOne();
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000901 return true;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000902}
903
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000904Type *AllocaInst::getAllocatedType() const {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000905 return getType()->getElementType();
906}
907
Chris Lattner8b291e62008-11-26 02:54:17 +0000908/// isStaticAlloca - Return true if this alloca is in the entry block of the
909/// function and is a constant size. If so, the code generator will fold it
910/// into the prolog/epilog code, so it is basically free.
911bool AllocaInst::isStaticAlloca() const {
912 // Must be constant size.
913 if (!isa<ConstantInt>(getArraySize())) return false;
914
915 // Must be in the entry block.
916 const BasicBlock *Parent = getParent();
917 return Parent == &Parent->getParent()->front();
918}
919
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000920//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000921// LoadInst Implementation
922//===----------------------------------------------------------------------===//
923
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000924void LoadInst::AssertOK() {
Duncan Sands19d0b472010-02-16 11:11:14 +0000925 assert(getOperand(0)->getType()->isPointerTy() &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000926 "Ptr must have pointer type.");
Eli Friedman59b66882011-08-09 23:02:53 +0000927 assert(!(isAtomic() && getAlignment() == 0) &&
928 "Alignment required for atomic load");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000929}
930
Daniel Dunbar4975db62009-07-25 04:41:11 +0000931LoadInst::LoadInst(Value *Ptr, const Twine &Name, Instruction *InsertBef)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000932 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000933 Load, Ptr, InsertBef) {
Chris Lattnerdf57a022005-02-05 01:38:38 +0000934 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000935 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +0000936 setAtomic(NotAtomic);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000937 AssertOK();
Chris Lattner0f048162007-02-13 07:54:42 +0000938 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000939}
940
Daniel Dunbar4975db62009-07-25 04:41:11 +0000941LoadInst::LoadInst(Value *Ptr, const Twine &Name, BasicBlock *InsertAE)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000942 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000943 Load, Ptr, InsertAE) {
Chris Lattnerdf57a022005-02-05 01:38:38 +0000944 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000945 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +0000946 setAtomic(NotAtomic);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000947 AssertOK();
Chris Lattner0f048162007-02-13 07:54:42 +0000948 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000949}
950
Daniel Dunbar4975db62009-07-25 04:41:11 +0000951LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000952 Instruction *InsertBef)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000953 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000954 Load, Ptr, InsertBef) {
Chris Lattnerdf57a022005-02-05 01:38:38 +0000955 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +0000956 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +0000957 setAtomic(NotAtomic);
958 AssertOK();
959 setName(Name);
960}
961
962LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
963 BasicBlock *InsertAE)
964 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
965 Load, Ptr, InsertAE) {
966 setVolatile(isVolatile);
967 setAlignment(0);
968 setAtomic(NotAtomic);
Christopher Lamb84485702007-04-22 19:24:39 +0000969 AssertOK();
970 setName(Name);
971}
972
Daniel Dunbar4975db62009-07-25 04:41:11 +0000973LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Christopher Lamb84485702007-04-22 19:24:39 +0000974 unsigned Align, Instruction *InsertBef)
975 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
976 Load, Ptr, InsertBef) {
977 setVolatile(isVolatile);
978 setAlignment(Align);
Eli Friedman59b66882011-08-09 23:02:53 +0000979 setAtomic(NotAtomic);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000980 AssertOK();
Chris Lattner0f048162007-02-13 07:54:42 +0000981 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000982}
983
Daniel Dunbar4975db62009-07-25 04:41:11 +0000984LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Dan Gohman68659282007-07-18 20:51:11 +0000985 unsigned Align, BasicBlock *InsertAE)
986 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
987 Load, Ptr, InsertAE) {
988 setVolatile(isVolatile);
989 setAlignment(Align);
Eli Friedman59b66882011-08-09 23:02:53 +0000990 setAtomic(NotAtomic);
Dan Gohman68659282007-07-18 20:51:11 +0000991 AssertOK();
992 setName(Name);
993}
994
Eli Friedman59b66882011-08-09 23:02:53 +0000995LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
996 unsigned Align, AtomicOrdering Order,
997 SynchronizationScope SynchScope,
998 Instruction *InsertBef)
999 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
1000 Load, Ptr, InsertBef) {
1001 setVolatile(isVolatile);
1002 setAlignment(Align);
1003 setAtomic(Order, SynchScope);
1004 AssertOK();
1005 setName(Name);
1006}
1007
1008LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
1009 unsigned Align, AtomicOrdering Order,
1010 SynchronizationScope SynchScope,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001011 BasicBlock *InsertAE)
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001012 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +00001013 Load, Ptr, InsertAE) {
Chris Lattner0f048162007-02-13 07:54:42 +00001014 setVolatile(isVolatile);
Eli Friedman59b66882011-08-09 23:02:53 +00001015 setAlignment(Align);
1016 setAtomic(Order, SynchScope);
Chris Lattner0f048162007-02-13 07:54:42 +00001017 AssertOK();
1018 setName(Name);
1019}
1020
Daniel Dunbar27096822009-08-11 18:11:15 +00001021LoadInst::LoadInst(Value *Ptr, const char *Name, Instruction *InsertBef)
1022 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
1023 Load, Ptr, InsertBef) {
1024 setVolatile(false);
1025 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +00001026 setAtomic(NotAtomic);
Daniel Dunbar27096822009-08-11 18:11:15 +00001027 AssertOK();
1028 if (Name && Name[0]) setName(Name);
1029}
1030
1031LoadInst::LoadInst(Value *Ptr, const char *Name, BasicBlock *InsertAE)
1032 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
1033 Load, Ptr, InsertAE) {
1034 setVolatile(false);
1035 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +00001036 setAtomic(NotAtomic);
Daniel Dunbar27096822009-08-11 18:11:15 +00001037 AssertOK();
1038 if (Name && Name[0]) setName(Name);
1039}
1040
1041LoadInst::LoadInst(Value *Ptr, const char *Name, bool isVolatile,
1042 Instruction *InsertBef)
1043: UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
1044 Load, Ptr, InsertBef) {
1045 setVolatile(isVolatile);
1046 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +00001047 setAtomic(NotAtomic);
Daniel Dunbar27096822009-08-11 18:11:15 +00001048 AssertOK();
1049 if (Name && Name[0]) setName(Name);
1050}
1051
1052LoadInst::LoadInst(Value *Ptr, const char *Name, bool isVolatile,
1053 BasicBlock *InsertAE)
1054 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
1055 Load, Ptr, InsertAE) {
1056 setVolatile(isVolatile);
1057 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +00001058 setAtomic(NotAtomic);
Daniel Dunbar27096822009-08-11 18:11:15 +00001059 AssertOK();
1060 if (Name && Name[0]) setName(Name);
1061}
1062
Christopher Lamb84485702007-04-22 19:24:39 +00001063void LoadInst::setAlignment(unsigned Align) {
1064 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
Dan Gohmana7e5a242010-07-28 20:12:04 +00001065 assert(Align <= MaximumAlignment &&
1066 "Alignment is greater than MaximumAlignment!");
Eli Friedman59b66882011-08-09 23:02:53 +00001067 setInstructionSubclassData((getSubclassDataFromInstruction() & ~(31 << 1)) |
Chris Lattnerd8eb2cf2009-12-29 02:46:09 +00001068 ((Log2_32(Align)+1)<<1));
Dan Gohmana7e5a242010-07-28 20:12:04 +00001069 assert(getAlignment() == Align && "Alignment representation error!");
Christopher Lamb84485702007-04-22 19:24:39 +00001070}
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001071
1072//===----------------------------------------------------------------------===//
1073// StoreInst Implementation
1074//===----------------------------------------------------------------------===//
1075
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001076void StoreInst::AssertOK() {
Nate Begemanfecbc8c2008-07-29 15:49:41 +00001077 assert(getOperand(0) && getOperand(1) && "Both operands must be non-null!");
Duncan Sands19d0b472010-02-16 11:11:14 +00001078 assert(getOperand(1)->getType()->isPointerTy() &&
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001079 "Ptr must have pointer type!");
1080 assert(getOperand(0)->getType() ==
1081 cast<PointerType>(getOperand(1)->getType())->getElementType()
Alkis Evlogimenos079fbde2004-08-06 14:33:37 +00001082 && "Ptr must be a pointer to Val type!");
Eli Friedman59b66882011-08-09 23:02:53 +00001083 assert(!(isAtomic() && getAlignment() == 0) &&
1084 "Alignment required for atomic load");
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001085}
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001086
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001087
1088StoreInst::StoreInst(Value *val, Value *addr, Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +00001089 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001090 OperandTraits<StoreInst>::op_begin(this),
1091 OperandTraits<StoreInst>::operands(this),
1092 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001093 Op<0>() = val;
1094 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +00001095 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +00001096 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +00001097 setAtomic(NotAtomic);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001098 AssertOK();
1099}
1100
1101StoreInst::StoreInst(Value *val, Value *addr, BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +00001102 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001103 OperandTraits<StoreInst>::op_begin(this),
1104 OperandTraits<StoreInst>::operands(this),
1105 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001106 Op<0>() = val;
1107 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +00001108 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +00001109 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +00001110 setAtomic(NotAtomic);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001111 AssertOK();
1112}
1113
Misha Brukmanb1c93172005-04-21 23:48:37 +00001114StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001115 Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +00001116 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001117 OperandTraits<StoreInst>::op_begin(this),
1118 OperandTraits<StoreInst>::operands(this),
1119 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001120 Op<0>() = val;
1121 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +00001122 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +00001123 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +00001124 setAtomic(NotAtomic);
Christopher Lamb84485702007-04-22 19:24:39 +00001125 AssertOK();
1126}
1127
1128StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
1129 unsigned Align, Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +00001130 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001131 OperandTraits<StoreInst>::op_begin(this),
1132 OperandTraits<StoreInst>::operands(this),
1133 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001134 Op<0>() = val;
1135 Op<1>() = addr;
Christopher Lamb84485702007-04-22 19:24:39 +00001136 setVolatile(isVolatile);
1137 setAlignment(Align);
Eli Friedman59b66882011-08-09 23:02:53 +00001138 setAtomic(NotAtomic);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001139 AssertOK();
1140}
1141
Misha Brukmanb1c93172005-04-21 23:48:37 +00001142StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Eli Friedman59b66882011-08-09 23:02:53 +00001143 unsigned Align, AtomicOrdering Order,
1144 SynchronizationScope SynchScope,
1145 Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +00001146 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001147 OperandTraits<StoreInst>::op_begin(this),
1148 OperandTraits<StoreInst>::operands(this),
Eli Friedman59b66882011-08-09 23:02:53 +00001149 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001150 Op<0>() = val;
1151 Op<1>() = addr;
Dan Gohman68659282007-07-18 20:51:11 +00001152 setVolatile(isVolatile);
1153 setAlignment(Align);
Eli Friedman59b66882011-08-09 23:02:53 +00001154 setAtomic(Order, SynchScope);
Dan Gohman68659282007-07-18 20:51:11 +00001155 AssertOK();
1156}
1157
1158StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001159 BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +00001160 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001161 OperandTraits<StoreInst>::op_begin(this),
1162 OperandTraits<StoreInst>::operands(this),
1163 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001164 Op<0>() = val;
1165 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +00001166 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +00001167 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +00001168 setAtomic(NotAtomic);
1169 AssertOK();
1170}
1171
1172StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
1173 unsigned Align, BasicBlock *InsertAtEnd)
1174 : Instruction(Type::getVoidTy(val->getContext()), Store,
1175 OperandTraits<StoreInst>::op_begin(this),
1176 OperandTraits<StoreInst>::operands(this),
1177 InsertAtEnd) {
1178 Op<0>() = val;
1179 Op<1>() = addr;
1180 setVolatile(isVolatile);
1181 setAlignment(Align);
1182 setAtomic(NotAtomic);
1183 AssertOK();
1184}
1185
1186StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
1187 unsigned Align, AtomicOrdering Order,
1188 SynchronizationScope SynchScope,
1189 BasicBlock *InsertAtEnd)
1190 : Instruction(Type::getVoidTy(val->getContext()), Store,
1191 OperandTraits<StoreInst>::op_begin(this),
1192 OperandTraits<StoreInst>::operands(this),
1193 InsertAtEnd) {
1194 Op<0>() = val;
1195 Op<1>() = addr;
1196 setVolatile(isVolatile);
1197 setAlignment(Align);
1198 setAtomic(Order, SynchScope);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001199 AssertOK();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001200}
1201
Christopher Lamb84485702007-04-22 19:24:39 +00001202void StoreInst::setAlignment(unsigned Align) {
1203 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
Dan Gohmana7e5a242010-07-28 20:12:04 +00001204 assert(Align <= MaximumAlignment &&
1205 "Alignment is greater than MaximumAlignment!");
Eli Friedman59b66882011-08-09 23:02:53 +00001206 setInstructionSubclassData((getSubclassDataFromInstruction() & ~(31 << 1)) |
Chris Lattnerd8eb2cf2009-12-29 02:46:09 +00001207 ((Log2_32(Align)+1) << 1));
Dan Gohmana7e5a242010-07-28 20:12:04 +00001208 assert(getAlignment() == Align && "Alignment representation error!");
Christopher Lamb84485702007-04-22 19:24:39 +00001209}
1210
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001211//===----------------------------------------------------------------------===//
Eli Friedmanc9a551e2011-07-28 21:48:00 +00001212// AtomicCmpXchgInst Implementation
1213//===----------------------------------------------------------------------===//
1214
1215void AtomicCmpXchgInst::Init(Value *Ptr, Value *Cmp, Value *NewVal,
1216 AtomicOrdering Ordering,
1217 SynchronizationScope SynchScope) {
1218 Op<0>() = Ptr;
1219 Op<1>() = Cmp;
1220 Op<2>() = NewVal;
1221 setOrdering(Ordering);
1222 setSynchScope(SynchScope);
1223
1224 assert(getOperand(0) && getOperand(1) && getOperand(2) &&
1225 "All operands must be non-null!");
1226 assert(getOperand(0)->getType()->isPointerTy() &&
1227 "Ptr must have pointer type!");
1228 assert(getOperand(1)->getType() ==
1229 cast<PointerType>(getOperand(0)->getType())->getElementType()
1230 && "Ptr must be a pointer to Cmp type!");
1231 assert(getOperand(2)->getType() ==
1232 cast<PointerType>(getOperand(0)->getType())->getElementType()
1233 && "Ptr must be a pointer to NewVal type!");
1234 assert(Ordering != NotAtomic &&
1235 "AtomicCmpXchg instructions must be atomic!");
1236}
1237
1238AtomicCmpXchgInst::AtomicCmpXchgInst(Value *Ptr, Value *Cmp, Value *NewVal,
1239 AtomicOrdering Ordering,
1240 SynchronizationScope SynchScope,
1241 Instruction *InsertBefore)
1242 : Instruction(Cmp->getType(), AtomicCmpXchg,
1243 OperandTraits<AtomicCmpXchgInst>::op_begin(this),
1244 OperandTraits<AtomicCmpXchgInst>::operands(this),
1245 InsertBefore) {
1246 Init(Ptr, Cmp, NewVal, Ordering, SynchScope);
1247}
1248
1249AtomicCmpXchgInst::AtomicCmpXchgInst(Value *Ptr, Value *Cmp, Value *NewVal,
1250 AtomicOrdering Ordering,
1251 SynchronizationScope SynchScope,
1252 BasicBlock *InsertAtEnd)
1253 : Instruction(Cmp->getType(), AtomicCmpXchg,
1254 OperandTraits<AtomicCmpXchgInst>::op_begin(this),
1255 OperandTraits<AtomicCmpXchgInst>::operands(this),
1256 InsertAtEnd) {
1257 Init(Ptr, Cmp, NewVal, Ordering, SynchScope);
1258}
1259
1260//===----------------------------------------------------------------------===//
1261// AtomicRMWInst Implementation
1262//===----------------------------------------------------------------------===//
1263
1264void AtomicRMWInst::Init(BinOp Operation, Value *Ptr, Value *Val,
1265 AtomicOrdering Ordering,
1266 SynchronizationScope SynchScope) {
1267 Op<0>() = Ptr;
1268 Op<1>() = Val;
1269 setOperation(Operation);
1270 setOrdering(Ordering);
1271 setSynchScope(SynchScope);
1272
1273 assert(getOperand(0) && getOperand(1) &&
1274 "All operands must be non-null!");
1275 assert(getOperand(0)->getType()->isPointerTy() &&
1276 "Ptr must have pointer type!");
1277 assert(getOperand(1)->getType() ==
1278 cast<PointerType>(getOperand(0)->getType())->getElementType()
1279 && "Ptr must be a pointer to Val type!");
1280 assert(Ordering != NotAtomic &&
1281 "AtomicRMW instructions must be atomic!");
1282}
1283
1284AtomicRMWInst::AtomicRMWInst(BinOp Operation, Value *Ptr, Value *Val,
1285 AtomicOrdering Ordering,
1286 SynchronizationScope SynchScope,
1287 Instruction *InsertBefore)
1288 : Instruction(Val->getType(), AtomicRMW,
1289 OperandTraits<AtomicRMWInst>::op_begin(this),
1290 OperandTraits<AtomicRMWInst>::operands(this),
1291 InsertBefore) {
1292 Init(Operation, Ptr, Val, Ordering, SynchScope);
1293}
1294
1295AtomicRMWInst::AtomicRMWInst(BinOp Operation, Value *Ptr, Value *Val,
1296 AtomicOrdering Ordering,
1297 SynchronizationScope SynchScope,
1298 BasicBlock *InsertAtEnd)
1299 : Instruction(Val->getType(), AtomicRMW,
1300 OperandTraits<AtomicRMWInst>::op_begin(this),
1301 OperandTraits<AtomicRMWInst>::operands(this),
1302 InsertAtEnd) {
1303 Init(Operation, Ptr, Val, Ordering, SynchScope);
1304}
1305
1306//===----------------------------------------------------------------------===//
Eli Friedmanfee02c62011-07-25 23:16:38 +00001307// FenceInst Implementation
1308//===----------------------------------------------------------------------===//
1309
1310FenceInst::FenceInst(LLVMContext &C, AtomicOrdering Ordering,
1311 SynchronizationScope SynchScope,
1312 Instruction *InsertBefore)
1313 : Instruction(Type::getVoidTy(C), Fence, 0, 0, InsertBefore) {
1314 setOrdering(Ordering);
1315 setSynchScope(SynchScope);
1316}
1317
1318FenceInst::FenceInst(LLVMContext &C, AtomicOrdering Ordering,
1319 SynchronizationScope SynchScope,
1320 BasicBlock *InsertAtEnd)
1321 : Instruction(Type::getVoidTy(C), Fence, 0, 0, InsertAtEnd) {
1322 setOrdering(Ordering);
1323 setSynchScope(SynchScope);
1324}
1325
1326//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001327// GetElementPtrInst Implementation
1328//===----------------------------------------------------------------------===//
1329
Jay Foadd1b78492011-07-25 09:48:08 +00001330void GetElementPtrInst::init(Value *Ptr, ArrayRef<Value *> IdxList,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001331 const Twine &Name) {
Jay Foadd1b78492011-07-25 09:48:08 +00001332 assert(NumOperands == 1 + IdxList.size() && "NumOperands not initialized?");
1333 OperandList[0] = Ptr;
1334 std::copy(IdxList.begin(), IdxList.end(), op_begin() + 1);
Matthijs Kooijman76d8dec2008-06-04 16:14:12 +00001335 setName(Name);
Chris Lattner82981202005-05-03 05:43:30 +00001336}
1337
Gabor Greiff6caff662008-05-10 08:32:32 +00001338GetElementPtrInst::GetElementPtrInst(const GetElementPtrInst &GEPI)
Gabor Greife9408e62008-05-27 11:03:29 +00001339 : Instruction(GEPI.getType(), GetElementPtr,
Gabor Greif697e94c2008-05-15 10:04:30 +00001340 OperandTraits<GetElementPtrInst>::op_end(this)
1341 - GEPI.getNumOperands(),
Gabor Greiff6caff662008-05-10 08:32:32 +00001342 GEPI.getNumOperands()) {
Jay Foadd1b78492011-07-25 09:48:08 +00001343 std::copy(GEPI.op_begin(), GEPI.op_end(), op_begin());
Dan Gohmanc8a27f22009-08-25 22:11:20 +00001344 SubclassOptionalData = GEPI.SubclassOptionalData;
Gabor Greiff6caff662008-05-10 08:32:32 +00001345}
1346
Chris Lattner6090a422009-03-09 04:46:40 +00001347/// getIndexedType - Returns the type of the element that would be accessed with
1348/// a gep instruction with the specified parameters.
1349///
1350/// The Idxs pointer should point to a continuous piece of memory containing the
1351/// indices, either as Value* or uint64_t.
1352///
1353/// A null type is returned if the indices are invalid for the specified
1354/// pointer type.
1355///
Matthijs Kooijman04468622008-07-29 08:46:11 +00001356template <typename IndexTy>
Jay Foadd1b78492011-07-25 09:48:08 +00001357static Type *getIndexedTypeInternal(Type *Ptr, ArrayRef<IndexTy> IdxList) {
Nadav Rotem3924cb02011-12-05 06:29:09 +00001358 if (Ptr->isVectorTy()) {
1359 assert(IdxList.size() == 1 &&
1360 "GEP with vector pointers must have a single index");
1361 PointerType *PTy = dyn_cast<PointerType>(
1362 cast<VectorType>(Ptr)->getElementType());
1363 assert(PTy && "Gep with invalid vector pointer found");
1364 return PTy->getElementType();
1365 }
1366
Chris Lattner229907c2011-07-18 04:54:35 +00001367 PointerType *PTy = dyn_cast<PointerType>(Ptr);
Dan Gohman12fce772008-05-15 19:50:34 +00001368 if (!PTy) return 0; // Type isn't a pointer type!
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001369 Type *Agg = PTy->getElementType();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001370
Chris Lattner6090a422009-03-09 04:46:40 +00001371 // Handle the special case of the empty set index set, which is always valid.
Jay Foadd1b78492011-07-25 09:48:08 +00001372 if (IdxList.empty())
Dan Gohman12fce772008-05-15 19:50:34 +00001373 return Agg;
Nadav Rotem3924cb02011-12-05 06:29:09 +00001374
Chris Lattner6090a422009-03-09 04:46:40 +00001375 // If there is at least one index, the top level type must be sized, otherwise
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001376 // it cannot be 'stepped over'.
1377 if (!Agg->isSized())
Chris Lattner6090a422009-03-09 04:46:40 +00001378 return 0;
Misha Brukmanb1c93172005-04-21 23:48:37 +00001379
Dan Gohman1ecaf452008-05-31 00:58:22 +00001380 unsigned CurIdx = 1;
Jay Foadd1b78492011-07-25 09:48:08 +00001381 for (; CurIdx != IdxList.size(); ++CurIdx) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001382 CompositeType *CT = dyn_cast<CompositeType>(Agg);
Duncan Sands19d0b472010-02-16 11:11:14 +00001383 if (!CT || CT->isPointerTy()) return 0;
Jay Foadd1b78492011-07-25 09:48:08 +00001384 IndexTy Index = IdxList[CurIdx];
Dan Gohman1ecaf452008-05-31 00:58:22 +00001385 if (!CT->indexValid(Index)) return 0;
1386 Agg = CT->getTypeAtIndex(Index);
Dan Gohman1ecaf452008-05-31 00:58:22 +00001387 }
Jay Foadd1b78492011-07-25 09:48:08 +00001388 return CurIdx == IdxList.size() ? Agg : 0;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001389}
1390
Jay Foadd1b78492011-07-25 09:48:08 +00001391Type *GetElementPtrInst::getIndexedType(Type *Ptr, ArrayRef<Value *> IdxList) {
1392 return getIndexedTypeInternal(Ptr, IdxList);
Matthijs Kooijman04468622008-07-29 08:46:11 +00001393}
1394
Chris Lattner229907c2011-07-18 04:54:35 +00001395Type *GetElementPtrInst::getIndexedType(Type *Ptr,
Jay Foadd1b78492011-07-25 09:48:08 +00001396 ArrayRef<Constant *> IdxList) {
1397 return getIndexedTypeInternal(Ptr, IdxList);
Jay Foad1d4a8fe2011-01-14 08:07:43 +00001398}
1399
Jay Foadd1b78492011-07-25 09:48:08 +00001400Type *GetElementPtrInst::getIndexedType(Type *Ptr, ArrayRef<uint64_t> IdxList) {
1401 return getIndexedTypeInternal(Ptr, IdxList);
Matthijs Kooijman04468622008-07-29 08:46:11 +00001402}
1403
Nadav Rotem3924cb02011-12-05 06:29:09 +00001404unsigned GetElementPtrInst::getAddressSpace(Value *Ptr) {
1405 Type *Ty = Ptr->getType();
1406
1407 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
1408 Ty = VTy->getElementType();
1409
1410 if (PointerType *PTy = dyn_cast<PointerType>(Ty))
1411 return PTy->getAddressSpace();
1412
1413 assert(false && "Invalid GEP pointer type");
1414 return 0;
1415}
1416
Chris Lattner45f15572007-04-14 00:12:57 +00001417/// hasAllZeroIndices - Return true if all of the indices of this GEP are
1418/// zeros. If so, the result pointer and the first operand have the same
1419/// value, just potentially different types.
1420bool GetElementPtrInst::hasAllZeroIndices() const {
1421 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
1422 if (ConstantInt *CI = dyn_cast<ConstantInt>(getOperand(i))) {
1423 if (!CI->isZero()) return false;
1424 } else {
1425 return false;
1426 }
1427 }
1428 return true;
1429}
1430
Chris Lattner27058292007-04-27 20:35:56 +00001431/// hasAllConstantIndices - Return true if all of the indices of this GEP are
1432/// constant integers. If so, the result pointer and the first operand have
1433/// a constant offset between them.
1434bool GetElementPtrInst::hasAllConstantIndices() const {
1435 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
1436 if (!isa<ConstantInt>(getOperand(i)))
1437 return false;
1438 }
1439 return true;
1440}
1441
Dan Gohman1b849082009-09-07 23:54:19 +00001442void GetElementPtrInst::setIsInBounds(bool B) {
1443 cast<GEPOperator>(this)->setIsInBounds(B);
1444}
Chris Lattner45f15572007-04-14 00:12:57 +00001445
Nick Lewycky28a5f252009-09-27 21:33:04 +00001446bool GetElementPtrInst::isInBounds() const {
1447 return cast<GEPOperator>(this)->isInBounds();
1448}
1449
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001450//===----------------------------------------------------------------------===//
Robert Bocchino23004482006-01-10 19:05:34 +00001451// ExtractElementInst Implementation
1452//===----------------------------------------------------------------------===//
1453
1454ExtractElementInst::ExtractElementInst(Value *Val, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001455 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001456 Instruction *InsertBef)
Reid Spencerd84d35b2007-02-15 02:26:10 +00001457 : Instruction(cast<VectorType>(Val->getType())->getElementType(),
Gabor Greiff6caff662008-05-10 08:32:32 +00001458 ExtractElement,
1459 OperandTraits<ExtractElementInst>::op_begin(this),
1460 2, InsertBef) {
Chris Lattner54865b32006-04-08 04:05:48 +00001461 assert(isValidOperands(Val, Index) &&
1462 "Invalid extractelement instruction operands!");
Gabor Greif2d3024d2008-05-26 21:33:52 +00001463 Op<0>() = Val;
1464 Op<1>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001465 setName(Name);
Robert Bocchino23004482006-01-10 19:05:34 +00001466}
1467
1468ExtractElementInst::ExtractElementInst(Value *Val, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001469 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001470 BasicBlock *InsertAE)
Reid Spencerd84d35b2007-02-15 02:26:10 +00001471 : Instruction(cast<VectorType>(Val->getType())->getElementType(),
Gabor Greiff6caff662008-05-10 08:32:32 +00001472 ExtractElement,
1473 OperandTraits<ExtractElementInst>::op_begin(this),
1474 2, InsertAE) {
Chris Lattner54865b32006-04-08 04:05:48 +00001475 assert(isValidOperands(Val, Index) &&
1476 "Invalid extractelement instruction operands!");
1477
Gabor Greif2d3024d2008-05-26 21:33:52 +00001478 Op<0>() = Val;
1479 Op<1>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001480 setName(Name);
Robert Bocchino23004482006-01-10 19:05:34 +00001481}
1482
Chris Lattner65511ff2006-10-05 06:24:58 +00001483
Chris Lattner54865b32006-04-08 04:05:48 +00001484bool ExtractElementInst::isValidOperands(const Value *Val, const Value *Index) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001485 if (!Val->getType()->isVectorTy() || !Index->getType()->isIntegerTy(32))
Chris Lattner54865b32006-04-08 04:05:48 +00001486 return false;
1487 return true;
1488}
1489
1490
Robert Bocchino23004482006-01-10 19:05:34 +00001491//===----------------------------------------------------------------------===//
Robert Bocchinoca27f032006-01-17 20:07:22 +00001492// InsertElementInst Implementation
1493//===----------------------------------------------------------------------===//
1494
Chris Lattner54865b32006-04-08 04:05:48 +00001495InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001496 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001497 Instruction *InsertBef)
Gabor Greiff6caff662008-05-10 08:32:32 +00001498 : Instruction(Vec->getType(), InsertElement,
1499 OperandTraits<InsertElementInst>::op_begin(this),
1500 3, InsertBef) {
Chris Lattner54865b32006-04-08 04:05:48 +00001501 assert(isValidOperands(Vec, Elt, Index) &&
1502 "Invalid insertelement instruction operands!");
Gabor Greif2d3024d2008-05-26 21:33:52 +00001503 Op<0>() = Vec;
1504 Op<1>() = Elt;
1505 Op<2>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001506 setName(Name);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001507}
1508
Chris Lattner54865b32006-04-08 04:05:48 +00001509InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001510 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001511 BasicBlock *InsertAE)
Gabor Greiff6caff662008-05-10 08:32:32 +00001512 : Instruction(Vec->getType(), InsertElement,
1513 OperandTraits<InsertElementInst>::op_begin(this),
1514 3, InsertAE) {
Chris Lattner54865b32006-04-08 04:05:48 +00001515 assert(isValidOperands(Vec, Elt, Index) &&
1516 "Invalid insertelement instruction operands!");
1517
Gabor Greif2d3024d2008-05-26 21:33:52 +00001518 Op<0>() = Vec;
1519 Op<1>() = Elt;
1520 Op<2>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001521 setName(Name);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001522}
1523
Chris Lattner54865b32006-04-08 04:05:48 +00001524bool InsertElementInst::isValidOperands(const Value *Vec, const Value *Elt,
1525 const Value *Index) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001526 if (!Vec->getType()->isVectorTy())
Reid Spencer09575ba2007-02-15 03:39:18 +00001527 return false; // First operand of insertelement must be vector type.
Chris Lattner54865b32006-04-08 04:05:48 +00001528
Reid Spencerd84d35b2007-02-15 02:26:10 +00001529 if (Elt->getType() != cast<VectorType>(Vec->getType())->getElementType())
Dan Gohmanfead7972007-05-11 21:43:24 +00001530 return false;// Second operand of insertelement must be vector element type.
Chris Lattner54865b32006-04-08 04:05:48 +00001531
Duncan Sands9dff9be2010-02-15 16:12:20 +00001532 if (!Index->getType()->isIntegerTy(32))
Dan Gohman4fe64de2009-06-14 23:30:43 +00001533 return false; // Third operand of insertelement must be i32.
Chris Lattner54865b32006-04-08 04:05:48 +00001534 return true;
1535}
1536
1537
Robert Bocchinoca27f032006-01-17 20:07:22 +00001538//===----------------------------------------------------------------------===//
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001539// ShuffleVectorInst Implementation
1540//===----------------------------------------------------------------------===//
1541
1542ShuffleVectorInst::ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001543 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001544 Instruction *InsertBefore)
Owen Anderson4056ca92009-07-29 22:17:13 +00001545: Instruction(VectorType::get(cast<VectorType>(V1->getType())->getElementType(),
Mon P Wang25f01062008-11-10 04:46:22 +00001546 cast<VectorType>(Mask->getType())->getNumElements()),
1547 ShuffleVector,
1548 OperandTraits<ShuffleVectorInst>::op_begin(this),
1549 OperandTraits<ShuffleVectorInst>::operands(this),
1550 InsertBefore) {
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001551 assert(isValidOperands(V1, V2, Mask) &&
1552 "Invalid shuffle vector instruction operands!");
Gabor Greif2d3024d2008-05-26 21:33:52 +00001553 Op<0>() = V1;
1554 Op<1>() = V2;
1555 Op<2>() = Mask;
Chris Lattner2195fc42007-02-24 00:55:48 +00001556 setName(Name);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001557}
1558
1559ShuffleVectorInst::ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001560 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001561 BasicBlock *InsertAtEnd)
Dan Gohmane5af8cd2009-08-25 23:27:45 +00001562: Instruction(VectorType::get(cast<VectorType>(V1->getType())->getElementType(),
1563 cast<VectorType>(Mask->getType())->getNumElements()),
1564 ShuffleVector,
1565 OperandTraits<ShuffleVectorInst>::op_begin(this),
1566 OperandTraits<ShuffleVectorInst>::operands(this),
1567 InsertAtEnd) {
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001568 assert(isValidOperands(V1, V2, Mask) &&
1569 "Invalid shuffle vector instruction operands!");
1570
Gabor Greif2d3024d2008-05-26 21:33:52 +00001571 Op<0>() = V1;
1572 Op<1>() = V2;
1573 Op<2>() = Mask;
Chris Lattner2195fc42007-02-24 00:55:48 +00001574 setName(Name);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001575}
1576
Mon P Wang25f01062008-11-10 04:46:22 +00001577bool ShuffleVectorInst::isValidOperands(const Value *V1, const Value *V2,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001578 const Value *Mask) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001579 if (!V1->getType()->isVectorTy() || V1->getType() != V2->getType())
Chris Lattnerf724e342008-03-02 05:28:33 +00001580 return false;
1581
Chris Lattner229907c2011-07-18 04:54:35 +00001582 VectorType *MaskTy = dyn_cast<VectorType>(Mask->getType());
Nate Begeman60a31c32010-08-13 00:16:46 +00001583 if (MaskTy == 0 || !MaskTy->getElementType()->isIntegerTy(32))
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001584 return false;
Nate Begeman60a31c32010-08-13 00:16:46 +00001585
1586 // Check to see if Mask is valid.
1587 if (const ConstantVector *MV = dyn_cast<ConstantVector>(Mask)) {
Chris Lattner229907c2011-07-18 04:54:35 +00001588 VectorType *VTy = cast<VectorType>(V1->getType());
Nate Begeman60a31c32010-08-13 00:16:46 +00001589 for (unsigned i = 0, e = MV->getNumOperands(); i != e; ++i) {
1590 if (ConstantInt* CI = dyn_cast<ConstantInt>(MV->getOperand(i))) {
1591 if (CI->uge(VTy->getNumElements()*2))
1592 return false;
1593 } else if (!isa<UndefValue>(MV->getOperand(i))) {
1594 return false;
1595 }
1596 }
Mon P Wang6ebf4012011-10-26 00:34:48 +00001597 } else if (!isa<UndefValue>(Mask) && !isa<ConstantAggregateZero>(Mask)) {
1598 // The bitcode reader can create a place holder for a forward reference
1599 // used as the shuffle mask. When this occurs, the shuffle mask will
1600 // fall into this case and fail. To avoid this error, do this bit of
1601 // ugliness to allow such a mask pass.
1602 if (const ConstantExpr* CE = dyn_cast<ConstantExpr>(Mask)) {
1603 if (CE->getOpcode() == Instruction::UserOp1)
1604 return true;
1605 }
Nate Begeman60a31c32010-08-13 00:16:46 +00001606 return false;
Mon P Wang6ebf4012011-10-26 00:34:48 +00001607 }
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001608 return true;
1609}
1610
Chris Lattnerf724e342008-03-02 05:28:33 +00001611/// getMaskValue - Return the index from the shuffle mask for the specified
1612/// output result. This is either -1 if the element is undef or a number less
1613/// than 2*numelements.
1614int ShuffleVectorInst::getMaskValue(unsigned i) const {
1615 const Constant *Mask = cast<Constant>(getOperand(2));
1616 if (isa<UndefValue>(Mask)) return -1;
1617 if (isa<ConstantAggregateZero>(Mask)) return 0;
1618 const ConstantVector *MaskCV = cast<ConstantVector>(Mask);
1619 assert(i < MaskCV->getNumOperands() && "Index out of range");
1620
1621 if (isa<UndefValue>(MaskCV->getOperand(i)))
1622 return -1;
1623 return cast<ConstantInt>(MaskCV->getOperand(i))->getZExtValue();
1624}
1625
Dan Gohman12fce772008-05-15 19:50:34 +00001626//===----------------------------------------------------------------------===//
Dan Gohman0752bff2008-05-23 00:36:11 +00001627// InsertValueInst Class
1628//===----------------------------------------------------------------------===//
1629
Jay Foad57aa6362011-07-13 10:26:04 +00001630void InsertValueInst::init(Value *Agg, Value *Val, ArrayRef<unsigned> Idxs,
1631 const Twine &Name) {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001632 assert(NumOperands == 2 && "NumOperands not initialized?");
Jay Foad57aa6362011-07-13 10:26:04 +00001633
1634 // There's no fundamental reason why we require at least one index
1635 // (other than weirdness with &*IdxBegin being invalid; see
1636 // getelementptr's init routine for example). But there's no
1637 // present need to support it.
1638 assert(Idxs.size() > 0 && "InsertValueInst must have at least one index");
1639
1640 assert(ExtractValueInst::getIndexedType(Agg->getType(), Idxs) ==
Frits van Bommel16ebe772010-12-05 20:50:26 +00001641 Val->getType() && "Inserted value must match indexed type!");
Dan Gohman1ecaf452008-05-31 00:58:22 +00001642 Op<0>() = Agg;
1643 Op<1>() = Val;
Dan Gohman0752bff2008-05-23 00:36:11 +00001644
Jay Foad57aa6362011-07-13 10:26:04 +00001645 Indices.append(Idxs.begin(), Idxs.end());
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001646 setName(Name);
Dan Gohman0752bff2008-05-23 00:36:11 +00001647}
1648
1649InsertValueInst::InsertValueInst(const InsertValueInst &IVI)
Gabor Greife9408e62008-05-27 11:03:29 +00001650 : Instruction(IVI.getType(), InsertValue,
Dan Gohman1ecaf452008-05-31 00:58:22 +00001651 OperandTraits<InsertValueInst>::op_begin(this), 2),
1652 Indices(IVI.Indices) {
Dan Gohmand8ca05f2008-06-17 23:25:49 +00001653 Op<0>() = IVI.getOperand(0);
1654 Op<1>() = IVI.getOperand(1);
Dan Gohmanc8a27f22009-08-25 22:11:20 +00001655 SubclassOptionalData = IVI.SubclassOptionalData;
Dan Gohman0752bff2008-05-23 00:36:11 +00001656}
1657
1658//===----------------------------------------------------------------------===//
Dan Gohman12fce772008-05-15 19:50:34 +00001659// ExtractValueInst Class
1660//===----------------------------------------------------------------------===//
1661
Jay Foad57aa6362011-07-13 10:26:04 +00001662void ExtractValueInst::init(ArrayRef<unsigned> Idxs, const Twine &Name) {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001663 assert(NumOperands == 1 && "NumOperands not initialized?");
Dan Gohman0752bff2008-05-23 00:36:11 +00001664
Jay Foad57aa6362011-07-13 10:26:04 +00001665 // There's no fundamental reason why we require at least one index.
1666 // But there's no present need to support it.
1667 assert(Idxs.size() > 0 && "ExtractValueInst must have at least one index");
Dan Gohman0752bff2008-05-23 00:36:11 +00001668
Jay Foad57aa6362011-07-13 10:26:04 +00001669 Indices.append(Idxs.begin(), Idxs.end());
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001670 setName(Name);
Dan Gohman0752bff2008-05-23 00:36:11 +00001671}
1672
1673ExtractValueInst::ExtractValueInst(const ExtractValueInst &EVI)
Gabor Greif21ba1842008-06-06 20:28:12 +00001674 : UnaryInstruction(EVI.getType(), ExtractValue, EVI.getOperand(0)),
Dan Gohman1ecaf452008-05-31 00:58:22 +00001675 Indices(EVI.Indices) {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00001676 SubclassOptionalData = EVI.SubclassOptionalData;
Dan Gohman0752bff2008-05-23 00:36:11 +00001677}
1678
Dan Gohman12fce772008-05-15 19:50:34 +00001679// getIndexedType - Returns the type of the element that would be extracted
1680// with an extractvalue instruction with the specified parameters.
1681//
1682// A null type is returned if the indices are invalid for the specified
1683// pointer type.
1684//
Chris Lattner229907c2011-07-18 04:54:35 +00001685Type *ExtractValueInst::getIndexedType(Type *Agg,
Jay Foad57aa6362011-07-13 10:26:04 +00001686 ArrayRef<unsigned> Idxs) {
1687 for (unsigned CurIdx = 0; CurIdx != Idxs.size(); ++CurIdx) {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001688 unsigned Index = Idxs[CurIdx];
Frits van Bommel16ebe772010-12-05 20:50:26 +00001689 // We can't use CompositeType::indexValid(Index) here.
1690 // indexValid() always returns true for arrays because getelementptr allows
1691 // out-of-bounds indices. Since we don't allow those for extractvalue and
1692 // insertvalue we need to check array indexing manually.
1693 // Since the only other types we can index into are struct types it's just
1694 // as easy to check those manually as well.
Chris Lattner229907c2011-07-18 04:54:35 +00001695 if (ArrayType *AT = dyn_cast<ArrayType>(Agg)) {
Frits van Bommel16ebe772010-12-05 20:50:26 +00001696 if (Index >= AT->getNumElements())
1697 return 0;
Chris Lattner229907c2011-07-18 04:54:35 +00001698 } else if (StructType *ST = dyn_cast<StructType>(Agg)) {
Frits van Bommel16ebe772010-12-05 20:50:26 +00001699 if (Index >= ST->getNumElements())
1700 return 0;
1701 } else {
1702 // Not a valid type to index into.
1703 return 0;
1704 }
1705
1706 Agg = cast<CompositeType>(Agg)->getTypeAtIndex(Index);
Dan Gohman12fce772008-05-15 19:50:34 +00001707 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001708 return const_cast<Type*>(Agg);
Dan Gohman12fce772008-05-15 19:50:34 +00001709}
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001710
1711//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001712// BinaryOperator Class
1713//===----------------------------------------------------------------------===//
1714
Chris Lattner2195fc42007-02-24 00:55:48 +00001715BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2,
Chris Lattner229907c2011-07-18 04:54:35 +00001716 Type *Ty, const Twine &Name,
Chris Lattner2195fc42007-02-24 00:55:48 +00001717 Instruction *InsertBefore)
Dan Gohmana2414ea2010-05-03 22:44:19 +00001718 : Instruction(Ty, iType,
Gabor Greiff6caff662008-05-10 08:32:32 +00001719 OperandTraits<BinaryOperator>::op_begin(this),
1720 OperandTraits<BinaryOperator>::operands(this),
1721 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001722 Op<0>() = S1;
1723 Op<1>() = S2;
Dan Gohmana2414ea2010-05-03 22:44:19 +00001724 init(iType);
Chris Lattner2195fc42007-02-24 00:55:48 +00001725 setName(Name);
1726}
1727
1728BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2,
Chris Lattner229907c2011-07-18 04:54:35 +00001729 Type *Ty, const Twine &Name,
Chris Lattner2195fc42007-02-24 00:55:48 +00001730 BasicBlock *InsertAtEnd)
Dan Gohmana2414ea2010-05-03 22:44:19 +00001731 : Instruction(Ty, iType,
Gabor Greiff6caff662008-05-10 08:32:32 +00001732 OperandTraits<BinaryOperator>::op_begin(this),
1733 OperandTraits<BinaryOperator>::operands(this),
1734 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001735 Op<0>() = S1;
1736 Op<1>() = S2;
Dan Gohmana2414ea2010-05-03 22:44:19 +00001737 init(iType);
Chris Lattner2195fc42007-02-24 00:55:48 +00001738 setName(Name);
1739}
1740
1741
1742void BinaryOperator::init(BinaryOps iType) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001743 Value *LHS = getOperand(0), *RHS = getOperand(1);
Jeffrey Yasskin9b43f332010-12-23 00:58:24 +00001744 (void)LHS; (void)RHS; // Silence warnings.
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001745 assert(LHS->getType() == RHS->getType() &&
1746 "Binary operator operand types must match!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001747#ifndef NDEBUG
1748 switch (iType) {
1749 case Add: case Sub:
Dan Gohmana5b96452009-06-04 22:49:04 +00001750 case Mul:
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001751 assert(getType() == LHS->getType() &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001752 "Arithmetic operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001753 assert(getType()->isIntOrIntVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001754 "Tried to create an integer operation on a non-integer type!");
1755 break;
1756 case FAdd: case FSub:
1757 case FMul:
1758 assert(getType() == LHS->getType() &&
1759 "Arithmetic operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001760 assert(getType()->isFPOrFPVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001761 "Tried to create a floating-point operation on a "
1762 "non-floating-point type!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001763 break;
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001764 case UDiv:
1765 case SDiv:
1766 assert(getType() == LHS->getType() &&
1767 "Arithmetic operation should return same type as operands!");
Duncan Sands19d0b472010-02-16 11:11:14 +00001768 assert((getType()->isIntegerTy() || (getType()->isVectorTy() &&
Duncan Sands9dff9be2010-02-15 16:12:20 +00001769 cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001770 "Incorrect operand type (not integer) for S/UDIV");
1771 break;
1772 case FDiv:
1773 assert(getType() == LHS->getType() &&
1774 "Arithmetic operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001775 assert(getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001776 "Incorrect operand type (not floating point) for FDIV");
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001777 break;
Reid Spencer7eb55b32006-11-02 01:53:59 +00001778 case URem:
1779 case SRem:
1780 assert(getType() == LHS->getType() &&
1781 "Arithmetic operation should return same type as operands!");
Duncan Sands19d0b472010-02-16 11:11:14 +00001782 assert((getType()->isIntegerTy() || (getType()->isVectorTy() &&
Duncan Sands9dff9be2010-02-15 16:12:20 +00001783 cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
Reid Spencer7eb55b32006-11-02 01:53:59 +00001784 "Incorrect operand type (not integer) for S/UREM");
1785 break;
1786 case FRem:
1787 assert(getType() == LHS->getType() &&
1788 "Arithmetic operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001789 assert(getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001790 "Incorrect operand type (not floating point) for FREM");
Reid Spencer7eb55b32006-11-02 01:53:59 +00001791 break;
Reid Spencer2341c222007-02-02 02:16:23 +00001792 case Shl:
1793 case LShr:
1794 case AShr:
1795 assert(getType() == LHS->getType() &&
1796 "Shift operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001797 assert((getType()->isIntegerTy() ||
Duncan Sands19d0b472010-02-16 11:11:14 +00001798 (getType()->isVectorTy() &&
Duncan Sands9dff9be2010-02-15 16:12:20 +00001799 cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
Nate Begemanfecbc8c2008-07-29 15:49:41 +00001800 "Tried to create a shift operation on a non-integral type!");
Reid Spencer2341c222007-02-02 02:16:23 +00001801 break;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001802 case And: case Or:
1803 case Xor:
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001804 assert(getType() == LHS->getType() &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001805 "Logical operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001806 assert((getType()->isIntegerTy() ||
Duncan Sands19d0b472010-02-16 11:11:14 +00001807 (getType()->isVectorTy() &&
Duncan Sands9dff9be2010-02-15 16:12:20 +00001808 cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
Misha Brukman3852f652005-01-27 06:46:38 +00001809 "Tried to create a logical operation on a non-integral type!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001810 break;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001811 default:
1812 break;
1813 }
1814#endif
1815}
1816
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001817BinaryOperator *BinaryOperator::Create(BinaryOps Op, Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001818 const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001819 Instruction *InsertBefore) {
1820 assert(S1->getType() == S2->getType() &&
1821 "Cannot create binary operator with two operands of differing type!");
Reid Spencer266e42b2006-12-23 06:05:41 +00001822 return new BinaryOperator(Op, S1, S2, S1->getType(), Name, InsertBefore);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001823}
1824
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001825BinaryOperator *BinaryOperator::Create(BinaryOps Op, Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001826 const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001827 BasicBlock *InsertAtEnd) {
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001828 BinaryOperator *Res = Create(Op, S1, S2, Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001829 InsertAtEnd->getInstList().push_back(Res);
1830 return Res;
1831}
1832
Dan Gohman5476cfd2009-08-12 16:23:25 +00001833BinaryOperator *BinaryOperator::CreateNeg(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001834 Instruction *InsertBefore) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001835 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Reid Spencer2eadb532007-01-21 00:29:26 +00001836 return new BinaryOperator(Instruction::Sub,
1837 zero, Op,
1838 Op->getType(), Name, InsertBefore);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001839}
1840
Dan Gohman5476cfd2009-08-12 16:23:25 +00001841BinaryOperator *BinaryOperator::CreateNeg(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001842 BasicBlock *InsertAtEnd) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001843 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Reid Spencer2eadb532007-01-21 00:29:26 +00001844 return new BinaryOperator(Instruction::Sub,
1845 zero, Op,
1846 Op->getType(), Name, InsertAtEnd);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001847}
1848
Dan Gohman4ab44202009-12-18 02:58:50 +00001849BinaryOperator *BinaryOperator::CreateNSWNeg(Value *Op, const Twine &Name,
1850 Instruction *InsertBefore) {
1851 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1852 return BinaryOperator::CreateNSWSub(zero, Op, Name, InsertBefore);
1853}
1854
1855BinaryOperator *BinaryOperator::CreateNSWNeg(Value *Op, const Twine &Name,
1856 BasicBlock *InsertAtEnd) {
1857 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1858 return BinaryOperator::CreateNSWSub(zero, Op, Name, InsertAtEnd);
1859}
1860
Duncan Sandsfa5f5962010-02-02 12:53:04 +00001861BinaryOperator *BinaryOperator::CreateNUWNeg(Value *Op, const Twine &Name,
1862 Instruction *InsertBefore) {
1863 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1864 return BinaryOperator::CreateNUWSub(zero, Op, Name, InsertBefore);
1865}
1866
1867BinaryOperator *BinaryOperator::CreateNUWNeg(Value *Op, const Twine &Name,
1868 BasicBlock *InsertAtEnd) {
1869 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1870 return BinaryOperator::CreateNUWSub(zero, Op, Name, InsertAtEnd);
1871}
1872
Dan Gohman5476cfd2009-08-12 16:23:25 +00001873BinaryOperator *BinaryOperator::CreateFNeg(Value *Op, const Twine &Name,
Dan Gohmana5b96452009-06-04 22:49:04 +00001874 Instruction *InsertBefore) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001875 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Dan Gohmana5b96452009-06-04 22:49:04 +00001876 return new BinaryOperator(Instruction::FSub,
1877 zero, Op,
1878 Op->getType(), Name, InsertBefore);
1879}
1880
Dan Gohman5476cfd2009-08-12 16:23:25 +00001881BinaryOperator *BinaryOperator::CreateFNeg(Value *Op, const Twine &Name,
Dan Gohmana5b96452009-06-04 22:49:04 +00001882 BasicBlock *InsertAtEnd) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001883 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Dan Gohmana5b96452009-06-04 22:49:04 +00001884 return new BinaryOperator(Instruction::FSub,
1885 zero, Op,
1886 Op->getType(), Name, InsertAtEnd);
1887}
1888
Dan Gohman5476cfd2009-08-12 16:23:25 +00001889BinaryOperator *BinaryOperator::CreateNot(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001890 Instruction *InsertBefore) {
Chris Lattnere8e7ac42006-03-25 21:54:21 +00001891 Constant *C;
Chris Lattner229907c2011-07-18 04:54:35 +00001892 if (VectorType *PTy = dyn_cast<VectorType>(Op->getType())) {
Owen Anderson5a1acd92009-07-31 20:28:14 +00001893 C = Constant::getAllOnesValue(PTy->getElementType());
Owen Anderson4aa32952009-07-28 21:19:26 +00001894 C = ConstantVector::get(
Owen Andersonf945a9e2009-07-15 21:51:10 +00001895 std::vector<Constant*>(PTy->getNumElements(), C));
Chris Lattnere8e7ac42006-03-25 21:54:21 +00001896 } else {
Owen Anderson5a1acd92009-07-31 20:28:14 +00001897 C = Constant::getAllOnesValue(Op->getType());
Chris Lattnere8e7ac42006-03-25 21:54:21 +00001898 }
1899
1900 return new BinaryOperator(Instruction::Xor, Op, C,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001901 Op->getType(), Name, InsertBefore);
1902}
1903
Dan Gohman5476cfd2009-08-12 16:23:25 +00001904BinaryOperator *BinaryOperator::CreateNot(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001905 BasicBlock *InsertAtEnd) {
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001906 Constant *AllOnes;
Chris Lattner229907c2011-07-18 04:54:35 +00001907 if (VectorType *PTy = dyn_cast<VectorType>(Op->getType())) {
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001908 // Create a vector of all ones values.
Owen Anderson5a1acd92009-07-31 20:28:14 +00001909 Constant *Elt = Constant::getAllOnesValue(PTy->getElementType());
Owen Anderson4aa32952009-07-28 21:19:26 +00001910 AllOnes = ConstantVector::get(
Owen Andersonf945a9e2009-07-15 21:51:10 +00001911 std::vector<Constant*>(PTy->getNumElements(), Elt));
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001912 } else {
Owen Anderson5a1acd92009-07-31 20:28:14 +00001913 AllOnes = Constant::getAllOnesValue(Op->getType());
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001914 }
1915
1916 return new BinaryOperator(Instruction::Xor, Op, AllOnes,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001917 Op->getType(), Name, InsertAtEnd);
1918}
1919
1920
1921// isConstantAllOnes - Helper function for several functions below
1922static inline bool isConstantAllOnes(const Value *V) {
Chris Lattner1edec382007-06-15 06:04:24 +00001923 if (const ConstantInt *CI = dyn_cast<ConstantInt>(V))
1924 return CI->isAllOnesValue();
1925 if (const ConstantVector *CV = dyn_cast<ConstantVector>(V))
1926 return CV->isAllOnesValue();
1927 return false;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001928}
1929
Owen Andersonbb2501b2009-07-13 22:18:28 +00001930bool BinaryOperator::isNeg(const Value *V) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001931 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1932 if (Bop->getOpcode() == Instruction::Sub)
Owen Andersonbb2501b2009-07-13 22:18:28 +00001933 if (Constant* C = dyn_cast<Constant>(Bop->getOperand(0)))
1934 return C->isNegativeZeroValue();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001935 return false;
1936}
1937
Owen Andersonbb2501b2009-07-13 22:18:28 +00001938bool BinaryOperator::isFNeg(const Value *V) {
Dan Gohmana5b96452009-06-04 22:49:04 +00001939 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1940 if (Bop->getOpcode() == Instruction::FSub)
Owen Andersonbb2501b2009-07-13 22:18:28 +00001941 if (Constant* C = dyn_cast<Constant>(Bop->getOperand(0)))
Dan Gohman11ff5702009-09-11 00:05:10 +00001942 return C->isNegativeZeroValue();
Dan Gohmana5b96452009-06-04 22:49:04 +00001943 return false;
1944}
1945
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001946bool BinaryOperator::isNot(const Value *V) {
1947 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1948 return (Bop->getOpcode() == Instruction::Xor &&
1949 (isConstantAllOnes(Bop->getOperand(1)) ||
1950 isConstantAllOnes(Bop->getOperand(0))));
1951 return false;
1952}
1953
Chris Lattner2c7d1772005-04-24 07:28:37 +00001954Value *BinaryOperator::getNegArgument(Value *BinOp) {
Chris Lattner2c7d1772005-04-24 07:28:37 +00001955 return cast<BinaryOperator>(BinOp)->getOperand(1);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001956}
1957
Chris Lattner2c7d1772005-04-24 07:28:37 +00001958const Value *BinaryOperator::getNegArgument(const Value *BinOp) {
1959 return getNegArgument(const_cast<Value*>(BinOp));
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001960}
1961
Dan Gohmana5b96452009-06-04 22:49:04 +00001962Value *BinaryOperator::getFNegArgument(Value *BinOp) {
Dan Gohmana5b96452009-06-04 22:49:04 +00001963 return cast<BinaryOperator>(BinOp)->getOperand(1);
1964}
1965
1966const Value *BinaryOperator::getFNegArgument(const Value *BinOp) {
1967 return getFNegArgument(const_cast<Value*>(BinOp));
1968}
1969
Chris Lattner2c7d1772005-04-24 07:28:37 +00001970Value *BinaryOperator::getNotArgument(Value *BinOp) {
1971 assert(isNot(BinOp) && "getNotArgument on non-'not' instruction!");
1972 BinaryOperator *BO = cast<BinaryOperator>(BinOp);
1973 Value *Op0 = BO->getOperand(0);
1974 Value *Op1 = BO->getOperand(1);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001975 if (isConstantAllOnes(Op0)) return Op1;
1976
1977 assert(isConstantAllOnes(Op1));
1978 return Op0;
1979}
1980
Chris Lattner2c7d1772005-04-24 07:28:37 +00001981const Value *BinaryOperator::getNotArgument(const Value *BinOp) {
1982 return getNotArgument(const_cast<Value*>(BinOp));
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001983}
1984
1985
1986// swapOperands - Exchange the two operands to this instruction. This
1987// instruction is safe to use on any binary instruction and does not
1988// modify the semantics of the instruction. If the instruction is
1989// order dependent (SetLT f.e.) the opcode is changed.
1990//
1991bool BinaryOperator::swapOperands() {
Reid Spencer266e42b2006-12-23 06:05:41 +00001992 if (!isCommutative())
1993 return true; // Can't commute operands
Gabor Greif5ef74042008-05-13 22:51:52 +00001994 Op<0>().swap(Op<1>());
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001995 return false;
1996}
1997
Dan Gohman1b849082009-09-07 23:54:19 +00001998void BinaryOperator::setHasNoUnsignedWrap(bool b) {
1999 cast<OverflowingBinaryOperator>(this)->setHasNoUnsignedWrap(b);
2000}
2001
2002void BinaryOperator::setHasNoSignedWrap(bool b) {
2003 cast<OverflowingBinaryOperator>(this)->setHasNoSignedWrap(b);
2004}
2005
2006void BinaryOperator::setIsExact(bool b) {
Chris Lattner35315d02011-02-06 21:44:57 +00002007 cast<PossiblyExactOperator>(this)->setIsExact(b);
Dan Gohman1b849082009-09-07 23:54:19 +00002008}
2009
Nick Lewycky28a5f252009-09-27 21:33:04 +00002010bool BinaryOperator::hasNoUnsignedWrap() const {
2011 return cast<OverflowingBinaryOperator>(this)->hasNoUnsignedWrap();
2012}
2013
2014bool BinaryOperator::hasNoSignedWrap() const {
2015 return cast<OverflowingBinaryOperator>(this)->hasNoSignedWrap();
2016}
2017
2018bool BinaryOperator::isExact() const {
Chris Lattner35315d02011-02-06 21:44:57 +00002019 return cast<PossiblyExactOperator>(this)->isExact();
Nick Lewycky28a5f252009-09-27 21:33:04 +00002020}
2021
Chris Lattnerb0b8ddd2006-09-18 04:54:57 +00002022//===----------------------------------------------------------------------===//
2023// CastInst Class
2024//===----------------------------------------------------------------------===//
2025
David Blaikie3a15e142011-12-01 08:00:17 +00002026void CastInst::anchor() {}
2027
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002028// Just determine if this cast only deals with integral->integral conversion.
2029bool CastInst::isIntegerCast() const {
2030 switch (getOpcode()) {
2031 default: return false;
2032 case Instruction::ZExt:
2033 case Instruction::SExt:
2034 case Instruction::Trunc:
2035 return true;
2036 case Instruction::BitCast:
Duncan Sands9dff9be2010-02-15 16:12:20 +00002037 return getOperand(0)->getType()->isIntegerTy() &&
2038 getType()->isIntegerTy();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002039 }
Chris Lattnerb0b8ddd2006-09-18 04:54:57 +00002040}
2041
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002042bool CastInst::isLosslessCast() const {
2043 // Only BitCast can be lossless, exit fast if we're not BitCast
2044 if (getOpcode() != Instruction::BitCast)
2045 return false;
2046
2047 // Identity cast is always lossless
Chris Lattner229907c2011-07-18 04:54:35 +00002048 Type* SrcTy = getOperand(0)->getType();
2049 Type* DstTy = getType();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002050 if (SrcTy == DstTy)
2051 return true;
2052
Reid Spencer8d9336d2006-12-31 05:26:44 +00002053 // Pointer to pointer is always lossless.
Duncan Sands19d0b472010-02-16 11:11:14 +00002054 if (SrcTy->isPointerTy())
2055 return DstTy->isPointerTy();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002056 return false; // Other types have no identity values
2057}
2058
2059/// This function determines if the CastInst does not require any bits to be
2060/// changed in order to effect the cast. Essentially, it identifies cases where
2061/// no code gen is necessary for the cast, hence the name no-op cast. For
2062/// example, the following are all no-op casts:
Dan Gohmane9bc2ba2008-05-12 16:34:30 +00002063/// # bitcast i32* %x to i8*
2064/// # bitcast <2 x i32> %x to <4 x i16>
2065/// # ptrtoint i32* %x to i32 ; on 32-bit plaforms only
Dan Gohman0d7f3b82010-05-28 21:41:37 +00002066/// @brief Determine if the described cast is a no-op.
2067bool CastInst::isNoopCast(Instruction::CastOps Opcode,
Chris Lattner229907c2011-07-18 04:54:35 +00002068 Type *SrcTy,
2069 Type *DestTy,
2070 Type *IntPtrTy) {
Dan Gohman0d7f3b82010-05-28 21:41:37 +00002071 switch (Opcode) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002072 default:
Richard Trieua318b8d2011-09-21 03:09:09 +00002073 assert(0 && "Invalid CastOp");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002074 case Instruction::Trunc:
2075 case Instruction::ZExt:
2076 case Instruction::SExt:
2077 case Instruction::FPTrunc:
2078 case Instruction::FPExt:
2079 case Instruction::UIToFP:
2080 case Instruction::SIToFP:
2081 case Instruction::FPToUI:
2082 case Instruction::FPToSI:
2083 return false; // These always modify bits
2084 case Instruction::BitCast:
2085 return true; // BitCast never modifies bits.
2086 case Instruction::PtrToInt:
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002087 return IntPtrTy->getScalarSizeInBits() ==
Dan Gohman0d7f3b82010-05-28 21:41:37 +00002088 DestTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002089 case Instruction::IntToPtr:
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002090 return IntPtrTy->getScalarSizeInBits() ==
Dan Gohman0d7f3b82010-05-28 21:41:37 +00002091 SrcTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002092 }
2093}
2094
Dan Gohman0d7f3b82010-05-28 21:41:37 +00002095/// @brief Determine if a cast is a no-op.
Chris Lattner229907c2011-07-18 04:54:35 +00002096bool CastInst::isNoopCast(Type *IntPtrTy) const {
Dan Gohman0d7f3b82010-05-28 21:41:37 +00002097 return isNoopCast(getOpcode(), getOperand(0)->getType(), getType(), IntPtrTy);
2098}
2099
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002100/// This function determines if a pair of casts can be eliminated and what
2101/// opcode should be used in the elimination. This assumes that there are two
2102/// instructions like this:
2103/// * %F = firstOpcode SrcTy %x to MidTy
2104/// * %S = secondOpcode MidTy %F to DstTy
2105/// The function returns a resultOpcode so these two casts can be replaced with:
2106/// * %Replacement = resultOpcode %SrcTy %x to DstTy
2107/// If no such cast is permited, the function returns 0.
2108unsigned CastInst::isEliminableCastPair(
2109 Instruction::CastOps firstOp, Instruction::CastOps secondOp,
Nadav Rotem5fc81ff2011-08-29 19:58:36 +00002110 Type *SrcTy, Type *MidTy, Type *DstTy, Type *IntPtrTy) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002111 // Define the 144 possibilities for these two cast instructions. The values
2112 // in this matrix determine what to do in a given situation and select the
2113 // case in the switch below. The rows correspond to firstOp, the columns
2114 // correspond to secondOp. In looking at the table below, keep in mind
2115 // the following cast properties:
2116 //
2117 // Size Compare Source Destination
2118 // Operator Src ? Size Type Sign Type Sign
2119 // -------- ------------ ------------------- ---------------------
2120 // TRUNC > Integer Any Integral Any
2121 // ZEXT < Integral Unsigned Integer Any
2122 // SEXT < Integral Signed Integer Any
2123 // FPTOUI n/a FloatPt n/a Integral Unsigned
2124 // FPTOSI n/a FloatPt n/a Integral Signed
2125 // UITOFP n/a Integral Unsigned FloatPt n/a
2126 // SITOFP n/a Integral Signed FloatPt n/a
2127 // FPTRUNC > FloatPt n/a FloatPt n/a
2128 // FPEXT < FloatPt n/a FloatPt n/a
2129 // PTRTOINT n/a Pointer n/a Integral Unsigned
2130 // INTTOPTR n/a Integral Unsigned Pointer n/a
Dan Gohmaneb7111b2010-04-07 23:22:42 +00002131 // BITCAST = FirstClass n/a FirstClass n/a
Chris Lattner6f6b4972006-12-05 23:43:59 +00002132 //
2133 // NOTE: some transforms are safe, but we consider them to be non-profitable.
Dan Gohman4fe64de2009-06-14 23:30:43 +00002134 // For example, we could merge "fptoui double to i32" + "zext i32 to i64",
2135 // into "fptoui double to i64", but this loses information about the range
Chris Lattner6f6b4972006-12-05 23:43:59 +00002136 // of the produced value (we no longer know the top-part is all zeros).
2137 // Further this conversion is often much more expensive for typical hardware,
2138 // and causes issues when building libgcc. We disallow fptosi+sext for the
2139 // same reason.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002140 const unsigned numCastOps =
2141 Instruction::CastOpsEnd - Instruction::CastOpsBegin;
2142 static const uint8_t CastResults[numCastOps][numCastOps] = {
2143 // T F F U S F F P I B -+
2144 // R Z S P P I I T P 2 N T |
2145 // U E E 2 2 2 2 R E I T C +- secondOp
2146 // N X X U S F F N X N 2 V |
2147 // C T T I I P P C T T P T -+
2148 { 1, 0, 0,99,99, 0, 0,99,99,99, 0, 3 }, // Trunc -+
2149 { 8, 1, 9,99,99, 2, 0,99,99,99, 2, 3 }, // ZExt |
2150 { 8, 0, 1,99,99, 0, 2,99,99,99, 0, 3 }, // SExt |
Chris Lattner6f6b4972006-12-05 23:43:59 +00002151 { 0, 0, 0,99,99, 0, 0,99,99,99, 0, 3 }, // FPToUI |
2152 { 0, 0, 0,99,99, 0, 0,99,99,99, 0, 3 }, // FPToSI |
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002153 { 99,99,99, 0, 0,99,99, 0, 0,99,99, 4 }, // UIToFP +- firstOp
2154 { 99,99,99, 0, 0,99,99, 0, 0,99,99, 4 }, // SIToFP |
2155 { 99,99,99, 0, 0,99,99, 1, 0,99,99, 4 }, // FPTrunc |
2156 { 99,99,99, 2, 2,99,99,10, 2,99,99, 4 }, // FPExt |
2157 { 1, 0, 0,99,99, 0, 0,99,99,99, 7, 3 }, // PtrToInt |
2158 { 99,99,99,99,99,99,99,99,99,13,99,12 }, // IntToPtr |
2159 { 5, 5, 5, 6, 6, 5, 5, 6, 6,11, 5, 1 }, // BitCast -+
2160 };
Chris Lattner25eea4d2010-07-12 01:19:22 +00002161
2162 // If either of the casts are a bitcast from scalar to vector, disallow the
Nadav Rotem5fc81ff2011-08-29 19:58:36 +00002163 // merging. However, bitcast of A->B->A are allowed.
2164 bool isFirstBitcast = (firstOp == Instruction::BitCast);
2165 bool isSecondBitcast = (secondOp == Instruction::BitCast);
2166 bool chainedBitcast = (SrcTy == DstTy && isFirstBitcast && isSecondBitcast);
2167
2168 // Check if any of the bitcasts convert scalars<->vectors.
2169 if ((isFirstBitcast && isa<VectorType>(SrcTy) != isa<VectorType>(MidTy)) ||
2170 (isSecondBitcast && isa<VectorType>(MidTy) != isa<VectorType>(DstTy)))
2171 // Unless we are bitcasing to the original type, disallow optimizations.
2172 if (!chainedBitcast) return 0;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002173
2174 int ElimCase = CastResults[firstOp-Instruction::CastOpsBegin]
2175 [secondOp-Instruction::CastOpsBegin];
2176 switch (ElimCase) {
2177 case 0:
2178 // categorically disallowed
2179 return 0;
2180 case 1:
2181 // allowed, use first cast's opcode
2182 return firstOp;
2183 case 2:
2184 // allowed, use second cast's opcode
2185 return secondOp;
2186 case 3:
2187 // no-op cast in second op implies firstOp as long as the DestTy
Mon P Wange04b4562010-01-23 04:35:57 +00002188 // is integer and we are not converting between a vector and a
Chris Lattner531732b2010-01-23 04:42:42 +00002189 // non vector type.
Duncan Sands19d0b472010-02-16 11:11:14 +00002190 if (!SrcTy->isVectorTy() && DstTy->isIntegerTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002191 return firstOp;
2192 return 0;
2193 case 4:
2194 // no-op cast in second op implies firstOp as long as the DestTy
Chris Lattner531732b2010-01-23 04:42:42 +00002195 // is floating point.
Duncan Sands9dff9be2010-02-15 16:12:20 +00002196 if (DstTy->isFloatingPointTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002197 return firstOp;
2198 return 0;
2199 case 5:
2200 // no-op cast in first op implies secondOp as long as the SrcTy
Chris Lattner531732b2010-01-23 04:42:42 +00002201 // is an integer.
Duncan Sands9dff9be2010-02-15 16:12:20 +00002202 if (SrcTy->isIntegerTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002203 return secondOp;
2204 return 0;
2205 case 6:
2206 // no-op cast in first op implies secondOp as long as the SrcTy
Chris Lattner531732b2010-01-23 04:42:42 +00002207 // is a floating point.
Duncan Sands9dff9be2010-02-15 16:12:20 +00002208 if (SrcTy->isFloatingPointTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002209 return secondOp;
2210 return 0;
2211 case 7: {
2212 // ptrtoint, inttoptr -> bitcast (ptr -> ptr) if int size is >= ptr size
Dan Gohman9413de12009-07-21 23:19:40 +00002213 if (!IntPtrTy)
2214 return 0;
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002215 unsigned PtrSize = IntPtrTy->getScalarSizeInBits();
2216 unsigned MidSize = MidTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002217 if (MidSize >= PtrSize)
2218 return Instruction::BitCast;
2219 return 0;
2220 }
2221 case 8: {
2222 // ext, trunc -> bitcast, if the SrcTy and DstTy are same size
2223 // ext, trunc -> ext, if sizeof(SrcTy) < sizeof(DstTy)
2224 // ext, trunc -> trunc, if sizeof(SrcTy) > sizeof(DstTy)
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002225 unsigned SrcSize = SrcTy->getScalarSizeInBits();
2226 unsigned DstSize = DstTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002227 if (SrcSize == DstSize)
2228 return Instruction::BitCast;
2229 else if (SrcSize < DstSize)
2230 return firstOp;
2231 return secondOp;
2232 }
2233 case 9: // zext, sext -> zext, because sext can't sign extend after zext
2234 return Instruction::ZExt;
2235 case 10:
2236 // fpext followed by ftrunc is allowed if the bit size returned to is
2237 // the same as the original, in which case its just a bitcast
2238 if (SrcTy == DstTy)
2239 return Instruction::BitCast;
2240 return 0; // If the types are not the same we can't eliminate it.
2241 case 11:
2242 // bitcast followed by ptrtoint is allowed as long as the bitcast
2243 // is a pointer to pointer cast.
Duncan Sands19d0b472010-02-16 11:11:14 +00002244 if (SrcTy->isPointerTy() && MidTy->isPointerTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002245 return secondOp;
2246 return 0;
2247 case 12:
2248 // inttoptr, bitcast -> intptr if bitcast is a ptr to ptr cast
Duncan Sands19d0b472010-02-16 11:11:14 +00002249 if (MidTy->isPointerTy() && DstTy->isPointerTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002250 return firstOp;
2251 return 0;
2252 case 13: {
2253 // inttoptr, ptrtoint -> bitcast if SrcSize<=PtrSize and SrcSize==DstSize
Dan Gohman9413de12009-07-21 23:19:40 +00002254 if (!IntPtrTy)
2255 return 0;
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002256 unsigned PtrSize = IntPtrTy->getScalarSizeInBits();
2257 unsigned SrcSize = SrcTy->getScalarSizeInBits();
2258 unsigned DstSize = DstTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002259 if (SrcSize <= PtrSize && SrcSize == DstSize)
2260 return Instruction::BitCast;
2261 return 0;
2262 }
2263 case 99:
2264 // cast combination can't happen (error in input). This is for all cases
2265 // where the MidTy is not the same for the two cast instructions.
Richard Trieua318b8d2011-09-21 03:09:09 +00002266 assert(0 && "Invalid Cast Combination");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002267 return 0;
2268 default:
Richard Trieua318b8d2011-09-21 03:09:09 +00002269 assert(0 && "Error in CastResults table!!!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002270 return 0;
2271 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002272}
2273
Chris Lattner229907c2011-07-18 04:54:35 +00002274CastInst *CastInst::Create(Instruction::CastOps op, Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002275 const Twine &Name, Instruction *InsertBefore) {
Duncan Sands7f646562011-05-18 09:21:57 +00002276 assert(castIsValid(op, S, Ty) && "Invalid cast!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002277 // Construct and return the appropriate CastInst subclass
2278 switch (op) {
2279 case Trunc: return new TruncInst (S, Ty, Name, InsertBefore);
2280 case ZExt: return new ZExtInst (S, Ty, Name, InsertBefore);
2281 case SExt: return new SExtInst (S, Ty, Name, InsertBefore);
2282 case FPTrunc: return new FPTruncInst (S, Ty, Name, InsertBefore);
2283 case FPExt: return new FPExtInst (S, Ty, Name, InsertBefore);
2284 case UIToFP: return new UIToFPInst (S, Ty, Name, InsertBefore);
2285 case SIToFP: return new SIToFPInst (S, Ty, Name, InsertBefore);
2286 case FPToUI: return new FPToUIInst (S, Ty, Name, InsertBefore);
2287 case FPToSI: return new FPToSIInst (S, Ty, Name, InsertBefore);
2288 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertBefore);
2289 case IntToPtr: return new IntToPtrInst (S, Ty, Name, InsertBefore);
2290 case BitCast: return new BitCastInst (S, Ty, Name, InsertBefore);
2291 default:
Richard Trieua318b8d2011-09-21 03:09:09 +00002292 assert(0 && "Invalid opcode provided");
David Blaikie46a9f012012-01-20 21:51:11 +00002293 return 0;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002294 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002295}
2296
Chris Lattner229907c2011-07-18 04:54:35 +00002297CastInst *CastInst::Create(Instruction::CastOps op, Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002298 const Twine &Name, BasicBlock *InsertAtEnd) {
Duncan Sands7f646562011-05-18 09:21:57 +00002299 assert(castIsValid(op, S, Ty) && "Invalid cast!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002300 // Construct and return the appropriate CastInst subclass
2301 switch (op) {
2302 case Trunc: return new TruncInst (S, Ty, Name, InsertAtEnd);
2303 case ZExt: return new ZExtInst (S, Ty, Name, InsertAtEnd);
2304 case SExt: return new SExtInst (S, Ty, Name, InsertAtEnd);
2305 case FPTrunc: return new FPTruncInst (S, Ty, Name, InsertAtEnd);
2306 case FPExt: return new FPExtInst (S, Ty, Name, InsertAtEnd);
2307 case UIToFP: return new UIToFPInst (S, Ty, Name, InsertAtEnd);
2308 case SIToFP: return new SIToFPInst (S, Ty, Name, InsertAtEnd);
2309 case FPToUI: return new FPToUIInst (S, Ty, Name, InsertAtEnd);
2310 case FPToSI: return new FPToSIInst (S, Ty, Name, InsertAtEnd);
2311 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertAtEnd);
2312 case IntToPtr: return new IntToPtrInst (S, Ty, Name, InsertAtEnd);
2313 case BitCast: return new BitCastInst (S, Ty, Name, InsertAtEnd);
2314 default:
Richard Trieua318b8d2011-09-21 03:09:09 +00002315 assert(0 && "Invalid opcode provided");
David Blaikie46a9f012012-01-20 21:51:11 +00002316 return 0;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002317 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002318}
2319
Chris Lattner229907c2011-07-18 04:54:35 +00002320CastInst *CastInst::CreateZExtOrBitCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002321 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002322 Instruction *InsertBefore) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002323 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002324 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
2325 return Create(Instruction::ZExt, S, Ty, Name, InsertBefore);
Reid Spencer5c140882006-12-04 20:17:56 +00002326}
2327
Chris Lattner229907c2011-07-18 04:54:35 +00002328CastInst *CastInst::CreateZExtOrBitCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002329 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002330 BasicBlock *InsertAtEnd) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002331 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002332 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
2333 return Create(Instruction::ZExt, S, Ty, Name, InsertAtEnd);
Reid Spencer5c140882006-12-04 20:17:56 +00002334}
2335
Chris Lattner229907c2011-07-18 04:54:35 +00002336CastInst *CastInst::CreateSExtOrBitCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002337 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002338 Instruction *InsertBefore) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002339 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002340 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
2341 return Create(Instruction::SExt, S, Ty, Name, InsertBefore);
Reid Spencer5c140882006-12-04 20:17:56 +00002342}
2343
Chris Lattner229907c2011-07-18 04:54:35 +00002344CastInst *CastInst::CreateSExtOrBitCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002345 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002346 BasicBlock *InsertAtEnd) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002347 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002348 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
2349 return Create(Instruction::SExt, S, Ty, Name, InsertAtEnd);
Reid Spencer5c140882006-12-04 20:17:56 +00002350}
2351
Chris Lattner229907c2011-07-18 04:54:35 +00002352CastInst *CastInst::CreateTruncOrBitCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002353 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002354 Instruction *InsertBefore) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002355 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002356 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
2357 return Create(Instruction::Trunc, S, Ty, Name, InsertBefore);
Reid Spencer5c140882006-12-04 20:17:56 +00002358}
2359
Chris Lattner229907c2011-07-18 04:54:35 +00002360CastInst *CastInst::CreateTruncOrBitCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002361 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002362 BasicBlock *InsertAtEnd) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002363 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002364 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
2365 return Create(Instruction::Trunc, S, Ty, Name, InsertAtEnd);
Reid Spencer5c140882006-12-04 20:17:56 +00002366}
2367
Chris Lattner229907c2011-07-18 04:54:35 +00002368CastInst *CastInst::CreatePointerCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002369 const Twine &Name,
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002370 BasicBlock *InsertAtEnd) {
Duncan Sands19d0b472010-02-16 11:11:14 +00002371 assert(S->getType()->isPointerTy() && "Invalid cast");
2372 assert((Ty->isIntegerTy() || Ty->isPointerTy()) &&
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002373 "Invalid cast");
2374
Duncan Sands9dff9be2010-02-15 16:12:20 +00002375 if (Ty->isIntegerTy())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002376 return Create(Instruction::PtrToInt, S, Ty, Name, InsertAtEnd);
2377 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002378}
2379
2380/// @brief Create a BitCast or a PtrToInt cast instruction
Chris Lattner229907c2011-07-18 04:54:35 +00002381CastInst *CastInst::CreatePointerCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002382 const Twine &Name,
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002383 Instruction *InsertBefore) {
Duncan Sands19d0b472010-02-16 11:11:14 +00002384 assert(S->getType()->isPointerTy() && "Invalid cast");
2385 assert((Ty->isIntegerTy() || Ty->isPointerTy()) &&
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002386 "Invalid cast");
2387
Duncan Sands9dff9be2010-02-15 16:12:20 +00002388 if (Ty->isIntegerTy())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002389 return Create(Instruction::PtrToInt, S, Ty, Name, InsertBefore);
2390 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002391}
2392
Chris Lattner229907c2011-07-18 04:54:35 +00002393CastInst *CastInst::CreateIntegerCast(Value *C, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002394 bool isSigned, const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002395 Instruction *InsertBefore) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002396 assert(C->getType()->isIntOrIntVectorTy() && Ty->isIntOrIntVectorTy() &&
Chris Lattner5370ae72010-01-10 20:21:42 +00002397 "Invalid integer cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002398 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2399 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002400 Instruction::CastOps opcode =
2401 (SrcBits == DstBits ? Instruction::BitCast :
2402 (SrcBits > DstBits ? Instruction::Trunc :
2403 (isSigned ? Instruction::SExt : Instruction::ZExt)));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002404 return Create(opcode, C, Ty, Name, InsertBefore);
Reid Spencer7e933472006-12-12 00:49:44 +00002405}
2406
Chris Lattner229907c2011-07-18 04:54:35 +00002407CastInst *CastInst::CreateIntegerCast(Value *C, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002408 bool isSigned, const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002409 BasicBlock *InsertAtEnd) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002410 assert(C->getType()->isIntOrIntVectorTy() && Ty->isIntOrIntVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00002411 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002412 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2413 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002414 Instruction::CastOps opcode =
2415 (SrcBits == DstBits ? Instruction::BitCast :
2416 (SrcBits > DstBits ? Instruction::Trunc :
2417 (isSigned ? Instruction::SExt : Instruction::ZExt)));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002418 return Create(opcode, C, Ty, Name, InsertAtEnd);
Reid Spencer7e933472006-12-12 00:49:44 +00002419}
2420
Chris Lattner229907c2011-07-18 04:54:35 +00002421CastInst *CastInst::CreateFPCast(Value *C, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002422 const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002423 Instruction *InsertBefore) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002424 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer7e933472006-12-12 00:49:44 +00002425 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002426 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2427 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002428 Instruction::CastOps opcode =
2429 (SrcBits == DstBits ? Instruction::BitCast :
2430 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002431 return Create(opcode, C, Ty, Name, InsertBefore);
Reid Spencer7e933472006-12-12 00:49:44 +00002432}
2433
Chris Lattner229907c2011-07-18 04:54:35 +00002434CastInst *CastInst::CreateFPCast(Value *C, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002435 const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002436 BasicBlock *InsertAtEnd) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002437 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer7e933472006-12-12 00:49:44 +00002438 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002439 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2440 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002441 Instruction::CastOps opcode =
2442 (SrcBits == DstBits ? Instruction::BitCast :
2443 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002444 return Create(opcode, C, Ty, Name, InsertAtEnd);
Reid Spencer7e933472006-12-12 00:49:44 +00002445}
2446
Duncan Sands55e50902008-01-06 10:12:28 +00002447// Check whether it is valid to call getCastOpcode for these types.
2448// This routine must be kept in sync with getCastOpcode.
Chris Lattner229907c2011-07-18 04:54:35 +00002449bool CastInst::isCastable(Type *SrcTy, Type *DestTy) {
Duncan Sands55e50902008-01-06 10:12:28 +00002450 if (!SrcTy->isFirstClassType() || !DestTy->isFirstClassType())
2451 return false;
2452
2453 if (SrcTy == DestTy)
2454 return true;
2455
Chris Lattner229907c2011-07-18 04:54:35 +00002456 if (VectorType *SrcVecTy = dyn_cast<VectorType>(SrcTy))
2457 if (VectorType *DestVecTy = dyn_cast<VectorType>(DestTy))
Duncan Sandsa8514532011-05-18 07:13:41 +00002458 if (SrcVecTy->getNumElements() == DestVecTy->getNumElements()) {
2459 // An element by element cast. Valid if casting the elements is valid.
2460 SrcTy = SrcVecTy->getElementType();
2461 DestTy = DestVecTy->getElementType();
2462 }
2463
Duncan Sands55e50902008-01-06 10:12:28 +00002464 // Get the bit sizes, we'll need these
Duncan Sands7f646562011-05-18 09:21:57 +00002465 unsigned SrcBits = SrcTy->getPrimitiveSizeInBits(); // 0 for ptr
2466 unsigned DestBits = DestTy->getPrimitiveSizeInBits(); // 0 for ptr
Duncan Sands55e50902008-01-06 10:12:28 +00002467
2468 // Run through the possibilities ...
Duncan Sands27bd0df2011-05-18 10:59:25 +00002469 if (DestTy->isIntegerTy()) { // Casting to integral
2470 if (SrcTy->isIntegerTy()) { // Casting from integral
Duncan Sands55e50902008-01-06 10:12:28 +00002471 return true;
Duncan Sands27bd0df2011-05-18 10:59:25 +00002472 } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt
Duncan Sands55e50902008-01-06 10:12:28 +00002473 return true;
Duncan Sands27bd0df2011-05-18 10:59:25 +00002474 } else if (SrcTy->isVectorTy()) { // Casting from vector
2475 return DestBits == SrcBits;
Gabor Greif697e94c2008-05-15 10:04:30 +00002476 } else { // Casting from something else
Duncan Sands19d0b472010-02-16 11:11:14 +00002477 return SrcTy->isPointerTy();
Duncan Sands55e50902008-01-06 10:12:28 +00002478 }
Duncan Sands27bd0df2011-05-18 10:59:25 +00002479 } else if (DestTy->isFloatingPointTy()) { // Casting to floating pt
2480 if (SrcTy->isIntegerTy()) { // Casting from integral
Duncan Sands55e50902008-01-06 10:12:28 +00002481 return true;
Duncan Sands27bd0df2011-05-18 10:59:25 +00002482 } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt
Duncan Sands55e50902008-01-06 10:12:28 +00002483 return true;
Duncan Sands27bd0df2011-05-18 10:59:25 +00002484 } else if (SrcTy->isVectorTy()) { // Casting from vector
2485 return DestBits == SrcBits;
Gabor Greif697e94c2008-05-15 10:04:30 +00002486 } else { // Casting from something else
Duncan Sands55e50902008-01-06 10:12:28 +00002487 return false;
2488 }
Duncan Sands27bd0df2011-05-18 10:59:25 +00002489 } else if (DestTy->isVectorTy()) { // Casting to vector
2490 return DestBits == SrcBits;
Duncan Sands19d0b472010-02-16 11:11:14 +00002491 } else if (DestTy->isPointerTy()) { // Casting to pointer
Duncan Sands27bd0df2011-05-18 10:59:25 +00002492 if (SrcTy->isPointerTy()) { // Casting from pointer
Duncan Sands55e50902008-01-06 10:12:28 +00002493 return true;
Duncan Sands27bd0df2011-05-18 10:59:25 +00002494 } else if (SrcTy->isIntegerTy()) { // Casting from integral
Duncan Sands55e50902008-01-06 10:12:28 +00002495 return true;
Duncan Sands27bd0df2011-05-18 10:59:25 +00002496 } else { // Casting from something else
Duncan Sands55e50902008-01-06 10:12:28 +00002497 return false;
2498 }
Duncan Sands2d3cdd62011-04-01 03:34:54 +00002499 } else if (DestTy->isX86_MMXTy()) {
Duncan Sands27bd0df2011-05-18 10:59:25 +00002500 if (SrcTy->isVectorTy()) {
2501 return DestBits == SrcBits; // 64-bit vector to MMX
Duncan Sands2d3cdd62011-04-01 03:34:54 +00002502 } else {
2503 return false;
2504 }
Duncan Sands27bd0df2011-05-18 10:59:25 +00002505 } else { // Casting to something else
Duncan Sands55e50902008-01-06 10:12:28 +00002506 return false;
2507 }
2508}
2509
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002510// Provide a way to get a "cast" where the cast opcode is inferred from the
2511// types and size of the operand. This, basically, is a parallel of the
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002512// logic in the castIsValid function below. This axiom should hold:
2513// castIsValid( getCastOpcode(Val, Ty), Val, Ty)
2514// should not assert in castIsValid. In other words, this produces a "correct"
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002515// casting opcode for the arguments passed to it.
Duncan Sands55e50902008-01-06 10:12:28 +00002516// This routine must be kept in sync with isCastable.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002517Instruction::CastOps
Reid Spencerc4dacf22006-12-04 02:43:42 +00002518CastInst::getCastOpcode(
Chris Lattner229907c2011-07-18 04:54:35 +00002519 const Value *Src, bool SrcIsSigned, Type *DestTy, bool DestIsSigned) {
2520 Type *SrcTy = Src->getType();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002521
Duncan Sands55e50902008-01-06 10:12:28 +00002522 assert(SrcTy->isFirstClassType() && DestTy->isFirstClassType() &&
2523 "Only first class types are castable!");
2524
Duncan Sandsa8514532011-05-18 07:13:41 +00002525 if (SrcTy == DestTy)
2526 return BitCast;
2527
Chris Lattner229907c2011-07-18 04:54:35 +00002528 if (VectorType *SrcVecTy = dyn_cast<VectorType>(SrcTy))
2529 if (VectorType *DestVecTy = dyn_cast<VectorType>(DestTy))
Duncan Sandsa8514532011-05-18 07:13:41 +00002530 if (SrcVecTy->getNumElements() == DestVecTy->getNumElements()) {
2531 // An element by element cast. Find the appropriate opcode based on the
2532 // element types.
2533 SrcTy = SrcVecTy->getElementType();
2534 DestTy = DestVecTy->getElementType();
2535 }
2536
2537 // Get the bit sizes, we'll need these
Duncan Sands7f646562011-05-18 09:21:57 +00002538 unsigned SrcBits = SrcTy->getPrimitiveSizeInBits(); // 0 for ptr
2539 unsigned DestBits = DestTy->getPrimitiveSizeInBits(); // 0 for ptr
Duncan Sandsa8514532011-05-18 07:13:41 +00002540
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002541 // Run through the possibilities ...
Duncan Sands9dff9be2010-02-15 16:12:20 +00002542 if (DestTy->isIntegerTy()) { // Casting to integral
2543 if (SrcTy->isIntegerTy()) { // Casting from integral
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002544 if (DestBits < SrcBits)
2545 return Trunc; // int -> smaller int
2546 else if (DestBits > SrcBits) { // its an extension
Reid Spencerc4dacf22006-12-04 02:43:42 +00002547 if (SrcIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002548 return SExt; // signed -> SEXT
2549 else
2550 return ZExt; // unsigned -> ZEXT
2551 } else {
2552 return BitCast; // Same size, No-op cast
2553 }
Duncan Sands9dff9be2010-02-15 16:12:20 +00002554 } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt
Reid Spencerc4dacf22006-12-04 02:43:42 +00002555 if (DestIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002556 return FPToSI; // FP -> sint
2557 else
2558 return FPToUI; // FP -> uint
Duncan Sands27bd0df2011-05-18 10:59:25 +00002559 } else if (SrcTy->isVectorTy()) {
2560 assert(DestBits == SrcBits &&
2561 "Casting vector to integer of different width");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002562 return BitCast; // Same size, no-op cast
2563 } else {
Duncan Sands19d0b472010-02-16 11:11:14 +00002564 assert(SrcTy->isPointerTy() &&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002565 "Casting from a value that is not first-class type");
2566 return PtrToInt; // ptr -> int
2567 }
Duncan Sands9dff9be2010-02-15 16:12:20 +00002568 } else if (DestTy->isFloatingPointTy()) { // Casting to floating pt
2569 if (SrcTy->isIntegerTy()) { // Casting from integral
Reid Spencerc4dacf22006-12-04 02:43:42 +00002570 if (SrcIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002571 return SIToFP; // sint -> FP
2572 else
2573 return UIToFP; // uint -> FP
Duncan Sands9dff9be2010-02-15 16:12:20 +00002574 } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002575 if (DestBits < SrcBits) {
2576 return FPTrunc; // FP -> smaller FP
2577 } else if (DestBits > SrcBits) {
2578 return FPExt; // FP -> larger FP
2579 } else {
2580 return BitCast; // same size, no-op cast
2581 }
Duncan Sands27bd0df2011-05-18 10:59:25 +00002582 } else if (SrcTy->isVectorTy()) {
2583 assert(DestBits == SrcBits &&
Dan Gohmanfead7972007-05-11 21:43:24 +00002584 "Casting vector to floating point of different width");
Devang Patele9432132008-11-05 01:37:40 +00002585 return BitCast; // same size, no-op cast
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002586 } else {
Torok Edwinfbcc6632009-07-14 16:55:14 +00002587 llvm_unreachable("Casting pointer or non-first class to float");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002588 }
Duncan Sands27bd0df2011-05-18 10:59:25 +00002589 } else if (DestTy->isVectorTy()) {
2590 assert(DestBits == SrcBits &&
2591 "Illegal cast to vector (wrong type or size)");
2592 return BitCast;
Duncan Sands19d0b472010-02-16 11:11:14 +00002593 } else if (DestTy->isPointerTy()) {
2594 if (SrcTy->isPointerTy()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002595 return BitCast; // ptr -> ptr
Duncan Sands9dff9be2010-02-15 16:12:20 +00002596 } else if (SrcTy->isIntegerTy()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002597 return IntToPtr; // int -> ptr
2598 } else {
Richard Trieua318b8d2011-09-21 03:09:09 +00002599 assert(0 && "Casting pointer to other than pointer or int");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002600 }
Dale Johannesendd224d22010-09-30 23:57:10 +00002601 } else if (DestTy->isX86_MMXTy()) {
Duncan Sands27bd0df2011-05-18 10:59:25 +00002602 if (SrcTy->isVectorTy()) {
2603 assert(DestBits == SrcBits && "Casting vector of wrong width to X86_MMX");
Dale Johannesendd224d22010-09-30 23:57:10 +00002604 return BitCast; // 64-bit vector to MMX
2605 } else {
Richard Trieua318b8d2011-09-21 03:09:09 +00002606 assert(0 && "Illegal cast to X86_MMX");
Dale Johannesendd224d22010-09-30 23:57:10 +00002607 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002608 } else {
Richard Trieua318b8d2011-09-21 03:09:09 +00002609 assert(0 && "Casting to type that is not first-class");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002610 }
2611
2612 // If we fall through to here we probably hit an assertion cast above
2613 // and assertions are not turned on. Anything we return is an error, so
2614 // BitCast is as good a choice as any.
2615 return BitCast;
2616}
2617
2618//===----------------------------------------------------------------------===//
2619// CastInst SubClass Constructors
2620//===----------------------------------------------------------------------===//
2621
2622/// Check that the construction parameters for a CastInst are correct. This
2623/// could be broken out into the separate constructors but it is useful to have
2624/// it in one place and to eliminate the redundant code for getting the sizes
2625/// of the types involved.
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002626bool
Chris Lattner229907c2011-07-18 04:54:35 +00002627CastInst::castIsValid(Instruction::CastOps op, Value *S, Type *DstTy) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002628
2629 // Check for type sanity on the arguments
Chris Lattner229907c2011-07-18 04:54:35 +00002630 Type *SrcTy = S->getType();
Chris Lattner37bc78a2010-01-26 21:51:43 +00002631 if (!SrcTy->isFirstClassType() || !DstTy->isFirstClassType() ||
2632 SrcTy->isAggregateType() || DstTy->isAggregateType())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002633 return false;
2634
2635 // Get the size of the types in bits, we'll need this later
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002636 unsigned SrcBitSize = SrcTy->getScalarSizeInBits();
2637 unsigned DstBitSize = DstTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002638
Duncan Sands7f646562011-05-18 09:21:57 +00002639 // If these are vector types, get the lengths of the vectors (using zero for
2640 // scalar types means that checking that vector lengths match also checks that
2641 // scalars are not being converted to vectors or vectors to scalars).
2642 unsigned SrcLength = SrcTy->isVectorTy() ?
2643 cast<VectorType>(SrcTy)->getNumElements() : 0;
2644 unsigned DstLength = DstTy->isVectorTy() ?
2645 cast<VectorType>(DstTy)->getNumElements() : 0;
2646
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002647 // Switch on the opcode provided
2648 switch (op) {
2649 default: return false; // This is an input error
2650 case Instruction::Trunc:
Duncan Sands7f646562011-05-18 09:21:57 +00002651 return SrcTy->isIntOrIntVectorTy() && DstTy->isIntOrIntVectorTy() &&
2652 SrcLength == DstLength && SrcBitSize > DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002653 case Instruction::ZExt:
Duncan Sands7f646562011-05-18 09:21:57 +00002654 return SrcTy->isIntOrIntVectorTy() && DstTy->isIntOrIntVectorTy() &&
2655 SrcLength == DstLength && SrcBitSize < DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002656 case Instruction::SExt:
Duncan Sands7f646562011-05-18 09:21:57 +00002657 return SrcTy->isIntOrIntVectorTy() && DstTy->isIntOrIntVectorTy() &&
2658 SrcLength == DstLength && SrcBitSize < DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002659 case Instruction::FPTrunc:
Duncan Sands7f646562011-05-18 09:21:57 +00002660 return SrcTy->isFPOrFPVectorTy() && DstTy->isFPOrFPVectorTy() &&
2661 SrcLength == DstLength && SrcBitSize > DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002662 case Instruction::FPExt:
Duncan Sands7f646562011-05-18 09:21:57 +00002663 return SrcTy->isFPOrFPVectorTy() && DstTy->isFPOrFPVectorTy() &&
2664 SrcLength == DstLength && SrcBitSize < DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002665 case Instruction::UIToFP:
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002666 case Instruction::SIToFP:
Duncan Sands7f646562011-05-18 09:21:57 +00002667 return SrcTy->isIntOrIntVectorTy() && DstTy->isFPOrFPVectorTy() &&
2668 SrcLength == DstLength;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002669 case Instruction::FPToUI:
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002670 case Instruction::FPToSI:
Duncan Sands7f646562011-05-18 09:21:57 +00002671 return SrcTy->isFPOrFPVectorTy() && DstTy->isIntOrIntVectorTy() &&
2672 SrcLength == DstLength;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002673 case Instruction::PtrToInt:
Nadav Rotem3924cb02011-12-05 06:29:09 +00002674 if (SrcTy->getNumElements() != DstTy->getNumElements())
2675 return false;
2676 return SrcTy->getScalarType()->isPointerTy() &&
2677 DstTy->getScalarType()->isIntegerTy();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002678 case Instruction::IntToPtr:
Nadav Rotem3924cb02011-12-05 06:29:09 +00002679 if (SrcTy->getNumElements() != DstTy->getNumElements())
2680 return false;
2681 return SrcTy->getScalarType()->isIntegerTy() &&
2682 DstTy->getScalarType()->isPointerTy();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002683 case Instruction::BitCast:
2684 // BitCast implies a no-op cast of type only. No bits change.
2685 // However, you can't cast pointers to anything but pointers.
Duncan Sands19d0b472010-02-16 11:11:14 +00002686 if (SrcTy->isPointerTy() != DstTy->isPointerTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002687 return false;
2688
Duncan Sands55e50902008-01-06 10:12:28 +00002689 // Now we know we're not dealing with a pointer/non-pointer mismatch. In all
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002690 // these cases, the cast is okay if the source and destination bit widths
2691 // are identical.
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002692 return SrcTy->getPrimitiveSizeInBits() == DstTy->getPrimitiveSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002693 }
2694}
2695
2696TruncInst::TruncInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002697 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002698) : CastInst(Ty, Trunc, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002699 assert(castIsValid(getOpcode(), S, Ty) && "Illegal Trunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002700}
2701
2702TruncInst::TruncInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002703 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002704) : CastInst(Ty, Trunc, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002705 assert(castIsValid(getOpcode(), S, Ty) && "Illegal Trunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002706}
2707
2708ZExtInst::ZExtInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002709 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002710) : CastInst(Ty, ZExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002711 assert(castIsValid(getOpcode(), S, Ty) && "Illegal ZExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002712}
2713
2714ZExtInst::ZExtInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002715 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002716) : CastInst(Ty, ZExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002717 assert(castIsValid(getOpcode(), S, Ty) && "Illegal ZExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002718}
2719SExtInst::SExtInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002720 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002721) : CastInst(Ty, SExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002722 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002723}
2724
Jeff Cohencc08c832006-12-02 02:22:01 +00002725SExtInst::SExtInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002726 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002727) : CastInst(Ty, SExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002728 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002729}
2730
2731FPTruncInst::FPTruncInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002732 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002733) : CastInst(Ty, FPTrunc, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002734 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPTrunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002735}
2736
2737FPTruncInst::FPTruncInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002738 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002739) : CastInst(Ty, FPTrunc, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002740 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPTrunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002741}
2742
2743FPExtInst::FPExtInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002744 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002745) : CastInst(Ty, FPExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002746 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002747}
2748
2749FPExtInst::FPExtInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002750 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002751) : CastInst(Ty, FPExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002752 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002753}
2754
2755UIToFPInst::UIToFPInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002756 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002757) : CastInst(Ty, UIToFP, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002758 assert(castIsValid(getOpcode(), S, Ty) && "Illegal UIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002759}
2760
2761UIToFPInst::UIToFPInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002762 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002763) : CastInst(Ty, UIToFP, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002764 assert(castIsValid(getOpcode(), S, Ty) && "Illegal UIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002765}
2766
2767SIToFPInst::SIToFPInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002768 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002769) : CastInst(Ty, SIToFP, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002770 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002771}
2772
2773SIToFPInst::SIToFPInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002774 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002775) : CastInst(Ty, SIToFP, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002776 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002777}
2778
2779FPToUIInst::FPToUIInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002780 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002781) : CastInst(Ty, FPToUI, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002782 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToUI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002783}
2784
2785FPToUIInst::FPToUIInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002786 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002787) : CastInst(Ty, FPToUI, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002788 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToUI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002789}
2790
2791FPToSIInst::FPToSIInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002792 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002793) : CastInst(Ty, FPToSI, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002794 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToSI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002795}
2796
2797FPToSIInst::FPToSIInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002798 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002799) : CastInst(Ty, FPToSI, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002800 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToSI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002801}
2802
2803PtrToIntInst::PtrToIntInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002804 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002805) : CastInst(Ty, PtrToInt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002806 assert(castIsValid(getOpcode(), S, Ty) && "Illegal PtrToInt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002807}
2808
2809PtrToIntInst::PtrToIntInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002810 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002811) : CastInst(Ty, PtrToInt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002812 assert(castIsValid(getOpcode(), S, Ty) && "Illegal PtrToInt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002813}
2814
2815IntToPtrInst::IntToPtrInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002816 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002817) : CastInst(Ty, IntToPtr, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002818 assert(castIsValid(getOpcode(), S, Ty) && "Illegal IntToPtr");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002819}
2820
2821IntToPtrInst::IntToPtrInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002822 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002823) : CastInst(Ty, IntToPtr, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002824 assert(castIsValid(getOpcode(), S, Ty) && "Illegal IntToPtr");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002825}
2826
2827BitCastInst::BitCastInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002828 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002829) : CastInst(Ty, BitCast, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002830 assert(castIsValid(getOpcode(), S, Ty) && "Illegal BitCast");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002831}
2832
2833BitCastInst::BitCastInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002834 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002835) : CastInst(Ty, BitCast, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002836 assert(castIsValid(getOpcode(), S, Ty) && "Illegal BitCast");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002837}
Chris Lattnerf16dc002006-09-17 19:29:56 +00002838
2839//===----------------------------------------------------------------------===//
Reid Spencerd9436b62006-11-20 01:22:35 +00002840// CmpInst Classes
2841//===----------------------------------------------------------------------===//
2842
Chris Lattneraec33da2010-01-22 06:25:37 +00002843void CmpInst::Anchor() const {}
2844
Chris Lattner229907c2011-07-18 04:54:35 +00002845CmpInst::CmpInst(Type *ty, OtherOps op, unsigned short predicate,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002846 Value *LHS, Value *RHS, const Twine &Name,
Nate Begemand2195702008-05-12 19:01:56 +00002847 Instruction *InsertBefore)
Nate Begeman66d0a0e2008-05-12 20:11:05 +00002848 : Instruction(ty, op,
Gabor Greiff6caff662008-05-10 08:32:32 +00002849 OperandTraits<CmpInst>::op_begin(this),
2850 OperandTraits<CmpInst>::operands(this),
2851 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00002852 Op<0>() = LHS;
2853 Op<1>() = RHS;
Chris Lattnerb9c86512009-12-29 02:14:09 +00002854 setPredicate((Predicate)predicate);
Reid Spencer871a9ea2007-04-11 13:04:48 +00002855 setName(Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002856}
Gabor Greiff6caff662008-05-10 08:32:32 +00002857
Chris Lattner229907c2011-07-18 04:54:35 +00002858CmpInst::CmpInst(Type *ty, OtherOps op, unsigned short predicate,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002859 Value *LHS, Value *RHS, const Twine &Name,
Nate Begemand2195702008-05-12 19:01:56 +00002860 BasicBlock *InsertAtEnd)
Nate Begeman66d0a0e2008-05-12 20:11:05 +00002861 : Instruction(ty, op,
Gabor Greiff6caff662008-05-10 08:32:32 +00002862 OperandTraits<CmpInst>::op_begin(this),
2863 OperandTraits<CmpInst>::operands(this),
2864 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00002865 Op<0>() = LHS;
2866 Op<1>() = RHS;
Chris Lattnerb9c86512009-12-29 02:14:09 +00002867 setPredicate((Predicate)predicate);
Reid Spencer871a9ea2007-04-11 13:04:48 +00002868 setName(Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002869}
2870
2871CmpInst *
Dan Gohmanad1f0a12009-08-25 23:17:54 +00002872CmpInst::Create(OtherOps Op, unsigned short predicate,
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002873 Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002874 const Twine &Name, Instruction *InsertBefore) {
Reid Spencerd9436b62006-11-20 01:22:35 +00002875 if (Op == Instruction::ICmp) {
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002876 if (InsertBefore)
2877 return new ICmpInst(InsertBefore, CmpInst::Predicate(predicate),
2878 S1, S2, Name);
2879 else
Dan Gohmanad1f0a12009-08-25 23:17:54 +00002880 return new ICmpInst(CmpInst::Predicate(predicate),
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002881 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002882 }
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002883
2884 if (InsertBefore)
2885 return new FCmpInst(InsertBefore, CmpInst::Predicate(predicate),
2886 S1, S2, Name);
2887 else
Dan Gohmanad1f0a12009-08-25 23:17:54 +00002888 return new FCmpInst(CmpInst::Predicate(predicate),
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002889 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002890}
2891
2892CmpInst *
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002893CmpInst::Create(OtherOps Op, unsigned short predicate, Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002894 const Twine &Name, BasicBlock *InsertAtEnd) {
Reid Spencerd9436b62006-11-20 01:22:35 +00002895 if (Op == Instruction::ICmp) {
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002896 return new ICmpInst(*InsertAtEnd, CmpInst::Predicate(predicate),
2897 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002898 }
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002899 return new FCmpInst(*InsertAtEnd, CmpInst::Predicate(predicate),
2900 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002901}
2902
2903void CmpInst::swapOperands() {
2904 if (ICmpInst *IC = dyn_cast<ICmpInst>(this))
2905 IC->swapOperands();
2906 else
2907 cast<FCmpInst>(this)->swapOperands();
2908}
2909
Duncan Sands95c4ecc2011-01-04 12:52:29 +00002910bool CmpInst::isCommutative() const {
2911 if (const ICmpInst *IC = dyn_cast<ICmpInst>(this))
Reid Spencerd9436b62006-11-20 01:22:35 +00002912 return IC->isCommutative();
2913 return cast<FCmpInst>(this)->isCommutative();
2914}
2915
Duncan Sands95c4ecc2011-01-04 12:52:29 +00002916bool CmpInst::isEquality() const {
2917 if (const ICmpInst *IC = dyn_cast<ICmpInst>(this))
Reid Spencerd9436b62006-11-20 01:22:35 +00002918 return IC->isEquality();
2919 return cast<FCmpInst>(this)->isEquality();
2920}
2921
2922
Dan Gohman4e724382008-05-31 02:47:54 +00002923CmpInst::Predicate CmpInst::getInversePredicate(Predicate pred) {
Reid Spencerd9436b62006-11-20 01:22:35 +00002924 switch (pred) {
Richard Trieua318b8d2011-09-21 03:09:09 +00002925 default: assert(0 && "Unknown cmp predicate!");
Reid Spencerd9436b62006-11-20 01:22:35 +00002926 case ICMP_EQ: return ICMP_NE;
2927 case ICMP_NE: return ICMP_EQ;
2928 case ICMP_UGT: return ICMP_ULE;
2929 case ICMP_ULT: return ICMP_UGE;
2930 case ICMP_UGE: return ICMP_ULT;
2931 case ICMP_ULE: return ICMP_UGT;
2932 case ICMP_SGT: return ICMP_SLE;
2933 case ICMP_SLT: return ICMP_SGE;
2934 case ICMP_SGE: return ICMP_SLT;
2935 case ICMP_SLE: return ICMP_SGT;
Reid Spencerd9436b62006-11-20 01:22:35 +00002936
Dan Gohman4e724382008-05-31 02:47:54 +00002937 case FCMP_OEQ: return FCMP_UNE;
2938 case FCMP_ONE: return FCMP_UEQ;
2939 case FCMP_OGT: return FCMP_ULE;
2940 case FCMP_OLT: return FCMP_UGE;
2941 case FCMP_OGE: return FCMP_ULT;
2942 case FCMP_OLE: return FCMP_UGT;
2943 case FCMP_UEQ: return FCMP_ONE;
2944 case FCMP_UNE: return FCMP_OEQ;
2945 case FCMP_UGT: return FCMP_OLE;
2946 case FCMP_ULT: return FCMP_OGE;
2947 case FCMP_UGE: return FCMP_OLT;
2948 case FCMP_ULE: return FCMP_OGT;
2949 case FCMP_ORD: return FCMP_UNO;
2950 case FCMP_UNO: return FCMP_ORD;
2951 case FCMP_TRUE: return FCMP_FALSE;
2952 case FCMP_FALSE: return FCMP_TRUE;
Reid Spencerd9436b62006-11-20 01:22:35 +00002953 }
2954}
2955
Reid Spencer266e42b2006-12-23 06:05:41 +00002956ICmpInst::Predicate ICmpInst::getSignedPredicate(Predicate pred) {
2957 switch (pred) {
Richard Trieua318b8d2011-09-21 03:09:09 +00002958 default: assert(0 && "Unknown icmp predicate!");
Reid Spencer266e42b2006-12-23 06:05:41 +00002959 case ICMP_EQ: case ICMP_NE:
2960 case ICMP_SGT: case ICMP_SLT: case ICMP_SGE: case ICMP_SLE:
2961 return pred;
2962 case ICMP_UGT: return ICMP_SGT;
2963 case ICMP_ULT: return ICMP_SLT;
2964 case ICMP_UGE: return ICMP_SGE;
2965 case ICMP_ULE: return ICMP_SLE;
2966 }
2967}
2968
Nick Lewycky8ea81e82008-01-28 03:48:02 +00002969ICmpInst::Predicate ICmpInst::getUnsignedPredicate(Predicate pred) {
2970 switch (pred) {
Richard Trieua318b8d2011-09-21 03:09:09 +00002971 default: assert(0 && "Unknown icmp predicate!");
Nick Lewycky8ea81e82008-01-28 03:48:02 +00002972 case ICMP_EQ: case ICMP_NE:
2973 case ICMP_UGT: case ICMP_ULT: case ICMP_UGE: case ICMP_ULE:
2974 return pred;
2975 case ICMP_SGT: return ICMP_UGT;
2976 case ICMP_SLT: return ICMP_ULT;
2977 case ICMP_SGE: return ICMP_UGE;
2978 case ICMP_SLE: return ICMP_ULE;
2979 }
2980}
2981
Reid Spencer0286bc12007-02-28 22:00:54 +00002982/// Initialize a set of values that all satisfy the condition with C.
2983///
2984ConstantRange
2985ICmpInst::makeConstantRange(Predicate pred, const APInt &C) {
2986 APInt Lower(C);
2987 APInt Upper(C);
2988 uint32_t BitWidth = C.getBitWidth();
2989 switch (pred) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00002990 default: llvm_unreachable("Invalid ICmp opcode to ConstantRange ctor!");
Reid Spencer0286bc12007-02-28 22:00:54 +00002991 case ICmpInst::ICMP_EQ: Upper++; break;
2992 case ICmpInst::ICMP_NE: Lower++; break;
Dan Gohmand86e2952010-01-26 16:04:20 +00002993 case ICmpInst::ICMP_ULT:
2994 Lower = APInt::getMinValue(BitWidth);
2995 // Check for an empty-set condition.
2996 if (Lower == Upper)
2997 return ConstantRange(BitWidth, /*isFullSet=*/false);
2998 break;
2999 case ICmpInst::ICMP_SLT:
3000 Lower = APInt::getSignedMinValue(BitWidth);
3001 // Check for an empty-set condition.
3002 if (Lower == Upper)
3003 return ConstantRange(BitWidth, /*isFullSet=*/false);
3004 break;
Reid Spencer0286bc12007-02-28 22:00:54 +00003005 case ICmpInst::ICMP_UGT:
3006 Lower++; Upper = APInt::getMinValue(BitWidth); // Min = Next(Max)
Dan Gohmand86e2952010-01-26 16:04:20 +00003007 // Check for an empty-set condition.
3008 if (Lower == Upper)
3009 return ConstantRange(BitWidth, /*isFullSet=*/false);
Reid Spencer0286bc12007-02-28 22:00:54 +00003010 break;
3011 case ICmpInst::ICMP_SGT:
3012 Lower++; Upper = APInt::getSignedMinValue(BitWidth); // Min = Next(Max)
Dan Gohmand86e2952010-01-26 16:04:20 +00003013 // Check for an empty-set condition.
3014 if (Lower == Upper)
3015 return ConstantRange(BitWidth, /*isFullSet=*/false);
Reid Spencer0286bc12007-02-28 22:00:54 +00003016 break;
3017 case ICmpInst::ICMP_ULE:
3018 Lower = APInt::getMinValue(BitWidth); Upper++;
Dan Gohmand86e2952010-01-26 16:04:20 +00003019 // Check for a full-set condition.
3020 if (Lower == Upper)
3021 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer0286bc12007-02-28 22:00:54 +00003022 break;
3023 case ICmpInst::ICMP_SLE:
3024 Lower = APInt::getSignedMinValue(BitWidth); Upper++;
Dan Gohmand86e2952010-01-26 16:04:20 +00003025 // Check for a full-set condition.
3026 if (Lower == Upper)
3027 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer0286bc12007-02-28 22:00:54 +00003028 break;
3029 case ICmpInst::ICMP_UGE:
3030 Upper = APInt::getMinValue(BitWidth); // Min = Next(Max)
Dan Gohmand86e2952010-01-26 16:04:20 +00003031 // Check for a full-set condition.
3032 if (Lower == Upper)
3033 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer0286bc12007-02-28 22:00:54 +00003034 break;
3035 case ICmpInst::ICMP_SGE:
3036 Upper = APInt::getSignedMinValue(BitWidth); // Min = Next(Max)
Dan Gohmand86e2952010-01-26 16:04:20 +00003037 // Check for a full-set condition.
3038 if (Lower == Upper)
3039 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer0286bc12007-02-28 22:00:54 +00003040 break;
3041 }
3042 return ConstantRange(Lower, Upper);
3043}
3044
Dan Gohman4e724382008-05-31 02:47:54 +00003045CmpInst::Predicate CmpInst::getSwappedPredicate(Predicate pred) {
Reid Spencerd9436b62006-11-20 01:22:35 +00003046 switch (pred) {
Richard Trieua318b8d2011-09-21 03:09:09 +00003047 default: assert(0 && "Unknown cmp predicate!");
Dan Gohman4e724382008-05-31 02:47:54 +00003048 case ICMP_EQ: case ICMP_NE:
3049 return pred;
3050 case ICMP_SGT: return ICMP_SLT;
3051 case ICMP_SLT: return ICMP_SGT;
3052 case ICMP_SGE: return ICMP_SLE;
3053 case ICMP_SLE: return ICMP_SGE;
3054 case ICMP_UGT: return ICMP_ULT;
3055 case ICMP_ULT: return ICMP_UGT;
3056 case ICMP_UGE: return ICMP_ULE;
3057 case ICMP_ULE: return ICMP_UGE;
3058
Reid Spencerd9436b62006-11-20 01:22:35 +00003059 case FCMP_FALSE: case FCMP_TRUE:
3060 case FCMP_OEQ: case FCMP_ONE:
3061 case FCMP_UEQ: case FCMP_UNE:
3062 case FCMP_ORD: case FCMP_UNO:
3063 return pred;
3064 case FCMP_OGT: return FCMP_OLT;
3065 case FCMP_OLT: return FCMP_OGT;
3066 case FCMP_OGE: return FCMP_OLE;
3067 case FCMP_OLE: return FCMP_OGE;
3068 case FCMP_UGT: return FCMP_ULT;
3069 case FCMP_ULT: return FCMP_UGT;
3070 case FCMP_UGE: return FCMP_ULE;
3071 case FCMP_ULE: return FCMP_UGE;
3072 }
3073}
3074
Reid Spencer266e42b2006-12-23 06:05:41 +00003075bool CmpInst::isUnsigned(unsigned short predicate) {
3076 switch (predicate) {
3077 default: return false;
3078 case ICmpInst::ICMP_ULT: case ICmpInst::ICMP_ULE: case ICmpInst::ICMP_UGT:
3079 case ICmpInst::ICMP_UGE: return true;
3080 }
3081}
3082
Nick Lewycky7494b3b2009-10-25 03:50:03 +00003083bool CmpInst::isSigned(unsigned short predicate) {
Reid Spencer266e42b2006-12-23 06:05:41 +00003084 switch (predicate) {
3085 default: return false;
3086 case ICmpInst::ICMP_SLT: case ICmpInst::ICMP_SLE: case ICmpInst::ICMP_SGT:
3087 case ICmpInst::ICMP_SGE: return true;
3088 }
3089}
3090
3091bool CmpInst::isOrdered(unsigned short predicate) {
3092 switch (predicate) {
3093 default: return false;
3094 case FCmpInst::FCMP_OEQ: case FCmpInst::FCMP_ONE: case FCmpInst::FCMP_OGT:
3095 case FCmpInst::FCMP_OLT: case FCmpInst::FCMP_OGE: case FCmpInst::FCMP_OLE:
3096 case FCmpInst::FCMP_ORD: return true;
3097 }
3098}
3099
3100bool CmpInst::isUnordered(unsigned short predicate) {
3101 switch (predicate) {
3102 default: return false;
3103 case FCmpInst::FCMP_UEQ: case FCmpInst::FCMP_UNE: case FCmpInst::FCMP_UGT:
3104 case FCmpInst::FCMP_ULT: case FCmpInst::FCMP_UGE: case FCmpInst::FCMP_ULE:
3105 case FCmpInst::FCMP_UNO: return true;
3106 }
3107}
3108
Nick Lewycky7494b3b2009-10-25 03:50:03 +00003109bool CmpInst::isTrueWhenEqual(unsigned short predicate) {
3110 switch(predicate) {
3111 default: return false;
3112 case ICMP_EQ: case ICMP_UGE: case ICMP_ULE: case ICMP_SGE: case ICMP_SLE:
3113 case FCMP_TRUE: case FCMP_UEQ: case FCMP_UGE: case FCMP_ULE: return true;
3114 }
3115}
3116
3117bool CmpInst::isFalseWhenEqual(unsigned short predicate) {
3118 switch(predicate) {
3119 case ICMP_NE: case ICMP_UGT: case ICMP_ULT: case ICMP_SGT: case ICMP_SLT:
3120 case FCMP_FALSE: case FCMP_ONE: case FCMP_OGT: case FCMP_OLT: return true;
3121 default: return false;
3122 }
3123}
3124
3125
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003126//===----------------------------------------------------------------------===//
3127// SwitchInst Implementation
3128//===----------------------------------------------------------------------===//
3129
Chris Lattnerbaf00152010-11-17 05:41:46 +00003130void SwitchInst::init(Value *Value, BasicBlock *Default, unsigned NumReserved) {
3131 assert(Value && Default && NumReserved);
3132 ReservedSpace = NumReserved;
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003133 NumOperands = 2;
Gabor Greiff6caff662008-05-10 08:32:32 +00003134 OperandList = allocHungoffUses(ReservedSpace);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003135
Gabor Greif2d3024d2008-05-26 21:33:52 +00003136 OperandList[0] = Value;
3137 OperandList[1] = Default;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003138}
3139
Chris Lattner2195fc42007-02-24 00:55:48 +00003140/// SwitchInst ctor - Create a new switch instruction, specifying a value to
3141/// switch on and a default destination. The number of additional cases can
3142/// be specified here to make memory allocation more efficient. This
3143/// constructor can also autoinsert before another instruction.
3144SwitchInst::SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
3145 Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +00003146 : TerminatorInst(Type::getVoidTy(Value->getContext()), Instruction::Switch,
3147 0, 0, InsertBefore) {
Chris Lattnerbaf00152010-11-17 05:41:46 +00003148 init(Value, Default, 2+NumCases*2);
Chris Lattner2195fc42007-02-24 00:55:48 +00003149}
3150
3151/// SwitchInst ctor - Create a new switch instruction, specifying a value to
3152/// switch on and a default destination. The number of additional cases can
3153/// be specified here to make memory allocation more efficient. This
3154/// constructor also autoinserts at the end of the specified BasicBlock.
3155SwitchInst::SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
3156 BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +00003157 : TerminatorInst(Type::getVoidTy(Value->getContext()), Instruction::Switch,
3158 0, 0, InsertAtEnd) {
Chris Lattnerbaf00152010-11-17 05:41:46 +00003159 init(Value, Default, 2+NumCases*2);
Chris Lattner2195fc42007-02-24 00:55:48 +00003160}
3161
Misha Brukmanb1c93172005-04-21 23:48:37 +00003162SwitchInst::SwitchInst(const SwitchInst &SI)
Chris Lattnerbaf00152010-11-17 05:41:46 +00003163 : TerminatorInst(SI.getType(), Instruction::Switch, 0, 0) {
3164 init(SI.getCondition(), SI.getDefaultDest(), SI.getNumOperands());
3165 NumOperands = SI.getNumOperands();
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003166 Use *OL = OperandList, *InOL = SI.OperandList;
Chris Lattnerbaf00152010-11-17 05:41:46 +00003167 for (unsigned i = 2, E = SI.getNumOperands(); i != E; i += 2) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00003168 OL[i] = InOL[i];
3169 OL[i+1] = InOL[i+1];
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003170 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003171 SubclassOptionalData = SI.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003172}
3173
Gordon Henriksen14a55692007-12-10 02:14:30 +00003174SwitchInst::~SwitchInst() {
Jay Foadbbb91f22011-01-16 15:30:52 +00003175 dropHungoffUses();
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003176}
3177
3178
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003179/// addCase - Add an entry to the switch instruction...
3180///
Chris Lattner47ac1872005-02-24 05:32:09 +00003181void SwitchInst::addCase(ConstantInt *OnVal, BasicBlock *Dest) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003182 unsigned OpNo = NumOperands;
3183 if (OpNo+2 > ReservedSpace)
Jay Foade98f29d2011-04-01 08:00:58 +00003184 growOperands(); // Get more space!
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003185 // Initialize some new operands.
Chris Lattnerf711f8d2005-01-29 01:05:12 +00003186 assert(OpNo+1 < ReservedSpace && "Growing didn't work!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003187 NumOperands = OpNo+2;
Gabor Greif2d3024d2008-05-26 21:33:52 +00003188 OperandList[OpNo] = OnVal;
3189 OperandList[OpNo+1] = Dest;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003190}
3191
3192/// removeCase - This method removes the specified successor from the switch
3193/// instruction. Note that this cannot be used to remove the default
3194/// destination (successor #0).
3195///
3196void SwitchInst::removeCase(unsigned idx) {
3197 assert(idx != 0 && "Cannot remove the default case!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003198 assert(idx*2 < getNumOperands() && "Successor index out of range!!!");
3199
3200 unsigned NumOps = getNumOperands();
3201 Use *OL = OperandList;
3202
Jay Foad14277722011-02-01 09:22:34 +00003203 // Overwrite this case with the end of the list.
3204 if ((idx + 1) * 2 != NumOps) {
3205 OL[idx * 2] = OL[NumOps - 2];
3206 OL[idx * 2 + 1] = OL[NumOps - 1];
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003207 }
3208
3209 // Nuke the last value.
3210 OL[NumOps-2].set(0);
3211 OL[NumOps-2+1].set(0);
3212 NumOperands = NumOps-2;
3213}
3214
Jay Foade98f29d2011-04-01 08:00:58 +00003215/// growOperands - grow operands - This grows the operand list in response
3216/// to a push_back style of operation. This grows the number of ops by 3 times.
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003217///
Jay Foade98f29d2011-04-01 08:00:58 +00003218void SwitchInst::growOperands() {
Gabor Greiff6caff662008-05-10 08:32:32 +00003219 unsigned e = getNumOperands();
Jay Foade98f29d2011-04-01 08:00:58 +00003220 unsigned NumOps = e*3;
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003221
3222 ReservedSpace = NumOps;
Gabor Greiff6caff662008-05-10 08:32:32 +00003223 Use *NewOps = allocHungoffUses(NumOps);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003224 Use *OldOps = OperandList;
Gabor Greiff6caff662008-05-10 08:32:32 +00003225 for (unsigned i = 0; i != e; ++i) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00003226 NewOps[i] = OldOps[i];
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003227 }
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003228 OperandList = NewOps;
Jay Foadbbb91f22011-01-16 15:30:52 +00003229 Use::zap(OldOps, OldOps + e, true);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003230}
3231
3232
3233BasicBlock *SwitchInst::getSuccessorV(unsigned idx) const {
3234 return getSuccessor(idx);
3235}
3236unsigned SwitchInst::getNumSuccessorsV() const {
3237 return getNumSuccessors();
3238}
3239void SwitchInst::setSuccessorV(unsigned idx, BasicBlock *B) {
3240 setSuccessor(idx, B);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003241}
Chris Lattnerf22be932004-10-15 23:52:53 +00003242
Chris Lattner3ed871f2009-10-27 19:13:16 +00003243//===----------------------------------------------------------------------===//
Jay Foadbbb91f22011-01-16 15:30:52 +00003244// IndirectBrInst Implementation
Chris Lattner3ed871f2009-10-27 19:13:16 +00003245//===----------------------------------------------------------------------===//
3246
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003247void IndirectBrInst::init(Value *Address, unsigned NumDests) {
Duncan Sands19d0b472010-02-16 11:11:14 +00003248 assert(Address && Address->getType()->isPointerTy() &&
Chris Lattner6747b4c2009-10-29 05:53:32 +00003249 "Address of indirectbr must be a pointer");
Chris Lattner3ed871f2009-10-27 19:13:16 +00003250 ReservedSpace = 1+NumDests;
3251 NumOperands = 1;
3252 OperandList = allocHungoffUses(ReservedSpace);
3253
3254 OperandList[0] = Address;
3255}
3256
3257
Jay Foade98f29d2011-04-01 08:00:58 +00003258/// growOperands - grow operands - This grows the operand list in response
3259/// to a push_back style of operation. This grows the number of ops by 2 times.
Chris Lattner3ed871f2009-10-27 19:13:16 +00003260///
Jay Foade98f29d2011-04-01 08:00:58 +00003261void IndirectBrInst::growOperands() {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003262 unsigned e = getNumOperands();
Jay Foade98f29d2011-04-01 08:00:58 +00003263 unsigned NumOps = e*2;
Chris Lattner3ed871f2009-10-27 19:13:16 +00003264
3265 ReservedSpace = NumOps;
3266 Use *NewOps = allocHungoffUses(NumOps);
3267 Use *OldOps = OperandList;
3268 for (unsigned i = 0; i != e; ++i)
3269 NewOps[i] = OldOps[i];
3270 OperandList = NewOps;
Jay Foadbbb91f22011-01-16 15:30:52 +00003271 Use::zap(OldOps, OldOps + e, true);
Chris Lattner3ed871f2009-10-27 19:13:16 +00003272}
3273
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003274IndirectBrInst::IndirectBrInst(Value *Address, unsigned NumCases,
3275 Instruction *InsertBefore)
3276: TerminatorInst(Type::getVoidTy(Address->getContext()),Instruction::IndirectBr,
Chris Lattner3ed871f2009-10-27 19:13:16 +00003277 0, 0, InsertBefore) {
3278 init(Address, NumCases);
3279}
3280
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003281IndirectBrInst::IndirectBrInst(Value *Address, unsigned NumCases,
3282 BasicBlock *InsertAtEnd)
3283: TerminatorInst(Type::getVoidTy(Address->getContext()),Instruction::IndirectBr,
Chris Lattner3ed871f2009-10-27 19:13:16 +00003284 0, 0, InsertAtEnd) {
3285 init(Address, NumCases);
3286}
3287
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003288IndirectBrInst::IndirectBrInst(const IndirectBrInst &IBI)
3289 : TerminatorInst(Type::getVoidTy(IBI.getContext()), Instruction::IndirectBr,
Chris Lattner3ed871f2009-10-27 19:13:16 +00003290 allocHungoffUses(IBI.getNumOperands()),
3291 IBI.getNumOperands()) {
3292 Use *OL = OperandList, *InOL = IBI.OperandList;
3293 for (unsigned i = 0, E = IBI.getNumOperands(); i != E; ++i)
3294 OL[i] = InOL[i];
3295 SubclassOptionalData = IBI.SubclassOptionalData;
3296}
3297
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003298IndirectBrInst::~IndirectBrInst() {
Jay Foadbbb91f22011-01-16 15:30:52 +00003299 dropHungoffUses();
Chris Lattner3ed871f2009-10-27 19:13:16 +00003300}
3301
3302/// addDestination - Add a destination.
3303///
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003304void IndirectBrInst::addDestination(BasicBlock *DestBB) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003305 unsigned OpNo = NumOperands;
3306 if (OpNo+1 > ReservedSpace)
Jay Foade98f29d2011-04-01 08:00:58 +00003307 growOperands(); // Get more space!
Chris Lattner3ed871f2009-10-27 19:13:16 +00003308 // Initialize some new operands.
3309 assert(OpNo < ReservedSpace && "Growing didn't work!");
3310 NumOperands = OpNo+1;
3311 OperandList[OpNo] = DestBB;
3312}
3313
3314/// removeDestination - This method removes the specified successor from the
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003315/// indirectbr instruction.
3316void IndirectBrInst::removeDestination(unsigned idx) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003317 assert(idx < getNumOperands()-1 && "Successor index out of range!");
3318
3319 unsigned NumOps = getNumOperands();
3320 Use *OL = OperandList;
3321
3322 // Replace this value with the last one.
3323 OL[idx+1] = OL[NumOps-1];
3324
3325 // Nuke the last value.
3326 OL[NumOps-1].set(0);
3327 NumOperands = NumOps-1;
3328}
3329
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003330BasicBlock *IndirectBrInst::getSuccessorV(unsigned idx) const {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003331 return getSuccessor(idx);
3332}
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003333unsigned IndirectBrInst::getNumSuccessorsV() const {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003334 return getNumSuccessors();
3335}
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003336void IndirectBrInst::setSuccessorV(unsigned idx, BasicBlock *B) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003337 setSuccessor(idx, B);
3338}
3339
3340//===----------------------------------------------------------------------===//
Devang Patel11cf3f42009-10-27 22:16:29 +00003341// clone_impl() implementations
Chris Lattner3ed871f2009-10-27 19:13:16 +00003342//===----------------------------------------------------------------------===//
3343
Chris Lattnerf22be932004-10-15 23:52:53 +00003344// Define these methods here so vtables don't get emitted into every translation
3345// unit that uses these classes.
3346
Devang Patel11cf3f42009-10-27 22:16:29 +00003347GetElementPtrInst *GetElementPtrInst::clone_impl() const {
3348 return new (getNumOperands()) GetElementPtrInst(*this);
Chris Lattnerf22be932004-10-15 23:52:53 +00003349}
3350
Devang Patel11cf3f42009-10-27 22:16:29 +00003351BinaryOperator *BinaryOperator::clone_impl() const {
3352 return Create(getOpcode(), Op<0>(), Op<1>());
Chris Lattnerf22be932004-10-15 23:52:53 +00003353}
3354
Devang Patel11cf3f42009-10-27 22:16:29 +00003355FCmpInst* FCmpInst::clone_impl() const {
3356 return new FCmpInst(getPredicate(), Op<0>(), Op<1>());
Reid Spencerd9436b62006-11-20 01:22:35 +00003357}
3358
Devang Patel11cf3f42009-10-27 22:16:29 +00003359ICmpInst* ICmpInst::clone_impl() const {
3360 return new ICmpInst(getPredicate(), Op<0>(), Op<1>());
Dan Gohman0752bff2008-05-23 00:36:11 +00003361}
3362
Devang Patel11cf3f42009-10-27 22:16:29 +00003363ExtractValueInst *ExtractValueInst::clone_impl() const {
3364 return new ExtractValueInst(*this);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003365}
3366
Devang Patel11cf3f42009-10-27 22:16:29 +00003367InsertValueInst *InsertValueInst::clone_impl() const {
3368 return new InsertValueInst(*this);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003369}
3370
Devang Patel11cf3f42009-10-27 22:16:29 +00003371AllocaInst *AllocaInst::clone_impl() const {
3372 return new AllocaInst(getAllocatedType(),
3373 (Value*)getOperand(0),
3374 getAlignment());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003375}
3376
Devang Patel11cf3f42009-10-27 22:16:29 +00003377LoadInst *LoadInst::clone_impl() const {
Eli Friedman59b66882011-08-09 23:02:53 +00003378 return new LoadInst(getOperand(0), Twine(), isVolatile(),
3379 getAlignment(), getOrdering(), getSynchScope());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003380}
3381
Devang Patel11cf3f42009-10-27 22:16:29 +00003382StoreInst *StoreInst::clone_impl() const {
Eli Friedmancad9f2a2011-08-10 17:39:11 +00003383 return new StoreInst(getOperand(0), getOperand(1), isVolatile(),
Eli Friedman59b66882011-08-09 23:02:53 +00003384 getAlignment(), getOrdering(), getSynchScope());
3385
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003386}
3387
Eli Friedmanc9a551e2011-07-28 21:48:00 +00003388AtomicCmpXchgInst *AtomicCmpXchgInst::clone_impl() const {
3389 AtomicCmpXchgInst *Result =
3390 new AtomicCmpXchgInst(getOperand(0), getOperand(1), getOperand(2),
3391 getOrdering(), getSynchScope());
3392 Result->setVolatile(isVolatile());
3393 return Result;
3394}
3395
3396AtomicRMWInst *AtomicRMWInst::clone_impl() const {
3397 AtomicRMWInst *Result =
3398 new AtomicRMWInst(getOperation(),getOperand(0), getOperand(1),
3399 getOrdering(), getSynchScope());
3400 Result->setVolatile(isVolatile());
3401 return Result;
3402}
3403
Eli Friedmanfee02c62011-07-25 23:16:38 +00003404FenceInst *FenceInst::clone_impl() const {
3405 return new FenceInst(getContext(), getOrdering(), getSynchScope());
3406}
3407
Devang Patel11cf3f42009-10-27 22:16:29 +00003408TruncInst *TruncInst::clone_impl() const {
3409 return new TruncInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003410}
3411
Devang Patel11cf3f42009-10-27 22:16:29 +00003412ZExtInst *ZExtInst::clone_impl() const {
3413 return new ZExtInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003414}
3415
Devang Patel11cf3f42009-10-27 22:16:29 +00003416SExtInst *SExtInst::clone_impl() const {
3417 return new SExtInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003418}
3419
Devang Patel11cf3f42009-10-27 22:16:29 +00003420FPTruncInst *FPTruncInst::clone_impl() const {
3421 return new FPTruncInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003422}
3423
Devang Patel11cf3f42009-10-27 22:16:29 +00003424FPExtInst *FPExtInst::clone_impl() const {
3425 return new FPExtInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003426}
3427
Devang Patel11cf3f42009-10-27 22:16:29 +00003428UIToFPInst *UIToFPInst::clone_impl() const {
3429 return new UIToFPInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003430}
3431
Devang Patel11cf3f42009-10-27 22:16:29 +00003432SIToFPInst *SIToFPInst::clone_impl() const {
3433 return new SIToFPInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003434}
3435
Devang Patel11cf3f42009-10-27 22:16:29 +00003436FPToUIInst *FPToUIInst::clone_impl() const {
3437 return new FPToUIInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003438}
3439
Devang Patel11cf3f42009-10-27 22:16:29 +00003440FPToSIInst *FPToSIInst::clone_impl() const {
3441 return new FPToSIInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003442}
3443
Devang Patel11cf3f42009-10-27 22:16:29 +00003444PtrToIntInst *PtrToIntInst::clone_impl() const {
3445 return new PtrToIntInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003446}
3447
Devang Patel11cf3f42009-10-27 22:16:29 +00003448IntToPtrInst *IntToPtrInst::clone_impl() const {
3449 return new IntToPtrInst(getOperand(0), getType());
Gabor Greif697e94c2008-05-15 10:04:30 +00003450}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003451
Devang Patel11cf3f42009-10-27 22:16:29 +00003452BitCastInst *BitCastInst::clone_impl() const {
3453 return new BitCastInst(getOperand(0), getType());
Gabor Greif697e94c2008-05-15 10:04:30 +00003454}
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003455
Devang Patel11cf3f42009-10-27 22:16:29 +00003456CallInst *CallInst::clone_impl() const {
3457 return new(getNumOperands()) CallInst(*this);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003458}
3459
Devang Patel11cf3f42009-10-27 22:16:29 +00003460SelectInst *SelectInst::clone_impl() const {
3461 return SelectInst::Create(getOperand(0), getOperand(1), getOperand(2));
Chris Lattnerbbe0a422006-04-08 01:18:18 +00003462}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003463
Devang Patel11cf3f42009-10-27 22:16:29 +00003464VAArgInst *VAArgInst::clone_impl() const {
3465 return new VAArgInst(getOperand(0), getType());
Chris Lattnerbbe0a422006-04-08 01:18:18 +00003466}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003467
Devang Patel11cf3f42009-10-27 22:16:29 +00003468ExtractElementInst *ExtractElementInst::clone_impl() const {
3469 return ExtractElementInst::Create(getOperand(0), getOperand(1));
Chris Lattnerbbe0a422006-04-08 01:18:18 +00003470}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003471
Devang Patel11cf3f42009-10-27 22:16:29 +00003472InsertElementInst *InsertElementInst::clone_impl() const {
3473 return InsertElementInst::Create(getOperand(0),
3474 getOperand(1),
3475 getOperand(2));
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003476}
3477
Devang Patel11cf3f42009-10-27 22:16:29 +00003478ShuffleVectorInst *ShuffleVectorInst::clone_impl() const {
3479 return new ShuffleVectorInst(getOperand(0),
3480 getOperand(1),
3481 getOperand(2));
Gabor Greif697e94c2008-05-15 10:04:30 +00003482}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003483
Devang Patel11cf3f42009-10-27 22:16:29 +00003484PHINode *PHINode::clone_impl() const {
3485 return new PHINode(*this);
3486}
3487
Bill Wendlingfae14752011-08-12 20:24:12 +00003488LandingPadInst *LandingPadInst::clone_impl() const {
3489 return new LandingPadInst(*this);
3490}
3491
Devang Patel11cf3f42009-10-27 22:16:29 +00003492ReturnInst *ReturnInst::clone_impl() const {
3493 return new(getNumOperands()) ReturnInst(*this);
3494}
3495
3496BranchInst *BranchInst::clone_impl() const {
Jay Foadd81f3c92011-01-07 20:29:02 +00003497 return new(getNumOperands()) BranchInst(*this);
Gabor Greif697e94c2008-05-15 10:04:30 +00003498}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003499
Devang Patel11cf3f42009-10-27 22:16:29 +00003500SwitchInst *SwitchInst::clone_impl() const {
3501 return new SwitchInst(*this);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003502}
3503
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003504IndirectBrInst *IndirectBrInst::clone_impl() const {
3505 return new IndirectBrInst(*this);
Chris Lattner3ed871f2009-10-27 19:13:16 +00003506}
3507
3508
Devang Patel11cf3f42009-10-27 22:16:29 +00003509InvokeInst *InvokeInst::clone_impl() const {
3510 return new(getNumOperands()) InvokeInst(*this);
Gabor Greif697e94c2008-05-15 10:04:30 +00003511}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003512
Bill Wendlingf891bf82011-07-31 06:30:59 +00003513ResumeInst *ResumeInst::clone_impl() const {
3514 return new(1) ResumeInst(*this);
3515}
3516
Devang Patel11cf3f42009-10-27 22:16:29 +00003517UnwindInst *UnwindInst::clone_impl() const {
Nick Lewycky42fb7452009-09-27 07:38:41 +00003518 LLVMContext &Context = getContext();
Devang Patel11cf3f42009-10-27 22:16:29 +00003519 return new UnwindInst(Context);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003520}
3521
Devang Patel11cf3f42009-10-27 22:16:29 +00003522UnreachableInst *UnreachableInst::clone_impl() const {
Nick Lewycky42fb7452009-09-27 07:38:41 +00003523 LLVMContext &Context = getContext();
Devang Patel11cf3f42009-10-27 22:16:29 +00003524 return new UnreachableInst(Context);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003525}