blob: 8966bbe1dd3e9fdc404184d5344102b05e028352 [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
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000169
170//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000171// CallInst Implementation
172//===----------------------------------------------------------------------===//
173
Gordon Henriksen14a55692007-12-10 02:14:30 +0000174CallInst::~CallInst() {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000175}
176
Jay Foad5bd375a2011-07-15 08:37:34 +0000177void CallInst::init(Value *Func, ArrayRef<Value *> Args, const Twine &NameStr) {
178 assert(NumOperands == Args.size() + 1 && "NumOperands not set up?");
Gabor Greif6d673952010-07-16 09:38:02 +0000179 Op<-1>() = Func;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000180
Jay Foad5bd375a2011-07-15 08:37:34 +0000181#ifndef NDEBUG
Chris Lattner229907c2011-07-18 04:54:35 +0000182 FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000183 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
184
Jay Foad5bd375a2011-07-15 08:37:34 +0000185 assert((Args.size() == FTy->getNumParams() ||
186 (FTy->isVarArg() && Args.size() > FTy->getNumParams())) &&
Chris Lattner667a0562006-05-03 00:48:22 +0000187 "Calling a function with bad signature!");
Jay Foad5bd375a2011-07-15 08:37:34 +0000188
189 for (unsigned i = 0; i != Args.size(); ++i)
Chris Lattner667a0562006-05-03 00:48:22 +0000190 assert((i >= FTy->getNumParams() ||
Jay Foad5bd375a2011-07-15 08:37:34 +0000191 FTy->getParamType(i) == Args[i]->getType()) &&
Chris Lattner667a0562006-05-03 00:48:22 +0000192 "Calling a function with a bad signature!");
Jay Foad5bd375a2011-07-15 08:37:34 +0000193#endif
194
195 std::copy(Args.begin(), Args.end(), op_begin());
196 setName(NameStr);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000197}
198
Jay Foad5bd375a2011-07-15 08:37:34 +0000199void CallInst::init(Value *Func, const Twine &NameStr) {
Gabor Greiff6caff662008-05-10 08:32:32 +0000200 assert(NumOperands == 1 && "NumOperands not set up?");
Gabor Greif6d673952010-07-16 09:38:02 +0000201 Op<-1>() = Func;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000202
Jay Foad5bd375a2011-07-15 08:37:34 +0000203#ifndef NDEBUG
Chris Lattner229907c2011-07-18 04:54:35 +0000204 FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000205 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
206
Chris Lattnerf14c76c2007-02-01 04:59:37 +0000207 assert(FTy->getNumParams() == 0 && "Calling a function with bad signature");
Jay Foad5bd375a2011-07-15 08:37:34 +0000208#endif
209
210 setName(NameStr);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000211}
212
Daniel Dunbar4975db62009-07-25 04:41:11 +0000213CallInst::CallInst(Value *Func, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000214 Instruction *InsertBefore)
215 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
216 ->getElementType())->getReturnType(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000217 Instruction::Call,
218 OperandTraits<CallInst>::op_end(this) - 1,
219 1, InsertBefore) {
Jay Foad5bd375a2011-07-15 08:37:34 +0000220 init(Func, Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000221}
222
Daniel Dunbar4975db62009-07-25 04:41:11 +0000223CallInst::CallInst(Value *Func, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000224 BasicBlock *InsertAtEnd)
225 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
226 ->getElementType())->getReturnType(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000227 Instruction::Call,
228 OperandTraits<CallInst>::op_end(this) - 1,
229 1, InsertAtEnd) {
Jay Foad5bd375a2011-07-15 08:37:34 +0000230 init(Func, Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000231}
232
Misha Brukmanb1c93172005-04-21 23:48:37 +0000233CallInst::CallInst(const CallInst &CI)
Gabor Greiff6caff662008-05-10 08:32:32 +0000234 : Instruction(CI.getType(), Instruction::Call,
235 OperandTraits<CallInst>::op_end(this) - CI.getNumOperands(),
Chris Lattner8a923e72008-03-12 17:45:29 +0000236 CI.getNumOperands()) {
Devang Patel4c758ea2008-09-25 21:00:45 +0000237 setAttributes(CI.getAttributes());
Chris Lattnerb9c86512009-12-29 02:14:09 +0000238 setTailCall(CI.isTailCall());
239 setCallingConv(CI.getCallingConv());
240
Jay Foad5bd375a2011-07-15 08:37:34 +0000241 std::copy(CI.op_begin(), CI.op_end(), op_begin());
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000242 SubclassOptionalData = CI.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000243}
244
Devang Patel4c758ea2008-09-25 21:00:45 +0000245void CallInst::addAttribute(unsigned i, Attributes attr) {
246 AttrListPtr PAL = getAttributes();
Eric Christopher901b1a72008-05-16 20:39:43 +0000247 PAL = PAL.addAttr(i, attr);
Devang Patel4c758ea2008-09-25 21:00:45 +0000248 setAttributes(PAL);
Eric Christopher901b1a72008-05-16 20:39:43 +0000249}
250
Devang Patel4c758ea2008-09-25 21:00:45 +0000251void CallInst::removeAttribute(unsigned i, Attributes attr) {
252 AttrListPtr PAL = getAttributes();
Duncan Sands78c88722008-07-08 08:38:44 +0000253 PAL = PAL.removeAttr(i, attr);
Devang Patel4c758ea2008-09-25 21:00:45 +0000254 setAttributes(PAL);
Duncan Sands78c88722008-07-08 08:38:44 +0000255}
256
Devang Patelba3fa6c2008-09-23 23:03:40 +0000257bool CallInst::paramHasAttr(unsigned i, Attributes attr) const {
Devang Patel4c758ea2008-09-25 21:00:45 +0000258 if (AttributeList.paramHasAttr(i, attr))
Duncan Sands5208d1a2007-11-28 17:07:01 +0000259 return true;
Duncan Sands8dfcd592007-11-29 08:30:15 +0000260 if (const Function *F = getCalledFunction())
Dale Johannesen89268bc2008-02-19 21:38:47 +0000261 return F->paramHasAttr(i, attr);
Duncan Sands8dfcd592007-11-29 08:30:15 +0000262 return false;
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000263}
264
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000265/// IsConstantOne - Return true only if val is constant int 1
266static bool IsConstantOne(Value *val) {
267 assert(val && "IsConstantOne does not work with NULL val");
268 return isa<ConstantInt>(val) && cast<ConstantInt>(val)->isOne();
269}
270
Nick Lewyckybb1410e2009-10-17 23:52:26 +0000271static Instruction *createMalloc(Instruction *InsertBefore,
Chris Lattner229907c2011-07-18 04:54:35 +0000272 BasicBlock *InsertAtEnd, Type *IntPtrTy,
273 Type *AllocTy, Value *AllocSize,
Victor Hernandezf3db9152009-11-07 00:16:28 +0000274 Value *ArraySize, Function *MallocF,
275 const Twine &Name) {
Benjamin Kramer4bf4e862009-09-10 11:31:39 +0000276 assert(((!InsertBefore && InsertAtEnd) || (InsertBefore && !InsertAtEnd)) &&
Victor Hernandez788eaab2009-09-18 19:20:02 +0000277 "createMalloc needs either InsertBefore or InsertAtEnd");
278
279 // malloc(type) becomes:
280 // bitcast (i8* malloc(typeSize)) to type*
281 // malloc(type, arraySize) becomes:
282 // bitcast (i8 *malloc(typeSize*arraySize)) to type*
Victor Hernandezf3db9152009-11-07 00:16:28 +0000283 if (!ArraySize)
284 ArraySize = ConstantInt::get(IntPtrTy, 1);
285 else if (ArraySize->getType() != IntPtrTy) {
286 if (InsertBefore)
Victor Hernandeze04ed0c2009-11-07 00:36:50 +0000287 ArraySize = CastInst::CreateIntegerCast(ArraySize, IntPtrTy, false,
288 "", InsertBefore);
Victor Hernandezf3db9152009-11-07 00:16:28 +0000289 else
Victor Hernandeze04ed0c2009-11-07 00:36:50 +0000290 ArraySize = CastInst::CreateIntegerCast(ArraySize, IntPtrTy, false,
291 "", InsertAtEnd);
Victor Hernandezf3db9152009-11-07 00:16:28 +0000292 }
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000293
Benjamin Kramer4bf4e862009-09-10 11:31:39 +0000294 if (!IsConstantOne(ArraySize)) {
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000295 if (IsConstantOne(AllocSize)) {
296 AllocSize = ArraySize; // Operand * 1 = Operand
297 } else if (Constant *CO = dyn_cast<Constant>(ArraySize)) {
298 Constant *Scale = ConstantExpr::getIntegerCast(CO, IntPtrTy,
299 false /*ZExt*/);
300 // Malloc arg is constant product of type size and array size
301 AllocSize = ConstantExpr::getMul(Scale, cast<Constant>(AllocSize));
302 } else {
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000303 // Multiply type size by the array size...
304 if (InsertBefore)
Victor Hernandez788eaab2009-09-18 19:20:02 +0000305 AllocSize = BinaryOperator::CreateMul(ArraySize, AllocSize,
306 "mallocsize", InsertBefore);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000307 else
Victor Hernandez788eaab2009-09-18 19:20:02 +0000308 AllocSize = BinaryOperator::CreateMul(ArraySize, AllocSize,
309 "mallocsize", InsertAtEnd);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000310 }
Benjamin Kramer4bf4e862009-09-10 11:31:39 +0000311 }
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000312
Victor Hernandez788eaab2009-09-18 19:20:02 +0000313 assert(AllocSize->getType() == IntPtrTy && "malloc arg is wrong size");
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000314 // Create the call to Malloc.
315 BasicBlock* BB = InsertBefore ? InsertBefore->getParent() : InsertAtEnd;
316 Module* M = BB->getParent()->getParent();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000317 Type *BPTy = Type::getInt8PtrTy(BB->getContext());
Victor Hernandezbb336a12009-11-10 19:53:28 +0000318 Value *MallocFunc = MallocF;
319 if (!MallocFunc)
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000320 // prototype malloc as "void *malloc(size_t)"
Victor Hernandezbb336a12009-11-10 19:53:28 +0000321 MallocFunc = M->getOrInsertFunction("malloc", BPTy, IntPtrTy, NULL);
Chris Lattner229907c2011-07-18 04:54:35 +0000322 PointerType *AllocPtrType = PointerType::getUnqual(AllocTy);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000323 CallInst *MCall = NULL;
Nick Lewyckybb1410e2009-10-17 23:52:26 +0000324 Instruction *Result = NULL;
Victor Hernandez788eaab2009-09-18 19:20:02 +0000325 if (InsertBefore) {
Victor Hernandezbb336a12009-11-10 19:53:28 +0000326 MCall = CallInst::Create(MallocFunc, AllocSize, "malloccall", InsertBefore);
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000327 Result = MCall;
328 if (Result->getType() != AllocPtrType)
329 // Create a cast instruction to convert to the right type...
Victor Hernandezf3db9152009-11-07 00:16:28 +0000330 Result = new BitCastInst(MCall, AllocPtrType, Name, InsertBefore);
Victor Hernandez788eaab2009-09-18 19:20:02 +0000331 } else {
Victor Hernandezbb336a12009-11-10 19:53:28 +0000332 MCall = CallInst::Create(MallocFunc, AllocSize, "malloccall");
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000333 Result = MCall;
334 if (Result->getType() != AllocPtrType) {
335 InsertAtEnd->getInstList().push_back(MCall);
336 // Create a cast instruction to convert to the right type...
Victor Hernandezf3db9152009-11-07 00:16:28 +0000337 Result = new BitCastInst(MCall, AllocPtrType, Name);
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000338 }
Victor Hernandez788eaab2009-09-18 19:20:02 +0000339 }
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000340 MCall->setTailCall();
Victor Hernandezbb336a12009-11-10 19:53:28 +0000341 if (Function *F = dyn_cast<Function>(MallocFunc)) {
342 MCall->setCallingConv(F->getCallingConv());
343 if (!F->doesNotAlias(0)) F->setDoesNotAlias(0);
344 }
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000345 assert(!MCall->getType()->isVoidTy() && "Malloc has void return type");
Victor Hernandez788eaab2009-09-18 19:20:02 +0000346
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000347 return Result;
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000348}
349
350/// CreateMalloc - Generate the IR for a call to malloc:
351/// 1. Compute the malloc call's argument as the specified type's size,
352/// possibly multiplied by the array size if the array size is not
353/// constant 1.
354/// 2. Call malloc with that argument.
355/// 3. Bitcast the result of the malloc call to the specified type.
Nick Lewyckybb1410e2009-10-17 23:52:26 +0000356Instruction *CallInst::CreateMalloc(Instruction *InsertBefore,
Chris Lattner229907c2011-07-18 04:54:35 +0000357 Type *IntPtrTy, Type *AllocTy,
Victor Hernandezf3db9152009-11-07 00:16:28 +0000358 Value *AllocSize, Value *ArraySize,
Duncan Sands41b4a6b2010-07-12 08:16:59 +0000359 Function * MallocF,
Victor Hernandezf3db9152009-11-07 00:16:28 +0000360 const Twine &Name) {
361 return createMalloc(InsertBefore, NULL, IntPtrTy, AllocTy, AllocSize,
Chris Lattner601e390a2010-07-12 00:57:28 +0000362 ArraySize, MallocF, Name);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000363}
364
365/// CreateMalloc - Generate the IR for a call to malloc:
366/// 1. Compute the malloc call's argument as the specified type's size,
367/// possibly multiplied by the array size if the array size is not
368/// constant 1.
369/// 2. Call malloc with that argument.
370/// 3. Bitcast the result of the malloc call to the specified type.
371/// Note: This function does not add the bitcast to the basic block, that is the
372/// responsibility of the caller.
Nick Lewyckybb1410e2009-10-17 23:52:26 +0000373Instruction *CallInst::CreateMalloc(BasicBlock *InsertAtEnd,
Chris Lattner229907c2011-07-18 04:54:35 +0000374 Type *IntPtrTy, Type *AllocTy,
Victor Hernandezf3db9152009-11-07 00:16:28 +0000375 Value *AllocSize, Value *ArraySize,
376 Function *MallocF, const Twine &Name) {
377 return createMalloc(NULL, InsertAtEnd, IntPtrTy, AllocTy, AllocSize,
Victor Hernandezc7d6a832009-10-17 00:00:19 +0000378 ArraySize, MallocF, Name);
Evan Cheng1d9d4bd2009-09-10 04:36:43 +0000379}
Duncan Sands5208d1a2007-11-28 17:07:01 +0000380
Victor Hernandeze2971492009-10-24 04:23:03 +0000381static Instruction* createFree(Value* Source, Instruction *InsertBefore,
382 BasicBlock *InsertAtEnd) {
383 assert(((!InsertBefore && InsertAtEnd) || (InsertBefore && !InsertAtEnd)) &&
384 "createFree needs either InsertBefore or InsertAtEnd");
Duncan Sands19d0b472010-02-16 11:11:14 +0000385 assert(Source->getType()->isPointerTy() &&
Victor Hernandeze2971492009-10-24 04:23:03 +0000386 "Can not free something of nonpointer type!");
387
388 BasicBlock* BB = InsertBefore ? InsertBefore->getParent() : InsertAtEnd;
389 Module* M = BB->getParent()->getParent();
390
Chris Lattner229907c2011-07-18 04:54:35 +0000391 Type *VoidTy = Type::getVoidTy(M->getContext());
392 Type *IntPtrTy = Type::getInt8PtrTy(M->getContext());
Victor Hernandeze2971492009-10-24 04:23:03 +0000393 // prototype free as "void free(void*)"
Chris Lattner2156c222009-11-09 07:12:01 +0000394 Value *FreeFunc = M->getOrInsertFunction("free", VoidTy, IntPtrTy, NULL);
Victor Hernandeze2971492009-10-24 04:23:03 +0000395 CallInst* Result = NULL;
396 Value *PtrCast = Source;
397 if (InsertBefore) {
398 if (Source->getType() != IntPtrTy)
399 PtrCast = new BitCastInst(Source, IntPtrTy, "", InsertBefore);
400 Result = CallInst::Create(FreeFunc, PtrCast, "", InsertBefore);
401 } else {
402 if (Source->getType() != IntPtrTy)
403 PtrCast = new BitCastInst(Source, IntPtrTy, "", InsertAtEnd);
404 Result = CallInst::Create(FreeFunc, PtrCast, "");
405 }
406 Result->setTailCall();
Chris Lattner2156c222009-11-09 07:12:01 +0000407 if (Function *F = dyn_cast<Function>(FreeFunc))
408 Result->setCallingConv(F->getCallingConv());
Victor Hernandeze2971492009-10-24 04:23:03 +0000409
410 return Result;
411}
412
413/// CreateFree - Generate the IR for a call to the builtin free function.
Chris Lattner601e390a2010-07-12 00:57:28 +0000414Instruction * CallInst::CreateFree(Value* Source, Instruction *InsertBefore) {
415 return createFree(Source, InsertBefore, NULL);
Victor Hernandeze2971492009-10-24 04:23:03 +0000416}
417
418/// CreateFree - Generate the IR for a call to the builtin free function.
419/// Note: This function does not add the call to the basic block, that is the
420/// responsibility of the caller.
421Instruction* CallInst::CreateFree(Value* Source, BasicBlock *InsertAtEnd) {
422 Instruction* FreeCall = createFree(Source, NULL, InsertAtEnd);
423 assert(FreeCall && "CreateFree did not create a CallInst");
424 return FreeCall;
425}
426
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000427//===----------------------------------------------------------------------===//
428// InvokeInst Implementation
429//===----------------------------------------------------------------------===//
430
431void InvokeInst::init(Value *Fn, BasicBlock *IfNormal, BasicBlock *IfException,
Jay Foad5bd375a2011-07-15 08:37:34 +0000432 ArrayRef<Value *> Args, const Twine &NameStr) {
433 assert(NumOperands == 3 + Args.size() && "NumOperands not set up?");
Gabor Greifa2fbc0a2010-03-24 13:21:49 +0000434 Op<-3>() = Fn;
435 Op<-2>() = IfNormal;
436 Op<-1>() = IfException;
Jay Foad5bd375a2011-07-15 08:37:34 +0000437
438#ifndef NDEBUG
Chris Lattner229907c2011-07-18 04:54:35 +0000439 FunctionType *FTy =
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000440 cast<FunctionType>(cast<PointerType>(Fn->getType())->getElementType());
Misha Brukmanb1c93172005-04-21 23:48:37 +0000441
Jay Foad5bd375a2011-07-15 08:37:34 +0000442 assert(((Args.size() == FTy->getNumParams()) ||
443 (FTy->isVarArg() && Args.size() > FTy->getNumParams())) &&
Gabor Greif668d7002010-03-23 13:45:54 +0000444 "Invoking a function with bad signature");
Misha Brukmanb1c93172005-04-21 23:48:37 +0000445
Jay Foad5bd375a2011-07-15 08:37:34 +0000446 for (unsigned i = 0, e = Args.size(); i != e; i++)
Chris Lattner667a0562006-05-03 00:48:22 +0000447 assert((i >= FTy->getNumParams() ||
Chris Lattnerb5fcc282007-02-13 01:04:01 +0000448 FTy->getParamType(i) == Args[i]->getType()) &&
Chris Lattner667a0562006-05-03 00:48:22 +0000449 "Invoking a function with a bad signature!");
Jay Foad5bd375a2011-07-15 08:37:34 +0000450#endif
451
452 std::copy(Args.begin(), Args.end(), op_begin());
453 setName(NameStr);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000454}
455
Misha Brukmanb1c93172005-04-21 23:48:37 +0000456InvokeInst::InvokeInst(const InvokeInst &II)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000457 : TerminatorInst(II.getType(), Instruction::Invoke,
Gabor Greif697e94c2008-05-15 10:04:30 +0000458 OperandTraits<InvokeInst>::op_end(this)
459 - II.getNumOperands(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000460 II.getNumOperands()) {
Devang Patel4c758ea2008-09-25 21:00:45 +0000461 setAttributes(II.getAttributes());
Chris Lattnerb9c86512009-12-29 02:14:09 +0000462 setCallingConv(II.getCallingConv());
Jay Foad5bd375a2011-07-15 08:37:34 +0000463 std::copy(II.op_begin(), II.op_end(), op_begin());
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000464 SubclassOptionalData = II.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000465}
466
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000467BasicBlock *InvokeInst::getSuccessorV(unsigned idx) const {
468 return getSuccessor(idx);
469}
470unsigned InvokeInst::getNumSuccessorsV() const {
471 return getNumSuccessors();
472}
473void InvokeInst::setSuccessorV(unsigned idx, BasicBlock *B) {
474 return setSuccessor(idx, B);
475}
476
Devang Patelba3fa6c2008-09-23 23:03:40 +0000477bool InvokeInst::paramHasAttr(unsigned i, Attributes attr) const {
Devang Patel4c758ea2008-09-25 21:00:45 +0000478 if (AttributeList.paramHasAttr(i, attr))
Duncan Sands5208d1a2007-11-28 17:07:01 +0000479 return true;
Duncan Sands8dfcd592007-11-29 08:30:15 +0000480 if (const Function *F = getCalledFunction())
Dale Johannesen89268bc2008-02-19 21:38:47 +0000481 return F->paramHasAttr(i, attr);
Duncan Sands8dfcd592007-11-29 08:30:15 +0000482 return false;
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000483}
484
Devang Patel4c758ea2008-09-25 21:00:45 +0000485void InvokeInst::addAttribute(unsigned i, Attributes attr) {
486 AttrListPtr PAL = getAttributes();
Eric Christopher901b1a72008-05-16 20:39:43 +0000487 PAL = PAL.addAttr(i, attr);
Devang Patel4c758ea2008-09-25 21:00:45 +0000488 setAttributes(PAL);
Eric Christopher901b1a72008-05-16 20:39:43 +0000489}
490
Devang Patel4c758ea2008-09-25 21:00:45 +0000491void InvokeInst::removeAttribute(unsigned i, Attributes attr) {
492 AttrListPtr PAL = getAttributes();
Duncan Sands78c88722008-07-08 08:38:44 +0000493 PAL = PAL.removeAttr(i, attr);
Devang Patel4c758ea2008-09-25 21:00:45 +0000494 setAttributes(PAL);
Duncan Sandsaa31b922007-12-19 21:13:37 +0000495}
496
Duncan Sands5208d1a2007-11-28 17:07:01 +0000497
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000498//===----------------------------------------------------------------------===//
499// ReturnInst Implementation
500//===----------------------------------------------------------------------===//
501
Chris Lattner2195fc42007-02-24 00:55:48 +0000502ReturnInst::ReturnInst(const ReturnInst &RI)
Owen Anderson55f1c092009-08-13 21:58:54 +0000503 : TerminatorInst(Type::getVoidTy(RI.getContext()), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000504 OperandTraits<ReturnInst>::op_end(this) -
505 RI.getNumOperands(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000506 RI.getNumOperands()) {
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000507 if (RI.getNumOperands())
Gabor Greif2d3024d2008-05-26 21:33:52 +0000508 Op<0>() = RI.Op<0>();
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000509 SubclassOptionalData = RI.SubclassOptionalData;
Chris Lattner2195fc42007-02-24 00:55:48 +0000510}
511
Owen Anderson55f1c092009-08-13 21:58:54 +0000512ReturnInst::ReturnInst(LLVMContext &C, Value *retVal, Instruction *InsertBefore)
513 : TerminatorInst(Type::getVoidTy(C), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000514 OperandTraits<ReturnInst>::op_end(this) - !!retVal, !!retVal,
515 InsertBefore) {
Devang Patelc38eb522008-02-26 18:49:29 +0000516 if (retVal)
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000517 Op<0>() = retVal;
Chris Lattner2195fc42007-02-24 00:55:48 +0000518}
Owen Anderson55f1c092009-08-13 21:58:54 +0000519ReturnInst::ReturnInst(LLVMContext &C, Value *retVal, BasicBlock *InsertAtEnd)
520 : TerminatorInst(Type::getVoidTy(C), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000521 OperandTraits<ReturnInst>::op_end(this) - !!retVal, !!retVal,
522 InsertAtEnd) {
Devang Patelc38eb522008-02-26 18:49:29 +0000523 if (retVal)
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000524 Op<0>() = retVal;
Chris Lattner2195fc42007-02-24 00:55:48 +0000525}
Owen Anderson55f1c092009-08-13 21:58:54 +0000526ReturnInst::ReturnInst(LLVMContext &Context, BasicBlock *InsertAtEnd)
527 : TerminatorInst(Type::getVoidTy(Context), Instruction::Ret,
Dan Gohmanfa1211f2008-07-23 00:34:11 +0000528 OperandTraits<ReturnInst>::op_end(this), 0, InsertAtEnd) {
Devang Patel59643e52008-02-23 00:35:18 +0000529}
530
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000531unsigned ReturnInst::getNumSuccessorsV() const {
532 return getNumSuccessors();
533}
534
Devang Patelae682fb2008-02-26 17:56:20 +0000535/// Out-of-line ReturnInst method, put here so the C++ compiler can choose to
536/// emit the vtable for the class in this translation unit.
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000537void ReturnInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000538 llvm_unreachable("ReturnInst has no successors!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000539}
540
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000541BasicBlock *ReturnInst::getSuccessorV(unsigned idx) const {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000542 llvm_unreachable("ReturnInst has no successors!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000543 return 0;
544}
545
Devang Patel59643e52008-02-23 00:35:18 +0000546ReturnInst::~ReturnInst() {
Devang Patel59643e52008-02-23 00:35:18 +0000547}
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000548
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000549//===----------------------------------------------------------------------===//
550// UnwindInst Implementation
551//===----------------------------------------------------------------------===//
552
Owen Anderson55f1c092009-08-13 21:58:54 +0000553UnwindInst::UnwindInst(LLVMContext &Context, Instruction *InsertBefore)
554 : TerminatorInst(Type::getVoidTy(Context), Instruction::Unwind,
555 0, 0, InsertBefore) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000556}
Owen Anderson55f1c092009-08-13 21:58:54 +0000557UnwindInst::UnwindInst(LLVMContext &Context, BasicBlock *InsertAtEnd)
558 : TerminatorInst(Type::getVoidTy(Context), Instruction::Unwind,
559 0, 0, InsertAtEnd) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000560}
561
562
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000563unsigned UnwindInst::getNumSuccessorsV() const {
564 return getNumSuccessors();
565}
566
567void UnwindInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000568 llvm_unreachable("UnwindInst has no successors!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000569}
570
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000571BasicBlock *UnwindInst::getSuccessorV(unsigned idx) const {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000572 llvm_unreachable("UnwindInst has no successors!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000573 return 0;
574}
575
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000576//===----------------------------------------------------------------------===//
Bill Wendlingf891bf82011-07-31 06:30:59 +0000577// ResumeInst Implementation
578//===----------------------------------------------------------------------===//
579
580ResumeInst::ResumeInst(const ResumeInst &RI)
581 : TerminatorInst(Type::getVoidTy(RI.getContext()), Instruction::Resume,
582 OperandTraits<ResumeInst>::op_begin(this), 1) {
583 Op<0>() = RI.Op<0>();
584}
585
586ResumeInst::ResumeInst(Value *Exn, Instruction *InsertBefore)
587 : TerminatorInst(Type::getVoidTy(Exn->getContext()), Instruction::Resume,
588 OperandTraits<ResumeInst>::op_begin(this), 1, InsertBefore) {
589 Op<0>() = Exn;
590}
591
592ResumeInst::ResumeInst(Value *Exn, BasicBlock *InsertAtEnd)
593 : TerminatorInst(Type::getVoidTy(Exn->getContext()), Instruction::Resume,
594 OperandTraits<ResumeInst>::op_begin(this), 1, InsertAtEnd) {
595 Op<0>() = Exn;
596}
597
598unsigned ResumeInst::getNumSuccessorsV() const {
599 return getNumSuccessors();
600}
601
602void ResumeInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
603 llvm_unreachable("ResumeInst has no successors!");
604}
605
606BasicBlock *ResumeInst::getSuccessorV(unsigned idx) const {
607 llvm_unreachable("ResumeInst has no successors!");
608 return 0;
609}
610
611//===----------------------------------------------------------------------===//
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000612// UnreachableInst Implementation
613//===----------------------------------------------------------------------===//
614
Owen Anderson55f1c092009-08-13 21:58:54 +0000615UnreachableInst::UnreachableInst(LLVMContext &Context,
616 Instruction *InsertBefore)
617 : TerminatorInst(Type::getVoidTy(Context), Instruction::Unreachable,
618 0, 0, InsertBefore) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000619}
Owen Anderson55f1c092009-08-13 21:58:54 +0000620UnreachableInst::UnreachableInst(LLVMContext &Context, BasicBlock *InsertAtEnd)
621 : TerminatorInst(Type::getVoidTy(Context), Instruction::Unreachable,
622 0, 0, InsertAtEnd) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000623}
624
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000625unsigned UnreachableInst::getNumSuccessorsV() const {
626 return getNumSuccessors();
627}
628
629void UnreachableInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
Bill Wendlingad088e62011-07-30 05:42:50 +0000630 llvm_unreachable("UnwindInst has no successors!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000631}
632
633BasicBlock *UnreachableInst::getSuccessorV(unsigned idx) const {
Bill Wendlingad088e62011-07-30 05:42:50 +0000634 llvm_unreachable("UnwindInst has no successors!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000635 return 0;
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000636}
637
638//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000639// BranchInst Implementation
640//===----------------------------------------------------------------------===//
641
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000642void BranchInst::AssertOK() {
643 if (isConditional())
Duncan Sands9dff9be2010-02-15 16:12:20 +0000644 assert(getCondition()->getType()->isIntegerTy(1) &&
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000645 "May only branch on boolean predicates!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000646}
647
Chris Lattner2195fc42007-02-24 00:55:48 +0000648BranchInst::BranchInst(BasicBlock *IfTrue, Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +0000649 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000650 OperandTraits<BranchInst>::op_end(this) - 1,
651 1, InsertBefore) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000652 assert(IfTrue != 0 && "Branch destination may not be null!");
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000653 Op<-1>() = IfTrue;
Chris Lattner2195fc42007-02-24 00:55:48 +0000654}
655BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
656 Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +0000657 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000658 OperandTraits<BranchInst>::op_end(this) - 3,
659 3, InsertBefore) {
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000660 Op<-1>() = IfTrue;
661 Op<-2>() = IfFalse;
662 Op<-3>() = Cond;
Chris Lattner2195fc42007-02-24 00:55:48 +0000663#ifndef NDEBUG
664 AssertOK();
665#endif
666}
667
668BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +0000669 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000670 OperandTraits<BranchInst>::op_end(this) - 1,
671 1, InsertAtEnd) {
Chris Lattner2195fc42007-02-24 00:55:48 +0000672 assert(IfTrue != 0 && "Branch destination may not be null!");
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000673 Op<-1>() = IfTrue;
Chris Lattner2195fc42007-02-24 00:55:48 +0000674}
675
676BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
677 BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +0000678 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000679 OperandTraits<BranchInst>::op_end(this) - 3,
680 3, InsertAtEnd) {
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000681 Op<-1>() = IfTrue;
682 Op<-2>() = IfFalse;
683 Op<-3>() = Cond;
Chris Lattner2195fc42007-02-24 00:55:48 +0000684#ifndef NDEBUG
685 AssertOK();
686#endif
687}
688
689
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000690BranchInst::BranchInst(const BranchInst &BI) :
Owen Anderson55f1c092009-08-13 21:58:54 +0000691 TerminatorInst(Type::getVoidTy(BI.getContext()), Instruction::Br,
Gabor Greiff6caff662008-05-10 08:32:32 +0000692 OperandTraits<BranchInst>::op_end(this) - BI.getNumOperands(),
693 BI.getNumOperands()) {
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000694 Op<-1>() = BI.Op<-1>();
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000695 if (BI.getNumOperands() != 1) {
696 assert(BI.getNumOperands() == 3 && "BR can have 1 or 3 operands!");
Gabor Greifc91aa9b2009-03-12 18:34:49 +0000697 Op<-3>() = BI.Op<-3>();
698 Op<-2>() = BI.Op<-2>();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000699 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000700 SubclassOptionalData = BI.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000701}
702
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000703BasicBlock *BranchInst::getSuccessorV(unsigned idx) const {
704 return getSuccessor(idx);
705}
706unsigned BranchInst::getNumSuccessorsV() const {
707 return getNumSuccessors();
708}
709void BranchInst::setSuccessorV(unsigned idx, BasicBlock *B) {
710 setSuccessor(idx, B);
711}
712
713
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000714//===----------------------------------------------------------------------===//
Victor Hernandez8acf2952009-10-23 21:09:37 +0000715// AllocaInst Implementation
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000716//===----------------------------------------------------------------------===//
717
Owen Andersonb6b25302009-07-14 23:09:55 +0000718static Value *getAISize(LLVMContext &Context, Value *Amt) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000719 if (!Amt)
Owen Anderson55f1c092009-08-13 21:58:54 +0000720 Amt = ConstantInt::get(Type::getInt32Ty(Context), 1);
Chris Lattnerbb7ff662006-05-10 04:32:43 +0000721 else {
722 assert(!isa<BasicBlock>(Amt) &&
Chris Lattner9b6ec772007-10-18 16:10:48 +0000723 "Passed basic block into allocation size parameter! Use other ctor");
Dan Gohman2140a742010-05-28 01:14:11 +0000724 assert(Amt->getType()->isIntegerTy() &&
725 "Allocation array size is not an integer!");
Chris Lattnerbb7ff662006-05-10 04:32:43 +0000726 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000727 return Amt;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000728}
729
Chris Lattner229907c2011-07-18 04:54:35 +0000730AllocaInst::AllocaInst(Type *Ty, Value *ArraySize,
Victor Hernandez8acf2952009-10-23 21:09:37 +0000731 const Twine &Name, Instruction *InsertBefore)
732 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
733 getAISize(Ty->getContext(), ArraySize), InsertBefore) {
734 setAlignment(0);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000735 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Victor Hernandez8acf2952009-10-23 21:09:37 +0000736 setName(Name);
737}
738
Chris Lattner229907c2011-07-18 04:54:35 +0000739AllocaInst::AllocaInst(Type *Ty, Value *ArraySize,
Victor Hernandez8acf2952009-10-23 21:09:37 +0000740 const Twine &Name, BasicBlock *InsertAtEnd)
741 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
742 getAISize(Ty->getContext(), ArraySize), InsertAtEnd) {
743 setAlignment(0);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000744 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Victor Hernandez8acf2952009-10-23 21:09:37 +0000745 setName(Name);
746}
747
Chris Lattner229907c2011-07-18 04:54:35 +0000748AllocaInst::AllocaInst(Type *Ty, const Twine &Name,
Victor Hernandez8acf2952009-10-23 21:09:37 +0000749 Instruction *InsertBefore)
750 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
751 getAISize(Ty->getContext(), 0), InsertBefore) {
752 setAlignment(0);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000753 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Victor Hernandez8acf2952009-10-23 21:09:37 +0000754 setName(Name);
755}
756
Chris Lattner229907c2011-07-18 04:54:35 +0000757AllocaInst::AllocaInst(Type *Ty, const Twine &Name,
Victor Hernandez8acf2952009-10-23 21:09:37 +0000758 BasicBlock *InsertAtEnd)
759 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
760 getAISize(Ty->getContext(), 0), InsertAtEnd) {
761 setAlignment(0);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000762 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Victor Hernandez8acf2952009-10-23 21:09:37 +0000763 setName(Name);
764}
765
Chris Lattner229907c2011-07-18 04:54:35 +0000766AllocaInst::AllocaInst(Type *Ty, Value *ArraySize, unsigned Align,
Victor Hernandez8acf2952009-10-23 21:09:37 +0000767 const Twine &Name, Instruction *InsertBefore)
768 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
Owen Anderson4fdeba92009-07-15 23:53:25 +0000769 getAISize(Ty->getContext(), ArraySize), InsertBefore) {
Dan Gohmanaa583d72008-03-24 16:55:58 +0000770 setAlignment(Align);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000771 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Chris Lattner0f048162007-02-13 07:54:42 +0000772 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000773}
774
Chris Lattner229907c2011-07-18 04:54:35 +0000775AllocaInst::AllocaInst(Type *Ty, Value *ArraySize, unsigned Align,
Victor Hernandez8acf2952009-10-23 21:09:37 +0000776 const Twine &Name, BasicBlock *InsertAtEnd)
777 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
Owen Anderson4fdeba92009-07-15 23:53:25 +0000778 getAISize(Ty->getContext(), ArraySize), InsertAtEnd) {
Dan Gohmanaa583d72008-03-24 16:55:58 +0000779 setAlignment(Align);
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000780 assert(!Ty->isVoidTy() && "Cannot allocate void!");
Chris Lattner0f048162007-02-13 07:54:42 +0000781 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000782}
783
Gordon Henriksen14a55692007-12-10 02:14:30 +0000784// Out of line virtual method, so the vtable, etc has a home.
Victor Hernandez8acf2952009-10-23 21:09:37 +0000785AllocaInst::~AllocaInst() {
Gordon Henriksen14a55692007-12-10 02:14:30 +0000786}
787
Victor Hernandez8acf2952009-10-23 21:09:37 +0000788void AllocaInst::setAlignment(unsigned Align) {
Dan Gohmanaa583d72008-03-24 16:55:58 +0000789 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
Dan Gohmana7e5a242010-07-28 20:12:04 +0000790 assert(Align <= MaximumAlignment &&
791 "Alignment is greater than MaximumAlignment!");
Chris Lattnerd8eb2cf2009-12-29 02:46:09 +0000792 setInstructionSubclassData(Log2_32(Align) + 1);
Dan Gohmanaa583d72008-03-24 16:55:58 +0000793 assert(getAlignment() == Align && "Alignment representation error!");
794}
795
Victor Hernandez8acf2952009-10-23 21:09:37 +0000796bool AllocaInst::isArrayAllocation() const {
Reid Spencera9e6e312007-03-01 20:27:41 +0000797 if (ConstantInt *CI = dyn_cast<ConstantInt>(getOperand(0)))
Dan Gohman9a1b8592010-09-27 15:15:44 +0000798 return !CI->isOne();
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000799 return true;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000800}
801
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000802Type *AllocaInst::getAllocatedType() const {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000803 return getType()->getElementType();
804}
805
Chris Lattner8b291e62008-11-26 02:54:17 +0000806/// isStaticAlloca - Return true if this alloca is in the entry block of the
807/// function and is a constant size. If so, the code generator will fold it
808/// into the prolog/epilog code, so it is basically free.
809bool AllocaInst::isStaticAlloca() const {
810 // Must be constant size.
811 if (!isa<ConstantInt>(getArraySize())) return false;
812
813 // Must be in the entry block.
814 const BasicBlock *Parent = getParent();
815 return Parent == &Parent->getParent()->front();
816}
817
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000818//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000819// LoadInst Implementation
820//===----------------------------------------------------------------------===//
821
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000822void LoadInst::AssertOK() {
Duncan Sands19d0b472010-02-16 11:11:14 +0000823 assert(getOperand(0)->getType()->isPointerTy() &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000824 "Ptr must have pointer type.");
Eli Friedman59b66882011-08-09 23:02:53 +0000825 assert(!(isAtomic() && getAlignment() == 0) &&
826 "Alignment required for atomic load");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000827}
828
Daniel Dunbar4975db62009-07-25 04:41:11 +0000829LoadInst::LoadInst(Value *Ptr, const Twine &Name, Instruction *InsertBef)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000830 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000831 Load, Ptr, InsertBef) {
Chris Lattnerdf57a022005-02-05 01:38:38 +0000832 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000833 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +0000834 setAtomic(NotAtomic);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000835 AssertOK();
Chris Lattner0f048162007-02-13 07:54:42 +0000836 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000837}
838
Daniel Dunbar4975db62009-07-25 04:41:11 +0000839LoadInst::LoadInst(Value *Ptr, const Twine &Name, BasicBlock *InsertAE)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000840 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000841 Load, Ptr, InsertAE) {
Chris Lattnerdf57a022005-02-05 01:38:38 +0000842 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000843 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +0000844 setAtomic(NotAtomic);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000845 AssertOK();
Chris Lattner0f048162007-02-13 07:54:42 +0000846 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000847}
848
Daniel Dunbar4975db62009-07-25 04:41:11 +0000849LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000850 Instruction *InsertBef)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000851 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000852 Load, Ptr, InsertBef) {
Chris Lattnerdf57a022005-02-05 01:38:38 +0000853 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +0000854 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +0000855 setAtomic(NotAtomic);
856 AssertOK();
857 setName(Name);
858}
859
860LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
861 BasicBlock *InsertAE)
862 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
863 Load, Ptr, InsertAE) {
864 setVolatile(isVolatile);
865 setAlignment(0);
866 setAtomic(NotAtomic);
Christopher Lamb84485702007-04-22 19:24:39 +0000867 AssertOK();
868 setName(Name);
869}
870
Daniel Dunbar4975db62009-07-25 04:41:11 +0000871LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Christopher Lamb84485702007-04-22 19:24:39 +0000872 unsigned Align, Instruction *InsertBef)
873 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
874 Load, Ptr, InsertBef) {
875 setVolatile(isVolatile);
876 setAlignment(Align);
Eli Friedman59b66882011-08-09 23:02:53 +0000877 setAtomic(NotAtomic);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000878 AssertOK();
Chris Lattner0f048162007-02-13 07:54:42 +0000879 setName(Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000880}
881
Daniel Dunbar4975db62009-07-25 04:41:11 +0000882LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
Dan Gohman68659282007-07-18 20:51:11 +0000883 unsigned Align, BasicBlock *InsertAE)
884 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
885 Load, Ptr, InsertAE) {
886 setVolatile(isVolatile);
887 setAlignment(Align);
Eli Friedman59b66882011-08-09 23:02:53 +0000888 setAtomic(NotAtomic);
Dan Gohman68659282007-07-18 20:51:11 +0000889 AssertOK();
890 setName(Name);
891}
892
Eli Friedman59b66882011-08-09 23:02:53 +0000893LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
894 unsigned Align, AtomicOrdering Order,
895 SynchronizationScope SynchScope,
896 Instruction *InsertBef)
897 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
898 Load, Ptr, InsertBef) {
899 setVolatile(isVolatile);
900 setAlignment(Align);
901 setAtomic(Order, SynchScope);
902 AssertOK();
903 setName(Name);
904}
905
906LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
907 unsigned Align, AtomicOrdering Order,
908 SynchronizationScope SynchScope,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000909 BasicBlock *InsertAE)
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000910 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
Chris Lattner2195fc42007-02-24 00:55:48 +0000911 Load, Ptr, InsertAE) {
Chris Lattner0f048162007-02-13 07:54:42 +0000912 setVolatile(isVolatile);
Eli Friedman59b66882011-08-09 23:02:53 +0000913 setAlignment(Align);
914 setAtomic(Order, SynchScope);
Chris Lattner0f048162007-02-13 07:54:42 +0000915 AssertOK();
916 setName(Name);
917}
918
Daniel Dunbar27096822009-08-11 18:11:15 +0000919LoadInst::LoadInst(Value *Ptr, const char *Name, Instruction *InsertBef)
920 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
921 Load, Ptr, InsertBef) {
922 setVolatile(false);
923 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +0000924 setAtomic(NotAtomic);
Daniel Dunbar27096822009-08-11 18:11:15 +0000925 AssertOK();
926 if (Name && Name[0]) setName(Name);
927}
928
929LoadInst::LoadInst(Value *Ptr, const char *Name, BasicBlock *InsertAE)
930 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
931 Load, Ptr, InsertAE) {
932 setVolatile(false);
933 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +0000934 setAtomic(NotAtomic);
Daniel Dunbar27096822009-08-11 18:11:15 +0000935 AssertOK();
936 if (Name && Name[0]) setName(Name);
937}
938
939LoadInst::LoadInst(Value *Ptr, const char *Name, bool isVolatile,
940 Instruction *InsertBef)
941: UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
942 Load, Ptr, InsertBef) {
943 setVolatile(isVolatile);
944 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +0000945 setAtomic(NotAtomic);
Daniel Dunbar27096822009-08-11 18:11:15 +0000946 AssertOK();
947 if (Name && Name[0]) setName(Name);
948}
949
950LoadInst::LoadInst(Value *Ptr, const char *Name, bool isVolatile,
951 BasicBlock *InsertAE)
952 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
953 Load, Ptr, InsertAE) {
954 setVolatile(isVolatile);
955 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +0000956 setAtomic(NotAtomic);
Daniel Dunbar27096822009-08-11 18:11:15 +0000957 AssertOK();
958 if (Name && Name[0]) setName(Name);
959}
960
Christopher Lamb84485702007-04-22 19:24:39 +0000961void LoadInst::setAlignment(unsigned Align) {
962 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
Dan Gohmana7e5a242010-07-28 20:12:04 +0000963 assert(Align <= MaximumAlignment &&
964 "Alignment is greater than MaximumAlignment!");
Eli Friedman59b66882011-08-09 23:02:53 +0000965 setInstructionSubclassData((getSubclassDataFromInstruction() & ~(31 << 1)) |
Chris Lattnerd8eb2cf2009-12-29 02:46:09 +0000966 ((Log2_32(Align)+1)<<1));
Dan Gohmana7e5a242010-07-28 20:12:04 +0000967 assert(getAlignment() == Align && "Alignment representation error!");
Christopher Lamb84485702007-04-22 19:24:39 +0000968}
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000969
970//===----------------------------------------------------------------------===//
971// StoreInst Implementation
972//===----------------------------------------------------------------------===//
973
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000974void StoreInst::AssertOK() {
Nate Begemanfecbc8c2008-07-29 15:49:41 +0000975 assert(getOperand(0) && getOperand(1) && "Both operands must be non-null!");
Duncan Sands19d0b472010-02-16 11:11:14 +0000976 assert(getOperand(1)->getType()->isPointerTy() &&
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000977 "Ptr must have pointer type!");
978 assert(getOperand(0)->getType() ==
979 cast<PointerType>(getOperand(1)->getType())->getElementType()
Alkis Evlogimenos079fbde2004-08-06 14:33:37 +0000980 && "Ptr must be a pointer to Val type!");
Eli Friedman59b66882011-08-09 23:02:53 +0000981 assert(!(isAtomic() && getAlignment() == 0) &&
982 "Alignment required for atomic load");
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000983}
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +0000984
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000985
986StoreInst::StoreInst(Value *val, Value *addr, Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +0000987 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +0000988 OperandTraits<StoreInst>::op_begin(this),
989 OperandTraits<StoreInst>::operands(this),
990 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +0000991 Op<0>() = val;
992 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +0000993 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +0000994 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +0000995 setAtomic(NotAtomic);
Chris Lattnerafdb3de2005-01-29 00:35:16 +0000996 AssertOK();
997}
998
999StoreInst::StoreInst(Value *val, Value *addr, BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +00001000 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001001 OperandTraits<StoreInst>::op_begin(this),
1002 OperandTraits<StoreInst>::operands(this),
1003 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001004 Op<0>() = val;
1005 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +00001006 setVolatile(false);
Christopher Lamb84485702007-04-22 19:24:39 +00001007 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +00001008 setAtomic(NotAtomic);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001009 AssertOK();
1010}
1011
Misha Brukmanb1c93172005-04-21 23:48:37 +00001012StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001013 Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +00001014 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001015 OperandTraits<StoreInst>::op_begin(this),
1016 OperandTraits<StoreInst>::operands(this),
1017 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001018 Op<0>() = val;
1019 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +00001020 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +00001021 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +00001022 setAtomic(NotAtomic);
Christopher Lamb84485702007-04-22 19:24:39 +00001023 AssertOK();
1024}
1025
1026StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
1027 unsigned Align, Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +00001028 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001029 OperandTraits<StoreInst>::op_begin(this),
1030 OperandTraits<StoreInst>::operands(this),
1031 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001032 Op<0>() = val;
1033 Op<1>() = addr;
Christopher Lamb84485702007-04-22 19:24:39 +00001034 setVolatile(isVolatile);
1035 setAlignment(Align);
Eli Friedman59b66882011-08-09 23:02:53 +00001036 setAtomic(NotAtomic);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001037 AssertOK();
1038}
1039
Misha Brukmanb1c93172005-04-21 23:48:37 +00001040StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Eli Friedman59b66882011-08-09 23:02:53 +00001041 unsigned Align, AtomicOrdering Order,
1042 SynchronizationScope SynchScope,
1043 Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +00001044 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001045 OperandTraits<StoreInst>::op_begin(this),
1046 OperandTraits<StoreInst>::operands(this),
Eli Friedman59b66882011-08-09 23:02:53 +00001047 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001048 Op<0>() = val;
1049 Op<1>() = addr;
Dan Gohman68659282007-07-18 20:51:11 +00001050 setVolatile(isVolatile);
1051 setAlignment(Align);
Eli Friedman59b66882011-08-09 23:02:53 +00001052 setAtomic(Order, SynchScope);
Dan Gohman68659282007-07-18 20:51:11 +00001053 AssertOK();
1054}
1055
1056StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001057 BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +00001058 : Instruction(Type::getVoidTy(val->getContext()), Store,
Gabor Greiff6caff662008-05-10 08:32:32 +00001059 OperandTraits<StoreInst>::op_begin(this),
1060 OperandTraits<StoreInst>::operands(this),
1061 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001062 Op<0>() = val;
1063 Op<1>() = addr;
Chris Lattnerdf57a022005-02-05 01:38:38 +00001064 setVolatile(isVolatile);
Christopher Lamb84485702007-04-22 19:24:39 +00001065 setAlignment(0);
Eli Friedman59b66882011-08-09 23:02:53 +00001066 setAtomic(NotAtomic);
1067 AssertOK();
1068}
1069
1070StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
1071 unsigned Align, BasicBlock *InsertAtEnd)
1072 : Instruction(Type::getVoidTy(val->getContext()), Store,
1073 OperandTraits<StoreInst>::op_begin(this),
1074 OperandTraits<StoreInst>::operands(this),
1075 InsertAtEnd) {
1076 Op<0>() = val;
1077 Op<1>() = addr;
1078 setVolatile(isVolatile);
1079 setAlignment(Align);
1080 setAtomic(NotAtomic);
1081 AssertOK();
1082}
1083
1084StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
1085 unsigned Align, AtomicOrdering Order,
1086 SynchronizationScope SynchScope,
1087 BasicBlock *InsertAtEnd)
1088 : Instruction(Type::getVoidTy(val->getContext()), Store,
1089 OperandTraits<StoreInst>::op_begin(this),
1090 OperandTraits<StoreInst>::operands(this),
1091 InsertAtEnd) {
1092 Op<0>() = val;
1093 Op<1>() = addr;
1094 setVolatile(isVolatile);
1095 setAlignment(Align);
1096 setAtomic(Order, SynchScope);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001097 AssertOK();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001098}
1099
Christopher Lamb84485702007-04-22 19:24:39 +00001100void StoreInst::setAlignment(unsigned Align) {
1101 assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
Dan Gohmana7e5a242010-07-28 20:12:04 +00001102 assert(Align <= MaximumAlignment &&
1103 "Alignment is greater than MaximumAlignment!");
Eli Friedman59b66882011-08-09 23:02:53 +00001104 setInstructionSubclassData((getSubclassDataFromInstruction() & ~(31 << 1)) |
Chris Lattnerd8eb2cf2009-12-29 02:46:09 +00001105 ((Log2_32(Align)+1) << 1));
Dan Gohmana7e5a242010-07-28 20:12:04 +00001106 assert(getAlignment() == Align && "Alignment representation error!");
Christopher Lamb84485702007-04-22 19:24:39 +00001107}
1108
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001109//===----------------------------------------------------------------------===//
Eli Friedmanc9a551e2011-07-28 21:48:00 +00001110// AtomicCmpXchgInst Implementation
1111//===----------------------------------------------------------------------===//
1112
1113void AtomicCmpXchgInst::Init(Value *Ptr, Value *Cmp, Value *NewVal,
1114 AtomicOrdering Ordering,
1115 SynchronizationScope SynchScope) {
1116 Op<0>() = Ptr;
1117 Op<1>() = Cmp;
1118 Op<2>() = NewVal;
1119 setOrdering(Ordering);
1120 setSynchScope(SynchScope);
1121
1122 assert(getOperand(0) && getOperand(1) && getOperand(2) &&
1123 "All operands must be non-null!");
1124 assert(getOperand(0)->getType()->isPointerTy() &&
1125 "Ptr must have pointer type!");
1126 assert(getOperand(1)->getType() ==
1127 cast<PointerType>(getOperand(0)->getType())->getElementType()
1128 && "Ptr must be a pointer to Cmp type!");
1129 assert(getOperand(2)->getType() ==
1130 cast<PointerType>(getOperand(0)->getType())->getElementType()
1131 && "Ptr must be a pointer to NewVal type!");
1132 assert(Ordering != NotAtomic &&
1133 "AtomicCmpXchg instructions must be atomic!");
1134}
1135
1136AtomicCmpXchgInst::AtomicCmpXchgInst(Value *Ptr, Value *Cmp, Value *NewVal,
1137 AtomicOrdering Ordering,
1138 SynchronizationScope SynchScope,
1139 Instruction *InsertBefore)
1140 : Instruction(Cmp->getType(), AtomicCmpXchg,
1141 OperandTraits<AtomicCmpXchgInst>::op_begin(this),
1142 OperandTraits<AtomicCmpXchgInst>::operands(this),
1143 InsertBefore) {
1144 Init(Ptr, Cmp, NewVal, Ordering, SynchScope);
1145}
1146
1147AtomicCmpXchgInst::AtomicCmpXchgInst(Value *Ptr, Value *Cmp, Value *NewVal,
1148 AtomicOrdering Ordering,
1149 SynchronizationScope SynchScope,
1150 BasicBlock *InsertAtEnd)
1151 : Instruction(Cmp->getType(), AtomicCmpXchg,
1152 OperandTraits<AtomicCmpXchgInst>::op_begin(this),
1153 OperandTraits<AtomicCmpXchgInst>::operands(this),
1154 InsertAtEnd) {
1155 Init(Ptr, Cmp, NewVal, Ordering, SynchScope);
1156}
1157
1158//===----------------------------------------------------------------------===//
1159// AtomicRMWInst Implementation
1160//===----------------------------------------------------------------------===//
1161
1162void AtomicRMWInst::Init(BinOp Operation, Value *Ptr, Value *Val,
1163 AtomicOrdering Ordering,
1164 SynchronizationScope SynchScope) {
1165 Op<0>() = Ptr;
1166 Op<1>() = Val;
1167 setOperation(Operation);
1168 setOrdering(Ordering);
1169 setSynchScope(SynchScope);
1170
1171 assert(getOperand(0) && getOperand(1) &&
1172 "All operands must be non-null!");
1173 assert(getOperand(0)->getType()->isPointerTy() &&
1174 "Ptr must have pointer type!");
1175 assert(getOperand(1)->getType() ==
1176 cast<PointerType>(getOperand(0)->getType())->getElementType()
1177 && "Ptr must be a pointer to Val type!");
1178 assert(Ordering != NotAtomic &&
1179 "AtomicRMW instructions must be atomic!");
1180}
1181
1182AtomicRMWInst::AtomicRMWInst(BinOp Operation, Value *Ptr, Value *Val,
1183 AtomicOrdering Ordering,
1184 SynchronizationScope SynchScope,
1185 Instruction *InsertBefore)
1186 : Instruction(Val->getType(), AtomicRMW,
1187 OperandTraits<AtomicRMWInst>::op_begin(this),
1188 OperandTraits<AtomicRMWInst>::operands(this),
1189 InsertBefore) {
1190 Init(Operation, Ptr, Val, Ordering, SynchScope);
1191}
1192
1193AtomicRMWInst::AtomicRMWInst(BinOp Operation, Value *Ptr, Value *Val,
1194 AtomicOrdering Ordering,
1195 SynchronizationScope SynchScope,
1196 BasicBlock *InsertAtEnd)
1197 : Instruction(Val->getType(), AtomicRMW,
1198 OperandTraits<AtomicRMWInst>::op_begin(this),
1199 OperandTraits<AtomicRMWInst>::operands(this),
1200 InsertAtEnd) {
1201 Init(Operation, Ptr, Val, Ordering, SynchScope);
1202}
1203
1204//===----------------------------------------------------------------------===//
Eli Friedmanfee02c62011-07-25 23:16:38 +00001205// FenceInst Implementation
1206//===----------------------------------------------------------------------===//
1207
1208FenceInst::FenceInst(LLVMContext &C, AtomicOrdering Ordering,
1209 SynchronizationScope SynchScope,
1210 Instruction *InsertBefore)
1211 : Instruction(Type::getVoidTy(C), Fence, 0, 0, InsertBefore) {
1212 setOrdering(Ordering);
1213 setSynchScope(SynchScope);
1214}
1215
1216FenceInst::FenceInst(LLVMContext &C, AtomicOrdering Ordering,
1217 SynchronizationScope SynchScope,
1218 BasicBlock *InsertAtEnd)
1219 : Instruction(Type::getVoidTy(C), Fence, 0, 0, InsertAtEnd) {
1220 setOrdering(Ordering);
1221 setSynchScope(SynchScope);
1222}
1223
1224//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001225// GetElementPtrInst Implementation
1226//===----------------------------------------------------------------------===//
1227
Jay Foadd1b78492011-07-25 09:48:08 +00001228void GetElementPtrInst::init(Value *Ptr, ArrayRef<Value *> IdxList,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001229 const Twine &Name) {
Jay Foadd1b78492011-07-25 09:48:08 +00001230 assert(NumOperands == 1 + IdxList.size() && "NumOperands not initialized?");
1231 OperandList[0] = Ptr;
1232 std::copy(IdxList.begin(), IdxList.end(), op_begin() + 1);
Matthijs Kooijman76d8dec2008-06-04 16:14:12 +00001233 setName(Name);
Chris Lattner82981202005-05-03 05:43:30 +00001234}
1235
Gabor Greiff6caff662008-05-10 08:32:32 +00001236GetElementPtrInst::GetElementPtrInst(const GetElementPtrInst &GEPI)
Gabor Greife9408e62008-05-27 11:03:29 +00001237 : Instruction(GEPI.getType(), GetElementPtr,
Gabor Greif697e94c2008-05-15 10:04:30 +00001238 OperandTraits<GetElementPtrInst>::op_end(this)
1239 - GEPI.getNumOperands(),
Gabor Greiff6caff662008-05-10 08:32:32 +00001240 GEPI.getNumOperands()) {
Jay Foadd1b78492011-07-25 09:48:08 +00001241 std::copy(GEPI.op_begin(), GEPI.op_end(), op_begin());
Dan Gohmanc8a27f22009-08-25 22:11:20 +00001242 SubclassOptionalData = GEPI.SubclassOptionalData;
Gabor Greiff6caff662008-05-10 08:32:32 +00001243}
1244
Chris Lattner6090a422009-03-09 04:46:40 +00001245/// getIndexedType - Returns the type of the element that would be accessed with
1246/// a gep instruction with the specified parameters.
1247///
1248/// The Idxs pointer should point to a continuous piece of memory containing the
1249/// indices, either as Value* or uint64_t.
1250///
1251/// A null type is returned if the indices are invalid for the specified
1252/// pointer type.
1253///
Matthijs Kooijman04468622008-07-29 08:46:11 +00001254template <typename IndexTy>
Jay Foadd1b78492011-07-25 09:48:08 +00001255static Type *getIndexedTypeInternal(Type *Ptr, ArrayRef<IndexTy> IdxList) {
Chris Lattner229907c2011-07-18 04:54:35 +00001256 PointerType *PTy = dyn_cast<PointerType>(Ptr);
Dan Gohman12fce772008-05-15 19:50:34 +00001257 if (!PTy) return 0; // Type isn't a pointer type!
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001258 Type *Agg = PTy->getElementType();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001259
Chris Lattner6090a422009-03-09 04:46:40 +00001260 // Handle the special case of the empty set index set, which is always valid.
Jay Foadd1b78492011-07-25 09:48:08 +00001261 if (IdxList.empty())
Dan Gohman12fce772008-05-15 19:50:34 +00001262 return Agg;
Chris Lattner6090a422009-03-09 04:46:40 +00001263
1264 // If there is at least one index, the top level type must be sized, otherwise
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001265 // it cannot be 'stepped over'.
1266 if (!Agg->isSized())
Chris Lattner6090a422009-03-09 04:46:40 +00001267 return 0;
Misha Brukmanb1c93172005-04-21 23:48:37 +00001268
Dan Gohman1ecaf452008-05-31 00:58:22 +00001269 unsigned CurIdx = 1;
Jay Foadd1b78492011-07-25 09:48:08 +00001270 for (; CurIdx != IdxList.size(); ++CurIdx) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001271 CompositeType *CT = dyn_cast<CompositeType>(Agg);
Duncan Sands19d0b472010-02-16 11:11:14 +00001272 if (!CT || CT->isPointerTy()) return 0;
Jay Foadd1b78492011-07-25 09:48:08 +00001273 IndexTy Index = IdxList[CurIdx];
Dan Gohman1ecaf452008-05-31 00:58:22 +00001274 if (!CT->indexValid(Index)) return 0;
1275 Agg = CT->getTypeAtIndex(Index);
Dan Gohman1ecaf452008-05-31 00:58:22 +00001276 }
Jay Foadd1b78492011-07-25 09:48:08 +00001277 return CurIdx == IdxList.size() ? Agg : 0;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001278}
1279
Jay Foadd1b78492011-07-25 09:48:08 +00001280Type *GetElementPtrInst::getIndexedType(Type *Ptr, ArrayRef<Value *> IdxList) {
1281 return getIndexedTypeInternal(Ptr, IdxList);
Matthijs Kooijman04468622008-07-29 08:46:11 +00001282}
1283
Chris Lattner229907c2011-07-18 04:54:35 +00001284Type *GetElementPtrInst::getIndexedType(Type *Ptr,
Jay Foadd1b78492011-07-25 09:48:08 +00001285 ArrayRef<Constant *> IdxList) {
1286 return getIndexedTypeInternal(Ptr, IdxList);
Jay Foad1d4a8fe2011-01-14 08:07:43 +00001287}
1288
Jay Foadd1b78492011-07-25 09:48:08 +00001289Type *GetElementPtrInst::getIndexedType(Type *Ptr, ArrayRef<uint64_t> IdxList) {
1290 return getIndexedTypeInternal(Ptr, IdxList);
Matthijs Kooijman04468622008-07-29 08:46:11 +00001291}
1292
Chris Lattner45f15572007-04-14 00:12:57 +00001293/// hasAllZeroIndices - Return true if all of the indices of this GEP are
1294/// zeros. If so, the result pointer and the first operand have the same
1295/// value, just potentially different types.
1296bool GetElementPtrInst::hasAllZeroIndices() const {
1297 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
1298 if (ConstantInt *CI = dyn_cast<ConstantInt>(getOperand(i))) {
1299 if (!CI->isZero()) return false;
1300 } else {
1301 return false;
1302 }
1303 }
1304 return true;
1305}
1306
Chris Lattner27058292007-04-27 20:35:56 +00001307/// hasAllConstantIndices - Return true if all of the indices of this GEP are
1308/// constant integers. If so, the result pointer and the first operand have
1309/// a constant offset between them.
1310bool GetElementPtrInst::hasAllConstantIndices() const {
1311 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
1312 if (!isa<ConstantInt>(getOperand(i)))
1313 return false;
1314 }
1315 return true;
1316}
1317
Dan Gohman1b849082009-09-07 23:54:19 +00001318void GetElementPtrInst::setIsInBounds(bool B) {
1319 cast<GEPOperator>(this)->setIsInBounds(B);
1320}
Chris Lattner45f15572007-04-14 00:12:57 +00001321
Nick Lewycky28a5f252009-09-27 21:33:04 +00001322bool GetElementPtrInst::isInBounds() const {
1323 return cast<GEPOperator>(this)->isInBounds();
1324}
1325
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001326//===----------------------------------------------------------------------===//
Robert Bocchino23004482006-01-10 19:05:34 +00001327// ExtractElementInst Implementation
1328//===----------------------------------------------------------------------===//
1329
1330ExtractElementInst::ExtractElementInst(Value *Val, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001331 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001332 Instruction *InsertBef)
Reid Spencerd84d35b2007-02-15 02:26:10 +00001333 : Instruction(cast<VectorType>(Val->getType())->getElementType(),
Gabor Greiff6caff662008-05-10 08:32:32 +00001334 ExtractElement,
1335 OperandTraits<ExtractElementInst>::op_begin(this),
1336 2, InsertBef) {
Chris Lattner54865b32006-04-08 04:05:48 +00001337 assert(isValidOperands(Val, Index) &&
1338 "Invalid extractelement instruction operands!");
Gabor Greif2d3024d2008-05-26 21:33:52 +00001339 Op<0>() = Val;
1340 Op<1>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001341 setName(Name);
Robert Bocchino23004482006-01-10 19:05:34 +00001342}
1343
1344ExtractElementInst::ExtractElementInst(Value *Val, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001345 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001346 BasicBlock *InsertAE)
Reid Spencerd84d35b2007-02-15 02:26:10 +00001347 : Instruction(cast<VectorType>(Val->getType())->getElementType(),
Gabor Greiff6caff662008-05-10 08:32:32 +00001348 ExtractElement,
1349 OperandTraits<ExtractElementInst>::op_begin(this),
1350 2, InsertAE) {
Chris Lattner54865b32006-04-08 04:05:48 +00001351 assert(isValidOperands(Val, Index) &&
1352 "Invalid extractelement instruction operands!");
1353
Gabor Greif2d3024d2008-05-26 21:33:52 +00001354 Op<0>() = Val;
1355 Op<1>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001356 setName(Name);
Robert Bocchino23004482006-01-10 19:05:34 +00001357}
1358
Chris Lattner65511ff2006-10-05 06:24:58 +00001359
Chris Lattner54865b32006-04-08 04:05:48 +00001360bool ExtractElementInst::isValidOperands(const Value *Val, const Value *Index) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001361 if (!Val->getType()->isVectorTy() || !Index->getType()->isIntegerTy(32))
Chris Lattner54865b32006-04-08 04:05:48 +00001362 return false;
1363 return true;
1364}
1365
1366
Robert Bocchino23004482006-01-10 19:05:34 +00001367//===----------------------------------------------------------------------===//
Robert Bocchinoca27f032006-01-17 20:07:22 +00001368// InsertElementInst Implementation
1369//===----------------------------------------------------------------------===//
1370
Chris Lattner54865b32006-04-08 04:05:48 +00001371InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001372 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001373 Instruction *InsertBef)
Gabor Greiff6caff662008-05-10 08:32:32 +00001374 : Instruction(Vec->getType(), InsertElement,
1375 OperandTraits<InsertElementInst>::op_begin(this),
1376 3, InsertBef) {
Chris Lattner54865b32006-04-08 04:05:48 +00001377 assert(isValidOperands(Vec, Elt, Index) &&
1378 "Invalid insertelement instruction operands!");
Gabor Greif2d3024d2008-05-26 21:33:52 +00001379 Op<0>() = Vec;
1380 Op<1>() = Elt;
1381 Op<2>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001382 setName(Name);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001383}
1384
Chris Lattner54865b32006-04-08 04:05:48 +00001385InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, Value *Index,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001386 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001387 BasicBlock *InsertAE)
Gabor Greiff6caff662008-05-10 08:32:32 +00001388 : Instruction(Vec->getType(), InsertElement,
1389 OperandTraits<InsertElementInst>::op_begin(this),
1390 3, InsertAE) {
Chris Lattner54865b32006-04-08 04:05:48 +00001391 assert(isValidOperands(Vec, Elt, Index) &&
1392 "Invalid insertelement instruction operands!");
1393
Gabor Greif2d3024d2008-05-26 21:33:52 +00001394 Op<0>() = Vec;
1395 Op<1>() = Elt;
1396 Op<2>() = Index;
Chris Lattner2195fc42007-02-24 00:55:48 +00001397 setName(Name);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001398}
1399
Chris Lattner54865b32006-04-08 04:05:48 +00001400bool InsertElementInst::isValidOperands(const Value *Vec, const Value *Elt,
1401 const Value *Index) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001402 if (!Vec->getType()->isVectorTy())
Reid Spencer09575ba2007-02-15 03:39:18 +00001403 return false; // First operand of insertelement must be vector type.
Chris Lattner54865b32006-04-08 04:05:48 +00001404
Reid Spencerd84d35b2007-02-15 02:26:10 +00001405 if (Elt->getType() != cast<VectorType>(Vec->getType())->getElementType())
Dan Gohmanfead7972007-05-11 21:43:24 +00001406 return false;// Second operand of insertelement must be vector element type.
Chris Lattner54865b32006-04-08 04:05:48 +00001407
Duncan Sands9dff9be2010-02-15 16:12:20 +00001408 if (!Index->getType()->isIntegerTy(32))
Dan Gohman4fe64de2009-06-14 23:30:43 +00001409 return false; // Third operand of insertelement must be i32.
Chris Lattner54865b32006-04-08 04:05:48 +00001410 return true;
1411}
1412
1413
Robert Bocchinoca27f032006-01-17 20:07:22 +00001414//===----------------------------------------------------------------------===//
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001415// ShuffleVectorInst Implementation
1416//===----------------------------------------------------------------------===//
1417
1418ShuffleVectorInst::ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001419 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001420 Instruction *InsertBefore)
Owen Anderson4056ca92009-07-29 22:17:13 +00001421: Instruction(VectorType::get(cast<VectorType>(V1->getType())->getElementType(),
Mon P Wang25f01062008-11-10 04:46:22 +00001422 cast<VectorType>(Mask->getType())->getNumElements()),
1423 ShuffleVector,
1424 OperandTraits<ShuffleVectorInst>::op_begin(this),
1425 OperandTraits<ShuffleVectorInst>::operands(this),
1426 InsertBefore) {
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001427 assert(isValidOperands(V1, V2, Mask) &&
1428 "Invalid shuffle vector instruction operands!");
Gabor Greif2d3024d2008-05-26 21:33:52 +00001429 Op<0>() = V1;
1430 Op<1>() = V2;
1431 Op<2>() = Mask;
Chris Lattner2195fc42007-02-24 00:55:48 +00001432 setName(Name);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001433}
1434
1435ShuffleVectorInst::ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001436 const Twine &Name,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001437 BasicBlock *InsertAtEnd)
Dan Gohmane5af8cd2009-08-25 23:27:45 +00001438: Instruction(VectorType::get(cast<VectorType>(V1->getType())->getElementType(),
1439 cast<VectorType>(Mask->getType())->getNumElements()),
1440 ShuffleVector,
1441 OperandTraits<ShuffleVectorInst>::op_begin(this),
1442 OperandTraits<ShuffleVectorInst>::operands(this),
1443 InsertAtEnd) {
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001444 assert(isValidOperands(V1, V2, Mask) &&
1445 "Invalid shuffle vector instruction operands!");
1446
Gabor Greif2d3024d2008-05-26 21:33:52 +00001447 Op<0>() = V1;
1448 Op<1>() = V2;
1449 Op<2>() = Mask;
Chris Lattner2195fc42007-02-24 00:55:48 +00001450 setName(Name);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001451}
1452
Mon P Wang25f01062008-11-10 04:46:22 +00001453bool ShuffleVectorInst::isValidOperands(const Value *V1, const Value *V2,
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001454 const Value *Mask) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001455 if (!V1->getType()->isVectorTy() || V1->getType() != V2->getType())
Chris Lattnerf724e342008-03-02 05:28:33 +00001456 return false;
1457
Chris Lattner229907c2011-07-18 04:54:35 +00001458 VectorType *MaskTy = dyn_cast<VectorType>(Mask->getType());
Nate Begeman60a31c32010-08-13 00:16:46 +00001459 if (MaskTy == 0 || !MaskTy->getElementType()->isIntegerTy(32))
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001460 return false;
Nate Begeman60a31c32010-08-13 00:16:46 +00001461
1462 // Check to see if Mask is valid.
1463 if (const ConstantVector *MV = dyn_cast<ConstantVector>(Mask)) {
Chris Lattner229907c2011-07-18 04:54:35 +00001464 VectorType *VTy = cast<VectorType>(V1->getType());
Nate Begeman60a31c32010-08-13 00:16:46 +00001465 for (unsigned i = 0, e = MV->getNumOperands(); i != e; ++i) {
1466 if (ConstantInt* CI = dyn_cast<ConstantInt>(MV->getOperand(i))) {
1467 if (CI->uge(VTy->getNumElements()*2))
1468 return false;
1469 } else if (!isa<UndefValue>(MV->getOperand(i))) {
1470 return false;
1471 }
1472 }
1473 }
1474 else if (!isa<UndefValue>(Mask) && !isa<ConstantAggregateZero>(Mask))
1475 return false;
1476
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001477 return true;
1478}
1479
Chris Lattnerf724e342008-03-02 05:28:33 +00001480/// getMaskValue - Return the index from the shuffle mask for the specified
1481/// output result. This is either -1 if the element is undef or a number less
1482/// than 2*numelements.
1483int ShuffleVectorInst::getMaskValue(unsigned i) const {
1484 const Constant *Mask = cast<Constant>(getOperand(2));
1485 if (isa<UndefValue>(Mask)) return -1;
1486 if (isa<ConstantAggregateZero>(Mask)) return 0;
1487 const ConstantVector *MaskCV = cast<ConstantVector>(Mask);
1488 assert(i < MaskCV->getNumOperands() && "Index out of range");
1489
1490 if (isa<UndefValue>(MaskCV->getOperand(i)))
1491 return -1;
1492 return cast<ConstantInt>(MaskCV->getOperand(i))->getZExtValue();
1493}
1494
Dan Gohman12fce772008-05-15 19:50:34 +00001495//===----------------------------------------------------------------------===//
Dan Gohman0752bff2008-05-23 00:36:11 +00001496// InsertValueInst Class
1497//===----------------------------------------------------------------------===//
1498
Jay Foad57aa6362011-07-13 10:26:04 +00001499void InsertValueInst::init(Value *Agg, Value *Val, ArrayRef<unsigned> Idxs,
1500 const Twine &Name) {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001501 assert(NumOperands == 2 && "NumOperands not initialized?");
Jay Foad57aa6362011-07-13 10:26:04 +00001502
1503 // There's no fundamental reason why we require at least one index
1504 // (other than weirdness with &*IdxBegin being invalid; see
1505 // getelementptr's init routine for example). But there's no
1506 // present need to support it.
1507 assert(Idxs.size() > 0 && "InsertValueInst must have at least one index");
1508
1509 assert(ExtractValueInst::getIndexedType(Agg->getType(), Idxs) ==
Frits van Bommel16ebe772010-12-05 20:50:26 +00001510 Val->getType() && "Inserted value must match indexed type!");
Dan Gohman1ecaf452008-05-31 00:58:22 +00001511 Op<0>() = Agg;
1512 Op<1>() = Val;
Dan Gohman0752bff2008-05-23 00:36:11 +00001513
Jay Foad57aa6362011-07-13 10:26:04 +00001514 Indices.append(Idxs.begin(), Idxs.end());
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001515 setName(Name);
Dan Gohman0752bff2008-05-23 00:36:11 +00001516}
1517
1518InsertValueInst::InsertValueInst(const InsertValueInst &IVI)
Gabor Greife9408e62008-05-27 11:03:29 +00001519 : Instruction(IVI.getType(), InsertValue,
Dan Gohman1ecaf452008-05-31 00:58:22 +00001520 OperandTraits<InsertValueInst>::op_begin(this), 2),
1521 Indices(IVI.Indices) {
Dan Gohmand8ca05f2008-06-17 23:25:49 +00001522 Op<0>() = IVI.getOperand(0);
1523 Op<1>() = IVI.getOperand(1);
Dan Gohmanc8a27f22009-08-25 22:11:20 +00001524 SubclassOptionalData = IVI.SubclassOptionalData;
Dan Gohman0752bff2008-05-23 00:36:11 +00001525}
1526
1527//===----------------------------------------------------------------------===//
Dan Gohman12fce772008-05-15 19:50:34 +00001528// ExtractValueInst Class
1529//===----------------------------------------------------------------------===//
1530
Jay Foad57aa6362011-07-13 10:26:04 +00001531void ExtractValueInst::init(ArrayRef<unsigned> Idxs, const Twine &Name) {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001532 assert(NumOperands == 1 && "NumOperands not initialized?");
Dan Gohman0752bff2008-05-23 00:36:11 +00001533
Jay Foad57aa6362011-07-13 10:26:04 +00001534 // There's no fundamental reason why we require at least one index.
1535 // But there's no present need to support it.
1536 assert(Idxs.size() > 0 && "ExtractValueInst must have at least one index");
Dan Gohman0752bff2008-05-23 00:36:11 +00001537
Jay Foad57aa6362011-07-13 10:26:04 +00001538 Indices.append(Idxs.begin(), Idxs.end());
Matthijs Kooijmancfd41db2008-06-04 14:40:55 +00001539 setName(Name);
Dan Gohman0752bff2008-05-23 00:36:11 +00001540}
1541
1542ExtractValueInst::ExtractValueInst(const ExtractValueInst &EVI)
Gabor Greif21ba1842008-06-06 20:28:12 +00001543 : UnaryInstruction(EVI.getType(), ExtractValue, EVI.getOperand(0)),
Dan Gohman1ecaf452008-05-31 00:58:22 +00001544 Indices(EVI.Indices) {
Dan Gohmanc8a27f22009-08-25 22:11:20 +00001545 SubclassOptionalData = EVI.SubclassOptionalData;
Dan Gohman0752bff2008-05-23 00:36:11 +00001546}
1547
Dan Gohman12fce772008-05-15 19:50:34 +00001548// getIndexedType - Returns the type of the element that would be extracted
1549// with an extractvalue instruction with the specified parameters.
1550//
1551// A null type is returned if the indices are invalid for the specified
1552// pointer type.
1553//
Chris Lattner229907c2011-07-18 04:54:35 +00001554Type *ExtractValueInst::getIndexedType(Type *Agg,
Jay Foad57aa6362011-07-13 10:26:04 +00001555 ArrayRef<unsigned> Idxs) {
1556 for (unsigned CurIdx = 0; CurIdx != Idxs.size(); ++CurIdx) {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001557 unsigned Index = Idxs[CurIdx];
Frits van Bommel16ebe772010-12-05 20:50:26 +00001558 // We can't use CompositeType::indexValid(Index) here.
1559 // indexValid() always returns true for arrays because getelementptr allows
1560 // out-of-bounds indices. Since we don't allow those for extractvalue and
1561 // insertvalue we need to check array indexing manually.
1562 // Since the only other types we can index into are struct types it's just
1563 // as easy to check those manually as well.
Chris Lattner229907c2011-07-18 04:54:35 +00001564 if (ArrayType *AT = dyn_cast<ArrayType>(Agg)) {
Frits van Bommel16ebe772010-12-05 20:50:26 +00001565 if (Index >= AT->getNumElements())
1566 return 0;
Chris Lattner229907c2011-07-18 04:54:35 +00001567 } else if (StructType *ST = dyn_cast<StructType>(Agg)) {
Frits van Bommel16ebe772010-12-05 20:50:26 +00001568 if (Index >= ST->getNumElements())
1569 return 0;
1570 } else {
1571 // Not a valid type to index into.
1572 return 0;
1573 }
1574
1575 Agg = cast<CompositeType>(Agg)->getTypeAtIndex(Index);
Dan Gohman12fce772008-05-15 19:50:34 +00001576 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001577 return const_cast<Type*>(Agg);
Dan Gohman12fce772008-05-15 19:50:34 +00001578}
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001579
1580//===----------------------------------------------------------------------===//
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001581// BinaryOperator Class
1582//===----------------------------------------------------------------------===//
1583
Chris Lattner2195fc42007-02-24 00:55:48 +00001584BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2,
Chris Lattner229907c2011-07-18 04:54:35 +00001585 Type *Ty, const Twine &Name,
Chris Lattner2195fc42007-02-24 00:55:48 +00001586 Instruction *InsertBefore)
Dan Gohmana2414ea2010-05-03 22:44:19 +00001587 : Instruction(Ty, iType,
Gabor Greiff6caff662008-05-10 08:32:32 +00001588 OperandTraits<BinaryOperator>::op_begin(this),
1589 OperandTraits<BinaryOperator>::operands(this),
1590 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001591 Op<0>() = S1;
1592 Op<1>() = S2;
Dan Gohmana2414ea2010-05-03 22:44:19 +00001593 init(iType);
Chris Lattner2195fc42007-02-24 00:55:48 +00001594 setName(Name);
1595}
1596
1597BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2,
Chris Lattner229907c2011-07-18 04:54:35 +00001598 Type *Ty, const Twine &Name,
Chris Lattner2195fc42007-02-24 00:55:48 +00001599 BasicBlock *InsertAtEnd)
Dan Gohmana2414ea2010-05-03 22:44:19 +00001600 : Instruction(Ty, iType,
Gabor Greiff6caff662008-05-10 08:32:32 +00001601 OperandTraits<BinaryOperator>::op_begin(this),
1602 OperandTraits<BinaryOperator>::operands(this),
1603 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00001604 Op<0>() = S1;
1605 Op<1>() = S2;
Dan Gohmana2414ea2010-05-03 22:44:19 +00001606 init(iType);
Chris Lattner2195fc42007-02-24 00:55:48 +00001607 setName(Name);
1608}
1609
1610
1611void BinaryOperator::init(BinaryOps iType) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001612 Value *LHS = getOperand(0), *RHS = getOperand(1);
Jeffrey Yasskin9b43f332010-12-23 00:58:24 +00001613 (void)LHS; (void)RHS; // Silence warnings.
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001614 assert(LHS->getType() == RHS->getType() &&
1615 "Binary operator operand types must match!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001616#ifndef NDEBUG
1617 switch (iType) {
1618 case Add: case Sub:
Dan Gohmana5b96452009-06-04 22:49:04 +00001619 case Mul:
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001620 assert(getType() == LHS->getType() &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001621 "Arithmetic operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001622 assert(getType()->isIntOrIntVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001623 "Tried to create an integer operation on a non-integer type!");
1624 break;
1625 case FAdd: case FSub:
1626 case FMul:
1627 assert(getType() == LHS->getType() &&
1628 "Arithmetic operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001629 assert(getType()->isFPOrFPVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001630 "Tried to create a floating-point operation on a "
1631 "non-floating-point type!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001632 break;
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001633 case UDiv:
1634 case SDiv:
1635 assert(getType() == LHS->getType() &&
1636 "Arithmetic operation should return same type as operands!");
Duncan Sands19d0b472010-02-16 11:11:14 +00001637 assert((getType()->isIntegerTy() || (getType()->isVectorTy() &&
Duncan Sands9dff9be2010-02-15 16:12:20 +00001638 cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001639 "Incorrect operand type (not integer) for S/UDIV");
1640 break;
1641 case FDiv:
1642 assert(getType() == LHS->getType() &&
1643 "Arithmetic operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001644 assert(getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001645 "Incorrect operand type (not floating point) for FDIV");
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001646 break;
Reid Spencer7eb55b32006-11-02 01:53:59 +00001647 case URem:
1648 case SRem:
1649 assert(getType() == LHS->getType() &&
1650 "Arithmetic operation should return same type as operands!");
Duncan Sands19d0b472010-02-16 11:11:14 +00001651 assert((getType()->isIntegerTy() || (getType()->isVectorTy() &&
Duncan Sands9dff9be2010-02-15 16:12:20 +00001652 cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
Reid Spencer7eb55b32006-11-02 01:53:59 +00001653 "Incorrect operand type (not integer) for S/UREM");
1654 break;
1655 case FRem:
1656 assert(getType() == LHS->getType() &&
1657 "Arithmetic operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001658 assert(getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001659 "Incorrect operand type (not floating point) for FREM");
Reid Spencer7eb55b32006-11-02 01:53:59 +00001660 break;
Reid Spencer2341c222007-02-02 02:16:23 +00001661 case Shl:
1662 case LShr:
1663 case AShr:
1664 assert(getType() == LHS->getType() &&
1665 "Shift operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001666 assert((getType()->isIntegerTy() ||
Duncan Sands19d0b472010-02-16 11:11:14 +00001667 (getType()->isVectorTy() &&
Duncan Sands9dff9be2010-02-15 16:12:20 +00001668 cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
Nate Begemanfecbc8c2008-07-29 15:49:41 +00001669 "Tried to create a shift operation on a non-integral type!");
Reid Spencer2341c222007-02-02 02:16:23 +00001670 break;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001671 case And: case Or:
1672 case Xor:
Chris Lattnerafdb3de2005-01-29 00:35:16 +00001673 assert(getType() == LHS->getType() &&
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001674 "Logical operation should return same type as operands!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001675 assert((getType()->isIntegerTy() ||
Duncan Sands19d0b472010-02-16 11:11:14 +00001676 (getType()->isVectorTy() &&
Duncan Sands9dff9be2010-02-15 16:12:20 +00001677 cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
Misha Brukman3852f652005-01-27 06:46:38 +00001678 "Tried to create a logical operation on a non-integral type!");
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001679 break;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001680 default:
1681 break;
1682 }
1683#endif
1684}
1685
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001686BinaryOperator *BinaryOperator::Create(BinaryOps Op, Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001687 const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001688 Instruction *InsertBefore) {
1689 assert(S1->getType() == S2->getType() &&
1690 "Cannot create binary operator with two operands of differing type!");
Reid Spencer266e42b2006-12-23 06:05:41 +00001691 return new BinaryOperator(Op, S1, S2, S1->getType(), Name, InsertBefore);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001692}
1693
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001694BinaryOperator *BinaryOperator::Create(BinaryOps Op, Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00001695 const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001696 BasicBlock *InsertAtEnd) {
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001697 BinaryOperator *Res = Create(Op, S1, S2, Name);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001698 InsertAtEnd->getInstList().push_back(Res);
1699 return Res;
1700}
1701
Dan Gohman5476cfd2009-08-12 16:23:25 +00001702BinaryOperator *BinaryOperator::CreateNeg(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001703 Instruction *InsertBefore) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001704 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Reid Spencer2eadb532007-01-21 00:29:26 +00001705 return new BinaryOperator(Instruction::Sub,
1706 zero, Op,
1707 Op->getType(), Name, InsertBefore);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001708}
1709
Dan Gohman5476cfd2009-08-12 16:23:25 +00001710BinaryOperator *BinaryOperator::CreateNeg(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001711 BasicBlock *InsertAtEnd) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001712 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Reid Spencer2eadb532007-01-21 00:29:26 +00001713 return new BinaryOperator(Instruction::Sub,
1714 zero, Op,
1715 Op->getType(), Name, InsertAtEnd);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001716}
1717
Dan Gohman4ab44202009-12-18 02:58:50 +00001718BinaryOperator *BinaryOperator::CreateNSWNeg(Value *Op, const Twine &Name,
1719 Instruction *InsertBefore) {
1720 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1721 return BinaryOperator::CreateNSWSub(zero, Op, Name, InsertBefore);
1722}
1723
1724BinaryOperator *BinaryOperator::CreateNSWNeg(Value *Op, const Twine &Name,
1725 BasicBlock *InsertAtEnd) {
1726 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1727 return BinaryOperator::CreateNSWSub(zero, Op, Name, InsertAtEnd);
1728}
1729
Duncan Sandsfa5f5962010-02-02 12:53:04 +00001730BinaryOperator *BinaryOperator::CreateNUWNeg(Value *Op, const Twine &Name,
1731 Instruction *InsertBefore) {
1732 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1733 return BinaryOperator::CreateNUWSub(zero, Op, Name, InsertBefore);
1734}
1735
1736BinaryOperator *BinaryOperator::CreateNUWNeg(Value *Op, const Twine &Name,
1737 BasicBlock *InsertAtEnd) {
1738 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1739 return BinaryOperator::CreateNUWSub(zero, Op, Name, InsertAtEnd);
1740}
1741
Dan Gohman5476cfd2009-08-12 16:23:25 +00001742BinaryOperator *BinaryOperator::CreateFNeg(Value *Op, const Twine &Name,
Dan Gohmana5b96452009-06-04 22:49:04 +00001743 Instruction *InsertBefore) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001744 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Dan Gohmana5b96452009-06-04 22:49:04 +00001745 return new BinaryOperator(Instruction::FSub,
1746 zero, Op,
1747 Op->getType(), Name, InsertBefore);
1748}
1749
Dan Gohman5476cfd2009-08-12 16:23:25 +00001750BinaryOperator *BinaryOperator::CreateFNeg(Value *Op, const Twine &Name,
Dan Gohmana5b96452009-06-04 22:49:04 +00001751 BasicBlock *InsertAtEnd) {
Owen Anderson69c464d2009-07-27 20:59:43 +00001752 Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
Dan Gohmana5b96452009-06-04 22:49:04 +00001753 return new BinaryOperator(Instruction::FSub,
1754 zero, Op,
1755 Op->getType(), Name, InsertAtEnd);
1756}
1757
Dan Gohman5476cfd2009-08-12 16:23:25 +00001758BinaryOperator *BinaryOperator::CreateNot(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001759 Instruction *InsertBefore) {
Chris Lattnere8e7ac42006-03-25 21:54:21 +00001760 Constant *C;
Chris Lattner229907c2011-07-18 04:54:35 +00001761 if (VectorType *PTy = dyn_cast<VectorType>(Op->getType())) {
Owen Anderson5a1acd92009-07-31 20:28:14 +00001762 C = Constant::getAllOnesValue(PTy->getElementType());
Owen Anderson4aa32952009-07-28 21:19:26 +00001763 C = ConstantVector::get(
Owen Andersonf945a9e2009-07-15 21:51:10 +00001764 std::vector<Constant*>(PTy->getNumElements(), C));
Chris Lattnere8e7ac42006-03-25 21:54:21 +00001765 } else {
Owen Anderson5a1acd92009-07-31 20:28:14 +00001766 C = Constant::getAllOnesValue(Op->getType());
Chris Lattnere8e7ac42006-03-25 21:54:21 +00001767 }
1768
1769 return new BinaryOperator(Instruction::Xor, Op, C,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001770 Op->getType(), Name, InsertBefore);
1771}
1772
Dan Gohman5476cfd2009-08-12 16:23:25 +00001773BinaryOperator *BinaryOperator::CreateNot(Value *Op, const Twine &Name,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001774 BasicBlock *InsertAtEnd) {
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001775 Constant *AllOnes;
Chris Lattner229907c2011-07-18 04:54:35 +00001776 if (VectorType *PTy = dyn_cast<VectorType>(Op->getType())) {
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001777 // Create a vector of all ones values.
Owen Anderson5a1acd92009-07-31 20:28:14 +00001778 Constant *Elt = Constant::getAllOnesValue(PTy->getElementType());
Owen Anderson4aa32952009-07-28 21:19:26 +00001779 AllOnes = ConstantVector::get(
Owen Andersonf945a9e2009-07-15 21:51:10 +00001780 std::vector<Constant*>(PTy->getNumElements(), Elt));
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001781 } else {
Owen Anderson5a1acd92009-07-31 20:28:14 +00001782 AllOnes = Constant::getAllOnesValue(Op->getType());
Chris Lattnerdca56cb2005-12-21 18:22:19 +00001783 }
1784
1785 return new BinaryOperator(Instruction::Xor, Op, AllOnes,
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001786 Op->getType(), Name, InsertAtEnd);
1787}
1788
1789
1790// isConstantAllOnes - Helper function for several functions below
1791static inline bool isConstantAllOnes(const Value *V) {
Chris Lattner1edec382007-06-15 06:04:24 +00001792 if (const ConstantInt *CI = dyn_cast<ConstantInt>(V))
1793 return CI->isAllOnesValue();
1794 if (const ConstantVector *CV = dyn_cast<ConstantVector>(V))
1795 return CV->isAllOnesValue();
1796 return false;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001797}
1798
Owen Andersonbb2501b2009-07-13 22:18:28 +00001799bool BinaryOperator::isNeg(const Value *V) {
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001800 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1801 if (Bop->getOpcode() == Instruction::Sub)
Owen Andersonbb2501b2009-07-13 22:18:28 +00001802 if (Constant* C = dyn_cast<Constant>(Bop->getOperand(0)))
1803 return C->isNegativeZeroValue();
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001804 return false;
1805}
1806
Owen Andersonbb2501b2009-07-13 22:18:28 +00001807bool BinaryOperator::isFNeg(const Value *V) {
Dan Gohmana5b96452009-06-04 22:49:04 +00001808 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1809 if (Bop->getOpcode() == Instruction::FSub)
Owen Andersonbb2501b2009-07-13 22:18:28 +00001810 if (Constant* C = dyn_cast<Constant>(Bop->getOperand(0)))
Dan Gohman11ff5702009-09-11 00:05:10 +00001811 return C->isNegativeZeroValue();
Dan Gohmana5b96452009-06-04 22:49:04 +00001812 return false;
1813}
1814
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001815bool BinaryOperator::isNot(const Value *V) {
1816 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1817 return (Bop->getOpcode() == Instruction::Xor &&
1818 (isConstantAllOnes(Bop->getOperand(1)) ||
1819 isConstantAllOnes(Bop->getOperand(0))));
1820 return false;
1821}
1822
Chris Lattner2c7d1772005-04-24 07:28:37 +00001823Value *BinaryOperator::getNegArgument(Value *BinOp) {
Chris Lattner2c7d1772005-04-24 07:28:37 +00001824 return cast<BinaryOperator>(BinOp)->getOperand(1);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001825}
1826
Chris Lattner2c7d1772005-04-24 07:28:37 +00001827const Value *BinaryOperator::getNegArgument(const Value *BinOp) {
1828 return getNegArgument(const_cast<Value*>(BinOp));
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001829}
1830
Dan Gohmana5b96452009-06-04 22:49:04 +00001831Value *BinaryOperator::getFNegArgument(Value *BinOp) {
Dan Gohmana5b96452009-06-04 22:49:04 +00001832 return cast<BinaryOperator>(BinOp)->getOperand(1);
1833}
1834
1835const Value *BinaryOperator::getFNegArgument(const Value *BinOp) {
1836 return getFNegArgument(const_cast<Value*>(BinOp));
1837}
1838
Chris Lattner2c7d1772005-04-24 07:28:37 +00001839Value *BinaryOperator::getNotArgument(Value *BinOp) {
1840 assert(isNot(BinOp) && "getNotArgument on non-'not' instruction!");
1841 BinaryOperator *BO = cast<BinaryOperator>(BinOp);
1842 Value *Op0 = BO->getOperand(0);
1843 Value *Op1 = BO->getOperand(1);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001844 if (isConstantAllOnes(Op0)) return Op1;
1845
1846 assert(isConstantAllOnes(Op1));
1847 return Op0;
1848}
1849
Chris Lattner2c7d1772005-04-24 07:28:37 +00001850const Value *BinaryOperator::getNotArgument(const Value *BinOp) {
1851 return getNotArgument(const_cast<Value*>(BinOp));
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001852}
1853
1854
1855// swapOperands - Exchange the two operands to this instruction. This
1856// instruction is safe to use on any binary instruction and does not
1857// modify the semantics of the instruction. If the instruction is
1858// order dependent (SetLT f.e.) the opcode is changed.
1859//
1860bool BinaryOperator::swapOperands() {
Reid Spencer266e42b2006-12-23 06:05:41 +00001861 if (!isCommutative())
1862 return true; // Can't commute operands
Gabor Greif5ef74042008-05-13 22:51:52 +00001863 Op<0>().swap(Op<1>());
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00001864 return false;
1865}
1866
Dan Gohman1b849082009-09-07 23:54:19 +00001867void BinaryOperator::setHasNoUnsignedWrap(bool b) {
1868 cast<OverflowingBinaryOperator>(this)->setHasNoUnsignedWrap(b);
1869}
1870
1871void BinaryOperator::setHasNoSignedWrap(bool b) {
1872 cast<OverflowingBinaryOperator>(this)->setHasNoSignedWrap(b);
1873}
1874
1875void BinaryOperator::setIsExact(bool b) {
Chris Lattner35315d02011-02-06 21:44:57 +00001876 cast<PossiblyExactOperator>(this)->setIsExact(b);
Dan Gohman1b849082009-09-07 23:54:19 +00001877}
1878
Nick Lewycky28a5f252009-09-27 21:33:04 +00001879bool BinaryOperator::hasNoUnsignedWrap() const {
1880 return cast<OverflowingBinaryOperator>(this)->hasNoUnsignedWrap();
1881}
1882
1883bool BinaryOperator::hasNoSignedWrap() const {
1884 return cast<OverflowingBinaryOperator>(this)->hasNoSignedWrap();
1885}
1886
1887bool BinaryOperator::isExact() const {
Chris Lattner35315d02011-02-06 21:44:57 +00001888 return cast<PossiblyExactOperator>(this)->isExact();
Nick Lewycky28a5f252009-09-27 21:33:04 +00001889}
1890
Chris Lattnerb0b8ddd2006-09-18 04:54:57 +00001891//===----------------------------------------------------------------------===//
1892// CastInst Class
1893//===----------------------------------------------------------------------===//
1894
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001895// Just determine if this cast only deals with integral->integral conversion.
1896bool CastInst::isIntegerCast() const {
1897 switch (getOpcode()) {
1898 default: return false;
1899 case Instruction::ZExt:
1900 case Instruction::SExt:
1901 case Instruction::Trunc:
1902 return true;
1903 case Instruction::BitCast:
Duncan Sands9dff9be2010-02-15 16:12:20 +00001904 return getOperand(0)->getType()->isIntegerTy() &&
1905 getType()->isIntegerTy();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001906 }
Chris Lattnerb0b8ddd2006-09-18 04:54:57 +00001907}
1908
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001909bool CastInst::isLosslessCast() const {
1910 // Only BitCast can be lossless, exit fast if we're not BitCast
1911 if (getOpcode() != Instruction::BitCast)
1912 return false;
1913
1914 // Identity cast is always lossless
Chris Lattner229907c2011-07-18 04:54:35 +00001915 Type* SrcTy = getOperand(0)->getType();
1916 Type* DstTy = getType();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001917 if (SrcTy == DstTy)
1918 return true;
1919
Reid Spencer8d9336d2006-12-31 05:26:44 +00001920 // Pointer to pointer is always lossless.
Duncan Sands19d0b472010-02-16 11:11:14 +00001921 if (SrcTy->isPointerTy())
1922 return DstTy->isPointerTy();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001923 return false; // Other types have no identity values
1924}
1925
1926/// This function determines if the CastInst does not require any bits to be
1927/// changed in order to effect the cast. Essentially, it identifies cases where
1928/// no code gen is necessary for the cast, hence the name no-op cast. For
1929/// example, the following are all no-op casts:
Dan Gohmane9bc2ba2008-05-12 16:34:30 +00001930/// # bitcast i32* %x to i8*
1931/// # bitcast <2 x i32> %x to <4 x i16>
1932/// # ptrtoint i32* %x to i32 ; on 32-bit plaforms only
Dan Gohman0d7f3b82010-05-28 21:41:37 +00001933/// @brief Determine if the described cast is a no-op.
1934bool CastInst::isNoopCast(Instruction::CastOps Opcode,
Chris Lattner229907c2011-07-18 04:54:35 +00001935 Type *SrcTy,
1936 Type *DestTy,
1937 Type *IntPtrTy) {
Dan Gohman0d7f3b82010-05-28 21:41:37 +00001938 switch (Opcode) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001939 default:
1940 assert(!"Invalid CastOp");
1941 case Instruction::Trunc:
1942 case Instruction::ZExt:
1943 case Instruction::SExt:
1944 case Instruction::FPTrunc:
1945 case Instruction::FPExt:
1946 case Instruction::UIToFP:
1947 case Instruction::SIToFP:
1948 case Instruction::FPToUI:
1949 case Instruction::FPToSI:
1950 return false; // These always modify bits
1951 case Instruction::BitCast:
1952 return true; // BitCast never modifies bits.
1953 case Instruction::PtrToInt:
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001954 return IntPtrTy->getScalarSizeInBits() ==
Dan Gohman0d7f3b82010-05-28 21:41:37 +00001955 DestTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001956 case Instruction::IntToPtr:
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001957 return IntPtrTy->getScalarSizeInBits() ==
Dan Gohman0d7f3b82010-05-28 21:41:37 +00001958 SrcTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001959 }
1960}
1961
Dan Gohman0d7f3b82010-05-28 21:41:37 +00001962/// @brief Determine if a cast is a no-op.
Chris Lattner229907c2011-07-18 04:54:35 +00001963bool CastInst::isNoopCast(Type *IntPtrTy) const {
Dan Gohman0d7f3b82010-05-28 21:41:37 +00001964 return isNoopCast(getOpcode(), getOperand(0)->getType(), getType(), IntPtrTy);
1965}
1966
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001967/// This function determines if a pair of casts can be eliminated and what
1968/// opcode should be used in the elimination. This assumes that there are two
1969/// instructions like this:
1970/// * %F = firstOpcode SrcTy %x to MidTy
1971/// * %S = secondOpcode MidTy %F to DstTy
1972/// The function returns a resultOpcode so these two casts can be replaced with:
1973/// * %Replacement = resultOpcode %SrcTy %x to DstTy
1974/// If no such cast is permited, the function returns 0.
1975unsigned CastInst::isEliminableCastPair(
1976 Instruction::CastOps firstOp, Instruction::CastOps secondOp,
Chris Lattner229907c2011-07-18 04:54:35 +00001977 Type *SrcTy, Type *MidTy, Type *DstTy, Type *IntPtrTy)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001978{
1979 // Define the 144 possibilities for these two cast instructions. The values
1980 // in this matrix determine what to do in a given situation and select the
1981 // case in the switch below. The rows correspond to firstOp, the columns
1982 // correspond to secondOp. In looking at the table below, keep in mind
1983 // the following cast properties:
1984 //
1985 // Size Compare Source Destination
1986 // Operator Src ? Size Type Sign Type Sign
1987 // -------- ------------ ------------------- ---------------------
1988 // TRUNC > Integer Any Integral Any
1989 // ZEXT < Integral Unsigned Integer Any
1990 // SEXT < Integral Signed Integer Any
1991 // FPTOUI n/a FloatPt n/a Integral Unsigned
1992 // FPTOSI n/a FloatPt n/a Integral Signed
1993 // UITOFP n/a Integral Unsigned FloatPt n/a
1994 // SITOFP n/a Integral Signed FloatPt n/a
1995 // FPTRUNC > FloatPt n/a FloatPt n/a
1996 // FPEXT < FloatPt n/a FloatPt n/a
1997 // PTRTOINT n/a Pointer n/a Integral Unsigned
1998 // INTTOPTR n/a Integral Unsigned Pointer n/a
Dan Gohmaneb7111b2010-04-07 23:22:42 +00001999 // BITCAST = FirstClass n/a FirstClass n/a
Chris Lattner6f6b4972006-12-05 23:43:59 +00002000 //
2001 // NOTE: some transforms are safe, but we consider them to be non-profitable.
Dan Gohman4fe64de2009-06-14 23:30:43 +00002002 // For example, we could merge "fptoui double to i32" + "zext i32 to i64",
2003 // into "fptoui double to i64", but this loses information about the range
Chris Lattner6f6b4972006-12-05 23:43:59 +00002004 // of the produced value (we no longer know the top-part is all zeros).
2005 // Further this conversion is often much more expensive for typical hardware,
2006 // and causes issues when building libgcc. We disallow fptosi+sext for the
2007 // same reason.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002008 const unsigned numCastOps =
2009 Instruction::CastOpsEnd - Instruction::CastOpsBegin;
2010 static const uint8_t CastResults[numCastOps][numCastOps] = {
2011 // T F F U S F F P I B -+
2012 // R Z S P P I I T P 2 N T |
2013 // U E E 2 2 2 2 R E I T C +- secondOp
2014 // N X X U S F F N X N 2 V |
2015 // C T T I I P P C T T P T -+
2016 { 1, 0, 0,99,99, 0, 0,99,99,99, 0, 3 }, // Trunc -+
2017 { 8, 1, 9,99,99, 2, 0,99,99,99, 2, 3 }, // ZExt |
2018 { 8, 0, 1,99,99, 0, 2,99,99,99, 0, 3 }, // SExt |
Chris Lattner6f6b4972006-12-05 23:43:59 +00002019 { 0, 0, 0,99,99, 0, 0,99,99,99, 0, 3 }, // FPToUI |
2020 { 0, 0, 0,99,99, 0, 0,99,99,99, 0, 3 }, // FPToSI |
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002021 { 99,99,99, 0, 0,99,99, 0, 0,99,99, 4 }, // UIToFP +- firstOp
2022 { 99,99,99, 0, 0,99,99, 0, 0,99,99, 4 }, // SIToFP |
2023 { 99,99,99, 0, 0,99,99, 1, 0,99,99, 4 }, // FPTrunc |
2024 { 99,99,99, 2, 2,99,99,10, 2,99,99, 4 }, // FPExt |
2025 { 1, 0, 0,99,99, 0, 0,99,99,99, 7, 3 }, // PtrToInt |
2026 { 99,99,99,99,99,99,99,99,99,13,99,12 }, // IntToPtr |
2027 { 5, 5, 5, 6, 6, 5, 5, 6, 6,11, 5, 1 }, // BitCast -+
2028 };
Chris Lattner25eea4d2010-07-12 01:19:22 +00002029
2030 // If either of the casts are a bitcast from scalar to vector, disallow the
2031 // merging.
2032 if ((firstOp == Instruction::BitCast &&
2033 isa<VectorType>(SrcTy) != isa<VectorType>(MidTy)) ||
2034 (secondOp == Instruction::BitCast &&
2035 isa<VectorType>(MidTy) != isa<VectorType>(DstTy)))
2036 return 0; // Disallowed
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002037
2038 int ElimCase = CastResults[firstOp-Instruction::CastOpsBegin]
2039 [secondOp-Instruction::CastOpsBegin];
2040 switch (ElimCase) {
2041 case 0:
2042 // categorically disallowed
2043 return 0;
2044 case 1:
2045 // allowed, use first cast's opcode
2046 return firstOp;
2047 case 2:
2048 // allowed, use second cast's opcode
2049 return secondOp;
2050 case 3:
2051 // no-op cast in second op implies firstOp as long as the DestTy
Mon P Wange04b4562010-01-23 04:35:57 +00002052 // is integer and we are not converting between a vector and a
Chris Lattner531732b2010-01-23 04:42:42 +00002053 // non vector type.
Duncan Sands19d0b472010-02-16 11:11:14 +00002054 if (!SrcTy->isVectorTy() && DstTy->isIntegerTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002055 return firstOp;
2056 return 0;
2057 case 4:
2058 // no-op cast in second op implies firstOp as long as the DestTy
Chris Lattner531732b2010-01-23 04:42:42 +00002059 // is floating point.
Duncan Sands9dff9be2010-02-15 16:12:20 +00002060 if (DstTy->isFloatingPointTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002061 return firstOp;
2062 return 0;
2063 case 5:
2064 // no-op cast in first op implies secondOp as long as the SrcTy
Chris Lattner531732b2010-01-23 04:42:42 +00002065 // is an integer.
Duncan Sands9dff9be2010-02-15 16:12:20 +00002066 if (SrcTy->isIntegerTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002067 return secondOp;
2068 return 0;
2069 case 6:
2070 // no-op cast in first op implies secondOp as long as the SrcTy
Chris Lattner531732b2010-01-23 04:42:42 +00002071 // is a floating point.
Duncan Sands9dff9be2010-02-15 16:12:20 +00002072 if (SrcTy->isFloatingPointTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002073 return secondOp;
2074 return 0;
2075 case 7: {
2076 // ptrtoint, inttoptr -> bitcast (ptr -> ptr) if int size is >= ptr size
Dan Gohman9413de12009-07-21 23:19:40 +00002077 if (!IntPtrTy)
2078 return 0;
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002079 unsigned PtrSize = IntPtrTy->getScalarSizeInBits();
2080 unsigned MidSize = MidTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002081 if (MidSize >= PtrSize)
2082 return Instruction::BitCast;
2083 return 0;
2084 }
2085 case 8: {
2086 // ext, trunc -> bitcast, if the SrcTy and DstTy are same size
2087 // ext, trunc -> ext, if sizeof(SrcTy) < sizeof(DstTy)
2088 // ext, trunc -> trunc, if sizeof(SrcTy) > sizeof(DstTy)
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002089 unsigned SrcSize = SrcTy->getScalarSizeInBits();
2090 unsigned DstSize = DstTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002091 if (SrcSize == DstSize)
2092 return Instruction::BitCast;
2093 else if (SrcSize < DstSize)
2094 return firstOp;
2095 return secondOp;
2096 }
2097 case 9: // zext, sext -> zext, because sext can't sign extend after zext
2098 return Instruction::ZExt;
2099 case 10:
2100 // fpext followed by ftrunc is allowed if the bit size returned to is
2101 // the same as the original, in which case its just a bitcast
2102 if (SrcTy == DstTy)
2103 return Instruction::BitCast;
2104 return 0; // If the types are not the same we can't eliminate it.
2105 case 11:
2106 // bitcast followed by ptrtoint is allowed as long as the bitcast
2107 // is a pointer to pointer cast.
Duncan Sands19d0b472010-02-16 11:11:14 +00002108 if (SrcTy->isPointerTy() && MidTy->isPointerTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002109 return secondOp;
2110 return 0;
2111 case 12:
2112 // inttoptr, bitcast -> intptr if bitcast is a ptr to ptr cast
Duncan Sands19d0b472010-02-16 11:11:14 +00002113 if (MidTy->isPointerTy() && DstTy->isPointerTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002114 return firstOp;
2115 return 0;
2116 case 13: {
2117 // inttoptr, ptrtoint -> bitcast if SrcSize<=PtrSize and SrcSize==DstSize
Dan Gohman9413de12009-07-21 23:19:40 +00002118 if (!IntPtrTy)
2119 return 0;
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002120 unsigned PtrSize = IntPtrTy->getScalarSizeInBits();
2121 unsigned SrcSize = SrcTy->getScalarSizeInBits();
2122 unsigned DstSize = DstTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002123 if (SrcSize <= PtrSize && SrcSize == DstSize)
2124 return Instruction::BitCast;
2125 return 0;
2126 }
2127 case 99:
2128 // cast combination can't happen (error in input). This is for all cases
2129 // where the MidTy is not the same for the two cast instructions.
2130 assert(!"Invalid Cast Combination");
2131 return 0;
2132 default:
2133 assert(!"Error in CastResults table!!!");
2134 return 0;
2135 }
2136 return 0;
2137}
2138
Chris Lattner229907c2011-07-18 04:54:35 +00002139CastInst *CastInst::Create(Instruction::CastOps op, Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002140 const Twine &Name, Instruction *InsertBefore) {
Duncan Sands7f646562011-05-18 09:21:57 +00002141 assert(castIsValid(op, S, Ty) && "Invalid cast!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002142 // Construct and return the appropriate CastInst subclass
2143 switch (op) {
2144 case Trunc: return new TruncInst (S, Ty, Name, InsertBefore);
2145 case ZExt: return new ZExtInst (S, Ty, Name, InsertBefore);
2146 case SExt: return new SExtInst (S, Ty, Name, InsertBefore);
2147 case FPTrunc: return new FPTruncInst (S, Ty, Name, InsertBefore);
2148 case FPExt: return new FPExtInst (S, Ty, Name, InsertBefore);
2149 case UIToFP: return new UIToFPInst (S, Ty, Name, InsertBefore);
2150 case SIToFP: return new SIToFPInst (S, Ty, Name, InsertBefore);
2151 case FPToUI: return new FPToUIInst (S, Ty, Name, InsertBefore);
2152 case FPToSI: return new FPToSIInst (S, Ty, Name, InsertBefore);
2153 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertBefore);
2154 case IntToPtr: return new IntToPtrInst (S, Ty, Name, InsertBefore);
2155 case BitCast: return new BitCastInst (S, Ty, Name, InsertBefore);
2156 default:
2157 assert(!"Invalid opcode provided");
2158 }
2159 return 0;
2160}
2161
Chris Lattner229907c2011-07-18 04:54:35 +00002162CastInst *CastInst::Create(Instruction::CastOps op, Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002163 const Twine &Name, BasicBlock *InsertAtEnd) {
Duncan Sands7f646562011-05-18 09:21:57 +00002164 assert(castIsValid(op, S, Ty) && "Invalid cast!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002165 // Construct and return the appropriate CastInst subclass
2166 switch (op) {
2167 case Trunc: return new TruncInst (S, Ty, Name, InsertAtEnd);
2168 case ZExt: return new ZExtInst (S, Ty, Name, InsertAtEnd);
2169 case SExt: return new SExtInst (S, Ty, Name, InsertAtEnd);
2170 case FPTrunc: return new FPTruncInst (S, Ty, Name, InsertAtEnd);
2171 case FPExt: return new FPExtInst (S, Ty, Name, InsertAtEnd);
2172 case UIToFP: return new UIToFPInst (S, Ty, Name, InsertAtEnd);
2173 case SIToFP: return new SIToFPInst (S, Ty, Name, InsertAtEnd);
2174 case FPToUI: return new FPToUIInst (S, Ty, Name, InsertAtEnd);
2175 case FPToSI: return new FPToSIInst (S, Ty, Name, InsertAtEnd);
2176 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertAtEnd);
2177 case IntToPtr: return new IntToPtrInst (S, Ty, Name, InsertAtEnd);
2178 case BitCast: return new BitCastInst (S, Ty, Name, InsertAtEnd);
2179 default:
2180 assert(!"Invalid opcode provided");
2181 }
2182 return 0;
2183}
2184
Chris Lattner229907c2011-07-18 04:54:35 +00002185CastInst *CastInst::CreateZExtOrBitCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002186 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002187 Instruction *InsertBefore) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002188 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002189 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
2190 return Create(Instruction::ZExt, S, Ty, Name, InsertBefore);
Reid Spencer5c140882006-12-04 20:17:56 +00002191}
2192
Chris Lattner229907c2011-07-18 04:54:35 +00002193CastInst *CastInst::CreateZExtOrBitCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002194 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002195 BasicBlock *InsertAtEnd) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002196 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002197 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
2198 return Create(Instruction::ZExt, S, Ty, Name, InsertAtEnd);
Reid Spencer5c140882006-12-04 20:17:56 +00002199}
2200
Chris Lattner229907c2011-07-18 04:54:35 +00002201CastInst *CastInst::CreateSExtOrBitCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002202 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002203 Instruction *InsertBefore) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002204 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002205 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
2206 return Create(Instruction::SExt, S, Ty, Name, InsertBefore);
Reid Spencer5c140882006-12-04 20:17:56 +00002207}
2208
Chris Lattner229907c2011-07-18 04:54:35 +00002209CastInst *CastInst::CreateSExtOrBitCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002210 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002211 BasicBlock *InsertAtEnd) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002212 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002213 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
2214 return Create(Instruction::SExt, S, Ty, Name, InsertAtEnd);
Reid Spencer5c140882006-12-04 20:17:56 +00002215}
2216
Chris Lattner229907c2011-07-18 04:54:35 +00002217CastInst *CastInst::CreateTruncOrBitCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002218 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002219 Instruction *InsertBefore) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002220 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002221 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
2222 return Create(Instruction::Trunc, S, Ty, Name, InsertBefore);
Reid Spencer5c140882006-12-04 20:17:56 +00002223}
2224
Chris Lattner229907c2011-07-18 04:54:35 +00002225CastInst *CastInst::CreateTruncOrBitCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002226 const Twine &Name,
Reid Spencer5c140882006-12-04 20:17:56 +00002227 BasicBlock *InsertAtEnd) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002228 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002229 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
2230 return Create(Instruction::Trunc, S, Ty, Name, InsertAtEnd);
Reid Spencer5c140882006-12-04 20:17:56 +00002231}
2232
Chris Lattner229907c2011-07-18 04:54:35 +00002233CastInst *CastInst::CreatePointerCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002234 const Twine &Name,
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002235 BasicBlock *InsertAtEnd) {
Duncan Sands19d0b472010-02-16 11:11:14 +00002236 assert(S->getType()->isPointerTy() && "Invalid cast");
2237 assert((Ty->isIntegerTy() || Ty->isPointerTy()) &&
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002238 "Invalid cast");
2239
Duncan Sands9dff9be2010-02-15 16:12:20 +00002240 if (Ty->isIntegerTy())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002241 return Create(Instruction::PtrToInt, S, Ty, Name, InsertAtEnd);
2242 return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002243}
2244
2245/// @brief Create a BitCast or a PtrToInt cast instruction
Chris Lattner229907c2011-07-18 04:54:35 +00002246CastInst *CastInst::CreatePointerCast(Value *S, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002247 const Twine &Name,
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002248 Instruction *InsertBefore) {
Duncan Sands19d0b472010-02-16 11:11:14 +00002249 assert(S->getType()->isPointerTy() && "Invalid cast");
2250 assert((Ty->isIntegerTy() || Ty->isPointerTy()) &&
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002251 "Invalid cast");
2252
Duncan Sands9dff9be2010-02-15 16:12:20 +00002253 if (Ty->isIntegerTy())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002254 return Create(Instruction::PtrToInt, S, Ty, Name, InsertBefore);
2255 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
Reid Spencerd5a3f0d2006-12-05 03:28:26 +00002256}
2257
Chris Lattner229907c2011-07-18 04:54:35 +00002258CastInst *CastInst::CreateIntegerCast(Value *C, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002259 bool isSigned, const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002260 Instruction *InsertBefore) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002261 assert(C->getType()->isIntOrIntVectorTy() && Ty->isIntOrIntVectorTy() &&
Chris Lattner5370ae72010-01-10 20:21:42 +00002262 "Invalid integer cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002263 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2264 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002265 Instruction::CastOps opcode =
2266 (SrcBits == DstBits ? Instruction::BitCast :
2267 (SrcBits > DstBits ? Instruction::Trunc :
2268 (isSigned ? Instruction::SExt : Instruction::ZExt)));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002269 return Create(opcode, C, Ty, Name, InsertBefore);
Reid Spencer7e933472006-12-12 00:49:44 +00002270}
2271
Chris Lattner229907c2011-07-18 04:54:35 +00002272CastInst *CastInst::CreateIntegerCast(Value *C, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002273 bool isSigned, const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002274 BasicBlock *InsertAtEnd) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002275 assert(C->getType()->isIntOrIntVectorTy() && Ty->isIntOrIntVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00002276 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002277 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2278 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002279 Instruction::CastOps opcode =
2280 (SrcBits == DstBits ? Instruction::BitCast :
2281 (SrcBits > DstBits ? Instruction::Trunc :
2282 (isSigned ? Instruction::SExt : Instruction::ZExt)));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002283 return Create(opcode, C, Ty, Name, InsertAtEnd);
Reid Spencer7e933472006-12-12 00:49:44 +00002284}
2285
Chris Lattner229907c2011-07-18 04:54:35 +00002286CastInst *CastInst::CreateFPCast(Value *C, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002287 const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002288 Instruction *InsertBefore) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002289 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer7e933472006-12-12 00:49:44 +00002290 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002291 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2292 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002293 Instruction::CastOps opcode =
2294 (SrcBits == DstBits ? Instruction::BitCast :
2295 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002296 return Create(opcode, C, Ty, Name, InsertBefore);
Reid Spencer7e933472006-12-12 00:49:44 +00002297}
2298
Chris Lattner229907c2011-07-18 04:54:35 +00002299CastInst *CastInst::CreateFPCast(Value *C, Type *Ty,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002300 const Twine &Name,
Reid Spencer7e933472006-12-12 00:49:44 +00002301 BasicBlock *InsertAtEnd) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002302 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer7e933472006-12-12 00:49:44 +00002303 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002304 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2305 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer7e933472006-12-12 00:49:44 +00002306 Instruction::CastOps opcode =
2307 (SrcBits == DstBits ? Instruction::BitCast :
2308 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt));
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002309 return Create(opcode, C, Ty, Name, InsertAtEnd);
Reid Spencer7e933472006-12-12 00:49:44 +00002310}
2311
Duncan Sands55e50902008-01-06 10:12:28 +00002312// Check whether it is valid to call getCastOpcode for these types.
2313// This routine must be kept in sync with getCastOpcode.
Chris Lattner229907c2011-07-18 04:54:35 +00002314bool CastInst::isCastable(Type *SrcTy, Type *DestTy) {
Duncan Sands55e50902008-01-06 10:12:28 +00002315 if (!SrcTy->isFirstClassType() || !DestTy->isFirstClassType())
2316 return false;
2317
2318 if (SrcTy == DestTy)
2319 return true;
2320
Chris Lattner229907c2011-07-18 04:54:35 +00002321 if (VectorType *SrcVecTy = dyn_cast<VectorType>(SrcTy))
2322 if (VectorType *DestVecTy = dyn_cast<VectorType>(DestTy))
Duncan Sandsa8514532011-05-18 07:13:41 +00002323 if (SrcVecTy->getNumElements() == DestVecTy->getNumElements()) {
2324 // An element by element cast. Valid if casting the elements is valid.
2325 SrcTy = SrcVecTy->getElementType();
2326 DestTy = DestVecTy->getElementType();
2327 }
2328
Duncan Sands55e50902008-01-06 10:12:28 +00002329 // Get the bit sizes, we'll need these
Duncan Sands7f646562011-05-18 09:21:57 +00002330 unsigned SrcBits = SrcTy->getPrimitiveSizeInBits(); // 0 for ptr
2331 unsigned DestBits = DestTy->getPrimitiveSizeInBits(); // 0 for ptr
Duncan Sands55e50902008-01-06 10:12:28 +00002332
2333 // Run through the possibilities ...
Duncan Sands27bd0df2011-05-18 10:59:25 +00002334 if (DestTy->isIntegerTy()) { // Casting to integral
2335 if (SrcTy->isIntegerTy()) { // Casting from integral
Duncan Sands55e50902008-01-06 10:12:28 +00002336 return true;
Duncan Sands27bd0df2011-05-18 10:59:25 +00002337 } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt
Duncan Sands55e50902008-01-06 10:12:28 +00002338 return true;
Duncan Sands27bd0df2011-05-18 10:59:25 +00002339 } else if (SrcTy->isVectorTy()) { // Casting from vector
2340 return DestBits == SrcBits;
Gabor Greif697e94c2008-05-15 10:04:30 +00002341 } else { // Casting from something else
Duncan Sands19d0b472010-02-16 11:11:14 +00002342 return SrcTy->isPointerTy();
Duncan Sands55e50902008-01-06 10:12:28 +00002343 }
Duncan Sands27bd0df2011-05-18 10:59:25 +00002344 } else if (DestTy->isFloatingPointTy()) { // Casting to floating pt
2345 if (SrcTy->isIntegerTy()) { // Casting from integral
Duncan Sands55e50902008-01-06 10:12:28 +00002346 return true;
Duncan Sands27bd0df2011-05-18 10:59:25 +00002347 } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt
Duncan Sands55e50902008-01-06 10:12:28 +00002348 return true;
Duncan Sands27bd0df2011-05-18 10:59:25 +00002349 } else if (SrcTy->isVectorTy()) { // Casting from vector
2350 return DestBits == SrcBits;
Gabor Greif697e94c2008-05-15 10:04:30 +00002351 } else { // Casting from something else
Duncan Sands55e50902008-01-06 10:12:28 +00002352 return false;
2353 }
Duncan Sands27bd0df2011-05-18 10:59:25 +00002354 } else if (DestTy->isVectorTy()) { // Casting to vector
2355 return DestBits == SrcBits;
Duncan Sands19d0b472010-02-16 11:11:14 +00002356 } else if (DestTy->isPointerTy()) { // Casting to pointer
Duncan Sands27bd0df2011-05-18 10:59:25 +00002357 if (SrcTy->isPointerTy()) { // Casting from pointer
Duncan Sands55e50902008-01-06 10:12:28 +00002358 return true;
Duncan Sands27bd0df2011-05-18 10:59:25 +00002359 } else if (SrcTy->isIntegerTy()) { // Casting from integral
Duncan Sands55e50902008-01-06 10:12:28 +00002360 return true;
Duncan Sands27bd0df2011-05-18 10:59:25 +00002361 } else { // Casting from something else
Duncan Sands55e50902008-01-06 10:12:28 +00002362 return false;
2363 }
Duncan Sands2d3cdd62011-04-01 03:34:54 +00002364 } else if (DestTy->isX86_MMXTy()) {
Duncan Sands27bd0df2011-05-18 10:59:25 +00002365 if (SrcTy->isVectorTy()) {
2366 return DestBits == SrcBits; // 64-bit vector to MMX
Duncan Sands2d3cdd62011-04-01 03:34:54 +00002367 } else {
2368 return false;
2369 }
Duncan Sands27bd0df2011-05-18 10:59:25 +00002370 } else { // Casting to something else
Duncan Sands55e50902008-01-06 10:12:28 +00002371 return false;
2372 }
2373}
2374
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002375// Provide a way to get a "cast" where the cast opcode is inferred from the
2376// types and size of the operand. This, basically, is a parallel of the
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002377// logic in the castIsValid function below. This axiom should hold:
2378// castIsValid( getCastOpcode(Val, Ty), Val, Ty)
2379// should not assert in castIsValid. In other words, this produces a "correct"
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002380// casting opcode for the arguments passed to it.
Duncan Sands55e50902008-01-06 10:12:28 +00002381// This routine must be kept in sync with isCastable.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002382Instruction::CastOps
Reid Spencerc4dacf22006-12-04 02:43:42 +00002383CastInst::getCastOpcode(
Chris Lattner229907c2011-07-18 04:54:35 +00002384 const Value *Src, bool SrcIsSigned, Type *DestTy, bool DestIsSigned) {
2385 Type *SrcTy = Src->getType();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002386
Duncan Sands55e50902008-01-06 10:12:28 +00002387 assert(SrcTy->isFirstClassType() && DestTy->isFirstClassType() &&
2388 "Only first class types are castable!");
2389
Duncan Sandsa8514532011-05-18 07:13:41 +00002390 if (SrcTy == DestTy)
2391 return BitCast;
2392
Chris Lattner229907c2011-07-18 04:54:35 +00002393 if (VectorType *SrcVecTy = dyn_cast<VectorType>(SrcTy))
2394 if (VectorType *DestVecTy = dyn_cast<VectorType>(DestTy))
Duncan Sandsa8514532011-05-18 07:13:41 +00002395 if (SrcVecTy->getNumElements() == DestVecTy->getNumElements()) {
2396 // An element by element cast. Find the appropriate opcode based on the
2397 // element types.
2398 SrcTy = SrcVecTy->getElementType();
2399 DestTy = DestVecTy->getElementType();
2400 }
2401
2402 // Get the bit sizes, we'll need these
Duncan Sands7f646562011-05-18 09:21:57 +00002403 unsigned SrcBits = SrcTy->getPrimitiveSizeInBits(); // 0 for ptr
2404 unsigned DestBits = DestTy->getPrimitiveSizeInBits(); // 0 for ptr
Duncan Sandsa8514532011-05-18 07:13:41 +00002405
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002406 // Run through the possibilities ...
Duncan Sands9dff9be2010-02-15 16:12:20 +00002407 if (DestTy->isIntegerTy()) { // Casting to integral
2408 if (SrcTy->isIntegerTy()) { // Casting from integral
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002409 if (DestBits < SrcBits)
2410 return Trunc; // int -> smaller int
2411 else if (DestBits > SrcBits) { // its an extension
Reid Spencerc4dacf22006-12-04 02:43:42 +00002412 if (SrcIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002413 return SExt; // signed -> SEXT
2414 else
2415 return ZExt; // unsigned -> ZEXT
2416 } else {
2417 return BitCast; // Same size, No-op cast
2418 }
Duncan Sands9dff9be2010-02-15 16:12:20 +00002419 } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt
Reid Spencerc4dacf22006-12-04 02:43:42 +00002420 if (DestIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002421 return FPToSI; // FP -> sint
2422 else
2423 return FPToUI; // FP -> uint
Duncan Sands27bd0df2011-05-18 10:59:25 +00002424 } else if (SrcTy->isVectorTy()) {
2425 assert(DestBits == SrcBits &&
2426 "Casting vector to integer of different width");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002427 return BitCast; // Same size, no-op cast
2428 } else {
Duncan Sands19d0b472010-02-16 11:11:14 +00002429 assert(SrcTy->isPointerTy() &&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002430 "Casting from a value that is not first-class type");
2431 return PtrToInt; // ptr -> int
2432 }
Duncan Sands9dff9be2010-02-15 16:12:20 +00002433 } else if (DestTy->isFloatingPointTy()) { // Casting to floating pt
2434 if (SrcTy->isIntegerTy()) { // Casting from integral
Reid Spencerc4dacf22006-12-04 02:43:42 +00002435 if (SrcIsSigned)
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002436 return SIToFP; // sint -> FP
2437 else
2438 return UIToFP; // uint -> FP
Duncan Sands9dff9be2010-02-15 16:12:20 +00002439 } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002440 if (DestBits < SrcBits) {
2441 return FPTrunc; // FP -> smaller FP
2442 } else if (DestBits > SrcBits) {
2443 return FPExt; // FP -> larger FP
2444 } else {
2445 return BitCast; // same size, no-op cast
2446 }
Duncan Sands27bd0df2011-05-18 10:59:25 +00002447 } else if (SrcTy->isVectorTy()) {
2448 assert(DestBits == SrcBits &&
Dan Gohmanfead7972007-05-11 21:43:24 +00002449 "Casting vector to floating point of different width");
Devang Patele9432132008-11-05 01:37:40 +00002450 return BitCast; // same size, no-op cast
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002451 } else {
Torok Edwinfbcc6632009-07-14 16:55:14 +00002452 llvm_unreachable("Casting pointer or non-first class to float");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002453 }
Duncan Sands27bd0df2011-05-18 10:59:25 +00002454 } else if (DestTy->isVectorTy()) {
2455 assert(DestBits == SrcBits &&
2456 "Illegal cast to vector (wrong type or size)");
2457 return BitCast;
Duncan Sands19d0b472010-02-16 11:11:14 +00002458 } else if (DestTy->isPointerTy()) {
2459 if (SrcTy->isPointerTy()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002460 return BitCast; // ptr -> ptr
Duncan Sands9dff9be2010-02-15 16:12:20 +00002461 } else if (SrcTy->isIntegerTy()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002462 return IntToPtr; // int -> ptr
2463 } else {
2464 assert(!"Casting pointer to other than pointer or int");
2465 }
Dale Johannesendd224d22010-09-30 23:57:10 +00002466 } else if (DestTy->isX86_MMXTy()) {
Duncan Sands27bd0df2011-05-18 10:59:25 +00002467 if (SrcTy->isVectorTy()) {
2468 assert(DestBits == SrcBits && "Casting vector of wrong width to X86_MMX");
Dale Johannesendd224d22010-09-30 23:57:10 +00002469 return BitCast; // 64-bit vector to MMX
2470 } else {
2471 assert(!"Illegal cast to X86_MMX");
2472 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002473 } else {
2474 assert(!"Casting to type that is not first-class");
2475 }
2476
2477 // If we fall through to here we probably hit an assertion cast above
2478 // and assertions are not turned on. Anything we return is an error, so
2479 // BitCast is as good a choice as any.
2480 return BitCast;
2481}
2482
2483//===----------------------------------------------------------------------===//
2484// CastInst SubClass Constructors
2485//===----------------------------------------------------------------------===//
2486
2487/// Check that the construction parameters for a CastInst are correct. This
2488/// could be broken out into the separate constructors but it is useful to have
2489/// it in one place and to eliminate the redundant code for getting the sizes
2490/// of the types involved.
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002491bool
Chris Lattner229907c2011-07-18 04:54:35 +00002492CastInst::castIsValid(Instruction::CastOps op, Value *S, Type *DstTy) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002493
2494 // Check for type sanity on the arguments
Chris Lattner229907c2011-07-18 04:54:35 +00002495 Type *SrcTy = S->getType();
Chris Lattner37bc78a2010-01-26 21:51:43 +00002496 if (!SrcTy->isFirstClassType() || !DstTy->isFirstClassType() ||
2497 SrcTy->isAggregateType() || DstTy->isAggregateType())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002498 return false;
2499
2500 // Get the size of the types in bits, we'll need this later
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002501 unsigned SrcBitSize = SrcTy->getScalarSizeInBits();
2502 unsigned DstBitSize = DstTy->getScalarSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002503
Duncan Sands7f646562011-05-18 09:21:57 +00002504 // If these are vector types, get the lengths of the vectors (using zero for
2505 // scalar types means that checking that vector lengths match also checks that
2506 // scalars are not being converted to vectors or vectors to scalars).
2507 unsigned SrcLength = SrcTy->isVectorTy() ?
2508 cast<VectorType>(SrcTy)->getNumElements() : 0;
2509 unsigned DstLength = DstTy->isVectorTy() ?
2510 cast<VectorType>(DstTy)->getNumElements() : 0;
2511
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002512 // Switch on the opcode provided
2513 switch (op) {
2514 default: return false; // This is an input error
2515 case Instruction::Trunc:
Duncan Sands7f646562011-05-18 09:21:57 +00002516 return SrcTy->isIntOrIntVectorTy() && DstTy->isIntOrIntVectorTy() &&
2517 SrcLength == DstLength && SrcBitSize > DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002518 case Instruction::ZExt:
Duncan Sands7f646562011-05-18 09:21:57 +00002519 return SrcTy->isIntOrIntVectorTy() && DstTy->isIntOrIntVectorTy() &&
2520 SrcLength == DstLength && SrcBitSize < DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002521 case Instruction::SExt:
Duncan Sands7f646562011-05-18 09:21:57 +00002522 return SrcTy->isIntOrIntVectorTy() && DstTy->isIntOrIntVectorTy() &&
2523 SrcLength == DstLength && SrcBitSize < DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002524 case Instruction::FPTrunc:
Duncan Sands7f646562011-05-18 09:21:57 +00002525 return SrcTy->isFPOrFPVectorTy() && DstTy->isFPOrFPVectorTy() &&
2526 SrcLength == DstLength && SrcBitSize > DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002527 case Instruction::FPExt:
Duncan Sands7f646562011-05-18 09:21:57 +00002528 return SrcTy->isFPOrFPVectorTy() && DstTy->isFPOrFPVectorTy() &&
2529 SrcLength == DstLength && SrcBitSize < DstBitSize;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002530 case Instruction::UIToFP:
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002531 case Instruction::SIToFP:
Duncan Sands7f646562011-05-18 09:21:57 +00002532 return SrcTy->isIntOrIntVectorTy() && DstTy->isFPOrFPVectorTy() &&
2533 SrcLength == DstLength;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002534 case Instruction::FPToUI:
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002535 case Instruction::FPToSI:
Duncan Sands7f646562011-05-18 09:21:57 +00002536 return SrcTy->isFPOrFPVectorTy() && DstTy->isIntOrIntVectorTy() &&
2537 SrcLength == DstLength;
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002538 case Instruction::PtrToInt:
Duncan Sands19d0b472010-02-16 11:11:14 +00002539 return SrcTy->isPointerTy() && DstTy->isIntegerTy();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002540 case Instruction::IntToPtr:
Duncan Sands19d0b472010-02-16 11:11:14 +00002541 return SrcTy->isIntegerTy() && DstTy->isPointerTy();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002542 case Instruction::BitCast:
2543 // BitCast implies a no-op cast of type only. No bits change.
2544 // However, you can't cast pointers to anything but pointers.
Duncan Sands19d0b472010-02-16 11:11:14 +00002545 if (SrcTy->isPointerTy() != DstTy->isPointerTy())
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002546 return false;
2547
Duncan Sands55e50902008-01-06 10:12:28 +00002548 // Now we know we're not dealing with a pointer/non-pointer mismatch. In all
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002549 // these cases, the cast is okay if the source and destination bit widths
2550 // are identical.
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002551 return SrcTy->getPrimitiveSizeInBits() == DstTy->getPrimitiveSizeInBits();
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002552 }
2553}
2554
2555TruncInst::TruncInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002556 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002557) : CastInst(Ty, Trunc, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002558 assert(castIsValid(getOpcode(), S, Ty) && "Illegal Trunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002559}
2560
2561TruncInst::TruncInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002562 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002563) : CastInst(Ty, Trunc, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002564 assert(castIsValid(getOpcode(), S, Ty) && "Illegal Trunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002565}
2566
2567ZExtInst::ZExtInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002568 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002569) : CastInst(Ty, ZExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002570 assert(castIsValid(getOpcode(), S, Ty) && "Illegal ZExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002571}
2572
2573ZExtInst::ZExtInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002574 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002575) : CastInst(Ty, ZExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002576 assert(castIsValid(getOpcode(), S, Ty) && "Illegal ZExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002577}
2578SExtInst::SExtInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002579 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002580) : CastInst(Ty, SExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002581 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002582}
2583
Jeff Cohencc08c832006-12-02 02:22:01 +00002584SExtInst::SExtInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002585 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002586) : CastInst(Ty, SExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002587 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002588}
2589
2590FPTruncInst::FPTruncInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002591 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002592) : CastInst(Ty, FPTrunc, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002593 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPTrunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002594}
2595
2596FPTruncInst::FPTruncInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002597 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002598) : CastInst(Ty, FPTrunc, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002599 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPTrunc");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002600}
2601
2602FPExtInst::FPExtInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002603 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002604) : CastInst(Ty, FPExt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002605 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002606}
2607
2608FPExtInst::FPExtInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002609 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002610) : CastInst(Ty, FPExt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002611 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPExt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002612}
2613
2614UIToFPInst::UIToFPInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002615 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002616) : CastInst(Ty, UIToFP, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002617 assert(castIsValid(getOpcode(), S, Ty) && "Illegal UIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002618}
2619
2620UIToFPInst::UIToFPInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002621 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002622) : CastInst(Ty, UIToFP, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002623 assert(castIsValid(getOpcode(), S, Ty) && "Illegal UIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002624}
2625
2626SIToFPInst::SIToFPInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002627 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002628) : CastInst(Ty, SIToFP, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002629 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002630}
2631
2632SIToFPInst::SIToFPInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002633 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002634) : CastInst(Ty, SIToFP, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002635 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SIToFP");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002636}
2637
2638FPToUIInst::FPToUIInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002639 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002640) : CastInst(Ty, FPToUI, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002641 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToUI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002642}
2643
2644FPToUIInst::FPToUIInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002645 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002646) : CastInst(Ty, FPToUI, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002647 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToUI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002648}
2649
2650FPToSIInst::FPToSIInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002651 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002652) : CastInst(Ty, FPToSI, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002653 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToSI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002654}
2655
2656FPToSIInst::FPToSIInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002657 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002658) : CastInst(Ty, FPToSI, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002659 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToSI");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002660}
2661
2662PtrToIntInst::PtrToIntInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002663 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002664) : CastInst(Ty, PtrToInt, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002665 assert(castIsValid(getOpcode(), S, Ty) && "Illegal PtrToInt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002666}
2667
2668PtrToIntInst::PtrToIntInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002669 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002670) : CastInst(Ty, PtrToInt, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002671 assert(castIsValid(getOpcode(), S, Ty) && "Illegal PtrToInt");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002672}
2673
2674IntToPtrInst::IntToPtrInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002675 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002676) : CastInst(Ty, IntToPtr, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002677 assert(castIsValid(getOpcode(), S, Ty) && "Illegal IntToPtr");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002678}
2679
2680IntToPtrInst::IntToPtrInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002681 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002682) : CastInst(Ty, IntToPtr, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002683 assert(castIsValid(getOpcode(), S, Ty) && "Illegal IntToPtr");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002684}
2685
2686BitCastInst::BitCastInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002687 Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002688) : CastInst(Ty, BitCast, S, Name, InsertBefore) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002689 assert(castIsValid(getOpcode(), S, Ty) && "Illegal BitCast");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002690}
2691
2692BitCastInst::BitCastInst(
Chris Lattner229907c2011-07-18 04:54:35 +00002693 Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002694) : CastInst(Ty, BitCast, S, Name, InsertAtEnd) {
Reid Spencer00e5e0e2007-01-17 02:46:11 +00002695 assert(castIsValid(getOpcode(), S, Ty) && "Illegal BitCast");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002696}
Chris Lattnerf16dc002006-09-17 19:29:56 +00002697
2698//===----------------------------------------------------------------------===//
Reid Spencerd9436b62006-11-20 01:22:35 +00002699// CmpInst Classes
2700//===----------------------------------------------------------------------===//
2701
Chris Lattneraec33da2010-01-22 06:25:37 +00002702void CmpInst::Anchor() const {}
2703
Chris Lattner229907c2011-07-18 04:54:35 +00002704CmpInst::CmpInst(Type *ty, OtherOps op, unsigned short predicate,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002705 Value *LHS, Value *RHS, const Twine &Name,
Nate Begemand2195702008-05-12 19:01:56 +00002706 Instruction *InsertBefore)
Nate Begeman66d0a0e2008-05-12 20:11:05 +00002707 : Instruction(ty, op,
Gabor Greiff6caff662008-05-10 08:32:32 +00002708 OperandTraits<CmpInst>::op_begin(this),
2709 OperandTraits<CmpInst>::operands(this),
2710 InsertBefore) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00002711 Op<0>() = LHS;
2712 Op<1>() = RHS;
Chris Lattnerb9c86512009-12-29 02:14:09 +00002713 setPredicate((Predicate)predicate);
Reid Spencer871a9ea2007-04-11 13:04:48 +00002714 setName(Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002715}
Gabor Greiff6caff662008-05-10 08:32:32 +00002716
Chris Lattner229907c2011-07-18 04:54:35 +00002717CmpInst::CmpInst(Type *ty, OtherOps op, unsigned short predicate,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002718 Value *LHS, Value *RHS, const Twine &Name,
Nate Begemand2195702008-05-12 19:01:56 +00002719 BasicBlock *InsertAtEnd)
Nate Begeman66d0a0e2008-05-12 20:11:05 +00002720 : Instruction(ty, op,
Gabor Greiff6caff662008-05-10 08:32:32 +00002721 OperandTraits<CmpInst>::op_begin(this),
2722 OperandTraits<CmpInst>::operands(this),
2723 InsertAtEnd) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00002724 Op<0>() = LHS;
2725 Op<1>() = RHS;
Chris Lattnerb9c86512009-12-29 02:14:09 +00002726 setPredicate((Predicate)predicate);
Reid Spencer871a9ea2007-04-11 13:04:48 +00002727 setName(Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002728}
2729
2730CmpInst *
Dan Gohmanad1f0a12009-08-25 23:17:54 +00002731CmpInst::Create(OtherOps Op, unsigned short predicate,
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002732 Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002733 const Twine &Name, Instruction *InsertBefore) {
Reid Spencerd9436b62006-11-20 01:22:35 +00002734 if (Op == Instruction::ICmp) {
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002735 if (InsertBefore)
2736 return new ICmpInst(InsertBefore, CmpInst::Predicate(predicate),
2737 S1, S2, Name);
2738 else
Dan Gohmanad1f0a12009-08-25 23:17:54 +00002739 return new ICmpInst(CmpInst::Predicate(predicate),
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002740 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002741 }
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002742
2743 if (InsertBefore)
2744 return new FCmpInst(InsertBefore, CmpInst::Predicate(predicate),
2745 S1, S2, Name);
2746 else
Dan Gohmanad1f0a12009-08-25 23:17:54 +00002747 return new FCmpInst(CmpInst::Predicate(predicate),
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002748 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002749}
2750
2751CmpInst *
Gabor Greife1f6e4b2008-05-16 19:29:10 +00002752CmpInst::Create(OtherOps Op, unsigned short predicate, Value *S1, Value *S2,
Daniel Dunbar4975db62009-07-25 04:41:11 +00002753 const Twine &Name, BasicBlock *InsertAtEnd) {
Reid Spencerd9436b62006-11-20 01:22:35 +00002754 if (Op == Instruction::ICmp) {
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002755 return new ICmpInst(*InsertAtEnd, CmpInst::Predicate(predicate),
2756 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002757 }
Owen Anderson1e5f00e2009-07-09 23:48:35 +00002758 return new FCmpInst(*InsertAtEnd, CmpInst::Predicate(predicate),
2759 S1, S2, Name);
Reid Spencerd9436b62006-11-20 01:22:35 +00002760}
2761
2762void CmpInst::swapOperands() {
2763 if (ICmpInst *IC = dyn_cast<ICmpInst>(this))
2764 IC->swapOperands();
2765 else
2766 cast<FCmpInst>(this)->swapOperands();
2767}
2768
Duncan Sands95c4ecc2011-01-04 12:52:29 +00002769bool CmpInst::isCommutative() const {
2770 if (const ICmpInst *IC = dyn_cast<ICmpInst>(this))
Reid Spencerd9436b62006-11-20 01:22:35 +00002771 return IC->isCommutative();
2772 return cast<FCmpInst>(this)->isCommutative();
2773}
2774
Duncan Sands95c4ecc2011-01-04 12:52:29 +00002775bool CmpInst::isEquality() const {
2776 if (const ICmpInst *IC = dyn_cast<ICmpInst>(this))
Reid Spencerd9436b62006-11-20 01:22:35 +00002777 return IC->isEquality();
2778 return cast<FCmpInst>(this)->isEquality();
2779}
2780
2781
Dan Gohman4e724382008-05-31 02:47:54 +00002782CmpInst::Predicate CmpInst::getInversePredicate(Predicate pred) {
Reid Spencerd9436b62006-11-20 01:22:35 +00002783 switch (pred) {
Dan Gohman4e724382008-05-31 02:47:54 +00002784 default: assert(!"Unknown cmp predicate!");
Reid Spencerd9436b62006-11-20 01:22:35 +00002785 case ICMP_EQ: return ICMP_NE;
2786 case ICMP_NE: return ICMP_EQ;
2787 case ICMP_UGT: return ICMP_ULE;
2788 case ICMP_ULT: return ICMP_UGE;
2789 case ICMP_UGE: return ICMP_ULT;
2790 case ICMP_ULE: return ICMP_UGT;
2791 case ICMP_SGT: return ICMP_SLE;
2792 case ICMP_SLT: return ICMP_SGE;
2793 case ICMP_SGE: return ICMP_SLT;
2794 case ICMP_SLE: return ICMP_SGT;
Reid Spencerd9436b62006-11-20 01:22:35 +00002795
Dan Gohman4e724382008-05-31 02:47:54 +00002796 case FCMP_OEQ: return FCMP_UNE;
2797 case FCMP_ONE: return FCMP_UEQ;
2798 case FCMP_OGT: return FCMP_ULE;
2799 case FCMP_OLT: return FCMP_UGE;
2800 case FCMP_OGE: return FCMP_ULT;
2801 case FCMP_OLE: return FCMP_UGT;
2802 case FCMP_UEQ: return FCMP_ONE;
2803 case FCMP_UNE: return FCMP_OEQ;
2804 case FCMP_UGT: return FCMP_OLE;
2805 case FCMP_ULT: return FCMP_OGE;
2806 case FCMP_UGE: return FCMP_OLT;
2807 case FCMP_ULE: return FCMP_OGT;
2808 case FCMP_ORD: return FCMP_UNO;
2809 case FCMP_UNO: return FCMP_ORD;
2810 case FCMP_TRUE: return FCMP_FALSE;
2811 case FCMP_FALSE: return FCMP_TRUE;
Reid Spencerd9436b62006-11-20 01:22:35 +00002812 }
2813}
2814
Reid Spencer266e42b2006-12-23 06:05:41 +00002815ICmpInst::Predicate ICmpInst::getSignedPredicate(Predicate pred) {
2816 switch (pred) {
2817 default: assert(! "Unknown icmp predicate!");
2818 case ICMP_EQ: case ICMP_NE:
2819 case ICMP_SGT: case ICMP_SLT: case ICMP_SGE: case ICMP_SLE:
2820 return pred;
2821 case ICMP_UGT: return ICMP_SGT;
2822 case ICMP_ULT: return ICMP_SLT;
2823 case ICMP_UGE: return ICMP_SGE;
2824 case ICMP_ULE: return ICMP_SLE;
2825 }
2826}
2827
Nick Lewycky8ea81e82008-01-28 03:48:02 +00002828ICmpInst::Predicate ICmpInst::getUnsignedPredicate(Predicate pred) {
2829 switch (pred) {
2830 default: assert(! "Unknown icmp predicate!");
2831 case ICMP_EQ: case ICMP_NE:
2832 case ICMP_UGT: case ICMP_ULT: case ICMP_UGE: case ICMP_ULE:
2833 return pred;
2834 case ICMP_SGT: return ICMP_UGT;
2835 case ICMP_SLT: return ICMP_ULT;
2836 case ICMP_SGE: return ICMP_UGE;
2837 case ICMP_SLE: return ICMP_ULE;
2838 }
2839}
2840
Reid Spencer0286bc12007-02-28 22:00:54 +00002841/// Initialize a set of values that all satisfy the condition with C.
2842///
2843ConstantRange
2844ICmpInst::makeConstantRange(Predicate pred, const APInt &C) {
2845 APInt Lower(C);
2846 APInt Upper(C);
2847 uint32_t BitWidth = C.getBitWidth();
2848 switch (pred) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00002849 default: llvm_unreachable("Invalid ICmp opcode to ConstantRange ctor!");
Reid Spencer0286bc12007-02-28 22:00:54 +00002850 case ICmpInst::ICMP_EQ: Upper++; break;
2851 case ICmpInst::ICMP_NE: Lower++; break;
Dan Gohmand86e2952010-01-26 16:04:20 +00002852 case ICmpInst::ICMP_ULT:
2853 Lower = APInt::getMinValue(BitWidth);
2854 // Check for an empty-set condition.
2855 if (Lower == Upper)
2856 return ConstantRange(BitWidth, /*isFullSet=*/false);
2857 break;
2858 case ICmpInst::ICMP_SLT:
2859 Lower = APInt::getSignedMinValue(BitWidth);
2860 // Check for an empty-set condition.
2861 if (Lower == Upper)
2862 return ConstantRange(BitWidth, /*isFullSet=*/false);
2863 break;
Reid Spencer0286bc12007-02-28 22:00:54 +00002864 case ICmpInst::ICMP_UGT:
2865 Lower++; Upper = APInt::getMinValue(BitWidth); // Min = Next(Max)
Dan Gohmand86e2952010-01-26 16:04:20 +00002866 // Check for an empty-set condition.
2867 if (Lower == Upper)
2868 return ConstantRange(BitWidth, /*isFullSet=*/false);
Reid Spencer0286bc12007-02-28 22:00:54 +00002869 break;
2870 case ICmpInst::ICMP_SGT:
2871 Lower++; Upper = APInt::getSignedMinValue(BitWidth); // Min = Next(Max)
Dan Gohmand86e2952010-01-26 16:04:20 +00002872 // Check for an empty-set condition.
2873 if (Lower == Upper)
2874 return ConstantRange(BitWidth, /*isFullSet=*/false);
Reid Spencer0286bc12007-02-28 22:00:54 +00002875 break;
2876 case ICmpInst::ICMP_ULE:
2877 Lower = APInt::getMinValue(BitWidth); Upper++;
Dan Gohmand86e2952010-01-26 16:04:20 +00002878 // Check for a full-set condition.
2879 if (Lower == Upper)
2880 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer0286bc12007-02-28 22:00:54 +00002881 break;
2882 case ICmpInst::ICMP_SLE:
2883 Lower = APInt::getSignedMinValue(BitWidth); Upper++;
Dan Gohmand86e2952010-01-26 16:04:20 +00002884 // Check for a full-set condition.
2885 if (Lower == Upper)
2886 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer0286bc12007-02-28 22:00:54 +00002887 break;
2888 case ICmpInst::ICMP_UGE:
2889 Upper = APInt::getMinValue(BitWidth); // Min = Next(Max)
Dan Gohmand86e2952010-01-26 16:04:20 +00002890 // Check for a full-set condition.
2891 if (Lower == Upper)
2892 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer0286bc12007-02-28 22:00:54 +00002893 break;
2894 case ICmpInst::ICMP_SGE:
2895 Upper = APInt::getSignedMinValue(BitWidth); // Min = Next(Max)
Dan Gohmand86e2952010-01-26 16:04:20 +00002896 // Check for a full-set condition.
2897 if (Lower == Upper)
2898 return ConstantRange(BitWidth, /*isFullSet=*/true);
Reid Spencer0286bc12007-02-28 22:00:54 +00002899 break;
2900 }
2901 return ConstantRange(Lower, Upper);
2902}
2903
Dan Gohman4e724382008-05-31 02:47:54 +00002904CmpInst::Predicate CmpInst::getSwappedPredicate(Predicate pred) {
Reid Spencerd9436b62006-11-20 01:22:35 +00002905 switch (pred) {
Dan Gohman4e724382008-05-31 02:47:54 +00002906 default: assert(!"Unknown cmp predicate!");
2907 case ICMP_EQ: case ICMP_NE:
2908 return pred;
2909 case ICMP_SGT: return ICMP_SLT;
2910 case ICMP_SLT: return ICMP_SGT;
2911 case ICMP_SGE: return ICMP_SLE;
2912 case ICMP_SLE: return ICMP_SGE;
2913 case ICMP_UGT: return ICMP_ULT;
2914 case ICMP_ULT: return ICMP_UGT;
2915 case ICMP_UGE: return ICMP_ULE;
2916 case ICMP_ULE: return ICMP_UGE;
2917
Reid Spencerd9436b62006-11-20 01:22:35 +00002918 case FCMP_FALSE: case FCMP_TRUE:
2919 case FCMP_OEQ: case FCMP_ONE:
2920 case FCMP_UEQ: case FCMP_UNE:
2921 case FCMP_ORD: case FCMP_UNO:
2922 return pred;
2923 case FCMP_OGT: return FCMP_OLT;
2924 case FCMP_OLT: return FCMP_OGT;
2925 case FCMP_OGE: return FCMP_OLE;
2926 case FCMP_OLE: return FCMP_OGE;
2927 case FCMP_UGT: return FCMP_ULT;
2928 case FCMP_ULT: return FCMP_UGT;
2929 case FCMP_UGE: return FCMP_ULE;
2930 case FCMP_ULE: return FCMP_UGE;
2931 }
2932}
2933
Reid Spencer266e42b2006-12-23 06:05:41 +00002934bool CmpInst::isUnsigned(unsigned short predicate) {
2935 switch (predicate) {
2936 default: return false;
2937 case ICmpInst::ICMP_ULT: case ICmpInst::ICMP_ULE: case ICmpInst::ICMP_UGT:
2938 case ICmpInst::ICMP_UGE: return true;
2939 }
2940}
2941
Nick Lewycky7494b3b2009-10-25 03:50:03 +00002942bool CmpInst::isSigned(unsigned short predicate) {
Reid Spencer266e42b2006-12-23 06:05:41 +00002943 switch (predicate) {
2944 default: return false;
2945 case ICmpInst::ICMP_SLT: case ICmpInst::ICMP_SLE: case ICmpInst::ICMP_SGT:
2946 case ICmpInst::ICMP_SGE: return true;
2947 }
2948}
2949
2950bool CmpInst::isOrdered(unsigned short predicate) {
2951 switch (predicate) {
2952 default: return false;
2953 case FCmpInst::FCMP_OEQ: case FCmpInst::FCMP_ONE: case FCmpInst::FCMP_OGT:
2954 case FCmpInst::FCMP_OLT: case FCmpInst::FCMP_OGE: case FCmpInst::FCMP_OLE:
2955 case FCmpInst::FCMP_ORD: return true;
2956 }
2957}
2958
2959bool CmpInst::isUnordered(unsigned short predicate) {
2960 switch (predicate) {
2961 default: return false;
2962 case FCmpInst::FCMP_UEQ: case FCmpInst::FCMP_UNE: case FCmpInst::FCMP_UGT:
2963 case FCmpInst::FCMP_ULT: case FCmpInst::FCMP_UGE: case FCmpInst::FCMP_ULE:
2964 case FCmpInst::FCMP_UNO: return true;
2965 }
2966}
2967
Nick Lewycky7494b3b2009-10-25 03:50:03 +00002968bool CmpInst::isTrueWhenEqual(unsigned short predicate) {
2969 switch(predicate) {
2970 default: return false;
2971 case ICMP_EQ: case ICMP_UGE: case ICMP_ULE: case ICMP_SGE: case ICMP_SLE:
2972 case FCMP_TRUE: case FCMP_UEQ: case FCMP_UGE: case FCMP_ULE: return true;
2973 }
2974}
2975
2976bool CmpInst::isFalseWhenEqual(unsigned short predicate) {
2977 switch(predicate) {
2978 case ICMP_NE: case ICMP_UGT: case ICMP_ULT: case ICMP_SGT: case ICMP_SLT:
2979 case FCMP_FALSE: case FCMP_ONE: case FCMP_OGT: case FCMP_OLT: return true;
2980 default: return false;
2981 }
2982}
2983
2984
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002985//===----------------------------------------------------------------------===//
2986// SwitchInst Implementation
2987//===----------------------------------------------------------------------===//
2988
Chris Lattnerbaf00152010-11-17 05:41:46 +00002989void SwitchInst::init(Value *Value, BasicBlock *Default, unsigned NumReserved) {
2990 assert(Value && Default && NumReserved);
2991 ReservedSpace = NumReserved;
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002992 NumOperands = 2;
Gabor Greiff6caff662008-05-10 08:32:32 +00002993 OperandList = allocHungoffUses(ReservedSpace);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00002994
Gabor Greif2d3024d2008-05-26 21:33:52 +00002995 OperandList[0] = Value;
2996 OperandList[1] = Default;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00002997}
2998
Chris Lattner2195fc42007-02-24 00:55:48 +00002999/// SwitchInst ctor - Create a new switch instruction, specifying a value to
3000/// switch on and a default destination. The number of additional cases can
3001/// be specified here to make memory allocation more efficient. This
3002/// constructor can also autoinsert before another instruction.
3003SwitchInst::SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
3004 Instruction *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +00003005 : TerminatorInst(Type::getVoidTy(Value->getContext()), Instruction::Switch,
3006 0, 0, InsertBefore) {
Chris Lattnerbaf00152010-11-17 05:41:46 +00003007 init(Value, Default, 2+NumCases*2);
Chris Lattner2195fc42007-02-24 00:55:48 +00003008}
3009
3010/// SwitchInst ctor - Create a new switch instruction, specifying a value to
3011/// switch on and a default destination. The number of additional cases can
3012/// be specified here to make memory allocation more efficient. This
3013/// constructor also autoinserts at the end of the specified BasicBlock.
3014SwitchInst::SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
3015 BasicBlock *InsertAtEnd)
Owen Anderson55f1c092009-08-13 21:58:54 +00003016 : TerminatorInst(Type::getVoidTy(Value->getContext()), Instruction::Switch,
3017 0, 0, InsertAtEnd) {
Chris Lattnerbaf00152010-11-17 05:41:46 +00003018 init(Value, Default, 2+NumCases*2);
Chris Lattner2195fc42007-02-24 00:55:48 +00003019}
3020
Misha Brukmanb1c93172005-04-21 23:48:37 +00003021SwitchInst::SwitchInst(const SwitchInst &SI)
Chris Lattnerbaf00152010-11-17 05:41:46 +00003022 : TerminatorInst(SI.getType(), Instruction::Switch, 0, 0) {
3023 init(SI.getCondition(), SI.getDefaultDest(), SI.getNumOperands());
3024 NumOperands = SI.getNumOperands();
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003025 Use *OL = OperandList, *InOL = SI.OperandList;
Chris Lattnerbaf00152010-11-17 05:41:46 +00003026 for (unsigned i = 2, E = SI.getNumOperands(); i != E; i += 2) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00003027 OL[i] = InOL[i];
3028 OL[i+1] = InOL[i+1];
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003029 }
Dan Gohmanc8a27f22009-08-25 22:11:20 +00003030 SubclassOptionalData = SI.SubclassOptionalData;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003031}
3032
Gordon Henriksen14a55692007-12-10 02:14:30 +00003033SwitchInst::~SwitchInst() {
Jay Foadbbb91f22011-01-16 15:30:52 +00003034 dropHungoffUses();
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003035}
3036
3037
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003038/// addCase - Add an entry to the switch instruction...
3039///
Chris Lattner47ac1872005-02-24 05:32:09 +00003040void SwitchInst::addCase(ConstantInt *OnVal, BasicBlock *Dest) {
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003041 unsigned OpNo = NumOperands;
3042 if (OpNo+2 > ReservedSpace)
Jay Foade98f29d2011-04-01 08:00:58 +00003043 growOperands(); // Get more space!
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003044 // Initialize some new operands.
Chris Lattnerf711f8d2005-01-29 01:05:12 +00003045 assert(OpNo+1 < ReservedSpace && "Growing didn't work!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003046 NumOperands = OpNo+2;
Gabor Greif2d3024d2008-05-26 21:33:52 +00003047 OperandList[OpNo] = OnVal;
3048 OperandList[OpNo+1] = Dest;
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003049}
3050
3051/// removeCase - This method removes the specified successor from the switch
3052/// instruction. Note that this cannot be used to remove the default
3053/// destination (successor #0).
3054///
3055void SwitchInst::removeCase(unsigned idx) {
3056 assert(idx != 0 && "Cannot remove the default case!");
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003057 assert(idx*2 < getNumOperands() && "Successor index out of range!!!");
3058
3059 unsigned NumOps = getNumOperands();
3060 Use *OL = OperandList;
3061
Jay Foad14277722011-02-01 09:22:34 +00003062 // Overwrite this case with the end of the list.
3063 if ((idx + 1) * 2 != NumOps) {
3064 OL[idx * 2] = OL[NumOps - 2];
3065 OL[idx * 2 + 1] = OL[NumOps - 1];
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003066 }
3067
3068 // Nuke the last value.
3069 OL[NumOps-2].set(0);
3070 OL[NumOps-2+1].set(0);
3071 NumOperands = NumOps-2;
3072}
3073
Jay Foade98f29d2011-04-01 08:00:58 +00003074/// growOperands - grow operands - This grows the operand list in response
3075/// to a push_back style of operation. This grows the number of ops by 3 times.
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003076///
Jay Foade98f29d2011-04-01 08:00:58 +00003077void SwitchInst::growOperands() {
Gabor Greiff6caff662008-05-10 08:32:32 +00003078 unsigned e = getNumOperands();
Jay Foade98f29d2011-04-01 08:00:58 +00003079 unsigned NumOps = e*3;
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003080
3081 ReservedSpace = NumOps;
Gabor Greiff6caff662008-05-10 08:32:32 +00003082 Use *NewOps = allocHungoffUses(NumOps);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003083 Use *OldOps = OperandList;
Gabor Greiff6caff662008-05-10 08:32:32 +00003084 for (unsigned i = 0; i != e; ++i) {
Gabor Greif2d3024d2008-05-26 21:33:52 +00003085 NewOps[i] = OldOps[i];
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003086 }
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003087 OperandList = NewOps;
Jay Foadbbb91f22011-01-16 15:30:52 +00003088 Use::zap(OldOps, OldOps + e, true);
Chris Lattnerafdb3de2005-01-29 00:35:16 +00003089}
3090
3091
3092BasicBlock *SwitchInst::getSuccessorV(unsigned idx) const {
3093 return getSuccessor(idx);
3094}
3095unsigned SwitchInst::getNumSuccessorsV() const {
3096 return getNumSuccessors();
3097}
3098void SwitchInst::setSuccessorV(unsigned idx, BasicBlock *B) {
3099 setSuccessor(idx, B);
Alkis Evlogimenos93a7c062004-07-29 12:33:25 +00003100}
Chris Lattnerf22be932004-10-15 23:52:53 +00003101
Chris Lattner3ed871f2009-10-27 19:13:16 +00003102//===----------------------------------------------------------------------===//
Jay Foadbbb91f22011-01-16 15:30:52 +00003103// IndirectBrInst Implementation
Chris Lattner3ed871f2009-10-27 19:13:16 +00003104//===----------------------------------------------------------------------===//
3105
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003106void IndirectBrInst::init(Value *Address, unsigned NumDests) {
Duncan Sands19d0b472010-02-16 11:11:14 +00003107 assert(Address && Address->getType()->isPointerTy() &&
Chris Lattner6747b4c2009-10-29 05:53:32 +00003108 "Address of indirectbr must be a pointer");
Chris Lattner3ed871f2009-10-27 19:13:16 +00003109 ReservedSpace = 1+NumDests;
3110 NumOperands = 1;
3111 OperandList = allocHungoffUses(ReservedSpace);
3112
3113 OperandList[0] = Address;
3114}
3115
3116
Jay Foade98f29d2011-04-01 08:00:58 +00003117/// growOperands - grow operands - This grows the operand list in response
3118/// to a push_back style of operation. This grows the number of ops by 2 times.
Chris Lattner3ed871f2009-10-27 19:13:16 +00003119///
Jay Foade98f29d2011-04-01 08:00:58 +00003120void IndirectBrInst::growOperands() {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003121 unsigned e = getNumOperands();
Jay Foade98f29d2011-04-01 08:00:58 +00003122 unsigned NumOps = e*2;
Chris Lattner3ed871f2009-10-27 19:13:16 +00003123
3124 ReservedSpace = NumOps;
3125 Use *NewOps = allocHungoffUses(NumOps);
3126 Use *OldOps = OperandList;
3127 for (unsigned i = 0; i != e; ++i)
3128 NewOps[i] = OldOps[i];
3129 OperandList = NewOps;
Jay Foadbbb91f22011-01-16 15:30:52 +00003130 Use::zap(OldOps, OldOps + e, true);
Chris Lattner3ed871f2009-10-27 19:13:16 +00003131}
3132
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003133IndirectBrInst::IndirectBrInst(Value *Address, unsigned NumCases,
3134 Instruction *InsertBefore)
3135: TerminatorInst(Type::getVoidTy(Address->getContext()),Instruction::IndirectBr,
Chris Lattner3ed871f2009-10-27 19:13:16 +00003136 0, 0, InsertBefore) {
3137 init(Address, NumCases);
3138}
3139
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003140IndirectBrInst::IndirectBrInst(Value *Address, unsigned NumCases,
3141 BasicBlock *InsertAtEnd)
3142: TerminatorInst(Type::getVoidTy(Address->getContext()),Instruction::IndirectBr,
Chris Lattner3ed871f2009-10-27 19:13:16 +00003143 0, 0, InsertAtEnd) {
3144 init(Address, NumCases);
3145}
3146
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003147IndirectBrInst::IndirectBrInst(const IndirectBrInst &IBI)
3148 : TerminatorInst(Type::getVoidTy(IBI.getContext()), Instruction::IndirectBr,
Chris Lattner3ed871f2009-10-27 19:13:16 +00003149 allocHungoffUses(IBI.getNumOperands()),
3150 IBI.getNumOperands()) {
3151 Use *OL = OperandList, *InOL = IBI.OperandList;
3152 for (unsigned i = 0, E = IBI.getNumOperands(); i != E; ++i)
3153 OL[i] = InOL[i];
3154 SubclassOptionalData = IBI.SubclassOptionalData;
3155}
3156
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003157IndirectBrInst::~IndirectBrInst() {
Jay Foadbbb91f22011-01-16 15:30:52 +00003158 dropHungoffUses();
Chris Lattner3ed871f2009-10-27 19:13:16 +00003159}
3160
3161/// addDestination - Add a destination.
3162///
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003163void IndirectBrInst::addDestination(BasicBlock *DestBB) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003164 unsigned OpNo = NumOperands;
3165 if (OpNo+1 > ReservedSpace)
Jay Foade98f29d2011-04-01 08:00:58 +00003166 growOperands(); // Get more space!
Chris Lattner3ed871f2009-10-27 19:13:16 +00003167 // Initialize some new operands.
3168 assert(OpNo < ReservedSpace && "Growing didn't work!");
3169 NumOperands = OpNo+1;
3170 OperandList[OpNo] = DestBB;
3171}
3172
3173/// removeDestination - This method removes the specified successor from the
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003174/// indirectbr instruction.
3175void IndirectBrInst::removeDestination(unsigned idx) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003176 assert(idx < getNumOperands()-1 && "Successor index out of range!");
3177
3178 unsigned NumOps = getNumOperands();
3179 Use *OL = OperandList;
3180
3181 // Replace this value with the last one.
3182 OL[idx+1] = OL[NumOps-1];
3183
3184 // Nuke the last value.
3185 OL[NumOps-1].set(0);
3186 NumOperands = NumOps-1;
3187}
3188
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003189BasicBlock *IndirectBrInst::getSuccessorV(unsigned idx) const {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003190 return getSuccessor(idx);
3191}
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003192unsigned IndirectBrInst::getNumSuccessorsV() const {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003193 return getNumSuccessors();
3194}
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003195void IndirectBrInst::setSuccessorV(unsigned idx, BasicBlock *B) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00003196 setSuccessor(idx, B);
3197}
3198
3199//===----------------------------------------------------------------------===//
Devang Patel11cf3f42009-10-27 22:16:29 +00003200// clone_impl() implementations
Chris Lattner3ed871f2009-10-27 19:13:16 +00003201//===----------------------------------------------------------------------===//
3202
Chris Lattnerf22be932004-10-15 23:52:53 +00003203// Define these methods here so vtables don't get emitted into every translation
3204// unit that uses these classes.
3205
Devang Patel11cf3f42009-10-27 22:16:29 +00003206GetElementPtrInst *GetElementPtrInst::clone_impl() const {
3207 return new (getNumOperands()) GetElementPtrInst(*this);
Chris Lattnerf22be932004-10-15 23:52:53 +00003208}
3209
Devang Patel11cf3f42009-10-27 22:16:29 +00003210BinaryOperator *BinaryOperator::clone_impl() const {
3211 return Create(getOpcode(), Op<0>(), Op<1>());
Chris Lattnerf22be932004-10-15 23:52:53 +00003212}
3213
Devang Patel11cf3f42009-10-27 22:16:29 +00003214FCmpInst* FCmpInst::clone_impl() const {
3215 return new FCmpInst(getPredicate(), Op<0>(), Op<1>());
Reid Spencerd9436b62006-11-20 01:22:35 +00003216}
3217
Devang Patel11cf3f42009-10-27 22:16:29 +00003218ICmpInst* ICmpInst::clone_impl() const {
3219 return new ICmpInst(getPredicate(), Op<0>(), Op<1>());
Dan Gohman0752bff2008-05-23 00:36:11 +00003220}
3221
Devang Patel11cf3f42009-10-27 22:16:29 +00003222ExtractValueInst *ExtractValueInst::clone_impl() const {
3223 return new ExtractValueInst(*this);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003224}
3225
Devang Patel11cf3f42009-10-27 22:16:29 +00003226InsertValueInst *InsertValueInst::clone_impl() const {
3227 return new InsertValueInst(*this);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003228}
3229
Devang Patel11cf3f42009-10-27 22:16:29 +00003230AllocaInst *AllocaInst::clone_impl() const {
3231 return new AllocaInst(getAllocatedType(),
3232 (Value*)getOperand(0),
3233 getAlignment());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003234}
3235
Devang Patel11cf3f42009-10-27 22:16:29 +00003236LoadInst *LoadInst::clone_impl() const {
Eli Friedman59b66882011-08-09 23:02:53 +00003237 return new LoadInst(getOperand(0), Twine(), isVolatile(),
3238 getAlignment(), getOrdering(), getSynchScope());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003239}
3240
Devang Patel11cf3f42009-10-27 22:16:29 +00003241StoreInst *StoreInst::clone_impl() const {
Eli Friedmancad9f2a2011-08-10 17:39:11 +00003242 return new StoreInst(getOperand(0), getOperand(1), isVolatile(),
Eli Friedman59b66882011-08-09 23:02:53 +00003243 getAlignment(), getOrdering(), getSynchScope());
3244
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003245}
3246
Eli Friedmanc9a551e2011-07-28 21:48:00 +00003247AtomicCmpXchgInst *AtomicCmpXchgInst::clone_impl() const {
3248 AtomicCmpXchgInst *Result =
3249 new AtomicCmpXchgInst(getOperand(0), getOperand(1), getOperand(2),
3250 getOrdering(), getSynchScope());
3251 Result->setVolatile(isVolatile());
3252 return Result;
3253}
3254
3255AtomicRMWInst *AtomicRMWInst::clone_impl() const {
3256 AtomicRMWInst *Result =
3257 new AtomicRMWInst(getOperation(),getOperand(0), getOperand(1),
3258 getOrdering(), getSynchScope());
3259 Result->setVolatile(isVolatile());
3260 return Result;
3261}
3262
Eli Friedmanfee02c62011-07-25 23:16:38 +00003263FenceInst *FenceInst::clone_impl() const {
3264 return new FenceInst(getContext(), getOrdering(), getSynchScope());
3265}
3266
Devang Patel11cf3f42009-10-27 22:16:29 +00003267TruncInst *TruncInst::clone_impl() const {
3268 return new TruncInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003269}
3270
Devang Patel11cf3f42009-10-27 22:16:29 +00003271ZExtInst *ZExtInst::clone_impl() const {
3272 return new ZExtInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003273}
3274
Devang Patel11cf3f42009-10-27 22:16:29 +00003275SExtInst *SExtInst::clone_impl() const {
3276 return new SExtInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003277}
3278
Devang Patel11cf3f42009-10-27 22:16:29 +00003279FPTruncInst *FPTruncInst::clone_impl() const {
3280 return new FPTruncInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003281}
3282
Devang Patel11cf3f42009-10-27 22:16:29 +00003283FPExtInst *FPExtInst::clone_impl() const {
3284 return new FPExtInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003285}
3286
Devang Patel11cf3f42009-10-27 22:16:29 +00003287UIToFPInst *UIToFPInst::clone_impl() const {
3288 return new UIToFPInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003289}
3290
Devang Patel11cf3f42009-10-27 22:16:29 +00003291SIToFPInst *SIToFPInst::clone_impl() const {
3292 return new SIToFPInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003293}
3294
Devang Patel11cf3f42009-10-27 22:16:29 +00003295FPToUIInst *FPToUIInst::clone_impl() const {
3296 return new FPToUIInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003297}
3298
Devang Patel11cf3f42009-10-27 22:16:29 +00003299FPToSIInst *FPToSIInst::clone_impl() const {
3300 return new FPToSIInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003301}
3302
Devang Patel11cf3f42009-10-27 22:16:29 +00003303PtrToIntInst *PtrToIntInst::clone_impl() const {
3304 return new PtrToIntInst(getOperand(0), getType());
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003305}
3306
Devang Patel11cf3f42009-10-27 22:16:29 +00003307IntToPtrInst *IntToPtrInst::clone_impl() const {
3308 return new IntToPtrInst(getOperand(0), getType());
Gabor Greif697e94c2008-05-15 10:04:30 +00003309}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003310
Devang Patel11cf3f42009-10-27 22:16:29 +00003311BitCastInst *BitCastInst::clone_impl() const {
3312 return new BitCastInst(getOperand(0), getType());
Gabor Greif697e94c2008-05-15 10:04:30 +00003313}
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003314
Devang Patel11cf3f42009-10-27 22:16:29 +00003315CallInst *CallInst::clone_impl() const {
3316 return new(getNumOperands()) CallInst(*this);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003317}
3318
Devang Patel11cf3f42009-10-27 22:16:29 +00003319SelectInst *SelectInst::clone_impl() const {
3320 return SelectInst::Create(getOperand(0), getOperand(1), getOperand(2));
Chris Lattnerbbe0a422006-04-08 01:18:18 +00003321}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003322
Devang Patel11cf3f42009-10-27 22:16:29 +00003323VAArgInst *VAArgInst::clone_impl() const {
3324 return new VAArgInst(getOperand(0), getType());
Chris Lattnerbbe0a422006-04-08 01:18:18 +00003325}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003326
Devang Patel11cf3f42009-10-27 22:16:29 +00003327ExtractElementInst *ExtractElementInst::clone_impl() const {
3328 return ExtractElementInst::Create(getOperand(0), getOperand(1));
Chris Lattnerbbe0a422006-04-08 01:18:18 +00003329}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003330
Devang Patel11cf3f42009-10-27 22:16:29 +00003331InsertElementInst *InsertElementInst::clone_impl() const {
3332 return InsertElementInst::Create(getOperand(0),
3333 getOperand(1),
3334 getOperand(2));
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003335}
3336
Devang Patel11cf3f42009-10-27 22:16:29 +00003337ShuffleVectorInst *ShuffleVectorInst::clone_impl() const {
3338 return new ShuffleVectorInst(getOperand(0),
3339 getOperand(1),
3340 getOperand(2));
Gabor Greif697e94c2008-05-15 10:04:30 +00003341}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003342
Devang Patel11cf3f42009-10-27 22:16:29 +00003343PHINode *PHINode::clone_impl() const {
3344 return new PHINode(*this);
3345}
3346
3347ReturnInst *ReturnInst::clone_impl() const {
3348 return new(getNumOperands()) ReturnInst(*this);
3349}
3350
3351BranchInst *BranchInst::clone_impl() const {
Jay Foadd81f3c92011-01-07 20:29:02 +00003352 return new(getNumOperands()) BranchInst(*this);
Gabor Greif697e94c2008-05-15 10:04:30 +00003353}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003354
Devang Patel11cf3f42009-10-27 22:16:29 +00003355SwitchInst *SwitchInst::clone_impl() const {
3356 return new SwitchInst(*this);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003357}
3358
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00003359IndirectBrInst *IndirectBrInst::clone_impl() const {
3360 return new IndirectBrInst(*this);
Chris Lattner3ed871f2009-10-27 19:13:16 +00003361}
3362
3363
Devang Patel11cf3f42009-10-27 22:16:29 +00003364InvokeInst *InvokeInst::clone_impl() const {
3365 return new(getNumOperands()) InvokeInst(*this);
Gabor Greif697e94c2008-05-15 10:04:30 +00003366}
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003367
Bill Wendlingf891bf82011-07-31 06:30:59 +00003368ResumeInst *ResumeInst::clone_impl() const {
3369 return new(1) ResumeInst(*this);
3370}
3371
Devang Patel11cf3f42009-10-27 22:16:29 +00003372UnwindInst *UnwindInst::clone_impl() const {
Nick Lewycky42fb7452009-09-27 07:38:41 +00003373 LLVMContext &Context = getContext();
Devang Patel11cf3f42009-10-27 22:16:29 +00003374 return new UnwindInst(Context);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003375}
3376
Devang Patel11cf3f42009-10-27 22:16:29 +00003377UnreachableInst *UnreachableInst::clone_impl() const {
Nick Lewycky42fb7452009-09-27 07:38:41 +00003378 LLVMContext &Context = getContext();
Devang Patel11cf3f42009-10-27 22:16:29 +00003379 return new UnreachableInst(Context);
Owen Anderson1e5f00e2009-07-09 23:48:35 +00003380}