blob: a8a325ae27b7bdd4c168d83e001046f3b96ca006 [file] [log] [blame]
Chris Lattner2b383d2e2003-05-13 21:37:02 +00001//===-- Constants.cpp - Implement Constant nodes --------------------------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
John Criswell482202a2003-10-20 19:43:21 +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//
John Criswell482202a2003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +00009//
Chris Lattnere17322b2011-02-07 20:03:14 +000010// This file implements the Constant* classes.
Chris Lattner2f7c9632001-06-06 20:29:01 +000011//
12//===----------------------------------------------------------------------===//
13
Chandler Carruth9fb823b2013-01-02 11:36:10 +000014#include "llvm/IR/Constants.h"
Chris Lattner33e93b82007-02-27 03:05:06 +000015#include "ConstantFold.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000016#include "LLVMContextImpl.h"
17#include "llvm/ADT/DenseMap.h"
18#include "llvm/ADT/FoldingSet.h"
19#include "llvm/ADT/STLExtras.h"
20#include "llvm/ADT/SmallVector.h"
21#include "llvm/ADT/StringExtras.h"
22#include "llvm/ADT/StringMap.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000023#include "llvm/IR/DerivedTypes.h"
24#include "llvm/IR/GlobalValue.h"
25#include "llvm/IR/Instructions.h"
26#include "llvm/IR/Module.h"
27#include "llvm/IR/Operator.h"
Chris Lattner3d27be12006-08-27 12:54:02 +000028#include "llvm/Support/Compiler.h"
Bill Wendling6a462f12006-11-17 08:03:48 +000029#include "llvm/Support/Debug.h"
Torok Edwinccb29cd2009-07-11 13:10:19 +000030#include "llvm/Support/ErrorHandling.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000031#include "llvm/Support/GetElementPtrTypeIterator.h"
Chris Lattner69edc982006-09-28 00:35:06 +000032#include "llvm/Support/ManagedStatic.h"
Bill Wendling6a462f12006-11-17 08:03:48 +000033#include "llvm/Support/MathExtras.h"
Chris Lattner78683a72009-08-23 04:02:03 +000034#include "llvm/Support/raw_ostream.h"
Chris Lattner2f7c9632001-06-06 20:29:01 +000035#include <algorithm>
Talin3a0a30d2011-02-28 23:53:27 +000036#include <cstdarg>
Chris Lattner189d19f2003-11-21 20:23:48 +000037using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000038
Chris Lattner2f7c9632001-06-06 20:29:01 +000039//===----------------------------------------------------------------------===//
Chris Lattner3462ae32001-12-03 22:26:30 +000040// Constant Class
Chris Lattner2f7c9632001-06-06 20:29:01 +000041//===----------------------------------------------------------------------===//
42
David Blaikiea379b1812011-12-20 02:50:00 +000043void Constant::anchor() { }
44
Chris Lattnerac5fb562011-07-15 05:58:04 +000045bool Constant::isNegativeZeroValue() const {
46 // Floating point values have an explicit -0.0 value.
47 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
48 return CFP->isZero() && CFP->isNegative();
Galina Kistanovafc259902012-07-13 01:25:27 +000049
David Tweed5493fee2013-03-18 11:54:44 +000050 // Equivalent for a vector of -0.0's.
51 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this))
52 if (ConstantFP *SplatCFP = dyn_cast_or_null<ConstantFP>(CV->getSplatValue()))
53 if (SplatCFP && SplatCFP->isZero() && SplatCFP->isNegative())
54 return true;
55
David Tweed298e4192013-03-19 10:16:40 +000056 // We've already handled true FP case; any other FP vectors can't represent -0.0.
57 if (getType()->isFPOrFPVectorTy())
58 return false;
David Tweed5493fee2013-03-18 11:54:44 +000059
Chris Lattnerac5fb562011-07-15 05:58:04 +000060 // Otherwise, just use +0.0.
61 return isNullValue();
62}
63
Shuxin Yang9ca562e2013-01-09 00:53:25 +000064// Return true iff this constant is positive zero (floating point), negative
65// zero (floating point), or a null value.
Shuxin Yangf0537ab2013-01-09 00:13:41 +000066bool Constant::isZeroValue() const {
67 // Floating point values have an explicit -0.0 value.
68 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
69 return CFP->isZero();
70
71 // Otherwise, just use +0.0.
72 return isNullValue();
73}
74
Chris Lattnerbe6610c2011-07-15 06:14:08 +000075bool Constant::isNullValue() const {
76 // 0 is null.
77 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
78 return CI->isZero();
Galina Kistanovafc259902012-07-13 01:25:27 +000079
Chris Lattnerbe6610c2011-07-15 06:14:08 +000080 // +0.0 is null.
81 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
82 return CFP->isZero() && !CFP->isNegative();
83
84 // constant zero is zero for aggregates and cpnull is null for pointers.
85 return isa<ConstantAggregateZero>(this) || isa<ConstantPointerNull>(this);
86}
87
Nadav Rotem365af6f2011-08-24 20:18:38 +000088bool Constant::isAllOnesValue() const {
89 // Check for -1 integers
90 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
91 return CI->isMinusOne();
92
93 // Check for FP which are bitcasted from -1 integers
94 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
95 return CFP->getValueAPF().bitcastToAPInt().isAllOnesValue();
96
Benjamin Kramer42d098e2011-11-14 19:12:20 +000097 // Check for constant vectors which are splats of -1 values.
Nadav Rotem365af6f2011-08-24 20:18:38 +000098 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
Benjamin Kramer42d098e2011-11-14 19:12:20 +000099 if (Constant *Splat = CV->getSplatValue())
100 return Splat->isAllOnesValue();
Nadav Rotem365af6f2011-08-24 20:18:38 +0000101
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000102 // Check for constant vectors which are splats of -1 values.
103 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this))
104 if (Constant *Splat = CV->getSplatValue())
105 return Splat->isAllOnesValue();
106
Nadav Rotem365af6f2011-08-24 20:18:38 +0000107 return false;
108}
Benjamin Kramer42d098e2011-11-14 19:12:20 +0000109
Owen Anderson5a1acd92009-07-31 20:28:14 +0000110// Constructor to create a '0' constant of arbitrary type...
Chris Lattner229907c2011-07-18 04:54:35 +0000111Constant *Constant::getNullValue(Type *Ty) {
Owen Anderson5a1acd92009-07-31 20:28:14 +0000112 switch (Ty->getTypeID()) {
113 case Type::IntegerTyID:
114 return ConstantInt::get(Ty, 0);
Dan Gohman518cda42011-12-17 00:04:22 +0000115 case Type::HalfTyID:
116 return ConstantFP::get(Ty->getContext(),
117 APFloat::getZero(APFloat::IEEEhalf));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000118 case Type::FloatTyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000119 return ConstantFP::get(Ty->getContext(),
120 APFloat::getZero(APFloat::IEEEsingle));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000121 case Type::DoubleTyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000122 return ConstantFP::get(Ty->getContext(),
123 APFloat::getZero(APFloat::IEEEdouble));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000124 case Type::X86_FP80TyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000125 return ConstantFP::get(Ty->getContext(),
126 APFloat::getZero(APFloat::x87DoubleExtended));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000127 case Type::FP128TyID:
128 return ConstantFP::get(Ty->getContext(),
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000129 APFloat::getZero(APFloat::IEEEquad));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000130 case Type::PPC_FP128TyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000131 return ConstantFP::get(Ty->getContext(),
Tim Northover29178a32013-01-22 09:46:31 +0000132 APFloat(APFloat::PPCDoubleDouble,
133 APInt::getNullValue(128)));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000134 case Type::PointerTyID:
135 return ConstantPointerNull::get(cast<PointerType>(Ty));
136 case Type::StructTyID:
137 case Type::ArrayTyID:
138 case Type::VectorTyID:
139 return ConstantAggregateZero::get(Ty);
140 default:
141 // Function, Label, or Opaque type?
Craig Topperc514b542012-02-05 22:14:15 +0000142 llvm_unreachable("Cannot create a null constant of that type!");
Owen Anderson5a1acd92009-07-31 20:28:14 +0000143 }
144}
145
Chris Lattner229907c2011-07-18 04:54:35 +0000146Constant *Constant::getIntegerValue(Type *Ty, const APInt &V) {
147 Type *ScalarTy = Ty->getScalarType();
Dan Gohmanf011f5a2009-08-03 22:07:33 +0000148
149 // Create the base integer constant.
150 Constant *C = ConstantInt::get(Ty->getContext(), V);
151
152 // Convert an integer to a pointer, if necessary.
Chris Lattner229907c2011-07-18 04:54:35 +0000153 if (PointerType *PTy = dyn_cast<PointerType>(ScalarTy))
Dan Gohmanf011f5a2009-08-03 22:07:33 +0000154 C = ConstantExpr::getIntToPtr(C, PTy);
155
156 // Broadcast a scalar to a vector, if necessary.
Chris Lattner229907c2011-07-18 04:54:35 +0000157 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000158 C = ConstantVector::getSplat(VTy->getNumElements(), C);
Dan Gohmanf011f5a2009-08-03 22:07:33 +0000159
160 return C;
161}
162
Chris Lattner229907c2011-07-18 04:54:35 +0000163Constant *Constant::getAllOnesValue(Type *Ty) {
164 if (IntegerType *ITy = dyn_cast<IntegerType>(Ty))
Owen Anderson5a1acd92009-07-31 20:28:14 +0000165 return ConstantInt::get(Ty->getContext(),
166 APInt::getAllOnesValue(ITy->getBitWidth()));
Nadav Rotem7cc6d122011-02-17 21:22:27 +0000167
168 if (Ty->isFloatingPointTy()) {
169 APFloat FL = APFloat::getAllOnesValue(Ty->getPrimitiveSizeInBits(),
170 !Ty->isPPC_FP128Ty());
171 return ConstantFP::get(Ty->getContext(), FL);
172 }
173
Chris Lattner229907c2011-07-18 04:54:35 +0000174 VectorType *VTy = cast<VectorType>(Ty);
Chris Lattnere9eed292012-01-25 05:19:54 +0000175 return ConstantVector::getSplat(VTy->getNumElements(),
176 getAllOnesValue(VTy->getElementType()));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000177}
178
Chris Lattner7e683d12012-01-25 06:16:32 +0000179/// getAggregateElement - For aggregates (struct/array/vector) return the
180/// constant that corresponds to the specified element if possible, or null if
181/// not. This can return null if the element index is a ConstantExpr, or if
182/// 'this' is a constant expr.
183Constant *Constant::getAggregateElement(unsigned Elt) const {
184 if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(this))
185 return Elt < CS->getNumOperands() ? CS->getOperand(Elt) : 0;
Galina Kistanovafc259902012-07-13 01:25:27 +0000186
Chris Lattner7e683d12012-01-25 06:16:32 +0000187 if (const ConstantArray *CA = dyn_cast<ConstantArray>(this))
188 return Elt < CA->getNumOperands() ? CA->getOperand(Elt) : 0;
Galina Kistanovafc259902012-07-13 01:25:27 +0000189
Chris Lattner7e683d12012-01-25 06:16:32 +0000190 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
191 return Elt < CV->getNumOperands() ? CV->getOperand(Elt) : 0;
Galina Kistanovafc259902012-07-13 01:25:27 +0000192
Chris Lattner7e683d12012-01-25 06:16:32 +0000193 if (const ConstantAggregateZero *CAZ =dyn_cast<ConstantAggregateZero>(this))
194 return CAZ->getElementValue(Elt);
Galina Kistanovafc259902012-07-13 01:25:27 +0000195
Chris Lattner7e683d12012-01-25 06:16:32 +0000196 if (const UndefValue *UV = dyn_cast<UndefValue>(this))
197 return UV->getElementValue(Elt);
Galina Kistanovafc259902012-07-13 01:25:27 +0000198
Chris Lattner8326bd82012-01-26 00:42:34 +0000199 if (const ConstantDataSequential *CDS =dyn_cast<ConstantDataSequential>(this))
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000200 return Elt < CDS->getNumElements() ? CDS->getElementAsConstant(Elt) : 0;
Chris Lattner7e683d12012-01-25 06:16:32 +0000201 return 0;
202}
203
204Constant *Constant::getAggregateElement(Constant *Elt) const {
205 assert(isa<IntegerType>(Elt->getType()) && "Index must be an integer");
206 if (ConstantInt *CI = dyn_cast<ConstantInt>(Elt))
207 return getAggregateElement(CI->getZExtValue());
208 return 0;
209}
210
211
Chris Lattner3462ae32001-12-03 22:26:30 +0000212void Constant::destroyConstantImpl() {
213 // When a Constant is destroyed, there may be lingering
Chris Lattnerd7a73302001-10-13 06:57:33 +0000214 // references to the constant by other constants in the constant pool. These
Misha Brukmanbe372b92003-08-21 22:14:26 +0000215 // constants are implicitly dependent on the module that is being deleted,
Chris Lattnerd7a73302001-10-13 06:57:33 +0000216 // but they don't know that. Because we only find out when the CPV is
217 // deleted, we must now notify all of our users (that should only be
Chris Lattner3462ae32001-12-03 22:26:30 +0000218 // Constants) that they are, in fact, invalid now and should be deleted.
Chris Lattnerd7a73302001-10-13 06:57:33 +0000219 //
220 while (!use_empty()) {
221 Value *V = use_back();
222#ifndef NDEBUG // Only in -g mode...
Chris Lattner78683a72009-08-23 04:02:03 +0000223 if (!isa<Constant>(V)) {
David Greene1e27a132010-01-05 01:29:19 +0000224 dbgs() << "While deleting: " << *this
Chris Lattner78683a72009-08-23 04:02:03 +0000225 << "\n\nUse still stuck around after Def is destroyed: "
226 << *V << "\n\n";
227 }
Chris Lattnerd7a73302001-10-13 06:57:33 +0000228#endif
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000229 assert(isa<Constant>(V) && "References remain to Constant being destroyed");
Chris Lattner8326bd82012-01-26 00:42:34 +0000230 cast<Constant>(V)->destroyConstant();
Chris Lattnerd7a73302001-10-13 06:57:33 +0000231
232 // The constant should remove itself from our use list...
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000233 assert((use_empty() || use_back() != V) && "Constant not removed!");
Chris Lattnerd7a73302001-10-13 06:57:33 +0000234 }
235
236 // Value has no outstanding references it is safe to delete it now...
237 delete this;
Chris Lattner38569342001-10-01 20:11:19 +0000238}
Chris Lattner2f7c9632001-06-06 20:29:01 +0000239
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +0000240static bool canTrapImpl(const Constant *C,
241 SmallPtrSet<const ConstantExpr *, 4> &NonTrappingOps) {
242 assert(C->getType()->isFirstClassType() && "Cannot evaluate aggregate vals!");
Chris Lattner23dd1f62006-10-20 00:27:06 +0000243 // The only thing that could possibly trap are constant exprs.
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +0000244 const ConstantExpr *CE = dyn_cast<ConstantExpr>(C);
245 if (!CE)
246 return false;
Galina Kistanovafc259902012-07-13 01:25:27 +0000247
248 // ConstantExpr traps if any operands can trap.
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +0000249 for (unsigned i = 0, e = C->getNumOperands(); i != e; ++i) {
250 if (ConstantExpr *Op = dyn_cast<ConstantExpr>(CE->getOperand(i))) {
251 if (NonTrappingOps.insert(Op) && canTrapImpl(Op, NonTrappingOps))
252 return true;
253 }
254 }
Chris Lattner23dd1f62006-10-20 00:27:06 +0000255
256 // Otherwise, only specific operations can trap.
257 switch (CE->getOpcode()) {
258 default:
259 return false;
Reid Spencer7e80b0b2006-10-26 06:15:43 +0000260 case Instruction::UDiv:
261 case Instruction::SDiv:
262 case Instruction::FDiv:
Reid Spencer7eb55b32006-11-02 01:53:59 +0000263 case Instruction::URem:
264 case Instruction::SRem:
265 case Instruction::FRem:
Chris Lattner23dd1f62006-10-20 00:27:06 +0000266 // Div and rem can trap if the RHS is not known to be non-zero.
Chris Lattnera91a5632009-10-28 05:14:34 +0000267 if (!isa<ConstantInt>(CE->getOperand(1)) ||CE->getOperand(1)->isNullValue())
Chris Lattner23dd1f62006-10-20 00:27:06 +0000268 return true;
269 return false;
270 }
271}
272
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +0000273/// canTrap - Return true if evaluation of this constant could trap. This is
274/// true for things like constant expressions that could divide by zero.
275bool Constant::canTrap() const {
276 SmallPtrSet<const ConstantExpr *, 4> NonTrappingOps;
277 return canTrapImpl(this, NonTrappingOps);
278}
279
Hans Wennborg709e0152012-11-15 11:40:00 +0000280/// isThreadDependent - Return true if the value can vary between threads.
281bool Constant::isThreadDependent() const {
282 SmallPtrSet<const Constant*, 64> Visited;
283 SmallVector<const Constant*, 64> WorkList;
284 WorkList.push_back(this);
285 Visited.insert(this);
286
287 while (!WorkList.empty()) {
288 const Constant *C = WorkList.pop_back_val();
289
290 if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(C)) {
291 if (GV->isThreadLocal())
292 return true;
293 }
294
295 for (unsigned I = 0, E = C->getNumOperands(); I != E; ++I) {
Hans Wennborg18aa12402012-11-16 10:33:25 +0000296 const Constant *D = dyn_cast<Constant>(C->getOperand(I));
297 if (!D)
298 continue;
Hans Wennborg709e0152012-11-15 11:40:00 +0000299 if (Visited.insert(D))
300 WorkList.push_back(D);
301 }
302 }
303
304 return false;
305}
306
Chris Lattner253bc772009-11-01 18:11:50 +0000307/// isConstantUsed - Return true if the constant has users other than constant
308/// exprs and other dangling things.
309bool Constant::isConstantUsed() const {
Gabor Greifc78d7202010-03-25 23:06:16 +0000310 for (const_use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI) {
Chris Lattner253bc772009-11-01 18:11:50 +0000311 const Constant *UC = dyn_cast<Constant>(*UI);
312 if (UC == 0 || isa<GlobalValue>(UC))
313 return true;
Galina Kistanovafc259902012-07-13 01:25:27 +0000314
Chris Lattner253bc772009-11-01 18:11:50 +0000315 if (UC->isConstantUsed())
316 return true;
317 }
318 return false;
319}
320
321
Chris Lattner4565ef52009-07-22 00:05:44 +0000322
323/// getRelocationInfo - This method classifies the entry according to
324/// whether or not it may generate a relocation entry. This must be
325/// conservative, so if it might codegen to a relocatable entry, it should say
326/// so. The return values are:
327///
Chris Lattner5cd4dd32009-07-24 03:27:21 +0000328/// NoRelocation: This constant pool entry is guaranteed to never have a
329/// relocation applied to it (because it holds a simple constant like
330/// '4').
331/// LocalRelocation: This entry has relocations, but the entries are
332/// guaranteed to be resolvable by the static linker, so the dynamic
333/// linker will never see them.
334/// GlobalRelocations: This entry may have arbitrary relocations.
Chris Lattner4565ef52009-07-22 00:05:44 +0000335///
Chandler Carruthef860a22013-01-02 09:10:48 +0000336/// FIXME: This really should not be in IR.
Chris Lattner5cd4dd32009-07-24 03:27:21 +0000337Constant::PossibleRelocationsTy Constant::getRelocationInfo() const {
338 if (const GlobalValue *GV = dyn_cast<GlobalValue>(this)) {
Chris Lattner4565ef52009-07-22 00:05:44 +0000339 if (GV->hasLocalLinkage() || GV->hasHiddenVisibility())
Chris Lattner5cd4dd32009-07-24 03:27:21 +0000340 return LocalRelocation; // Local to this file/library.
341 return GlobalRelocations; // Global reference.
Anton Korobeynikov7437b592009-03-29 17:13:18 +0000342 }
Chris Lattner4565ef52009-07-22 00:05:44 +0000343
Chris Lattner2cb85b42009-10-28 04:12:16 +0000344 if (const BlockAddress *BA = dyn_cast<BlockAddress>(this))
345 return BA->getFunction()->getRelocationInfo();
346
Chris Lattnera7cfc432010-01-03 18:09:40 +0000347 // While raw uses of blockaddress need to be relocated, differences between
348 // two of them don't when they are for labels in the same function. This is a
349 // common idiom when creating a table for the indirect goto extension, so we
350 // handle it efficiently here.
351 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(this))
352 if (CE->getOpcode() == Instruction::Sub) {
353 ConstantExpr *LHS = dyn_cast<ConstantExpr>(CE->getOperand(0));
354 ConstantExpr *RHS = dyn_cast<ConstantExpr>(CE->getOperand(1));
355 if (LHS && RHS &&
356 LHS->getOpcode() == Instruction::PtrToInt &&
357 RHS->getOpcode() == Instruction::PtrToInt &&
358 isa<BlockAddress>(LHS->getOperand(0)) &&
359 isa<BlockAddress>(RHS->getOperand(0)) &&
360 cast<BlockAddress>(LHS->getOperand(0))->getFunction() ==
361 cast<BlockAddress>(RHS->getOperand(0))->getFunction())
362 return NoRelocation;
363 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000364
Chris Lattner5cd4dd32009-07-24 03:27:21 +0000365 PossibleRelocationsTy Result = NoRelocation;
Evan Chengf9e003b2007-03-08 00:59:12 +0000366 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Chris Lattnera91a5632009-10-28 05:14:34 +0000367 Result = std::max(Result,
368 cast<Constant>(getOperand(i))->getRelocationInfo());
Galina Kistanovafc259902012-07-13 01:25:27 +0000369
Chris Lattner4565ef52009-07-22 00:05:44 +0000370 return Result;
Evan Chengf9e003b2007-03-08 00:59:12 +0000371}
372
Chris Lattner84886402011-02-18 04:41:42 +0000373/// removeDeadUsersOfConstant - If the specified constantexpr is dead, remove
374/// it. This involves recursively eliminating any dead users of the
375/// constantexpr.
376static bool removeDeadUsersOfConstant(const Constant *C) {
377 if (isa<GlobalValue>(C)) return false; // Cannot remove this
Galina Kistanovafc259902012-07-13 01:25:27 +0000378
Chris Lattner84886402011-02-18 04:41:42 +0000379 while (!C->use_empty()) {
380 const Constant *User = dyn_cast<Constant>(C->use_back());
381 if (!User) return false; // Non-constant usage;
382 if (!removeDeadUsersOfConstant(User))
383 return false; // Constant wasn't dead
384 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000385
Chris Lattner84886402011-02-18 04:41:42 +0000386 const_cast<Constant*>(C)->destroyConstant();
387 return true;
388}
389
390
391/// removeDeadConstantUsers - If there are any dead constant users dangling
392/// off of this constant, remove them. This method is useful for clients
393/// that want to check to see if a global is unused, but don't want to deal
394/// with potentially dead constants hanging off of the globals.
395void Constant::removeDeadConstantUsers() const {
396 Value::const_use_iterator I = use_begin(), E = use_end();
397 Value::const_use_iterator LastNonDeadUser = E;
398 while (I != E) {
399 const Constant *User = dyn_cast<Constant>(*I);
400 if (User == 0) {
401 LastNonDeadUser = I;
402 ++I;
403 continue;
404 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000405
Chris Lattner84886402011-02-18 04:41:42 +0000406 if (!removeDeadUsersOfConstant(User)) {
407 // If the constant wasn't dead, remember that this was the last live use
408 // and move on to the next constant.
409 LastNonDeadUser = I;
410 ++I;
411 continue;
412 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000413
Chris Lattner84886402011-02-18 04:41:42 +0000414 // If the constant was dead, then the iterator is invalidated.
415 if (LastNonDeadUser == E) {
416 I = use_begin();
417 if (I == E) break;
418 } else {
419 I = LastNonDeadUser;
420 ++I;
421 }
422 }
423}
424
425
Chris Lattner2105d662008-07-10 00:28:11 +0000426
Chris Lattner2f7c9632001-06-06 20:29:01 +0000427//===----------------------------------------------------------------------===//
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000428// ConstantInt
Chris Lattner2f7c9632001-06-06 20:29:01 +0000429//===----------------------------------------------------------------------===//
430
David Blaikiea379b1812011-12-20 02:50:00 +0000431void ConstantInt::anchor() { }
432
Chris Lattner229907c2011-07-18 04:54:35 +0000433ConstantInt::ConstantInt(IntegerType *Ty, const APInt& V)
Chris Lattner5db2f472007-02-20 05:55:46 +0000434 : Constant(Ty, ConstantIntVal, 0, 0), Val(V) {
Reid Spencerb31bffe2007-02-26 23:54:03 +0000435 assert(V.getBitWidth() == Ty->getBitWidth() && "Invalid constant for type");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000436}
437
Nick Lewycky92db8e82011-03-06 03:36:19 +0000438ConstantInt *ConstantInt::getTrue(LLVMContext &Context) {
Owen Anderson23a204d2009-07-31 17:39:07 +0000439 LLVMContextImpl *pImpl = Context.pImpl;
Benjamin Kramerddd1b7b2010-11-20 18:43:35 +0000440 if (!pImpl->TheTrueVal)
441 pImpl->TheTrueVal = ConstantInt::get(Type::getInt1Ty(Context), 1);
442 return pImpl->TheTrueVal;
Owen Anderson23a204d2009-07-31 17:39:07 +0000443}
444
Nick Lewycky92db8e82011-03-06 03:36:19 +0000445ConstantInt *ConstantInt::getFalse(LLVMContext &Context) {
Owen Anderson23a204d2009-07-31 17:39:07 +0000446 LLVMContextImpl *pImpl = Context.pImpl;
Benjamin Kramerddd1b7b2010-11-20 18:43:35 +0000447 if (!pImpl->TheFalseVal)
448 pImpl->TheFalseVal = ConstantInt::get(Type::getInt1Ty(Context), 0);
449 return pImpl->TheFalseVal;
Owen Anderson23a204d2009-07-31 17:39:07 +0000450}
451
Chris Lattner229907c2011-07-18 04:54:35 +0000452Constant *ConstantInt::getTrue(Type *Ty) {
453 VectorType *VTy = dyn_cast<VectorType>(Ty);
Nick Lewycky92db8e82011-03-06 03:36:19 +0000454 if (!VTy) {
455 assert(Ty->isIntegerTy(1) && "True must be i1 or vector of i1.");
456 return ConstantInt::getTrue(Ty->getContext());
457 }
458 assert(VTy->getElementType()->isIntegerTy(1) &&
459 "True must be vector of i1 or i1.");
Chris Lattnere9eed292012-01-25 05:19:54 +0000460 return ConstantVector::getSplat(VTy->getNumElements(),
461 ConstantInt::getTrue(Ty->getContext()));
Nick Lewycky92db8e82011-03-06 03:36:19 +0000462}
463
Chris Lattner229907c2011-07-18 04:54:35 +0000464Constant *ConstantInt::getFalse(Type *Ty) {
465 VectorType *VTy = dyn_cast<VectorType>(Ty);
Nick Lewycky92db8e82011-03-06 03:36:19 +0000466 if (!VTy) {
467 assert(Ty->isIntegerTy(1) && "False must be i1 or vector of i1.");
468 return ConstantInt::getFalse(Ty->getContext());
469 }
470 assert(VTy->getElementType()->isIntegerTy(1) &&
471 "False must be vector of i1 or i1.");
Chris Lattnere9eed292012-01-25 05:19:54 +0000472 return ConstantVector::getSplat(VTy->getNumElements(),
473 ConstantInt::getFalse(Ty->getContext()));
Nick Lewycky92db8e82011-03-06 03:36:19 +0000474}
475
Owen Anderson23a204d2009-07-31 17:39:07 +0000476
Owen Andersonedb4a702009-07-24 23:12:02 +0000477// Get a ConstantInt from an APInt. Note that the value stored in the DenseMap
478// as the key, is a DenseMapAPIntKeyInfo::KeyTy which has provided the
479// operator== and operator!= to ensure that the DenseMap doesn't attempt to
480// compare APInt's of different widths, which would violate an APInt class
481// invariant which generates an assertion.
Nick Lewycky92db8e82011-03-06 03:36:19 +0000482ConstantInt *ConstantInt::get(LLVMContext &Context, const APInt &V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000483 // Get the corresponding integer type for the bit width of the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000484 IntegerType *ITy = IntegerType::get(Context, V.getBitWidth());
Owen Andersonedb4a702009-07-24 23:12:02 +0000485 // get an existing value or the insertion position
Benjamin Kramer320682f2013-06-01 17:51:03 +0000486 LLVMContextImpl *pImpl = Context.pImpl;
487 ConstantInt *&Slot = pImpl->IntConstants[DenseMapAPIntKeyInfo::KeyTy(V, ITy)];
Owen Anderson5dab84c2009-10-19 20:11:52 +0000488 if (!Slot) Slot = new ConstantInt(ITy, V);
489 return Slot;
Owen Andersonedb4a702009-07-24 23:12:02 +0000490}
491
Chris Lattner229907c2011-07-18 04:54:35 +0000492Constant *ConstantInt::get(Type *Ty, uint64_t V, bool isSigned) {
Nick Lewycky92db8e82011-03-06 03:36:19 +0000493 Constant *C = get(cast<IntegerType>(Ty->getScalarType()), V, isSigned);
Owen Andersonedb4a702009-07-24 23:12:02 +0000494
495 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000496 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000497 return ConstantVector::getSplat(VTy->getNumElements(), C);
Owen Andersonedb4a702009-07-24 23:12:02 +0000498
499 return C;
500}
501
Chris Lattner0256be92012-01-27 03:08:05 +0000502ConstantInt *ConstantInt::get(IntegerType *Ty, uint64_t V,
Owen Andersonedb4a702009-07-24 23:12:02 +0000503 bool isSigned) {
504 return get(Ty->getContext(), APInt(Ty->getBitWidth(), V, isSigned));
505}
506
Chris Lattner0256be92012-01-27 03:08:05 +0000507ConstantInt *ConstantInt::getSigned(IntegerType *Ty, int64_t V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000508 return get(Ty, V, true);
509}
510
Chris Lattner229907c2011-07-18 04:54:35 +0000511Constant *ConstantInt::getSigned(Type *Ty, int64_t V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000512 return get(Ty, V, true);
513}
514
Chris Lattner0256be92012-01-27 03:08:05 +0000515Constant *ConstantInt::get(Type *Ty, const APInt& V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000516 ConstantInt *C = get(Ty->getContext(), V);
517 assert(C->getType() == Ty->getScalarType() &&
518 "ConstantInt type doesn't match the type implied by its value!");
519
520 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000521 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000522 return ConstantVector::getSplat(VTy->getNumElements(), C);
Owen Andersonedb4a702009-07-24 23:12:02 +0000523
524 return C;
525}
526
Chris Lattner0256be92012-01-27 03:08:05 +0000527ConstantInt *ConstantInt::get(IntegerType* Ty, StringRef Str,
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000528 uint8_t radix) {
529 return get(Ty->getContext(), APInt(Ty->getBitWidth(), Str, radix));
530}
531
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000532//===----------------------------------------------------------------------===//
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000533// ConstantFP
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000534//===----------------------------------------------------------------------===//
535
Chris Lattner229907c2011-07-18 04:54:35 +0000536static const fltSemantics *TypeToFloatSemantics(Type *Ty) {
Dan Gohman518cda42011-12-17 00:04:22 +0000537 if (Ty->isHalfTy())
538 return &APFloat::IEEEhalf;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000539 if (Ty->isFloatTy())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000540 return &APFloat::IEEEsingle;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000541 if (Ty->isDoubleTy())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000542 return &APFloat::IEEEdouble;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000543 if (Ty->isX86_FP80Ty())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000544 return &APFloat::x87DoubleExtended;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000545 else if (Ty->isFP128Ty())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000546 return &APFloat::IEEEquad;
Galina Kistanovafc259902012-07-13 01:25:27 +0000547
Chris Lattnerfdd87902009-10-05 05:54:46 +0000548 assert(Ty->isPPC_FP128Ty() && "Unknown FP format");
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000549 return &APFloat::PPCDoubleDouble;
550}
551
David Blaikiea379b1812011-12-20 02:50:00 +0000552void ConstantFP::anchor() { }
553
Owen Anderson69c464d2009-07-27 20:59:43 +0000554/// get() - This returns a constant fp for the specified value in the
555/// specified type. This should only be used for simple constant values like
556/// 2.0/1.0 etc, that are known-valid both as double and as the target format.
Chris Lattner0256be92012-01-27 03:08:05 +0000557Constant *ConstantFP::get(Type *Ty, double V) {
Owen Anderson69c464d2009-07-27 20:59:43 +0000558 LLVMContext &Context = Ty->getContext();
Galina Kistanovafc259902012-07-13 01:25:27 +0000559
Owen Anderson69c464d2009-07-27 20:59:43 +0000560 APFloat FV(V);
561 bool ignored;
562 FV.convert(*TypeToFloatSemantics(Ty->getScalarType()),
563 APFloat::rmNearestTiesToEven, &ignored);
564 Constant *C = get(Context, FV);
565
566 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000567 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000568 return ConstantVector::getSplat(VTy->getNumElements(), C);
Owen Anderson69c464d2009-07-27 20:59:43 +0000569
570 return C;
571}
572
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000573
Chris Lattner0256be92012-01-27 03:08:05 +0000574Constant *ConstantFP::get(Type *Ty, StringRef Str) {
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000575 LLVMContext &Context = Ty->getContext();
576
577 APFloat FV(*TypeToFloatSemantics(Ty->getScalarType()), Str);
578 Constant *C = get(Context, FV);
579
580 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000581 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000582 return ConstantVector::getSplat(VTy->getNumElements(), C);
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000583
584 return C;
585}
586
587
Chris Lattnere9eed292012-01-25 05:19:54 +0000588ConstantFP *ConstantFP::getNegativeZero(Type *Ty) {
Owen Anderson69c464d2009-07-27 20:59:43 +0000589 LLVMContext &Context = Ty->getContext();
Chris Lattnere9eed292012-01-25 05:19:54 +0000590 APFloat apf = cast<ConstantFP>(Constant::getNullValue(Ty))->getValueAPF();
Owen Anderson69c464d2009-07-27 20:59:43 +0000591 apf.changeSign();
592 return get(Context, apf);
593}
594
595
Chris Lattnere9eed292012-01-25 05:19:54 +0000596Constant *ConstantFP::getZeroValueForNegation(Type *Ty) {
597 Type *ScalarTy = Ty->getScalarType();
598 if (ScalarTy->isFloatingPointTy()) {
599 Constant *C = getNegativeZero(ScalarTy);
600 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
601 return ConstantVector::getSplat(VTy->getNumElements(), C);
602 return C;
603 }
Owen Anderson69c464d2009-07-27 20:59:43 +0000604
Owen Anderson5a1acd92009-07-31 20:28:14 +0000605 return Constant::getNullValue(Ty);
Owen Anderson69c464d2009-07-27 20:59:43 +0000606}
607
608
609// ConstantFP accessors.
610ConstantFP* ConstantFP::get(LLVMContext &Context, const APFloat& V) {
Owen Anderson69c464d2009-07-27 20:59:43 +0000611 LLVMContextImpl* pImpl = Context.pImpl;
Galina Kistanovafc259902012-07-13 01:25:27 +0000612
Benjamin Kramer320682f2013-06-01 17:51:03 +0000613 ConstantFP *&Slot = pImpl->FPConstants[DenseMapAPFloatKeyInfo::KeyTy(V)];
Galina Kistanovafc259902012-07-13 01:25:27 +0000614
Owen Anderson69c464d2009-07-27 20:59:43 +0000615 if (!Slot) {
Chris Lattner229907c2011-07-18 04:54:35 +0000616 Type *Ty;
Dan Gohman518cda42011-12-17 00:04:22 +0000617 if (&V.getSemantics() == &APFloat::IEEEhalf)
618 Ty = Type::getHalfTy(Context);
619 else if (&V.getSemantics() == &APFloat::IEEEsingle)
Owen Anderson5dab84c2009-10-19 20:11:52 +0000620 Ty = Type::getFloatTy(Context);
621 else if (&V.getSemantics() == &APFloat::IEEEdouble)
622 Ty = Type::getDoubleTy(Context);
623 else if (&V.getSemantics() == &APFloat::x87DoubleExtended)
624 Ty = Type::getX86_FP80Ty(Context);
625 else if (&V.getSemantics() == &APFloat::IEEEquad)
626 Ty = Type::getFP128Ty(Context);
627 else {
628 assert(&V.getSemantics() == &APFloat::PPCDoubleDouble &&
629 "Unknown FP format");
630 Ty = Type::getPPC_FP128Ty(Context);
Owen Anderson69c464d2009-07-27 20:59:43 +0000631 }
Owen Anderson5dab84c2009-10-19 20:11:52 +0000632 Slot = new ConstantFP(Ty, V);
Owen Anderson69c464d2009-07-27 20:59:43 +0000633 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000634
Owen Anderson69c464d2009-07-27 20:59:43 +0000635 return Slot;
636}
637
Chris Lattner229907c2011-07-18 04:54:35 +0000638ConstantFP *ConstantFP::getInfinity(Type *Ty, bool Negative) {
Dan Gohmanfeb50212009-09-25 23:00:48 +0000639 const fltSemantics &Semantics = *TypeToFloatSemantics(Ty);
640 return ConstantFP::get(Ty->getContext(),
641 APFloat::getInf(Semantics, Negative));
642}
643
Chris Lattner229907c2011-07-18 04:54:35 +0000644ConstantFP::ConstantFP(Type *Ty, const APFloat& V)
Dale Johannesend246b2c2007-08-30 00:23:21 +0000645 : Constant(Ty, ConstantFPVal, 0, 0), Val(V) {
Chris Lattner98bd9392008-04-09 06:38:30 +0000646 assert(&V.getSemantics() == TypeToFloatSemantics(Ty) &&
647 "FP type Mismatch");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000648}
649
Chris Lattnerbe6610c2011-07-15 06:14:08 +0000650bool ConstantFP::isExactlyValue(const APFloat &V) const {
Dale Johannesend246b2c2007-08-30 00:23:21 +0000651 return Val.bitwiseIsEqual(V);
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000652}
653
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000654//===----------------------------------------------------------------------===//
Chris Lattner030af792012-01-24 05:42:11 +0000655// ConstantAggregateZero Implementation
656//===----------------------------------------------------------------------===//
657
658/// getSequentialElement - If this CAZ has array or vector type, return a zero
659/// with the right element type.
Chris Lattner7e683d12012-01-25 06:16:32 +0000660Constant *ConstantAggregateZero::getSequentialElement() const {
Chris Lattner8326bd82012-01-26 00:42:34 +0000661 return Constant::getNullValue(getType()->getSequentialElementType());
Chris Lattner030af792012-01-24 05:42:11 +0000662}
663
664/// getStructElement - If this CAZ has struct type, return a zero with the
665/// right element type for the specified element.
Chris Lattner7e683d12012-01-25 06:16:32 +0000666Constant *ConstantAggregateZero::getStructElement(unsigned Elt) const {
Chris Lattner8326bd82012-01-26 00:42:34 +0000667 return Constant::getNullValue(getType()->getStructElementType(Elt));
Chris Lattner030af792012-01-24 05:42:11 +0000668}
669
670/// getElementValue - Return a zero of the right value for the specified GEP
671/// index if we can, otherwise return null (e.g. if C is a ConstantExpr).
Chris Lattner7e683d12012-01-25 06:16:32 +0000672Constant *ConstantAggregateZero::getElementValue(Constant *C) const {
Chris Lattner030af792012-01-24 05:42:11 +0000673 if (isa<SequentialType>(getType()))
674 return getSequentialElement();
675 return getStructElement(cast<ConstantInt>(C)->getZExtValue());
676}
677
Chris Lattnerf7eb5432012-01-24 07:54:10 +0000678/// getElementValue - Return a zero of the right value for the specified GEP
679/// index.
Chris Lattner7e683d12012-01-25 06:16:32 +0000680Constant *ConstantAggregateZero::getElementValue(unsigned Idx) const {
Chris Lattnerf7eb5432012-01-24 07:54:10 +0000681 if (isa<SequentialType>(getType()))
682 return getSequentialElement();
683 return getStructElement(Idx);
684}
685
686
Chris Lattner030af792012-01-24 05:42:11 +0000687//===----------------------------------------------------------------------===//
688// UndefValue Implementation
689//===----------------------------------------------------------------------===//
690
691/// getSequentialElement - If this undef has array or vector type, return an
692/// undef with the right element type.
Chris Lattner7e683d12012-01-25 06:16:32 +0000693UndefValue *UndefValue::getSequentialElement() const {
Chris Lattner8326bd82012-01-26 00:42:34 +0000694 return UndefValue::get(getType()->getSequentialElementType());
Chris Lattner030af792012-01-24 05:42:11 +0000695}
696
697/// getStructElement - If this undef has struct type, return a zero with the
698/// right element type for the specified element.
Chris Lattner7e683d12012-01-25 06:16:32 +0000699UndefValue *UndefValue::getStructElement(unsigned Elt) const {
Chris Lattner8326bd82012-01-26 00:42:34 +0000700 return UndefValue::get(getType()->getStructElementType(Elt));
Chris Lattner030af792012-01-24 05:42:11 +0000701}
702
703/// getElementValue - Return an undef of the right value for the specified GEP
704/// index if we can, otherwise return null (e.g. if C is a ConstantExpr).
Chris Lattner7e683d12012-01-25 06:16:32 +0000705UndefValue *UndefValue::getElementValue(Constant *C) const {
Chris Lattner030af792012-01-24 05:42:11 +0000706 if (isa<SequentialType>(getType()))
707 return getSequentialElement();
708 return getStructElement(cast<ConstantInt>(C)->getZExtValue());
709}
710
Chris Lattnerf7eb5432012-01-24 07:54:10 +0000711/// getElementValue - Return an undef of the right value for the specified GEP
712/// index.
Chris Lattner7e683d12012-01-25 06:16:32 +0000713UndefValue *UndefValue::getElementValue(unsigned Idx) const {
Chris Lattnerf7eb5432012-01-24 07:54:10 +0000714 if (isa<SequentialType>(getType()))
715 return getSequentialElement();
716 return getStructElement(Idx);
717}
718
719
Chris Lattner030af792012-01-24 05:42:11 +0000720
721//===----------------------------------------------------------------------===//
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000722// ConstantXXX Classes
723//===----------------------------------------------------------------------===//
724
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000725template <typename ItTy, typename EltTy>
726static bool rangeOnlyContains(ItTy Start, ItTy End, EltTy Elt) {
727 for (; Start != End; ++Start)
728 if (*Start != Elt)
729 return false;
730 return true;
731}
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000732
Jay Foad89d9b812011-07-25 10:14:44 +0000733ConstantArray::ConstantArray(ArrayType *T, ArrayRef<Constant *> V)
Gabor Greiff6caff662008-05-10 08:32:32 +0000734 : Constant(T, ConstantArrayVal,
735 OperandTraits<ConstantArray>::op_end(this) - V.size(),
736 V.size()) {
Alkis Evlogimenos0507ffe2004-09-15 02:32:15 +0000737 assert(V.size() == T->getNumElements() &&
738 "Invalid initializer vector for constant array");
Jay Foad89d9b812011-07-25 10:14:44 +0000739 for (unsigned i = 0, e = V.size(); i != e; ++i)
740 assert(V[i]->getType() == T->getElementType() &&
Alkis Evlogimenoscb031d92004-09-10 04:16:59 +0000741 "Initializer for array element doesn't match array element type!");
Jay Foad89d9b812011-07-25 10:14:44 +0000742 std::copy(V.begin(), V.end(), op_begin());
Chris Lattner2f7c9632001-06-06 20:29:01 +0000743}
744
Chris Lattner229907c2011-07-18 04:54:35 +0000745Constant *ConstantArray::get(ArrayType *Ty, ArrayRef<Constant*> V) {
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000746 // Empty arrays are canonicalized to ConstantAggregateZero.
747 if (V.empty())
748 return ConstantAggregateZero::get(Ty);
749
Jeffrey Yasskin8ce67f82009-09-30 21:08:08 +0000750 for (unsigned i = 0, e = V.size(); i != e; ++i) {
751 assert(V[i]->getType() == Ty->getElementType() &&
752 "Wrong type in array element initializer");
753 }
Owen Andersonc2c79322009-07-28 18:32:17 +0000754 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
Galina Kistanovafc259902012-07-13 01:25:27 +0000755
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000756 // If this is an all-zero array, return a ConstantAggregateZero object. If
757 // all undef, return an UndefValue, if "all simple", then return a
758 // ConstantDataArray.
759 Constant *C = V[0];
760 if (isa<UndefValue>(C) && rangeOnlyContains(V.begin(), V.end(), C))
761 return UndefValue::get(Ty);
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000762
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000763 if (C->isNullValue() && rangeOnlyContains(V.begin(), V.end(), C))
764 return ConstantAggregateZero::get(Ty);
765
766 // Check to see if all of the elements are ConstantFP or ConstantInt and if
767 // the element type is compatible with ConstantDataVector. If so, use it.
768 if (ConstantDataSequential::isElementTypeCompatible(C->getType())) {
769 // We speculatively build the elements here even if it turns out that there
770 // is a constantexpr or something else weird in the array, since it is so
771 // uncommon for that to happen.
772 if (ConstantInt *CI = dyn_cast<ConstantInt>(C)) {
773 if (CI->getType()->isIntegerTy(8)) {
774 SmallVector<uint8_t, 16> Elts;
775 for (unsigned i = 0, e = V.size(); i != e; ++i)
776 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
777 Elts.push_back(CI->getZExtValue());
778 else
779 break;
780 if (Elts.size() == V.size())
781 return ConstantDataArray::get(C->getContext(), Elts);
782 } else if (CI->getType()->isIntegerTy(16)) {
783 SmallVector<uint16_t, 16> Elts;
784 for (unsigned i = 0, e = V.size(); i != e; ++i)
785 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
786 Elts.push_back(CI->getZExtValue());
787 else
788 break;
789 if (Elts.size() == V.size())
790 return ConstantDataArray::get(C->getContext(), Elts);
791 } else if (CI->getType()->isIntegerTy(32)) {
792 SmallVector<uint32_t, 16> Elts;
793 for (unsigned i = 0, e = V.size(); i != e; ++i)
794 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
795 Elts.push_back(CI->getZExtValue());
796 else
797 break;
798 if (Elts.size() == V.size())
799 return ConstantDataArray::get(C->getContext(), Elts);
800 } else if (CI->getType()->isIntegerTy(64)) {
801 SmallVector<uint64_t, 16> Elts;
802 for (unsigned i = 0, e = V.size(); i != e; ++i)
803 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
804 Elts.push_back(CI->getZExtValue());
805 else
806 break;
807 if (Elts.size() == V.size())
808 return ConstantDataArray::get(C->getContext(), Elts);
809 }
810 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000811
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000812 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
813 if (CFP->getType()->isFloatTy()) {
814 SmallVector<float, 16> Elts;
815 for (unsigned i = 0, e = V.size(); i != e; ++i)
816 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V[i]))
817 Elts.push_back(CFP->getValueAPF().convertToFloat());
818 else
819 break;
820 if (Elts.size() == V.size())
821 return ConstantDataArray::get(C->getContext(), Elts);
822 } else if (CFP->getType()->isDoubleTy()) {
823 SmallVector<double, 16> Elts;
824 for (unsigned i = 0, e = V.size(); i != e; ++i)
825 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V[i]))
826 Elts.push_back(CFP->getValueAPF().convertToDouble());
827 else
828 break;
829 if (Elts.size() == V.size())
830 return ConstantDataArray::get(C->getContext(), Elts);
831 }
832 }
Owen Andersonc2c79322009-07-28 18:32:17 +0000833 }
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000834
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000835 // Otherwise, we really do want to create a ConstantArray.
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000836 return pImpl->ArrayConstants.getOrCreate(Ty, V);
Owen Andersonc2c79322009-07-28 18:32:17 +0000837}
838
Chris Lattnercc19efa2011-06-20 04:01:31 +0000839/// getTypeForElements - Return an anonymous struct type to use for a constant
840/// with the specified set of elements. The list must not be empty.
841StructType *ConstantStruct::getTypeForElements(LLVMContext &Context,
842 ArrayRef<Constant*> V,
843 bool Packed) {
Bill Wendling3ae7dd32012-02-07 01:27:51 +0000844 unsigned VecSize = V.size();
845 SmallVector<Type*, 16> EltTypes(VecSize);
846 for (unsigned i = 0; i != VecSize; ++i)
847 EltTypes[i] = V[i]->getType();
Galina Kistanovafc259902012-07-13 01:25:27 +0000848
Chris Lattnercc19efa2011-06-20 04:01:31 +0000849 return StructType::get(Context, EltTypes, Packed);
850}
851
852
853StructType *ConstantStruct::getTypeForElements(ArrayRef<Constant*> V,
854 bool Packed) {
855 assert(!V.empty() &&
856 "ConstantStruct::getTypeForElements cannot be called on empty list");
857 return getTypeForElements(V[0]->getContext(), V, Packed);
858}
859
860
Jay Foad89d9b812011-07-25 10:14:44 +0000861ConstantStruct::ConstantStruct(StructType *T, ArrayRef<Constant *> V)
Gabor Greiff6caff662008-05-10 08:32:32 +0000862 : Constant(T, ConstantStructVal,
863 OperandTraits<ConstantStruct>::op_end(this) - V.size(),
864 V.size()) {
Chris Lattnerc3e74cd2011-08-07 04:18:48 +0000865 assert(V.size() == T->getNumElements() &&
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000866 "Invalid initializer vector for constant structure");
Jay Foad89d9b812011-07-25 10:14:44 +0000867 for (unsigned i = 0, e = V.size(); i != e; ++i)
868 assert((T->isOpaque() || V[i]->getType() == T->getElementType(i)) &&
Chris Lattner93c8f142003-06-02 17:42:47 +0000869 "Initializer for struct element doesn't match struct element type!");
Jay Foad89d9b812011-07-25 10:14:44 +0000870 std::copy(V.begin(), V.end(), op_begin());
Chris Lattner2f7c9632001-06-06 20:29:01 +0000871}
872
Owen Anderson45308b52009-07-27 22:29:26 +0000873// ConstantStruct accessors.
Chris Lattner229907c2011-07-18 04:54:35 +0000874Constant *ConstantStruct::get(StructType *ST, ArrayRef<Constant*> V) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000875 assert((ST->isOpaque() || ST->getNumElements() == V.size()) &&
876 "Incorrect # elements specified to ConstantStruct::get");
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000877
878 // Create a ConstantAggregateZero value if all elements are zeros.
879 bool isZero = true;
880 bool isUndef = false;
881
882 if (!V.empty()) {
883 isUndef = isa<UndefValue>(V[0]);
884 isZero = V[0]->isNullValue();
885 if (isUndef || isZero) {
886 for (unsigned i = 0, e = V.size(); i != e; ++i) {
887 if (!V[i]->isNullValue())
888 isZero = false;
889 if (!isa<UndefValue>(V[i]))
890 isUndef = false;
891 }
892 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000893 }
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000894 if (isZero)
895 return ConstantAggregateZero::get(ST);
896 if (isUndef)
897 return UndefValue::get(ST);
Galina Kistanovafc259902012-07-13 01:25:27 +0000898
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000899 return ST->getContext().pImpl->StructConstants.getOrCreate(ST, V);
Owen Anderson45308b52009-07-27 22:29:26 +0000900}
901
Chris Lattnerc3e74cd2011-08-07 04:18:48 +0000902Constant *ConstantStruct::get(StructType *T, ...) {
Talin3a0a30d2011-02-28 23:53:27 +0000903 va_list ap;
Chris Lattnercc19efa2011-06-20 04:01:31 +0000904 SmallVector<Constant*, 8> Values;
905 va_start(ap, T);
906 while (Constant *Val = va_arg(ap, llvm::Constant*))
Talin3a0a30d2011-02-28 23:53:27 +0000907 Values.push_back(Val);
Talinde422be2011-03-01 18:00:49 +0000908 va_end(ap);
Chris Lattnercc19efa2011-06-20 04:01:31 +0000909 return get(T, Values);
Talin3a0a30d2011-02-28 23:53:27 +0000910}
911
Jay Foad89d9b812011-07-25 10:14:44 +0000912ConstantVector::ConstantVector(VectorType *T, ArrayRef<Constant *> V)
Gabor Greiff6caff662008-05-10 08:32:32 +0000913 : Constant(T, ConstantVectorVal,
914 OperandTraits<ConstantVector>::op_end(this) - V.size(),
915 V.size()) {
Jay Foad89d9b812011-07-25 10:14:44 +0000916 for (size_t i = 0, e = V.size(); i != e; i++)
917 assert(V[i]->getType() == T->getElementType() &&
Dan Gohman30978072007-05-24 14:36:04 +0000918 "Initializer for vector element doesn't match vector element type!");
Jay Foad89d9b812011-07-25 10:14:44 +0000919 std::copy(V.begin(), V.end(), op_begin());
Brian Gaeke02209042004-08-20 06:00:58 +0000920}
921
Owen Anderson4aa32952009-07-28 21:19:26 +0000922// ConstantVector accessors.
Jay Foadb8a8bed32011-06-22 09:10:19 +0000923Constant *ConstantVector::get(ArrayRef<Constant*> V) {
Jay Foad9f32cfd2011-01-27 14:44:55 +0000924 assert(!V.empty() && "Vectors can't be empty");
Chris Lattner229907c2011-07-18 04:54:35 +0000925 VectorType *T = VectorType::get(V.front()->getType(), V.size());
Chris Lattner69229312011-02-15 00:14:00 +0000926 LLVMContextImpl *pImpl = T->getContext().pImpl;
Jay Foad9f32cfd2011-01-27 14:44:55 +0000927
Chris Lattner69229312011-02-15 00:14:00 +0000928 // If this is an all-undef or all-zero vector, return a
Owen Anderson4aa32952009-07-28 21:19:26 +0000929 // ConstantAggregateZero or UndefValue.
930 Constant *C = V[0];
931 bool isZero = C->isNullValue();
932 bool isUndef = isa<UndefValue>(C);
933
934 if (isZero || isUndef) {
935 for (unsigned i = 1, e = V.size(); i != e; ++i)
936 if (V[i] != C) {
937 isZero = isUndef = false;
938 break;
939 }
940 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000941
Owen Anderson4aa32952009-07-28 21:19:26 +0000942 if (isZero)
Owen Andersonb292b8c2009-07-30 23:03:37 +0000943 return ConstantAggregateZero::get(T);
Owen Anderson4aa32952009-07-28 21:19:26 +0000944 if (isUndef)
Owen Andersonb292b8c2009-07-30 23:03:37 +0000945 return UndefValue::get(T);
Galina Kistanovafc259902012-07-13 01:25:27 +0000946
Chris Lattner978fe0c2012-01-30 06:21:21 +0000947 // Check to see if all of the elements are ConstantFP or ConstantInt and if
948 // the element type is compatible with ConstantDataVector. If so, use it.
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000949 if (ConstantDataSequential::isElementTypeCompatible(C->getType())) {
Chris Lattner978fe0c2012-01-30 06:21:21 +0000950 // We speculatively build the elements here even if it turns out that there
951 // is a constantexpr or something else weird in the array, since it is so
952 // uncommon for that to happen.
953 if (ConstantInt *CI = dyn_cast<ConstantInt>(C)) {
954 if (CI->getType()->isIntegerTy(8)) {
955 SmallVector<uint8_t, 16> Elts;
956 for (unsigned i = 0, e = V.size(); i != e; ++i)
957 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
958 Elts.push_back(CI->getZExtValue());
959 else
960 break;
961 if (Elts.size() == V.size())
962 return ConstantDataVector::get(C->getContext(), Elts);
963 } else if (CI->getType()->isIntegerTy(16)) {
964 SmallVector<uint16_t, 16> Elts;
965 for (unsigned i = 0, e = V.size(); i != e; ++i)
966 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
967 Elts.push_back(CI->getZExtValue());
968 else
969 break;
970 if (Elts.size() == V.size())
971 return ConstantDataVector::get(C->getContext(), Elts);
972 } else if (CI->getType()->isIntegerTy(32)) {
973 SmallVector<uint32_t, 16> Elts;
974 for (unsigned i = 0, e = V.size(); i != e; ++i)
975 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
976 Elts.push_back(CI->getZExtValue());
977 else
978 break;
979 if (Elts.size() == V.size())
980 return ConstantDataVector::get(C->getContext(), Elts);
981 } else if (CI->getType()->isIntegerTy(64)) {
982 SmallVector<uint64_t, 16> Elts;
983 for (unsigned i = 0, e = V.size(); i != e; ++i)
984 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
985 Elts.push_back(CI->getZExtValue());
986 else
987 break;
988 if (Elts.size() == V.size())
989 return ConstantDataVector::get(C->getContext(), Elts);
990 }
991 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000992
Chris Lattner978fe0c2012-01-30 06:21:21 +0000993 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
994 if (CFP->getType()->isFloatTy()) {
995 SmallVector<float, 16> Elts;
996 for (unsigned i = 0, e = V.size(); i != e; ++i)
997 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V[i]))
998 Elts.push_back(CFP->getValueAPF().convertToFloat());
999 else
1000 break;
1001 if (Elts.size() == V.size())
1002 return ConstantDataVector::get(C->getContext(), Elts);
1003 } else if (CFP->getType()->isDoubleTy()) {
1004 SmallVector<double, 16> Elts;
1005 for (unsigned i = 0, e = V.size(); i != e; ++i)
1006 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V[i]))
1007 Elts.push_back(CFP->getValueAPF().convertToDouble());
1008 else
1009 break;
1010 if (Elts.size() == V.size())
1011 return ConstantDataVector::get(C->getContext(), Elts);
1012 }
1013 }
1014 }
Galina Kistanovafc259902012-07-13 01:25:27 +00001015
Chris Lattner978fe0c2012-01-30 06:21:21 +00001016 // Otherwise, the element type isn't compatible with ConstantDataVector, or
1017 // the operand list constants a ConstantExpr or something else strange.
Owen Anderson4aa32952009-07-28 21:19:26 +00001018 return pImpl->VectorConstants.getOrCreate(T, V);
1019}
1020
Chris Lattnere9eed292012-01-25 05:19:54 +00001021Constant *ConstantVector::getSplat(unsigned NumElts, Constant *V) {
Chris Lattner978fe0c2012-01-30 06:21:21 +00001022 // If this splat is compatible with ConstantDataVector, use it instead of
1023 // ConstantVector.
1024 if ((isa<ConstantFP>(V) || isa<ConstantInt>(V)) &&
1025 ConstantDataSequential::isElementTypeCompatible(V->getType()))
1026 return ConstantDataVector::getSplat(NumElts, V);
Galina Kistanovafc259902012-07-13 01:25:27 +00001027
Chris Lattnere9eed292012-01-25 05:19:54 +00001028 SmallVector<Constant*, 32> Elts(NumElts, V);
1029 return get(Elts);
1030}
1031
1032
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001033// Utility function for determining if a ConstantExpr is a CastOp or not. This
1034// can't be inline because we don't want to #include Instruction.h into
1035// Constant.h
1036bool ConstantExpr::isCast() const {
1037 return Instruction::isCast(getOpcode());
1038}
1039
Reid Spenceree3c9912006-12-04 05:19:50 +00001040bool ConstantExpr::isCompare() const {
Nick Lewyckya21d3da2009-07-08 03:04:38 +00001041 return getOpcode() == Instruction::ICmp || getOpcode() == Instruction::FCmp;
Reid Spenceree3c9912006-12-04 05:19:50 +00001042}
1043
Dan Gohman7190d482009-09-10 23:37:55 +00001044bool ConstantExpr::isGEPWithNoNotionalOverIndexing() const {
1045 if (getOpcode() != Instruction::GetElementPtr) return false;
1046
1047 gep_type_iterator GEPI = gep_type_begin(this), E = gep_type_end(this);
Oscar Fuentes40b31ad2010-08-02 06:00:15 +00001048 User::const_op_iterator OI = llvm::next(this->op_begin());
Dan Gohman7190d482009-09-10 23:37:55 +00001049
1050 // Skip the first index, as it has no static limit.
1051 ++GEPI;
1052 ++OI;
1053
1054 // The remaining indices must be compile-time known integers within the
1055 // bounds of the corresponding notional static array types.
1056 for (; GEPI != E; ++GEPI, ++OI) {
1057 ConstantInt *CI = dyn_cast<ConstantInt>(*OI);
1058 if (!CI) return false;
Chris Lattner229907c2011-07-18 04:54:35 +00001059 if (ArrayType *ATy = dyn_cast<ArrayType>(*GEPI))
Dan Gohman7190d482009-09-10 23:37:55 +00001060 if (CI->getValue().getActiveBits() > 64 ||
1061 CI->getZExtValue() >= ATy->getNumElements())
1062 return false;
1063 }
1064
1065 // All the indices checked out.
1066 return true;
1067}
1068
Dan Gohman1ecaf452008-05-31 00:58:22 +00001069bool ConstantExpr::hasIndices() const {
1070 return getOpcode() == Instruction::ExtractValue ||
1071 getOpcode() == Instruction::InsertValue;
1072}
1073
Jay Foad0091fe82011-04-13 15:22:40 +00001074ArrayRef<unsigned> ConstantExpr::getIndices() const {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001075 if (const ExtractValueConstantExpr *EVCE =
1076 dyn_cast<ExtractValueConstantExpr>(this))
1077 return EVCE->Indices;
Dan Gohmana469bdb2008-06-23 16:39:44 +00001078
1079 return cast<InsertValueConstantExpr>(this)->Indices;
Dan Gohman1ecaf452008-05-31 00:58:22 +00001080}
1081
Reid Spencer10fbf0e2006-12-03 05:48:19 +00001082unsigned ConstantExpr::getPredicate() const {
Chris Lattnerd04e32d2011-07-17 06:01:30 +00001083 assert(isCompare());
Chris Lattneref650092007-10-18 16:26:24 +00001084 return ((const CompareConstantExpr*)this)->predicate;
Reid Spencer10fbf0e2006-12-03 05:48:19 +00001085}
Chris Lattner60e0dd72001-10-03 06:12:09 +00001086
Chris Lattner7c1018a2006-07-14 19:37:40 +00001087/// getWithOperandReplaced - Return a constant expression identical to this
1088/// one, but with the specified operand set to the specified value.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001089Constant *
1090ConstantExpr::getWithOperandReplaced(unsigned OpNo, Constant *Op) const {
Chris Lattner7c1018a2006-07-14 19:37:40 +00001091 assert(Op->getType() == getOperand(OpNo)->getType() &&
1092 "Replacing operand with value of different type!");
Chris Lattner227816342006-07-14 22:20:01 +00001093 if (getOperand(OpNo) == Op)
1094 return const_cast<ConstantExpr*>(this);
Chris Lattner37e38352012-01-26 20:37:11 +00001095
1096 SmallVector<Constant*, 8> NewOps;
1097 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
1098 NewOps.push_back(i == OpNo ? Op : getOperand(i));
Galina Kistanovafc259902012-07-13 01:25:27 +00001099
Chris Lattner37e38352012-01-26 20:37:11 +00001100 return getWithOperands(NewOps);
Chris Lattner227816342006-07-14 22:20:01 +00001101}
1102
1103/// getWithOperands - This returns the current constant expression with the
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001104/// operands replaced with the specified values. The specified array must
1105/// have the same number of operands as our current one.
Chris Lattner227816342006-07-14 22:20:01 +00001106Constant *ConstantExpr::
Chris Lattner229907c2011-07-18 04:54:35 +00001107getWithOperands(ArrayRef<Constant*> Ops, Type *Ty) const {
Jay Foad5c984e562011-04-13 13:46:01 +00001108 assert(Ops.size() == getNumOperands() && "Operand count mismatch!");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001109 bool AnyChange = Ty != getType();
1110 for (unsigned i = 0; i != Ops.size(); ++i)
Chris Lattner227816342006-07-14 22:20:01 +00001111 AnyChange |= Ops[i] != getOperand(i);
Galina Kistanovafc259902012-07-13 01:25:27 +00001112
Chris Lattner227816342006-07-14 22:20:01 +00001113 if (!AnyChange) // No operands changed, return self.
1114 return const_cast<ConstantExpr*>(this);
1115
1116 switch (getOpcode()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001117 case Instruction::Trunc:
1118 case Instruction::ZExt:
1119 case Instruction::SExt:
1120 case Instruction::FPTrunc:
1121 case Instruction::FPExt:
1122 case Instruction::UIToFP:
1123 case Instruction::SIToFP:
1124 case Instruction::FPToUI:
1125 case Instruction::FPToSI:
1126 case Instruction::PtrToInt:
1127 case Instruction::IntToPtr:
1128 case Instruction::BitCast:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001129 case Instruction::AddrSpaceCast:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001130 return ConstantExpr::getCast(getOpcode(), Ops[0], Ty);
Chris Lattner227816342006-07-14 22:20:01 +00001131 case Instruction::Select:
1132 return ConstantExpr::getSelect(Ops[0], Ops[1], Ops[2]);
1133 case Instruction::InsertElement:
1134 return ConstantExpr::getInsertElement(Ops[0], Ops[1], Ops[2]);
1135 case Instruction::ExtractElement:
1136 return ConstantExpr::getExtractElement(Ops[0], Ops[1]);
Chris Lattner37e38352012-01-26 20:37:11 +00001137 case Instruction::InsertValue:
1138 return ConstantExpr::getInsertValue(Ops[0], Ops[1], getIndices());
1139 case Instruction::ExtractValue:
1140 return ConstantExpr::getExtractValue(Ops[0], getIndices());
Chris Lattner227816342006-07-14 22:20:01 +00001141 case Instruction::ShuffleVector:
1142 return ConstantExpr::getShuffleVector(Ops[0], Ops[1], Ops[2]);
Chris Lattnerb5d70302007-02-19 20:01:23 +00001143 case Instruction::GetElementPtr:
Chris Lattner37e38352012-01-26 20:37:11 +00001144 return ConstantExpr::getGetElementPtr(Ops[0], Ops.slice(1),
1145 cast<GEPOperator>(this)->isInBounds());
Reid Spencer266e42b2006-12-23 06:05:41 +00001146 case Instruction::ICmp:
1147 case Instruction::FCmp:
1148 return ConstantExpr::getCompare(getPredicate(), Ops[0], Ops[1]);
Chris Lattner227816342006-07-14 22:20:01 +00001149 default:
1150 assert(getNumOperands() == 2 && "Must be binary operator?");
Chris Lattnerb9c86512009-12-29 02:14:09 +00001151 return ConstantExpr::get(getOpcode(), Ops[0], Ops[1], SubclassOptionalData);
Chris Lattner7c1018a2006-07-14 19:37:40 +00001152 }
1153}
1154
Chris Lattner2f7c9632001-06-06 20:29:01 +00001155
1156//===----------------------------------------------------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +00001157// isValueValidForType implementations
1158
Chris Lattner229907c2011-07-18 04:54:35 +00001159bool ConstantInt::isValueValidForType(Type *Ty, uint64_t Val) {
Chris Lattner8326bd82012-01-26 00:42:34 +00001160 unsigned NumBits = Ty->getIntegerBitWidth(); // assert okay
1161 if (Ty->isIntegerTy(1))
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001162 return Val == 0 || Val == 1;
Reid Spencerd7a00d72007-02-05 23:47:56 +00001163 if (NumBits >= 64)
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001164 return true; // always true, has to fit in largest type
1165 uint64_t Max = (1ll << NumBits) - 1;
1166 return Val <= Max;
Reid Spencere7334722006-12-19 01:28:19 +00001167}
1168
Chris Lattner229907c2011-07-18 04:54:35 +00001169bool ConstantInt::isValueValidForType(Type *Ty, int64_t Val) {
Chris Lattner8326bd82012-01-26 00:42:34 +00001170 unsigned NumBits = Ty->getIntegerBitWidth();
1171 if (Ty->isIntegerTy(1))
Reid Spencera94d3942007-01-19 21:13:56 +00001172 return Val == 0 || Val == 1 || Val == -1;
Reid Spencerd7a00d72007-02-05 23:47:56 +00001173 if (NumBits >= 64)
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001174 return true; // always true, has to fit in largest type
1175 int64_t Min = -(1ll << (NumBits-1));
1176 int64_t Max = (1ll << (NumBits-1)) - 1;
1177 return (Val >= Min && Val <= Max);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001178}
1179
Chris Lattner229907c2011-07-18 04:54:35 +00001180bool ConstantFP::isValueValidForType(Type *Ty, const APFloat& Val) {
Dale Johannesend246b2c2007-08-30 00:23:21 +00001181 // convert modifies in place, so make a copy.
1182 APFloat Val2 = APFloat(Val);
Dale Johannesen4f0bd682008-10-09 23:00:39 +00001183 bool losesInfo;
Chris Lattner6b727592004-06-17 18:19:28 +00001184 switch (Ty->getTypeID()) {
Chris Lattner2f7c9632001-06-06 20:29:01 +00001185 default:
1186 return false; // These can't be represented as floating point!
1187
Dale Johannesend246b2c2007-08-30 00:23:21 +00001188 // FIXME rounding mode needs to be more flexible
Dan Gohman518cda42011-12-17 00:04:22 +00001189 case Type::HalfTyID: {
1190 if (&Val2.getSemantics() == &APFloat::IEEEhalf)
1191 return true;
1192 Val2.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven, &losesInfo);
1193 return !losesInfo;
1194 }
Dale Johannesen4f0bd682008-10-09 23:00:39 +00001195 case Type::FloatTyID: {
1196 if (&Val2.getSemantics() == &APFloat::IEEEsingle)
1197 return true;
1198 Val2.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven, &losesInfo);
1199 return !losesInfo;
1200 }
1201 case Type::DoubleTyID: {
Dan Gohman518cda42011-12-17 00:04:22 +00001202 if (&Val2.getSemantics() == &APFloat::IEEEhalf ||
1203 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen4f0bd682008-10-09 23:00:39 +00001204 &Val2.getSemantics() == &APFloat::IEEEdouble)
1205 return true;
1206 Val2.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, &losesInfo);
1207 return !losesInfo;
1208 }
Dale Johannesenbdad8092007-08-09 22:51:36 +00001209 case Type::X86_FP80TyID:
Dan Gohman518cda42011-12-17 00:04:22 +00001210 return &Val2.getSemantics() == &APFloat::IEEEhalf ||
1211 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen028084e2007-09-12 03:30:33 +00001212 &Val2.getSemantics() == &APFloat::IEEEdouble ||
1213 &Val2.getSemantics() == &APFloat::x87DoubleExtended;
Dale Johannesenbdad8092007-08-09 22:51:36 +00001214 case Type::FP128TyID:
Dan Gohman518cda42011-12-17 00:04:22 +00001215 return &Val2.getSemantics() == &APFloat::IEEEhalf ||
1216 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen028084e2007-09-12 03:30:33 +00001217 &Val2.getSemantics() == &APFloat::IEEEdouble ||
1218 &Val2.getSemantics() == &APFloat::IEEEquad;
Dale Johannesen007aa372007-10-11 18:07:22 +00001219 case Type::PPC_FP128TyID:
Dan Gohman518cda42011-12-17 00:04:22 +00001220 return &Val2.getSemantics() == &APFloat::IEEEhalf ||
1221 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen007aa372007-10-11 18:07:22 +00001222 &Val2.getSemantics() == &APFloat::IEEEdouble ||
1223 &Val2.getSemantics() == &APFloat::PPCDoubleDouble;
Chris Lattner2f7c9632001-06-06 20:29:01 +00001224 }
Chris Lattneraa2372562006-05-24 17:04:05 +00001225}
Chris Lattner9655e542001-07-20 19:16:02 +00001226
Chris Lattner030af792012-01-24 05:42:11 +00001227
Chris Lattner49d855c2001-09-07 16:46:31 +00001228//===----------------------------------------------------------------------===//
Chris Lattner49d855c2001-09-07 16:46:31 +00001229// Factory Function Implementation
1230
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001231ConstantAggregateZero *ConstantAggregateZero::get(Type *Ty) {
Chris Lattner13ee7952010-08-28 04:09:24 +00001232 assert((Ty->isStructTy() || Ty->isArrayTy() || Ty->isVectorTy()) &&
Owen Andersonb292b8c2009-07-30 23:03:37 +00001233 "Cannot create an aggregate zero of non-aggregate type!");
1234
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001235 ConstantAggregateZero *&Entry = Ty->getContext().pImpl->CAZConstants[Ty];
1236 if (Entry == 0)
1237 Entry = new ConstantAggregateZero(Ty);
Galina Kistanovafc259902012-07-13 01:25:27 +00001238
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001239 return Entry;
Owen Andersonb292b8c2009-07-30 23:03:37 +00001240}
1241
Chris Lattner030af792012-01-24 05:42:11 +00001242/// destroyConstant - Remove the constant from the constant table.
Dan Gohman92b551b2009-03-03 02:55:14 +00001243///
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001244void ConstantAggregateZero::destroyConstant() {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001245 getContext().pImpl->CAZConstants.erase(getType());
Chris Lattner9fba3da2004-02-15 05:53:04 +00001246 destroyConstantImpl();
1247}
1248
Dan Gohman92b551b2009-03-03 02:55:14 +00001249/// destroyConstant - Remove the constant from the constant table...
1250///
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001251void ConstantArray::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001252 getType()->getContext().pImpl->ArrayConstants.remove(this);
Chris Lattner98fa07b2003-05-23 20:03:32 +00001253 destroyConstantImpl();
1254}
1255
Chris Lattner81fabb02002-08-26 17:53:56 +00001256
Chris Lattner3462ae32001-12-03 22:26:30 +00001257//---- ConstantStruct::get() implementation...
Chris Lattner49d855c2001-09-07 16:46:31 +00001258//
Chris Lattnerb50d1352003-10-05 00:17:43 +00001259
Chris Lattnerd7a73302001-10-13 06:57:33 +00001260// destroyConstant - Remove the constant from the constant table...
Chris Lattner883ad0b2001-10-03 15:39:36 +00001261//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001262void ConstantStruct::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001263 getType()->getContext().pImpl->StructConstants.remove(this);
Chris Lattnerd7a73302001-10-13 06:57:33 +00001264 destroyConstantImpl();
1265}
Chris Lattner883ad0b2001-10-03 15:39:36 +00001266
Brian Gaeke02209042004-08-20 06:00:58 +00001267// destroyConstant - Remove the constant from the constant table...
1268//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001269void ConstantVector::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001270 getType()->getContext().pImpl->VectorConstants.remove(this);
Brian Gaeke02209042004-08-20 06:00:58 +00001271 destroyConstantImpl();
1272}
1273
Duncan Sandse6beec62012-11-13 12:59:33 +00001274/// getSplatValue - If this is a splat vector constant, meaning that all of
1275/// the elements have the same value, return that value. Otherwise return 0.
1276Constant *Constant::getSplatValue() const {
1277 assert(this->getType()->isVectorTy() && "Only valid for vectors!");
1278 if (isa<ConstantAggregateZero>(this))
1279 return getNullValue(this->getType()->getVectorElementType());
1280 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this))
1281 return CV->getSplatValue();
1282 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
1283 return CV->getSplatValue();
1284 return 0;
1285}
1286
Dan Gohman07159202007-10-17 17:51:30 +00001287/// getSplatValue - If this is a splat constant, where all of the
1288/// elements have the same value, return that value. Otherwise return null.
Duncan Sandscf0ff032011-02-01 08:39:12 +00001289Constant *ConstantVector::getSplatValue() const {
Dan Gohman07159202007-10-17 17:51:30 +00001290 // Check out first element.
1291 Constant *Elt = getOperand(0);
1292 // Then make sure all remaining elements point to the same value.
1293 for (unsigned I = 1, E = getNumOperands(); I < E; ++I)
Chris Lattnerd04e32d2011-07-17 06:01:30 +00001294 if (getOperand(I) != Elt)
1295 return 0;
Dan Gohman07159202007-10-17 17:51:30 +00001296 return Elt;
1297}
1298
Duncan Sandse6beec62012-11-13 12:59:33 +00001299/// If C is a constant integer then return its value, otherwise C must be a
1300/// vector of constant integers, all equal, and the common value is returned.
1301const APInt &Constant::getUniqueInteger() const {
1302 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
1303 return CI->getValue();
1304 assert(this->getSplatValue() && "Doesn't contain a unique integer!");
1305 const Constant *C = this->getAggregateElement(0U);
1306 assert(C && isa<ConstantInt>(C) && "Not a vector of numbers!");
1307 return cast<ConstantInt>(C)->getValue();
1308}
1309
1310
Chris Lattner31b132c2009-10-28 00:01:44 +00001311//---- ConstantPointerNull::get() implementation.
Chris Lattnerd7a73302001-10-13 06:57:33 +00001312//
Chris Lattner98fa07b2003-05-23 20:03:32 +00001313
Chris Lattner229907c2011-07-18 04:54:35 +00001314ConstantPointerNull *ConstantPointerNull::get(PointerType *Ty) {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001315 ConstantPointerNull *&Entry = Ty->getContext().pImpl->CPNConstants[Ty];
1316 if (Entry == 0)
1317 Entry = new ConstantPointerNull(Ty);
Galina Kistanovafc259902012-07-13 01:25:27 +00001318
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001319 return Entry;
Chris Lattner883ad0b2001-10-03 15:39:36 +00001320}
1321
Chris Lattner0c6e0b92002-08-18 00:40:04 +00001322// destroyConstant - Remove the constant from the constant table...
1323//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001324void ConstantPointerNull::destroyConstant() {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001325 getContext().pImpl->CPNConstants.erase(getType());
1326 // Free the constant and any dangling references to it.
Chris Lattner0c6e0b92002-08-18 00:40:04 +00001327 destroyConstantImpl();
1328}
1329
1330
Chris Lattner31b132c2009-10-28 00:01:44 +00001331//---- UndefValue::get() implementation.
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001332//
1333
Chris Lattner229907c2011-07-18 04:54:35 +00001334UndefValue *UndefValue::get(Type *Ty) {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001335 UndefValue *&Entry = Ty->getContext().pImpl->UVConstants[Ty];
1336 if (Entry == 0)
1337 Entry = new UndefValue(Ty);
Galina Kistanovafc259902012-07-13 01:25:27 +00001338
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001339 return Entry;
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001340}
1341
1342// destroyConstant - Remove the constant from the constant table.
1343//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001344void UndefValue::destroyConstant() {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001345 // Free the constant and any dangling references to it.
1346 getContext().pImpl->UVConstants.erase(getType());
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001347 destroyConstantImpl();
1348}
1349
Chris Lattner31b132c2009-10-28 00:01:44 +00001350//---- BlockAddress::get() implementation.
1351//
1352
1353BlockAddress *BlockAddress::get(BasicBlock *BB) {
1354 assert(BB->getParent() != 0 && "Block must have a parent");
1355 return get(BB->getParent(), BB);
1356}
1357
1358BlockAddress *BlockAddress::get(Function *F, BasicBlock *BB) {
1359 BlockAddress *&BA =
1360 F->getContext().pImpl->BlockAddresses[std::make_pair(F, BB)];
1361 if (BA == 0)
1362 BA = new BlockAddress(F, BB);
Galina Kistanovafc259902012-07-13 01:25:27 +00001363
Chris Lattner31b132c2009-10-28 00:01:44 +00001364 assert(BA->getFunction() == F && "Basic block moved between functions");
1365 return BA;
1366}
1367
1368BlockAddress::BlockAddress(Function *F, BasicBlock *BB)
1369: Constant(Type::getInt8PtrTy(F->getContext()), Value::BlockAddressVal,
1370 &Op<0>(), 2) {
Chris Lattnerc559a9f2009-11-01 03:03:03 +00001371 setOperand(0, F);
1372 setOperand(1, BB);
Chris Lattneraa99c942009-11-01 01:27:45 +00001373 BB->AdjustBlockAddressRefCount(1);
Chris Lattner31b132c2009-10-28 00:01:44 +00001374}
1375
1376
1377// destroyConstant - Remove the constant from the constant table.
1378//
1379void BlockAddress::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001380 getFunction()->getType()->getContext().pImpl
Chris Lattner31b132c2009-10-28 00:01:44 +00001381 ->BlockAddresses.erase(std::make_pair(getFunction(), getBasicBlock()));
Chris Lattneraa99c942009-11-01 01:27:45 +00001382 getBasicBlock()->AdjustBlockAddressRefCount(-1);
Chris Lattner31b132c2009-10-28 00:01:44 +00001383 destroyConstantImpl();
1384}
1385
1386void BlockAddress::replaceUsesOfWithOnConstant(Value *From, Value *To, Use *U) {
1387 // This could be replacing either the Basic Block or the Function. In either
1388 // case, we have to remove the map entry.
1389 Function *NewF = getFunction();
1390 BasicBlock *NewBB = getBasicBlock();
Galina Kistanovafc259902012-07-13 01:25:27 +00001391
Chris Lattner31b132c2009-10-28 00:01:44 +00001392 if (U == &Op<0>())
Derek Schuffec9dc012013-06-13 19:51:17 +00001393 NewF = cast<Function>(To->stripPointerCasts());
Chris Lattner31b132c2009-10-28 00:01:44 +00001394 else
1395 NewBB = cast<BasicBlock>(To);
Galina Kistanovafc259902012-07-13 01:25:27 +00001396
Chris Lattner31b132c2009-10-28 00:01:44 +00001397 // See if the 'new' entry already exists, if not, just update this in place
1398 // and return early.
1399 BlockAddress *&NewBA =
1400 getContext().pImpl->BlockAddresses[std::make_pair(NewF, NewBB)];
1401 if (NewBA == 0) {
Chris Lattnerc559a9f2009-11-01 03:03:03 +00001402 getBasicBlock()->AdjustBlockAddressRefCount(-1);
Galina Kistanovafc259902012-07-13 01:25:27 +00001403
Chris Lattner31b132c2009-10-28 00:01:44 +00001404 // Remove the old entry, this can't cause the map to rehash (just a
1405 // tombstone will get added).
1406 getContext().pImpl->BlockAddresses.erase(std::make_pair(getFunction(),
1407 getBasicBlock()));
1408 NewBA = this;
Chris Lattnerc559a9f2009-11-01 03:03:03 +00001409 setOperand(0, NewF);
1410 setOperand(1, NewBB);
1411 getBasicBlock()->AdjustBlockAddressRefCount(1);
Chris Lattner31b132c2009-10-28 00:01:44 +00001412 return;
1413 }
1414
1415 // Otherwise, I do need to replace this with an existing value.
1416 assert(NewBA != this && "I didn't contain From!");
Galina Kistanovafc259902012-07-13 01:25:27 +00001417
Chris Lattner31b132c2009-10-28 00:01:44 +00001418 // Everyone using this now uses the replacement.
Chris Lattneraf1783f2011-07-15 06:18:52 +00001419 replaceAllUsesWith(NewBA);
Galina Kistanovafc259902012-07-13 01:25:27 +00001420
Chris Lattner31b132c2009-10-28 00:01:44 +00001421 destroyConstant();
1422}
1423
1424//---- ConstantExpr::get() implementations.
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001425//
Reid Spencer8d9336d2006-12-31 05:26:44 +00001426
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001427/// This is a utility function to handle folding of casts and lookup of the
Duncan Sands7d6c8ae2008-03-30 19:38:55 +00001428/// cast in the ExprConstants map. It is used by the various get* methods below.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001429static inline Constant *getFoldedCast(
Chris Lattner229907c2011-07-18 04:54:35 +00001430 Instruction::CastOps opc, Constant *C, Type *Ty) {
Chris Lattner815ae2b2003-10-07 22:19:19 +00001431 assert(Ty->isFirstClassType() && "Cannot cast to an aggregate type!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001432 // Fold a few common cases
Chris Lattnerf5edeeb2010-02-01 20:48:08 +00001433 if (Constant *FC = ConstantFoldCastInstruction(opc, C, Ty))
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001434 return FC;
Chris Lattneracdbe712003-04-17 19:24:48 +00001435
Owen Anderson1584a292009-08-04 20:25:11 +00001436 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
1437
Nadav Rotem88330432013-03-07 01:30:40 +00001438 // Look up the constant in the table first to ensure uniqueness.
Nadav Rotem96a4aa62013-03-07 01:38:04 +00001439 ExprMapKeyType Key(opc, C);
Galina Kistanovafc259902012-07-13 01:25:27 +00001440
Owen Anderson1584a292009-08-04 20:25:11 +00001441 return pImpl->ExprConstants.getOrCreate(Ty, Key);
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001442}
Galina Kistanovafc259902012-07-13 01:25:27 +00001443
Chris Lattner229907c2011-07-18 04:54:35 +00001444Constant *ConstantExpr::getCast(unsigned oc, Constant *C, Type *Ty) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001445 Instruction::CastOps opc = Instruction::CastOps(oc);
1446 assert(Instruction::isCast(opc) && "opcode out of range");
1447 assert(C && Ty && "Null arguments to getCast");
Chris Lattner37bc78a2010-01-26 21:51:43 +00001448 assert(CastInst::castIsValid(opc, C, Ty) && "Invalid constantexpr cast!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001449
1450 switch (opc) {
Chris Lattner37bc78a2010-01-26 21:51:43 +00001451 default:
1452 llvm_unreachable("Invalid cast opcode");
Chris Lattner37bc78a2010-01-26 21:51:43 +00001453 case Instruction::Trunc: return getTrunc(C, Ty);
1454 case Instruction::ZExt: return getZExt(C, Ty);
1455 case Instruction::SExt: return getSExt(C, Ty);
1456 case Instruction::FPTrunc: return getFPTrunc(C, Ty);
1457 case Instruction::FPExt: return getFPExtend(C, Ty);
1458 case Instruction::UIToFP: return getUIToFP(C, Ty);
1459 case Instruction::SIToFP: return getSIToFP(C, Ty);
1460 case Instruction::FPToUI: return getFPToUI(C, Ty);
1461 case Instruction::FPToSI: return getFPToSI(C, Ty);
1462 case Instruction::PtrToInt: return getPtrToInt(C, Ty);
1463 case Instruction::IntToPtr: return getIntToPtr(C, Ty);
1464 case Instruction::BitCast: return getBitCast(C, Ty);
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001465 case Instruction::AddrSpaceCast: return getAddrSpaceCast(C, Ty);
Chris Lattner1ece6f82005-01-01 15:59:57 +00001466 }
Galina Kistanovafc259902012-07-13 01:25:27 +00001467}
Reid Spencerf37dc652006-12-05 19:14:13 +00001468
Chris Lattner229907c2011-07-18 04:54:35 +00001469Constant *ConstantExpr::getZExtOrBitCast(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001470 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001471 return getBitCast(C, Ty);
1472 return getZExt(C, Ty);
Reid Spencer5c140882006-12-04 20:17:56 +00001473}
1474
Chris Lattner229907c2011-07-18 04:54:35 +00001475Constant *ConstantExpr::getSExtOrBitCast(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001476 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001477 return getBitCast(C, Ty);
1478 return getSExt(C, Ty);
Reid Spencer5c140882006-12-04 20:17:56 +00001479}
1480
Chris Lattner229907c2011-07-18 04:54:35 +00001481Constant *ConstantExpr::getTruncOrBitCast(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001482 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001483 return getBitCast(C, Ty);
1484 return getTrunc(C, Ty);
Reid Spencer5c140882006-12-04 20:17:56 +00001485}
1486
Chris Lattner229907c2011-07-18 04:54:35 +00001487Constant *ConstantExpr::getPointerCast(Constant *S, Type *Ty) {
Evgeniy Stepanov23382642013-01-16 14:41:46 +00001488 assert(S->getType()->isPtrOrPtrVectorTy() && "Invalid cast");
1489 assert((Ty->isIntOrIntVectorTy() || Ty->isPtrOrPtrVectorTy()) &&
1490 "Invalid cast");
Reid Spencerbc245a02006-12-05 03:25:26 +00001491
Evgeniy Stepanov23382642013-01-16 14:41:46 +00001492 if (Ty->isIntOrIntVectorTy())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001493 return getPtrToInt(S, Ty);
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001494
1495 unsigned SrcAS = S->getType()->getPointerAddressSpace();
1496 if (Ty->isPtrOrPtrVectorTy() && SrcAS != Ty->getPointerAddressSpace())
1497 return getAddrSpaceCast(S, Ty);
1498
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001499 return getBitCast(S, Ty);
Reid Spencerbc245a02006-12-05 03:25:26 +00001500}
1501
Chris Lattner229907c2011-07-18 04:54:35 +00001502Constant *ConstantExpr::getIntegerCast(Constant *C, Type *Ty,
Reid Spencer56521c42006-12-12 00:51:07 +00001503 bool isSigned) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001504 assert(C->getType()->isIntOrIntVectorTy() &&
1505 Ty->isIntOrIntVectorTy() && "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001506 unsigned SrcBits = C->getType()->getScalarSizeInBits();
1507 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer56521c42006-12-12 00:51:07 +00001508 Instruction::CastOps opcode =
1509 (SrcBits == DstBits ? Instruction::BitCast :
1510 (SrcBits > DstBits ? Instruction::Trunc :
1511 (isSigned ? Instruction::SExt : Instruction::ZExt)));
1512 return getCast(opcode, C, Ty);
1513}
1514
Chris Lattner229907c2011-07-18 04:54:35 +00001515Constant *ConstantExpr::getFPCast(Constant *C, Type *Ty) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001516 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer56521c42006-12-12 00:51:07 +00001517 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001518 unsigned SrcBits = C->getType()->getScalarSizeInBits();
1519 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencerca104e82006-12-12 05:38:50 +00001520 if (SrcBits == DstBits)
1521 return C; // Avoid a useless cast
Reid Spencer56521c42006-12-12 00:51:07 +00001522 Instruction::CastOps opcode =
Jay Foad9f32cfd2011-01-27 14:44:55 +00001523 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt);
Reid Spencer56521c42006-12-12 00:51:07 +00001524 return getCast(opcode, C, Ty);
1525}
1526
Chris Lattner229907c2011-07-18 04:54:35 +00001527Constant *ConstantExpr::getTrunc(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001528#ifndef NDEBUG
1529 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1530 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1531#endif
1532 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001533 assert(C->getType()->isIntOrIntVectorTy() && "Trunc operand must be integer");
1534 assert(Ty->isIntOrIntVectorTy() && "Trunc produces only integral");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001535 assert(C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001536 "SrcTy must be larger than DestTy for Trunc!");
1537
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001538 return getFoldedCast(Instruction::Trunc, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001539}
1540
Chris Lattner229907c2011-07-18 04:54:35 +00001541Constant *ConstantExpr::getSExt(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001542#ifndef NDEBUG
1543 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1544 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1545#endif
1546 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001547 assert(C->getType()->isIntOrIntVectorTy() && "SExt operand must be integral");
1548 assert(Ty->isIntOrIntVectorTy() && "SExt produces only integer");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001549 assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001550 "SrcTy must be smaller than DestTy for SExt!");
1551
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001552 return getFoldedCast(Instruction::SExt, C, Ty);
Chris Lattnerdd284742004-04-04 23:20:30 +00001553}
1554
Chris Lattner229907c2011-07-18 04:54:35 +00001555Constant *ConstantExpr::getZExt(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001556#ifndef NDEBUG
1557 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1558 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1559#endif
1560 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001561 assert(C->getType()->isIntOrIntVectorTy() && "ZEXt operand must be integral");
1562 assert(Ty->isIntOrIntVectorTy() && "ZExt produces only integer");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001563 assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001564 "SrcTy must be smaller than DestTy for ZExt!");
1565
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001566 return getFoldedCast(Instruction::ZExt, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001567}
1568
Chris Lattner229907c2011-07-18 04:54:35 +00001569Constant *ConstantExpr::getFPTrunc(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001570#ifndef NDEBUG
1571 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1572 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1573#endif
1574 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001575 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001576 C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001577 "This is an illegal floating point truncation!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001578 return getFoldedCast(Instruction::FPTrunc, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001579}
1580
Chris Lattner229907c2011-07-18 04:54:35 +00001581Constant *ConstantExpr::getFPExtend(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001582#ifndef NDEBUG
1583 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1584 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1585#endif
1586 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001587 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001588 C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001589 "This is an illegal floating point extension!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001590 return getFoldedCast(Instruction::FPExt, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001591}
1592
Chris Lattner229907c2011-07-18 04:54:35 +00001593Constant *ConstantExpr::getUIToFP(Constant *C, Type *Ty) {
Devang Pateld26344d2008-11-03 23:20:04 +00001594#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001595 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1596 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001597#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001598 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001599 assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00001600 "This is an illegal uint to floating point cast!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001601 return getFoldedCast(Instruction::UIToFP, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001602}
1603
Chris Lattner229907c2011-07-18 04:54:35 +00001604Constant *ConstantExpr::getSIToFP(Constant *C, Type *Ty) {
Devang Pateld26344d2008-11-03 23:20:04 +00001605#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001606 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1607 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001608#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001609 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001610 assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001611 "This is an illegal sint to floating point cast!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001612 return getFoldedCast(Instruction::SIToFP, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001613}
1614
Chris Lattner229907c2011-07-18 04:54:35 +00001615Constant *ConstantExpr::getFPToUI(Constant *C, Type *Ty) {
Devang Pateld26344d2008-11-03 23:20:04 +00001616#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001617 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1618 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001619#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001620 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001621 assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00001622 "This is an illegal floating point to uint cast!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001623 return getFoldedCast(Instruction::FPToUI, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001624}
1625
Chris Lattner229907c2011-07-18 04:54:35 +00001626Constant *ConstantExpr::getFPToSI(Constant *C, Type *Ty) {
Devang Pateld26344d2008-11-03 23:20:04 +00001627#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001628 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1629 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001630#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001631 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001632 assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00001633 "This is an illegal floating point to sint cast!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001634 return getFoldedCast(Instruction::FPToSI, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001635}
1636
Chris Lattner229907c2011-07-18 04:54:35 +00001637Constant *ConstantExpr::getPtrToInt(Constant *C, Type *DstTy) {
Nadav Rotem3924cb02011-12-05 06:29:09 +00001638 assert(C->getType()->getScalarType()->isPointerTy() &&
1639 "PtrToInt source must be pointer or pointer vector");
1640 assert(DstTy->getScalarType()->isIntegerTy() &&
1641 "PtrToInt destination must be integer or integer vector");
Chris Lattner8a3df542012-01-25 01:32:59 +00001642 assert(isa<VectorType>(C->getType()) == isa<VectorType>(DstTy));
Nick Lewyckyff509622012-01-25 03:20:12 +00001643 if (isa<VectorType>(C->getType()))
Chris Lattner8326bd82012-01-26 00:42:34 +00001644 assert(C->getType()->getVectorNumElements()==DstTy->getVectorNumElements()&&
Chris Lattner8a3df542012-01-25 01:32:59 +00001645 "Invalid cast between a different number of vector elements");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001646 return getFoldedCast(Instruction::PtrToInt, C, DstTy);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001647}
1648
Chris Lattner229907c2011-07-18 04:54:35 +00001649Constant *ConstantExpr::getIntToPtr(Constant *C, Type *DstTy) {
Nadav Rotem3924cb02011-12-05 06:29:09 +00001650 assert(C->getType()->getScalarType()->isIntegerTy() &&
1651 "IntToPtr source must be integer or integer vector");
1652 assert(DstTy->getScalarType()->isPointerTy() &&
1653 "IntToPtr destination must be a pointer or pointer vector");
Chris Lattner8a3df542012-01-25 01:32:59 +00001654 assert(isa<VectorType>(C->getType()) == isa<VectorType>(DstTy));
Nick Lewyckyff509622012-01-25 03:20:12 +00001655 if (isa<VectorType>(C->getType()))
Chris Lattner8326bd82012-01-26 00:42:34 +00001656 assert(C->getType()->getVectorNumElements()==DstTy->getVectorNumElements()&&
Chris Lattner8a3df542012-01-25 01:32:59 +00001657 "Invalid cast between a different number of vector elements");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001658 return getFoldedCast(Instruction::IntToPtr, C, DstTy);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001659}
1660
Chris Lattner229907c2011-07-18 04:54:35 +00001661Constant *ConstantExpr::getBitCast(Constant *C, Type *DstTy) {
Chris Lattner37bc78a2010-01-26 21:51:43 +00001662 assert(CastInst::castIsValid(Instruction::BitCast, C, DstTy) &&
1663 "Invalid constantexpr bitcast!");
Galina Kistanovafc259902012-07-13 01:25:27 +00001664
Chris Lattnercbeda872009-03-21 06:55:54 +00001665 // It is common to ask for a bitcast of a value to its own type, handle this
1666 // speedily.
1667 if (C->getType() == DstTy) return C;
Galina Kistanovafc259902012-07-13 01:25:27 +00001668
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001669 return getFoldedCast(Instruction::BitCast, C, DstTy);
Chris Lattnerdd284742004-04-04 23:20:30 +00001670}
1671
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001672Constant *ConstantExpr::getAddrSpaceCast(Constant *C, Type *DstTy) {
1673 assert(CastInst::castIsValid(Instruction::AddrSpaceCast, C, DstTy) &&
1674 "Invalid constantexpr addrspacecast!");
1675
1676 return getFoldedCast(Instruction::AddrSpaceCast, C, DstTy);
1677}
1678
Chris Lattner887ecac2011-07-09 18:23:52 +00001679Constant *ConstantExpr::get(unsigned Opcode, Constant *C1, Constant *C2,
1680 unsigned Flags) {
1681 // Check the operands for consistency first.
Reid Spencer7eb55b32006-11-02 01:53:59 +00001682 assert(Opcode >= Instruction::BinaryOpsBegin &&
1683 Opcode < Instruction::BinaryOpsEnd &&
Chris Lattner38a9bcd2003-05-21 17:49:25 +00001684 "Invalid opcode in binary constant expression");
1685 assert(C1->getType() == C2->getType() &&
1686 "Operand types in binary constant expression should match");
Galina Kistanovafc259902012-07-13 01:25:27 +00001687
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001688#ifndef NDEBUG
1689 switch (Opcode) {
Dan Gohmana5b96452009-06-04 22:49:04 +00001690 case Instruction::Add:
Reid Spencer7eb55b32006-11-02 01:53:59 +00001691 case Instruction::Sub:
Dan Gohmana5b96452009-06-04 22:49:04 +00001692 case Instruction::Mul:
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001693 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001694 assert(C1->getType()->isIntOrIntVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001695 "Tried to create an integer operation on a non-integer type!");
1696 break;
1697 case Instruction::FAdd:
1698 case Instruction::FSub:
1699 case Instruction::FMul:
1700 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001701 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001702 "Tried to create a floating-point operation on a "
1703 "non-floating-point type!");
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001704 break;
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001705 case Instruction::UDiv:
1706 case Instruction::SDiv:
1707 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001708 assert(C1->getType()->isIntOrIntVectorTy() &&
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001709 "Tried to create an arithmetic operation on a non-arithmetic type!");
1710 break;
1711 case Instruction::FDiv:
1712 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001713 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001714 "Tried to create an arithmetic operation on a non-arithmetic type!");
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001715 break;
Reid Spencer7eb55b32006-11-02 01:53:59 +00001716 case Instruction::URem:
1717 case Instruction::SRem:
1718 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001719 assert(C1->getType()->isIntOrIntVectorTy() &&
Reid Spencer7eb55b32006-11-02 01:53:59 +00001720 "Tried to create an arithmetic operation on a non-arithmetic type!");
1721 break;
1722 case Instruction::FRem:
1723 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001724 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001725 "Tried to create an arithmetic operation on a non-arithmetic type!");
Reid Spencer7eb55b32006-11-02 01:53:59 +00001726 break;
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001727 case Instruction::And:
1728 case Instruction::Or:
1729 case Instruction::Xor:
1730 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001731 assert(C1->getType()->isIntOrIntVectorTy() &&
Misha Brukman3852f652005-01-27 06:46:38 +00001732 "Tried to create a logical operation on a non-integral type!");
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001733 break;
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001734 case Instruction::Shl:
Reid Spencerfdff9382006-11-08 06:47:33 +00001735 case Instruction::LShr:
1736 case Instruction::AShr:
Reid Spencer2341c222007-02-02 02:16:23 +00001737 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001738 assert(C1->getType()->isIntOrIntVectorTy() &&
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001739 "Tried to create a shift operation on a non-integer type!");
1740 break;
1741 default:
1742 break;
1743 }
1744#endif
1745
Chris Lattner887ecac2011-07-09 18:23:52 +00001746 if (Constant *FC = ConstantFoldBinaryInstruction(Opcode, C1, C2))
1747 return FC; // Fold a few common cases.
Galina Kistanovafc259902012-07-13 01:25:27 +00001748
Benjamin Kramer324322b2013-03-07 20:53:34 +00001749 Constant *ArgVec[] = { C1, C2 };
1750 ExprMapKeyType Key(Opcode, ArgVec, 0, Flags);
Galina Kistanovafc259902012-07-13 01:25:27 +00001751
Chris Lattner887ecac2011-07-09 18:23:52 +00001752 LLVMContextImpl *pImpl = C1->getContext().pImpl;
1753 return pImpl->ExprConstants.getOrCreate(C1->getType(), Key);
Reid Spencera009d0d2006-12-04 21:35:24 +00001754}
1755
Chris Lattner229907c2011-07-18 04:54:35 +00001756Constant *ConstantExpr::getSizeOf(Type* Ty) {
Owen Anderson487375e2009-07-29 18:55:55 +00001757 // sizeof is implemented as: (i64) gep (Ty*)null, 1
1758 // Note that a non-inbounds gep is used, as null isn't within any object.
Owen Anderson55f1c092009-08-13 21:58:54 +00001759 Constant *GEPIdx = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
Owen Anderson487375e2009-07-29 18:55:55 +00001760 Constant *GEP = getGetElementPtr(
Jay Foaded8db7d2011-07-21 14:31:17 +00001761 Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx);
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001762 return getPtrToInt(GEP,
1763 Type::getInt64Ty(Ty->getContext()));
Owen Anderson487375e2009-07-29 18:55:55 +00001764}
1765
Chris Lattner229907c2011-07-18 04:54:35 +00001766Constant *ConstantExpr::getAlignOf(Type* Ty) {
Dan Gohmancf913832010-01-28 02:15:55 +00001767 // alignof is implemented as: (i64) gep ({i1,Ty}*)null, 0, 1
Dan Gohman50c09d02009-08-11 17:57:01 +00001768 // Note that a non-inbounds gep is used, as null isn't within any object.
Chris Lattner229907c2011-07-18 04:54:35 +00001769 Type *AligningTy =
Chris Lattnerf3f545e2011-06-18 22:48:56 +00001770 StructType::get(Type::getInt1Ty(Ty->getContext()), Ty, NULL);
Micah Villmow51e72462012-10-24 17:25:11 +00001771 Constant *NullPtr = Constant::getNullValue(AligningTy->getPointerTo());
Dan Gohmana9be7392010-01-28 02:43:22 +00001772 Constant *Zero = ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0);
Owen Anderson55f1c092009-08-13 21:58:54 +00001773 Constant *One = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
Owen Anderson487375e2009-07-29 18:55:55 +00001774 Constant *Indices[2] = { Zero, One };
Jay Foaded8db7d2011-07-21 14:31:17 +00001775 Constant *GEP = getGetElementPtr(NullPtr, Indices);
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001776 return getPtrToInt(GEP,
1777 Type::getInt64Ty(Ty->getContext()));
Owen Anderson487375e2009-07-29 18:55:55 +00001778}
1779
Chris Lattner229907c2011-07-18 04:54:35 +00001780Constant *ConstantExpr::getOffsetOf(StructType* STy, unsigned FieldNo) {
Dan Gohmanede94e62010-02-01 16:37:38 +00001781 return getOffsetOf(STy, ConstantInt::get(Type::getInt32Ty(STy->getContext()),
1782 FieldNo));
1783}
1784
Chris Lattner229907c2011-07-18 04:54:35 +00001785Constant *ConstantExpr::getOffsetOf(Type* Ty, Constant *FieldNo) {
Dan Gohmanff3af7252009-08-16 21:26:11 +00001786 // offsetof is implemented as: (i64) gep (Ty*)null, 0, FieldNo
1787 // Note that a non-inbounds gep is used, as null isn't within any object.
1788 Constant *GEPIdx[] = {
Dan Gohmanede94e62010-02-01 16:37:38 +00001789 ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0),
1790 FieldNo
Dan Gohmanff3af7252009-08-16 21:26:11 +00001791 };
1792 Constant *GEP = getGetElementPtr(
Jay Foaded8db7d2011-07-21 14:31:17 +00001793 Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx);
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001794 return getPtrToInt(GEP,
1795 Type::getInt64Ty(Ty->getContext()));
Dan Gohmanff3af7252009-08-16 21:26:11 +00001796}
Owen Anderson487375e2009-07-29 18:55:55 +00001797
Chris Lattner887ecac2011-07-09 18:23:52 +00001798Constant *ConstantExpr::getCompare(unsigned short Predicate,
1799 Constant *C1, Constant *C2) {
Reid Spencera009d0d2006-12-04 21:35:24 +00001800 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Galina Kistanovafc259902012-07-13 01:25:27 +00001801
Chris Lattner887ecac2011-07-09 18:23:52 +00001802 switch (Predicate) {
1803 default: llvm_unreachable("Invalid CmpInst predicate");
1804 case CmpInst::FCMP_FALSE: case CmpInst::FCMP_OEQ: case CmpInst::FCMP_OGT:
1805 case CmpInst::FCMP_OGE: case CmpInst::FCMP_OLT: case CmpInst::FCMP_OLE:
1806 case CmpInst::FCMP_ONE: case CmpInst::FCMP_ORD: case CmpInst::FCMP_UNO:
1807 case CmpInst::FCMP_UEQ: case CmpInst::FCMP_UGT: case CmpInst::FCMP_UGE:
1808 case CmpInst::FCMP_ULT: case CmpInst::FCMP_ULE: case CmpInst::FCMP_UNE:
1809 case CmpInst::FCMP_TRUE:
1810 return getFCmp(Predicate, C1, C2);
Galina Kistanovafc259902012-07-13 01:25:27 +00001811
Chris Lattner887ecac2011-07-09 18:23:52 +00001812 case CmpInst::ICMP_EQ: case CmpInst::ICMP_NE: case CmpInst::ICMP_UGT:
1813 case CmpInst::ICMP_UGE: case CmpInst::ICMP_ULT: case CmpInst::ICMP_ULE:
1814 case CmpInst::ICMP_SGT: case CmpInst::ICMP_SGE: case CmpInst::ICMP_SLT:
1815 case CmpInst::ICMP_SLE:
1816 return getICmp(Predicate, C1, C2);
1817 }
Chris Lattner29ca2c62004-08-04 18:50:09 +00001818}
1819
Chris Lattner887ecac2011-07-09 18:23:52 +00001820Constant *ConstantExpr::getSelect(Constant *C, Constant *V1, Constant *V2) {
Chris Lattner41632132008-12-29 00:16:12 +00001821 assert(!SelectInst::areInvalidOperands(C, V1, V2)&&"Invalid select operands");
Chris Lattner6e415c02004-03-12 05:54:04 +00001822
Chris Lattner887ecac2011-07-09 18:23:52 +00001823 if (Constant *SC = ConstantFoldSelectInstruction(C, V1, V2))
1824 return SC; // Fold common cases
Chris Lattner6e415c02004-03-12 05:54:04 +00001825
Benjamin Kramer324322b2013-03-07 20:53:34 +00001826 Constant *ArgVec[] = { C, V1, V2 };
1827 ExprMapKeyType Key(Instruction::Select, ArgVec);
Galina Kistanovafc259902012-07-13 01:25:27 +00001828
Chris Lattner887ecac2011-07-09 18:23:52 +00001829 LLVMContextImpl *pImpl = C->getContext().pImpl;
1830 return pImpl->ExprConstants.getOrCreate(V1->getType(), Key);
Chris Lattner6e415c02004-03-12 05:54:04 +00001831}
1832
Jay Foaded8db7d2011-07-21 14:31:17 +00001833Constant *ConstantExpr::getGetElementPtr(Constant *C, ArrayRef<Value *> Idxs,
1834 bool InBounds) {
Duncan Sandse6beec62012-11-13 12:59:33 +00001835 assert(C->getType()->isPtrOrPtrVectorTy() &&
1836 "Non-pointer type for constant GetElementPtr expression");
1837
Jay Foaded8db7d2011-07-21 14:31:17 +00001838 if (Constant *FC = ConstantFoldGetElementPtr(C, InBounds, Idxs))
Chris Lattner94c8d292011-02-11 05:34:33 +00001839 return FC; // Fold a few common cases.
Dan Gohman1b849082009-09-07 23:54:19 +00001840
Chris Lattner887ecac2011-07-09 18:23:52 +00001841 // Get the result type of the getelementptr!
Jay Foadd1b78492011-07-25 09:48:08 +00001842 Type *Ty = GetElementPtrInst::getIndexedType(C->getType(), Idxs);
Chris Lattner887ecac2011-07-09 18:23:52 +00001843 assert(Ty && "GEP indices invalid!");
Chris Lattner8326bd82012-01-26 00:42:34 +00001844 unsigned AS = C->getType()->getPointerAddressSpace();
Chris Lattner887ecac2011-07-09 18:23:52 +00001845 Type *ReqTy = Ty->getPointerTo(AS);
Duncan Sandse6beec62012-11-13 12:59:33 +00001846 if (VectorType *VecTy = dyn_cast<VectorType>(C->getType()))
1847 ReqTy = VectorType::get(ReqTy, VecTy->getNumElements());
Galina Kistanovafc259902012-07-13 01:25:27 +00001848
Dan Gohman1b849082009-09-07 23:54:19 +00001849 // Look up the constant in the table first to ensure uniqueness
1850 std::vector<Constant*> ArgVec;
Jay Foaded8db7d2011-07-21 14:31:17 +00001851 ArgVec.reserve(1 + Idxs.size());
Dan Gohman1b849082009-09-07 23:54:19 +00001852 ArgVec.push_back(C);
Duncan Sandse6beec62012-11-13 12:59:33 +00001853 for (unsigned i = 0, e = Idxs.size(); i != e; ++i) {
1854 assert(Idxs[i]->getType()->isVectorTy() == ReqTy->isVectorTy() &&
1855 "getelementptr index type missmatch");
1856 assert((!Idxs[i]->getType()->isVectorTy() ||
1857 ReqTy->getVectorNumElements() ==
1858 Idxs[i]->getType()->getVectorNumElements()) &&
1859 "getelementptr index type missmatch");
Dan Gohman1b849082009-09-07 23:54:19 +00001860 ArgVec.push_back(cast<Constant>(Idxs[i]));
Duncan Sandse6beec62012-11-13 12:59:33 +00001861 }
Dan Gohman1b849082009-09-07 23:54:19 +00001862 const ExprMapKeyType Key(Instruction::GetElementPtr, ArgVec, 0,
Chris Lattner94c8d292011-02-11 05:34:33 +00001863 InBounds ? GEPOperator::IsInBounds : 0);
Galina Kistanovafc259902012-07-13 01:25:27 +00001864
Chris Lattner887ecac2011-07-09 18:23:52 +00001865 LLVMContextImpl *pImpl = C->getContext().pImpl;
Dan Gohman1b849082009-09-07 23:54:19 +00001866 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
1867}
1868
Reid Spenceree3c9912006-12-04 05:19:50 +00001869Constant *
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001870ConstantExpr::getICmp(unsigned short pred, Constant *LHS, Constant *RHS) {
Reid Spenceree3c9912006-12-04 05:19:50 +00001871 assert(LHS->getType() == RHS->getType());
1872 assert(pred >= ICmpInst::FIRST_ICMP_PREDICATE &&
1873 pred <= ICmpInst::LAST_ICMP_PREDICATE && "Invalid ICmp Predicate");
1874
Chris Lattnerf5edeeb2010-02-01 20:48:08 +00001875 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
Reid Spenceree3c9912006-12-04 05:19:50 +00001876 return FC; // Fold a few common cases...
1877
1878 // Look up the constant in the table first to ensure uniqueness
Benjamin Kramer324322b2013-03-07 20:53:34 +00001879 Constant *ArgVec[] = { LHS, RHS };
Reid Spencerb1537492006-12-24 18:42:29 +00001880 // Get the key type with both the opcode and predicate
Reid Spenceree3c9912006-12-04 05:19:50 +00001881 const ExprMapKeyType Key(Instruction::ICmp, ArgVec, pred);
Owen Anderson61794042009-06-17 20:10:08 +00001882
Chris Lattner229907c2011-07-18 04:54:35 +00001883 Type *ResultTy = Type::getInt1Ty(LHS->getContext());
1884 if (VectorType *VT = dyn_cast<VectorType>(LHS->getType()))
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001885 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
1886
Owen Anderson1584a292009-08-04 20:25:11 +00001887 LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl;
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001888 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
Reid Spenceree3c9912006-12-04 05:19:50 +00001889}
1890
1891Constant *
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001892ConstantExpr::getFCmp(unsigned short pred, Constant *LHS, Constant *RHS) {
Reid Spenceree3c9912006-12-04 05:19:50 +00001893 assert(LHS->getType() == RHS->getType());
1894 assert(pred <= FCmpInst::LAST_FCMP_PREDICATE && "Invalid FCmp Predicate");
1895
Chris Lattnerf5edeeb2010-02-01 20:48:08 +00001896 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
Reid Spenceree3c9912006-12-04 05:19:50 +00001897 return FC; // Fold a few common cases...
1898
1899 // Look up the constant in the table first to ensure uniqueness
Benjamin Kramer324322b2013-03-07 20:53:34 +00001900 Constant *ArgVec[] = { LHS, RHS };
Reid Spencerb1537492006-12-24 18:42:29 +00001901 // Get the key type with both the opcode and predicate
Reid Spenceree3c9912006-12-04 05:19:50 +00001902 const ExprMapKeyType Key(Instruction::FCmp, ArgVec, pred);
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001903
Chris Lattner229907c2011-07-18 04:54:35 +00001904 Type *ResultTy = Type::getInt1Ty(LHS->getContext());
1905 if (VectorType *VT = dyn_cast<VectorType>(LHS->getType()))
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001906 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
1907
Owen Anderson1584a292009-08-04 20:25:11 +00001908 LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl;
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001909 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
Reid Spenceree3c9912006-12-04 05:19:50 +00001910}
1911
Robert Bocchino23004482006-01-10 19:05:34 +00001912Constant *ConstantExpr::getExtractElement(Constant *Val, Constant *Idx) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001913 assert(Val->getType()->isVectorTy() &&
Reid Spencer09575ba2007-02-15 03:39:18 +00001914 "Tried to create extractelement operation on non-vector type!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001915 assert(Idx->getType()->isIntegerTy(32) &&
Reid Spencer2546b762007-01-26 07:37:34 +00001916 "Extractelement index must be i32 type!");
Galina Kistanovafc259902012-07-13 01:25:27 +00001917
Chris Lattner887ecac2011-07-09 18:23:52 +00001918 if (Constant *FC = ConstantFoldExtractElementInstruction(Val, Idx))
Chris Lattner09660c92009-12-30 20:25:09 +00001919 return FC; // Fold a few common cases.
Galina Kistanovafc259902012-07-13 01:25:27 +00001920
Robert Bocchinoca27f032006-01-17 20:07:22 +00001921 // Look up the constant in the table first to ensure uniqueness
Benjamin Kramer324322b2013-03-07 20:53:34 +00001922 Constant *ArgVec[] = { Val, Idx };
1923 const ExprMapKeyType Key(Instruction::ExtractElement, ArgVec);
Galina Kistanovafc259902012-07-13 01:25:27 +00001924
Chris Lattner887ecac2011-07-09 18:23:52 +00001925 LLVMContextImpl *pImpl = Val->getContext().pImpl;
Chris Lattner8326bd82012-01-26 00:42:34 +00001926 Type *ReqTy = Val->getType()->getVectorElementType();
Owen Anderson1584a292009-08-04 20:25:11 +00001927 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001928}
1929
1930Constant *ConstantExpr::getInsertElement(Constant *Val, Constant *Elt,
1931 Constant *Idx) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001932 assert(Val->getType()->isVectorTy() &&
Reid Spencer09575ba2007-02-15 03:39:18 +00001933 "Tried to create insertelement operation on non-vector type!");
Chris Lattner8326bd82012-01-26 00:42:34 +00001934 assert(Elt->getType() == Val->getType()->getVectorElementType() &&
1935 "Insertelement types must match!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001936 assert(Idx->getType()->isIntegerTy(32) &&
Reid Spencer2546b762007-01-26 07:37:34 +00001937 "Insertelement index must be i32 type!");
Robert Bocchinoca27f032006-01-17 20:07:22 +00001938
Chris Lattner887ecac2011-07-09 18:23:52 +00001939 if (Constant *FC = ConstantFoldInsertElementInstruction(Val, Elt, Idx))
1940 return FC; // Fold a few common cases.
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001941 // Look up the constant in the table first to ensure uniqueness
Benjamin Kramer324322b2013-03-07 20:53:34 +00001942 Constant *ArgVec[] = { Val, Elt, Idx };
1943 const ExprMapKeyType Key(Instruction::InsertElement, ArgVec);
Galina Kistanovafc259902012-07-13 01:25:27 +00001944
Chris Lattner887ecac2011-07-09 18:23:52 +00001945 LLVMContextImpl *pImpl = Val->getContext().pImpl;
1946 return pImpl->ExprConstants.getOrCreate(Val->getType(), Key);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001947}
1948
1949Constant *ConstantExpr::getShuffleVector(Constant *V1, Constant *V2,
1950 Constant *Mask) {
1951 assert(ShuffleVectorInst::isValidOperands(V1, V2, Mask) &&
1952 "Invalid shuffle vector constant expr operands!");
Nate Begeman94aa38d2009-02-12 21:28:33 +00001953
Chris Lattner887ecac2011-07-09 18:23:52 +00001954 if (Constant *FC = ConstantFoldShuffleVectorInstruction(V1, V2, Mask))
1955 return FC; // Fold a few common cases.
1956
Chris Lattner8326bd82012-01-26 00:42:34 +00001957 unsigned NElts = Mask->getType()->getVectorNumElements();
1958 Type *EltTy = V1->getType()->getVectorElementType();
Chris Lattner229907c2011-07-18 04:54:35 +00001959 Type *ShufTy = VectorType::get(EltTy, NElts);
Chris Lattner887ecac2011-07-09 18:23:52 +00001960
1961 // Look up the constant in the table first to ensure uniqueness
Benjamin Kramer324322b2013-03-07 20:53:34 +00001962 Constant *ArgVec[] = { V1, V2, Mask };
1963 const ExprMapKeyType Key(Instruction::ShuffleVector, ArgVec);
Galina Kistanovafc259902012-07-13 01:25:27 +00001964
Chris Lattner887ecac2011-07-09 18:23:52 +00001965 LLVMContextImpl *pImpl = ShufTy->getContext().pImpl;
1966 return pImpl->ExprConstants.getOrCreate(ShufTy, Key);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001967}
1968
Chris Lattner887ecac2011-07-09 18:23:52 +00001969Constant *ConstantExpr::getInsertValue(Constant *Agg, Constant *Val,
Jay Foad57aa6362011-07-13 10:26:04 +00001970 ArrayRef<unsigned> Idxs) {
Hal Finkelb31366d2013-07-10 22:51:01 +00001971 assert(Agg->getType()->isFirstClassType() &&
1972 "Non-first-class type for constant insertvalue expression");
1973
Jay Foad57aa6362011-07-13 10:26:04 +00001974 assert(ExtractValueInst::getIndexedType(Agg->getType(),
1975 Idxs) == Val->getType() &&
Dan Gohman12fce772008-05-15 19:50:34 +00001976 "insertvalue indices invalid!");
Hal Finkelb31366d2013-07-10 22:51:01 +00001977 Type *ReqTy = Val->getType();
1978
1979 if (Constant *FC = ConstantFoldInsertValueInstruction(Agg, Val, Idxs))
1980 return FC;
1981
1982 Constant *ArgVec[] = { Agg, Val };
1983 const ExprMapKeyType Key(Instruction::InsertValue, ArgVec, 0, 0, Idxs);
1984
1985 LLVMContextImpl *pImpl = Agg->getContext().pImpl;
1986 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Dan Gohman12fce772008-05-15 19:50:34 +00001987}
1988
Chris Lattner887ecac2011-07-09 18:23:52 +00001989Constant *ConstantExpr::getExtractValue(Constant *Agg,
Jay Foad57aa6362011-07-13 10:26:04 +00001990 ArrayRef<unsigned> Idxs) {
Dan Gohman0752bff2008-05-23 00:36:11 +00001991 assert(Agg->getType()->isFirstClassType() &&
Chris Lattner887ecac2011-07-09 18:23:52 +00001992 "Tried to create extractelement operation on non-first-class type!");
Dan Gohman12fce772008-05-15 19:50:34 +00001993
Chris Lattner229907c2011-07-18 04:54:35 +00001994 Type *ReqTy = ExtractValueInst::getIndexedType(Agg->getType(), Idxs);
Chandler Carruth9db56b82011-07-10 09:45:35 +00001995 (void)ReqTy;
Chris Lattner887ecac2011-07-09 18:23:52 +00001996 assert(ReqTy && "extractvalue indices invalid!");
Galina Kistanovafc259902012-07-13 01:25:27 +00001997
Dan Gohman0752bff2008-05-23 00:36:11 +00001998 assert(Agg->getType()->isFirstClassType() &&
1999 "Non-first-class type for constant extractvalue expression");
Hal Finkelb31366d2013-07-10 22:51:01 +00002000 if (Constant *FC = ConstantFoldExtractValueInstruction(Agg, Idxs))
2001 return FC;
2002
2003 Constant *ArgVec[] = { Agg };
2004 const ExprMapKeyType Key(Instruction::ExtractValue, ArgVec, 0, 0, Idxs);
2005
2006 LLVMContextImpl *pImpl = Agg->getContext().pImpl;
2007 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Dan Gohman12fce772008-05-15 19:50:34 +00002008}
2009
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002010Constant *ConstantExpr::getNeg(Constant *C, bool HasNUW, bool HasNSW) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002011 assert(C->getType()->isIntOrIntVectorTy() &&
Owen Anderson487375e2009-07-29 18:55:55 +00002012 "Cannot NEG a nonintegral value!");
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002013 return getSub(ConstantFP::getZeroValueForNegation(C->getType()),
2014 C, HasNUW, HasNSW);
Owen Anderson487375e2009-07-29 18:55:55 +00002015}
2016
Chris Lattnera676c0f2011-02-07 16:40:21 +00002017Constant *ConstantExpr::getFNeg(Constant *C) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002018 assert(C->getType()->isFPOrFPVectorTy() &&
Owen Anderson487375e2009-07-29 18:55:55 +00002019 "Cannot FNEG a non-floating-point value!");
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002020 return getFSub(ConstantFP::getZeroValueForNegation(C->getType()), C);
Owen Anderson487375e2009-07-29 18:55:55 +00002021}
2022
Chris Lattnera676c0f2011-02-07 16:40:21 +00002023Constant *ConstantExpr::getNot(Constant *C) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002024 assert(C->getType()->isIntOrIntVectorTy() &&
Owen Anderson487375e2009-07-29 18:55:55 +00002025 "Cannot NOT a nonintegral value!");
Owen Anderson5a1acd92009-07-31 20:28:14 +00002026 return get(Instruction::Xor, C, Constant::getAllOnesValue(C->getType()));
Owen Anderson487375e2009-07-29 18:55:55 +00002027}
2028
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002029Constant *ConstantExpr::getAdd(Constant *C1, Constant *C2,
2030 bool HasNUW, bool HasNSW) {
2031 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
2032 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
2033 return get(Instruction::Add, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00002034}
2035
Chris Lattnera676c0f2011-02-07 16:40:21 +00002036Constant *ConstantExpr::getFAdd(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002037 return get(Instruction::FAdd, C1, C2);
2038}
2039
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002040Constant *ConstantExpr::getSub(Constant *C1, Constant *C2,
2041 bool HasNUW, bool HasNSW) {
2042 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
2043 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
2044 return get(Instruction::Sub, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00002045}
2046
Chris Lattnera676c0f2011-02-07 16:40:21 +00002047Constant *ConstantExpr::getFSub(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002048 return get(Instruction::FSub, C1, C2);
2049}
2050
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002051Constant *ConstantExpr::getMul(Constant *C1, Constant *C2,
2052 bool HasNUW, bool HasNSW) {
2053 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
2054 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
2055 return get(Instruction::Mul, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00002056}
2057
Chris Lattnera676c0f2011-02-07 16:40:21 +00002058Constant *ConstantExpr::getFMul(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002059 return get(Instruction::FMul, C1, C2);
2060}
2061
Chris Lattner0d75eac2011-02-09 16:43:07 +00002062Constant *ConstantExpr::getUDiv(Constant *C1, Constant *C2, bool isExact) {
2063 return get(Instruction::UDiv, C1, C2,
2064 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00002065}
2066
Chris Lattner0d75eac2011-02-09 16:43:07 +00002067Constant *ConstantExpr::getSDiv(Constant *C1, Constant *C2, bool isExact) {
2068 return get(Instruction::SDiv, C1, C2,
2069 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00002070}
2071
Chris Lattnera676c0f2011-02-07 16:40:21 +00002072Constant *ConstantExpr::getFDiv(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002073 return get(Instruction::FDiv, C1, C2);
2074}
2075
Chris Lattnera676c0f2011-02-07 16:40:21 +00002076Constant *ConstantExpr::getURem(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002077 return get(Instruction::URem, C1, C2);
2078}
2079
Chris Lattnera676c0f2011-02-07 16:40:21 +00002080Constant *ConstantExpr::getSRem(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002081 return get(Instruction::SRem, C1, C2);
2082}
2083
Chris Lattnera676c0f2011-02-07 16:40:21 +00002084Constant *ConstantExpr::getFRem(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002085 return get(Instruction::FRem, C1, C2);
2086}
2087
Chris Lattnera676c0f2011-02-07 16:40:21 +00002088Constant *ConstantExpr::getAnd(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002089 return get(Instruction::And, C1, C2);
2090}
2091
Chris Lattnera676c0f2011-02-07 16:40:21 +00002092Constant *ConstantExpr::getOr(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002093 return get(Instruction::Or, C1, C2);
2094}
2095
Chris Lattnera676c0f2011-02-07 16:40:21 +00002096Constant *ConstantExpr::getXor(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002097 return get(Instruction::Xor, C1, C2);
2098}
2099
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002100Constant *ConstantExpr::getShl(Constant *C1, Constant *C2,
2101 bool HasNUW, bool HasNSW) {
2102 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
2103 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
2104 return get(Instruction::Shl, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00002105}
2106
Chris Lattner0d75eac2011-02-09 16:43:07 +00002107Constant *ConstantExpr::getLShr(Constant *C1, Constant *C2, bool isExact) {
2108 return get(Instruction::LShr, C1, C2,
2109 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00002110}
2111
Chris Lattner0d75eac2011-02-09 16:43:07 +00002112Constant *ConstantExpr::getAShr(Constant *C1, Constant *C2, bool isExact) {
2113 return get(Instruction::AShr, C1, C2,
2114 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00002115}
2116
Duncan Sandsd7aeefe2012-06-12 14:33:56 +00002117/// getBinOpIdentity - Return the identity for the given binary operation,
2118/// i.e. a constant C such that X op C = X and C op X = X for every X. It
Duncan Sands318a89d2012-06-13 09:42:13 +00002119/// returns null if the operator doesn't have an identity.
Duncan Sandsd7aeefe2012-06-12 14:33:56 +00002120Constant *ConstantExpr::getBinOpIdentity(unsigned Opcode, Type *Ty) {
2121 switch (Opcode) {
2122 default:
Duncan Sands318a89d2012-06-13 09:42:13 +00002123 // Doesn't have an identity.
2124 return 0;
2125
Duncan Sandsd7aeefe2012-06-12 14:33:56 +00002126 case Instruction::Add:
2127 case Instruction::Or:
2128 case Instruction::Xor:
2129 return Constant::getNullValue(Ty);
2130
2131 case Instruction::Mul:
2132 return ConstantInt::get(Ty, 1);
2133
2134 case Instruction::And:
2135 return Constant::getAllOnesValue(Ty);
2136 }
2137}
2138
Duncan Sands318a89d2012-06-13 09:42:13 +00002139/// getBinOpAbsorber - Return the absorbing element for the given binary
2140/// operation, i.e. a constant C such that X op C = C and C op X = C for
2141/// every X. For example, this returns zero for integer multiplication.
2142/// It returns null if the operator doesn't have an absorbing element.
2143Constant *ConstantExpr::getBinOpAbsorber(unsigned Opcode, Type *Ty) {
2144 switch (Opcode) {
2145 default:
2146 // Doesn't have an absorber.
2147 return 0;
2148
2149 case Instruction::Or:
2150 return Constant::getAllOnesValue(Ty);
2151
2152 case Instruction::And:
2153 case Instruction::Mul:
2154 return Constant::getNullValue(Ty);
2155 }
2156}
2157
Vikram S. Adve4c485332002-07-15 18:19:33 +00002158// destroyConstant - Remove the constant from the constant table...
2159//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00002160void ConstantExpr::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002161 getType()->getContext().pImpl->ExprConstants.remove(this);
Vikram S. Adve4c485332002-07-15 18:19:33 +00002162 destroyConstantImpl();
Vikram S. Adve4e537b22002-07-14 23:13:17 +00002163}
2164
Chris Lattner3cd8c562002-07-30 18:54:25 +00002165const char *ConstantExpr::getOpcodeName() const {
2166 return Instruction::getOpcodeName(getOpcode());
Vikram S. Adve4e537b22002-07-14 23:13:17 +00002167}
Reid Spencer1ebe1ab2004-07-17 23:48:33 +00002168
Chris Lattnera3b94ba2010-03-30 20:48:48 +00002169
2170
2171GetElementPtrConstantExpr::
Chris Lattnera474bb22012-01-26 20:40:56 +00002172GetElementPtrConstantExpr(Constant *C, ArrayRef<Constant*> IdxList,
Chris Lattner229907c2011-07-18 04:54:35 +00002173 Type *DestTy)
Chris Lattnera3b94ba2010-03-30 20:48:48 +00002174 : ConstantExpr(DestTy, Instruction::GetElementPtr,
2175 OperandTraits<GetElementPtrConstantExpr>::op_end(this)
2176 - (IdxList.size()+1), IdxList.size()+1) {
2177 OperandList[0] = C;
2178 for (unsigned i = 0, E = IdxList.size(); i != E; ++i)
2179 OperandList[i+1] = IdxList[i];
2180}
2181
Chris Lattner3756b912012-01-23 22:57:10 +00002182//===----------------------------------------------------------------------===//
2183// ConstantData* implementations
2184
2185void ConstantDataArray::anchor() {}
2186void ConstantDataVector::anchor() {}
2187
Chris Lattnere4f3f102012-01-24 04:43:41 +00002188/// getElementType - Return the element type of the array/vector.
2189Type *ConstantDataSequential::getElementType() const {
2190 return getType()->getElementType();
2191}
2192
Chris Lattner5d4497b2012-01-24 09:31:43 +00002193StringRef ConstantDataSequential::getRawDataValues() const {
Chris Lattner00245f42012-01-24 13:41:11 +00002194 return StringRef(DataElements, getNumElements()*getElementByteSize());
Chris Lattner5d4497b2012-01-24 09:31:43 +00002195}
2196
Chris Lattner030af792012-01-24 05:42:11 +00002197/// isElementTypeCompatible - Return true if a ConstantDataSequential can be
2198/// formed with a vector or array of the specified element type.
2199/// ConstantDataArray only works with normal float and int types that are
2200/// stored densely in memory, not with things like i42 or x86_f80.
2201bool ConstantDataSequential::isElementTypeCompatible(const Type *Ty) {
Chris Lattnere4f3f102012-01-24 04:43:41 +00002202 if (Ty->isFloatTy() || Ty->isDoubleTy()) return true;
2203 if (const IntegerType *IT = dyn_cast<IntegerType>(Ty)) {
2204 switch (IT->getBitWidth()) {
2205 case 8:
2206 case 16:
2207 case 32:
2208 case 64:
2209 return true;
2210 default: break;
2211 }
2212 }
2213 return false;
2214}
2215
Chris Lattner00245f42012-01-24 13:41:11 +00002216/// getNumElements - Return the number of elements in the array or vector.
2217unsigned ConstantDataSequential::getNumElements() const {
Chris Lattner8a3df542012-01-25 01:32:59 +00002218 if (ArrayType *AT = dyn_cast<ArrayType>(getType()))
2219 return AT->getNumElements();
Chris Lattner8326bd82012-01-26 00:42:34 +00002220 return getType()->getVectorNumElements();
Chris Lattner00245f42012-01-24 13:41:11 +00002221}
2222
2223
Chris Lattnere4f3f102012-01-24 04:43:41 +00002224/// getElementByteSize - Return the size in bytes of the elements in the data.
2225uint64_t ConstantDataSequential::getElementByteSize() const {
2226 return getElementType()->getPrimitiveSizeInBits()/8;
2227}
2228
2229/// getElementPointer - Return the start of the specified element.
2230const char *ConstantDataSequential::getElementPointer(unsigned Elt) const {
Chris Lattner00245f42012-01-24 13:41:11 +00002231 assert(Elt < getNumElements() && "Invalid Elt");
Chris Lattnere4f3f102012-01-24 04:43:41 +00002232 return DataElements+Elt*getElementByteSize();
2233}
2234
2235
Chris Lattner3756b912012-01-23 22:57:10 +00002236/// isAllZeros - return true if the array is empty or all zeros.
2237static bool isAllZeros(StringRef Arr) {
2238 for (StringRef::iterator I = Arr.begin(), E = Arr.end(); I != E; ++I)
2239 if (*I != 0)
2240 return false;
2241 return true;
2242}
Chris Lattner030af792012-01-24 05:42:11 +00002243
Chris Lattner3756b912012-01-23 22:57:10 +00002244/// getImpl - This is the underlying implementation of all of the
2245/// ConstantDataSequential::get methods. They all thunk down to here, providing
Chris Lattnerf06039b2012-01-30 18:19:30 +00002246/// the correct element type. We take the bytes in as a StringRef because
Chris Lattner3756b912012-01-23 22:57:10 +00002247/// we *want* an underlying "char*" to avoid TBAA type punning violations.
2248Constant *ConstantDataSequential::getImpl(StringRef Elements, Type *Ty) {
Chris Lattner8326bd82012-01-26 00:42:34 +00002249 assert(isElementTypeCompatible(Ty->getSequentialElementType()));
Chris Lattner139822f2012-01-24 14:17:05 +00002250 // If the elements are all zero or there are no elements, return a CAZ, which
2251 // is more dense and canonical.
Chris Lattner3756b912012-01-23 22:57:10 +00002252 if (isAllZeros(Elements))
2253 return ConstantAggregateZero::get(Ty);
2254
2255 // Do a lookup to see if we have already formed one of these.
2256 StringMap<ConstantDataSequential*>::MapEntryTy &Slot =
2257 Ty->getContext().pImpl->CDSConstants.GetOrCreateValue(Elements);
Galina Kistanovafc259902012-07-13 01:25:27 +00002258
Chris Lattner3756b912012-01-23 22:57:10 +00002259 // The bucket can point to a linked list of different CDS's that have the same
2260 // body but different types. For example, 0,0,0,1 could be a 4 element array
2261 // of i8, or a 1-element array of i32. They'll both end up in the same
2262 /// StringMap bucket, linked up by their Next pointers. Walk the list.
2263 ConstantDataSequential **Entry = &Slot.getValue();
2264 for (ConstantDataSequential *Node = *Entry; Node != 0;
2265 Entry = &Node->Next, Node = *Entry)
2266 if (Node->getType() == Ty)
2267 return Node;
Galina Kistanovafc259902012-07-13 01:25:27 +00002268
Chris Lattner3756b912012-01-23 22:57:10 +00002269 // Okay, we didn't get a hit. Create a node of the right class, link it in,
2270 // and return it.
2271 if (isa<ArrayType>(Ty))
2272 return *Entry = new ConstantDataArray(Ty, Slot.getKeyData());
2273
2274 assert(isa<VectorType>(Ty));
2275 return *Entry = new ConstantDataVector(Ty, Slot.getKeyData());
2276}
2277
2278void ConstantDataSequential::destroyConstant() {
Chris Lattner3756b912012-01-23 22:57:10 +00002279 // Remove the constant from the StringMap.
2280 StringMap<ConstantDataSequential*> &CDSConstants =
2281 getType()->getContext().pImpl->CDSConstants;
Galina Kistanovafc259902012-07-13 01:25:27 +00002282
Chris Lattner3756b912012-01-23 22:57:10 +00002283 StringMap<ConstantDataSequential*>::iterator Slot =
Chris Lattner5d4497b2012-01-24 09:31:43 +00002284 CDSConstants.find(getRawDataValues());
Chris Lattner3756b912012-01-23 22:57:10 +00002285
2286 assert(Slot != CDSConstants.end() && "CDS not found in uniquing table");
2287
2288 ConstantDataSequential **Entry = &Slot->getValue();
2289
2290 // Remove the entry from the hash table.
2291 if ((*Entry)->Next == 0) {
2292 // If there is only one value in the bucket (common case) it must be this
2293 // entry, and removing the entry should remove the bucket completely.
2294 assert((*Entry) == this && "Hash mismatch in ConstantDataSequential");
2295 getContext().pImpl->CDSConstants.erase(Slot);
2296 } else {
2297 // Otherwise, there are multiple entries linked off the bucket, unlink the
2298 // node we care about but keep the bucket around.
2299 for (ConstantDataSequential *Node = *Entry; ;
2300 Entry = &Node->Next, Node = *Entry) {
2301 assert(Node && "Didn't find entry in its uniquing hash table!");
2302 // If we found our entry, unlink it from the list and we're done.
2303 if (Node == this) {
2304 *Entry = Node->Next;
2305 break;
2306 }
2307 }
2308 }
Galina Kistanovafc259902012-07-13 01:25:27 +00002309
Chris Lattner3756b912012-01-23 22:57:10 +00002310 // If we were part of a list, make sure that we don't delete the list that is
2311 // still owned by the uniquing map.
2312 Next = 0;
Galina Kistanovafc259902012-07-13 01:25:27 +00002313
Chris Lattner3756b912012-01-23 22:57:10 +00002314 // Finally, actually delete it.
2315 destroyConstantImpl();
2316}
2317
2318/// get() constructors - Return a constant with array type with an element
2319/// count and element type matching the ArrayRef passed in. Note that this
2320/// can return a ConstantAggregateZero object.
Chris Lattner20683932012-01-24 14:04:40 +00002321Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint8_t> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002322 Type *Ty = ArrayType::get(Type::getInt8Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002323 const char *Data = reinterpret_cast<const char *>(Elts.data());
2324 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*1), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002325}
Chris Lattner20683932012-01-24 14:04:40 +00002326Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint16_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002327 Type *Ty = ArrayType::get(Type::getInt16Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002328 const char *Data = reinterpret_cast<const char *>(Elts.data());
2329 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*2), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002330}
Chris Lattner20683932012-01-24 14:04:40 +00002331Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint32_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002332 Type *Ty = ArrayType::get(Type::getInt32Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002333 const char *Data = reinterpret_cast<const char *>(Elts.data());
2334 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*4), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002335}
Chris Lattner20683932012-01-24 14:04:40 +00002336Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint64_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002337 Type *Ty = ArrayType::get(Type::getInt64Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002338 const char *Data = reinterpret_cast<const char *>(Elts.data());
2339 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*8), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002340}
Chris Lattner20683932012-01-24 14:04:40 +00002341Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<float> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002342 Type *Ty = ArrayType::get(Type::getFloatTy(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002343 const char *Data = reinterpret_cast<const char *>(Elts.data());
2344 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*4), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002345}
Chris Lattner20683932012-01-24 14:04:40 +00002346Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<double> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002347 Type *Ty = ArrayType::get(Type::getDoubleTy(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002348 const char *Data = reinterpret_cast<const char *>(Elts.data());
2349 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*8), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002350}
2351
Chris Lattner20683932012-01-24 14:04:40 +00002352/// getString - This method constructs a CDS and initializes it with a text
2353/// string. The default behavior (AddNull==true) causes a null terminator to
2354/// be placed at the end of the array (increasing the length of the string by
2355/// one more than the StringRef would normally indicate. Pass AddNull=false
2356/// to disable this behavior.
2357Constant *ConstantDataArray::getString(LLVMContext &Context,
2358 StringRef Str, bool AddNull) {
Galina Kistanovafc259902012-07-13 01:25:27 +00002359 if (!AddNull) {
2360 const uint8_t *Data = reinterpret_cast<const uint8_t *>(Str.data());
2361 return get(Context, ArrayRef<uint8_t>(const_cast<uint8_t *>(Data),
2362 Str.size()));
2363 }
2364
Chris Lattner20683932012-01-24 14:04:40 +00002365 SmallVector<uint8_t, 64> ElementVals;
2366 ElementVals.append(Str.begin(), Str.end());
2367 ElementVals.push_back(0);
2368 return get(Context, ElementVals);
2369}
Chris Lattner3756b912012-01-23 22:57:10 +00002370
2371/// get() constructors - Return a constant with vector type with an element
2372/// count and element type matching the ArrayRef passed in. Note that this
2373/// can return a ConstantAggregateZero object.
Chris Lattner20683932012-01-24 14:04:40 +00002374Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint8_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002375 Type *Ty = VectorType::get(Type::getInt8Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002376 const char *Data = reinterpret_cast<const char *>(Elts.data());
2377 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*1), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002378}
Chris Lattner20683932012-01-24 14:04:40 +00002379Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint16_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002380 Type *Ty = VectorType::get(Type::getInt16Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002381 const char *Data = reinterpret_cast<const char *>(Elts.data());
2382 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*2), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002383}
Chris Lattner20683932012-01-24 14:04:40 +00002384Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint32_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002385 Type *Ty = VectorType::get(Type::getInt32Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002386 const char *Data = reinterpret_cast<const char *>(Elts.data());
2387 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*4), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002388}
Chris Lattner20683932012-01-24 14:04:40 +00002389Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint64_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002390 Type *Ty = VectorType::get(Type::getInt64Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002391 const char *Data = reinterpret_cast<const char *>(Elts.data());
2392 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*8), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002393}
Chris Lattner20683932012-01-24 14:04:40 +00002394Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<float> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002395 Type *Ty = VectorType::get(Type::getFloatTy(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002396 const char *Data = reinterpret_cast<const char *>(Elts.data());
2397 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*4), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002398}
Chris Lattner20683932012-01-24 14:04:40 +00002399Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<double> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002400 Type *Ty = VectorType::get(Type::getDoubleTy(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002401 const char *Data = reinterpret_cast<const char *>(Elts.data());
2402 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*8), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002403}
2404
Chris Lattnere9eed292012-01-25 05:19:54 +00002405Constant *ConstantDataVector::getSplat(unsigned NumElts, Constant *V) {
2406 assert(isElementTypeCompatible(V->getType()) &&
2407 "Element type not compatible with ConstantData");
2408 if (ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
2409 if (CI->getType()->isIntegerTy(8)) {
2410 SmallVector<uint8_t, 16> Elts(NumElts, CI->getZExtValue());
2411 return get(V->getContext(), Elts);
2412 }
2413 if (CI->getType()->isIntegerTy(16)) {
2414 SmallVector<uint16_t, 16> Elts(NumElts, CI->getZExtValue());
2415 return get(V->getContext(), Elts);
2416 }
2417 if (CI->getType()->isIntegerTy(32)) {
2418 SmallVector<uint32_t, 16> Elts(NumElts, CI->getZExtValue());
2419 return get(V->getContext(), Elts);
2420 }
2421 assert(CI->getType()->isIntegerTy(64) && "Unsupported ConstantData type");
2422 SmallVector<uint64_t, 16> Elts(NumElts, CI->getZExtValue());
2423 return get(V->getContext(), Elts);
2424 }
2425
Chris Lattner978fe0c2012-01-30 06:21:21 +00002426 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V)) {
2427 if (CFP->getType()->isFloatTy()) {
2428 SmallVector<float, 16> Elts(NumElts, CFP->getValueAPF().convertToFloat());
2429 return get(V->getContext(), Elts);
2430 }
2431 if (CFP->getType()->isDoubleTy()) {
2432 SmallVector<double, 16> Elts(NumElts,
2433 CFP->getValueAPF().convertToDouble());
2434 return get(V->getContext(), Elts);
2435 }
Chris Lattnere9eed292012-01-25 05:19:54 +00002436 }
Chris Lattner978fe0c2012-01-30 06:21:21 +00002437 return ConstantVector::getSplat(NumElts, V);
Chris Lattnere9eed292012-01-25 05:19:54 +00002438}
2439
2440
Chris Lattnere4f3f102012-01-24 04:43:41 +00002441/// getElementAsInteger - If this is a sequential container of integers (of
2442/// any size), return the specified element in the low bits of a uint64_t.
2443uint64_t ConstantDataSequential::getElementAsInteger(unsigned Elt) const {
2444 assert(isa<IntegerType>(getElementType()) &&
2445 "Accessor can only be used when element is an integer");
2446 const char *EltPtr = getElementPointer(Elt);
Galina Kistanovafc259902012-07-13 01:25:27 +00002447
Chris Lattnere4f3f102012-01-24 04:43:41 +00002448 // The data is stored in host byte order, make sure to cast back to the right
2449 // type to load with the right endianness.
Chris Lattner8326bd82012-01-26 00:42:34 +00002450 switch (getElementType()->getIntegerBitWidth()) {
Craig Topperc514b542012-02-05 22:14:15 +00002451 default: llvm_unreachable("Invalid bitwidth for CDS");
Galina Kistanovafc259902012-07-13 01:25:27 +00002452 case 8:
2453 return *const_cast<uint8_t *>(reinterpret_cast<const uint8_t *>(EltPtr));
2454 case 16:
2455 return *const_cast<uint16_t *>(reinterpret_cast<const uint16_t *>(EltPtr));
2456 case 32:
2457 return *const_cast<uint32_t *>(reinterpret_cast<const uint32_t *>(EltPtr));
2458 case 64:
2459 return *const_cast<uint64_t *>(reinterpret_cast<const uint64_t *>(EltPtr));
Chris Lattnere4f3f102012-01-24 04:43:41 +00002460 }
2461}
2462
2463/// getElementAsAPFloat - If this is a sequential container of floating point
2464/// type, return the specified element as an APFloat.
2465APFloat ConstantDataSequential::getElementAsAPFloat(unsigned Elt) const {
2466 const char *EltPtr = getElementPointer(Elt);
2467
2468 switch (getElementType()->getTypeID()) {
Nick Lewyckyff509622012-01-25 03:20:12 +00002469 default:
Craig Topperc514b542012-02-05 22:14:15 +00002470 llvm_unreachable("Accessor can only be used when element is float/double!");
Galina Kistanovafc259902012-07-13 01:25:27 +00002471 case Type::FloatTyID: {
2472 const float *FloatPrt = reinterpret_cast<const float *>(EltPtr);
2473 return APFloat(*const_cast<float *>(FloatPrt));
2474 }
2475 case Type::DoubleTyID: {
2476 const double *DoublePtr = reinterpret_cast<const double *>(EltPtr);
2477 return APFloat(*const_cast<double *>(DoublePtr));
2478 }
Chris Lattnere4f3f102012-01-24 04:43:41 +00002479 }
2480}
2481
2482/// getElementAsFloat - If this is an sequential container of floats, return
2483/// the specified element as a float.
2484float ConstantDataSequential::getElementAsFloat(unsigned Elt) const {
2485 assert(getElementType()->isFloatTy() &&
2486 "Accessor can only be used when element is a 'float'");
Galina Kistanovafc259902012-07-13 01:25:27 +00002487 const float *EltPtr = reinterpret_cast<const float *>(getElementPointer(Elt));
2488 return *const_cast<float *>(EltPtr);
Chris Lattnere4f3f102012-01-24 04:43:41 +00002489}
2490
2491/// getElementAsDouble - If this is an sequential container of doubles, return
2492/// the specified element as a float.
2493double ConstantDataSequential::getElementAsDouble(unsigned Elt) const {
2494 assert(getElementType()->isDoubleTy() &&
2495 "Accessor can only be used when element is a 'float'");
Galina Kistanovafc259902012-07-13 01:25:27 +00002496 const double *EltPtr =
2497 reinterpret_cast<const double *>(getElementPointer(Elt));
2498 return *const_cast<double *>(EltPtr);
Chris Lattnere4f3f102012-01-24 04:43:41 +00002499}
2500
2501/// getElementAsConstant - Return a Constant for a specified index's element.
2502/// Note that this has to compute a new constant to return, so it isn't as
2503/// efficient as getElementAsInteger/Float/Double.
2504Constant *ConstantDataSequential::getElementAsConstant(unsigned Elt) const {
2505 if (getElementType()->isFloatTy() || getElementType()->isDoubleTy())
2506 return ConstantFP::get(getContext(), getElementAsAPFloat(Elt));
Galina Kistanovafc259902012-07-13 01:25:27 +00002507
Chris Lattnere4f3f102012-01-24 04:43:41 +00002508 return ConstantInt::get(getElementType(), getElementAsInteger(Elt));
2509}
2510
Chris Lattner5dd4d872012-01-24 09:01:07 +00002511/// isString - This method returns true if this is an array of i8.
2512bool ConstantDataSequential::isString() const {
2513 return isa<ArrayType>(getType()) && getElementType()->isIntegerTy(8);
2514}
Chris Lattner3756b912012-01-23 22:57:10 +00002515
Chris Lattner5dd4d872012-01-24 09:01:07 +00002516/// isCString - This method returns true if the array "isString", ends with a
2517/// nul byte, and does not contains any other nul bytes.
2518bool ConstantDataSequential::isCString() const {
2519 if (!isString())
2520 return false;
Galina Kistanovafc259902012-07-13 01:25:27 +00002521
Chris Lattner5dd4d872012-01-24 09:01:07 +00002522 StringRef Str = getAsString();
Galina Kistanovafc259902012-07-13 01:25:27 +00002523
Chris Lattner5dd4d872012-01-24 09:01:07 +00002524 // The last value must be nul.
2525 if (Str.back() != 0) return false;
Galina Kistanovafc259902012-07-13 01:25:27 +00002526
Chris Lattner5dd4d872012-01-24 09:01:07 +00002527 // Other elements must be non-nul.
2528 return Str.drop_back().find(0) == StringRef::npos;
2529}
Chris Lattner3756b912012-01-23 22:57:10 +00002530
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002531/// getSplatValue - If this is a splat constant, meaning that all of the
2532/// elements have the same value, return that value. Otherwise return NULL.
2533Constant *ConstantDataVector::getSplatValue() const {
2534 const char *Base = getRawDataValues().data();
Galina Kistanovafc259902012-07-13 01:25:27 +00002535
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002536 // Compare elements 1+ to the 0'th element.
2537 unsigned EltSize = getElementByteSize();
2538 for (unsigned i = 1, e = getNumElements(); i != e; ++i)
2539 if (memcmp(Base, Base+i*EltSize, EltSize))
2540 return 0;
Galina Kistanovafc259902012-07-13 01:25:27 +00002541
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002542 // If they're all the same, return the 0th one as a representative.
2543 return getElementAsConstant(0);
2544}
Chris Lattnera3b94ba2010-03-30 20:48:48 +00002545
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002546//===----------------------------------------------------------------------===//
2547// replaceUsesOfWithOnConstant implementations
2548
Chris Lattner913849b2007-08-21 00:55:23 +00002549/// replaceUsesOfWithOnConstant - Update this constant array to change uses of
2550/// 'From' to be uses of 'To'. This must update the uniquing data structures
2551/// etc.
2552///
2553/// Note that we intentionally replace all uses of From with To here. Consider
2554/// a large array that uses 'From' 1000 times. By handling this case all here,
2555/// ConstantArray::replaceUsesOfWithOnConstant is only invoked once, and that
2556/// single invocation handles all 1000 uses. Handling them one at a time would
2557/// work, but would be really slow because it would have to unique each updated
2558/// array instance.
Chris Lattner31b132c2009-10-28 00:01:44 +00002559///
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002560void ConstantArray::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattner7a1450d2005-10-04 18:13:04 +00002561 Use *U) {
Owen Andersonc2c79322009-07-28 18:32:17 +00002562 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2563 Constant *ToC = cast<Constant>(To);
2564
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002565 LLVMContextImpl *pImpl = getType()->getContext().pImpl;
Owen Andersonc2c79322009-07-28 18:32:17 +00002566
Talin46e9b442012-02-05 20:54:10 +00002567 SmallVector<Constant*, 8> Values;
2568 LLVMContextImpl::ArrayConstantsTy::LookupKey Lookup;
2569 Lookup.first = cast<ArrayType>(getType());
Owen Andersonc2c79322009-07-28 18:32:17 +00002570 Values.reserve(getNumOperands()); // Build replacement array.
2571
Galina Kistanovafc259902012-07-13 01:25:27 +00002572 // Fill values with the modified operands of the constant array. Also,
Owen Andersonc2c79322009-07-28 18:32:17 +00002573 // compute whether this turns into an all-zeros array.
Owen Andersonc2c79322009-07-28 18:32:17 +00002574 unsigned NumUpdated = 0;
Galina Kistanovafc259902012-07-13 01:25:27 +00002575
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002576 // Keep track of whether all the values in the array are "ToC".
2577 bool AllSame = true;
2578 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2579 Constant *Val = cast<Constant>(O->get());
2580 if (Val == From) {
2581 Val = ToC;
2582 ++NumUpdated;
Owen Andersonc2c79322009-07-28 18:32:17 +00002583 }
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002584 Values.push_back(Val);
Talin46e9b442012-02-05 20:54:10 +00002585 AllSame &= Val == ToC;
Owen Andersonc2c79322009-07-28 18:32:17 +00002586 }
Galina Kistanovafc259902012-07-13 01:25:27 +00002587
Owen Andersonc2c79322009-07-28 18:32:17 +00002588 Constant *Replacement = 0;
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002589 if (AllSame && ToC->isNullValue()) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002590 Replacement = ConstantAggregateZero::get(getType());
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002591 } else if (AllSame && isa<UndefValue>(ToC)) {
2592 Replacement = UndefValue::get(getType());
Owen Andersonc2c79322009-07-28 18:32:17 +00002593 } else {
2594 // Check to see if we have this array type already.
Talin46e9b442012-02-05 20:54:10 +00002595 Lookup.second = makeArrayRef(Values);
Owen Andersonc2c79322009-07-28 18:32:17 +00002596 LLVMContextImpl::ArrayConstantsTy::MapTy::iterator I =
Talin46e9b442012-02-05 20:54:10 +00002597 pImpl->ArrayConstants.find(Lookup);
Galina Kistanovafc259902012-07-13 01:25:27 +00002598
Talin46e9b442012-02-05 20:54:10 +00002599 if (I != pImpl->ArrayConstants.map_end()) {
2600 Replacement = I->first;
Owen Andersonc2c79322009-07-28 18:32:17 +00002601 } else {
2602 // Okay, the new shape doesn't exist in the system yet. Instead of
2603 // creating a new constant array, inserting it, replaceallusesof'ing the
2604 // old with the new, then deleting the old... just update the current one
2605 // in place!
Talin46e9b442012-02-05 20:54:10 +00002606 pImpl->ArrayConstants.remove(this);
Galina Kistanovafc259902012-07-13 01:25:27 +00002607
Owen Andersonc2c79322009-07-28 18:32:17 +00002608 // Update to the new value. Optimize for the case when we have a single
2609 // operand that we're changing, but handle bulk updates efficiently.
2610 if (NumUpdated == 1) {
2611 unsigned OperandToUpdate = U - OperandList;
2612 assert(getOperand(OperandToUpdate) == From &&
2613 "ReplaceAllUsesWith broken!");
2614 setOperand(OperandToUpdate, ToC);
2615 } else {
2616 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
2617 if (getOperand(i) == From)
2618 setOperand(i, ToC);
2619 }
Talin46e9b442012-02-05 20:54:10 +00002620 pImpl->ArrayConstants.insert(this);
Owen Andersonc2c79322009-07-28 18:32:17 +00002621 return;
2622 }
2623 }
Galina Kistanovafc259902012-07-13 01:25:27 +00002624
Chris Lattnerb64419a2005-10-03 22:51:37 +00002625 // Otherwise, I do need to replace this with an existing value.
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002626 assert(Replacement != this && "I didn't contain From!");
Galina Kistanovafc259902012-07-13 01:25:27 +00002627
Chris Lattner7a1450d2005-10-04 18:13:04 +00002628 // Everyone using this now uses the replacement.
Chris Lattneraf1783f2011-07-15 06:18:52 +00002629 replaceAllUsesWith(Replacement);
Galina Kistanovafc259902012-07-13 01:25:27 +00002630
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002631 // Delete the old constant!
2632 destroyConstant();
2633}
2634
2635void ConstantStruct::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattner7a1450d2005-10-04 18:13:04 +00002636 Use *U) {
Owen Anderson45308b52009-07-27 22:29:26 +00002637 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2638 Constant *ToC = cast<Constant>(To);
2639
2640 unsigned OperandToUpdate = U-OperandList;
2641 assert(getOperand(OperandToUpdate) == From && "ReplaceAllUsesWith broken!");
2642
Talin46e9b442012-02-05 20:54:10 +00002643 SmallVector<Constant*, 8> Values;
2644 LLVMContextImpl::StructConstantsTy::LookupKey Lookup;
2645 Lookup.first = cast<StructType>(getType());
Owen Anderson45308b52009-07-27 22:29:26 +00002646 Values.reserve(getNumOperands()); // Build replacement struct.
Galina Kistanovafc259902012-07-13 01:25:27 +00002647
2648 // Fill values with the modified operands of the constant struct. Also,
Owen Anderson45308b52009-07-27 22:29:26 +00002649 // compute whether this turns into an all-zeros struct.
2650 bool isAllZeros = false;
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002651 bool isAllUndef = false;
2652 if (ToC->isNullValue()) {
Owen Anderson45308b52009-07-27 22:29:26 +00002653 isAllZeros = true;
2654 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2655 Constant *Val = cast<Constant>(O->get());
2656 Values.push_back(Val);
2657 if (isAllZeros) isAllZeros = Val->isNullValue();
2658 }
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002659 } else if (isa<UndefValue>(ToC)) {
2660 isAllUndef = true;
2661 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2662 Constant *Val = cast<Constant>(O->get());
2663 Values.push_back(Val);
2664 if (isAllUndef) isAllUndef = isa<UndefValue>(Val);
2665 }
2666 } else {
2667 for (Use *O = OperandList, *E = OperandList + getNumOperands(); O != E; ++O)
2668 Values.push_back(cast<Constant>(O->get()));
Owen Anderson45308b52009-07-27 22:29:26 +00002669 }
2670 Values[OperandToUpdate] = ToC;
Galina Kistanovafc259902012-07-13 01:25:27 +00002671
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002672 LLVMContextImpl *pImpl = getContext().pImpl;
Galina Kistanovafc259902012-07-13 01:25:27 +00002673
Owen Anderson45308b52009-07-27 22:29:26 +00002674 Constant *Replacement = 0;
2675 if (isAllZeros) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002676 Replacement = ConstantAggregateZero::get(getType());
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002677 } else if (isAllUndef) {
2678 Replacement = UndefValue::get(getType());
Owen Anderson45308b52009-07-27 22:29:26 +00002679 } else {
Chris Lattner718da702010-07-17 06:13:52 +00002680 // Check to see if we have this struct type already.
Talin46e9b442012-02-05 20:54:10 +00002681 Lookup.second = makeArrayRef(Values);
Owen Anderson45308b52009-07-27 22:29:26 +00002682 LLVMContextImpl::StructConstantsTy::MapTy::iterator I =
Talin46e9b442012-02-05 20:54:10 +00002683 pImpl->StructConstants.find(Lookup);
Galina Kistanovafc259902012-07-13 01:25:27 +00002684
Talin46e9b442012-02-05 20:54:10 +00002685 if (I != pImpl->StructConstants.map_end()) {
2686 Replacement = I->first;
Owen Anderson45308b52009-07-27 22:29:26 +00002687 } else {
2688 // Okay, the new shape doesn't exist in the system yet. Instead of
2689 // creating a new constant struct, inserting it, replaceallusesof'ing the
2690 // old with the new, then deleting the old... just update the current one
2691 // in place!
Talin46e9b442012-02-05 20:54:10 +00002692 pImpl->StructConstants.remove(this);
Galina Kistanovafc259902012-07-13 01:25:27 +00002693
Owen Anderson45308b52009-07-27 22:29:26 +00002694 // Update to the new value.
2695 setOperand(OperandToUpdate, ToC);
Talin46e9b442012-02-05 20:54:10 +00002696 pImpl->StructConstants.insert(this);
Owen Anderson45308b52009-07-27 22:29:26 +00002697 return;
2698 }
2699 }
Galina Kistanovafc259902012-07-13 01:25:27 +00002700
Owen Anderson45308b52009-07-27 22:29:26 +00002701 assert(Replacement != this && "I didn't contain From!");
Galina Kistanovafc259902012-07-13 01:25:27 +00002702
Chris Lattner7a1450d2005-10-04 18:13:04 +00002703 // Everyone using this now uses the replacement.
Chris Lattneraf1783f2011-07-15 06:18:52 +00002704 replaceAllUsesWith(Replacement);
Galina Kistanovafc259902012-07-13 01:25:27 +00002705
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002706 // Delete the old constant!
2707 destroyConstant();
2708}
2709
Reid Spencerd84d35b2007-02-15 02:26:10 +00002710void ConstantVector::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattner7a1450d2005-10-04 18:13:04 +00002711 Use *U) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002712 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
Galina Kistanovafc259902012-07-13 01:25:27 +00002713
Chris Lattnera474bb22012-01-26 20:40:56 +00002714 SmallVector<Constant*, 8> Values;
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002715 Values.reserve(getNumOperands()); // Build replacement array...
2716 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
2717 Constant *Val = getOperand(i);
2718 if (Val == From) Val = cast<Constant>(To);
2719 Values.push_back(Val);
2720 }
Galina Kistanovafc259902012-07-13 01:25:27 +00002721
Jay Foadb8a8bed32011-06-22 09:10:19 +00002722 Constant *Replacement = get(Values);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002723 assert(Replacement != this && "I didn't contain From!");
Galina Kistanovafc259902012-07-13 01:25:27 +00002724
Chris Lattner7a1450d2005-10-04 18:13:04 +00002725 // Everyone using this now uses the replacement.
Chris Lattneraf1783f2011-07-15 06:18:52 +00002726 replaceAllUsesWith(Replacement);
Galina Kistanovafc259902012-07-13 01:25:27 +00002727
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002728 // Delete the old constant!
2729 destroyConstant();
2730}
2731
2732void ConstantExpr::replaceUsesOfWithOnConstant(Value *From, Value *ToV,
Chris Lattner7a1450d2005-10-04 18:13:04 +00002733 Use *U) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002734 assert(isa<Constant>(ToV) && "Cannot make Constant refer to non-constant!");
2735 Constant *To = cast<Constant>(ToV);
Galina Kistanovafc259902012-07-13 01:25:27 +00002736
Chris Lattner37e38352012-01-26 20:37:11 +00002737 SmallVector<Constant*, 8> NewOps;
2738 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
2739 Constant *Op = getOperand(i);
2740 NewOps.push_back(Op == From ? To : Op);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002741 }
Galina Kistanovafc259902012-07-13 01:25:27 +00002742
Chris Lattner37e38352012-01-26 20:37:11 +00002743 Constant *Replacement = getWithOperands(NewOps);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002744 assert(Replacement != this && "I didn't contain From!");
Galina Kistanovafc259902012-07-13 01:25:27 +00002745
Chris Lattner7a1450d2005-10-04 18:13:04 +00002746 // Everyone using this now uses the replacement.
Chris Lattneraf1783f2011-07-15 06:18:52 +00002747 replaceAllUsesWith(Replacement);
Galina Kistanovafc259902012-07-13 01:25:27 +00002748
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002749 // Delete the old constant!
2750 destroyConstant();
Matthijs Kooijmanba5d7ef2008-07-03 07:46:41 +00002751}
James Molloyce545682012-11-17 17:56:30 +00002752
2753Instruction *ConstantExpr::getAsInstruction() {
2754 SmallVector<Value*,4> ValueOperands;
2755 for (op_iterator I = op_begin(), E = op_end(); I != E; ++I)
2756 ValueOperands.push_back(cast<Value>(I));
2757
2758 ArrayRef<Value*> Ops(ValueOperands);
2759
2760 switch (getOpcode()) {
2761 case Instruction::Trunc:
2762 case Instruction::ZExt:
2763 case Instruction::SExt:
2764 case Instruction::FPTrunc:
2765 case Instruction::FPExt:
2766 case Instruction::UIToFP:
2767 case Instruction::SIToFP:
2768 case Instruction::FPToUI:
2769 case Instruction::FPToSI:
2770 case Instruction::PtrToInt:
2771 case Instruction::IntToPtr:
2772 case Instruction::BitCast:
2773 return CastInst::Create((Instruction::CastOps)getOpcode(),
2774 Ops[0], getType());
2775 case Instruction::Select:
2776 return SelectInst::Create(Ops[0], Ops[1], Ops[2]);
2777 case Instruction::InsertElement:
2778 return InsertElementInst::Create(Ops[0], Ops[1], Ops[2]);
2779 case Instruction::ExtractElement:
2780 return ExtractElementInst::Create(Ops[0], Ops[1]);
2781 case Instruction::InsertValue:
2782 return InsertValueInst::Create(Ops[0], Ops[1], getIndices());
2783 case Instruction::ExtractValue:
2784 return ExtractValueInst::Create(Ops[0], getIndices());
2785 case Instruction::ShuffleVector:
2786 return new ShuffleVectorInst(Ops[0], Ops[1], Ops[2]);
2787
2788 case Instruction::GetElementPtr:
2789 if (cast<GEPOperator>(this)->isInBounds())
2790 return GetElementPtrInst::CreateInBounds(Ops[0], Ops.slice(1));
2791 else
2792 return GetElementPtrInst::Create(Ops[0], Ops.slice(1));
2793
2794 case Instruction::ICmp:
2795 case Instruction::FCmp:
2796 return CmpInst::Create((Instruction::OtherOps)getOpcode(),
2797 getPredicate(), Ops[0], Ops[1]);
2798
2799 default:
2800 assert(getNumOperands() == 2 && "Must be binary operator?");
2801 BinaryOperator *BO =
2802 BinaryOperator::Create((Instruction::BinaryOps)getOpcode(),
2803 Ops[0], Ops[1]);
2804 if (isa<OverflowingBinaryOperator>(BO)) {
2805 BO->setHasNoUnsignedWrap(SubclassOptionalData &
2806 OverflowingBinaryOperator::NoUnsignedWrap);
2807 BO->setHasNoSignedWrap(SubclassOptionalData &
2808 OverflowingBinaryOperator::NoSignedWrap);
2809 }
2810 if (isa<PossiblyExactOperator>(BO))
2811 BO->setIsExact(SubclassOptionalData & PossiblyExactOperator::IsExact);
2812 return BO;
2813 }
2814}