blob: 9365653516e412b93075abd14e35230c94bc22c5 [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"
Chandler Carruth03eb0de2014-03-04 10:40:04 +000024#include "llvm/IR/GetElementPtrTypeIterator.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000025#include "llvm/IR/GlobalValue.h"
26#include "llvm/IR/Instructions.h"
27#include "llvm/IR/Module.h"
28#include "llvm/IR/Operator.h"
Chris Lattner3d27be12006-08-27 12:54:02 +000029#include "llvm/Support/Compiler.h"
Bill Wendling6a462f12006-11-17 08:03:48 +000030#include "llvm/Support/Debug.h"
Torok Edwinccb29cd2009-07-11 13:10:19 +000031#include "llvm/Support/ErrorHandling.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
David Majnemer1a0bbc82014-08-16 09:23:42 +0000110bool Constant::isOneValue() const {
111 // Check for 1 integers
112 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
113 return CI->isOne();
114
115 // Check for FP which are bitcasted from 1 integers
116 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
117 return CFP->getValueAPF().bitcastToAPInt() == 1;
118
119 // Check for constant vectors which are splats of 1 values.
120 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
121 if (Constant *Splat = CV->getSplatValue())
122 return Splat->isOneValue();
123
124 // Check for constant vectors which are splats of 1 values.
125 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this))
126 if (Constant *Splat = CV->getSplatValue())
127 return Splat->isOneValue();
128
129 return false;
130}
131
David Majnemerbdeef602014-07-02 06:07:09 +0000132bool Constant::isMinSignedValue() const {
133 // Check for INT_MIN integers
134 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
135 return CI->isMinValue(/*isSigned=*/true);
136
137 // Check for FP which are bitcasted from INT_MIN integers
138 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
139 return CFP->getValueAPF().bitcastToAPInt().isMinSignedValue();
140
141 // Check for constant vectors which are splats of INT_MIN values.
142 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
143 if (Constant *Splat = CV->getSplatValue())
144 return Splat->isMinSignedValue();
145
146 // Check for constant vectors which are splats of INT_MIN values.
147 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this))
148 if (Constant *Splat = CV->getSplatValue())
149 return Splat->isMinSignedValue();
150
151 return false;
152}
153
David Majnemer0e6c9862014-08-22 16:41:23 +0000154bool Constant::isNotMinSignedValue() const {
155 // Check for INT_MIN integers
156 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
157 return !CI->isMinValue(/*isSigned=*/true);
158
159 // Check for FP which are bitcasted from INT_MIN integers
160 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
161 return !CFP->getValueAPF().bitcastToAPInt().isMinSignedValue();
162
163 // Check for constant vectors which are splats of INT_MIN values.
164 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
165 if (Constant *Splat = CV->getSplatValue())
166 return Splat->isNotMinSignedValue();
167
168 // Check for constant vectors which are splats of INT_MIN values.
169 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this))
170 if (Constant *Splat = CV->getSplatValue())
171 return Splat->isNotMinSignedValue();
172
173 // It *may* contain INT_MIN, we can't tell.
174 return false;
175}
176
Owen Anderson5a1acd92009-07-31 20:28:14 +0000177// Constructor to create a '0' constant of arbitrary type...
Chris Lattner229907c2011-07-18 04:54:35 +0000178Constant *Constant::getNullValue(Type *Ty) {
Owen Anderson5a1acd92009-07-31 20:28:14 +0000179 switch (Ty->getTypeID()) {
180 case Type::IntegerTyID:
181 return ConstantInt::get(Ty, 0);
Dan Gohman518cda42011-12-17 00:04:22 +0000182 case Type::HalfTyID:
183 return ConstantFP::get(Ty->getContext(),
184 APFloat::getZero(APFloat::IEEEhalf));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000185 case Type::FloatTyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000186 return ConstantFP::get(Ty->getContext(),
187 APFloat::getZero(APFloat::IEEEsingle));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000188 case Type::DoubleTyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000189 return ConstantFP::get(Ty->getContext(),
190 APFloat::getZero(APFloat::IEEEdouble));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000191 case Type::X86_FP80TyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000192 return ConstantFP::get(Ty->getContext(),
193 APFloat::getZero(APFloat::x87DoubleExtended));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000194 case Type::FP128TyID:
195 return ConstantFP::get(Ty->getContext(),
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000196 APFloat::getZero(APFloat::IEEEquad));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000197 case Type::PPC_FP128TyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000198 return ConstantFP::get(Ty->getContext(),
Tim Northover29178a32013-01-22 09:46:31 +0000199 APFloat(APFloat::PPCDoubleDouble,
200 APInt::getNullValue(128)));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000201 case Type::PointerTyID:
202 return ConstantPointerNull::get(cast<PointerType>(Ty));
203 case Type::StructTyID:
204 case Type::ArrayTyID:
205 case Type::VectorTyID:
206 return ConstantAggregateZero::get(Ty);
207 default:
208 // Function, Label, or Opaque type?
Craig Topperc514b542012-02-05 22:14:15 +0000209 llvm_unreachable("Cannot create a null constant of that type!");
Owen Anderson5a1acd92009-07-31 20:28:14 +0000210 }
211}
212
Chris Lattner229907c2011-07-18 04:54:35 +0000213Constant *Constant::getIntegerValue(Type *Ty, const APInt &V) {
214 Type *ScalarTy = Ty->getScalarType();
Dan Gohmanf011f5a2009-08-03 22:07:33 +0000215
216 // Create the base integer constant.
217 Constant *C = ConstantInt::get(Ty->getContext(), V);
218
219 // Convert an integer to a pointer, if necessary.
Chris Lattner229907c2011-07-18 04:54:35 +0000220 if (PointerType *PTy = dyn_cast<PointerType>(ScalarTy))
Dan Gohmanf011f5a2009-08-03 22:07:33 +0000221 C = ConstantExpr::getIntToPtr(C, PTy);
222
223 // Broadcast a scalar to a vector, if necessary.
Chris Lattner229907c2011-07-18 04:54:35 +0000224 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000225 C = ConstantVector::getSplat(VTy->getNumElements(), C);
Dan Gohmanf011f5a2009-08-03 22:07:33 +0000226
227 return C;
228}
229
Chris Lattner229907c2011-07-18 04:54:35 +0000230Constant *Constant::getAllOnesValue(Type *Ty) {
231 if (IntegerType *ITy = dyn_cast<IntegerType>(Ty))
Owen Anderson5a1acd92009-07-31 20:28:14 +0000232 return ConstantInt::get(Ty->getContext(),
233 APInt::getAllOnesValue(ITy->getBitWidth()));
Nadav Rotem7cc6d122011-02-17 21:22:27 +0000234
235 if (Ty->isFloatingPointTy()) {
236 APFloat FL = APFloat::getAllOnesValue(Ty->getPrimitiveSizeInBits(),
237 !Ty->isPPC_FP128Ty());
238 return ConstantFP::get(Ty->getContext(), FL);
239 }
240
Chris Lattner229907c2011-07-18 04:54:35 +0000241 VectorType *VTy = cast<VectorType>(Ty);
Chris Lattnere9eed292012-01-25 05:19:54 +0000242 return ConstantVector::getSplat(VTy->getNumElements(),
243 getAllOnesValue(VTy->getElementType()));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000244}
245
Chris Lattner7e683d12012-01-25 06:16:32 +0000246/// getAggregateElement - For aggregates (struct/array/vector) return the
247/// constant that corresponds to the specified element if possible, or null if
248/// not. This can return null if the element index is a ConstantExpr, or if
249/// 'this' is a constant expr.
250Constant *Constant::getAggregateElement(unsigned Elt) const {
251 if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(this))
Craig Topperc6207612014-04-09 06:08:46 +0000252 return Elt < CS->getNumOperands() ? CS->getOperand(Elt) : nullptr;
Galina Kistanovafc259902012-07-13 01:25:27 +0000253
Chris Lattner7e683d12012-01-25 06:16:32 +0000254 if (const ConstantArray *CA = dyn_cast<ConstantArray>(this))
Craig Topperc6207612014-04-09 06:08:46 +0000255 return Elt < CA->getNumOperands() ? CA->getOperand(Elt) : nullptr;
Galina Kistanovafc259902012-07-13 01:25:27 +0000256
Chris Lattner7e683d12012-01-25 06:16:32 +0000257 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
Craig Topperc6207612014-04-09 06:08:46 +0000258 return Elt < CV->getNumOperands() ? CV->getOperand(Elt) : nullptr;
Galina Kistanovafc259902012-07-13 01:25:27 +0000259
David Majnemer9b529a72015-02-16 04:02:09 +0000260 if (const ConstantAggregateZero *CAZ = dyn_cast<ConstantAggregateZero>(this))
261 return Elt < CAZ->getNumElements() ? CAZ->getElementValue(Elt) : nullptr;
Galina Kistanovafc259902012-07-13 01:25:27 +0000262
Chris Lattner7e683d12012-01-25 06:16:32 +0000263 if (const UndefValue *UV = dyn_cast<UndefValue>(this))
David Majnemer9b529a72015-02-16 04:02:09 +0000264 return Elt < UV->getNumElements() ? UV->getElementValue(Elt) : nullptr;
Galina Kistanovafc259902012-07-13 01:25:27 +0000265
Chris Lattner8326bd82012-01-26 00:42:34 +0000266 if (const ConstantDataSequential *CDS =dyn_cast<ConstantDataSequential>(this))
Craig Topperc6207612014-04-09 06:08:46 +0000267 return Elt < CDS->getNumElements() ? CDS->getElementAsConstant(Elt)
268 : nullptr;
269 return nullptr;
Chris Lattner7e683d12012-01-25 06:16:32 +0000270}
271
272Constant *Constant::getAggregateElement(Constant *Elt) const {
273 assert(isa<IntegerType>(Elt->getType()) && "Index must be an integer");
274 if (ConstantInt *CI = dyn_cast<ConstantInt>(Elt))
275 return getAggregateElement(CI->getZExtValue());
Craig Topperc6207612014-04-09 06:08:46 +0000276 return nullptr;
Chris Lattner7e683d12012-01-25 06:16:32 +0000277}
278
Pete Cooper86dd4cf2015-06-23 21:55:11 +0000279void Constant::destroyConstant() {
280 /// First call destroyConstantImpl on the subclass. This gives the subclass
281 /// a chance to remove the constant from any maps/pools it's contained in.
282 switch (getValueID()) {
283 default:
284 llvm_unreachable("Not a constant!");
285#define HANDLE_CONSTANT(Name) \
286 case Value::Name##Val: \
287 cast<Name>(this)->destroyConstantImpl(); \
288 break;
289#include "llvm/IR/Value.def"
290 }
Chris Lattner7e683d12012-01-25 06:16:32 +0000291
Chris Lattner3462ae32001-12-03 22:26:30 +0000292 // When a Constant is destroyed, there may be lingering
Chris Lattnerd7a73302001-10-13 06:57:33 +0000293 // references to the constant by other constants in the constant pool. These
Misha Brukmanbe372b92003-08-21 22:14:26 +0000294 // constants are implicitly dependent on the module that is being deleted,
Chris Lattnerd7a73302001-10-13 06:57:33 +0000295 // but they don't know that. Because we only find out when the CPV is
296 // deleted, we must now notify all of our users (that should only be
Chris Lattner3462ae32001-12-03 22:26:30 +0000297 // Constants) that they are, in fact, invalid now and should be deleted.
Chris Lattnerd7a73302001-10-13 06:57:33 +0000298 //
299 while (!use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000300 Value *V = user_back();
Pete Cooper86dd4cf2015-06-23 21:55:11 +0000301#ifndef NDEBUG // Only in -g mode...
Chris Lattner78683a72009-08-23 04:02:03 +0000302 if (!isa<Constant>(V)) {
David Greene1e27a132010-01-05 01:29:19 +0000303 dbgs() << "While deleting: " << *this
Pete Cooper86dd4cf2015-06-23 21:55:11 +0000304 << "\n\nUse still stuck around after Def is destroyed: " << *V
305 << "\n\n";
Chris Lattner78683a72009-08-23 04:02:03 +0000306 }
Chris Lattnerd7a73302001-10-13 06:57:33 +0000307#endif
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000308 assert(isa<Constant>(V) && "References remain to Constant being destroyed");
Chris Lattner8326bd82012-01-26 00:42:34 +0000309 cast<Constant>(V)->destroyConstant();
Chris Lattnerd7a73302001-10-13 06:57:33 +0000310
311 // The constant should remove itself from our use list...
Chandler Carruthcdf47882014-03-09 03:16:01 +0000312 assert((use_empty() || user_back() != V) && "Constant not removed!");
Chris Lattnerd7a73302001-10-13 06:57:33 +0000313 }
314
315 // Value has no outstanding references it is safe to delete it now...
316 delete this;
Chris Lattner38569342001-10-01 20:11:19 +0000317}
Chris Lattner2f7c9632001-06-06 20:29:01 +0000318
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +0000319static bool canTrapImpl(const Constant *C,
Craig Topper71b7b682014-08-21 05:55:13 +0000320 SmallPtrSetImpl<const ConstantExpr *> &NonTrappingOps) {
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +0000321 assert(C->getType()->isFirstClassType() && "Cannot evaluate aggregate vals!");
Chris Lattner23dd1f62006-10-20 00:27:06 +0000322 // The only thing that could possibly trap are constant exprs.
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +0000323 const ConstantExpr *CE = dyn_cast<ConstantExpr>(C);
324 if (!CE)
325 return false;
Galina Kistanovafc259902012-07-13 01:25:27 +0000326
327 // ConstantExpr traps if any operands can trap.
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +0000328 for (unsigned i = 0, e = C->getNumOperands(); i != e; ++i) {
329 if (ConstantExpr *Op = dyn_cast<ConstantExpr>(CE->getOperand(i))) {
David Blaikie70573dc2014-11-19 07:49:26 +0000330 if (NonTrappingOps.insert(Op).second && canTrapImpl(Op, NonTrappingOps))
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +0000331 return true;
332 }
333 }
Chris Lattner23dd1f62006-10-20 00:27:06 +0000334
335 // Otherwise, only specific operations can trap.
336 switch (CE->getOpcode()) {
337 default:
338 return false;
Reid Spencer7e80b0b2006-10-26 06:15:43 +0000339 case Instruction::UDiv:
340 case Instruction::SDiv:
341 case Instruction::FDiv:
Reid Spencer7eb55b32006-11-02 01:53:59 +0000342 case Instruction::URem:
343 case Instruction::SRem:
344 case Instruction::FRem:
Chris Lattner23dd1f62006-10-20 00:27:06 +0000345 // Div and rem can trap if the RHS is not known to be non-zero.
Chris Lattnera91a5632009-10-28 05:14:34 +0000346 if (!isa<ConstantInt>(CE->getOperand(1)) ||CE->getOperand(1)->isNullValue())
Chris Lattner23dd1f62006-10-20 00:27:06 +0000347 return true;
348 return false;
349 }
350}
351
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +0000352/// canTrap - Return true if evaluation of this constant could trap. This is
353/// true for things like constant expressions that could divide by zero.
354bool Constant::canTrap() const {
355 SmallPtrSet<const ConstantExpr *, 4> NonTrappingOps;
356 return canTrapImpl(this, NonTrappingOps);
357}
358
Hans Wennborg4dc89512014-06-20 00:38:12 +0000359/// Check if C contains a GlobalValue for which Predicate is true.
360static bool
361ConstHasGlobalValuePredicate(const Constant *C,
362 bool (*Predicate)(const GlobalValue *)) {
363 SmallPtrSet<const Constant *, 8> Visited;
364 SmallVector<const Constant *, 8> WorkList;
365 WorkList.push_back(C);
366 Visited.insert(C);
Hans Wennborg709e0152012-11-15 11:40:00 +0000367
368 while (!WorkList.empty()) {
Hans Wennborg4dc89512014-06-20 00:38:12 +0000369 const Constant *WorkItem = WorkList.pop_back_val();
370 if (const auto *GV = dyn_cast<GlobalValue>(WorkItem))
371 if (Predicate(GV))
Hans Wennborg709e0152012-11-15 11:40:00 +0000372 return true;
Hans Wennborg4dc89512014-06-20 00:38:12 +0000373 for (const Value *Op : WorkItem->operands()) {
374 const Constant *ConstOp = dyn_cast<Constant>(Op);
375 if (!ConstOp)
Hans Wennborg18aa12402012-11-16 10:33:25 +0000376 continue;
David Blaikie70573dc2014-11-19 07:49:26 +0000377 if (Visited.insert(ConstOp).second)
Hans Wennborg4dc89512014-06-20 00:38:12 +0000378 WorkList.push_back(ConstOp);
Hans Wennborg709e0152012-11-15 11:40:00 +0000379 }
380 }
Hans Wennborg709e0152012-11-15 11:40:00 +0000381 return false;
382}
383
Hans Wennborg4dc89512014-06-20 00:38:12 +0000384/// Return true if the value can vary between threads.
385bool Constant::isThreadDependent() const {
386 auto DLLImportPredicate = [](const GlobalValue *GV) {
387 return GV->isThreadLocal();
388 };
389 return ConstHasGlobalValuePredicate(this, DLLImportPredicate);
390}
391
392bool Constant::isDLLImportDependent() const {
393 auto DLLImportPredicate = [](const GlobalValue *GV) {
394 return GV->hasDLLImportStorageClass();
395 };
396 return ConstHasGlobalValuePredicate(this, DLLImportPredicate);
397}
398
399/// Return true if the constant has users other than constant exprs and other
400/// dangling things.
Chris Lattner253bc772009-11-01 18:11:50 +0000401bool Constant::isConstantUsed() const {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000402 for (const User *U : users()) {
403 const Constant *UC = dyn_cast<Constant>(U);
Craig Topperc6207612014-04-09 06:08:46 +0000404 if (!UC || isa<GlobalValue>(UC))
Chris Lattner253bc772009-11-01 18:11:50 +0000405 return true;
Galina Kistanovafc259902012-07-13 01:25:27 +0000406
Chris Lattner253bc772009-11-01 18:11:50 +0000407 if (UC->isConstantUsed())
408 return true;
409 }
410 return false;
411}
412
413
Chris Lattner4565ef52009-07-22 00:05:44 +0000414
415/// getRelocationInfo - This method classifies the entry according to
416/// whether or not it may generate a relocation entry. This must be
417/// conservative, so if it might codegen to a relocatable entry, it should say
418/// so. The return values are:
419///
Chris Lattner5cd4dd32009-07-24 03:27:21 +0000420/// NoRelocation: This constant pool entry is guaranteed to never have a
421/// relocation applied to it (because it holds a simple constant like
422/// '4').
423/// LocalRelocation: This entry has relocations, but the entries are
424/// guaranteed to be resolvable by the static linker, so the dynamic
425/// linker will never see them.
426/// GlobalRelocations: This entry may have arbitrary relocations.
Chris Lattner4565ef52009-07-22 00:05:44 +0000427///
Chandler Carruthef860a22013-01-02 09:10:48 +0000428/// FIXME: This really should not be in IR.
Chris Lattner5cd4dd32009-07-24 03:27:21 +0000429Constant::PossibleRelocationsTy Constant::getRelocationInfo() const {
430 if (const GlobalValue *GV = dyn_cast<GlobalValue>(this)) {
Chris Lattner4565ef52009-07-22 00:05:44 +0000431 if (GV->hasLocalLinkage() || GV->hasHiddenVisibility())
Chris Lattner5cd4dd32009-07-24 03:27:21 +0000432 return LocalRelocation; // Local to this file/library.
433 return GlobalRelocations; // Global reference.
Anton Korobeynikov7437b592009-03-29 17:13:18 +0000434 }
Chris Lattner4565ef52009-07-22 00:05:44 +0000435
Chris Lattner2cb85b42009-10-28 04:12:16 +0000436 if (const BlockAddress *BA = dyn_cast<BlockAddress>(this))
437 return BA->getFunction()->getRelocationInfo();
438
Chris Lattnera7cfc432010-01-03 18:09:40 +0000439 // While raw uses of blockaddress need to be relocated, differences between
440 // two of them don't when they are for labels in the same function. This is a
441 // common idiom when creating a table for the indirect goto extension, so we
442 // handle it efficiently here.
443 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(this))
444 if (CE->getOpcode() == Instruction::Sub) {
445 ConstantExpr *LHS = dyn_cast<ConstantExpr>(CE->getOperand(0));
446 ConstantExpr *RHS = dyn_cast<ConstantExpr>(CE->getOperand(1));
447 if (LHS && RHS &&
448 LHS->getOpcode() == Instruction::PtrToInt &&
449 RHS->getOpcode() == Instruction::PtrToInt &&
450 isa<BlockAddress>(LHS->getOperand(0)) &&
451 isa<BlockAddress>(RHS->getOperand(0)) &&
452 cast<BlockAddress>(LHS->getOperand(0))->getFunction() ==
453 cast<BlockAddress>(RHS->getOperand(0))->getFunction())
454 return NoRelocation;
455 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000456
Chris Lattner5cd4dd32009-07-24 03:27:21 +0000457 PossibleRelocationsTy Result = NoRelocation;
Evan Chengf9e003b2007-03-08 00:59:12 +0000458 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Chris Lattnera91a5632009-10-28 05:14:34 +0000459 Result = std::max(Result,
460 cast<Constant>(getOperand(i))->getRelocationInfo());
Galina Kistanovafc259902012-07-13 01:25:27 +0000461
Chris Lattner4565ef52009-07-22 00:05:44 +0000462 return Result;
Evan Chengf9e003b2007-03-08 00:59:12 +0000463}
464
Chris Lattner84886402011-02-18 04:41:42 +0000465/// removeDeadUsersOfConstant - If the specified constantexpr is dead, remove
466/// it. This involves recursively eliminating any dead users of the
467/// constantexpr.
468static bool removeDeadUsersOfConstant(const Constant *C) {
469 if (isa<GlobalValue>(C)) return false; // Cannot remove this
Galina Kistanovafc259902012-07-13 01:25:27 +0000470
Chris Lattner84886402011-02-18 04:41:42 +0000471 while (!C->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000472 const Constant *User = dyn_cast<Constant>(C->user_back());
Chris Lattner84886402011-02-18 04:41:42 +0000473 if (!User) return false; // Non-constant usage;
474 if (!removeDeadUsersOfConstant(User))
475 return false; // Constant wasn't dead
476 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000477
Chris Lattner84886402011-02-18 04:41:42 +0000478 const_cast<Constant*>(C)->destroyConstant();
479 return true;
480}
481
482
483/// removeDeadConstantUsers - If there are any dead constant users dangling
484/// off of this constant, remove them. This method is useful for clients
485/// that want to check to see if a global is unused, but don't want to deal
486/// with potentially dead constants hanging off of the globals.
487void Constant::removeDeadConstantUsers() const {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000488 Value::const_user_iterator I = user_begin(), E = user_end();
489 Value::const_user_iterator LastNonDeadUser = E;
Chris Lattner84886402011-02-18 04:41:42 +0000490 while (I != E) {
491 const Constant *User = dyn_cast<Constant>(*I);
Craig Topperc6207612014-04-09 06:08:46 +0000492 if (!User) {
Chris Lattner84886402011-02-18 04:41:42 +0000493 LastNonDeadUser = I;
494 ++I;
495 continue;
496 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000497
Chris Lattner84886402011-02-18 04:41:42 +0000498 if (!removeDeadUsersOfConstant(User)) {
499 // If the constant wasn't dead, remember that this was the last live use
500 // and move on to the next constant.
501 LastNonDeadUser = I;
502 ++I;
503 continue;
504 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000505
Chris Lattner84886402011-02-18 04:41:42 +0000506 // If the constant was dead, then the iterator is invalidated.
507 if (LastNonDeadUser == E) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000508 I = user_begin();
Chris Lattner84886402011-02-18 04:41:42 +0000509 if (I == E) break;
510 } else {
511 I = LastNonDeadUser;
512 ++I;
513 }
514 }
515}
516
517
Chris Lattner2105d662008-07-10 00:28:11 +0000518
Chris Lattner2f7c9632001-06-06 20:29:01 +0000519//===----------------------------------------------------------------------===//
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000520// ConstantInt
Chris Lattner2f7c9632001-06-06 20:29:01 +0000521//===----------------------------------------------------------------------===//
522
David Blaikiea379b1812011-12-20 02:50:00 +0000523void ConstantInt::anchor() { }
524
Chris Lattner229907c2011-07-18 04:54:35 +0000525ConstantInt::ConstantInt(IntegerType *Ty, const APInt& V)
Craig Topperc6207612014-04-09 06:08:46 +0000526 : Constant(Ty, ConstantIntVal, nullptr, 0), Val(V) {
Reid Spencerb31bffe2007-02-26 23:54:03 +0000527 assert(V.getBitWidth() == Ty->getBitWidth() && "Invalid constant for type");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000528}
529
Nick Lewycky92db8e82011-03-06 03:36:19 +0000530ConstantInt *ConstantInt::getTrue(LLVMContext &Context) {
Owen Anderson23a204d2009-07-31 17:39:07 +0000531 LLVMContextImpl *pImpl = Context.pImpl;
Benjamin Kramerddd1b7b2010-11-20 18:43:35 +0000532 if (!pImpl->TheTrueVal)
533 pImpl->TheTrueVal = ConstantInt::get(Type::getInt1Ty(Context), 1);
534 return pImpl->TheTrueVal;
Owen Anderson23a204d2009-07-31 17:39:07 +0000535}
536
Nick Lewycky92db8e82011-03-06 03:36:19 +0000537ConstantInt *ConstantInt::getFalse(LLVMContext &Context) {
Owen Anderson23a204d2009-07-31 17:39:07 +0000538 LLVMContextImpl *pImpl = Context.pImpl;
Benjamin Kramerddd1b7b2010-11-20 18:43:35 +0000539 if (!pImpl->TheFalseVal)
540 pImpl->TheFalseVal = ConstantInt::get(Type::getInt1Ty(Context), 0);
541 return pImpl->TheFalseVal;
Owen Anderson23a204d2009-07-31 17:39:07 +0000542}
543
Chris Lattner229907c2011-07-18 04:54:35 +0000544Constant *ConstantInt::getTrue(Type *Ty) {
545 VectorType *VTy = dyn_cast<VectorType>(Ty);
Nick Lewycky92db8e82011-03-06 03:36:19 +0000546 if (!VTy) {
547 assert(Ty->isIntegerTy(1) && "True must be i1 or vector of i1.");
548 return ConstantInt::getTrue(Ty->getContext());
549 }
550 assert(VTy->getElementType()->isIntegerTy(1) &&
551 "True must be vector of i1 or i1.");
Chris Lattnere9eed292012-01-25 05:19:54 +0000552 return ConstantVector::getSplat(VTy->getNumElements(),
553 ConstantInt::getTrue(Ty->getContext()));
Nick Lewycky92db8e82011-03-06 03:36:19 +0000554}
555
Chris Lattner229907c2011-07-18 04:54:35 +0000556Constant *ConstantInt::getFalse(Type *Ty) {
557 VectorType *VTy = dyn_cast<VectorType>(Ty);
Nick Lewycky92db8e82011-03-06 03:36:19 +0000558 if (!VTy) {
559 assert(Ty->isIntegerTy(1) && "False must be i1 or vector of i1.");
560 return ConstantInt::getFalse(Ty->getContext());
561 }
562 assert(VTy->getElementType()->isIntegerTy(1) &&
563 "False must be vector of i1 or i1.");
Chris Lattnere9eed292012-01-25 05:19:54 +0000564 return ConstantVector::getSplat(VTy->getNumElements(),
565 ConstantInt::getFalse(Ty->getContext()));
Nick Lewycky92db8e82011-03-06 03:36:19 +0000566}
567
Benjamin Kramer8e5dc532014-12-06 13:12:56 +0000568// Get a ConstantInt from an APInt.
Nick Lewycky92db8e82011-03-06 03:36:19 +0000569ConstantInt *ConstantInt::get(LLVMContext &Context, const APInt &V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000570 // get an existing value or the insertion position
Benjamin Kramer320682f2013-06-01 17:51:03 +0000571 LLVMContextImpl *pImpl = Context.pImpl;
Benjamin Kramer8e5dc532014-12-06 13:12:56 +0000572 ConstantInt *&Slot = pImpl->IntConstants[V];
573 if (!Slot) {
574 // Get the corresponding integer type for the bit width of the value.
575 IntegerType *ITy = IntegerType::get(Context, V.getBitWidth());
NAKAMURA Takumifc3062f2014-12-06 05:57:06 +0000576 Slot = new ConstantInt(ITy, V);
Benjamin Kramer8e5dc532014-12-06 13:12:56 +0000577 }
578 assert(Slot->getType() == IntegerType::get(Context, V.getBitWidth()));
Owen Anderson5dab84c2009-10-19 20:11:52 +0000579 return Slot;
Owen Andersonedb4a702009-07-24 23:12:02 +0000580}
581
Chris Lattner229907c2011-07-18 04:54:35 +0000582Constant *ConstantInt::get(Type *Ty, uint64_t V, bool isSigned) {
Nick Lewycky92db8e82011-03-06 03:36:19 +0000583 Constant *C = get(cast<IntegerType>(Ty->getScalarType()), V, isSigned);
Owen Andersonedb4a702009-07-24 23:12:02 +0000584
585 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000586 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000587 return ConstantVector::getSplat(VTy->getNumElements(), C);
Owen Andersonedb4a702009-07-24 23:12:02 +0000588
589 return C;
590}
591
Chris Lattner0256be92012-01-27 03:08:05 +0000592ConstantInt *ConstantInt::get(IntegerType *Ty, uint64_t V,
Owen Andersonedb4a702009-07-24 23:12:02 +0000593 bool isSigned) {
594 return get(Ty->getContext(), APInt(Ty->getBitWidth(), V, isSigned));
595}
596
Chris Lattner0256be92012-01-27 03:08:05 +0000597ConstantInt *ConstantInt::getSigned(IntegerType *Ty, int64_t V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000598 return get(Ty, V, true);
599}
600
Chris Lattner229907c2011-07-18 04:54:35 +0000601Constant *ConstantInt::getSigned(Type *Ty, int64_t V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000602 return get(Ty, V, true);
603}
604
Chris Lattner0256be92012-01-27 03:08:05 +0000605Constant *ConstantInt::get(Type *Ty, const APInt& V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000606 ConstantInt *C = get(Ty->getContext(), V);
607 assert(C->getType() == Ty->getScalarType() &&
608 "ConstantInt type doesn't match the type implied by its value!");
609
610 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000611 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000612 return ConstantVector::getSplat(VTy->getNumElements(), C);
Owen Andersonedb4a702009-07-24 23:12:02 +0000613
614 return C;
615}
616
Chris Lattner0256be92012-01-27 03:08:05 +0000617ConstantInt *ConstantInt::get(IntegerType* Ty, StringRef Str,
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000618 uint8_t radix) {
619 return get(Ty->getContext(), APInt(Ty->getBitWidth(), Str, radix));
620}
621
Pete Cooper86dd4cf2015-06-23 21:55:11 +0000622/// Remove the constant from the constant table.
623void ConstantInt::destroyConstantImpl() {
624 llvm_unreachable("You can't ConstantInt->destroyConstantImpl()!");
625}
626
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000627//===----------------------------------------------------------------------===//
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000628// ConstantFP
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000629//===----------------------------------------------------------------------===//
630
Chris Lattner229907c2011-07-18 04:54:35 +0000631static const fltSemantics *TypeToFloatSemantics(Type *Ty) {
Dan Gohman518cda42011-12-17 00:04:22 +0000632 if (Ty->isHalfTy())
633 return &APFloat::IEEEhalf;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000634 if (Ty->isFloatTy())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000635 return &APFloat::IEEEsingle;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000636 if (Ty->isDoubleTy())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000637 return &APFloat::IEEEdouble;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000638 if (Ty->isX86_FP80Ty())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000639 return &APFloat::x87DoubleExtended;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000640 else if (Ty->isFP128Ty())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000641 return &APFloat::IEEEquad;
Galina Kistanovafc259902012-07-13 01:25:27 +0000642
Chris Lattnerfdd87902009-10-05 05:54:46 +0000643 assert(Ty->isPPC_FP128Ty() && "Unknown FP format");
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000644 return &APFloat::PPCDoubleDouble;
645}
646
David Blaikiea379b1812011-12-20 02:50:00 +0000647void ConstantFP::anchor() { }
648
Owen Anderson69c464d2009-07-27 20:59:43 +0000649/// get() - This returns a constant fp for the specified value in the
650/// specified type. This should only be used for simple constant values like
651/// 2.0/1.0 etc, that are known-valid both as double and as the target format.
Chris Lattner0256be92012-01-27 03:08:05 +0000652Constant *ConstantFP::get(Type *Ty, double V) {
Owen Anderson69c464d2009-07-27 20:59:43 +0000653 LLVMContext &Context = Ty->getContext();
Galina Kistanovafc259902012-07-13 01:25:27 +0000654
Owen Anderson69c464d2009-07-27 20:59:43 +0000655 APFloat FV(V);
656 bool ignored;
657 FV.convert(*TypeToFloatSemantics(Ty->getScalarType()),
658 APFloat::rmNearestTiesToEven, &ignored);
659 Constant *C = get(Context, FV);
660
661 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000662 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000663 return ConstantVector::getSplat(VTy->getNumElements(), C);
Owen Anderson69c464d2009-07-27 20:59:43 +0000664
665 return C;
666}
667
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000668
Chris Lattner0256be92012-01-27 03:08:05 +0000669Constant *ConstantFP::get(Type *Ty, StringRef Str) {
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000670 LLVMContext &Context = Ty->getContext();
671
672 APFloat FV(*TypeToFloatSemantics(Ty->getScalarType()), Str);
673 Constant *C = get(Context, FV);
674
675 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000676 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000677 return ConstantVector::getSplat(VTy->getNumElements(), C);
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000678
679 return C;
680}
681
Tom Stellard67246d12015-04-20 19:38:24 +0000682Constant *ConstantFP::getNaN(Type *Ty, bool Negative, unsigned Type) {
683 const fltSemantics &Semantics = *TypeToFloatSemantics(Ty->getScalarType());
684 APFloat NaN = APFloat::getNaN(Semantics, Negative, Type);
685 Constant *C = get(Ty->getContext(), NaN);
686
687 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
688 return ConstantVector::getSplat(VTy->getNumElements(), C);
689
690 return C;
691}
692
Benjamin Kramer5d2ff222014-01-18 16:43:06 +0000693Constant *ConstantFP::getNegativeZero(Type *Ty) {
694 const fltSemantics &Semantics = *TypeToFloatSemantics(Ty->getScalarType());
695 APFloat NegZero = APFloat::getZero(Semantics, /*Negative=*/true);
696 Constant *C = get(Ty->getContext(), NegZero);
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000697
Benjamin Kramer5d2ff222014-01-18 16:43:06 +0000698 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
699 return ConstantVector::getSplat(VTy->getNumElements(), C);
700
701 return C;
Owen Anderson69c464d2009-07-27 20:59:43 +0000702}
703
704
Chris Lattnere9eed292012-01-25 05:19:54 +0000705Constant *ConstantFP::getZeroValueForNegation(Type *Ty) {
Benjamin Kramer5d2ff222014-01-18 16:43:06 +0000706 if (Ty->isFPOrFPVectorTy())
707 return getNegativeZero(Ty);
Owen Anderson69c464d2009-07-27 20:59:43 +0000708
Owen Anderson5a1acd92009-07-31 20:28:14 +0000709 return Constant::getNullValue(Ty);
Owen Anderson69c464d2009-07-27 20:59:43 +0000710}
711
712
713// ConstantFP accessors.
714ConstantFP* ConstantFP::get(LLVMContext &Context, const APFloat& V) {
Owen Anderson69c464d2009-07-27 20:59:43 +0000715 LLVMContextImpl* pImpl = Context.pImpl;
Galina Kistanovafc259902012-07-13 01:25:27 +0000716
Benjamin Kramer8e5dc532014-12-06 13:12:56 +0000717 ConstantFP *&Slot = pImpl->FPConstants[V];
Galina Kistanovafc259902012-07-13 01:25:27 +0000718
Owen Anderson69c464d2009-07-27 20:59:43 +0000719 if (!Slot) {
Chris Lattner229907c2011-07-18 04:54:35 +0000720 Type *Ty;
Dan Gohman518cda42011-12-17 00:04:22 +0000721 if (&V.getSemantics() == &APFloat::IEEEhalf)
722 Ty = Type::getHalfTy(Context);
723 else if (&V.getSemantics() == &APFloat::IEEEsingle)
Owen Anderson5dab84c2009-10-19 20:11:52 +0000724 Ty = Type::getFloatTy(Context);
725 else if (&V.getSemantics() == &APFloat::IEEEdouble)
726 Ty = Type::getDoubleTy(Context);
727 else if (&V.getSemantics() == &APFloat::x87DoubleExtended)
728 Ty = Type::getX86_FP80Ty(Context);
729 else if (&V.getSemantics() == &APFloat::IEEEquad)
730 Ty = Type::getFP128Ty(Context);
731 else {
732 assert(&V.getSemantics() == &APFloat::PPCDoubleDouble &&
733 "Unknown FP format");
734 Ty = Type::getPPC_FP128Ty(Context);
Owen Anderson69c464d2009-07-27 20:59:43 +0000735 }
Owen Anderson5dab84c2009-10-19 20:11:52 +0000736 Slot = new ConstantFP(Ty, V);
Owen Anderson69c464d2009-07-27 20:59:43 +0000737 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000738
Owen Anderson69c464d2009-07-27 20:59:43 +0000739 return Slot;
740}
741
Benjamin Kramer5d2ff222014-01-18 16:43:06 +0000742Constant *ConstantFP::getInfinity(Type *Ty, bool Negative) {
743 const fltSemantics &Semantics = *TypeToFloatSemantics(Ty->getScalarType());
744 Constant *C = get(Ty->getContext(), APFloat::getInf(Semantics, Negative));
745
746 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
747 return ConstantVector::getSplat(VTy->getNumElements(), C);
748
749 return C;
Dan Gohmanfeb50212009-09-25 23:00:48 +0000750}
751
Chris Lattner229907c2011-07-18 04:54:35 +0000752ConstantFP::ConstantFP(Type *Ty, const APFloat& V)
Craig Topperc6207612014-04-09 06:08:46 +0000753 : Constant(Ty, ConstantFPVal, nullptr, 0), Val(V) {
Chris Lattner98bd9392008-04-09 06:38:30 +0000754 assert(&V.getSemantics() == TypeToFloatSemantics(Ty) &&
755 "FP type Mismatch");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000756}
757
Chris Lattnerbe6610c2011-07-15 06:14:08 +0000758bool ConstantFP::isExactlyValue(const APFloat &V) const {
Dale Johannesend246b2c2007-08-30 00:23:21 +0000759 return Val.bitwiseIsEqual(V);
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000760}
761
Pete Cooper86dd4cf2015-06-23 21:55:11 +0000762/// Remove the constant from the constant table.
763void ConstantFP::destroyConstantImpl() {
764 llvm_unreachable("You can't ConstantInt->destroyConstantImpl()!");
765}
766
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000767//===----------------------------------------------------------------------===//
Chris Lattner030af792012-01-24 05:42:11 +0000768// ConstantAggregateZero Implementation
769//===----------------------------------------------------------------------===//
770
771/// getSequentialElement - If this CAZ has array or vector type, return a zero
772/// with the right element type.
Chris Lattner7e683d12012-01-25 06:16:32 +0000773Constant *ConstantAggregateZero::getSequentialElement() const {
Chris Lattner8326bd82012-01-26 00:42:34 +0000774 return Constant::getNullValue(getType()->getSequentialElementType());
Chris Lattner030af792012-01-24 05:42:11 +0000775}
776
777/// getStructElement - If this CAZ has struct type, return a zero with the
778/// right element type for the specified element.
Chris Lattner7e683d12012-01-25 06:16:32 +0000779Constant *ConstantAggregateZero::getStructElement(unsigned Elt) const {
Chris Lattner8326bd82012-01-26 00:42:34 +0000780 return Constant::getNullValue(getType()->getStructElementType(Elt));
Chris Lattner030af792012-01-24 05:42:11 +0000781}
782
783/// getElementValue - Return a zero of the right value for the specified GEP
784/// index if we can, otherwise return null (e.g. if C is a ConstantExpr).
Chris Lattner7e683d12012-01-25 06:16:32 +0000785Constant *ConstantAggregateZero::getElementValue(Constant *C) const {
Chris Lattner030af792012-01-24 05:42:11 +0000786 if (isa<SequentialType>(getType()))
787 return getSequentialElement();
788 return getStructElement(cast<ConstantInt>(C)->getZExtValue());
789}
790
Chris Lattnerf7eb5432012-01-24 07:54:10 +0000791/// getElementValue - Return a zero of the right value for the specified GEP
792/// index.
Chris Lattner7e683d12012-01-25 06:16:32 +0000793Constant *ConstantAggregateZero::getElementValue(unsigned Idx) const {
Chris Lattnerf7eb5432012-01-24 07:54:10 +0000794 if (isa<SequentialType>(getType()))
795 return getSequentialElement();
796 return getStructElement(Idx);
797}
798
David Majnemer9b529a72015-02-16 04:02:09 +0000799unsigned ConstantAggregateZero::getNumElements() const {
Craig Toppere3dcce92015-08-01 22:20:21 +0000800 Type *Ty = getType();
801 if (auto *AT = dyn_cast<ArrayType>(Ty))
David Majnemer9b529a72015-02-16 04:02:09 +0000802 return AT->getNumElements();
Craig Toppere3dcce92015-08-01 22:20:21 +0000803 if (auto *VT = dyn_cast<VectorType>(Ty))
David Majnemer9b529a72015-02-16 04:02:09 +0000804 return VT->getNumElements();
805 return Ty->getStructNumElements();
806}
Chris Lattnerf7eb5432012-01-24 07:54:10 +0000807
Chris Lattner030af792012-01-24 05:42:11 +0000808//===----------------------------------------------------------------------===//
809// UndefValue Implementation
810//===----------------------------------------------------------------------===//
811
812/// getSequentialElement - If this undef has array or vector type, return an
813/// undef with the right element type.
Chris Lattner7e683d12012-01-25 06:16:32 +0000814UndefValue *UndefValue::getSequentialElement() const {
Chris Lattner8326bd82012-01-26 00:42:34 +0000815 return UndefValue::get(getType()->getSequentialElementType());
Chris Lattner030af792012-01-24 05:42:11 +0000816}
817
818/// getStructElement - If this undef has struct type, return a zero with the
819/// right element type for the specified element.
Chris Lattner7e683d12012-01-25 06:16:32 +0000820UndefValue *UndefValue::getStructElement(unsigned Elt) const {
Chris Lattner8326bd82012-01-26 00:42:34 +0000821 return UndefValue::get(getType()->getStructElementType(Elt));
Chris Lattner030af792012-01-24 05:42:11 +0000822}
823
824/// getElementValue - Return an undef of the right value for the specified GEP
825/// index if we can, otherwise return null (e.g. if C is a ConstantExpr).
Chris Lattner7e683d12012-01-25 06:16:32 +0000826UndefValue *UndefValue::getElementValue(Constant *C) const {
Chris Lattner030af792012-01-24 05:42:11 +0000827 if (isa<SequentialType>(getType()))
828 return getSequentialElement();
829 return getStructElement(cast<ConstantInt>(C)->getZExtValue());
830}
831
Chris Lattnerf7eb5432012-01-24 07:54:10 +0000832/// getElementValue - Return an undef of the right value for the specified GEP
833/// index.
Chris Lattner7e683d12012-01-25 06:16:32 +0000834UndefValue *UndefValue::getElementValue(unsigned Idx) const {
Chris Lattnerf7eb5432012-01-24 07:54:10 +0000835 if (isa<SequentialType>(getType()))
836 return getSequentialElement();
837 return getStructElement(Idx);
838}
839
David Majnemer9b529a72015-02-16 04:02:09 +0000840unsigned UndefValue::getNumElements() const {
Craig Toppere3dcce92015-08-01 22:20:21 +0000841 Type *Ty = getType();
842 if (auto *AT = dyn_cast<ArrayType>(Ty))
David Majnemer9b529a72015-02-16 04:02:09 +0000843 return AT->getNumElements();
Craig Toppere3dcce92015-08-01 22:20:21 +0000844 if (auto *VT = dyn_cast<VectorType>(Ty))
David Majnemer9b529a72015-02-16 04:02:09 +0000845 return VT->getNumElements();
846 return Ty->getStructNumElements();
847}
Chris Lattner030af792012-01-24 05:42:11 +0000848
849//===----------------------------------------------------------------------===//
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000850// ConstantXXX Classes
851//===----------------------------------------------------------------------===//
852
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000853template <typename ItTy, typename EltTy>
854static bool rangeOnlyContains(ItTy Start, ItTy End, EltTy Elt) {
855 for (; Start != End; ++Start)
856 if (*Start != Elt)
857 return false;
858 return true;
859}
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000860
Jay Foad89d9b812011-07-25 10:14:44 +0000861ConstantArray::ConstantArray(ArrayType *T, ArrayRef<Constant *> V)
Gabor Greiff6caff662008-05-10 08:32:32 +0000862 : Constant(T, ConstantArrayVal,
863 OperandTraits<ConstantArray>::op_end(this) - V.size(),
864 V.size()) {
Alkis Evlogimenos0507ffe2004-09-15 02:32:15 +0000865 assert(V.size() == T->getNumElements() &&
866 "Invalid initializer vector for constant array");
Jay Foad89d9b812011-07-25 10:14:44 +0000867 for (unsigned i = 0, e = V.size(); i != e; ++i)
868 assert(V[i]->getType() == T->getElementType() &&
Alkis Evlogimenoscb031d92004-09-10 04:16:59 +0000869 "Initializer for array element doesn't match array 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
Chris Lattner229907c2011-07-18 04:54:35 +0000873Constant *ConstantArray::get(ArrayType *Ty, ArrayRef<Constant*> V) {
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +0000874 if (Constant *C = getImpl(Ty, V))
875 return C;
876 return Ty->getContext().pImpl->ArrayConstants.getOrCreate(Ty, V);
877}
878Constant *ConstantArray::getImpl(ArrayType *Ty, ArrayRef<Constant*> V) {
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000879 // Empty arrays are canonicalized to ConstantAggregateZero.
880 if (V.empty())
881 return ConstantAggregateZero::get(Ty);
882
Jeffrey Yasskin8ce67f82009-09-30 21:08:08 +0000883 for (unsigned i = 0, e = V.size(); i != e; ++i) {
884 assert(V[i]->getType() == Ty->getElementType() &&
885 "Wrong type in array element initializer");
886 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000887
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000888 // If this is an all-zero array, return a ConstantAggregateZero object. If
889 // all undef, return an UndefValue, if "all simple", then return a
890 // ConstantDataArray.
891 Constant *C = V[0];
892 if (isa<UndefValue>(C) && rangeOnlyContains(V.begin(), V.end(), C))
893 return UndefValue::get(Ty);
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000894
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000895 if (C->isNullValue() && rangeOnlyContains(V.begin(), V.end(), C))
896 return ConstantAggregateZero::get(Ty);
897
898 // Check to see if all of the elements are ConstantFP or ConstantInt and if
899 // the element type is compatible with ConstantDataVector. If so, use it.
900 if (ConstantDataSequential::isElementTypeCompatible(C->getType())) {
901 // We speculatively build the elements here even if it turns out that there
902 // is a constantexpr or something else weird in the array, since it is so
903 // uncommon for that to happen.
904 if (ConstantInt *CI = dyn_cast<ConstantInt>(C)) {
905 if (CI->getType()->isIntegerTy(8)) {
906 SmallVector<uint8_t, 16> Elts;
907 for (unsigned i = 0, e = V.size(); i != e; ++i)
908 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
909 Elts.push_back(CI->getZExtValue());
910 else
911 break;
912 if (Elts.size() == V.size())
913 return ConstantDataArray::get(C->getContext(), Elts);
914 } else if (CI->getType()->isIntegerTy(16)) {
915 SmallVector<uint16_t, 16> Elts;
916 for (unsigned i = 0, e = V.size(); i != e; ++i)
917 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
918 Elts.push_back(CI->getZExtValue());
919 else
920 break;
921 if (Elts.size() == V.size())
922 return ConstantDataArray::get(C->getContext(), Elts);
923 } else if (CI->getType()->isIntegerTy(32)) {
924 SmallVector<uint32_t, 16> Elts;
925 for (unsigned i = 0, e = V.size(); i != e; ++i)
926 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
927 Elts.push_back(CI->getZExtValue());
928 else
929 break;
930 if (Elts.size() == V.size())
931 return ConstantDataArray::get(C->getContext(), Elts);
932 } else if (CI->getType()->isIntegerTy(64)) {
933 SmallVector<uint64_t, 16> Elts;
934 for (unsigned i = 0, e = V.size(); i != e; ++i)
935 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
936 Elts.push_back(CI->getZExtValue());
937 else
938 break;
939 if (Elts.size() == V.size())
940 return ConstantDataArray::get(C->getContext(), Elts);
941 }
942 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000943
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000944 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
945 if (CFP->getType()->isFloatTy()) {
Rafael Espindola8c97e192015-02-19 16:08:20 +0000946 SmallVector<uint32_t, 16> Elts;
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000947 for (unsigned i = 0, e = V.size(); i != e; ++i)
948 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V[i]))
Rafael Espindola8c97e192015-02-19 16:08:20 +0000949 Elts.push_back(
950 CFP->getValueAPF().bitcastToAPInt().getLimitedValue());
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000951 else
952 break;
953 if (Elts.size() == V.size())
Rafael Espindola8c97e192015-02-19 16:08:20 +0000954 return ConstantDataArray::getFP(C->getContext(), Elts);
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000955 } else if (CFP->getType()->isDoubleTy()) {
Rafael Espindola8c97e192015-02-19 16:08:20 +0000956 SmallVector<uint64_t, 16> Elts;
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000957 for (unsigned i = 0, e = V.size(); i != e; ++i)
958 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V[i]))
Rafael Espindola8c97e192015-02-19 16:08:20 +0000959 Elts.push_back(
960 CFP->getValueAPF().bitcastToAPInt().getLimitedValue());
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000961 else
962 break;
963 if (Elts.size() == V.size())
Rafael Espindola8c97e192015-02-19 16:08:20 +0000964 return ConstantDataArray::getFP(C->getContext(), Elts);
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000965 }
966 }
Owen Andersonc2c79322009-07-28 18:32:17 +0000967 }
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000968
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000969 // Otherwise, we really do want to create a ConstantArray.
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +0000970 return nullptr;
Owen Andersonc2c79322009-07-28 18:32:17 +0000971}
972
Chris Lattnercc19efa2011-06-20 04:01:31 +0000973/// getTypeForElements - Return an anonymous struct type to use for a constant
974/// with the specified set of elements. The list must not be empty.
975StructType *ConstantStruct::getTypeForElements(LLVMContext &Context,
976 ArrayRef<Constant*> V,
977 bool Packed) {
Bill Wendling3ae7dd32012-02-07 01:27:51 +0000978 unsigned VecSize = V.size();
979 SmallVector<Type*, 16> EltTypes(VecSize);
980 for (unsigned i = 0; i != VecSize; ++i)
981 EltTypes[i] = V[i]->getType();
Galina Kistanovafc259902012-07-13 01:25:27 +0000982
Chris Lattnercc19efa2011-06-20 04:01:31 +0000983 return StructType::get(Context, EltTypes, Packed);
984}
985
986
987StructType *ConstantStruct::getTypeForElements(ArrayRef<Constant*> V,
988 bool Packed) {
989 assert(!V.empty() &&
990 "ConstantStruct::getTypeForElements cannot be called on empty list");
991 return getTypeForElements(V[0]->getContext(), V, Packed);
992}
993
994
Jay Foad89d9b812011-07-25 10:14:44 +0000995ConstantStruct::ConstantStruct(StructType *T, ArrayRef<Constant *> V)
Gabor Greiff6caff662008-05-10 08:32:32 +0000996 : Constant(T, ConstantStructVal,
997 OperandTraits<ConstantStruct>::op_end(this) - V.size(),
998 V.size()) {
Chris Lattnerc3e74cd2011-08-07 04:18:48 +0000999 assert(V.size() == T->getNumElements() &&
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001000 "Invalid initializer vector for constant structure");
Jay Foad89d9b812011-07-25 10:14:44 +00001001 for (unsigned i = 0, e = V.size(); i != e; ++i)
1002 assert((T->isOpaque() || V[i]->getType() == T->getElementType(i)) &&
Chris Lattner93c8f142003-06-02 17:42:47 +00001003 "Initializer for struct element doesn't match struct element type!");
Jay Foad89d9b812011-07-25 10:14:44 +00001004 std::copy(V.begin(), V.end(), op_begin());
Chris Lattner2f7c9632001-06-06 20:29:01 +00001005}
1006
Owen Anderson45308b52009-07-27 22:29:26 +00001007// ConstantStruct accessors.
Chris Lattner229907c2011-07-18 04:54:35 +00001008Constant *ConstantStruct::get(StructType *ST, ArrayRef<Constant*> V) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001009 assert((ST->isOpaque() || ST->getNumElements() == V.size()) &&
1010 "Incorrect # elements specified to ConstantStruct::get");
Chris Lattnerf14a67f2012-01-26 02:31:22 +00001011
1012 // Create a ConstantAggregateZero value if all elements are zeros.
1013 bool isZero = true;
1014 bool isUndef = false;
1015
1016 if (!V.empty()) {
1017 isUndef = isa<UndefValue>(V[0]);
1018 isZero = V[0]->isNullValue();
1019 if (isUndef || isZero) {
1020 for (unsigned i = 0, e = V.size(); i != e; ++i) {
1021 if (!V[i]->isNullValue())
1022 isZero = false;
1023 if (!isa<UndefValue>(V[i]))
1024 isUndef = false;
1025 }
1026 }
Galina Kistanovafc259902012-07-13 01:25:27 +00001027 }
Chris Lattnerf14a67f2012-01-26 02:31:22 +00001028 if (isZero)
1029 return ConstantAggregateZero::get(ST);
1030 if (isUndef)
1031 return UndefValue::get(ST);
Galina Kistanovafc259902012-07-13 01:25:27 +00001032
Chris Lattnerf14a67f2012-01-26 02:31:22 +00001033 return ST->getContext().pImpl->StructConstants.getOrCreate(ST, V);
Owen Anderson45308b52009-07-27 22:29:26 +00001034}
1035
Chris Lattnerc3e74cd2011-08-07 04:18:48 +00001036Constant *ConstantStruct::get(StructType *T, ...) {
Talin3a0a30d2011-02-28 23:53:27 +00001037 va_list ap;
Chris Lattnercc19efa2011-06-20 04:01:31 +00001038 SmallVector<Constant*, 8> Values;
1039 va_start(ap, T);
1040 while (Constant *Val = va_arg(ap, llvm::Constant*))
Talin3a0a30d2011-02-28 23:53:27 +00001041 Values.push_back(Val);
Talinde422be2011-03-01 18:00:49 +00001042 va_end(ap);
Chris Lattnercc19efa2011-06-20 04:01:31 +00001043 return get(T, Values);
Talin3a0a30d2011-02-28 23:53:27 +00001044}
1045
Jay Foad89d9b812011-07-25 10:14:44 +00001046ConstantVector::ConstantVector(VectorType *T, ArrayRef<Constant *> V)
Gabor Greiff6caff662008-05-10 08:32:32 +00001047 : Constant(T, ConstantVectorVal,
1048 OperandTraits<ConstantVector>::op_end(this) - V.size(),
1049 V.size()) {
Jay Foad89d9b812011-07-25 10:14:44 +00001050 for (size_t i = 0, e = V.size(); i != e; i++)
1051 assert(V[i]->getType() == T->getElementType() &&
Dan Gohman30978072007-05-24 14:36:04 +00001052 "Initializer for vector element doesn't match vector element type!");
Jay Foad89d9b812011-07-25 10:14:44 +00001053 std::copy(V.begin(), V.end(), op_begin());
Brian Gaeke02209042004-08-20 06:00:58 +00001054}
1055
Owen Anderson4aa32952009-07-28 21:19:26 +00001056// ConstantVector accessors.
Jay Foadb8a8bed32011-06-22 09:10:19 +00001057Constant *ConstantVector::get(ArrayRef<Constant*> V) {
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00001058 if (Constant *C = getImpl(V))
1059 return C;
1060 VectorType *Ty = VectorType::get(V.front()->getType(), V.size());
1061 return Ty->getContext().pImpl->VectorConstants.getOrCreate(Ty, V);
1062}
1063Constant *ConstantVector::getImpl(ArrayRef<Constant*> V) {
Jay Foad9f32cfd2011-01-27 14:44:55 +00001064 assert(!V.empty() && "Vectors can't be empty");
Chris Lattner229907c2011-07-18 04:54:35 +00001065 VectorType *T = VectorType::get(V.front()->getType(), V.size());
Jay Foad9f32cfd2011-01-27 14:44:55 +00001066
Chris Lattner69229312011-02-15 00:14:00 +00001067 // If this is an all-undef or all-zero vector, return a
Owen Anderson4aa32952009-07-28 21:19:26 +00001068 // ConstantAggregateZero or UndefValue.
1069 Constant *C = V[0];
1070 bool isZero = C->isNullValue();
1071 bool isUndef = isa<UndefValue>(C);
1072
1073 if (isZero || isUndef) {
1074 for (unsigned i = 1, e = V.size(); i != e; ++i)
1075 if (V[i] != C) {
1076 isZero = isUndef = false;
1077 break;
1078 }
1079 }
Galina Kistanovafc259902012-07-13 01:25:27 +00001080
Owen Anderson4aa32952009-07-28 21:19:26 +00001081 if (isZero)
Owen Andersonb292b8c2009-07-30 23:03:37 +00001082 return ConstantAggregateZero::get(T);
Owen Anderson4aa32952009-07-28 21:19:26 +00001083 if (isUndef)
Owen Andersonb292b8c2009-07-30 23:03:37 +00001084 return UndefValue::get(T);
Galina Kistanovafc259902012-07-13 01:25:27 +00001085
Chris Lattner978fe0c2012-01-30 06:21:21 +00001086 // Check to see if all of the elements are ConstantFP or ConstantInt and if
1087 // the element type is compatible with ConstantDataVector. If so, use it.
Chris Lattnercf9e8f62012-02-05 02:29:43 +00001088 if (ConstantDataSequential::isElementTypeCompatible(C->getType())) {
Chris Lattner978fe0c2012-01-30 06:21:21 +00001089 // We speculatively build the elements here even if it turns out that there
1090 // is a constantexpr or something else weird in the array, since it is so
1091 // uncommon for that to happen.
1092 if (ConstantInt *CI = dyn_cast<ConstantInt>(C)) {
1093 if (CI->getType()->isIntegerTy(8)) {
1094 SmallVector<uint8_t, 16> Elts;
1095 for (unsigned i = 0, e = V.size(); i != e; ++i)
1096 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
1097 Elts.push_back(CI->getZExtValue());
1098 else
1099 break;
1100 if (Elts.size() == V.size())
1101 return ConstantDataVector::get(C->getContext(), Elts);
1102 } else if (CI->getType()->isIntegerTy(16)) {
1103 SmallVector<uint16_t, 16> Elts;
1104 for (unsigned i = 0, e = V.size(); i != e; ++i)
1105 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
1106 Elts.push_back(CI->getZExtValue());
1107 else
1108 break;
1109 if (Elts.size() == V.size())
1110 return ConstantDataVector::get(C->getContext(), Elts);
1111 } else if (CI->getType()->isIntegerTy(32)) {
1112 SmallVector<uint32_t, 16> Elts;
1113 for (unsigned i = 0, e = V.size(); i != e; ++i)
1114 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
1115 Elts.push_back(CI->getZExtValue());
1116 else
1117 break;
1118 if (Elts.size() == V.size())
1119 return ConstantDataVector::get(C->getContext(), Elts);
1120 } else if (CI->getType()->isIntegerTy(64)) {
1121 SmallVector<uint64_t, 16> Elts;
1122 for (unsigned i = 0, e = V.size(); i != e; ++i)
1123 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
1124 Elts.push_back(CI->getZExtValue());
1125 else
1126 break;
1127 if (Elts.size() == V.size())
1128 return ConstantDataVector::get(C->getContext(), Elts);
1129 }
1130 }
Galina Kistanovafc259902012-07-13 01:25:27 +00001131
Chris Lattner978fe0c2012-01-30 06:21:21 +00001132 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
1133 if (CFP->getType()->isFloatTy()) {
Rafael Espindola8c97e192015-02-19 16:08:20 +00001134 SmallVector<uint32_t, 16> Elts;
Chris Lattner978fe0c2012-01-30 06:21:21 +00001135 for (unsigned i = 0, e = V.size(); i != e; ++i)
1136 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V[i]))
Rafael Espindola8c97e192015-02-19 16:08:20 +00001137 Elts.push_back(
1138 CFP->getValueAPF().bitcastToAPInt().getLimitedValue());
Chris Lattner978fe0c2012-01-30 06:21:21 +00001139 else
1140 break;
1141 if (Elts.size() == V.size())
Rafael Espindola8c97e192015-02-19 16:08:20 +00001142 return ConstantDataVector::getFP(C->getContext(), Elts);
Chris Lattner978fe0c2012-01-30 06:21:21 +00001143 } else if (CFP->getType()->isDoubleTy()) {
Rafael Espindola8c97e192015-02-19 16:08:20 +00001144 SmallVector<uint64_t, 16> Elts;
Chris Lattner978fe0c2012-01-30 06:21:21 +00001145 for (unsigned i = 0, e = V.size(); i != e; ++i)
1146 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V[i]))
Rafael Espindola8c97e192015-02-19 16:08:20 +00001147 Elts.push_back(
1148 CFP->getValueAPF().bitcastToAPInt().getLimitedValue());
Chris Lattner978fe0c2012-01-30 06:21:21 +00001149 else
1150 break;
1151 if (Elts.size() == V.size())
Rafael Espindola8c97e192015-02-19 16:08:20 +00001152 return ConstantDataVector::getFP(C->getContext(), Elts);
Chris Lattner978fe0c2012-01-30 06:21:21 +00001153 }
1154 }
1155 }
Galina Kistanovafc259902012-07-13 01:25:27 +00001156
Chris Lattner978fe0c2012-01-30 06:21:21 +00001157 // Otherwise, the element type isn't compatible with ConstantDataVector, or
1158 // the operand list constants a ConstantExpr or something else strange.
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00001159 return nullptr;
Owen Anderson4aa32952009-07-28 21:19:26 +00001160}
1161
Chris Lattnere9eed292012-01-25 05:19:54 +00001162Constant *ConstantVector::getSplat(unsigned NumElts, Constant *V) {
Chris Lattner978fe0c2012-01-30 06:21:21 +00001163 // If this splat is compatible with ConstantDataVector, use it instead of
1164 // ConstantVector.
1165 if ((isa<ConstantFP>(V) || isa<ConstantInt>(V)) &&
1166 ConstantDataSequential::isElementTypeCompatible(V->getType()))
1167 return ConstantDataVector::getSplat(NumElts, V);
Galina Kistanovafc259902012-07-13 01:25:27 +00001168
Chris Lattnere9eed292012-01-25 05:19:54 +00001169 SmallVector<Constant*, 32> Elts(NumElts, V);
1170 return get(Elts);
1171}
1172
1173
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001174// Utility function for determining if a ConstantExpr is a CastOp or not. This
1175// can't be inline because we don't want to #include Instruction.h into
1176// Constant.h
1177bool ConstantExpr::isCast() const {
1178 return Instruction::isCast(getOpcode());
1179}
1180
Reid Spenceree3c9912006-12-04 05:19:50 +00001181bool ConstantExpr::isCompare() const {
Nick Lewyckya21d3da2009-07-08 03:04:38 +00001182 return getOpcode() == Instruction::ICmp || getOpcode() == Instruction::FCmp;
Reid Spenceree3c9912006-12-04 05:19:50 +00001183}
1184
Dan Gohman7190d482009-09-10 23:37:55 +00001185bool ConstantExpr::isGEPWithNoNotionalOverIndexing() const {
1186 if (getOpcode() != Instruction::GetElementPtr) return false;
1187
1188 gep_type_iterator GEPI = gep_type_begin(this), E = gep_type_end(this);
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001189 User::const_op_iterator OI = std::next(this->op_begin());
Dan Gohman7190d482009-09-10 23:37:55 +00001190
1191 // Skip the first index, as it has no static limit.
1192 ++GEPI;
1193 ++OI;
1194
1195 // The remaining indices must be compile-time known integers within the
1196 // bounds of the corresponding notional static array types.
1197 for (; GEPI != E; ++GEPI, ++OI) {
1198 ConstantInt *CI = dyn_cast<ConstantInt>(*OI);
1199 if (!CI) return false;
Chris Lattner229907c2011-07-18 04:54:35 +00001200 if (ArrayType *ATy = dyn_cast<ArrayType>(*GEPI))
Dan Gohman7190d482009-09-10 23:37:55 +00001201 if (CI->getValue().getActiveBits() > 64 ||
1202 CI->getZExtValue() >= ATy->getNumElements())
1203 return false;
1204 }
1205
1206 // All the indices checked out.
1207 return true;
1208}
1209
Dan Gohman1ecaf452008-05-31 00:58:22 +00001210bool ConstantExpr::hasIndices() const {
1211 return getOpcode() == Instruction::ExtractValue ||
1212 getOpcode() == Instruction::InsertValue;
1213}
1214
Jay Foad0091fe82011-04-13 15:22:40 +00001215ArrayRef<unsigned> ConstantExpr::getIndices() const {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001216 if (const ExtractValueConstantExpr *EVCE =
1217 dyn_cast<ExtractValueConstantExpr>(this))
1218 return EVCE->Indices;
Dan Gohmana469bdb2008-06-23 16:39:44 +00001219
1220 return cast<InsertValueConstantExpr>(this)->Indices;
Dan Gohman1ecaf452008-05-31 00:58:22 +00001221}
1222
Reid Spencer10fbf0e2006-12-03 05:48:19 +00001223unsigned ConstantExpr::getPredicate() const {
Chris Lattnerd04e32d2011-07-17 06:01:30 +00001224 assert(isCompare());
Chris Lattneref650092007-10-18 16:26:24 +00001225 return ((const CompareConstantExpr*)this)->predicate;
Reid Spencer10fbf0e2006-12-03 05:48:19 +00001226}
Chris Lattner60e0dd72001-10-03 06:12:09 +00001227
Chris Lattner7c1018a2006-07-14 19:37:40 +00001228/// getWithOperandReplaced - Return a constant expression identical to this
1229/// one, but with the specified operand set to the specified value.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001230Constant *
1231ConstantExpr::getWithOperandReplaced(unsigned OpNo, Constant *Op) const {
Chris Lattner7c1018a2006-07-14 19:37:40 +00001232 assert(Op->getType() == getOperand(OpNo)->getType() &&
1233 "Replacing operand with value of different type!");
Chris Lattner227816342006-07-14 22:20:01 +00001234 if (getOperand(OpNo) == Op)
1235 return const_cast<ConstantExpr*>(this);
Chris Lattner37e38352012-01-26 20:37:11 +00001236
1237 SmallVector<Constant*, 8> NewOps;
1238 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
1239 NewOps.push_back(i == OpNo ? Op : getOperand(i));
Galina Kistanovafc259902012-07-13 01:25:27 +00001240
Chris Lattner37e38352012-01-26 20:37:11 +00001241 return getWithOperands(NewOps);
Chris Lattner227816342006-07-14 22:20:01 +00001242}
1243
1244/// getWithOperands - This returns the current constant expression with the
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001245/// operands replaced with the specified values. The specified array must
1246/// have the same number of operands as our current one.
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001247Constant *ConstantExpr::getWithOperands(ArrayRef<Constant *> Ops, Type *Ty,
1248 bool OnlyIfReduced) const {
Jay Foad5c984e562011-04-13 13:46:01 +00001249 assert(Ops.size() == getNumOperands() && "Operand count mismatch!");
Galina Kistanovafc259902012-07-13 01:25:27 +00001250
Benjamin Kramer8008e9f2015-03-02 11:57:04 +00001251 // If no operands changed return self.
1252 if (Ty == getType() && std::equal(Ops.begin(), Ops.end(), op_begin()))
Chris Lattner227816342006-07-14 22:20:01 +00001253 return const_cast<ConstantExpr*>(this);
1254
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001255 Type *OnlyIfReducedTy = OnlyIfReduced ? Ty : nullptr;
Chris Lattner227816342006-07-14 22:20:01 +00001256 switch (getOpcode()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001257 case Instruction::Trunc:
1258 case Instruction::ZExt:
1259 case Instruction::SExt:
1260 case Instruction::FPTrunc:
1261 case Instruction::FPExt:
1262 case Instruction::UIToFP:
1263 case Instruction::SIToFP:
1264 case Instruction::FPToUI:
1265 case Instruction::FPToSI:
1266 case Instruction::PtrToInt:
1267 case Instruction::IntToPtr:
1268 case Instruction::BitCast:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001269 case Instruction::AddrSpaceCast:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001270 return ConstantExpr::getCast(getOpcode(), Ops[0], Ty, OnlyIfReduced);
Chris Lattner227816342006-07-14 22:20:01 +00001271 case Instruction::Select:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001272 return ConstantExpr::getSelect(Ops[0], Ops[1], Ops[2], OnlyIfReducedTy);
Chris Lattner227816342006-07-14 22:20:01 +00001273 case Instruction::InsertElement:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001274 return ConstantExpr::getInsertElement(Ops[0], Ops[1], Ops[2],
1275 OnlyIfReducedTy);
Chris Lattner227816342006-07-14 22:20:01 +00001276 case Instruction::ExtractElement:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001277 return ConstantExpr::getExtractElement(Ops[0], Ops[1], OnlyIfReducedTy);
Chris Lattner37e38352012-01-26 20:37:11 +00001278 case Instruction::InsertValue:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001279 return ConstantExpr::getInsertValue(Ops[0], Ops[1], getIndices(),
1280 OnlyIfReducedTy);
Chris Lattner37e38352012-01-26 20:37:11 +00001281 case Instruction::ExtractValue:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001282 return ConstantExpr::getExtractValue(Ops[0], getIndices(), OnlyIfReducedTy);
Chris Lattner227816342006-07-14 22:20:01 +00001283 case Instruction::ShuffleVector:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001284 return ConstantExpr::getShuffleVector(Ops[0], Ops[1], Ops[2],
1285 OnlyIfReducedTy);
Chris Lattnerb5d70302007-02-19 20:01:23 +00001286 case Instruction::GetElementPtr:
David Blaikie4a2e73b2015-04-02 18:55:32 +00001287 return ConstantExpr::getGetElementPtr(nullptr, Ops[0], Ops.slice(1),
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001288 cast<GEPOperator>(this)->isInBounds(),
1289 OnlyIfReducedTy);
Reid Spencer266e42b2006-12-23 06:05:41 +00001290 case Instruction::ICmp:
1291 case Instruction::FCmp:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001292 return ConstantExpr::getCompare(getPredicate(), Ops[0], Ops[1],
1293 OnlyIfReducedTy);
Chris Lattner227816342006-07-14 22:20:01 +00001294 default:
1295 assert(getNumOperands() == 2 && "Must be binary operator?");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001296 return ConstantExpr::get(getOpcode(), Ops[0], Ops[1], SubclassOptionalData,
1297 OnlyIfReducedTy);
Chris Lattner7c1018a2006-07-14 19:37:40 +00001298 }
1299}
1300
Chris Lattner2f7c9632001-06-06 20:29:01 +00001301
1302//===----------------------------------------------------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +00001303// isValueValidForType implementations
1304
Chris Lattner229907c2011-07-18 04:54:35 +00001305bool ConstantInt::isValueValidForType(Type *Ty, uint64_t Val) {
Chris Lattner8326bd82012-01-26 00:42:34 +00001306 unsigned NumBits = Ty->getIntegerBitWidth(); // assert okay
1307 if (Ty->isIntegerTy(1))
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001308 return Val == 0 || Val == 1;
Reid Spencerd7a00d72007-02-05 23:47:56 +00001309 if (NumBits >= 64)
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001310 return true; // always true, has to fit in largest type
1311 uint64_t Max = (1ll << NumBits) - 1;
1312 return Val <= Max;
Reid Spencere7334722006-12-19 01:28:19 +00001313}
1314
Chris Lattner229907c2011-07-18 04:54:35 +00001315bool ConstantInt::isValueValidForType(Type *Ty, int64_t Val) {
Chris Lattner8326bd82012-01-26 00:42:34 +00001316 unsigned NumBits = Ty->getIntegerBitWidth();
1317 if (Ty->isIntegerTy(1))
Reid Spencera94d3942007-01-19 21:13:56 +00001318 return Val == 0 || Val == 1 || Val == -1;
Reid Spencerd7a00d72007-02-05 23:47:56 +00001319 if (NumBits >= 64)
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001320 return true; // always true, has to fit in largest type
1321 int64_t Min = -(1ll << (NumBits-1));
1322 int64_t Max = (1ll << (NumBits-1)) - 1;
1323 return (Val >= Min && Val <= Max);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001324}
1325
Chris Lattner229907c2011-07-18 04:54:35 +00001326bool ConstantFP::isValueValidForType(Type *Ty, const APFloat& Val) {
Dale Johannesend246b2c2007-08-30 00:23:21 +00001327 // convert modifies in place, so make a copy.
1328 APFloat Val2 = APFloat(Val);
Dale Johannesen4f0bd682008-10-09 23:00:39 +00001329 bool losesInfo;
Chris Lattner6b727592004-06-17 18:19:28 +00001330 switch (Ty->getTypeID()) {
Chris Lattner2f7c9632001-06-06 20:29:01 +00001331 default:
1332 return false; // These can't be represented as floating point!
1333
Dale Johannesend246b2c2007-08-30 00:23:21 +00001334 // FIXME rounding mode needs to be more flexible
Dan Gohman518cda42011-12-17 00:04:22 +00001335 case Type::HalfTyID: {
1336 if (&Val2.getSemantics() == &APFloat::IEEEhalf)
1337 return true;
1338 Val2.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven, &losesInfo);
1339 return !losesInfo;
1340 }
Dale Johannesen4f0bd682008-10-09 23:00:39 +00001341 case Type::FloatTyID: {
1342 if (&Val2.getSemantics() == &APFloat::IEEEsingle)
1343 return true;
1344 Val2.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven, &losesInfo);
1345 return !losesInfo;
1346 }
1347 case Type::DoubleTyID: {
Dan Gohman518cda42011-12-17 00:04:22 +00001348 if (&Val2.getSemantics() == &APFloat::IEEEhalf ||
1349 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen4f0bd682008-10-09 23:00:39 +00001350 &Val2.getSemantics() == &APFloat::IEEEdouble)
1351 return true;
1352 Val2.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, &losesInfo);
1353 return !losesInfo;
1354 }
Dale Johannesenbdad8092007-08-09 22:51:36 +00001355 case Type::X86_FP80TyID:
Dan Gohman518cda42011-12-17 00:04:22 +00001356 return &Val2.getSemantics() == &APFloat::IEEEhalf ||
1357 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen028084e2007-09-12 03:30:33 +00001358 &Val2.getSemantics() == &APFloat::IEEEdouble ||
1359 &Val2.getSemantics() == &APFloat::x87DoubleExtended;
Dale Johannesenbdad8092007-08-09 22:51:36 +00001360 case Type::FP128TyID:
Dan Gohman518cda42011-12-17 00:04:22 +00001361 return &Val2.getSemantics() == &APFloat::IEEEhalf ||
1362 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen028084e2007-09-12 03:30:33 +00001363 &Val2.getSemantics() == &APFloat::IEEEdouble ||
1364 &Val2.getSemantics() == &APFloat::IEEEquad;
Dale Johannesen007aa372007-10-11 18:07:22 +00001365 case Type::PPC_FP128TyID:
Dan Gohman518cda42011-12-17 00:04:22 +00001366 return &Val2.getSemantics() == &APFloat::IEEEhalf ||
1367 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen007aa372007-10-11 18:07:22 +00001368 &Val2.getSemantics() == &APFloat::IEEEdouble ||
1369 &Val2.getSemantics() == &APFloat::PPCDoubleDouble;
Chris Lattner2f7c9632001-06-06 20:29:01 +00001370 }
Chris Lattneraa2372562006-05-24 17:04:05 +00001371}
Chris Lattner9655e542001-07-20 19:16:02 +00001372
Chris Lattner030af792012-01-24 05:42:11 +00001373
Chris Lattner49d855c2001-09-07 16:46:31 +00001374//===----------------------------------------------------------------------===//
Chris Lattner49d855c2001-09-07 16:46:31 +00001375// Factory Function Implementation
1376
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001377ConstantAggregateZero *ConstantAggregateZero::get(Type *Ty) {
Chris Lattner13ee7952010-08-28 04:09:24 +00001378 assert((Ty->isStructTy() || Ty->isArrayTy() || Ty->isVectorTy()) &&
Owen Andersonb292b8c2009-07-30 23:03:37 +00001379 "Cannot create an aggregate zero of non-aggregate type!");
David Blaikiecb2818f2014-11-25 02:26:22 +00001380
1381 ConstantAggregateZero *&Entry = Ty->getContext().pImpl->CAZConstants[Ty];
David Blaikie899b85a2014-11-25 02:13:54 +00001382 if (!Entry)
David Blaikiecb2818f2014-11-25 02:26:22 +00001383 Entry = new ConstantAggregateZero(Ty);
David Blaikie899b85a2014-11-25 02:13:54 +00001384
David Blaikiecb2818f2014-11-25 02:26:22 +00001385 return Entry;
Owen Andersonb292b8c2009-07-30 23:03:37 +00001386}
1387
Chris Lattner030af792012-01-24 05:42:11 +00001388/// destroyConstant - Remove the constant from the constant table.
Dan Gohman92b551b2009-03-03 02:55:14 +00001389///
Pete Cooper86dd4cf2015-06-23 21:55:11 +00001390void ConstantAggregateZero::destroyConstantImpl() {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001391 getContext().pImpl->CAZConstants.erase(getType());
Chris Lattner9fba3da2004-02-15 05:53:04 +00001392}
1393
Dan Gohman92b551b2009-03-03 02:55:14 +00001394/// destroyConstant - Remove the constant from the constant table...
1395///
Pete Cooper86dd4cf2015-06-23 21:55:11 +00001396void ConstantArray::destroyConstantImpl() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001397 getType()->getContext().pImpl->ArrayConstants.remove(this);
Chris Lattner98fa07b2003-05-23 20:03:32 +00001398}
1399
Chris Lattner81fabb02002-08-26 17:53:56 +00001400
Chris Lattner3462ae32001-12-03 22:26:30 +00001401//---- ConstantStruct::get() implementation...
Chris Lattner49d855c2001-09-07 16:46:31 +00001402//
Chris Lattnerb50d1352003-10-05 00:17:43 +00001403
Chris Lattnerd7a73302001-10-13 06:57:33 +00001404// destroyConstant - Remove the constant from the constant table...
Chris Lattner883ad0b2001-10-03 15:39:36 +00001405//
Pete Cooper86dd4cf2015-06-23 21:55:11 +00001406void ConstantStruct::destroyConstantImpl() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001407 getType()->getContext().pImpl->StructConstants.remove(this);
Chris Lattnerd7a73302001-10-13 06:57:33 +00001408}
Chris Lattner883ad0b2001-10-03 15:39:36 +00001409
Brian Gaeke02209042004-08-20 06:00:58 +00001410// destroyConstant - Remove the constant from the constant table...
1411//
Pete Cooper86dd4cf2015-06-23 21:55:11 +00001412void ConstantVector::destroyConstantImpl() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001413 getType()->getContext().pImpl->VectorConstants.remove(this);
Brian Gaeke02209042004-08-20 06:00:58 +00001414}
1415
Duncan Sandse6beec62012-11-13 12:59:33 +00001416/// getSplatValue - If this is a splat vector constant, meaning that all of
1417/// the elements have the same value, return that value. Otherwise return 0.
1418Constant *Constant::getSplatValue() const {
1419 assert(this->getType()->isVectorTy() && "Only valid for vectors!");
1420 if (isa<ConstantAggregateZero>(this))
1421 return getNullValue(this->getType()->getVectorElementType());
1422 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this))
1423 return CV->getSplatValue();
1424 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
1425 return CV->getSplatValue();
Craig Topperc6207612014-04-09 06:08:46 +00001426 return nullptr;
Duncan Sandse6beec62012-11-13 12:59:33 +00001427}
1428
Dan Gohman07159202007-10-17 17:51:30 +00001429/// getSplatValue - If this is a splat constant, where all of the
1430/// elements have the same value, return that value. Otherwise return null.
Duncan Sandscf0ff032011-02-01 08:39:12 +00001431Constant *ConstantVector::getSplatValue() const {
Dan Gohman07159202007-10-17 17:51:30 +00001432 // Check out first element.
1433 Constant *Elt = getOperand(0);
1434 // Then make sure all remaining elements point to the same value.
1435 for (unsigned I = 1, E = getNumOperands(); I < E; ++I)
Chris Lattnerd04e32d2011-07-17 06:01:30 +00001436 if (getOperand(I) != Elt)
Craig Topperc6207612014-04-09 06:08:46 +00001437 return nullptr;
Dan Gohman07159202007-10-17 17:51:30 +00001438 return Elt;
1439}
1440
Duncan Sandse6beec62012-11-13 12:59:33 +00001441/// If C is a constant integer then return its value, otherwise C must be a
1442/// vector of constant integers, all equal, and the common value is returned.
1443const APInt &Constant::getUniqueInteger() const {
1444 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
1445 return CI->getValue();
1446 assert(this->getSplatValue() && "Doesn't contain a unique integer!");
1447 const Constant *C = this->getAggregateElement(0U);
1448 assert(C && isa<ConstantInt>(C) && "Not a vector of numbers!");
1449 return cast<ConstantInt>(C)->getValue();
1450}
1451
Chris Lattner31b132c2009-10-28 00:01:44 +00001452//---- ConstantPointerNull::get() implementation.
Chris Lattnerd7a73302001-10-13 06:57:33 +00001453//
Chris Lattner98fa07b2003-05-23 20:03:32 +00001454
Chris Lattner229907c2011-07-18 04:54:35 +00001455ConstantPointerNull *ConstantPointerNull::get(PointerType *Ty) {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001456 ConstantPointerNull *&Entry = Ty->getContext().pImpl->CPNConstants[Ty];
Craig Topperc6207612014-04-09 06:08:46 +00001457 if (!Entry)
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001458 Entry = new ConstantPointerNull(Ty);
Galina Kistanovafc259902012-07-13 01:25:27 +00001459
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001460 return Entry;
Chris Lattner883ad0b2001-10-03 15:39:36 +00001461}
1462
Chris Lattner0c6e0b92002-08-18 00:40:04 +00001463// destroyConstant - Remove the constant from the constant table...
1464//
Pete Cooper86dd4cf2015-06-23 21:55:11 +00001465void ConstantPointerNull::destroyConstantImpl() {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001466 getContext().pImpl->CPNConstants.erase(getType());
Chris Lattner0c6e0b92002-08-18 00:40:04 +00001467}
1468
1469
Chris Lattner31b132c2009-10-28 00:01:44 +00001470//---- UndefValue::get() implementation.
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001471//
1472
Chris Lattner229907c2011-07-18 04:54:35 +00001473UndefValue *UndefValue::get(Type *Ty) {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001474 UndefValue *&Entry = Ty->getContext().pImpl->UVConstants[Ty];
Craig Topperc6207612014-04-09 06:08:46 +00001475 if (!Entry)
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001476 Entry = new UndefValue(Ty);
Galina Kistanovafc259902012-07-13 01:25:27 +00001477
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001478 return Entry;
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001479}
1480
1481// destroyConstant - Remove the constant from the constant table.
1482//
Pete Cooper86dd4cf2015-06-23 21:55:11 +00001483void UndefValue::destroyConstantImpl() {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001484 // Free the constant and any dangling references to it.
1485 getContext().pImpl->UVConstants.erase(getType());
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001486}
1487
Chris Lattner31b132c2009-10-28 00:01:44 +00001488//---- BlockAddress::get() implementation.
1489//
1490
1491BlockAddress *BlockAddress::get(BasicBlock *BB) {
Craig Topper2617dcc2014-04-15 06:32:26 +00001492 assert(BB->getParent() && "Block must have a parent");
Chris Lattner31b132c2009-10-28 00:01:44 +00001493 return get(BB->getParent(), BB);
1494}
1495
1496BlockAddress *BlockAddress::get(Function *F, BasicBlock *BB) {
1497 BlockAddress *&BA =
1498 F->getContext().pImpl->BlockAddresses[std::make_pair(F, BB)];
Craig Topperc6207612014-04-09 06:08:46 +00001499 if (!BA)
Chris Lattner31b132c2009-10-28 00:01:44 +00001500 BA = new BlockAddress(F, BB);
Galina Kistanovafc259902012-07-13 01:25:27 +00001501
Chris Lattner31b132c2009-10-28 00:01:44 +00001502 assert(BA->getFunction() == F && "Basic block moved between functions");
1503 return BA;
1504}
1505
1506BlockAddress::BlockAddress(Function *F, BasicBlock *BB)
1507: Constant(Type::getInt8PtrTy(F->getContext()), Value::BlockAddressVal,
1508 &Op<0>(), 2) {
Chris Lattnerc559a9f2009-11-01 03:03:03 +00001509 setOperand(0, F);
1510 setOperand(1, BB);
Chris Lattneraa99c942009-11-01 01:27:45 +00001511 BB->AdjustBlockAddressRefCount(1);
Chris Lattner31b132c2009-10-28 00:01:44 +00001512}
1513
Chandler Carruth6a936922014-01-19 02:13:50 +00001514BlockAddress *BlockAddress::lookup(const BasicBlock *BB) {
1515 if (!BB->hasAddressTaken())
Craig Topperc6207612014-04-09 06:08:46 +00001516 return nullptr;
Chandler Carruth6a936922014-01-19 02:13:50 +00001517
1518 const Function *F = BB->getParent();
Craig Topper2617dcc2014-04-15 06:32:26 +00001519 assert(F && "Block must have a parent");
Chandler Carruth6a936922014-01-19 02:13:50 +00001520 BlockAddress *BA =
1521 F->getContext().pImpl->BlockAddresses.lookup(std::make_pair(F, BB));
1522 assert(BA && "Refcount and block address map disagree!");
1523 return BA;
1524}
Chris Lattner31b132c2009-10-28 00:01:44 +00001525
1526// destroyConstant - Remove the constant from the constant table.
1527//
Pete Cooper86dd4cf2015-06-23 21:55:11 +00001528void BlockAddress::destroyConstantImpl() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001529 getFunction()->getType()->getContext().pImpl
Chris Lattner31b132c2009-10-28 00:01:44 +00001530 ->BlockAddresses.erase(std::make_pair(getFunction(), getBasicBlock()));
Chris Lattneraa99c942009-11-01 01:27:45 +00001531 getBasicBlock()->AdjustBlockAddressRefCount(-1);
Chris Lattner31b132c2009-10-28 00:01:44 +00001532}
1533
Pete Cooper5815b1f2015-06-24 18:55:24 +00001534Value *BlockAddress::handleOperandChangeImpl(Value *From, Value *To, Use *U) {
Chris Lattner31b132c2009-10-28 00:01:44 +00001535 // This could be replacing either the Basic Block or the Function. In either
1536 // case, we have to remove the map entry.
1537 Function *NewF = getFunction();
1538 BasicBlock *NewBB = getBasicBlock();
Galina Kistanovafc259902012-07-13 01:25:27 +00001539
Chris Lattner31b132c2009-10-28 00:01:44 +00001540 if (U == &Op<0>())
Derek Schuffec9dc012013-06-13 19:51:17 +00001541 NewF = cast<Function>(To->stripPointerCasts());
Chris Lattner31b132c2009-10-28 00:01:44 +00001542 else
1543 NewBB = cast<BasicBlock>(To);
Galina Kistanovafc259902012-07-13 01:25:27 +00001544
Chris Lattner31b132c2009-10-28 00:01:44 +00001545 // See if the 'new' entry already exists, if not, just update this in place
1546 // and return early.
1547 BlockAddress *&NewBA =
1548 getContext().pImpl->BlockAddresses[std::make_pair(NewF, NewBB)];
Pete Cooper5815b1f2015-06-24 18:55:24 +00001549 if (NewBA)
1550 return NewBA;
Chris Lattner31b132c2009-10-28 00:01:44 +00001551
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00001552 getBasicBlock()->AdjustBlockAddressRefCount(-1);
Galina Kistanovafc259902012-07-13 01:25:27 +00001553
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00001554 // Remove the old entry, this can't cause the map to rehash (just a
1555 // tombstone will get added).
1556 getContext().pImpl->BlockAddresses.erase(std::make_pair(getFunction(),
1557 getBasicBlock()));
1558 NewBA = this;
1559 setOperand(0, NewF);
1560 setOperand(1, NewBB);
1561 getBasicBlock()->AdjustBlockAddressRefCount(1);
Pete Cooper5815b1f2015-06-24 18:55:24 +00001562
1563 // If we just want to keep the existing value, then return null.
1564 // Callers know that this means we shouldn't delete this value.
1565 return nullptr;
Chris Lattner31b132c2009-10-28 00:01:44 +00001566}
1567
1568//---- ConstantExpr::get() implementations.
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001569//
Reid Spencer8d9336d2006-12-31 05:26:44 +00001570
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001571/// This is a utility function to handle folding of casts and lookup of the
Duncan Sands7d6c8ae2008-03-30 19:38:55 +00001572/// cast in the ExprConstants map. It is used by the various get* methods below.
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001573static Constant *getFoldedCast(Instruction::CastOps opc, Constant *C, Type *Ty,
1574 bool OnlyIfReduced = false) {
Chris Lattner815ae2b2003-10-07 22:19:19 +00001575 assert(Ty->isFirstClassType() && "Cannot cast to an aggregate type!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001576 // Fold a few common cases
Chris Lattnerf5edeeb2010-02-01 20:48:08 +00001577 if (Constant *FC = ConstantFoldCastInstruction(opc, C, Ty))
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001578 return FC;
Chris Lattneracdbe712003-04-17 19:24:48 +00001579
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001580 if (OnlyIfReduced)
1581 return nullptr;
1582
Owen Anderson1584a292009-08-04 20:25:11 +00001583 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
1584
Nadav Rotem88330432013-03-07 01:30:40 +00001585 // Look up the constant in the table first to ensure uniqueness.
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00001586 ConstantExprKeyType Key(opc, C);
Galina Kistanovafc259902012-07-13 01:25:27 +00001587
Owen Anderson1584a292009-08-04 20:25:11 +00001588 return pImpl->ExprConstants.getOrCreate(Ty, Key);
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001589}
Galina Kistanovafc259902012-07-13 01:25:27 +00001590
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001591Constant *ConstantExpr::getCast(unsigned oc, Constant *C, Type *Ty,
1592 bool OnlyIfReduced) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001593 Instruction::CastOps opc = Instruction::CastOps(oc);
1594 assert(Instruction::isCast(opc) && "opcode out of range");
1595 assert(C && Ty && "Null arguments to getCast");
Chris Lattner37bc78a2010-01-26 21:51:43 +00001596 assert(CastInst::castIsValid(opc, C, Ty) && "Invalid constantexpr cast!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001597
1598 switch (opc) {
Chris Lattner37bc78a2010-01-26 21:51:43 +00001599 default:
1600 llvm_unreachable("Invalid cast opcode");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001601 case Instruction::Trunc:
1602 return getTrunc(C, Ty, OnlyIfReduced);
1603 case Instruction::ZExt:
1604 return getZExt(C, Ty, OnlyIfReduced);
1605 case Instruction::SExt:
1606 return getSExt(C, Ty, OnlyIfReduced);
1607 case Instruction::FPTrunc:
1608 return getFPTrunc(C, Ty, OnlyIfReduced);
1609 case Instruction::FPExt:
1610 return getFPExtend(C, Ty, OnlyIfReduced);
1611 case Instruction::UIToFP:
1612 return getUIToFP(C, Ty, OnlyIfReduced);
1613 case Instruction::SIToFP:
1614 return getSIToFP(C, Ty, OnlyIfReduced);
1615 case Instruction::FPToUI:
1616 return getFPToUI(C, Ty, OnlyIfReduced);
1617 case Instruction::FPToSI:
1618 return getFPToSI(C, Ty, OnlyIfReduced);
1619 case Instruction::PtrToInt:
1620 return getPtrToInt(C, Ty, OnlyIfReduced);
1621 case Instruction::IntToPtr:
1622 return getIntToPtr(C, Ty, OnlyIfReduced);
1623 case Instruction::BitCast:
1624 return getBitCast(C, Ty, OnlyIfReduced);
1625 case Instruction::AddrSpaceCast:
1626 return getAddrSpaceCast(C, Ty, OnlyIfReduced);
Chris Lattner1ece6f82005-01-01 15:59:57 +00001627 }
Galina Kistanovafc259902012-07-13 01:25:27 +00001628}
Reid Spencerf37dc652006-12-05 19:14:13 +00001629
Chris Lattner229907c2011-07-18 04:54:35 +00001630Constant *ConstantExpr::getZExtOrBitCast(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001631 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001632 return getBitCast(C, Ty);
1633 return getZExt(C, Ty);
Reid Spencer5c140882006-12-04 20:17:56 +00001634}
1635
Chris Lattner229907c2011-07-18 04:54:35 +00001636Constant *ConstantExpr::getSExtOrBitCast(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001637 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001638 return getBitCast(C, Ty);
1639 return getSExt(C, Ty);
Reid Spencer5c140882006-12-04 20:17:56 +00001640}
1641
Chris Lattner229907c2011-07-18 04:54:35 +00001642Constant *ConstantExpr::getTruncOrBitCast(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001643 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001644 return getBitCast(C, Ty);
1645 return getTrunc(C, Ty);
Reid Spencer5c140882006-12-04 20:17:56 +00001646}
1647
Chris Lattner229907c2011-07-18 04:54:35 +00001648Constant *ConstantExpr::getPointerCast(Constant *S, Type *Ty) {
Evgeniy Stepanov23382642013-01-16 14:41:46 +00001649 assert(S->getType()->isPtrOrPtrVectorTy() && "Invalid cast");
1650 assert((Ty->isIntOrIntVectorTy() || Ty->isPtrOrPtrVectorTy()) &&
1651 "Invalid cast");
Reid Spencerbc245a02006-12-05 03:25:26 +00001652
Evgeniy Stepanov23382642013-01-16 14:41:46 +00001653 if (Ty->isIntOrIntVectorTy())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001654 return getPtrToInt(S, Ty);
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001655
1656 unsigned SrcAS = S->getType()->getPointerAddressSpace();
1657 if (Ty->isPtrOrPtrVectorTy() && SrcAS != Ty->getPointerAddressSpace())
1658 return getAddrSpaceCast(S, Ty);
1659
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001660 return getBitCast(S, Ty);
Reid Spencerbc245a02006-12-05 03:25:26 +00001661}
1662
Matt Arsenault21f38f42013-12-07 02:58:41 +00001663Constant *ConstantExpr::getPointerBitCastOrAddrSpaceCast(Constant *S,
1664 Type *Ty) {
1665 assert(S->getType()->isPtrOrPtrVectorTy() && "Invalid cast");
1666 assert(Ty->isPtrOrPtrVectorTy() && "Invalid cast");
1667
1668 if (S->getType()->getPointerAddressSpace() != Ty->getPointerAddressSpace())
1669 return getAddrSpaceCast(S, Ty);
1670
1671 return getBitCast(S, Ty);
1672}
1673
1674Constant *ConstantExpr::getIntegerCast(Constant *C, Type *Ty,
Reid Spencer56521c42006-12-12 00:51:07 +00001675 bool isSigned) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001676 assert(C->getType()->isIntOrIntVectorTy() &&
1677 Ty->isIntOrIntVectorTy() && "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001678 unsigned SrcBits = C->getType()->getScalarSizeInBits();
1679 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer56521c42006-12-12 00:51:07 +00001680 Instruction::CastOps opcode =
1681 (SrcBits == DstBits ? Instruction::BitCast :
1682 (SrcBits > DstBits ? Instruction::Trunc :
1683 (isSigned ? Instruction::SExt : Instruction::ZExt)));
1684 return getCast(opcode, C, Ty);
1685}
1686
Chris Lattner229907c2011-07-18 04:54:35 +00001687Constant *ConstantExpr::getFPCast(Constant *C, Type *Ty) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001688 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer56521c42006-12-12 00:51:07 +00001689 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001690 unsigned SrcBits = C->getType()->getScalarSizeInBits();
1691 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencerca104e82006-12-12 05:38:50 +00001692 if (SrcBits == DstBits)
1693 return C; // Avoid a useless cast
Reid Spencer56521c42006-12-12 00:51:07 +00001694 Instruction::CastOps opcode =
Jay Foad9f32cfd2011-01-27 14:44:55 +00001695 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt);
Reid Spencer56521c42006-12-12 00:51:07 +00001696 return getCast(opcode, C, Ty);
1697}
1698
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001699Constant *ConstantExpr::getTrunc(Constant *C, Type *Ty, bool OnlyIfReduced) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001700#ifndef NDEBUG
1701 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1702 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1703#endif
1704 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001705 assert(C->getType()->isIntOrIntVectorTy() && "Trunc operand must be integer");
1706 assert(Ty->isIntOrIntVectorTy() && "Trunc produces only integral");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001707 assert(C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001708 "SrcTy must be larger than DestTy for Trunc!");
1709
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001710 return getFoldedCast(Instruction::Trunc, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001711}
1712
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001713Constant *ConstantExpr::getSExt(Constant *C, Type *Ty, bool OnlyIfReduced) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001714#ifndef NDEBUG
1715 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1716 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1717#endif
1718 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001719 assert(C->getType()->isIntOrIntVectorTy() && "SExt operand must be integral");
1720 assert(Ty->isIntOrIntVectorTy() && "SExt produces only integer");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001721 assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001722 "SrcTy must be smaller than DestTy for SExt!");
1723
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001724 return getFoldedCast(Instruction::SExt, C, Ty, OnlyIfReduced);
Chris Lattnerdd284742004-04-04 23:20:30 +00001725}
1726
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001727Constant *ConstantExpr::getZExt(Constant *C, Type *Ty, bool OnlyIfReduced) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001728#ifndef NDEBUG
1729 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1730 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1731#endif
1732 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001733 assert(C->getType()->isIntOrIntVectorTy() && "ZEXt operand must be integral");
1734 assert(Ty->isIntOrIntVectorTy() && "ZExt produces only integer");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001735 assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001736 "SrcTy must be smaller than DestTy for ZExt!");
1737
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001738 return getFoldedCast(Instruction::ZExt, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001739}
1740
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001741Constant *ConstantExpr::getFPTrunc(Constant *C, Type *Ty, bool OnlyIfReduced) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001742#ifndef NDEBUG
1743 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1744 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1745#endif
1746 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001747 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001748 C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001749 "This is an illegal floating point truncation!");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001750 return getFoldedCast(Instruction::FPTrunc, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001751}
1752
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001753Constant *ConstantExpr::getFPExtend(Constant *C, Type *Ty, bool OnlyIfReduced) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001754#ifndef NDEBUG
1755 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1756 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1757#endif
1758 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001759 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001760 C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001761 "This is an illegal floating point extension!");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001762 return getFoldedCast(Instruction::FPExt, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001763}
1764
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001765Constant *ConstantExpr::getUIToFP(Constant *C, Type *Ty, bool OnlyIfReduced) {
Devang Pateld26344d2008-11-03 23:20:04 +00001766#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001767 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1768 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001769#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001770 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001771 assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00001772 "This is an illegal uint to floating point cast!");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001773 return getFoldedCast(Instruction::UIToFP, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001774}
1775
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001776Constant *ConstantExpr::getSIToFP(Constant *C, Type *Ty, bool OnlyIfReduced) {
Devang Pateld26344d2008-11-03 23:20:04 +00001777#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001778 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1779 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001780#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001781 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001782 assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001783 "This is an illegal sint to floating point cast!");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001784 return getFoldedCast(Instruction::SIToFP, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001785}
1786
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001787Constant *ConstantExpr::getFPToUI(Constant *C, Type *Ty, bool OnlyIfReduced) {
Devang Pateld26344d2008-11-03 23:20:04 +00001788#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001789 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1790 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001791#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001792 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001793 assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00001794 "This is an illegal floating point to uint cast!");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001795 return getFoldedCast(Instruction::FPToUI, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001796}
1797
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001798Constant *ConstantExpr::getFPToSI(Constant *C, Type *Ty, bool OnlyIfReduced) {
Devang Pateld26344d2008-11-03 23:20:04 +00001799#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001800 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1801 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001802#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001803 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001804 assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00001805 "This is an illegal floating point to sint cast!");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001806 return getFoldedCast(Instruction::FPToSI, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001807}
1808
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001809Constant *ConstantExpr::getPtrToInt(Constant *C, Type *DstTy,
1810 bool OnlyIfReduced) {
Nadav Rotem3924cb02011-12-05 06:29:09 +00001811 assert(C->getType()->getScalarType()->isPointerTy() &&
1812 "PtrToInt source must be pointer or pointer vector");
1813 assert(DstTy->getScalarType()->isIntegerTy() &&
1814 "PtrToInt destination must be integer or integer vector");
Chris Lattner8a3df542012-01-25 01:32:59 +00001815 assert(isa<VectorType>(C->getType()) == isa<VectorType>(DstTy));
Nick Lewyckyff509622012-01-25 03:20:12 +00001816 if (isa<VectorType>(C->getType()))
Chris Lattner8326bd82012-01-26 00:42:34 +00001817 assert(C->getType()->getVectorNumElements()==DstTy->getVectorNumElements()&&
Chris Lattner8a3df542012-01-25 01:32:59 +00001818 "Invalid cast between a different number of vector elements");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001819 return getFoldedCast(Instruction::PtrToInt, C, DstTy, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001820}
1821
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001822Constant *ConstantExpr::getIntToPtr(Constant *C, Type *DstTy,
1823 bool OnlyIfReduced) {
Nadav Rotem3924cb02011-12-05 06:29:09 +00001824 assert(C->getType()->getScalarType()->isIntegerTy() &&
1825 "IntToPtr source must be integer or integer vector");
1826 assert(DstTy->getScalarType()->isPointerTy() &&
1827 "IntToPtr destination must be a pointer or pointer vector");
Chris Lattner8a3df542012-01-25 01:32:59 +00001828 assert(isa<VectorType>(C->getType()) == isa<VectorType>(DstTy));
Nick Lewyckyff509622012-01-25 03:20:12 +00001829 if (isa<VectorType>(C->getType()))
Chris Lattner8326bd82012-01-26 00:42:34 +00001830 assert(C->getType()->getVectorNumElements()==DstTy->getVectorNumElements()&&
Chris Lattner8a3df542012-01-25 01:32:59 +00001831 "Invalid cast between a different number of vector elements");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001832 return getFoldedCast(Instruction::IntToPtr, C, DstTy, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001833}
1834
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001835Constant *ConstantExpr::getBitCast(Constant *C, Type *DstTy,
1836 bool OnlyIfReduced) {
Chris Lattner37bc78a2010-01-26 21:51:43 +00001837 assert(CastInst::castIsValid(Instruction::BitCast, C, DstTy) &&
1838 "Invalid constantexpr bitcast!");
Galina Kistanovafc259902012-07-13 01:25:27 +00001839
Chris Lattnercbeda872009-03-21 06:55:54 +00001840 // It is common to ask for a bitcast of a value to its own type, handle this
1841 // speedily.
1842 if (C->getType() == DstTy) return C;
Galina Kistanovafc259902012-07-13 01:25:27 +00001843
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001844 return getFoldedCast(Instruction::BitCast, C, DstTy, OnlyIfReduced);
Chris Lattnerdd284742004-04-04 23:20:30 +00001845}
1846
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001847Constant *ConstantExpr::getAddrSpaceCast(Constant *C, Type *DstTy,
1848 bool OnlyIfReduced) {
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001849 assert(CastInst::castIsValid(Instruction::AddrSpaceCast, C, DstTy) &&
1850 "Invalid constantexpr addrspacecast!");
1851
Jingyue Wubaabe502014-06-15 21:40:57 +00001852 // Canonicalize addrspacecasts between different pointer types by first
1853 // bitcasting the pointer type and then converting the address space.
1854 PointerType *SrcScalarTy = cast<PointerType>(C->getType()->getScalarType());
1855 PointerType *DstScalarTy = cast<PointerType>(DstTy->getScalarType());
1856 Type *DstElemTy = DstScalarTy->getElementType();
1857 if (SrcScalarTy->getElementType() != DstElemTy) {
1858 Type *MidTy = PointerType::get(DstElemTy, SrcScalarTy->getAddressSpace());
1859 if (VectorType *VT = dyn_cast<VectorType>(DstTy)) {
1860 // Handle vectors of pointers.
1861 MidTy = VectorType::get(MidTy, VT->getNumElements());
1862 }
1863 C = getBitCast(C, MidTy);
1864 }
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001865 return getFoldedCast(Instruction::AddrSpaceCast, C, DstTy, OnlyIfReduced);
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001866}
1867
Chris Lattner887ecac2011-07-09 18:23:52 +00001868Constant *ConstantExpr::get(unsigned Opcode, Constant *C1, Constant *C2,
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001869 unsigned Flags, Type *OnlyIfReducedTy) {
Chris Lattner887ecac2011-07-09 18:23:52 +00001870 // Check the operands for consistency first.
Reid Spencer7eb55b32006-11-02 01:53:59 +00001871 assert(Opcode >= Instruction::BinaryOpsBegin &&
1872 Opcode < Instruction::BinaryOpsEnd &&
Chris Lattner38a9bcd2003-05-21 17:49:25 +00001873 "Invalid opcode in binary constant expression");
1874 assert(C1->getType() == C2->getType() &&
1875 "Operand types in binary constant expression should match");
Galina Kistanovafc259902012-07-13 01:25:27 +00001876
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001877#ifndef NDEBUG
1878 switch (Opcode) {
Dan Gohmana5b96452009-06-04 22:49:04 +00001879 case Instruction::Add:
Reid Spencer7eb55b32006-11-02 01:53:59 +00001880 case Instruction::Sub:
Dan Gohmana5b96452009-06-04 22:49:04 +00001881 case Instruction::Mul:
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001882 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001883 assert(C1->getType()->isIntOrIntVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001884 "Tried to create an integer operation on a non-integer type!");
1885 break;
1886 case Instruction::FAdd:
1887 case Instruction::FSub:
1888 case Instruction::FMul:
1889 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001890 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001891 "Tried to create a floating-point operation on a "
1892 "non-floating-point type!");
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001893 break;
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001894 case Instruction::UDiv:
1895 case Instruction::SDiv:
1896 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001897 assert(C1->getType()->isIntOrIntVectorTy() &&
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001898 "Tried to create an arithmetic operation on a non-arithmetic type!");
1899 break;
1900 case Instruction::FDiv:
1901 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001902 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001903 "Tried to create an arithmetic operation on a non-arithmetic type!");
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001904 break;
Reid Spencer7eb55b32006-11-02 01:53:59 +00001905 case Instruction::URem:
1906 case Instruction::SRem:
1907 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001908 assert(C1->getType()->isIntOrIntVectorTy() &&
Reid Spencer7eb55b32006-11-02 01:53:59 +00001909 "Tried to create an arithmetic operation on a non-arithmetic type!");
1910 break;
1911 case Instruction::FRem:
1912 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001913 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001914 "Tried to create an arithmetic operation on a non-arithmetic type!");
Reid Spencer7eb55b32006-11-02 01:53:59 +00001915 break;
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001916 case Instruction::And:
1917 case Instruction::Or:
1918 case Instruction::Xor:
1919 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001920 assert(C1->getType()->isIntOrIntVectorTy() &&
Misha Brukman3852f652005-01-27 06:46:38 +00001921 "Tried to create a logical operation on a non-integral type!");
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001922 break;
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001923 case Instruction::Shl:
Reid Spencerfdff9382006-11-08 06:47:33 +00001924 case Instruction::LShr:
1925 case Instruction::AShr:
Reid Spencer2341c222007-02-02 02:16:23 +00001926 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001927 assert(C1->getType()->isIntOrIntVectorTy() &&
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001928 "Tried to create a shift operation on a non-integer type!");
1929 break;
1930 default:
1931 break;
1932 }
1933#endif
1934
Chris Lattner887ecac2011-07-09 18:23:52 +00001935 if (Constant *FC = ConstantFoldBinaryInstruction(Opcode, C1, C2))
1936 return FC; // Fold a few common cases.
Galina Kistanovafc259902012-07-13 01:25:27 +00001937
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001938 if (OnlyIfReducedTy == C1->getType())
1939 return nullptr;
1940
Benjamin Kramer324322b2013-03-07 20:53:34 +00001941 Constant *ArgVec[] = { C1, C2 };
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00001942 ConstantExprKeyType Key(Opcode, ArgVec, 0, Flags);
Galina Kistanovafc259902012-07-13 01:25:27 +00001943
Chris Lattner887ecac2011-07-09 18:23:52 +00001944 LLVMContextImpl *pImpl = C1->getContext().pImpl;
1945 return pImpl->ExprConstants.getOrCreate(C1->getType(), Key);
Reid Spencera009d0d2006-12-04 21:35:24 +00001946}
1947
Chris Lattner229907c2011-07-18 04:54:35 +00001948Constant *ConstantExpr::getSizeOf(Type* Ty) {
Owen Anderson487375e2009-07-29 18:55:55 +00001949 // sizeof is implemented as: (i64) gep (Ty*)null, 1
1950 // Note that a non-inbounds gep is used, as null isn't within any object.
Owen Anderson55f1c092009-08-13 21:58:54 +00001951 Constant *GEPIdx = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
Owen Anderson487375e2009-07-29 18:55:55 +00001952 Constant *GEP = getGetElementPtr(
David Blaikie4a2e73b2015-04-02 18:55:32 +00001953 Ty, Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx);
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001954 return getPtrToInt(GEP,
1955 Type::getInt64Ty(Ty->getContext()));
Owen Anderson487375e2009-07-29 18:55:55 +00001956}
1957
Chris Lattner229907c2011-07-18 04:54:35 +00001958Constant *ConstantExpr::getAlignOf(Type* Ty) {
Dan Gohmancf913832010-01-28 02:15:55 +00001959 // alignof is implemented as: (i64) gep ({i1,Ty}*)null, 0, 1
Dan Gohman50c09d02009-08-11 17:57:01 +00001960 // Note that a non-inbounds gep is used, as null isn't within any object.
Chris Lattner229907c2011-07-18 04:54:35 +00001961 Type *AligningTy =
Reid Kleckner971c3ea2014-11-13 22:55:19 +00001962 StructType::get(Type::getInt1Ty(Ty->getContext()), Ty, nullptr);
Matt Arsenaultbe558882014-04-23 20:58:57 +00001963 Constant *NullPtr = Constant::getNullValue(AligningTy->getPointerTo(0));
Dan Gohmana9be7392010-01-28 02:43:22 +00001964 Constant *Zero = ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0);
Owen Anderson55f1c092009-08-13 21:58:54 +00001965 Constant *One = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
Owen Anderson487375e2009-07-29 18:55:55 +00001966 Constant *Indices[2] = { Zero, One };
David Blaikie4a2e73b2015-04-02 18:55:32 +00001967 Constant *GEP = getGetElementPtr(AligningTy, NullPtr, Indices);
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001968 return getPtrToInt(GEP,
1969 Type::getInt64Ty(Ty->getContext()));
Owen Anderson487375e2009-07-29 18:55:55 +00001970}
1971
Chris Lattner229907c2011-07-18 04:54:35 +00001972Constant *ConstantExpr::getOffsetOf(StructType* STy, unsigned FieldNo) {
Dan Gohmanede94e62010-02-01 16:37:38 +00001973 return getOffsetOf(STy, ConstantInt::get(Type::getInt32Ty(STy->getContext()),
1974 FieldNo));
1975}
1976
Chris Lattner229907c2011-07-18 04:54:35 +00001977Constant *ConstantExpr::getOffsetOf(Type* Ty, Constant *FieldNo) {
Dan Gohmanff3af7252009-08-16 21:26:11 +00001978 // offsetof is implemented as: (i64) gep (Ty*)null, 0, FieldNo
1979 // Note that a non-inbounds gep is used, as null isn't within any object.
1980 Constant *GEPIdx[] = {
Dan Gohmanede94e62010-02-01 16:37:38 +00001981 ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0),
1982 FieldNo
Dan Gohmanff3af7252009-08-16 21:26:11 +00001983 };
1984 Constant *GEP = getGetElementPtr(
David Blaikie4a2e73b2015-04-02 18:55:32 +00001985 Ty, Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx);
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001986 return getPtrToInt(GEP,
1987 Type::getInt64Ty(Ty->getContext()));
Dan Gohmanff3af7252009-08-16 21:26:11 +00001988}
Owen Anderson487375e2009-07-29 18:55:55 +00001989
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001990Constant *ConstantExpr::getCompare(unsigned short Predicate, Constant *C1,
1991 Constant *C2, bool OnlyIfReduced) {
Reid Spencera009d0d2006-12-04 21:35:24 +00001992 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Galina Kistanovafc259902012-07-13 01:25:27 +00001993
Chris Lattner887ecac2011-07-09 18:23:52 +00001994 switch (Predicate) {
1995 default: llvm_unreachable("Invalid CmpInst predicate");
1996 case CmpInst::FCMP_FALSE: case CmpInst::FCMP_OEQ: case CmpInst::FCMP_OGT:
1997 case CmpInst::FCMP_OGE: case CmpInst::FCMP_OLT: case CmpInst::FCMP_OLE:
1998 case CmpInst::FCMP_ONE: case CmpInst::FCMP_ORD: case CmpInst::FCMP_UNO:
1999 case CmpInst::FCMP_UEQ: case CmpInst::FCMP_UGT: case CmpInst::FCMP_UGE:
2000 case CmpInst::FCMP_ULT: case CmpInst::FCMP_ULE: case CmpInst::FCMP_UNE:
2001 case CmpInst::FCMP_TRUE:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002002 return getFCmp(Predicate, C1, C2, OnlyIfReduced);
Galina Kistanovafc259902012-07-13 01:25:27 +00002003
Chris Lattner887ecac2011-07-09 18:23:52 +00002004 case CmpInst::ICMP_EQ: case CmpInst::ICMP_NE: case CmpInst::ICMP_UGT:
2005 case CmpInst::ICMP_UGE: case CmpInst::ICMP_ULT: case CmpInst::ICMP_ULE:
2006 case CmpInst::ICMP_SGT: case CmpInst::ICMP_SGE: case CmpInst::ICMP_SLT:
2007 case CmpInst::ICMP_SLE:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002008 return getICmp(Predicate, C1, C2, OnlyIfReduced);
Chris Lattner887ecac2011-07-09 18:23:52 +00002009 }
Chris Lattner29ca2c62004-08-04 18:50:09 +00002010}
2011
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002012Constant *ConstantExpr::getSelect(Constant *C, Constant *V1, Constant *V2,
2013 Type *OnlyIfReducedTy) {
Chris Lattner41632132008-12-29 00:16:12 +00002014 assert(!SelectInst::areInvalidOperands(C, V1, V2)&&"Invalid select operands");
Chris Lattner6e415c02004-03-12 05:54:04 +00002015
Chris Lattner887ecac2011-07-09 18:23:52 +00002016 if (Constant *SC = ConstantFoldSelectInstruction(C, V1, V2))
2017 return SC; // Fold common cases
Chris Lattner6e415c02004-03-12 05:54:04 +00002018
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002019 if (OnlyIfReducedTy == V1->getType())
2020 return nullptr;
2021
Benjamin Kramer324322b2013-03-07 20:53:34 +00002022 Constant *ArgVec[] = { C, V1, V2 };
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002023 ConstantExprKeyType Key(Instruction::Select, ArgVec);
Galina Kistanovafc259902012-07-13 01:25:27 +00002024
Chris Lattner887ecac2011-07-09 18:23:52 +00002025 LLVMContextImpl *pImpl = C->getContext().pImpl;
2026 return pImpl->ExprConstants.getOrCreate(V1->getType(), Key);
Chris Lattner6e415c02004-03-12 05:54:04 +00002027}
2028
David Blaikie4a2e73b2015-04-02 18:55:32 +00002029Constant *ConstantExpr::getGetElementPtr(Type *Ty, Constant *C,
2030 ArrayRef<Value *> Idxs, bool InBounds,
2031 Type *OnlyIfReducedTy) {
David Blaikie4a2e73b2015-04-02 18:55:32 +00002032 if (!Ty)
2033 Ty = cast<PointerType>(C->getType()->getScalarType())->getElementType();
2034 else
David Blaikied9d900c2015-05-07 17:28:58 +00002035 assert(
2036 Ty ==
2037 cast<PointerType>(C->getType()->getScalarType())->getContainedType(0u));
2038
2039 if (Constant *FC = ConstantFoldGetElementPtr(Ty, C, InBounds, Idxs))
2040 return FC; // Fold a few common cases.
2041
Chris Lattner887ecac2011-07-09 18:23:52 +00002042 // Get the result type of the getelementptr!
David Blaikie4a2e73b2015-04-02 18:55:32 +00002043 Type *DestTy = GetElementPtrInst::getIndexedType(Ty, Idxs);
2044 assert(DestTy && "GEP indices invalid!");
Chris Lattner8326bd82012-01-26 00:42:34 +00002045 unsigned AS = C->getType()->getPointerAddressSpace();
David Blaikie4a2e73b2015-04-02 18:55:32 +00002046 Type *ReqTy = DestTy->getPointerTo(AS);
Duncan Sandse6beec62012-11-13 12:59:33 +00002047 if (VectorType *VecTy = dyn_cast<VectorType>(C->getType()))
2048 ReqTy = VectorType::get(ReqTy, VecTy->getNumElements());
Galina Kistanovafc259902012-07-13 01:25:27 +00002049
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002050 if (OnlyIfReducedTy == ReqTy)
2051 return nullptr;
2052
Dan Gohman1b849082009-09-07 23:54:19 +00002053 // Look up the constant in the table first to ensure uniqueness
2054 std::vector<Constant*> ArgVec;
Jay Foaded8db7d2011-07-21 14:31:17 +00002055 ArgVec.reserve(1 + Idxs.size());
Dan Gohman1b849082009-09-07 23:54:19 +00002056 ArgVec.push_back(C);
Duncan Sandse6beec62012-11-13 12:59:33 +00002057 for (unsigned i = 0, e = Idxs.size(); i != e; ++i) {
2058 assert(Idxs[i]->getType()->isVectorTy() == ReqTy->isVectorTy() &&
2059 "getelementptr index type missmatch");
2060 assert((!Idxs[i]->getType()->isVectorTy() ||
2061 ReqTy->getVectorNumElements() ==
2062 Idxs[i]->getType()->getVectorNumElements()) &&
2063 "getelementptr index type missmatch");
Dan Gohman1b849082009-09-07 23:54:19 +00002064 ArgVec.push_back(cast<Constant>(Idxs[i]));
Duncan Sandse6beec62012-11-13 12:59:33 +00002065 }
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002066 const ConstantExprKeyType Key(Instruction::GetElementPtr, ArgVec, 0,
David Blaikie60310f22015-05-08 00:42:26 +00002067 InBounds ? GEPOperator::IsInBounds : 0, None,
2068 Ty);
Galina Kistanovafc259902012-07-13 01:25:27 +00002069
Chris Lattner887ecac2011-07-09 18:23:52 +00002070 LLVMContextImpl *pImpl = C->getContext().pImpl;
Dan Gohman1b849082009-09-07 23:54:19 +00002071 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
2072}
2073
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002074Constant *ConstantExpr::getICmp(unsigned short pred, Constant *LHS,
2075 Constant *RHS, bool OnlyIfReduced) {
Reid Spenceree3c9912006-12-04 05:19:50 +00002076 assert(LHS->getType() == RHS->getType());
2077 assert(pred >= ICmpInst::FIRST_ICMP_PREDICATE &&
2078 pred <= ICmpInst::LAST_ICMP_PREDICATE && "Invalid ICmp Predicate");
2079
Chris Lattnerf5edeeb2010-02-01 20:48:08 +00002080 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
Reid Spenceree3c9912006-12-04 05:19:50 +00002081 return FC; // Fold a few common cases...
2082
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002083 if (OnlyIfReduced)
2084 return nullptr;
2085
Reid Spenceree3c9912006-12-04 05:19:50 +00002086 // Look up the constant in the table first to ensure uniqueness
Benjamin Kramer324322b2013-03-07 20:53:34 +00002087 Constant *ArgVec[] = { LHS, RHS };
Reid Spencerb1537492006-12-24 18:42:29 +00002088 // Get the key type with both the opcode and predicate
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002089 const ConstantExprKeyType Key(Instruction::ICmp, ArgVec, pred);
Owen Anderson61794042009-06-17 20:10:08 +00002090
Chris Lattner229907c2011-07-18 04:54:35 +00002091 Type *ResultTy = Type::getInt1Ty(LHS->getContext());
2092 if (VectorType *VT = dyn_cast<VectorType>(LHS->getType()))
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00002093 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
2094
Owen Anderson1584a292009-08-04 20:25:11 +00002095 LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl;
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00002096 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
Reid Spenceree3c9912006-12-04 05:19:50 +00002097}
2098
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002099Constant *ConstantExpr::getFCmp(unsigned short pred, Constant *LHS,
2100 Constant *RHS, bool OnlyIfReduced) {
Reid Spenceree3c9912006-12-04 05:19:50 +00002101 assert(LHS->getType() == RHS->getType());
2102 assert(pred <= FCmpInst::LAST_FCMP_PREDICATE && "Invalid FCmp Predicate");
2103
Chris Lattnerf5edeeb2010-02-01 20:48:08 +00002104 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
Reid Spenceree3c9912006-12-04 05:19:50 +00002105 return FC; // Fold a few common cases...
2106
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002107 if (OnlyIfReduced)
2108 return nullptr;
2109
Reid Spenceree3c9912006-12-04 05:19:50 +00002110 // Look up the constant in the table first to ensure uniqueness
Benjamin Kramer324322b2013-03-07 20:53:34 +00002111 Constant *ArgVec[] = { LHS, RHS };
Reid Spencerb1537492006-12-24 18:42:29 +00002112 // Get the key type with both the opcode and predicate
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002113 const ConstantExprKeyType Key(Instruction::FCmp, ArgVec, pred);
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00002114
Chris Lattner229907c2011-07-18 04:54:35 +00002115 Type *ResultTy = Type::getInt1Ty(LHS->getContext());
2116 if (VectorType *VT = dyn_cast<VectorType>(LHS->getType()))
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00002117 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
2118
Owen Anderson1584a292009-08-04 20:25:11 +00002119 LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl;
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00002120 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
Reid Spenceree3c9912006-12-04 05:19:50 +00002121}
2122
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002123Constant *ConstantExpr::getExtractElement(Constant *Val, Constant *Idx,
2124 Type *OnlyIfReducedTy) {
Duncan Sands19d0b472010-02-16 11:11:14 +00002125 assert(Val->getType()->isVectorTy() &&
Reid Spencer09575ba2007-02-15 03:39:18 +00002126 "Tried to create extractelement operation on non-vector type!");
Michael J. Spencer1f10c5ea2014-05-01 22:12:39 +00002127 assert(Idx->getType()->isIntegerTy() &&
2128 "Extractelement index must be an integer type!");
Galina Kistanovafc259902012-07-13 01:25:27 +00002129
Chris Lattner887ecac2011-07-09 18:23:52 +00002130 if (Constant *FC = ConstantFoldExtractElementInstruction(Val, Idx))
Chris Lattner09660c92009-12-30 20:25:09 +00002131 return FC; // Fold a few common cases.
Galina Kistanovafc259902012-07-13 01:25:27 +00002132
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002133 Type *ReqTy = Val->getType()->getVectorElementType();
2134 if (OnlyIfReducedTy == ReqTy)
2135 return nullptr;
2136
Robert Bocchinoca27f032006-01-17 20:07:22 +00002137 // Look up the constant in the table first to ensure uniqueness
Benjamin Kramer324322b2013-03-07 20:53:34 +00002138 Constant *ArgVec[] = { Val, Idx };
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002139 const ConstantExprKeyType Key(Instruction::ExtractElement, ArgVec);
Galina Kistanovafc259902012-07-13 01:25:27 +00002140
Chris Lattner887ecac2011-07-09 18:23:52 +00002141 LLVMContextImpl *pImpl = Val->getContext().pImpl;
Owen Anderson1584a292009-08-04 20:25:11 +00002142 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Robert Bocchinoca27f032006-01-17 20:07:22 +00002143}
2144
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002145Constant *ConstantExpr::getInsertElement(Constant *Val, Constant *Elt,
2146 Constant *Idx, Type *OnlyIfReducedTy) {
Duncan Sands19d0b472010-02-16 11:11:14 +00002147 assert(Val->getType()->isVectorTy() &&
Reid Spencer09575ba2007-02-15 03:39:18 +00002148 "Tried to create insertelement operation on non-vector type!");
Chris Lattner8326bd82012-01-26 00:42:34 +00002149 assert(Elt->getType() == Val->getType()->getVectorElementType() &&
2150 "Insertelement types must match!");
Michael J. Spencer1f10c5ea2014-05-01 22:12:39 +00002151 assert(Idx->getType()->isIntegerTy() &&
Reid Spencer2546b762007-01-26 07:37:34 +00002152 "Insertelement index must be i32 type!");
Robert Bocchinoca27f032006-01-17 20:07:22 +00002153
Chris Lattner887ecac2011-07-09 18:23:52 +00002154 if (Constant *FC = ConstantFoldInsertElementInstruction(Val, Elt, Idx))
2155 return FC; // Fold a few common cases.
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002156
2157 if (OnlyIfReducedTy == Val->getType())
2158 return nullptr;
2159
Chris Lattnerbbe0a422006-04-08 01:18:18 +00002160 // Look up the constant in the table first to ensure uniqueness
Benjamin Kramer324322b2013-03-07 20:53:34 +00002161 Constant *ArgVec[] = { Val, Elt, Idx };
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002162 const ConstantExprKeyType Key(Instruction::InsertElement, ArgVec);
Galina Kistanovafc259902012-07-13 01:25:27 +00002163
Chris Lattner887ecac2011-07-09 18:23:52 +00002164 LLVMContextImpl *pImpl = Val->getContext().pImpl;
2165 return pImpl->ExprConstants.getOrCreate(Val->getType(), Key);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00002166}
2167
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002168Constant *ConstantExpr::getShuffleVector(Constant *V1, Constant *V2,
2169 Constant *Mask, Type *OnlyIfReducedTy) {
Chris Lattnerbbe0a422006-04-08 01:18:18 +00002170 assert(ShuffleVectorInst::isValidOperands(V1, V2, Mask) &&
2171 "Invalid shuffle vector constant expr operands!");
Nate Begeman94aa38d2009-02-12 21:28:33 +00002172
Chris Lattner887ecac2011-07-09 18:23:52 +00002173 if (Constant *FC = ConstantFoldShuffleVectorInstruction(V1, V2, Mask))
2174 return FC; // Fold a few common cases.
2175
Chris Lattner8326bd82012-01-26 00:42:34 +00002176 unsigned NElts = Mask->getType()->getVectorNumElements();
2177 Type *EltTy = V1->getType()->getVectorElementType();
Chris Lattner229907c2011-07-18 04:54:35 +00002178 Type *ShufTy = VectorType::get(EltTy, NElts);
Chris Lattner887ecac2011-07-09 18:23:52 +00002179
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002180 if (OnlyIfReducedTy == ShufTy)
2181 return nullptr;
2182
Chris Lattner887ecac2011-07-09 18:23:52 +00002183 // Look up the constant in the table first to ensure uniqueness
Benjamin Kramer324322b2013-03-07 20:53:34 +00002184 Constant *ArgVec[] = { V1, V2, Mask };
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002185 const ConstantExprKeyType Key(Instruction::ShuffleVector, ArgVec);
Galina Kistanovafc259902012-07-13 01:25:27 +00002186
Chris Lattner887ecac2011-07-09 18:23:52 +00002187 LLVMContextImpl *pImpl = ShufTy->getContext().pImpl;
2188 return pImpl->ExprConstants.getOrCreate(ShufTy, Key);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00002189}
2190
Chris Lattner887ecac2011-07-09 18:23:52 +00002191Constant *ConstantExpr::getInsertValue(Constant *Agg, Constant *Val,
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002192 ArrayRef<unsigned> Idxs,
2193 Type *OnlyIfReducedTy) {
Hal Finkelb31366d2013-07-10 22:51:01 +00002194 assert(Agg->getType()->isFirstClassType() &&
2195 "Non-first-class type for constant insertvalue expression");
2196
Jay Foad57aa6362011-07-13 10:26:04 +00002197 assert(ExtractValueInst::getIndexedType(Agg->getType(),
2198 Idxs) == Val->getType() &&
Dan Gohman12fce772008-05-15 19:50:34 +00002199 "insertvalue indices invalid!");
Hal Finkelb31366d2013-07-10 22:51:01 +00002200 Type *ReqTy = Val->getType();
2201
2202 if (Constant *FC = ConstantFoldInsertValueInstruction(Agg, Val, Idxs))
2203 return FC;
2204
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002205 if (OnlyIfReducedTy == ReqTy)
2206 return nullptr;
2207
Hal Finkelb31366d2013-07-10 22:51:01 +00002208 Constant *ArgVec[] = { Agg, Val };
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002209 const ConstantExprKeyType Key(Instruction::InsertValue, ArgVec, 0, 0, Idxs);
Hal Finkelb31366d2013-07-10 22:51:01 +00002210
2211 LLVMContextImpl *pImpl = Agg->getContext().pImpl;
2212 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Dan Gohman12fce772008-05-15 19:50:34 +00002213}
2214
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002215Constant *ConstantExpr::getExtractValue(Constant *Agg, ArrayRef<unsigned> Idxs,
2216 Type *OnlyIfReducedTy) {
Dan Gohman0752bff2008-05-23 00:36:11 +00002217 assert(Agg->getType()->isFirstClassType() &&
Chris Lattner887ecac2011-07-09 18:23:52 +00002218 "Tried to create extractelement operation on non-first-class type!");
Dan Gohman12fce772008-05-15 19:50:34 +00002219
Chris Lattner229907c2011-07-18 04:54:35 +00002220 Type *ReqTy = ExtractValueInst::getIndexedType(Agg->getType(), Idxs);
Chandler Carruth9db56b82011-07-10 09:45:35 +00002221 (void)ReqTy;
Chris Lattner887ecac2011-07-09 18:23:52 +00002222 assert(ReqTy && "extractvalue indices invalid!");
Galina Kistanovafc259902012-07-13 01:25:27 +00002223
Dan Gohman0752bff2008-05-23 00:36:11 +00002224 assert(Agg->getType()->isFirstClassType() &&
2225 "Non-first-class type for constant extractvalue expression");
Hal Finkelb31366d2013-07-10 22:51:01 +00002226 if (Constant *FC = ConstantFoldExtractValueInstruction(Agg, Idxs))
2227 return FC;
2228
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002229 if (OnlyIfReducedTy == ReqTy)
2230 return nullptr;
2231
Hal Finkelb31366d2013-07-10 22:51:01 +00002232 Constant *ArgVec[] = { Agg };
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002233 const ConstantExprKeyType Key(Instruction::ExtractValue, ArgVec, 0, 0, Idxs);
Hal Finkelb31366d2013-07-10 22:51:01 +00002234
2235 LLVMContextImpl *pImpl = Agg->getContext().pImpl;
2236 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Dan Gohman12fce772008-05-15 19:50:34 +00002237}
2238
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002239Constant *ConstantExpr::getNeg(Constant *C, bool HasNUW, bool HasNSW) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002240 assert(C->getType()->isIntOrIntVectorTy() &&
Owen Anderson487375e2009-07-29 18:55:55 +00002241 "Cannot NEG a nonintegral value!");
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002242 return getSub(ConstantFP::getZeroValueForNegation(C->getType()),
2243 C, HasNUW, HasNSW);
Owen Anderson487375e2009-07-29 18:55:55 +00002244}
2245
Chris Lattnera676c0f2011-02-07 16:40:21 +00002246Constant *ConstantExpr::getFNeg(Constant *C) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002247 assert(C->getType()->isFPOrFPVectorTy() &&
Owen Anderson487375e2009-07-29 18:55:55 +00002248 "Cannot FNEG a non-floating-point value!");
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002249 return getFSub(ConstantFP::getZeroValueForNegation(C->getType()), C);
Owen Anderson487375e2009-07-29 18:55:55 +00002250}
2251
Chris Lattnera676c0f2011-02-07 16:40:21 +00002252Constant *ConstantExpr::getNot(Constant *C) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002253 assert(C->getType()->isIntOrIntVectorTy() &&
Owen Anderson487375e2009-07-29 18:55:55 +00002254 "Cannot NOT a nonintegral value!");
Owen Anderson5a1acd92009-07-31 20:28:14 +00002255 return get(Instruction::Xor, C, Constant::getAllOnesValue(C->getType()));
Owen Anderson487375e2009-07-29 18:55:55 +00002256}
2257
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002258Constant *ConstantExpr::getAdd(Constant *C1, Constant *C2,
2259 bool HasNUW, bool HasNSW) {
2260 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
2261 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
2262 return get(Instruction::Add, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00002263}
2264
Chris Lattnera676c0f2011-02-07 16:40:21 +00002265Constant *ConstantExpr::getFAdd(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002266 return get(Instruction::FAdd, C1, C2);
2267}
2268
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002269Constant *ConstantExpr::getSub(Constant *C1, Constant *C2,
2270 bool HasNUW, bool HasNSW) {
2271 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
2272 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
2273 return get(Instruction::Sub, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00002274}
2275
Chris Lattnera676c0f2011-02-07 16:40:21 +00002276Constant *ConstantExpr::getFSub(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002277 return get(Instruction::FSub, C1, C2);
2278}
2279
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002280Constant *ConstantExpr::getMul(Constant *C1, Constant *C2,
2281 bool HasNUW, bool HasNSW) {
2282 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
2283 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
2284 return get(Instruction::Mul, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00002285}
2286
Chris Lattnera676c0f2011-02-07 16:40:21 +00002287Constant *ConstantExpr::getFMul(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002288 return get(Instruction::FMul, C1, C2);
2289}
2290
Chris Lattner0d75eac2011-02-09 16:43:07 +00002291Constant *ConstantExpr::getUDiv(Constant *C1, Constant *C2, bool isExact) {
2292 return get(Instruction::UDiv, C1, C2,
2293 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00002294}
2295
Chris Lattner0d75eac2011-02-09 16:43:07 +00002296Constant *ConstantExpr::getSDiv(Constant *C1, Constant *C2, bool isExact) {
2297 return get(Instruction::SDiv, C1, C2,
2298 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00002299}
2300
Chris Lattnera676c0f2011-02-07 16:40:21 +00002301Constant *ConstantExpr::getFDiv(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002302 return get(Instruction::FDiv, C1, C2);
2303}
2304
Chris Lattnera676c0f2011-02-07 16:40:21 +00002305Constant *ConstantExpr::getURem(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002306 return get(Instruction::URem, C1, C2);
2307}
2308
Chris Lattnera676c0f2011-02-07 16:40:21 +00002309Constant *ConstantExpr::getSRem(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002310 return get(Instruction::SRem, C1, C2);
2311}
2312
Chris Lattnera676c0f2011-02-07 16:40:21 +00002313Constant *ConstantExpr::getFRem(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002314 return get(Instruction::FRem, C1, C2);
2315}
2316
Chris Lattnera676c0f2011-02-07 16:40:21 +00002317Constant *ConstantExpr::getAnd(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002318 return get(Instruction::And, C1, C2);
2319}
2320
Chris Lattnera676c0f2011-02-07 16:40:21 +00002321Constant *ConstantExpr::getOr(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002322 return get(Instruction::Or, C1, C2);
2323}
2324
Chris Lattnera676c0f2011-02-07 16:40:21 +00002325Constant *ConstantExpr::getXor(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002326 return get(Instruction::Xor, C1, C2);
2327}
2328
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002329Constant *ConstantExpr::getShl(Constant *C1, Constant *C2,
2330 bool HasNUW, bool HasNSW) {
2331 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
2332 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
2333 return get(Instruction::Shl, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00002334}
2335
Chris Lattner0d75eac2011-02-09 16:43:07 +00002336Constant *ConstantExpr::getLShr(Constant *C1, Constant *C2, bool isExact) {
2337 return get(Instruction::LShr, C1, C2,
2338 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00002339}
2340
Chris Lattner0d75eac2011-02-09 16:43:07 +00002341Constant *ConstantExpr::getAShr(Constant *C1, Constant *C2, bool isExact) {
2342 return get(Instruction::AShr, C1, C2,
2343 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00002344}
2345
Duncan Sandsd7aeefe2012-06-12 14:33:56 +00002346/// getBinOpIdentity - Return the identity for the given binary operation,
2347/// 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 +00002348/// returns null if the operator doesn't have an identity.
Duncan Sandsd7aeefe2012-06-12 14:33:56 +00002349Constant *ConstantExpr::getBinOpIdentity(unsigned Opcode, Type *Ty) {
2350 switch (Opcode) {
2351 default:
Duncan Sands318a89d2012-06-13 09:42:13 +00002352 // Doesn't have an identity.
Craig Topperc6207612014-04-09 06:08:46 +00002353 return nullptr;
Duncan Sands318a89d2012-06-13 09:42:13 +00002354
Duncan Sandsd7aeefe2012-06-12 14:33:56 +00002355 case Instruction::Add:
2356 case Instruction::Or:
2357 case Instruction::Xor:
2358 return Constant::getNullValue(Ty);
2359
2360 case Instruction::Mul:
2361 return ConstantInt::get(Ty, 1);
2362
2363 case Instruction::And:
2364 return Constant::getAllOnesValue(Ty);
2365 }
2366}
2367
Duncan Sands318a89d2012-06-13 09:42:13 +00002368/// getBinOpAbsorber - Return the absorbing element for the given binary
2369/// operation, i.e. a constant C such that X op C = C and C op X = C for
2370/// every X. For example, this returns zero for integer multiplication.
2371/// It returns null if the operator doesn't have an absorbing element.
2372Constant *ConstantExpr::getBinOpAbsorber(unsigned Opcode, Type *Ty) {
2373 switch (Opcode) {
2374 default:
2375 // Doesn't have an absorber.
Craig Topperc6207612014-04-09 06:08:46 +00002376 return nullptr;
Duncan Sands318a89d2012-06-13 09:42:13 +00002377
2378 case Instruction::Or:
2379 return Constant::getAllOnesValue(Ty);
2380
2381 case Instruction::And:
2382 case Instruction::Mul:
2383 return Constant::getNullValue(Ty);
2384 }
2385}
2386
Vikram S. Adve4c485332002-07-15 18:19:33 +00002387// destroyConstant - Remove the constant from the constant table...
2388//
Pete Cooper86dd4cf2015-06-23 21:55:11 +00002389void ConstantExpr::destroyConstantImpl() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002390 getType()->getContext().pImpl->ExprConstants.remove(this);
Vikram S. Adve4e537b22002-07-14 23:13:17 +00002391}
2392
Chris Lattner3cd8c562002-07-30 18:54:25 +00002393const char *ConstantExpr::getOpcodeName() const {
2394 return Instruction::getOpcodeName(getOpcode());
Vikram S. Adve4e537b22002-07-14 23:13:17 +00002395}
Reid Spencer1ebe1ab2004-07-17 23:48:33 +00002396
David Blaikie60310f22015-05-08 00:42:26 +00002397GetElementPtrConstantExpr::GetElementPtrConstantExpr(
2398 Type *SrcElementTy, Constant *C, ArrayRef<Constant *> IdxList, Type *DestTy)
2399 : ConstantExpr(DestTy, Instruction::GetElementPtr,
2400 OperandTraits<GetElementPtrConstantExpr>::op_end(this) -
2401 (IdxList.size() + 1),
2402 IdxList.size() + 1),
2403 SrcElementTy(SrcElementTy) {
Pete Coopereb31b682015-05-21 22:48:54 +00002404 Op<0>() = C;
Pete Cooper74510a42015-06-12 17:48:05 +00002405 Use *OperandList = getOperandList();
Chris Lattnera3b94ba2010-03-30 20:48:48 +00002406 for (unsigned i = 0, E = IdxList.size(); i != E; ++i)
2407 OperandList[i+1] = IdxList[i];
2408}
2409
David Blaikie60310f22015-05-08 00:42:26 +00002410Type *GetElementPtrConstantExpr::getSourceElementType() const {
2411 return SrcElementTy;
2412}
2413
Chris Lattner3756b912012-01-23 22:57:10 +00002414//===----------------------------------------------------------------------===//
2415// ConstantData* implementations
2416
2417void ConstantDataArray::anchor() {}
2418void ConstantDataVector::anchor() {}
2419
Chris Lattnere4f3f102012-01-24 04:43:41 +00002420/// getElementType - Return the element type of the array/vector.
2421Type *ConstantDataSequential::getElementType() const {
2422 return getType()->getElementType();
2423}
2424
Chris Lattner5d4497b2012-01-24 09:31:43 +00002425StringRef ConstantDataSequential::getRawDataValues() const {
Chris Lattner00245f42012-01-24 13:41:11 +00002426 return StringRef(DataElements, getNumElements()*getElementByteSize());
Chris Lattner5d4497b2012-01-24 09:31:43 +00002427}
2428
Chris Lattner030af792012-01-24 05:42:11 +00002429/// isElementTypeCompatible - Return true if a ConstantDataSequential can be
2430/// formed with a vector or array of the specified element type.
2431/// ConstantDataArray only works with normal float and int types that are
2432/// stored densely in memory, not with things like i42 or x86_f80.
Craig Toppere3dcce92015-08-01 22:20:21 +00002433bool ConstantDataSequential::isElementTypeCompatible(Type *Ty) {
Chris Lattnere4f3f102012-01-24 04:43:41 +00002434 if (Ty->isFloatTy() || Ty->isDoubleTy()) return true;
Craig Toppere3dcce92015-08-01 22:20:21 +00002435 if (auto *IT = dyn_cast<IntegerType>(Ty)) {
Chris Lattnere4f3f102012-01-24 04:43:41 +00002436 switch (IT->getBitWidth()) {
2437 case 8:
2438 case 16:
2439 case 32:
2440 case 64:
2441 return true;
2442 default: break;
2443 }
2444 }
2445 return false;
2446}
2447
Chris Lattner00245f42012-01-24 13:41:11 +00002448/// getNumElements - Return the number of elements in the array or vector.
2449unsigned ConstantDataSequential::getNumElements() const {
Chris Lattner8a3df542012-01-25 01:32:59 +00002450 if (ArrayType *AT = dyn_cast<ArrayType>(getType()))
2451 return AT->getNumElements();
Chris Lattner8326bd82012-01-26 00:42:34 +00002452 return getType()->getVectorNumElements();
Chris Lattner00245f42012-01-24 13:41:11 +00002453}
2454
2455
Chris Lattnere4f3f102012-01-24 04:43:41 +00002456/// getElementByteSize - Return the size in bytes of the elements in the data.
2457uint64_t ConstantDataSequential::getElementByteSize() const {
2458 return getElementType()->getPrimitiveSizeInBits()/8;
2459}
2460
2461/// getElementPointer - Return the start of the specified element.
2462const char *ConstantDataSequential::getElementPointer(unsigned Elt) const {
Chris Lattner00245f42012-01-24 13:41:11 +00002463 assert(Elt < getNumElements() && "Invalid Elt");
Chris Lattnere4f3f102012-01-24 04:43:41 +00002464 return DataElements+Elt*getElementByteSize();
2465}
2466
2467
Chris Lattner3756b912012-01-23 22:57:10 +00002468/// isAllZeros - return true if the array is empty or all zeros.
2469static bool isAllZeros(StringRef Arr) {
2470 for (StringRef::iterator I = Arr.begin(), E = Arr.end(); I != E; ++I)
2471 if (*I != 0)
2472 return false;
2473 return true;
2474}
Chris Lattner030af792012-01-24 05:42:11 +00002475
Chris Lattner3756b912012-01-23 22:57:10 +00002476/// getImpl - This is the underlying implementation of all of the
2477/// ConstantDataSequential::get methods. They all thunk down to here, providing
Chris Lattnerf06039b2012-01-30 18:19:30 +00002478/// the correct element type. We take the bytes in as a StringRef because
Chris Lattner3756b912012-01-23 22:57:10 +00002479/// we *want* an underlying "char*" to avoid TBAA type punning violations.
2480Constant *ConstantDataSequential::getImpl(StringRef Elements, Type *Ty) {
Chris Lattner8326bd82012-01-26 00:42:34 +00002481 assert(isElementTypeCompatible(Ty->getSequentialElementType()));
Chris Lattner139822f2012-01-24 14:17:05 +00002482 // If the elements are all zero or there are no elements, return a CAZ, which
2483 // is more dense and canonical.
Chris Lattner3756b912012-01-23 22:57:10 +00002484 if (isAllZeros(Elements))
2485 return ConstantAggregateZero::get(Ty);
2486
2487 // Do a lookup to see if we have already formed one of these.
David Blaikie5106ce72014-11-19 05:49:42 +00002488 auto &Slot =
2489 *Ty->getContext()
2490 .pImpl->CDSConstants.insert(std::make_pair(Elements, nullptr))
2491 .first;
Galina Kistanovafc259902012-07-13 01:25:27 +00002492
Chris Lattner3756b912012-01-23 22:57:10 +00002493 // The bucket can point to a linked list of different CDS's that have the same
2494 // body but different types. For example, 0,0,0,1 could be a 4 element array
2495 // of i8, or a 1-element array of i32. They'll both end up in the same
2496 /// StringMap bucket, linked up by their Next pointers. Walk the list.
David Blaikie5106ce72014-11-19 05:49:42 +00002497 ConstantDataSequential **Entry = &Slot.second;
Craig Topperc6207612014-04-09 06:08:46 +00002498 for (ConstantDataSequential *Node = *Entry; Node;
Chris Lattner3756b912012-01-23 22:57:10 +00002499 Entry = &Node->Next, Node = *Entry)
2500 if (Node->getType() == Ty)
2501 return Node;
Galina Kistanovafc259902012-07-13 01:25:27 +00002502
Chris Lattner3756b912012-01-23 22:57:10 +00002503 // Okay, we didn't get a hit. Create a node of the right class, link it in,
2504 // and return it.
2505 if (isa<ArrayType>(Ty))
David Blaikie5106ce72014-11-19 05:49:42 +00002506 return *Entry = new ConstantDataArray(Ty, Slot.first().data());
Chris Lattner3756b912012-01-23 22:57:10 +00002507
2508 assert(isa<VectorType>(Ty));
David Blaikie5106ce72014-11-19 05:49:42 +00002509 return *Entry = new ConstantDataVector(Ty, Slot.first().data());
Chris Lattner3756b912012-01-23 22:57:10 +00002510}
2511
Pete Cooper86dd4cf2015-06-23 21:55:11 +00002512void ConstantDataSequential::destroyConstantImpl() {
Chris Lattner3756b912012-01-23 22:57:10 +00002513 // Remove the constant from the StringMap.
2514 StringMap<ConstantDataSequential*> &CDSConstants =
2515 getType()->getContext().pImpl->CDSConstants;
Galina Kistanovafc259902012-07-13 01:25:27 +00002516
Chris Lattner3756b912012-01-23 22:57:10 +00002517 StringMap<ConstantDataSequential*>::iterator Slot =
Chris Lattner5d4497b2012-01-24 09:31:43 +00002518 CDSConstants.find(getRawDataValues());
Chris Lattner3756b912012-01-23 22:57:10 +00002519
2520 assert(Slot != CDSConstants.end() && "CDS not found in uniquing table");
2521
2522 ConstantDataSequential **Entry = &Slot->getValue();
2523
2524 // Remove the entry from the hash table.
Craig Topperc6207612014-04-09 06:08:46 +00002525 if (!(*Entry)->Next) {
Chris Lattner3756b912012-01-23 22:57:10 +00002526 // If there is only one value in the bucket (common case) it must be this
2527 // entry, and removing the entry should remove the bucket completely.
2528 assert((*Entry) == this && "Hash mismatch in ConstantDataSequential");
2529 getContext().pImpl->CDSConstants.erase(Slot);
2530 } else {
2531 // Otherwise, there are multiple entries linked off the bucket, unlink the
2532 // node we care about but keep the bucket around.
2533 for (ConstantDataSequential *Node = *Entry; ;
2534 Entry = &Node->Next, Node = *Entry) {
2535 assert(Node && "Didn't find entry in its uniquing hash table!");
2536 // If we found our entry, unlink it from the list and we're done.
2537 if (Node == this) {
2538 *Entry = Node->Next;
2539 break;
2540 }
2541 }
2542 }
Galina Kistanovafc259902012-07-13 01:25:27 +00002543
Chris Lattner3756b912012-01-23 22:57:10 +00002544 // If we were part of a list, make sure that we don't delete the list that is
2545 // still owned by the uniquing map.
Craig Topperc6207612014-04-09 06:08:46 +00002546 Next = nullptr;
Chris Lattner3756b912012-01-23 22:57:10 +00002547}
2548
2549/// get() constructors - Return a constant with array type with an element
2550/// count and element type matching the ArrayRef passed in. Note that this
2551/// can return a ConstantAggregateZero object.
Chris Lattner20683932012-01-24 14:04:40 +00002552Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint8_t> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002553 Type *Ty = ArrayType::get(Type::getInt8Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002554 const char *Data = reinterpret_cast<const char *>(Elts.data());
2555 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*1), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002556}
Chris Lattner20683932012-01-24 14:04:40 +00002557Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint16_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002558 Type *Ty = ArrayType::get(Type::getInt16Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002559 const char *Data = reinterpret_cast<const char *>(Elts.data());
2560 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*2), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002561}
Chris Lattner20683932012-01-24 14:04:40 +00002562Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint32_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002563 Type *Ty = ArrayType::get(Type::getInt32Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002564 const char *Data = reinterpret_cast<const char *>(Elts.data());
2565 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*4), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002566}
Chris Lattner20683932012-01-24 14:04:40 +00002567Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint64_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002568 Type *Ty = ArrayType::get(Type::getInt64Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002569 const char *Data = reinterpret_cast<const char *>(Elts.data());
2570 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*8), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002571}
Chris Lattner20683932012-01-24 14:04:40 +00002572Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<float> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002573 Type *Ty = ArrayType::get(Type::getFloatTy(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002574 const char *Data = reinterpret_cast<const char *>(Elts.data());
2575 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*4), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002576}
Chris Lattner20683932012-01-24 14:04:40 +00002577Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<double> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002578 Type *Ty = ArrayType::get(Type::getDoubleTy(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002579 const char *Data = reinterpret_cast<const char *>(Elts.data());
Rafael Espindola8c97e192015-02-19 16:08:20 +00002580 return getImpl(StringRef(const_cast<char *>(Data), Elts.size() * 8), Ty);
2581}
2582
2583/// getFP() constructors - Return a constant with array type with an element
2584/// count and element type of float with precision matching the number of
2585/// bits in the ArrayRef passed in. (i.e. half for 16bits, float for 32bits,
2586/// double for 64bits) Note that this can return a ConstantAggregateZero
2587/// object.
2588Constant *ConstantDataArray::getFP(LLVMContext &Context,
2589 ArrayRef<uint16_t> Elts) {
2590 Type *Ty = VectorType::get(Type::getHalfTy(Context), Elts.size());
2591 const char *Data = reinterpret_cast<const char *>(Elts.data());
2592 return getImpl(StringRef(const_cast<char *>(Data), Elts.size() * 2), Ty);
2593}
2594Constant *ConstantDataArray::getFP(LLVMContext &Context,
2595 ArrayRef<uint32_t> Elts) {
2596 Type *Ty = ArrayType::get(Type::getFloatTy(Context), Elts.size());
2597 const char *Data = reinterpret_cast<const char *>(Elts.data());
2598 return getImpl(StringRef(const_cast<char *>(Data), Elts.size() * 4), Ty);
2599}
2600Constant *ConstantDataArray::getFP(LLVMContext &Context,
2601 ArrayRef<uint64_t> Elts) {
2602 Type *Ty = ArrayType::get(Type::getDoubleTy(Context), Elts.size());
2603 const char *Data = reinterpret_cast<const char *>(Elts.data());
2604 return getImpl(StringRef(const_cast<char *>(Data), Elts.size() * 8), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002605}
2606
Chris Lattner20683932012-01-24 14:04:40 +00002607/// getString - This method constructs a CDS and initializes it with a text
2608/// string. The default behavior (AddNull==true) causes a null terminator to
2609/// be placed at the end of the array (increasing the length of the string by
2610/// one more than the StringRef would normally indicate. Pass AddNull=false
2611/// to disable this behavior.
2612Constant *ConstantDataArray::getString(LLVMContext &Context,
2613 StringRef Str, bool AddNull) {
Galina Kistanovafc259902012-07-13 01:25:27 +00002614 if (!AddNull) {
2615 const uint8_t *Data = reinterpret_cast<const uint8_t *>(Str.data());
Craig Toppere1d12942014-08-27 05:25:25 +00002616 return get(Context, makeArrayRef(const_cast<uint8_t *>(Data),
Galina Kistanovafc259902012-07-13 01:25:27 +00002617 Str.size()));
2618 }
2619
Chris Lattner20683932012-01-24 14:04:40 +00002620 SmallVector<uint8_t, 64> ElementVals;
2621 ElementVals.append(Str.begin(), Str.end());
2622 ElementVals.push_back(0);
2623 return get(Context, ElementVals);
2624}
Chris Lattner3756b912012-01-23 22:57:10 +00002625
2626/// get() constructors - Return a constant with vector type with an element
2627/// count and element type matching the ArrayRef passed in. Note that this
2628/// can return a ConstantAggregateZero object.
Chris Lattner20683932012-01-24 14:04:40 +00002629Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint8_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002630 Type *Ty = VectorType::get(Type::getInt8Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002631 const char *Data = reinterpret_cast<const char *>(Elts.data());
2632 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*1), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002633}
Chris Lattner20683932012-01-24 14:04:40 +00002634Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint16_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002635 Type *Ty = VectorType::get(Type::getInt16Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002636 const char *Data = reinterpret_cast<const char *>(Elts.data());
2637 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*2), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002638}
Chris Lattner20683932012-01-24 14:04:40 +00002639Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint32_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002640 Type *Ty = VectorType::get(Type::getInt32Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002641 const char *Data = reinterpret_cast<const char *>(Elts.data());
2642 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*4), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002643}
Chris Lattner20683932012-01-24 14:04:40 +00002644Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint64_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002645 Type *Ty = VectorType::get(Type::getInt64Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002646 const char *Data = reinterpret_cast<const char *>(Elts.data());
2647 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*8), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002648}
Chris Lattner20683932012-01-24 14:04:40 +00002649Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<float> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002650 Type *Ty = VectorType::get(Type::getFloatTy(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002651 const char *Data = reinterpret_cast<const char *>(Elts.data());
2652 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*4), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002653}
Chris Lattner20683932012-01-24 14:04:40 +00002654Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<double> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002655 Type *Ty = VectorType::get(Type::getDoubleTy(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002656 const char *Data = reinterpret_cast<const char *>(Elts.data());
Rafael Espindola8c97e192015-02-19 16:08:20 +00002657 return getImpl(StringRef(const_cast<char *>(Data), Elts.size() * 8), Ty);
2658}
2659
2660/// getFP() constructors - Return a constant with vector type with an element
2661/// count and element type of float with the precision matching the number of
2662/// bits in the ArrayRef passed in. (i.e. half for 16bits, float for 32bits,
2663/// double for 64bits) Note that this can return a ConstantAggregateZero
2664/// object.
2665Constant *ConstantDataVector::getFP(LLVMContext &Context,
2666 ArrayRef<uint16_t> Elts) {
2667 Type *Ty = VectorType::get(Type::getHalfTy(Context), Elts.size());
2668 const char *Data = reinterpret_cast<const char *>(Elts.data());
2669 return getImpl(StringRef(const_cast<char *>(Data), Elts.size() * 2), Ty);
2670}
2671Constant *ConstantDataVector::getFP(LLVMContext &Context,
2672 ArrayRef<uint32_t> Elts) {
2673 Type *Ty = VectorType::get(Type::getFloatTy(Context), Elts.size());
2674 const char *Data = reinterpret_cast<const char *>(Elts.data());
2675 return getImpl(StringRef(const_cast<char *>(Data), Elts.size() * 4), Ty);
2676}
2677Constant *ConstantDataVector::getFP(LLVMContext &Context,
2678 ArrayRef<uint64_t> Elts) {
2679 Type *Ty = VectorType::get(Type::getDoubleTy(Context), Elts.size());
2680 const char *Data = reinterpret_cast<const char *>(Elts.data());
2681 return getImpl(StringRef(const_cast<char *>(Data), Elts.size() * 8), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002682}
2683
Chris Lattnere9eed292012-01-25 05:19:54 +00002684Constant *ConstantDataVector::getSplat(unsigned NumElts, Constant *V) {
2685 assert(isElementTypeCompatible(V->getType()) &&
2686 "Element type not compatible with ConstantData");
2687 if (ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
2688 if (CI->getType()->isIntegerTy(8)) {
2689 SmallVector<uint8_t, 16> Elts(NumElts, CI->getZExtValue());
2690 return get(V->getContext(), Elts);
2691 }
2692 if (CI->getType()->isIntegerTy(16)) {
2693 SmallVector<uint16_t, 16> Elts(NumElts, CI->getZExtValue());
2694 return get(V->getContext(), Elts);
2695 }
2696 if (CI->getType()->isIntegerTy(32)) {
2697 SmallVector<uint32_t, 16> Elts(NumElts, CI->getZExtValue());
2698 return get(V->getContext(), Elts);
2699 }
2700 assert(CI->getType()->isIntegerTy(64) && "Unsupported ConstantData type");
2701 SmallVector<uint64_t, 16> Elts(NumElts, CI->getZExtValue());
2702 return get(V->getContext(), Elts);
2703 }
2704
Chris Lattner978fe0c2012-01-30 06:21:21 +00002705 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V)) {
2706 if (CFP->getType()->isFloatTy()) {
Rafael Espindola8c97e192015-02-19 16:08:20 +00002707 SmallVector<uint32_t, 16> Elts(
2708 NumElts, CFP->getValueAPF().bitcastToAPInt().getLimitedValue());
2709 return getFP(V->getContext(), Elts);
Chris Lattner978fe0c2012-01-30 06:21:21 +00002710 }
2711 if (CFP->getType()->isDoubleTy()) {
Rafael Espindola8c97e192015-02-19 16:08:20 +00002712 SmallVector<uint64_t, 16> Elts(
2713 NumElts, CFP->getValueAPF().bitcastToAPInt().getLimitedValue());
2714 return getFP(V->getContext(), Elts);
Chris Lattner978fe0c2012-01-30 06:21:21 +00002715 }
Chris Lattnere9eed292012-01-25 05:19:54 +00002716 }
Chris Lattner978fe0c2012-01-30 06:21:21 +00002717 return ConstantVector::getSplat(NumElts, V);
Chris Lattnere9eed292012-01-25 05:19:54 +00002718}
2719
2720
Chris Lattnere4f3f102012-01-24 04:43:41 +00002721/// getElementAsInteger - If this is a sequential container of integers (of
2722/// any size), return the specified element in the low bits of a uint64_t.
2723uint64_t ConstantDataSequential::getElementAsInteger(unsigned Elt) const {
2724 assert(isa<IntegerType>(getElementType()) &&
2725 "Accessor can only be used when element is an integer");
2726 const char *EltPtr = getElementPointer(Elt);
Galina Kistanovafc259902012-07-13 01:25:27 +00002727
Chris Lattnere4f3f102012-01-24 04:43:41 +00002728 // The data is stored in host byte order, make sure to cast back to the right
2729 // type to load with the right endianness.
Chris Lattner8326bd82012-01-26 00:42:34 +00002730 switch (getElementType()->getIntegerBitWidth()) {
Craig Topperc514b542012-02-05 22:14:15 +00002731 default: llvm_unreachable("Invalid bitwidth for CDS");
Galina Kistanovafc259902012-07-13 01:25:27 +00002732 case 8:
2733 return *const_cast<uint8_t *>(reinterpret_cast<const uint8_t *>(EltPtr));
2734 case 16:
2735 return *const_cast<uint16_t *>(reinterpret_cast<const uint16_t *>(EltPtr));
2736 case 32:
2737 return *const_cast<uint32_t *>(reinterpret_cast<const uint32_t *>(EltPtr));
2738 case 64:
2739 return *const_cast<uint64_t *>(reinterpret_cast<const uint64_t *>(EltPtr));
Chris Lattnere4f3f102012-01-24 04:43:41 +00002740 }
2741}
2742
2743/// getElementAsAPFloat - If this is a sequential container of floating point
2744/// type, return the specified element as an APFloat.
2745APFloat ConstantDataSequential::getElementAsAPFloat(unsigned Elt) const {
2746 const char *EltPtr = getElementPointer(Elt);
2747
2748 switch (getElementType()->getTypeID()) {
Nick Lewyckyff509622012-01-25 03:20:12 +00002749 default:
Craig Topperc514b542012-02-05 22:14:15 +00002750 llvm_unreachable("Accessor can only be used when element is float/double!");
Benjamin Kramer7af984b2015-02-20 15:11:55 +00002751 case Type::FloatTyID: {
2752 auto EltVal = *reinterpret_cast<const uint32_t *>(EltPtr);
NAKAMURA Takumie86b9b72015-02-20 14:24:49 +00002753 return APFloat(APFloat::IEEEsingle, APInt(32, EltVal));
Benjamin Kramer7af984b2015-02-20 15:11:55 +00002754 }
2755 case Type::DoubleTyID: {
2756 auto EltVal = *reinterpret_cast<const uint64_t *>(EltPtr);
NAKAMURA Takumie86b9b72015-02-20 14:24:49 +00002757 return APFloat(APFloat::IEEEdouble, APInt(64, EltVal));
Chris Lattnere4f3f102012-01-24 04:43:41 +00002758 }
Benjamin Kramer7af984b2015-02-20 15:11:55 +00002759 }
Chris Lattnere4f3f102012-01-24 04:43:41 +00002760}
2761
2762/// getElementAsFloat - If this is an sequential container of floats, return
2763/// the specified element as a float.
2764float ConstantDataSequential::getElementAsFloat(unsigned Elt) const {
2765 assert(getElementType()->isFloatTy() &&
2766 "Accessor can only be used when element is a 'float'");
Galina Kistanovafc259902012-07-13 01:25:27 +00002767 const float *EltPtr = reinterpret_cast<const float *>(getElementPointer(Elt));
2768 return *const_cast<float *>(EltPtr);
Chris Lattnere4f3f102012-01-24 04:43:41 +00002769}
2770
2771/// getElementAsDouble - If this is an sequential container of doubles, return
2772/// the specified element as a float.
2773double ConstantDataSequential::getElementAsDouble(unsigned Elt) const {
2774 assert(getElementType()->isDoubleTy() &&
2775 "Accessor can only be used when element is a 'float'");
Galina Kistanovafc259902012-07-13 01:25:27 +00002776 const double *EltPtr =
2777 reinterpret_cast<const double *>(getElementPointer(Elt));
2778 return *const_cast<double *>(EltPtr);
Chris Lattnere4f3f102012-01-24 04:43:41 +00002779}
2780
2781/// getElementAsConstant - Return a Constant for a specified index's element.
2782/// Note that this has to compute a new constant to return, so it isn't as
2783/// efficient as getElementAsInteger/Float/Double.
2784Constant *ConstantDataSequential::getElementAsConstant(unsigned Elt) const {
2785 if (getElementType()->isFloatTy() || getElementType()->isDoubleTy())
2786 return ConstantFP::get(getContext(), getElementAsAPFloat(Elt));
Galina Kistanovafc259902012-07-13 01:25:27 +00002787
Chris Lattnere4f3f102012-01-24 04:43:41 +00002788 return ConstantInt::get(getElementType(), getElementAsInteger(Elt));
2789}
2790
Chris Lattner5dd4d872012-01-24 09:01:07 +00002791/// isString - This method returns true if this is an array of i8.
2792bool ConstantDataSequential::isString() const {
2793 return isa<ArrayType>(getType()) && getElementType()->isIntegerTy(8);
2794}
Chris Lattner3756b912012-01-23 22:57:10 +00002795
Chris Lattner5dd4d872012-01-24 09:01:07 +00002796/// isCString - This method returns true if the array "isString", ends with a
2797/// nul byte, and does not contains any other nul bytes.
2798bool ConstantDataSequential::isCString() const {
2799 if (!isString())
2800 return false;
Galina Kistanovafc259902012-07-13 01:25:27 +00002801
Chris Lattner5dd4d872012-01-24 09:01:07 +00002802 StringRef Str = getAsString();
Galina Kistanovafc259902012-07-13 01:25:27 +00002803
Chris Lattner5dd4d872012-01-24 09:01:07 +00002804 // The last value must be nul.
2805 if (Str.back() != 0) return false;
Galina Kistanovafc259902012-07-13 01:25:27 +00002806
Chris Lattner5dd4d872012-01-24 09:01:07 +00002807 // Other elements must be non-nul.
2808 return Str.drop_back().find(0) == StringRef::npos;
2809}
Chris Lattner3756b912012-01-23 22:57:10 +00002810
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002811/// getSplatValue - If this is a splat constant, meaning that all of the
Reid Kleckner971c3ea2014-11-13 22:55:19 +00002812/// elements have the same value, return that value. Otherwise return nullptr.
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002813Constant *ConstantDataVector::getSplatValue() const {
2814 const char *Base = getRawDataValues().data();
Galina Kistanovafc259902012-07-13 01:25:27 +00002815
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002816 // Compare elements 1+ to the 0'th element.
2817 unsigned EltSize = getElementByteSize();
2818 for (unsigned i = 1, e = getNumElements(); i != e; ++i)
2819 if (memcmp(Base, Base+i*EltSize, EltSize))
Craig Topperc6207612014-04-09 06:08:46 +00002820 return nullptr;
Galina Kistanovafc259902012-07-13 01:25:27 +00002821
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002822 // If they're all the same, return the 0th one as a representative.
2823 return getElementAsConstant(0);
2824}
Chris Lattnera3b94ba2010-03-30 20:48:48 +00002825
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002826//===----------------------------------------------------------------------===//
Pete Cooper5815b1f2015-06-24 18:55:24 +00002827// handleOperandChange implementations
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002828
Pete Cooper5815b1f2015-06-24 18:55:24 +00002829/// Update this constant array to change uses of
Chris Lattner913849b2007-08-21 00:55:23 +00002830/// 'From' to be uses of 'To'. This must update the uniquing data structures
2831/// etc.
2832///
2833/// Note that we intentionally replace all uses of From with To here. Consider
2834/// a large array that uses 'From' 1000 times. By handling this case all here,
Pete Cooper5815b1f2015-06-24 18:55:24 +00002835/// ConstantArray::handleOperandChange is only invoked once, and that
Chris Lattner913849b2007-08-21 00:55:23 +00002836/// single invocation handles all 1000 uses. Handling them one at a time would
2837/// work, but would be really slow because it would have to unique each updated
2838/// array instance.
Chris Lattner31b132c2009-10-28 00:01:44 +00002839///
Pete Cooper5815b1f2015-06-24 18:55:24 +00002840void Constant::handleOperandChange(Value *From, Value *To, Use *U) {
2841 Value *Replacement = nullptr;
2842 switch (getValueID()) {
2843 default:
2844 llvm_unreachable("Not a constant!");
2845#define HANDLE_CONSTANT(Name) \
2846 case Value::Name##Val: \
2847 Replacement = cast<Name>(this)->handleOperandChangeImpl(From, To, U); \
2848 break;
2849#include "llvm/IR/Value.def"
2850 }
2851
2852 // If handleOperandChangeImpl returned nullptr, then it handled
2853 // replacing itself and we don't want to delete or replace anything else here.
2854 if (!Replacement)
2855 return;
2856
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002857 // I do need to replace this with an existing value.
2858 assert(Replacement != this && "I didn't contain From!");
2859
2860 // Everyone using this now uses the replacement.
2861 replaceAllUsesWith(Replacement);
2862
2863 // Delete the old constant!
2864 destroyConstant();
2865}
2866
Pete Cooper5815b1f2015-06-24 18:55:24 +00002867Value *ConstantInt::handleOperandChangeImpl(Value *From, Value *To, Use *U) {
2868 llvm_unreachable("Unsupported class for handleOperandChange()!");
2869}
2870
2871Value *ConstantFP::handleOperandChangeImpl(Value *From, Value *To, Use *U) {
2872 llvm_unreachable("Unsupported class for handleOperandChange()!");
2873}
2874
2875Value *UndefValue::handleOperandChangeImpl(Value *From, Value *To, Use *U) {
2876 llvm_unreachable("Unsupported class for handleOperandChange()!");
2877}
2878
2879Value *ConstantPointerNull::handleOperandChangeImpl(Value *From, Value *To,
2880 Use *U) {
2881 llvm_unreachable("Unsupported class for handleOperandChange()!");
2882}
2883
2884Value *ConstantAggregateZero::handleOperandChangeImpl(Value *From, Value *To,
2885 Use *U) {
2886 llvm_unreachable("Unsupported class for handleOperandChange()!");
2887}
2888
2889Value *ConstantDataSequential::handleOperandChangeImpl(Value *From, Value *To,
2890 Use *U) {
2891 llvm_unreachable("Unsupported class for handleOperandChange()!");
2892}
2893
2894Value *ConstantArray::handleOperandChangeImpl(Value *From, Value *To, Use *U) {
Owen Andersonc2c79322009-07-28 18:32:17 +00002895 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2896 Constant *ToC = cast<Constant>(To);
2897
Talin46e9b442012-02-05 20:54:10 +00002898 SmallVector<Constant*, 8> Values;
Owen Andersonc2c79322009-07-28 18:32:17 +00002899 Values.reserve(getNumOperands()); // Build replacement array.
2900
Galina Kistanovafc259902012-07-13 01:25:27 +00002901 // Fill values with the modified operands of the constant array. Also,
Owen Andersonc2c79322009-07-28 18:32:17 +00002902 // compute whether this turns into an all-zeros array.
Owen Andersonc2c79322009-07-28 18:32:17 +00002903 unsigned NumUpdated = 0;
Galina Kistanovafc259902012-07-13 01:25:27 +00002904
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002905 // Keep track of whether all the values in the array are "ToC".
2906 bool AllSame = true;
Pete Cooper74510a42015-06-12 17:48:05 +00002907 Use *OperandList = getOperandList();
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002908 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2909 Constant *Val = cast<Constant>(O->get());
2910 if (Val == From) {
2911 Val = ToC;
2912 ++NumUpdated;
Owen Andersonc2c79322009-07-28 18:32:17 +00002913 }
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002914 Values.push_back(Val);
Talin46e9b442012-02-05 20:54:10 +00002915 AllSame &= Val == ToC;
Owen Andersonc2c79322009-07-28 18:32:17 +00002916 }
Galina Kistanovafc259902012-07-13 01:25:27 +00002917
Pete Cooper5815b1f2015-06-24 18:55:24 +00002918 if (AllSame && ToC->isNullValue())
2919 return ConstantAggregateZero::get(getType());
2920
2921 if (AllSame && isa<UndefValue>(ToC))
2922 return UndefValue::get(getType());
Aaron Ballmane4b91dc2014-08-19 14:59:02 +00002923
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002924 // Check for any other type of constant-folding.
Pete Cooper5815b1f2015-06-24 18:55:24 +00002925 if (Constant *C = getImpl(getType(), Values))
2926 return C;
Aaron Ballmane4b91dc2014-08-19 14:59:02 +00002927
Duncan P. N. Exon Smith909620a2014-08-19 19:13:30 +00002928 // Update to the new value.
Pete Cooper5815b1f2015-06-24 18:55:24 +00002929 return getContext().pImpl->ArrayConstants.replaceOperandsInPlace(
2930 Values, this, From, ToC, NumUpdated, U - OperandList);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002931}
2932
Pete Cooper5815b1f2015-06-24 18:55:24 +00002933Value *ConstantStruct::handleOperandChangeImpl(Value *From, Value *To, Use *U) {
Owen Anderson45308b52009-07-27 22:29:26 +00002934 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2935 Constant *ToC = cast<Constant>(To);
2936
Pete Cooper74510a42015-06-12 17:48:05 +00002937 Use *OperandList = getOperandList();
Owen Anderson45308b52009-07-27 22:29:26 +00002938 unsigned OperandToUpdate = U-OperandList;
2939 assert(getOperand(OperandToUpdate) == From && "ReplaceAllUsesWith broken!");
2940
Talin46e9b442012-02-05 20:54:10 +00002941 SmallVector<Constant*, 8> Values;
Owen Anderson45308b52009-07-27 22:29:26 +00002942 Values.reserve(getNumOperands()); // Build replacement struct.
Galina Kistanovafc259902012-07-13 01:25:27 +00002943
2944 // Fill values with the modified operands of the constant struct. Also,
Owen Anderson45308b52009-07-27 22:29:26 +00002945 // compute whether this turns into an all-zeros struct.
2946 bool isAllZeros = false;
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002947 bool isAllUndef = false;
2948 if (ToC->isNullValue()) {
Owen Anderson45308b52009-07-27 22:29:26 +00002949 isAllZeros = true;
2950 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2951 Constant *Val = cast<Constant>(O->get());
2952 Values.push_back(Val);
2953 if (isAllZeros) isAllZeros = Val->isNullValue();
2954 }
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002955 } else if (isa<UndefValue>(ToC)) {
2956 isAllUndef = true;
2957 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2958 Constant *Val = cast<Constant>(O->get());
2959 Values.push_back(Val);
2960 if (isAllUndef) isAllUndef = isa<UndefValue>(Val);
2961 }
2962 } else {
2963 for (Use *O = OperandList, *E = OperandList + getNumOperands(); O != E; ++O)
2964 Values.push_back(cast<Constant>(O->get()));
Owen Anderson45308b52009-07-27 22:29:26 +00002965 }
2966 Values[OperandToUpdate] = ToC;
Galina Kistanovafc259902012-07-13 01:25:27 +00002967
Pete Cooper5815b1f2015-06-24 18:55:24 +00002968 if (isAllZeros)
2969 return ConstantAggregateZero::get(getType());
2970
2971 if (isAllUndef)
2972 return UndefValue::get(getType());
Galina Kistanovafc259902012-07-13 01:25:27 +00002973
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002974 // Update to the new value.
Pete Cooper5815b1f2015-06-24 18:55:24 +00002975 return getContext().pImpl->StructConstants.replaceOperandsInPlace(
2976 Values, this, From, ToC);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002977}
2978
Pete Cooper5815b1f2015-06-24 18:55:24 +00002979Value *ConstantVector::handleOperandChangeImpl(Value *From, Value *To, Use *U) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002980 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002981 Constant *ToC = cast<Constant>(To);
Galina Kistanovafc259902012-07-13 01:25:27 +00002982
Chris Lattnera474bb22012-01-26 20:40:56 +00002983 SmallVector<Constant*, 8> Values;
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002984 Values.reserve(getNumOperands()); // Build replacement array...
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002985 unsigned NumUpdated = 0;
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002986 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
2987 Constant *Val = getOperand(i);
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002988 if (Val == From) {
2989 ++NumUpdated;
2990 Val = ToC;
2991 }
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002992 Values.push_back(Val);
2993 }
Galina Kistanovafc259902012-07-13 01:25:27 +00002994
Pete Cooper5815b1f2015-06-24 18:55:24 +00002995 if (Constant *C = getImpl(Values))
2996 return C;
Duncan P. N. Exon Smith687744d2014-08-19 02:24:46 +00002997
Duncan P. N. Exon Smith909620a2014-08-19 19:13:30 +00002998 // Update to the new value.
Pete Cooper74510a42015-06-12 17:48:05 +00002999 Use *OperandList = getOperandList();
Pete Cooper5815b1f2015-06-24 18:55:24 +00003000 return getContext().pImpl->VectorConstants.replaceOperandsInPlace(
3001 Values, this, From, ToC, NumUpdated, U - OperandList);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00003002}
3003
Pete Cooper5815b1f2015-06-24 18:55:24 +00003004Value *ConstantExpr::handleOperandChangeImpl(Value *From, Value *ToV, Use *U) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00003005 assert(isa<Constant>(ToV) && "Cannot make Constant refer to non-constant!");
3006 Constant *To = cast<Constant>(ToV);
Galina Kistanovafc259902012-07-13 01:25:27 +00003007
Chris Lattner37e38352012-01-26 20:37:11 +00003008 SmallVector<Constant*, 8> NewOps;
Duncan P. N. Exon Smith33de00c2014-08-19 20:03:35 +00003009 unsigned NumUpdated = 0;
Chris Lattner37e38352012-01-26 20:37:11 +00003010 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
3011 Constant *Op = getOperand(i);
Duncan P. N. Exon Smith33de00c2014-08-19 20:03:35 +00003012 if (Op == From) {
3013 ++NumUpdated;
3014 Op = To;
3015 }
3016 NewOps.push_back(Op);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00003017 }
Duncan P. N. Exon Smith33de00c2014-08-19 20:03:35 +00003018 assert(NumUpdated && "I didn't contain From!");
Galina Kistanovafc259902012-07-13 01:25:27 +00003019
Pete Cooper5815b1f2015-06-24 18:55:24 +00003020 if (Constant *C = getWithOperands(NewOps, getType(), true))
3021 return C;
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00003022
Duncan P. N. Exon Smith33de00c2014-08-19 20:03:35 +00003023 // Update to the new value.
Pete Cooper74510a42015-06-12 17:48:05 +00003024 Use *OperandList = getOperandList();
Pete Cooper5815b1f2015-06-24 18:55:24 +00003025 return getContext().pImpl->ExprConstants.replaceOperandsInPlace(
3026 NewOps, this, From, To, NumUpdated, U - OperandList);
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00003027}
3028
James Molloyce545682012-11-17 17:56:30 +00003029Instruction *ConstantExpr::getAsInstruction() {
Benjamin Kramer5fbfe2f2015-02-28 13:20:15 +00003030 SmallVector<Value *, 4> ValueOperands(op_begin(), op_end());
James Molloyce545682012-11-17 17:56:30 +00003031 ArrayRef<Value*> Ops(ValueOperands);
3032
3033 switch (getOpcode()) {
3034 case Instruction::Trunc:
3035 case Instruction::ZExt:
3036 case Instruction::SExt:
3037 case Instruction::FPTrunc:
3038 case Instruction::FPExt:
3039 case Instruction::UIToFP:
3040 case Instruction::SIToFP:
3041 case Instruction::FPToUI:
3042 case Instruction::FPToSI:
3043 case Instruction::PtrToInt:
3044 case Instruction::IntToPtr:
3045 case Instruction::BitCast:
Eli Bendersky157a97a2014-01-18 22:54:33 +00003046 case Instruction::AddrSpaceCast:
James Molloyce545682012-11-17 17:56:30 +00003047 return CastInst::Create((Instruction::CastOps)getOpcode(),
3048 Ops[0], getType());
3049 case Instruction::Select:
3050 return SelectInst::Create(Ops[0], Ops[1], Ops[2]);
3051 case Instruction::InsertElement:
3052 return InsertElementInst::Create(Ops[0], Ops[1], Ops[2]);
3053 case Instruction::ExtractElement:
3054 return ExtractElementInst::Create(Ops[0], Ops[1]);
3055 case Instruction::InsertValue:
3056 return InsertValueInst::Create(Ops[0], Ops[1], getIndices());
3057 case Instruction::ExtractValue:
3058 return ExtractValueInst::Create(Ops[0], getIndices());
3059 case Instruction::ShuffleVector:
3060 return new ShuffleVectorInst(Ops[0], Ops[1], Ops[2]);
3061
David Blaikie741c8f82015-03-14 01:53:18 +00003062 case Instruction::GetElementPtr: {
3063 const auto *GO = cast<GEPOperator>(this);
3064 if (GO->isInBounds())
3065 return GetElementPtrInst::CreateInBounds(GO->getSourceElementType(),
3066 Ops[0], Ops.slice(1));
3067 return GetElementPtrInst::Create(GO->getSourceElementType(), Ops[0],
3068 Ops.slice(1));
3069 }
James Molloyce545682012-11-17 17:56:30 +00003070 case Instruction::ICmp:
3071 case Instruction::FCmp:
3072 return CmpInst::Create((Instruction::OtherOps)getOpcode(),
3073 getPredicate(), Ops[0], Ops[1]);
3074
3075 default:
3076 assert(getNumOperands() == 2 && "Must be binary operator?");
3077 BinaryOperator *BO =
3078 BinaryOperator::Create((Instruction::BinaryOps)getOpcode(),
3079 Ops[0], Ops[1]);
3080 if (isa<OverflowingBinaryOperator>(BO)) {
3081 BO->setHasNoUnsignedWrap(SubclassOptionalData &
3082 OverflowingBinaryOperator::NoUnsignedWrap);
3083 BO->setHasNoSignedWrap(SubclassOptionalData &
3084 OverflowingBinaryOperator::NoSignedWrap);
3085 }
3086 if (isa<PossiblyExactOperator>(BO))
3087 BO->setIsExact(SubclassOptionalData & PossiblyExactOperator::IsExact);
3088 return BO;
3089 }
3090}