blob: d8d55b472f32c4ec89d061bc50a9e0d89bdf4430 [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"
Chandler Carruthed0881b2012-12-03 16:50:05 +000017#include "llvm/ADT/STLExtras.h"
18#include "llvm/ADT/SmallVector.h"
19#include "llvm/ADT/StringExtras.h"
20#include "llvm/ADT/StringMap.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000021#include "llvm/IR/DerivedTypes.h"
Chandler Carruth03eb0de2014-03-04 10:40:04 +000022#include "llvm/IR/GetElementPtrTypeIterator.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000023#include "llvm/IR/GlobalValue.h"
24#include "llvm/IR/Instructions.h"
25#include "llvm/IR/Module.h"
26#include "llvm/IR/Operator.h"
Bill Wendling6a462f12006-11-17 08:03:48 +000027#include "llvm/Support/Debug.h"
Torok Edwinccb29cd2009-07-11 13:10:19 +000028#include "llvm/Support/ErrorHandling.h"
Chris Lattner69edc982006-09-28 00:35:06 +000029#include "llvm/Support/ManagedStatic.h"
Bill Wendling6a462f12006-11-17 08:03:48 +000030#include "llvm/Support/MathExtras.h"
Chris Lattner78683a72009-08-23 04:02:03 +000031#include "llvm/Support/raw_ostream.h"
Chris Lattner2f7c9632001-06-06 20:29:01 +000032#include <algorithm>
Talin3a0a30d2011-02-28 23:53:27 +000033#include <cstdarg>
Chris Lattner189d19f2003-11-21 20:23:48 +000034using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000035
Chris Lattner2f7c9632001-06-06 20:29:01 +000036//===----------------------------------------------------------------------===//
Chris Lattner3462ae32001-12-03 22:26:30 +000037// Constant Class
Chris Lattner2f7c9632001-06-06 20:29:01 +000038//===----------------------------------------------------------------------===//
39
David Blaikiea379b1812011-12-20 02:50:00 +000040void Constant::anchor() { }
41
Duncan P. N. Exon Smithb6452792016-02-21 02:39:49 +000042void ConstantData::anchor() {}
43
Chris Lattnerac5fb562011-07-15 05:58:04 +000044bool Constant::isNegativeZeroValue() const {
45 // Floating point values have an explicit -0.0 value.
46 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
47 return CFP->isZero() && CFP->isNegative();
Galina Kistanovafc259902012-07-13 01:25:27 +000048
David Tweed5493fee2013-03-18 11:54:44 +000049 // Equivalent for a vector of -0.0's.
50 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this))
51 if (ConstantFP *SplatCFP = dyn_cast_or_null<ConstantFP>(CV->getSplatValue()))
52 if (SplatCFP && SplatCFP->isZero() && SplatCFP->isNegative())
53 return true;
54
Owen Anderson8e851302015-11-20 22:34:48 +000055 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
56 if (ConstantFP *SplatCFP = dyn_cast_or_null<ConstantFP>(CV->getSplatValue()))
57 if (SplatCFP && SplatCFP->isZero() && SplatCFP->isNegative())
58 return true;
59
David Tweed298e4192013-03-19 10:16:40 +000060 // We've already handled true FP case; any other FP vectors can't represent -0.0.
61 if (getType()->isFPOrFPVectorTy())
62 return false;
David Tweed5493fee2013-03-18 11:54:44 +000063
Chris Lattnerac5fb562011-07-15 05:58:04 +000064 // Otherwise, just use +0.0.
65 return isNullValue();
66}
67
Shuxin Yang9ca562e2013-01-09 00:53:25 +000068// Return true iff this constant is positive zero (floating point), negative
69// zero (floating point), or a null value.
Shuxin Yangf0537ab2013-01-09 00:13:41 +000070bool Constant::isZeroValue() const {
71 // Floating point values have an explicit -0.0 value.
72 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
73 return CFP->isZero();
74
Owen Anderson630077e2015-11-20 08:16:13 +000075 // Equivalent for a vector of -0.0's.
76 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this))
77 if (ConstantFP *SplatCFP = dyn_cast_or_null<ConstantFP>(CV->getSplatValue()))
78 if (SplatCFP && SplatCFP->isZero())
79 return true;
80
Owen Anderson8e851302015-11-20 22:34:48 +000081 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
82 if (ConstantFP *SplatCFP = dyn_cast_or_null<ConstantFP>(CV->getSplatValue()))
83 if (SplatCFP && SplatCFP->isZero())
84 return true;
85
Shuxin Yangf0537ab2013-01-09 00:13:41 +000086 // Otherwise, just use +0.0.
87 return isNullValue();
88}
89
Chris Lattnerbe6610c2011-07-15 06:14:08 +000090bool Constant::isNullValue() const {
91 // 0 is null.
92 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
93 return CI->isZero();
Galina Kistanovafc259902012-07-13 01:25:27 +000094
Chris Lattnerbe6610c2011-07-15 06:14:08 +000095 // +0.0 is null.
96 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
97 return CFP->isZero() && !CFP->isNegative();
98
David Majnemerf0f224d2015-11-11 21:57:16 +000099 // constant zero is zero for aggregates, cpnull is null for pointers, none for
100 // tokens.
101 return isa<ConstantAggregateZero>(this) || isa<ConstantPointerNull>(this) ||
102 isa<ConstantTokenNone>(this);
Chris Lattnerbe6610c2011-07-15 06:14:08 +0000103}
104
Nadav Rotem365af6f2011-08-24 20:18:38 +0000105bool Constant::isAllOnesValue() const {
106 // Check for -1 integers
107 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
108 return CI->isMinusOne();
109
110 // Check for FP which are bitcasted from -1 integers
111 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
112 return CFP->getValueAPF().bitcastToAPInt().isAllOnesValue();
113
Benjamin Kramer42d098e2011-11-14 19:12:20 +0000114 // Check for constant vectors which are splats of -1 values.
Nadav Rotem365af6f2011-08-24 20:18:38 +0000115 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
Benjamin Kramer42d098e2011-11-14 19:12:20 +0000116 if (Constant *Splat = CV->getSplatValue())
117 return Splat->isAllOnesValue();
Nadav Rotem365af6f2011-08-24 20:18:38 +0000118
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000119 // Check for constant vectors which are splats of -1 values.
120 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this))
121 if (Constant *Splat = CV->getSplatValue())
122 return Splat->isAllOnesValue();
123
Nadav Rotem365af6f2011-08-24 20:18:38 +0000124 return false;
125}
Benjamin Kramer42d098e2011-11-14 19:12:20 +0000126
David Majnemer1a0bbc82014-08-16 09:23:42 +0000127bool Constant::isOneValue() const {
128 // Check for 1 integers
129 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
130 return CI->isOne();
131
132 // Check for FP which are bitcasted from 1 integers
133 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
134 return CFP->getValueAPF().bitcastToAPInt() == 1;
135
136 // Check for constant vectors which are splats of 1 values.
137 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
138 if (Constant *Splat = CV->getSplatValue())
139 return Splat->isOneValue();
140
141 // Check for constant vectors which are splats of 1 values.
142 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this))
143 if (Constant *Splat = CV->getSplatValue())
144 return Splat->isOneValue();
145
146 return false;
147}
148
David Majnemerbdeef602014-07-02 06:07:09 +0000149bool Constant::isMinSignedValue() const {
150 // Check for INT_MIN integers
151 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
152 return CI->isMinValue(/*isSigned=*/true);
153
154 // Check for FP which are bitcasted from INT_MIN integers
155 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
156 return CFP->getValueAPF().bitcastToAPInt().isMinSignedValue();
157
158 // Check for constant vectors which are splats of INT_MIN values.
159 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
160 if (Constant *Splat = CV->getSplatValue())
161 return Splat->isMinSignedValue();
162
163 // Check for constant vectors which are splats of INT_MIN values.
164 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this))
165 if (Constant *Splat = CV->getSplatValue())
166 return Splat->isMinSignedValue();
167
168 return false;
169}
170
David Majnemer0e6c9862014-08-22 16:41:23 +0000171bool Constant::isNotMinSignedValue() const {
172 // Check for INT_MIN integers
173 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
174 return !CI->isMinValue(/*isSigned=*/true);
175
176 // Check for FP which are bitcasted from INT_MIN integers
177 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
178 return !CFP->getValueAPF().bitcastToAPInt().isMinSignedValue();
179
180 // Check for constant vectors which are splats of INT_MIN values.
181 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
182 if (Constant *Splat = CV->getSplatValue())
183 return Splat->isNotMinSignedValue();
184
185 // Check for constant vectors which are splats of INT_MIN values.
186 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this))
187 if (Constant *Splat = CV->getSplatValue())
188 return Splat->isNotMinSignedValue();
189
190 // It *may* contain INT_MIN, we can't tell.
191 return false;
192}
193
Sanjay Patel1d0ac7c2016-04-29 22:03:27 +0000194/// Constructor to create a '0' constant of arbitrary type.
Chris Lattner229907c2011-07-18 04:54:35 +0000195Constant *Constant::getNullValue(Type *Ty) {
Owen Anderson5a1acd92009-07-31 20:28:14 +0000196 switch (Ty->getTypeID()) {
197 case Type::IntegerTyID:
198 return ConstantInt::get(Ty, 0);
Dan Gohman518cda42011-12-17 00:04:22 +0000199 case Type::HalfTyID:
200 return ConstantFP::get(Ty->getContext(),
201 APFloat::getZero(APFloat::IEEEhalf));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000202 case Type::FloatTyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000203 return ConstantFP::get(Ty->getContext(),
204 APFloat::getZero(APFloat::IEEEsingle));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000205 case Type::DoubleTyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000206 return ConstantFP::get(Ty->getContext(),
207 APFloat::getZero(APFloat::IEEEdouble));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000208 case Type::X86_FP80TyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000209 return ConstantFP::get(Ty->getContext(),
210 APFloat::getZero(APFloat::x87DoubleExtended));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000211 case Type::FP128TyID:
212 return ConstantFP::get(Ty->getContext(),
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000213 APFloat::getZero(APFloat::IEEEquad));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000214 case Type::PPC_FP128TyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000215 return ConstantFP::get(Ty->getContext(),
Tim Northover29178a32013-01-22 09:46:31 +0000216 APFloat(APFloat::PPCDoubleDouble,
217 APInt::getNullValue(128)));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000218 case Type::PointerTyID:
219 return ConstantPointerNull::get(cast<PointerType>(Ty));
220 case Type::StructTyID:
221 case Type::ArrayTyID:
222 case Type::VectorTyID:
223 return ConstantAggregateZero::get(Ty);
David Majnemerf0f224d2015-11-11 21:57:16 +0000224 case Type::TokenTyID:
225 return ConstantTokenNone::get(Ty->getContext());
Owen Anderson5a1acd92009-07-31 20:28:14 +0000226 default:
227 // Function, Label, or Opaque type?
Craig Topperc514b542012-02-05 22:14:15 +0000228 llvm_unreachable("Cannot create a null constant of that type!");
Owen Anderson5a1acd92009-07-31 20:28:14 +0000229 }
230}
231
Chris Lattner229907c2011-07-18 04:54:35 +0000232Constant *Constant::getIntegerValue(Type *Ty, const APInt &V) {
233 Type *ScalarTy = Ty->getScalarType();
Dan Gohmanf011f5a2009-08-03 22:07:33 +0000234
235 // Create the base integer constant.
236 Constant *C = ConstantInt::get(Ty->getContext(), V);
237
238 // Convert an integer to a pointer, if necessary.
Chris Lattner229907c2011-07-18 04:54:35 +0000239 if (PointerType *PTy = dyn_cast<PointerType>(ScalarTy))
Dan Gohmanf011f5a2009-08-03 22:07:33 +0000240 C = ConstantExpr::getIntToPtr(C, PTy);
241
242 // Broadcast a scalar to a vector, if necessary.
Chris Lattner229907c2011-07-18 04:54:35 +0000243 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000244 C = ConstantVector::getSplat(VTy->getNumElements(), C);
Dan Gohmanf011f5a2009-08-03 22:07:33 +0000245
246 return C;
247}
248
Chris Lattner229907c2011-07-18 04:54:35 +0000249Constant *Constant::getAllOnesValue(Type *Ty) {
250 if (IntegerType *ITy = dyn_cast<IntegerType>(Ty))
Owen Anderson5a1acd92009-07-31 20:28:14 +0000251 return ConstantInt::get(Ty->getContext(),
252 APInt::getAllOnesValue(ITy->getBitWidth()));
Nadav Rotem7cc6d122011-02-17 21:22:27 +0000253
254 if (Ty->isFloatingPointTy()) {
255 APFloat FL = APFloat::getAllOnesValue(Ty->getPrimitiveSizeInBits(),
256 !Ty->isPPC_FP128Ty());
257 return ConstantFP::get(Ty->getContext(), FL);
258 }
259
Chris Lattner229907c2011-07-18 04:54:35 +0000260 VectorType *VTy = cast<VectorType>(Ty);
Chris Lattnere9eed292012-01-25 05:19:54 +0000261 return ConstantVector::getSplat(VTy->getNumElements(),
262 getAllOnesValue(VTy->getElementType()));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000263}
264
Chris Lattner7e683d12012-01-25 06:16:32 +0000265Constant *Constant::getAggregateElement(unsigned Elt) const {
Duncan P. N. Exon Smith1de3c7e2016-04-05 21:10:45 +0000266 if (const ConstantAggregate *CC = dyn_cast<ConstantAggregate>(this))
267 return Elt < CC->getNumOperands() ? CC->getOperand(Elt) : nullptr;
Galina Kistanovafc259902012-07-13 01:25:27 +0000268
David Majnemer9b529a72015-02-16 04:02:09 +0000269 if (const ConstantAggregateZero *CAZ = dyn_cast<ConstantAggregateZero>(this))
270 return Elt < CAZ->getNumElements() ? CAZ->getElementValue(Elt) : nullptr;
Galina Kistanovafc259902012-07-13 01:25:27 +0000271
Chris Lattner7e683d12012-01-25 06:16:32 +0000272 if (const UndefValue *UV = dyn_cast<UndefValue>(this))
David Majnemer9b529a72015-02-16 04:02:09 +0000273 return Elt < UV->getNumElements() ? UV->getElementValue(Elt) : nullptr;
Galina Kistanovafc259902012-07-13 01:25:27 +0000274
Chris Lattner8326bd82012-01-26 00:42:34 +0000275 if (const ConstantDataSequential *CDS =dyn_cast<ConstantDataSequential>(this))
Craig Topperc6207612014-04-09 06:08:46 +0000276 return Elt < CDS->getNumElements() ? CDS->getElementAsConstant(Elt)
277 : nullptr;
278 return nullptr;
Chris Lattner7e683d12012-01-25 06:16:32 +0000279}
280
281Constant *Constant::getAggregateElement(Constant *Elt) const {
282 assert(isa<IntegerType>(Elt->getType()) && "Index must be an integer");
283 if (ConstantInt *CI = dyn_cast<ConstantInt>(Elt))
284 return getAggregateElement(CI->getZExtValue());
Craig Topperc6207612014-04-09 06:08:46 +0000285 return nullptr;
Chris Lattner7e683d12012-01-25 06:16:32 +0000286}
287
Pete Cooper86dd4cf2015-06-23 21:55:11 +0000288void Constant::destroyConstant() {
289 /// First call destroyConstantImpl on the subclass. This gives the subclass
290 /// a chance to remove the constant from any maps/pools it's contained in.
291 switch (getValueID()) {
292 default:
293 llvm_unreachable("Not a constant!");
294#define HANDLE_CONSTANT(Name) \
295 case Value::Name##Val: \
296 cast<Name>(this)->destroyConstantImpl(); \
297 break;
298#include "llvm/IR/Value.def"
299 }
Chris Lattner7e683d12012-01-25 06:16:32 +0000300
Chris Lattner3462ae32001-12-03 22:26:30 +0000301 // When a Constant is destroyed, there may be lingering
Chris Lattnerd7a73302001-10-13 06:57:33 +0000302 // references to the constant by other constants in the constant pool. These
Misha Brukmanbe372b92003-08-21 22:14:26 +0000303 // constants are implicitly dependent on the module that is being deleted,
Chris Lattnerd7a73302001-10-13 06:57:33 +0000304 // but they don't know that. Because we only find out when the CPV is
305 // deleted, we must now notify all of our users (that should only be
Chris Lattner3462ae32001-12-03 22:26:30 +0000306 // Constants) that they are, in fact, invalid now and should be deleted.
Chris Lattnerd7a73302001-10-13 06:57:33 +0000307 //
308 while (!use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000309 Value *V = user_back();
Pete Cooper86dd4cf2015-06-23 21:55:11 +0000310#ifndef NDEBUG // Only in -g mode...
Chris Lattner78683a72009-08-23 04:02:03 +0000311 if (!isa<Constant>(V)) {
David Greene1e27a132010-01-05 01:29:19 +0000312 dbgs() << "While deleting: " << *this
Pete Cooper86dd4cf2015-06-23 21:55:11 +0000313 << "\n\nUse still stuck around after Def is destroyed: " << *V
314 << "\n\n";
Chris Lattner78683a72009-08-23 04:02:03 +0000315 }
Chris Lattnerd7a73302001-10-13 06:57:33 +0000316#endif
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000317 assert(isa<Constant>(V) && "References remain to Constant being destroyed");
Chris Lattner8326bd82012-01-26 00:42:34 +0000318 cast<Constant>(V)->destroyConstant();
Chris Lattnerd7a73302001-10-13 06:57:33 +0000319
320 // The constant should remove itself from our use list...
Chandler Carruthcdf47882014-03-09 03:16:01 +0000321 assert((use_empty() || user_back() != V) && "Constant not removed!");
Chris Lattnerd7a73302001-10-13 06:57:33 +0000322 }
323
324 // Value has no outstanding references it is safe to delete it now...
325 delete this;
Chris Lattner38569342001-10-01 20:11:19 +0000326}
Chris Lattner2f7c9632001-06-06 20:29:01 +0000327
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +0000328static bool canTrapImpl(const Constant *C,
Craig Topper71b7b682014-08-21 05:55:13 +0000329 SmallPtrSetImpl<const ConstantExpr *> &NonTrappingOps) {
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +0000330 assert(C->getType()->isFirstClassType() && "Cannot evaluate aggregate vals!");
Chris Lattner23dd1f62006-10-20 00:27:06 +0000331 // The only thing that could possibly trap are constant exprs.
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +0000332 const ConstantExpr *CE = dyn_cast<ConstantExpr>(C);
333 if (!CE)
334 return false;
Galina Kistanovafc259902012-07-13 01:25:27 +0000335
336 // ConstantExpr traps if any operands can trap.
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +0000337 for (unsigned i = 0, e = C->getNumOperands(); i != e; ++i) {
338 if (ConstantExpr *Op = dyn_cast<ConstantExpr>(CE->getOperand(i))) {
David Blaikie70573dc2014-11-19 07:49:26 +0000339 if (NonTrappingOps.insert(Op).second && canTrapImpl(Op, NonTrappingOps))
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +0000340 return true;
341 }
342 }
Chris Lattner23dd1f62006-10-20 00:27:06 +0000343
344 // Otherwise, only specific operations can trap.
345 switch (CE->getOpcode()) {
346 default:
347 return false;
Reid Spencer7e80b0b2006-10-26 06:15:43 +0000348 case Instruction::UDiv:
349 case Instruction::SDiv:
350 case Instruction::FDiv:
Reid Spencer7eb55b32006-11-02 01:53:59 +0000351 case Instruction::URem:
352 case Instruction::SRem:
353 case Instruction::FRem:
Chris Lattner23dd1f62006-10-20 00:27:06 +0000354 // Div and rem can trap if the RHS is not known to be non-zero.
Chris Lattnera91a5632009-10-28 05:14:34 +0000355 if (!isa<ConstantInt>(CE->getOperand(1)) ||CE->getOperand(1)->isNullValue())
Chris Lattner23dd1f62006-10-20 00:27:06 +0000356 return true;
357 return false;
358 }
359}
360
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +0000361bool Constant::canTrap() const {
362 SmallPtrSet<const ConstantExpr *, 4> NonTrappingOps;
363 return canTrapImpl(this, NonTrappingOps);
364}
365
Hans Wennborg4dc89512014-06-20 00:38:12 +0000366/// Check if C contains a GlobalValue for which Predicate is true.
367static bool
368ConstHasGlobalValuePredicate(const Constant *C,
369 bool (*Predicate)(const GlobalValue *)) {
370 SmallPtrSet<const Constant *, 8> Visited;
371 SmallVector<const Constant *, 8> WorkList;
372 WorkList.push_back(C);
373 Visited.insert(C);
Hans Wennborg709e0152012-11-15 11:40:00 +0000374
375 while (!WorkList.empty()) {
Hans Wennborg4dc89512014-06-20 00:38:12 +0000376 const Constant *WorkItem = WorkList.pop_back_val();
377 if (const auto *GV = dyn_cast<GlobalValue>(WorkItem))
378 if (Predicate(GV))
Hans Wennborg709e0152012-11-15 11:40:00 +0000379 return true;
Hans Wennborg4dc89512014-06-20 00:38:12 +0000380 for (const Value *Op : WorkItem->operands()) {
381 const Constant *ConstOp = dyn_cast<Constant>(Op);
382 if (!ConstOp)
Hans Wennborg18aa12402012-11-16 10:33:25 +0000383 continue;
David Blaikie70573dc2014-11-19 07:49:26 +0000384 if (Visited.insert(ConstOp).second)
Hans Wennborg4dc89512014-06-20 00:38:12 +0000385 WorkList.push_back(ConstOp);
Hans Wennborg709e0152012-11-15 11:40:00 +0000386 }
387 }
Hans Wennborg709e0152012-11-15 11:40:00 +0000388 return false;
389}
390
Hans Wennborg4dc89512014-06-20 00:38:12 +0000391bool Constant::isThreadDependent() const {
392 auto DLLImportPredicate = [](const GlobalValue *GV) {
393 return GV->isThreadLocal();
394 };
395 return ConstHasGlobalValuePredicate(this, DLLImportPredicate);
396}
397
398bool Constant::isDLLImportDependent() const {
399 auto DLLImportPredicate = [](const GlobalValue *GV) {
400 return GV->hasDLLImportStorageClass();
401 };
402 return ConstHasGlobalValuePredicate(this, DLLImportPredicate);
403}
404
Chris Lattner253bc772009-11-01 18:11:50 +0000405bool Constant::isConstantUsed() const {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000406 for (const User *U : users()) {
407 const Constant *UC = dyn_cast<Constant>(U);
Craig Topperc6207612014-04-09 06:08:46 +0000408 if (!UC || isa<GlobalValue>(UC))
Chris Lattner253bc772009-11-01 18:11:50 +0000409 return true;
Galina Kistanovafc259902012-07-13 01:25:27 +0000410
Chris Lattner253bc772009-11-01 18:11:50 +0000411 if (UC->isConstantUsed())
412 return true;
413 }
414 return false;
415}
416
Rafael Espindola65e49022015-11-17 00:51:23 +0000417bool Constant::needsRelocation() const {
418 if (isa<GlobalValue>(this))
419 return true; // Global reference.
420
Chris Lattner2cb85b42009-10-28 04:12:16 +0000421 if (const BlockAddress *BA = dyn_cast<BlockAddress>(this))
Rafael Espindola65e49022015-11-17 00:51:23 +0000422 return BA->getFunction()->needsRelocation();
423
Chris Lattnera7cfc432010-01-03 18:09:40 +0000424 // While raw uses of blockaddress need to be relocated, differences between
425 // two of them don't when they are for labels in the same function. This is a
426 // common idiom when creating a table for the indirect goto extension, so we
427 // handle it efficiently here.
428 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(this))
429 if (CE->getOpcode() == Instruction::Sub) {
430 ConstantExpr *LHS = dyn_cast<ConstantExpr>(CE->getOperand(0));
431 ConstantExpr *RHS = dyn_cast<ConstantExpr>(CE->getOperand(1));
Rafael Espindola65e49022015-11-17 00:51:23 +0000432 if (LHS && RHS && LHS->getOpcode() == Instruction::PtrToInt &&
Chris Lattnera7cfc432010-01-03 18:09:40 +0000433 RHS->getOpcode() == Instruction::PtrToInt &&
434 isa<BlockAddress>(LHS->getOperand(0)) &&
435 isa<BlockAddress>(RHS->getOperand(0)) &&
436 cast<BlockAddress>(LHS->getOperand(0))->getFunction() ==
Rafael Espindola65e49022015-11-17 00:51:23 +0000437 cast<BlockAddress>(RHS->getOperand(0))->getFunction())
438 return false;
Chris Lattnera7cfc432010-01-03 18:09:40 +0000439 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000440
Rafael Espindola65e49022015-11-17 00:51:23 +0000441 bool Result = false;
Evan Chengf9e003b2007-03-08 00:59:12 +0000442 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Rafael Espindola65e49022015-11-17 00:51:23 +0000443 Result |= cast<Constant>(getOperand(i))->needsRelocation();
Galina Kistanovafc259902012-07-13 01:25:27 +0000444
Chris Lattner4565ef52009-07-22 00:05:44 +0000445 return Result;
Evan Chengf9e003b2007-03-08 00:59:12 +0000446}
447
Sanjay Patel1d0ac7c2016-04-29 22:03:27 +0000448/// If the specified constantexpr is dead, remove it. This involves recursively
449/// eliminating any dead users of the constantexpr.
Chris Lattner84886402011-02-18 04:41:42 +0000450static bool removeDeadUsersOfConstant(const Constant *C) {
451 if (isa<GlobalValue>(C)) return false; // Cannot remove this
Galina Kistanovafc259902012-07-13 01:25:27 +0000452
Chris Lattner84886402011-02-18 04:41:42 +0000453 while (!C->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000454 const Constant *User = dyn_cast<Constant>(C->user_back());
Chris Lattner84886402011-02-18 04:41:42 +0000455 if (!User) return false; // Non-constant usage;
456 if (!removeDeadUsersOfConstant(User))
457 return false; // Constant wasn't dead
458 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000459
Chris Lattner84886402011-02-18 04:41:42 +0000460 const_cast<Constant*>(C)->destroyConstant();
461 return true;
462}
463
464
Chris Lattner84886402011-02-18 04:41:42 +0000465void Constant::removeDeadConstantUsers() const {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000466 Value::const_user_iterator I = user_begin(), E = user_end();
467 Value::const_user_iterator LastNonDeadUser = E;
Chris Lattner84886402011-02-18 04:41:42 +0000468 while (I != E) {
469 const Constant *User = dyn_cast<Constant>(*I);
Craig Topperc6207612014-04-09 06:08:46 +0000470 if (!User) {
Chris Lattner84886402011-02-18 04:41:42 +0000471 LastNonDeadUser = I;
472 ++I;
473 continue;
474 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000475
Chris Lattner84886402011-02-18 04:41:42 +0000476 if (!removeDeadUsersOfConstant(User)) {
477 // If the constant wasn't dead, remember that this was the last live use
478 // and move on to the next constant.
479 LastNonDeadUser = I;
480 ++I;
481 continue;
482 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000483
Chris Lattner84886402011-02-18 04:41:42 +0000484 // If the constant was dead, then the iterator is invalidated.
485 if (LastNonDeadUser == E) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000486 I = user_begin();
Chris Lattner84886402011-02-18 04:41:42 +0000487 if (I == E) break;
488 } else {
489 I = LastNonDeadUser;
490 ++I;
491 }
492 }
493}
494
495
Chris Lattner2105d662008-07-10 00:28:11 +0000496
Chris Lattner2f7c9632001-06-06 20:29:01 +0000497//===----------------------------------------------------------------------===//
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000498// ConstantInt
Chris Lattner2f7c9632001-06-06 20:29:01 +0000499//===----------------------------------------------------------------------===//
500
David Blaikiea379b1812011-12-20 02:50:00 +0000501void ConstantInt::anchor() { }
502
Duncan P. N. Exon Smithb6452792016-02-21 02:39:49 +0000503ConstantInt::ConstantInt(IntegerType *Ty, const APInt &V)
504 : ConstantData(Ty, ConstantIntVal), Val(V) {
Reid Spencerb31bffe2007-02-26 23:54:03 +0000505 assert(V.getBitWidth() == Ty->getBitWidth() && "Invalid constant for type");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000506}
507
Nick Lewycky92db8e82011-03-06 03:36:19 +0000508ConstantInt *ConstantInt::getTrue(LLVMContext &Context) {
Owen Anderson23a204d2009-07-31 17:39:07 +0000509 LLVMContextImpl *pImpl = Context.pImpl;
Benjamin Kramerddd1b7b2010-11-20 18:43:35 +0000510 if (!pImpl->TheTrueVal)
511 pImpl->TheTrueVal = ConstantInt::get(Type::getInt1Ty(Context), 1);
512 return pImpl->TheTrueVal;
Owen Anderson23a204d2009-07-31 17:39:07 +0000513}
514
Nick Lewycky92db8e82011-03-06 03:36:19 +0000515ConstantInt *ConstantInt::getFalse(LLVMContext &Context) {
Owen Anderson23a204d2009-07-31 17:39:07 +0000516 LLVMContextImpl *pImpl = Context.pImpl;
Benjamin Kramerddd1b7b2010-11-20 18:43:35 +0000517 if (!pImpl->TheFalseVal)
518 pImpl->TheFalseVal = ConstantInt::get(Type::getInt1Ty(Context), 0);
519 return pImpl->TheFalseVal;
Owen Anderson23a204d2009-07-31 17:39:07 +0000520}
521
Chris Lattner229907c2011-07-18 04:54:35 +0000522Constant *ConstantInt::getTrue(Type *Ty) {
523 VectorType *VTy = dyn_cast<VectorType>(Ty);
Nick Lewycky92db8e82011-03-06 03:36:19 +0000524 if (!VTy) {
525 assert(Ty->isIntegerTy(1) && "True must be i1 or vector of i1.");
526 return ConstantInt::getTrue(Ty->getContext());
527 }
528 assert(VTy->getElementType()->isIntegerTy(1) &&
529 "True must be vector of i1 or i1.");
Chris Lattnere9eed292012-01-25 05:19:54 +0000530 return ConstantVector::getSplat(VTy->getNumElements(),
531 ConstantInt::getTrue(Ty->getContext()));
Nick Lewycky92db8e82011-03-06 03:36:19 +0000532}
533
Chris Lattner229907c2011-07-18 04:54:35 +0000534Constant *ConstantInt::getFalse(Type *Ty) {
535 VectorType *VTy = dyn_cast<VectorType>(Ty);
Nick Lewycky92db8e82011-03-06 03:36:19 +0000536 if (!VTy) {
537 assert(Ty->isIntegerTy(1) && "False must be i1 or vector of i1.");
538 return ConstantInt::getFalse(Ty->getContext());
539 }
540 assert(VTy->getElementType()->isIntegerTy(1) &&
541 "False must be vector of i1 or i1.");
Chris Lattnere9eed292012-01-25 05:19:54 +0000542 return ConstantVector::getSplat(VTy->getNumElements(),
543 ConstantInt::getFalse(Ty->getContext()));
Nick Lewycky92db8e82011-03-06 03:36:19 +0000544}
545
Benjamin Kramer8e5dc532014-12-06 13:12:56 +0000546// Get a ConstantInt from an APInt.
Nick Lewycky92db8e82011-03-06 03:36:19 +0000547ConstantInt *ConstantInt::get(LLVMContext &Context, const APInt &V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000548 // get an existing value or the insertion position
Benjamin Kramer320682f2013-06-01 17:51:03 +0000549 LLVMContextImpl *pImpl = Context.pImpl;
Benjamin Kramer8e5dc532014-12-06 13:12:56 +0000550 ConstantInt *&Slot = pImpl->IntConstants[V];
551 if (!Slot) {
552 // Get the corresponding integer type for the bit width of the value.
553 IntegerType *ITy = IntegerType::get(Context, V.getBitWidth());
NAKAMURA Takumifc3062f2014-12-06 05:57:06 +0000554 Slot = new ConstantInt(ITy, V);
Benjamin Kramer8e5dc532014-12-06 13:12:56 +0000555 }
556 assert(Slot->getType() == IntegerType::get(Context, V.getBitWidth()));
Owen Anderson5dab84c2009-10-19 20:11:52 +0000557 return Slot;
Owen Andersonedb4a702009-07-24 23:12:02 +0000558}
559
Chris Lattner229907c2011-07-18 04:54:35 +0000560Constant *ConstantInt::get(Type *Ty, uint64_t V, bool isSigned) {
Nick Lewycky92db8e82011-03-06 03:36:19 +0000561 Constant *C = get(cast<IntegerType>(Ty->getScalarType()), V, isSigned);
Owen Andersonedb4a702009-07-24 23:12:02 +0000562
563 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000564 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000565 return ConstantVector::getSplat(VTy->getNumElements(), C);
Owen Andersonedb4a702009-07-24 23:12:02 +0000566
567 return C;
568}
569
Sanjay Patelf3587ec2016-05-18 22:05:28 +0000570ConstantInt *ConstantInt::get(IntegerType *Ty, uint64_t V, bool isSigned) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000571 return get(Ty->getContext(), APInt(Ty->getBitWidth(), V, isSigned));
572}
573
Chris Lattner0256be92012-01-27 03:08:05 +0000574ConstantInt *ConstantInt::getSigned(IntegerType *Ty, int64_t V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000575 return get(Ty, V, true);
576}
577
Chris Lattner229907c2011-07-18 04:54:35 +0000578Constant *ConstantInt::getSigned(Type *Ty, int64_t V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000579 return get(Ty, V, true);
580}
581
Chris Lattner0256be92012-01-27 03:08:05 +0000582Constant *ConstantInt::get(Type *Ty, const APInt& V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000583 ConstantInt *C = get(Ty->getContext(), V);
584 assert(C->getType() == Ty->getScalarType() &&
585 "ConstantInt type doesn't match the type implied by its value!");
586
587 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000588 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000589 return ConstantVector::getSplat(VTy->getNumElements(), C);
Owen Andersonedb4a702009-07-24 23:12:02 +0000590
591 return C;
592}
593
Sanjay Patelf3587ec2016-05-18 22:05:28 +0000594ConstantInt *ConstantInt::get(IntegerType* Ty, StringRef Str, uint8_t radix) {
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000595 return get(Ty->getContext(), APInt(Ty->getBitWidth(), Str, radix));
596}
597
Pete Cooper86dd4cf2015-06-23 21:55:11 +0000598/// Remove the constant from the constant table.
599void ConstantInt::destroyConstantImpl() {
600 llvm_unreachable("You can't ConstantInt->destroyConstantImpl()!");
601}
602
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000603//===----------------------------------------------------------------------===//
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000604// ConstantFP
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000605//===----------------------------------------------------------------------===//
606
Chris Lattner229907c2011-07-18 04:54:35 +0000607static const fltSemantics *TypeToFloatSemantics(Type *Ty) {
Dan Gohman518cda42011-12-17 00:04:22 +0000608 if (Ty->isHalfTy())
609 return &APFloat::IEEEhalf;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000610 if (Ty->isFloatTy())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000611 return &APFloat::IEEEsingle;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000612 if (Ty->isDoubleTy())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000613 return &APFloat::IEEEdouble;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000614 if (Ty->isX86_FP80Ty())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000615 return &APFloat::x87DoubleExtended;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000616 else if (Ty->isFP128Ty())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000617 return &APFloat::IEEEquad;
Galina Kistanovafc259902012-07-13 01:25:27 +0000618
Chris Lattnerfdd87902009-10-05 05:54:46 +0000619 assert(Ty->isPPC_FP128Ty() && "Unknown FP format");
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000620 return &APFloat::PPCDoubleDouble;
621}
622
David Blaikiea379b1812011-12-20 02:50:00 +0000623void ConstantFP::anchor() { }
624
Chris Lattner0256be92012-01-27 03:08:05 +0000625Constant *ConstantFP::get(Type *Ty, double V) {
Owen Anderson69c464d2009-07-27 20:59:43 +0000626 LLVMContext &Context = Ty->getContext();
Galina Kistanovafc259902012-07-13 01:25:27 +0000627
Owen Anderson69c464d2009-07-27 20:59:43 +0000628 APFloat FV(V);
629 bool ignored;
630 FV.convert(*TypeToFloatSemantics(Ty->getScalarType()),
631 APFloat::rmNearestTiesToEven, &ignored);
632 Constant *C = get(Context, FV);
633
634 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000635 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000636 return ConstantVector::getSplat(VTy->getNumElements(), C);
Owen Anderson69c464d2009-07-27 20:59:43 +0000637
638 return C;
639}
640
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000641
Chris Lattner0256be92012-01-27 03:08:05 +0000642Constant *ConstantFP::get(Type *Ty, StringRef Str) {
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000643 LLVMContext &Context = Ty->getContext();
644
645 APFloat FV(*TypeToFloatSemantics(Ty->getScalarType()), Str);
646 Constant *C = get(Context, FV);
647
648 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000649 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000650 return ConstantVector::getSplat(VTy->getNumElements(), C);
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000651
652 return C;
653}
654
Tom Stellard67246d12015-04-20 19:38:24 +0000655Constant *ConstantFP::getNaN(Type *Ty, bool Negative, unsigned Type) {
656 const fltSemantics &Semantics = *TypeToFloatSemantics(Ty->getScalarType());
657 APFloat NaN = APFloat::getNaN(Semantics, Negative, Type);
658 Constant *C = get(Ty->getContext(), NaN);
659
660 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
661 return ConstantVector::getSplat(VTy->getNumElements(), C);
662
663 return C;
664}
665
Benjamin Kramer5d2ff222014-01-18 16:43:06 +0000666Constant *ConstantFP::getNegativeZero(Type *Ty) {
667 const fltSemantics &Semantics = *TypeToFloatSemantics(Ty->getScalarType());
668 APFloat NegZero = APFloat::getZero(Semantics, /*Negative=*/true);
669 Constant *C = get(Ty->getContext(), NegZero);
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000670
Benjamin Kramer5d2ff222014-01-18 16:43:06 +0000671 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
672 return ConstantVector::getSplat(VTy->getNumElements(), C);
673
674 return C;
Owen Anderson69c464d2009-07-27 20:59:43 +0000675}
676
677
Chris Lattnere9eed292012-01-25 05:19:54 +0000678Constant *ConstantFP::getZeroValueForNegation(Type *Ty) {
Benjamin Kramer5d2ff222014-01-18 16:43:06 +0000679 if (Ty->isFPOrFPVectorTy())
680 return getNegativeZero(Ty);
Owen Anderson69c464d2009-07-27 20:59:43 +0000681
Owen Anderson5a1acd92009-07-31 20:28:14 +0000682 return Constant::getNullValue(Ty);
Owen Anderson69c464d2009-07-27 20:59:43 +0000683}
684
685
686// ConstantFP accessors.
687ConstantFP* ConstantFP::get(LLVMContext &Context, const APFloat& V) {
Owen Anderson69c464d2009-07-27 20:59:43 +0000688 LLVMContextImpl* pImpl = Context.pImpl;
Galina Kistanovafc259902012-07-13 01:25:27 +0000689
Benjamin Kramer8e5dc532014-12-06 13:12:56 +0000690 ConstantFP *&Slot = pImpl->FPConstants[V];
Galina Kistanovafc259902012-07-13 01:25:27 +0000691
Owen Anderson69c464d2009-07-27 20:59:43 +0000692 if (!Slot) {
Chris Lattner229907c2011-07-18 04:54:35 +0000693 Type *Ty;
Dan Gohman518cda42011-12-17 00:04:22 +0000694 if (&V.getSemantics() == &APFloat::IEEEhalf)
695 Ty = Type::getHalfTy(Context);
696 else if (&V.getSemantics() == &APFloat::IEEEsingle)
Owen Anderson5dab84c2009-10-19 20:11:52 +0000697 Ty = Type::getFloatTy(Context);
698 else if (&V.getSemantics() == &APFloat::IEEEdouble)
699 Ty = Type::getDoubleTy(Context);
700 else if (&V.getSemantics() == &APFloat::x87DoubleExtended)
701 Ty = Type::getX86_FP80Ty(Context);
702 else if (&V.getSemantics() == &APFloat::IEEEquad)
703 Ty = Type::getFP128Ty(Context);
704 else {
705 assert(&V.getSemantics() == &APFloat::PPCDoubleDouble &&
706 "Unknown FP format");
707 Ty = Type::getPPC_FP128Ty(Context);
Owen Anderson69c464d2009-07-27 20:59:43 +0000708 }
Owen Anderson5dab84c2009-10-19 20:11:52 +0000709 Slot = new ConstantFP(Ty, V);
Owen Anderson69c464d2009-07-27 20:59:43 +0000710 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000711
Owen Anderson69c464d2009-07-27 20:59:43 +0000712 return Slot;
713}
714
Benjamin Kramer5d2ff222014-01-18 16:43:06 +0000715Constant *ConstantFP::getInfinity(Type *Ty, bool Negative) {
716 const fltSemantics &Semantics = *TypeToFloatSemantics(Ty->getScalarType());
717 Constant *C = get(Ty->getContext(), APFloat::getInf(Semantics, Negative));
718
719 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
720 return ConstantVector::getSplat(VTy->getNumElements(), C);
721
722 return C;
Dan Gohmanfeb50212009-09-25 23:00:48 +0000723}
724
Duncan P. N. Exon Smithb6452792016-02-21 02:39:49 +0000725ConstantFP::ConstantFP(Type *Ty, const APFloat &V)
726 : ConstantData(Ty, ConstantFPVal), Val(V) {
Chris Lattner98bd9392008-04-09 06:38:30 +0000727 assert(&V.getSemantics() == TypeToFloatSemantics(Ty) &&
728 "FP type Mismatch");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000729}
730
Chris Lattnerbe6610c2011-07-15 06:14:08 +0000731bool ConstantFP::isExactlyValue(const APFloat &V) const {
Dale Johannesend246b2c2007-08-30 00:23:21 +0000732 return Val.bitwiseIsEqual(V);
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000733}
734
Pete Cooper86dd4cf2015-06-23 21:55:11 +0000735/// Remove the constant from the constant table.
736void ConstantFP::destroyConstantImpl() {
737 llvm_unreachable("You can't ConstantInt->destroyConstantImpl()!");
738}
739
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000740//===----------------------------------------------------------------------===//
Chris Lattner030af792012-01-24 05:42:11 +0000741// ConstantAggregateZero Implementation
742//===----------------------------------------------------------------------===//
743
Chris Lattner7e683d12012-01-25 06:16:32 +0000744Constant *ConstantAggregateZero::getSequentialElement() const {
Chris Lattner8326bd82012-01-26 00:42:34 +0000745 return Constant::getNullValue(getType()->getSequentialElementType());
Chris Lattner030af792012-01-24 05:42:11 +0000746}
747
Chris Lattner7e683d12012-01-25 06:16:32 +0000748Constant *ConstantAggregateZero::getStructElement(unsigned Elt) const {
Chris Lattner8326bd82012-01-26 00:42:34 +0000749 return Constant::getNullValue(getType()->getStructElementType(Elt));
Chris Lattner030af792012-01-24 05:42:11 +0000750}
751
Chris Lattner7e683d12012-01-25 06:16:32 +0000752Constant *ConstantAggregateZero::getElementValue(Constant *C) const {
Chris Lattner030af792012-01-24 05:42:11 +0000753 if (isa<SequentialType>(getType()))
754 return getSequentialElement();
755 return getStructElement(cast<ConstantInt>(C)->getZExtValue());
756}
757
Chris Lattner7e683d12012-01-25 06:16:32 +0000758Constant *ConstantAggregateZero::getElementValue(unsigned Idx) const {
Chris Lattnerf7eb5432012-01-24 07:54:10 +0000759 if (isa<SequentialType>(getType()))
760 return getSequentialElement();
761 return getStructElement(Idx);
762}
763
David Majnemer9b529a72015-02-16 04:02:09 +0000764unsigned ConstantAggregateZero::getNumElements() const {
Craig Toppere3dcce92015-08-01 22:20:21 +0000765 Type *Ty = getType();
766 if (auto *AT = dyn_cast<ArrayType>(Ty))
David Majnemer9b529a72015-02-16 04:02:09 +0000767 return AT->getNumElements();
Craig Toppere3dcce92015-08-01 22:20:21 +0000768 if (auto *VT = dyn_cast<VectorType>(Ty))
David Majnemer9b529a72015-02-16 04:02:09 +0000769 return VT->getNumElements();
770 return Ty->getStructNumElements();
771}
Chris Lattnerf7eb5432012-01-24 07:54:10 +0000772
Chris Lattner030af792012-01-24 05:42:11 +0000773//===----------------------------------------------------------------------===//
774// UndefValue Implementation
775//===----------------------------------------------------------------------===//
776
Chris Lattner7e683d12012-01-25 06:16:32 +0000777UndefValue *UndefValue::getSequentialElement() const {
Chris Lattner8326bd82012-01-26 00:42:34 +0000778 return UndefValue::get(getType()->getSequentialElementType());
Chris Lattner030af792012-01-24 05:42:11 +0000779}
780
Chris Lattner7e683d12012-01-25 06:16:32 +0000781UndefValue *UndefValue::getStructElement(unsigned Elt) const {
Chris Lattner8326bd82012-01-26 00:42:34 +0000782 return UndefValue::get(getType()->getStructElementType(Elt));
Chris Lattner030af792012-01-24 05:42:11 +0000783}
784
Chris Lattner7e683d12012-01-25 06:16:32 +0000785UndefValue *UndefValue::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 Lattner7e683d12012-01-25 06:16:32 +0000791UndefValue *UndefValue::getElementValue(unsigned Idx) const {
Chris Lattnerf7eb5432012-01-24 07:54:10 +0000792 if (isa<SequentialType>(getType()))
793 return getSequentialElement();
794 return getStructElement(Idx);
795}
796
David Majnemer9b529a72015-02-16 04:02:09 +0000797unsigned UndefValue::getNumElements() const {
Craig Toppere3dcce92015-08-01 22:20:21 +0000798 Type *Ty = getType();
799 if (auto *AT = dyn_cast<ArrayType>(Ty))
David Majnemer9b529a72015-02-16 04:02:09 +0000800 return AT->getNumElements();
Craig Toppere3dcce92015-08-01 22:20:21 +0000801 if (auto *VT = dyn_cast<VectorType>(Ty))
David Majnemer9b529a72015-02-16 04:02:09 +0000802 return VT->getNumElements();
803 return Ty->getStructNumElements();
804}
Chris Lattner030af792012-01-24 05:42:11 +0000805
806//===----------------------------------------------------------------------===//
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000807// ConstantXXX Classes
808//===----------------------------------------------------------------------===//
809
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000810template <typename ItTy, typename EltTy>
811static bool rangeOnlyContains(ItTy Start, ItTy End, EltTy Elt) {
812 for (; Start != End; ++Start)
813 if (*Start != Elt)
814 return false;
815 return true;
816}
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000817
Justin Bogner909e1c02015-12-01 20:20:49 +0000818template <typename SequentialTy, typename ElementTy>
819static Constant *getIntSequenceIfElementsMatch(ArrayRef<Constant *> V) {
820 assert(!V.empty() && "Cannot get empty int sequence.");
821
822 SmallVector<ElementTy, 16> Elts;
823 for (Constant *C : V)
824 if (auto *CI = dyn_cast<ConstantInt>(C))
825 Elts.push_back(CI->getZExtValue());
826 else
827 return nullptr;
828 return SequentialTy::get(V[0]->getContext(), Elts);
829}
830
831template <typename SequentialTy, typename ElementTy>
832static Constant *getFPSequenceIfElementsMatch(ArrayRef<Constant *> V) {
833 assert(!V.empty() && "Cannot get empty FP sequence.");
834
835 SmallVector<ElementTy, 16> Elts;
836 for (Constant *C : V)
837 if (auto *CFP = dyn_cast<ConstantFP>(C))
838 Elts.push_back(CFP->getValueAPF().bitcastToAPInt().getLimitedValue());
839 else
840 return nullptr;
841 return SequentialTy::getFP(V[0]->getContext(), Elts);
842}
843
844template <typename SequenceTy>
845static Constant *getSequenceIfElementsMatch(Constant *C,
846 ArrayRef<Constant *> V) {
847 // We speculatively build the elements here even if it turns out that there is
848 // a constantexpr or something else weird, since it is so uncommon for that to
849 // happen.
850 if (ConstantInt *CI = dyn_cast<ConstantInt>(C)) {
851 if (CI->getType()->isIntegerTy(8))
852 return getIntSequenceIfElementsMatch<SequenceTy, uint8_t>(V);
853 else if (CI->getType()->isIntegerTy(16))
854 return getIntSequenceIfElementsMatch<SequenceTy, uint16_t>(V);
855 else if (CI->getType()->isIntegerTy(32))
856 return getIntSequenceIfElementsMatch<SequenceTy, uint32_t>(V);
857 else if (CI->getType()->isIntegerTy(64))
858 return getIntSequenceIfElementsMatch<SequenceTy, uint64_t>(V);
859 } else if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
Justin Bogner0ebc8602015-12-08 03:01:16 +0000860 if (CFP->getType()->isHalfTy())
861 return getFPSequenceIfElementsMatch<SequenceTy, uint16_t>(V);
862 else if (CFP->getType()->isFloatTy())
Justin Bogner909e1c02015-12-01 20:20:49 +0000863 return getFPSequenceIfElementsMatch<SequenceTy, uint32_t>(V);
864 else if (CFP->getType()->isDoubleTy())
865 return getFPSequenceIfElementsMatch<SequenceTy, uint64_t>(V);
866 }
867
868 return nullptr;
869}
870
Duncan P. N. Exon Smith1de3c7e2016-04-05 21:10:45 +0000871ConstantAggregate::ConstantAggregate(CompositeType *T, ValueTy VT,
872 ArrayRef<Constant *> V)
873 : Constant(T, VT, OperandTraits<ConstantAggregate>::op_end(this) - V.size(),
874 V.size()) {
Jay Foad89d9b812011-07-25 10:14:44 +0000875 std::copy(V.begin(), V.end(), op_begin());
Duncan P. N. Exon Smith1de3c7e2016-04-05 21:10:45 +0000876
877 // Check that types match, unless this is an opaque struct.
878 if (auto *ST = dyn_cast<StructType>(T))
879 if (ST->isOpaque())
880 return;
881 for (unsigned I = 0, E = V.size(); I != E; ++I)
882 assert(V[I]->getType() == T->getTypeAtIndex(I) &&
883 "Initializer for composite element doesn't match!");
884}
885
886ConstantArray::ConstantArray(ArrayType *T, ArrayRef<Constant *> V)
887 : ConstantAggregate(T, ConstantArrayVal, V) {
888 assert(V.size() == T->getNumElements() &&
889 "Invalid initializer for constant array");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000890}
891
Chris Lattner229907c2011-07-18 04:54:35 +0000892Constant *ConstantArray::get(ArrayType *Ty, ArrayRef<Constant*> V) {
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +0000893 if (Constant *C = getImpl(Ty, V))
894 return C;
895 return Ty->getContext().pImpl->ArrayConstants.getOrCreate(Ty, V);
896}
Justin Bogner909e1c02015-12-01 20:20:49 +0000897
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +0000898Constant *ConstantArray::getImpl(ArrayType *Ty, ArrayRef<Constant*> V) {
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000899 // Empty arrays are canonicalized to ConstantAggregateZero.
900 if (V.empty())
901 return ConstantAggregateZero::get(Ty);
902
Jeffrey Yasskin8ce67f82009-09-30 21:08:08 +0000903 for (unsigned i = 0, e = V.size(); i != e; ++i) {
904 assert(V[i]->getType() == Ty->getElementType() &&
905 "Wrong type in array element initializer");
906 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000907
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000908 // If this is an all-zero array, return a ConstantAggregateZero object. If
909 // all undef, return an UndefValue, if "all simple", then return a
910 // ConstantDataArray.
911 Constant *C = V[0];
912 if (isa<UndefValue>(C) && rangeOnlyContains(V.begin(), V.end(), C))
913 return UndefValue::get(Ty);
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000914
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000915 if (C->isNullValue() && rangeOnlyContains(V.begin(), V.end(), C))
916 return ConstantAggregateZero::get(Ty);
917
918 // Check to see if all of the elements are ConstantFP or ConstantInt and if
919 // the element type is compatible with ConstantDataVector. If so, use it.
Justin Bogner909e1c02015-12-01 20:20:49 +0000920 if (ConstantDataSequential::isElementTypeCompatible(C->getType()))
921 return getSequenceIfElementsMatch<ConstantDataArray>(C, V);
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000922
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000923 // Otherwise, we really do want to create a ConstantArray.
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +0000924 return nullptr;
Owen Andersonc2c79322009-07-28 18:32:17 +0000925}
926
Chris Lattnercc19efa2011-06-20 04:01:31 +0000927StructType *ConstantStruct::getTypeForElements(LLVMContext &Context,
928 ArrayRef<Constant*> V,
929 bool Packed) {
Bill Wendling3ae7dd32012-02-07 01:27:51 +0000930 unsigned VecSize = V.size();
931 SmallVector<Type*, 16> EltTypes(VecSize);
932 for (unsigned i = 0; i != VecSize; ++i)
933 EltTypes[i] = V[i]->getType();
Galina Kistanovafc259902012-07-13 01:25:27 +0000934
Chris Lattnercc19efa2011-06-20 04:01:31 +0000935 return StructType::get(Context, EltTypes, Packed);
936}
937
938
939StructType *ConstantStruct::getTypeForElements(ArrayRef<Constant*> V,
940 bool Packed) {
941 assert(!V.empty() &&
942 "ConstantStruct::getTypeForElements cannot be called on empty list");
943 return getTypeForElements(V[0]->getContext(), V, Packed);
944}
945
Jay Foad89d9b812011-07-25 10:14:44 +0000946ConstantStruct::ConstantStruct(StructType *T, ArrayRef<Constant *> V)
Duncan P. N. Exon Smith1de3c7e2016-04-05 21:10:45 +0000947 : ConstantAggregate(T, ConstantStructVal, V) {
948 assert((T->isOpaque() || V.size() == T->getNumElements()) &&
949 "Invalid initializer for constant struct");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000950}
951
Owen Anderson45308b52009-07-27 22:29:26 +0000952// ConstantStruct accessors.
Chris Lattner229907c2011-07-18 04:54:35 +0000953Constant *ConstantStruct::get(StructType *ST, ArrayRef<Constant*> V) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000954 assert((ST->isOpaque() || ST->getNumElements() == V.size()) &&
955 "Incorrect # elements specified to ConstantStruct::get");
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000956
957 // Create a ConstantAggregateZero value if all elements are zeros.
958 bool isZero = true;
959 bool isUndef = false;
960
961 if (!V.empty()) {
962 isUndef = isa<UndefValue>(V[0]);
963 isZero = V[0]->isNullValue();
964 if (isUndef || isZero) {
965 for (unsigned i = 0, e = V.size(); i != e; ++i) {
966 if (!V[i]->isNullValue())
967 isZero = false;
968 if (!isa<UndefValue>(V[i]))
969 isUndef = false;
970 }
971 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000972 }
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000973 if (isZero)
974 return ConstantAggregateZero::get(ST);
975 if (isUndef)
976 return UndefValue::get(ST);
Galina Kistanovafc259902012-07-13 01:25:27 +0000977
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000978 return ST->getContext().pImpl->StructConstants.getOrCreate(ST, V);
Owen Anderson45308b52009-07-27 22:29:26 +0000979}
980
Chris Lattnerc3e74cd2011-08-07 04:18:48 +0000981Constant *ConstantStruct::get(StructType *T, ...) {
Talin3a0a30d2011-02-28 23:53:27 +0000982 va_list ap;
Chris Lattnercc19efa2011-06-20 04:01:31 +0000983 SmallVector<Constant*, 8> Values;
984 va_start(ap, T);
985 while (Constant *Val = va_arg(ap, llvm::Constant*))
Talin3a0a30d2011-02-28 23:53:27 +0000986 Values.push_back(Val);
Talinde422be2011-03-01 18:00:49 +0000987 va_end(ap);
Chris Lattnercc19efa2011-06-20 04:01:31 +0000988 return get(T, Values);
Talin3a0a30d2011-02-28 23:53:27 +0000989}
990
Jay Foad89d9b812011-07-25 10:14:44 +0000991ConstantVector::ConstantVector(VectorType *T, ArrayRef<Constant *> V)
Duncan P. N. Exon Smith1de3c7e2016-04-05 21:10:45 +0000992 : ConstantAggregate(T, ConstantVectorVal, V) {
Duncan P. N. Exon Smithdb63bda2016-04-05 20:53:47 +0000993 assert(V.size() == T->getNumElements() &&
Duncan P. N. Exon Smith1de3c7e2016-04-05 21:10:45 +0000994 "Invalid initializer for constant vector");
Brian Gaeke02209042004-08-20 06:00:58 +0000995}
996
Owen Anderson4aa32952009-07-28 21:19:26 +0000997// ConstantVector accessors.
Jay Foadb8a8bed32011-06-22 09:10:19 +0000998Constant *ConstantVector::get(ArrayRef<Constant*> V) {
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +0000999 if (Constant *C = getImpl(V))
1000 return C;
1001 VectorType *Ty = VectorType::get(V.front()->getType(), V.size());
1002 return Ty->getContext().pImpl->VectorConstants.getOrCreate(Ty, V);
1003}
Justin Bogner909e1c02015-12-01 20:20:49 +00001004
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00001005Constant *ConstantVector::getImpl(ArrayRef<Constant*> V) {
Jay Foad9f32cfd2011-01-27 14:44:55 +00001006 assert(!V.empty() && "Vectors can't be empty");
Chris Lattner229907c2011-07-18 04:54:35 +00001007 VectorType *T = VectorType::get(V.front()->getType(), V.size());
Jay Foad9f32cfd2011-01-27 14:44:55 +00001008
Chris Lattner69229312011-02-15 00:14:00 +00001009 // If this is an all-undef or all-zero vector, return a
Owen Anderson4aa32952009-07-28 21:19:26 +00001010 // ConstantAggregateZero or UndefValue.
1011 Constant *C = V[0];
1012 bool isZero = C->isNullValue();
1013 bool isUndef = isa<UndefValue>(C);
1014
1015 if (isZero || isUndef) {
1016 for (unsigned i = 1, e = V.size(); i != e; ++i)
1017 if (V[i] != C) {
1018 isZero = isUndef = false;
1019 break;
1020 }
1021 }
Galina Kistanovafc259902012-07-13 01:25:27 +00001022
Owen Anderson4aa32952009-07-28 21:19:26 +00001023 if (isZero)
Owen Andersonb292b8c2009-07-30 23:03:37 +00001024 return ConstantAggregateZero::get(T);
Owen Anderson4aa32952009-07-28 21:19:26 +00001025 if (isUndef)
Owen Andersonb292b8c2009-07-30 23:03:37 +00001026 return UndefValue::get(T);
Galina Kistanovafc259902012-07-13 01:25:27 +00001027
Chris Lattner978fe0c2012-01-30 06:21:21 +00001028 // Check to see if all of the elements are ConstantFP or ConstantInt and if
1029 // the element type is compatible with ConstantDataVector. If so, use it.
Justin Bogner909e1c02015-12-01 20:20:49 +00001030 if (ConstantDataSequential::isElementTypeCompatible(C->getType()))
1031 return getSequenceIfElementsMatch<ConstantDataVector>(C, V);
Galina Kistanovafc259902012-07-13 01:25:27 +00001032
Chris Lattner978fe0c2012-01-30 06:21:21 +00001033 // Otherwise, the element type isn't compatible with ConstantDataVector, or
1034 // the operand list constants a ConstantExpr or something else strange.
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00001035 return nullptr;
Owen Anderson4aa32952009-07-28 21:19:26 +00001036}
1037
Chris Lattnere9eed292012-01-25 05:19:54 +00001038Constant *ConstantVector::getSplat(unsigned NumElts, Constant *V) {
Chris Lattner978fe0c2012-01-30 06:21:21 +00001039 // If this splat is compatible with ConstantDataVector, use it instead of
1040 // ConstantVector.
1041 if ((isa<ConstantFP>(V) || isa<ConstantInt>(V)) &&
1042 ConstantDataSequential::isElementTypeCompatible(V->getType()))
1043 return ConstantDataVector::getSplat(NumElts, V);
Galina Kistanovafc259902012-07-13 01:25:27 +00001044
Chris Lattnere9eed292012-01-25 05:19:54 +00001045 SmallVector<Constant*, 32> Elts(NumElts, V);
1046 return get(Elts);
1047}
1048
David Majnemerf0f224d2015-11-11 21:57:16 +00001049ConstantTokenNone *ConstantTokenNone::get(LLVMContext &Context) {
1050 LLVMContextImpl *pImpl = Context.pImpl;
1051 if (!pImpl->TheNoneToken)
David Majnemer2dd41c52015-11-16 20:55:57 +00001052 pImpl->TheNoneToken.reset(new ConstantTokenNone(Context));
1053 return pImpl->TheNoneToken.get();
David Majnemerf0f224d2015-11-11 21:57:16 +00001054}
1055
1056/// Remove the constant from the constant table.
1057void ConstantTokenNone::destroyConstantImpl() {
1058 llvm_unreachable("You can't ConstantTokenNone->destroyConstantImpl()!");
1059}
Chris Lattnere9eed292012-01-25 05:19:54 +00001060
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001061// Utility function for determining if a ConstantExpr is a CastOp or not. This
1062// can't be inline because we don't want to #include Instruction.h into
1063// Constant.h
1064bool ConstantExpr::isCast() const {
1065 return Instruction::isCast(getOpcode());
1066}
1067
Reid Spenceree3c9912006-12-04 05:19:50 +00001068bool ConstantExpr::isCompare() const {
Nick Lewyckya21d3da2009-07-08 03:04:38 +00001069 return getOpcode() == Instruction::ICmp || getOpcode() == Instruction::FCmp;
Reid Spenceree3c9912006-12-04 05:19:50 +00001070}
1071
Dan Gohman7190d482009-09-10 23:37:55 +00001072bool ConstantExpr::isGEPWithNoNotionalOverIndexing() const {
1073 if (getOpcode() != Instruction::GetElementPtr) return false;
1074
1075 gep_type_iterator GEPI = gep_type_begin(this), E = gep_type_end(this);
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001076 User::const_op_iterator OI = std::next(this->op_begin());
Dan Gohman7190d482009-09-10 23:37:55 +00001077
1078 // Skip the first index, as it has no static limit.
1079 ++GEPI;
1080 ++OI;
1081
1082 // The remaining indices must be compile-time known integers within the
1083 // bounds of the corresponding notional static array types.
1084 for (; GEPI != E; ++GEPI, ++OI) {
1085 ConstantInt *CI = dyn_cast<ConstantInt>(*OI);
1086 if (!CI) return false;
Chris Lattner229907c2011-07-18 04:54:35 +00001087 if (ArrayType *ATy = dyn_cast<ArrayType>(*GEPI))
Dan Gohman7190d482009-09-10 23:37:55 +00001088 if (CI->getValue().getActiveBits() > 64 ||
1089 CI->getZExtValue() >= ATy->getNumElements())
1090 return false;
1091 }
1092
1093 // All the indices checked out.
1094 return true;
1095}
1096
Dan Gohman1ecaf452008-05-31 00:58:22 +00001097bool ConstantExpr::hasIndices() const {
1098 return getOpcode() == Instruction::ExtractValue ||
1099 getOpcode() == Instruction::InsertValue;
1100}
1101
Jay Foad0091fe82011-04-13 15:22:40 +00001102ArrayRef<unsigned> ConstantExpr::getIndices() const {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001103 if (const ExtractValueConstantExpr *EVCE =
1104 dyn_cast<ExtractValueConstantExpr>(this))
1105 return EVCE->Indices;
Dan Gohmana469bdb2008-06-23 16:39:44 +00001106
1107 return cast<InsertValueConstantExpr>(this)->Indices;
Dan Gohman1ecaf452008-05-31 00:58:22 +00001108}
1109
Reid Spencer10fbf0e2006-12-03 05:48:19 +00001110unsigned ConstantExpr::getPredicate() const {
Craig Toppercc03b492015-12-15 06:11:36 +00001111 return cast<CompareConstantExpr>(this)->predicate;
Reid Spencer10fbf0e2006-12-03 05:48:19 +00001112}
Chris Lattner60e0dd72001-10-03 06:12:09 +00001113
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001114Constant *
1115ConstantExpr::getWithOperandReplaced(unsigned OpNo, Constant *Op) const {
Chris Lattner7c1018a2006-07-14 19:37:40 +00001116 assert(Op->getType() == getOperand(OpNo)->getType() &&
1117 "Replacing operand with value of different type!");
Chris Lattner227816342006-07-14 22:20:01 +00001118 if (getOperand(OpNo) == Op)
1119 return const_cast<ConstantExpr*>(this);
Chris Lattner37e38352012-01-26 20:37:11 +00001120
1121 SmallVector<Constant*, 8> NewOps;
1122 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
1123 NewOps.push_back(i == OpNo ? Op : getOperand(i));
Galina Kistanovafc259902012-07-13 01:25:27 +00001124
Chris Lattner37e38352012-01-26 20:37:11 +00001125 return getWithOperands(NewOps);
Chris Lattner227816342006-07-14 22:20:01 +00001126}
1127
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001128Constant *ConstantExpr::getWithOperands(ArrayRef<Constant *> Ops, Type *Ty,
David Blaikie88208842015-08-21 20:16:51 +00001129 bool OnlyIfReduced, Type *SrcTy) const {
Jay Foad5c984e562011-04-13 13:46:01 +00001130 assert(Ops.size() == getNumOperands() && "Operand count mismatch!");
Galina Kistanovafc259902012-07-13 01:25:27 +00001131
Benjamin Kramer8008e9f2015-03-02 11:57:04 +00001132 // If no operands changed return self.
1133 if (Ty == getType() && std::equal(Ops.begin(), Ops.end(), op_begin()))
Chris Lattner227816342006-07-14 22:20:01 +00001134 return const_cast<ConstantExpr*>(this);
1135
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001136 Type *OnlyIfReducedTy = OnlyIfReduced ? Ty : nullptr;
Chris Lattner227816342006-07-14 22:20:01 +00001137 switch (getOpcode()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001138 case Instruction::Trunc:
1139 case Instruction::ZExt:
1140 case Instruction::SExt:
1141 case Instruction::FPTrunc:
1142 case Instruction::FPExt:
1143 case Instruction::UIToFP:
1144 case Instruction::SIToFP:
1145 case Instruction::FPToUI:
1146 case Instruction::FPToSI:
1147 case Instruction::PtrToInt:
1148 case Instruction::IntToPtr:
1149 case Instruction::BitCast:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001150 case Instruction::AddrSpaceCast:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001151 return ConstantExpr::getCast(getOpcode(), Ops[0], Ty, OnlyIfReduced);
Chris Lattner227816342006-07-14 22:20:01 +00001152 case Instruction::Select:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001153 return ConstantExpr::getSelect(Ops[0], Ops[1], Ops[2], OnlyIfReducedTy);
Chris Lattner227816342006-07-14 22:20:01 +00001154 case Instruction::InsertElement:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001155 return ConstantExpr::getInsertElement(Ops[0], Ops[1], Ops[2],
1156 OnlyIfReducedTy);
Chris Lattner227816342006-07-14 22:20:01 +00001157 case Instruction::ExtractElement:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001158 return ConstantExpr::getExtractElement(Ops[0], Ops[1], OnlyIfReducedTy);
Chris Lattner37e38352012-01-26 20:37:11 +00001159 case Instruction::InsertValue:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001160 return ConstantExpr::getInsertValue(Ops[0], Ops[1], getIndices(),
1161 OnlyIfReducedTy);
Chris Lattner37e38352012-01-26 20:37:11 +00001162 case Instruction::ExtractValue:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001163 return ConstantExpr::getExtractValue(Ops[0], getIndices(), OnlyIfReducedTy);
Chris Lattner227816342006-07-14 22:20:01 +00001164 case Instruction::ShuffleVector:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001165 return ConstantExpr::getShuffleVector(Ops[0], Ops[1], Ops[2],
1166 OnlyIfReducedTy);
David Blaikie88208842015-08-21 20:16:51 +00001167 case Instruction::GetElementPtr: {
1168 auto *GEPO = cast<GEPOperator>(this);
1169 assert(SrcTy || (Ops[0]->getType() == getOperand(0)->getType()));
1170 return ConstantExpr::getGetElementPtr(
1171 SrcTy ? SrcTy : GEPO->getSourceElementType(), Ops[0], Ops.slice(1),
1172 GEPO->isInBounds(), OnlyIfReducedTy);
1173 }
Reid Spencer266e42b2006-12-23 06:05:41 +00001174 case Instruction::ICmp:
1175 case Instruction::FCmp:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001176 return ConstantExpr::getCompare(getPredicate(), Ops[0], Ops[1],
1177 OnlyIfReducedTy);
Chris Lattner227816342006-07-14 22:20:01 +00001178 default:
1179 assert(getNumOperands() == 2 && "Must be binary operator?");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001180 return ConstantExpr::get(getOpcode(), Ops[0], Ops[1], SubclassOptionalData,
1181 OnlyIfReducedTy);
Chris Lattner7c1018a2006-07-14 19:37:40 +00001182 }
1183}
1184
Chris Lattner2f7c9632001-06-06 20:29:01 +00001185
1186//===----------------------------------------------------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +00001187// isValueValidForType implementations
1188
Chris Lattner229907c2011-07-18 04:54:35 +00001189bool ConstantInt::isValueValidForType(Type *Ty, uint64_t Val) {
Chris Lattner8326bd82012-01-26 00:42:34 +00001190 unsigned NumBits = Ty->getIntegerBitWidth(); // assert okay
1191 if (Ty->isIntegerTy(1))
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001192 return Val == 0 || Val == 1;
Reid Spencerd7a00d72007-02-05 23:47:56 +00001193 if (NumBits >= 64)
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001194 return true; // always true, has to fit in largest type
1195 uint64_t Max = (1ll << NumBits) - 1;
1196 return Val <= Max;
Reid Spencere7334722006-12-19 01:28:19 +00001197}
1198
Chris Lattner229907c2011-07-18 04:54:35 +00001199bool ConstantInt::isValueValidForType(Type *Ty, int64_t Val) {
Chris Lattner8326bd82012-01-26 00:42:34 +00001200 unsigned NumBits = Ty->getIntegerBitWidth();
1201 if (Ty->isIntegerTy(1))
Reid Spencera94d3942007-01-19 21:13:56 +00001202 return Val == 0 || Val == 1 || Val == -1;
Reid Spencerd7a00d72007-02-05 23:47:56 +00001203 if (NumBits >= 64)
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001204 return true; // always true, has to fit in largest type
1205 int64_t Min = -(1ll << (NumBits-1));
1206 int64_t Max = (1ll << (NumBits-1)) - 1;
1207 return (Val >= Min && Val <= Max);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001208}
1209
Chris Lattner229907c2011-07-18 04:54:35 +00001210bool ConstantFP::isValueValidForType(Type *Ty, const APFloat& Val) {
Dale Johannesend246b2c2007-08-30 00:23:21 +00001211 // convert modifies in place, so make a copy.
1212 APFloat Val2 = APFloat(Val);
Dale Johannesen4f0bd682008-10-09 23:00:39 +00001213 bool losesInfo;
Chris Lattner6b727592004-06-17 18:19:28 +00001214 switch (Ty->getTypeID()) {
Chris Lattner2f7c9632001-06-06 20:29:01 +00001215 default:
1216 return false; // These can't be represented as floating point!
1217
Dale Johannesend246b2c2007-08-30 00:23:21 +00001218 // FIXME rounding mode needs to be more flexible
Dan Gohman518cda42011-12-17 00:04:22 +00001219 case Type::HalfTyID: {
1220 if (&Val2.getSemantics() == &APFloat::IEEEhalf)
1221 return true;
1222 Val2.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven, &losesInfo);
1223 return !losesInfo;
1224 }
Dale Johannesen4f0bd682008-10-09 23:00:39 +00001225 case Type::FloatTyID: {
1226 if (&Val2.getSemantics() == &APFloat::IEEEsingle)
1227 return true;
1228 Val2.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven, &losesInfo);
1229 return !losesInfo;
1230 }
1231 case Type::DoubleTyID: {
Dan Gohman518cda42011-12-17 00:04:22 +00001232 if (&Val2.getSemantics() == &APFloat::IEEEhalf ||
1233 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen4f0bd682008-10-09 23:00:39 +00001234 &Val2.getSemantics() == &APFloat::IEEEdouble)
1235 return true;
1236 Val2.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, &losesInfo);
1237 return !losesInfo;
1238 }
Dale Johannesenbdad8092007-08-09 22:51:36 +00001239 case Type::X86_FP80TyID:
Dan Gohman518cda42011-12-17 00:04:22 +00001240 return &Val2.getSemantics() == &APFloat::IEEEhalf ||
1241 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen028084e2007-09-12 03:30:33 +00001242 &Val2.getSemantics() == &APFloat::IEEEdouble ||
1243 &Val2.getSemantics() == &APFloat::x87DoubleExtended;
Dale Johannesenbdad8092007-08-09 22:51:36 +00001244 case Type::FP128TyID:
Dan Gohman518cda42011-12-17 00:04:22 +00001245 return &Val2.getSemantics() == &APFloat::IEEEhalf ||
1246 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen028084e2007-09-12 03:30:33 +00001247 &Val2.getSemantics() == &APFloat::IEEEdouble ||
1248 &Val2.getSemantics() == &APFloat::IEEEquad;
Dale Johannesen007aa372007-10-11 18:07:22 +00001249 case Type::PPC_FP128TyID:
Dan Gohman518cda42011-12-17 00:04:22 +00001250 return &Val2.getSemantics() == &APFloat::IEEEhalf ||
1251 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen007aa372007-10-11 18:07:22 +00001252 &Val2.getSemantics() == &APFloat::IEEEdouble ||
1253 &Val2.getSemantics() == &APFloat::PPCDoubleDouble;
Chris Lattner2f7c9632001-06-06 20:29:01 +00001254 }
Chris Lattneraa2372562006-05-24 17:04:05 +00001255}
Chris Lattner9655e542001-07-20 19:16:02 +00001256
Chris Lattner030af792012-01-24 05:42:11 +00001257
Chris Lattner49d855c2001-09-07 16:46:31 +00001258//===----------------------------------------------------------------------===//
Chris Lattner49d855c2001-09-07 16:46:31 +00001259// Factory Function Implementation
1260
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001261ConstantAggregateZero *ConstantAggregateZero::get(Type *Ty) {
Chris Lattner13ee7952010-08-28 04:09:24 +00001262 assert((Ty->isStructTy() || Ty->isArrayTy() || Ty->isVectorTy()) &&
Owen Andersonb292b8c2009-07-30 23:03:37 +00001263 "Cannot create an aggregate zero of non-aggregate type!");
David Blaikiecb2818f2014-11-25 02:26:22 +00001264
1265 ConstantAggregateZero *&Entry = Ty->getContext().pImpl->CAZConstants[Ty];
David Blaikie899b85a2014-11-25 02:13:54 +00001266 if (!Entry)
David Blaikiecb2818f2014-11-25 02:26:22 +00001267 Entry = new ConstantAggregateZero(Ty);
David Blaikie899b85a2014-11-25 02:13:54 +00001268
David Blaikiecb2818f2014-11-25 02:26:22 +00001269 return Entry;
Owen Andersonb292b8c2009-07-30 23:03:37 +00001270}
1271
Sanjay Patel1d0ac7c2016-04-29 22:03:27 +00001272/// Remove the constant from the constant table.
Pete Cooper86dd4cf2015-06-23 21:55:11 +00001273void ConstantAggregateZero::destroyConstantImpl() {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001274 getContext().pImpl->CAZConstants.erase(getType());
Chris Lattner9fba3da2004-02-15 05:53:04 +00001275}
1276
Sanjay Patel1d0ac7c2016-04-29 22:03:27 +00001277/// Remove the constant from the constant table.
Pete Cooper86dd4cf2015-06-23 21:55:11 +00001278void ConstantArray::destroyConstantImpl() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001279 getType()->getContext().pImpl->ArrayConstants.remove(this);
Chris Lattner98fa07b2003-05-23 20:03:32 +00001280}
1281
Chris Lattner81fabb02002-08-26 17:53:56 +00001282
Chris Lattner3462ae32001-12-03 22:26:30 +00001283//---- ConstantStruct::get() implementation...
Chris Lattner49d855c2001-09-07 16:46:31 +00001284//
Chris Lattnerb50d1352003-10-05 00:17:43 +00001285
Sanjay Patel1d0ac7c2016-04-29 22:03:27 +00001286/// Remove the constant from the constant table.
Pete Cooper86dd4cf2015-06-23 21:55:11 +00001287void ConstantStruct::destroyConstantImpl() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001288 getType()->getContext().pImpl->StructConstants.remove(this);
Chris Lattnerd7a73302001-10-13 06:57:33 +00001289}
Chris Lattner883ad0b2001-10-03 15:39:36 +00001290
Sanjay Patel1d0ac7c2016-04-29 22:03:27 +00001291/// Remove the constant from the constant table.
Pete Cooper86dd4cf2015-06-23 21:55:11 +00001292void ConstantVector::destroyConstantImpl() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001293 getType()->getContext().pImpl->VectorConstants.remove(this);
Brian Gaeke02209042004-08-20 06:00:58 +00001294}
1295
Duncan Sandse6beec62012-11-13 12:59:33 +00001296Constant *Constant::getSplatValue() const {
1297 assert(this->getType()->isVectorTy() && "Only valid for vectors!");
1298 if (isa<ConstantAggregateZero>(this))
1299 return getNullValue(this->getType()->getVectorElementType());
1300 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this))
1301 return CV->getSplatValue();
1302 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
1303 return CV->getSplatValue();
Craig Topperc6207612014-04-09 06:08:46 +00001304 return nullptr;
Duncan Sandse6beec62012-11-13 12:59:33 +00001305}
1306
Duncan Sandscf0ff032011-02-01 08:39:12 +00001307Constant *ConstantVector::getSplatValue() const {
Dan Gohman07159202007-10-17 17:51:30 +00001308 // Check out first element.
1309 Constant *Elt = getOperand(0);
1310 // Then make sure all remaining elements point to the same value.
1311 for (unsigned I = 1, E = getNumOperands(); I < E; ++I)
Chris Lattnerd04e32d2011-07-17 06:01:30 +00001312 if (getOperand(I) != Elt)
Craig Topperc6207612014-04-09 06:08:46 +00001313 return nullptr;
Dan Gohman07159202007-10-17 17:51:30 +00001314 return Elt;
1315}
1316
Duncan Sandse6beec62012-11-13 12:59:33 +00001317const APInt &Constant::getUniqueInteger() const {
1318 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
1319 return CI->getValue();
1320 assert(this->getSplatValue() && "Doesn't contain a unique integer!");
1321 const Constant *C = this->getAggregateElement(0U);
1322 assert(C && isa<ConstantInt>(C) && "Not a vector of numbers!");
1323 return cast<ConstantInt>(C)->getValue();
1324}
1325
Chris Lattner31b132c2009-10-28 00:01:44 +00001326//---- ConstantPointerNull::get() implementation.
Chris Lattnerd7a73302001-10-13 06:57:33 +00001327//
Chris Lattner98fa07b2003-05-23 20:03:32 +00001328
Chris Lattner229907c2011-07-18 04:54:35 +00001329ConstantPointerNull *ConstantPointerNull::get(PointerType *Ty) {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001330 ConstantPointerNull *&Entry = Ty->getContext().pImpl->CPNConstants[Ty];
Craig Topperc6207612014-04-09 06:08:46 +00001331 if (!Entry)
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001332 Entry = new ConstantPointerNull(Ty);
Galina Kistanovafc259902012-07-13 01:25:27 +00001333
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001334 return Entry;
Chris Lattner883ad0b2001-10-03 15:39:36 +00001335}
1336
Sanjay Patel1d0ac7c2016-04-29 22:03:27 +00001337/// Remove the constant from the constant table.
Pete Cooper86dd4cf2015-06-23 21:55:11 +00001338void ConstantPointerNull::destroyConstantImpl() {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001339 getContext().pImpl->CPNConstants.erase(getType());
Chris Lattner0c6e0b92002-08-18 00:40:04 +00001340}
1341
Chris Lattner229907c2011-07-18 04:54:35 +00001342UndefValue *UndefValue::get(Type *Ty) {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001343 UndefValue *&Entry = Ty->getContext().pImpl->UVConstants[Ty];
Craig Topperc6207612014-04-09 06:08:46 +00001344 if (!Entry)
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001345 Entry = new UndefValue(Ty);
Galina Kistanovafc259902012-07-13 01:25:27 +00001346
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001347 return Entry;
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001348}
1349
Sanjay Patel1d0ac7c2016-04-29 22:03:27 +00001350/// Remove the constant from the constant table.
Pete Cooper86dd4cf2015-06-23 21:55:11 +00001351void UndefValue::destroyConstantImpl() {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001352 // Free the constant and any dangling references to it.
1353 getContext().pImpl->UVConstants.erase(getType());
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001354}
1355
Chris Lattner31b132c2009-10-28 00:01:44 +00001356BlockAddress *BlockAddress::get(BasicBlock *BB) {
Craig Topper2617dcc2014-04-15 06:32:26 +00001357 assert(BB->getParent() && "Block must have a parent");
Chris Lattner31b132c2009-10-28 00:01:44 +00001358 return get(BB->getParent(), BB);
1359}
1360
1361BlockAddress *BlockAddress::get(Function *F, BasicBlock *BB) {
1362 BlockAddress *&BA =
1363 F->getContext().pImpl->BlockAddresses[std::make_pair(F, BB)];
Craig Topperc6207612014-04-09 06:08:46 +00001364 if (!BA)
Chris Lattner31b132c2009-10-28 00:01:44 +00001365 BA = new BlockAddress(F, BB);
Galina Kistanovafc259902012-07-13 01:25:27 +00001366
Chris Lattner31b132c2009-10-28 00:01:44 +00001367 assert(BA->getFunction() == F && "Basic block moved between functions");
1368 return BA;
1369}
1370
1371BlockAddress::BlockAddress(Function *F, BasicBlock *BB)
1372: Constant(Type::getInt8PtrTy(F->getContext()), Value::BlockAddressVal,
1373 &Op<0>(), 2) {
Chris Lattnerc559a9f2009-11-01 03:03:03 +00001374 setOperand(0, F);
1375 setOperand(1, BB);
Chris Lattneraa99c942009-11-01 01:27:45 +00001376 BB->AdjustBlockAddressRefCount(1);
Chris Lattner31b132c2009-10-28 00:01:44 +00001377}
1378
Chandler Carruth6a936922014-01-19 02:13:50 +00001379BlockAddress *BlockAddress::lookup(const BasicBlock *BB) {
1380 if (!BB->hasAddressTaken())
Craig Topperc6207612014-04-09 06:08:46 +00001381 return nullptr;
Chandler Carruth6a936922014-01-19 02:13:50 +00001382
1383 const Function *F = BB->getParent();
Craig Topper2617dcc2014-04-15 06:32:26 +00001384 assert(F && "Block must have a parent");
Chandler Carruth6a936922014-01-19 02:13:50 +00001385 BlockAddress *BA =
1386 F->getContext().pImpl->BlockAddresses.lookup(std::make_pair(F, BB));
1387 assert(BA && "Refcount and block address map disagree!");
1388 return BA;
1389}
Chris Lattner31b132c2009-10-28 00:01:44 +00001390
Sanjay Patel1d0ac7c2016-04-29 22:03:27 +00001391/// Remove the constant from the constant table.
Pete Cooper86dd4cf2015-06-23 21:55:11 +00001392void BlockAddress::destroyConstantImpl() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001393 getFunction()->getType()->getContext().pImpl
Chris Lattner31b132c2009-10-28 00:01:44 +00001394 ->BlockAddresses.erase(std::make_pair(getFunction(), getBasicBlock()));
Chris Lattneraa99c942009-11-01 01:27:45 +00001395 getBasicBlock()->AdjustBlockAddressRefCount(-1);
Chris Lattner31b132c2009-10-28 00:01:44 +00001396}
1397
Mehdi Amini8914d292016-02-10 22:47:15 +00001398Value *BlockAddress::handleOperandChangeImpl(Value *From, Value *To) {
Chris Lattner31b132c2009-10-28 00:01:44 +00001399 // This could be replacing either the Basic Block or the Function. In either
1400 // case, we have to remove the map entry.
1401 Function *NewF = getFunction();
1402 BasicBlock *NewBB = getBasicBlock();
Galina Kistanovafc259902012-07-13 01:25:27 +00001403
Mehdi Amini8914d292016-02-10 22:47:15 +00001404 if (From == NewF)
Derek Schuffec9dc012013-06-13 19:51:17 +00001405 NewF = cast<Function>(To->stripPointerCasts());
Mehdi Amini8914d292016-02-10 22:47:15 +00001406 else {
1407 assert(From == NewBB && "From does not match any operand");
Chris Lattner31b132c2009-10-28 00:01:44 +00001408 NewBB = cast<BasicBlock>(To);
Mehdi Amini8914d292016-02-10 22:47:15 +00001409 }
Galina Kistanovafc259902012-07-13 01:25:27 +00001410
Chris Lattner31b132c2009-10-28 00:01:44 +00001411 // See if the 'new' entry already exists, if not, just update this in place
1412 // and return early.
1413 BlockAddress *&NewBA =
1414 getContext().pImpl->BlockAddresses[std::make_pair(NewF, NewBB)];
Pete Cooper5815b1f2015-06-24 18:55:24 +00001415 if (NewBA)
1416 return NewBA;
Chris Lattner31b132c2009-10-28 00:01:44 +00001417
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00001418 getBasicBlock()->AdjustBlockAddressRefCount(-1);
Galina Kistanovafc259902012-07-13 01:25:27 +00001419
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00001420 // Remove the old entry, this can't cause the map to rehash (just a
1421 // tombstone will get added).
1422 getContext().pImpl->BlockAddresses.erase(std::make_pair(getFunction(),
1423 getBasicBlock()));
1424 NewBA = this;
1425 setOperand(0, NewF);
1426 setOperand(1, NewBB);
1427 getBasicBlock()->AdjustBlockAddressRefCount(1);
Pete Cooper5815b1f2015-06-24 18:55:24 +00001428
1429 // If we just want to keep the existing value, then return null.
1430 // Callers know that this means we shouldn't delete this value.
1431 return nullptr;
Chris Lattner31b132c2009-10-28 00:01:44 +00001432}
1433
1434//---- ConstantExpr::get() implementations.
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001435//
Reid Spencer8d9336d2006-12-31 05:26:44 +00001436
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001437/// This is a utility function to handle folding of casts and lookup of the
Duncan Sands7d6c8ae2008-03-30 19:38:55 +00001438/// cast in the ExprConstants map. It is used by the various get* methods below.
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001439static Constant *getFoldedCast(Instruction::CastOps opc, Constant *C, Type *Ty,
1440 bool OnlyIfReduced = false) {
Chris Lattner815ae2b2003-10-07 22:19:19 +00001441 assert(Ty->isFirstClassType() && "Cannot cast to an aggregate type!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001442 // Fold a few common cases
Chris Lattnerf5edeeb2010-02-01 20:48:08 +00001443 if (Constant *FC = ConstantFoldCastInstruction(opc, C, Ty))
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001444 return FC;
Chris Lattneracdbe712003-04-17 19:24:48 +00001445
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001446 if (OnlyIfReduced)
1447 return nullptr;
1448
Owen Anderson1584a292009-08-04 20:25:11 +00001449 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
1450
Nadav Rotem88330432013-03-07 01:30:40 +00001451 // Look up the constant in the table first to ensure uniqueness.
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00001452 ConstantExprKeyType Key(opc, C);
Galina Kistanovafc259902012-07-13 01:25:27 +00001453
Owen Anderson1584a292009-08-04 20:25:11 +00001454 return pImpl->ExprConstants.getOrCreate(Ty, Key);
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001455}
Galina Kistanovafc259902012-07-13 01:25:27 +00001456
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001457Constant *ConstantExpr::getCast(unsigned oc, Constant *C, Type *Ty,
1458 bool OnlyIfReduced) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001459 Instruction::CastOps opc = Instruction::CastOps(oc);
1460 assert(Instruction::isCast(opc) && "opcode out of range");
1461 assert(C && Ty && "Null arguments to getCast");
Chris Lattner37bc78a2010-01-26 21:51:43 +00001462 assert(CastInst::castIsValid(opc, C, Ty) && "Invalid constantexpr cast!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001463
1464 switch (opc) {
Chris Lattner37bc78a2010-01-26 21:51:43 +00001465 default:
1466 llvm_unreachable("Invalid cast opcode");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001467 case Instruction::Trunc:
1468 return getTrunc(C, Ty, OnlyIfReduced);
1469 case Instruction::ZExt:
1470 return getZExt(C, Ty, OnlyIfReduced);
1471 case Instruction::SExt:
1472 return getSExt(C, Ty, OnlyIfReduced);
1473 case Instruction::FPTrunc:
1474 return getFPTrunc(C, Ty, OnlyIfReduced);
1475 case Instruction::FPExt:
1476 return getFPExtend(C, Ty, OnlyIfReduced);
1477 case Instruction::UIToFP:
1478 return getUIToFP(C, Ty, OnlyIfReduced);
1479 case Instruction::SIToFP:
1480 return getSIToFP(C, Ty, OnlyIfReduced);
1481 case Instruction::FPToUI:
1482 return getFPToUI(C, Ty, OnlyIfReduced);
1483 case Instruction::FPToSI:
1484 return getFPToSI(C, Ty, OnlyIfReduced);
1485 case Instruction::PtrToInt:
1486 return getPtrToInt(C, Ty, OnlyIfReduced);
1487 case Instruction::IntToPtr:
1488 return getIntToPtr(C, Ty, OnlyIfReduced);
1489 case Instruction::BitCast:
1490 return getBitCast(C, Ty, OnlyIfReduced);
1491 case Instruction::AddrSpaceCast:
1492 return getAddrSpaceCast(C, Ty, OnlyIfReduced);
Chris Lattner1ece6f82005-01-01 15:59:57 +00001493 }
Galina Kistanovafc259902012-07-13 01:25:27 +00001494}
Reid Spencerf37dc652006-12-05 19:14:13 +00001495
Chris Lattner229907c2011-07-18 04:54:35 +00001496Constant *ConstantExpr::getZExtOrBitCast(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001497 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001498 return getBitCast(C, Ty);
1499 return getZExt(C, Ty);
Reid Spencer5c140882006-12-04 20:17:56 +00001500}
1501
Chris Lattner229907c2011-07-18 04:54:35 +00001502Constant *ConstantExpr::getSExtOrBitCast(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001503 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001504 return getBitCast(C, Ty);
1505 return getSExt(C, Ty);
Reid Spencer5c140882006-12-04 20:17:56 +00001506}
1507
Chris Lattner229907c2011-07-18 04:54:35 +00001508Constant *ConstantExpr::getTruncOrBitCast(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001509 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001510 return getBitCast(C, Ty);
1511 return getTrunc(C, Ty);
Reid Spencer5c140882006-12-04 20:17:56 +00001512}
1513
Chris Lattner229907c2011-07-18 04:54:35 +00001514Constant *ConstantExpr::getPointerCast(Constant *S, Type *Ty) {
Evgeniy Stepanov23382642013-01-16 14:41:46 +00001515 assert(S->getType()->isPtrOrPtrVectorTy() && "Invalid cast");
1516 assert((Ty->isIntOrIntVectorTy() || Ty->isPtrOrPtrVectorTy()) &&
1517 "Invalid cast");
Reid Spencerbc245a02006-12-05 03:25:26 +00001518
Evgeniy Stepanov23382642013-01-16 14:41:46 +00001519 if (Ty->isIntOrIntVectorTy())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001520 return getPtrToInt(S, Ty);
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001521
1522 unsigned SrcAS = S->getType()->getPointerAddressSpace();
1523 if (Ty->isPtrOrPtrVectorTy() && SrcAS != Ty->getPointerAddressSpace())
1524 return getAddrSpaceCast(S, Ty);
1525
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001526 return getBitCast(S, Ty);
Reid Spencerbc245a02006-12-05 03:25:26 +00001527}
1528
Matt Arsenault21f38f42013-12-07 02:58:41 +00001529Constant *ConstantExpr::getPointerBitCastOrAddrSpaceCast(Constant *S,
1530 Type *Ty) {
1531 assert(S->getType()->isPtrOrPtrVectorTy() && "Invalid cast");
1532 assert(Ty->isPtrOrPtrVectorTy() && "Invalid cast");
1533
1534 if (S->getType()->getPointerAddressSpace() != Ty->getPointerAddressSpace())
1535 return getAddrSpaceCast(S, Ty);
1536
1537 return getBitCast(S, Ty);
1538}
1539
Sanjay Patelf3587ec2016-05-18 22:05:28 +00001540Constant *ConstantExpr::getIntegerCast(Constant *C, Type *Ty, bool isSigned) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001541 assert(C->getType()->isIntOrIntVectorTy() &&
1542 Ty->isIntOrIntVectorTy() && "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001543 unsigned SrcBits = C->getType()->getScalarSizeInBits();
1544 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer56521c42006-12-12 00:51:07 +00001545 Instruction::CastOps opcode =
1546 (SrcBits == DstBits ? Instruction::BitCast :
1547 (SrcBits > DstBits ? Instruction::Trunc :
1548 (isSigned ? Instruction::SExt : Instruction::ZExt)));
1549 return getCast(opcode, C, Ty);
1550}
1551
Chris Lattner229907c2011-07-18 04:54:35 +00001552Constant *ConstantExpr::getFPCast(Constant *C, Type *Ty) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001553 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer56521c42006-12-12 00:51:07 +00001554 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001555 unsigned SrcBits = C->getType()->getScalarSizeInBits();
1556 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencerca104e82006-12-12 05:38:50 +00001557 if (SrcBits == DstBits)
1558 return C; // Avoid a useless cast
Reid Spencer56521c42006-12-12 00:51:07 +00001559 Instruction::CastOps opcode =
Jay Foad9f32cfd2011-01-27 14:44:55 +00001560 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt);
Reid Spencer56521c42006-12-12 00:51:07 +00001561 return getCast(opcode, C, Ty);
1562}
1563
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001564Constant *ConstantExpr::getTrunc(Constant *C, Type *Ty, bool OnlyIfReduced) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001565#ifndef NDEBUG
1566 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1567 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1568#endif
1569 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001570 assert(C->getType()->isIntOrIntVectorTy() && "Trunc operand must be integer");
1571 assert(Ty->isIntOrIntVectorTy() && "Trunc produces only integral");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001572 assert(C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001573 "SrcTy must be larger than DestTy for Trunc!");
1574
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001575 return getFoldedCast(Instruction::Trunc, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001576}
1577
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001578Constant *ConstantExpr::getSExt(Constant *C, Type *Ty, bool OnlyIfReduced) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001579#ifndef NDEBUG
1580 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1581 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1582#endif
1583 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001584 assert(C->getType()->isIntOrIntVectorTy() && "SExt operand must be integral");
1585 assert(Ty->isIntOrIntVectorTy() && "SExt produces only integer");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001586 assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001587 "SrcTy must be smaller than DestTy for SExt!");
1588
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001589 return getFoldedCast(Instruction::SExt, C, Ty, OnlyIfReduced);
Chris Lattnerdd284742004-04-04 23:20:30 +00001590}
1591
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001592Constant *ConstantExpr::getZExt(Constant *C, Type *Ty, bool OnlyIfReduced) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001593#ifndef NDEBUG
1594 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1595 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1596#endif
1597 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001598 assert(C->getType()->isIntOrIntVectorTy() && "ZEXt operand must be integral");
1599 assert(Ty->isIntOrIntVectorTy() && "ZExt produces only integer");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001600 assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001601 "SrcTy must be smaller than DestTy for ZExt!");
1602
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001603 return getFoldedCast(Instruction::ZExt, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001604}
1605
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001606Constant *ConstantExpr::getFPTrunc(Constant *C, Type *Ty, bool OnlyIfReduced) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001607#ifndef NDEBUG
1608 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1609 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1610#endif
1611 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001612 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001613 C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001614 "This is an illegal floating point truncation!");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001615 return getFoldedCast(Instruction::FPTrunc, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001616}
1617
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001618Constant *ConstantExpr::getFPExtend(Constant *C, Type *Ty, bool OnlyIfReduced) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001619#ifndef NDEBUG
1620 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1621 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1622#endif
1623 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001624 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001625 C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001626 "This is an illegal floating point extension!");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001627 return getFoldedCast(Instruction::FPExt, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001628}
1629
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001630Constant *ConstantExpr::getUIToFP(Constant *C, Type *Ty, bool OnlyIfReduced) {
Devang Pateld26344d2008-11-03 23:20:04 +00001631#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001632 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1633 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001634#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001635 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001636 assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00001637 "This is an illegal uint to floating point cast!");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001638 return getFoldedCast(Instruction::UIToFP, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001639}
1640
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001641Constant *ConstantExpr::getSIToFP(Constant *C, Type *Ty, bool OnlyIfReduced) {
Devang Pateld26344d2008-11-03 23:20:04 +00001642#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001643 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1644 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001645#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001646 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001647 assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001648 "This is an illegal sint to floating point cast!");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001649 return getFoldedCast(Instruction::SIToFP, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001650}
1651
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001652Constant *ConstantExpr::getFPToUI(Constant *C, Type *Ty, bool OnlyIfReduced) {
Devang Pateld26344d2008-11-03 23:20:04 +00001653#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001654 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1655 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001656#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001657 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001658 assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00001659 "This is an illegal floating point to uint cast!");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001660 return getFoldedCast(Instruction::FPToUI, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001661}
1662
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001663Constant *ConstantExpr::getFPToSI(Constant *C, Type *Ty, bool OnlyIfReduced) {
Devang Pateld26344d2008-11-03 23:20:04 +00001664#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001665 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1666 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001667#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001668 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001669 assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00001670 "This is an illegal floating point to sint cast!");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001671 return getFoldedCast(Instruction::FPToSI, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001672}
1673
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001674Constant *ConstantExpr::getPtrToInt(Constant *C, Type *DstTy,
1675 bool OnlyIfReduced) {
Nadav Rotem3924cb02011-12-05 06:29:09 +00001676 assert(C->getType()->getScalarType()->isPointerTy() &&
1677 "PtrToInt source must be pointer or pointer vector");
1678 assert(DstTy->getScalarType()->isIntegerTy() &&
1679 "PtrToInt destination must be integer or integer vector");
Chris Lattner8a3df542012-01-25 01:32:59 +00001680 assert(isa<VectorType>(C->getType()) == isa<VectorType>(DstTy));
Nick Lewyckyff509622012-01-25 03:20:12 +00001681 if (isa<VectorType>(C->getType()))
Chris Lattner8326bd82012-01-26 00:42:34 +00001682 assert(C->getType()->getVectorNumElements()==DstTy->getVectorNumElements()&&
Chris Lattner8a3df542012-01-25 01:32:59 +00001683 "Invalid cast between a different number of vector elements");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001684 return getFoldedCast(Instruction::PtrToInt, C, DstTy, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001685}
1686
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001687Constant *ConstantExpr::getIntToPtr(Constant *C, Type *DstTy,
1688 bool OnlyIfReduced) {
Nadav Rotem3924cb02011-12-05 06:29:09 +00001689 assert(C->getType()->getScalarType()->isIntegerTy() &&
1690 "IntToPtr source must be integer or integer vector");
1691 assert(DstTy->getScalarType()->isPointerTy() &&
1692 "IntToPtr destination must be a pointer or pointer vector");
Chris Lattner8a3df542012-01-25 01:32:59 +00001693 assert(isa<VectorType>(C->getType()) == isa<VectorType>(DstTy));
Nick Lewyckyff509622012-01-25 03:20:12 +00001694 if (isa<VectorType>(C->getType()))
Chris Lattner8326bd82012-01-26 00:42:34 +00001695 assert(C->getType()->getVectorNumElements()==DstTy->getVectorNumElements()&&
Chris Lattner8a3df542012-01-25 01:32:59 +00001696 "Invalid cast between a different number of vector elements");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001697 return getFoldedCast(Instruction::IntToPtr, C, DstTy, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001698}
1699
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001700Constant *ConstantExpr::getBitCast(Constant *C, Type *DstTy,
1701 bool OnlyIfReduced) {
Chris Lattner37bc78a2010-01-26 21:51:43 +00001702 assert(CastInst::castIsValid(Instruction::BitCast, C, DstTy) &&
1703 "Invalid constantexpr bitcast!");
Galina Kistanovafc259902012-07-13 01:25:27 +00001704
Chris Lattnercbeda872009-03-21 06:55:54 +00001705 // It is common to ask for a bitcast of a value to its own type, handle this
1706 // speedily.
1707 if (C->getType() == DstTy) return C;
Galina Kistanovafc259902012-07-13 01:25:27 +00001708
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001709 return getFoldedCast(Instruction::BitCast, C, DstTy, OnlyIfReduced);
Chris Lattnerdd284742004-04-04 23:20:30 +00001710}
1711
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001712Constant *ConstantExpr::getAddrSpaceCast(Constant *C, Type *DstTy,
1713 bool OnlyIfReduced) {
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001714 assert(CastInst::castIsValid(Instruction::AddrSpaceCast, C, DstTy) &&
1715 "Invalid constantexpr addrspacecast!");
1716
Jingyue Wubaabe502014-06-15 21:40:57 +00001717 // Canonicalize addrspacecasts between different pointer types by first
1718 // bitcasting the pointer type and then converting the address space.
1719 PointerType *SrcScalarTy = cast<PointerType>(C->getType()->getScalarType());
1720 PointerType *DstScalarTy = cast<PointerType>(DstTy->getScalarType());
1721 Type *DstElemTy = DstScalarTy->getElementType();
1722 if (SrcScalarTy->getElementType() != DstElemTy) {
1723 Type *MidTy = PointerType::get(DstElemTy, SrcScalarTy->getAddressSpace());
1724 if (VectorType *VT = dyn_cast<VectorType>(DstTy)) {
1725 // Handle vectors of pointers.
1726 MidTy = VectorType::get(MidTy, VT->getNumElements());
1727 }
1728 C = getBitCast(C, MidTy);
1729 }
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001730 return getFoldedCast(Instruction::AddrSpaceCast, C, DstTy, OnlyIfReduced);
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001731}
1732
Chris Lattner887ecac2011-07-09 18:23:52 +00001733Constant *ConstantExpr::get(unsigned Opcode, Constant *C1, Constant *C2,
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001734 unsigned Flags, Type *OnlyIfReducedTy) {
Chris Lattner887ecac2011-07-09 18:23:52 +00001735 // Check the operands for consistency first.
Reid Spencer7eb55b32006-11-02 01:53:59 +00001736 assert(Opcode >= Instruction::BinaryOpsBegin &&
1737 Opcode < Instruction::BinaryOpsEnd &&
Chris Lattner38a9bcd2003-05-21 17:49:25 +00001738 "Invalid opcode in binary constant expression");
1739 assert(C1->getType() == C2->getType() &&
1740 "Operand types in binary constant expression should match");
Galina Kistanovafc259902012-07-13 01:25:27 +00001741
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001742#ifndef NDEBUG
1743 switch (Opcode) {
Dan Gohmana5b96452009-06-04 22:49:04 +00001744 case Instruction::Add:
Reid Spencer7eb55b32006-11-02 01:53:59 +00001745 case Instruction::Sub:
Dan Gohmana5b96452009-06-04 22:49:04 +00001746 case Instruction::Mul:
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001747 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001748 assert(C1->getType()->isIntOrIntVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001749 "Tried to create an integer operation on a non-integer type!");
1750 break;
1751 case Instruction::FAdd:
1752 case Instruction::FSub:
1753 case Instruction::FMul:
1754 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001755 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001756 "Tried to create a floating-point operation on a "
1757 "non-floating-point type!");
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001758 break;
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001759 case Instruction::UDiv:
1760 case Instruction::SDiv:
1761 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001762 assert(C1->getType()->isIntOrIntVectorTy() &&
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001763 "Tried to create an arithmetic operation on a non-arithmetic type!");
1764 break;
1765 case Instruction::FDiv:
1766 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001767 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001768 "Tried to create an arithmetic operation on a non-arithmetic type!");
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001769 break;
Reid Spencer7eb55b32006-11-02 01:53:59 +00001770 case Instruction::URem:
1771 case Instruction::SRem:
1772 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001773 assert(C1->getType()->isIntOrIntVectorTy() &&
Reid Spencer7eb55b32006-11-02 01:53:59 +00001774 "Tried to create an arithmetic operation on a non-arithmetic type!");
1775 break;
1776 case Instruction::FRem:
1777 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001778 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001779 "Tried to create an arithmetic operation on a non-arithmetic type!");
Reid Spencer7eb55b32006-11-02 01:53:59 +00001780 break;
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001781 case Instruction::And:
1782 case Instruction::Or:
1783 case Instruction::Xor:
1784 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001785 assert(C1->getType()->isIntOrIntVectorTy() &&
Misha Brukman3852f652005-01-27 06:46:38 +00001786 "Tried to create a logical operation on a non-integral type!");
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001787 break;
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001788 case Instruction::Shl:
Reid Spencerfdff9382006-11-08 06:47:33 +00001789 case Instruction::LShr:
1790 case Instruction::AShr:
Reid Spencer2341c222007-02-02 02:16:23 +00001791 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001792 assert(C1->getType()->isIntOrIntVectorTy() &&
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001793 "Tried to create a shift operation on a non-integer type!");
1794 break;
1795 default:
1796 break;
1797 }
1798#endif
1799
Chris Lattner887ecac2011-07-09 18:23:52 +00001800 if (Constant *FC = ConstantFoldBinaryInstruction(Opcode, C1, C2))
1801 return FC; // Fold a few common cases.
Galina Kistanovafc259902012-07-13 01:25:27 +00001802
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001803 if (OnlyIfReducedTy == C1->getType())
1804 return nullptr;
1805
Benjamin Kramer324322b2013-03-07 20:53:34 +00001806 Constant *ArgVec[] = { C1, C2 };
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00001807 ConstantExprKeyType Key(Opcode, ArgVec, 0, Flags);
Galina Kistanovafc259902012-07-13 01:25:27 +00001808
Chris Lattner887ecac2011-07-09 18:23:52 +00001809 LLVMContextImpl *pImpl = C1->getContext().pImpl;
1810 return pImpl->ExprConstants.getOrCreate(C1->getType(), Key);
Reid Spencera009d0d2006-12-04 21:35:24 +00001811}
1812
Chris Lattner229907c2011-07-18 04:54:35 +00001813Constant *ConstantExpr::getSizeOf(Type* Ty) {
Owen Anderson487375e2009-07-29 18:55:55 +00001814 // sizeof is implemented as: (i64) gep (Ty*)null, 1
1815 // Note that a non-inbounds gep is used, as null isn't within any object.
Owen Anderson55f1c092009-08-13 21:58:54 +00001816 Constant *GEPIdx = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
Owen Anderson487375e2009-07-29 18:55:55 +00001817 Constant *GEP = getGetElementPtr(
David Blaikie4a2e73b2015-04-02 18:55:32 +00001818 Ty, Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx);
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001819 return getPtrToInt(GEP,
1820 Type::getInt64Ty(Ty->getContext()));
Owen Anderson487375e2009-07-29 18:55:55 +00001821}
1822
Chris Lattner229907c2011-07-18 04:54:35 +00001823Constant *ConstantExpr::getAlignOf(Type* Ty) {
Dan Gohmancf913832010-01-28 02:15:55 +00001824 // alignof is implemented as: (i64) gep ({i1,Ty}*)null, 0, 1
Dan Gohman50c09d02009-08-11 17:57:01 +00001825 // Note that a non-inbounds gep is used, as null isn't within any object.
Chris Lattner229907c2011-07-18 04:54:35 +00001826 Type *AligningTy =
Reid Kleckner971c3ea2014-11-13 22:55:19 +00001827 StructType::get(Type::getInt1Ty(Ty->getContext()), Ty, nullptr);
Matt Arsenaultbe558882014-04-23 20:58:57 +00001828 Constant *NullPtr = Constant::getNullValue(AligningTy->getPointerTo(0));
Dan Gohmana9be7392010-01-28 02:43:22 +00001829 Constant *Zero = ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0);
Owen Anderson55f1c092009-08-13 21:58:54 +00001830 Constant *One = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
Owen Anderson487375e2009-07-29 18:55:55 +00001831 Constant *Indices[2] = { Zero, One };
David Blaikie4a2e73b2015-04-02 18:55:32 +00001832 Constant *GEP = getGetElementPtr(AligningTy, NullPtr, Indices);
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001833 return getPtrToInt(GEP,
1834 Type::getInt64Ty(Ty->getContext()));
Owen Anderson487375e2009-07-29 18:55:55 +00001835}
1836
Chris Lattner229907c2011-07-18 04:54:35 +00001837Constant *ConstantExpr::getOffsetOf(StructType* STy, unsigned FieldNo) {
Dan Gohmanede94e62010-02-01 16:37:38 +00001838 return getOffsetOf(STy, ConstantInt::get(Type::getInt32Ty(STy->getContext()),
1839 FieldNo));
1840}
1841
Chris Lattner229907c2011-07-18 04:54:35 +00001842Constant *ConstantExpr::getOffsetOf(Type* Ty, Constant *FieldNo) {
Dan Gohmanff3af7252009-08-16 21:26:11 +00001843 // offsetof is implemented as: (i64) gep (Ty*)null, 0, FieldNo
1844 // Note that a non-inbounds gep is used, as null isn't within any object.
1845 Constant *GEPIdx[] = {
Dan Gohmanede94e62010-02-01 16:37:38 +00001846 ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0),
1847 FieldNo
Dan Gohmanff3af7252009-08-16 21:26:11 +00001848 };
1849 Constant *GEP = getGetElementPtr(
David Blaikie4a2e73b2015-04-02 18:55:32 +00001850 Ty, Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx);
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001851 return getPtrToInt(GEP,
1852 Type::getInt64Ty(Ty->getContext()));
Dan Gohmanff3af7252009-08-16 21:26:11 +00001853}
Owen Anderson487375e2009-07-29 18:55:55 +00001854
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001855Constant *ConstantExpr::getCompare(unsigned short Predicate, Constant *C1,
1856 Constant *C2, bool OnlyIfReduced) {
Reid Spencera009d0d2006-12-04 21:35:24 +00001857 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Galina Kistanovafc259902012-07-13 01:25:27 +00001858
Chris Lattner887ecac2011-07-09 18:23:52 +00001859 switch (Predicate) {
1860 default: llvm_unreachable("Invalid CmpInst predicate");
1861 case CmpInst::FCMP_FALSE: case CmpInst::FCMP_OEQ: case CmpInst::FCMP_OGT:
1862 case CmpInst::FCMP_OGE: case CmpInst::FCMP_OLT: case CmpInst::FCMP_OLE:
1863 case CmpInst::FCMP_ONE: case CmpInst::FCMP_ORD: case CmpInst::FCMP_UNO:
1864 case CmpInst::FCMP_UEQ: case CmpInst::FCMP_UGT: case CmpInst::FCMP_UGE:
1865 case CmpInst::FCMP_ULT: case CmpInst::FCMP_ULE: case CmpInst::FCMP_UNE:
1866 case CmpInst::FCMP_TRUE:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001867 return getFCmp(Predicate, C1, C2, OnlyIfReduced);
Galina Kistanovafc259902012-07-13 01:25:27 +00001868
Chris Lattner887ecac2011-07-09 18:23:52 +00001869 case CmpInst::ICMP_EQ: case CmpInst::ICMP_NE: case CmpInst::ICMP_UGT:
1870 case CmpInst::ICMP_UGE: case CmpInst::ICMP_ULT: case CmpInst::ICMP_ULE:
1871 case CmpInst::ICMP_SGT: case CmpInst::ICMP_SGE: case CmpInst::ICMP_SLT:
1872 case CmpInst::ICMP_SLE:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001873 return getICmp(Predicate, C1, C2, OnlyIfReduced);
Chris Lattner887ecac2011-07-09 18:23:52 +00001874 }
Chris Lattner29ca2c62004-08-04 18:50:09 +00001875}
1876
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001877Constant *ConstantExpr::getSelect(Constant *C, Constant *V1, Constant *V2,
1878 Type *OnlyIfReducedTy) {
Chris Lattner41632132008-12-29 00:16:12 +00001879 assert(!SelectInst::areInvalidOperands(C, V1, V2)&&"Invalid select operands");
Chris Lattner6e415c02004-03-12 05:54:04 +00001880
Chris Lattner887ecac2011-07-09 18:23:52 +00001881 if (Constant *SC = ConstantFoldSelectInstruction(C, V1, V2))
1882 return SC; // Fold common cases
Chris Lattner6e415c02004-03-12 05:54:04 +00001883
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001884 if (OnlyIfReducedTy == V1->getType())
1885 return nullptr;
1886
Benjamin Kramer324322b2013-03-07 20:53:34 +00001887 Constant *ArgVec[] = { C, V1, V2 };
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00001888 ConstantExprKeyType Key(Instruction::Select, ArgVec);
Galina Kistanovafc259902012-07-13 01:25:27 +00001889
Chris Lattner887ecac2011-07-09 18:23:52 +00001890 LLVMContextImpl *pImpl = C->getContext().pImpl;
1891 return pImpl->ExprConstants.getOrCreate(V1->getType(), Key);
Chris Lattner6e415c02004-03-12 05:54:04 +00001892}
1893
David Blaikie4a2e73b2015-04-02 18:55:32 +00001894Constant *ConstantExpr::getGetElementPtr(Type *Ty, Constant *C,
1895 ArrayRef<Value *> Idxs, bool InBounds,
1896 Type *OnlyIfReducedTy) {
David Blaikie4a2e73b2015-04-02 18:55:32 +00001897 if (!Ty)
1898 Ty = cast<PointerType>(C->getType()->getScalarType())->getElementType();
1899 else
David Blaikied9d900c2015-05-07 17:28:58 +00001900 assert(
1901 Ty ==
1902 cast<PointerType>(C->getType()->getScalarType())->getContainedType(0u));
1903
1904 if (Constant *FC = ConstantFoldGetElementPtr(Ty, C, InBounds, Idxs))
1905 return FC; // Fold a few common cases.
1906
Chris Lattner887ecac2011-07-09 18:23:52 +00001907 // Get the result type of the getelementptr!
David Blaikie4a2e73b2015-04-02 18:55:32 +00001908 Type *DestTy = GetElementPtrInst::getIndexedType(Ty, Idxs);
1909 assert(DestTy && "GEP indices invalid!");
Chris Lattner8326bd82012-01-26 00:42:34 +00001910 unsigned AS = C->getType()->getPointerAddressSpace();
David Blaikie4a2e73b2015-04-02 18:55:32 +00001911 Type *ReqTy = DestTy->getPointerTo(AS);
Elena Demikhovskyee004bc2016-05-15 12:30:25 +00001912
1913 unsigned NumVecElts = 0;
1914 if (C->getType()->isVectorTy())
1915 NumVecElts = C->getType()->getVectorNumElements();
1916 else for (auto Idx : Idxs)
1917 if (Idx->getType()->isVectorTy())
1918 NumVecElts = Idx->getType()->getVectorNumElements();
1919
1920 if (NumVecElts)
1921 ReqTy = VectorType::get(ReqTy, NumVecElts);
Galina Kistanovafc259902012-07-13 01:25:27 +00001922
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001923 if (OnlyIfReducedTy == ReqTy)
1924 return nullptr;
1925
Dan Gohman1b849082009-09-07 23:54:19 +00001926 // Look up the constant in the table first to ensure uniqueness
1927 std::vector<Constant*> ArgVec;
Jay Foaded8db7d2011-07-21 14:31:17 +00001928 ArgVec.reserve(1 + Idxs.size());
Dan Gohman1b849082009-09-07 23:54:19 +00001929 ArgVec.push_back(C);
Duncan Sandse6beec62012-11-13 12:59:33 +00001930 for (unsigned i = 0, e = Idxs.size(); i != e; ++i) {
Duncan Sandse6beec62012-11-13 12:59:33 +00001931 assert((!Idxs[i]->getType()->isVectorTy() ||
Elena Demikhovskyee004bc2016-05-15 12:30:25 +00001932 Idxs[i]->getType()->getVectorNumElements() == NumVecElts) &&
Duncan Sandse6beec62012-11-13 12:59:33 +00001933 "getelementptr index type missmatch");
Elena Demikhovskyee004bc2016-05-15 12:30:25 +00001934
1935 Constant *Idx = cast<Constant>(Idxs[i]);
1936 if (NumVecElts && !Idxs[i]->getType()->isVectorTy())
1937 Idx = ConstantVector::getSplat(NumVecElts, Idx);
1938 ArgVec.push_back(Idx);
Duncan Sandse6beec62012-11-13 12:59:33 +00001939 }
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00001940 const ConstantExprKeyType Key(Instruction::GetElementPtr, ArgVec, 0,
David Blaikie60310f22015-05-08 00:42:26 +00001941 InBounds ? GEPOperator::IsInBounds : 0, None,
1942 Ty);
Galina Kistanovafc259902012-07-13 01:25:27 +00001943
Chris Lattner887ecac2011-07-09 18:23:52 +00001944 LLVMContextImpl *pImpl = C->getContext().pImpl;
Dan Gohman1b849082009-09-07 23:54:19 +00001945 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
1946}
1947
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001948Constant *ConstantExpr::getICmp(unsigned short pred, Constant *LHS,
1949 Constant *RHS, bool OnlyIfReduced) {
Reid Spenceree3c9912006-12-04 05:19:50 +00001950 assert(LHS->getType() == RHS->getType());
1951 assert(pred >= ICmpInst::FIRST_ICMP_PREDICATE &&
1952 pred <= ICmpInst::LAST_ICMP_PREDICATE && "Invalid ICmp Predicate");
1953
Chris Lattnerf5edeeb2010-02-01 20:48:08 +00001954 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
Reid Spenceree3c9912006-12-04 05:19:50 +00001955 return FC; // Fold a few common cases...
1956
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001957 if (OnlyIfReduced)
1958 return nullptr;
1959
Reid Spenceree3c9912006-12-04 05:19:50 +00001960 // Look up the constant in the table first to ensure uniqueness
Benjamin Kramer324322b2013-03-07 20:53:34 +00001961 Constant *ArgVec[] = { LHS, RHS };
Reid Spencerb1537492006-12-24 18:42:29 +00001962 // Get the key type with both the opcode and predicate
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00001963 const ConstantExprKeyType Key(Instruction::ICmp, ArgVec, pred);
Owen Anderson61794042009-06-17 20:10:08 +00001964
Chris Lattner229907c2011-07-18 04:54:35 +00001965 Type *ResultTy = Type::getInt1Ty(LHS->getContext());
1966 if (VectorType *VT = dyn_cast<VectorType>(LHS->getType()))
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001967 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
1968
Owen Anderson1584a292009-08-04 20:25:11 +00001969 LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl;
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001970 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
Reid Spenceree3c9912006-12-04 05:19:50 +00001971}
1972
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001973Constant *ConstantExpr::getFCmp(unsigned short pred, Constant *LHS,
1974 Constant *RHS, bool OnlyIfReduced) {
Reid Spenceree3c9912006-12-04 05:19:50 +00001975 assert(LHS->getType() == RHS->getType());
1976 assert(pred <= FCmpInst::LAST_FCMP_PREDICATE && "Invalid FCmp Predicate");
1977
Chris Lattnerf5edeeb2010-02-01 20:48:08 +00001978 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
Reid Spenceree3c9912006-12-04 05:19:50 +00001979 return FC; // Fold a few common cases...
1980
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001981 if (OnlyIfReduced)
1982 return nullptr;
1983
Reid Spenceree3c9912006-12-04 05:19:50 +00001984 // Look up the constant in the table first to ensure uniqueness
Benjamin Kramer324322b2013-03-07 20:53:34 +00001985 Constant *ArgVec[] = { LHS, RHS };
Reid Spencerb1537492006-12-24 18:42:29 +00001986 // Get the key type with both the opcode and predicate
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00001987 const ConstantExprKeyType Key(Instruction::FCmp, ArgVec, pred);
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001988
Chris Lattner229907c2011-07-18 04:54:35 +00001989 Type *ResultTy = Type::getInt1Ty(LHS->getContext());
1990 if (VectorType *VT = dyn_cast<VectorType>(LHS->getType()))
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001991 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
1992
Owen Anderson1584a292009-08-04 20:25:11 +00001993 LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl;
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001994 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
Reid Spenceree3c9912006-12-04 05:19:50 +00001995}
1996
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001997Constant *ConstantExpr::getExtractElement(Constant *Val, Constant *Idx,
1998 Type *OnlyIfReducedTy) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001999 assert(Val->getType()->isVectorTy() &&
Reid Spencer09575ba2007-02-15 03:39:18 +00002000 "Tried to create extractelement operation on non-vector type!");
Michael J. Spencer1f10c5ea2014-05-01 22:12:39 +00002001 assert(Idx->getType()->isIntegerTy() &&
2002 "Extractelement index must be an integer type!");
Galina Kistanovafc259902012-07-13 01:25:27 +00002003
Chris Lattner887ecac2011-07-09 18:23:52 +00002004 if (Constant *FC = ConstantFoldExtractElementInstruction(Val, Idx))
Chris Lattner09660c92009-12-30 20:25:09 +00002005 return FC; // Fold a few common cases.
Galina Kistanovafc259902012-07-13 01:25:27 +00002006
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002007 Type *ReqTy = Val->getType()->getVectorElementType();
2008 if (OnlyIfReducedTy == ReqTy)
2009 return nullptr;
2010
Robert Bocchinoca27f032006-01-17 20:07:22 +00002011 // Look up the constant in the table first to ensure uniqueness
Benjamin Kramer324322b2013-03-07 20:53:34 +00002012 Constant *ArgVec[] = { Val, Idx };
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002013 const ConstantExprKeyType Key(Instruction::ExtractElement, ArgVec);
Galina Kistanovafc259902012-07-13 01:25:27 +00002014
Chris Lattner887ecac2011-07-09 18:23:52 +00002015 LLVMContextImpl *pImpl = Val->getContext().pImpl;
Owen Anderson1584a292009-08-04 20:25:11 +00002016 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Robert Bocchinoca27f032006-01-17 20:07:22 +00002017}
2018
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002019Constant *ConstantExpr::getInsertElement(Constant *Val, Constant *Elt,
2020 Constant *Idx, Type *OnlyIfReducedTy) {
Duncan Sands19d0b472010-02-16 11:11:14 +00002021 assert(Val->getType()->isVectorTy() &&
Reid Spencer09575ba2007-02-15 03:39:18 +00002022 "Tried to create insertelement operation on non-vector type!");
Chris Lattner8326bd82012-01-26 00:42:34 +00002023 assert(Elt->getType() == Val->getType()->getVectorElementType() &&
2024 "Insertelement types must match!");
Michael J. Spencer1f10c5ea2014-05-01 22:12:39 +00002025 assert(Idx->getType()->isIntegerTy() &&
Reid Spencer2546b762007-01-26 07:37:34 +00002026 "Insertelement index must be i32 type!");
Robert Bocchinoca27f032006-01-17 20:07:22 +00002027
Chris Lattner887ecac2011-07-09 18:23:52 +00002028 if (Constant *FC = ConstantFoldInsertElementInstruction(Val, Elt, Idx))
2029 return FC; // Fold a few common cases.
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002030
2031 if (OnlyIfReducedTy == Val->getType())
2032 return nullptr;
2033
Chris Lattnerbbe0a422006-04-08 01:18:18 +00002034 // Look up the constant in the table first to ensure uniqueness
Benjamin Kramer324322b2013-03-07 20:53:34 +00002035 Constant *ArgVec[] = { Val, Elt, Idx };
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002036 const ConstantExprKeyType Key(Instruction::InsertElement, ArgVec);
Galina Kistanovafc259902012-07-13 01:25:27 +00002037
Chris Lattner887ecac2011-07-09 18:23:52 +00002038 LLVMContextImpl *pImpl = Val->getContext().pImpl;
2039 return pImpl->ExprConstants.getOrCreate(Val->getType(), Key);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00002040}
2041
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002042Constant *ConstantExpr::getShuffleVector(Constant *V1, Constant *V2,
2043 Constant *Mask, Type *OnlyIfReducedTy) {
Chris Lattnerbbe0a422006-04-08 01:18:18 +00002044 assert(ShuffleVectorInst::isValidOperands(V1, V2, Mask) &&
2045 "Invalid shuffle vector constant expr operands!");
Nate Begeman94aa38d2009-02-12 21:28:33 +00002046
Chris Lattner887ecac2011-07-09 18:23:52 +00002047 if (Constant *FC = ConstantFoldShuffleVectorInstruction(V1, V2, Mask))
2048 return FC; // Fold a few common cases.
2049
Chris Lattner8326bd82012-01-26 00:42:34 +00002050 unsigned NElts = Mask->getType()->getVectorNumElements();
2051 Type *EltTy = V1->getType()->getVectorElementType();
Chris Lattner229907c2011-07-18 04:54:35 +00002052 Type *ShufTy = VectorType::get(EltTy, NElts);
Chris Lattner887ecac2011-07-09 18:23:52 +00002053
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002054 if (OnlyIfReducedTy == ShufTy)
2055 return nullptr;
2056
Chris Lattner887ecac2011-07-09 18:23:52 +00002057 // Look up the constant in the table first to ensure uniqueness
Benjamin Kramer324322b2013-03-07 20:53:34 +00002058 Constant *ArgVec[] = { V1, V2, Mask };
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002059 const ConstantExprKeyType Key(Instruction::ShuffleVector, ArgVec);
Galina Kistanovafc259902012-07-13 01:25:27 +00002060
Chris Lattner887ecac2011-07-09 18:23:52 +00002061 LLVMContextImpl *pImpl = ShufTy->getContext().pImpl;
2062 return pImpl->ExprConstants.getOrCreate(ShufTy, Key);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00002063}
2064
Chris Lattner887ecac2011-07-09 18:23:52 +00002065Constant *ConstantExpr::getInsertValue(Constant *Agg, Constant *Val,
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002066 ArrayRef<unsigned> Idxs,
2067 Type *OnlyIfReducedTy) {
Hal Finkelb31366d2013-07-10 22:51:01 +00002068 assert(Agg->getType()->isFirstClassType() &&
2069 "Non-first-class type for constant insertvalue expression");
2070
Jay Foad57aa6362011-07-13 10:26:04 +00002071 assert(ExtractValueInst::getIndexedType(Agg->getType(),
2072 Idxs) == Val->getType() &&
Dan Gohman12fce772008-05-15 19:50:34 +00002073 "insertvalue indices invalid!");
Hal Finkelb31366d2013-07-10 22:51:01 +00002074 Type *ReqTy = Val->getType();
2075
2076 if (Constant *FC = ConstantFoldInsertValueInstruction(Agg, Val, Idxs))
2077 return FC;
2078
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002079 if (OnlyIfReducedTy == ReqTy)
2080 return nullptr;
2081
Hal Finkelb31366d2013-07-10 22:51:01 +00002082 Constant *ArgVec[] = { Agg, Val };
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002083 const ConstantExprKeyType Key(Instruction::InsertValue, ArgVec, 0, 0, Idxs);
Hal Finkelb31366d2013-07-10 22:51:01 +00002084
2085 LLVMContextImpl *pImpl = Agg->getContext().pImpl;
2086 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Dan Gohman12fce772008-05-15 19:50:34 +00002087}
2088
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002089Constant *ConstantExpr::getExtractValue(Constant *Agg, ArrayRef<unsigned> Idxs,
2090 Type *OnlyIfReducedTy) {
Dan Gohman0752bff2008-05-23 00:36:11 +00002091 assert(Agg->getType()->isFirstClassType() &&
Chris Lattner887ecac2011-07-09 18:23:52 +00002092 "Tried to create extractelement operation on non-first-class type!");
Dan Gohman12fce772008-05-15 19:50:34 +00002093
Chris Lattner229907c2011-07-18 04:54:35 +00002094 Type *ReqTy = ExtractValueInst::getIndexedType(Agg->getType(), Idxs);
Chandler Carruth9db56b82011-07-10 09:45:35 +00002095 (void)ReqTy;
Chris Lattner887ecac2011-07-09 18:23:52 +00002096 assert(ReqTy && "extractvalue indices invalid!");
Galina Kistanovafc259902012-07-13 01:25:27 +00002097
Dan Gohman0752bff2008-05-23 00:36:11 +00002098 assert(Agg->getType()->isFirstClassType() &&
2099 "Non-first-class type for constant extractvalue expression");
Hal Finkelb31366d2013-07-10 22:51:01 +00002100 if (Constant *FC = ConstantFoldExtractValueInstruction(Agg, Idxs))
2101 return FC;
2102
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002103 if (OnlyIfReducedTy == ReqTy)
2104 return nullptr;
2105
Hal Finkelb31366d2013-07-10 22:51:01 +00002106 Constant *ArgVec[] = { Agg };
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002107 const ConstantExprKeyType Key(Instruction::ExtractValue, ArgVec, 0, 0, Idxs);
Hal Finkelb31366d2013-07-10 22:51:01 +00002108
2109 LLVMContextImpl *pImpl = Agg->getContext().pImpl;
2110 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Dan Gohman12fce772008-05-15 19:50:34 +00002111}
2112
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002113Constant *ConstantExpr::getNeg(Constant *C, bool HasNUW, bool HasNSW) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002114 assert(C->getType()->isIntOrIntVectorTy() &&
Owen Anderson487375e2009-07-29 18:55:55 +00002115 "Cannot NEG a nonintegral value!");
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002116 return getSub(ConstantFP::getZeroValueForNegation(C->getType()),
2117 C, HasNUW, HasNSW);
Owen Anderson487375e2009-07-29 18:55:55 +00002118}
2119
Chris Lattnera676c0f2011-02-07 16:40:21 +00002120Constant *ConstantExpr::getFNeg(Constant *C) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002121 assert(C->getType()->isFPOrFPVectorTy() &&
Owen Anderson487375e2009-07-29 18:55:55 +00002122 "Cannot FNEG a non-floating-point value!");
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002123 return getFSub(ConstantFP::getZeroValueForNegation(C->getType()), C);
Owen Anderson487375e2009-07-29 18:55:55 +00002124}
2125
Chris Lattnera676c0f2011-02-07 16:40:21 +00002126Constant *ConstantExpr::getNot(Constant *C) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002127 assert(C->getType()->isIntOrIntVectorTy() &&
Owen Anderson487375e2009-07-29 18:55:55 +00002128 "Cannot NOT a nonintegral value!");
Owen Anderson5a1acd92009-07-31 20:28:14 +00002129 return get(Instruction::Xor, C, Constant::getAllOnesValue(C->getType()));
Owen Anderson487375e2009-07-29 18:55:55 +00002130}
2131
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002132Constant *ConstantExpr::getAdd(Constant *C1, Constant *C2,
2133 bool HasNUW, bool HasNSW) {
2134 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
2135 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
2136 return get(Instruction::Add, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00002137}
2138
Chris Lattnera676c0f2011-02-07 16:40:21 +00002139Constant *ConstantExpr::getFAdd(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002140 return get(Instruction::FAdd, C1, C2);
2141}
2142
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002143Constant *ConstantExpr::getSub(Constant *C1, Constant *C2,
2144 bool HasNUW, bool HasNSW) {
2145 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
2146 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
2147 return get(Instruction::Sub, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00002148}
2149
Chris Lattnera676c0f2011-02-07 16:40:21 +00002150Constant *ConstantExpr::getFSub(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002151 return get(Instruction::FSub, C1, C2);
2152}
2153
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002154Constant *ConstantExpr::getMul(Constant *C1, Constant *C2,
2155 bool HasNUW, bool HasNSW) {
2156 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
2157 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
2158 return get(Instruction::Mul, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00002159}
2160
Chris Lattnera676c0f2011-02-07 16:40:21 +00002161Constant *ConstantExpr::getFMul(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002162 return get(Instruction::FMul, C1, C2);
2163}
2164
Chris Lattner0d75eac2011-02-09 16:43:07 +00002165Constant *ConstantExpr::getUDiv(Constant *C1, Constant *C2, bool isExact) {
2166 return get(Instruction::UDiv, C1, C2,
2167 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00002168}
2169
Chris Lattner0d75eac2011-02-09 16:43:07 +00002170Constant *ConstantExpr::getSDiv(Constant *C1, Constant *C2, bool isExact) {
2171 return get(Instruction::SDiv, C1, C2,
2172 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00002173}
2174
Chris Lattnera676c0f2011-02-07 16:40:21 +00002175Constant *ConstantExpr::getFDiv(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002176 return get(Instruction::FDiv, C1, C2);
2177}
2178
Chris Lattnera676c0f2011-02-07 16:40:21 +00002179Constant *ConstantExpr::getURem(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002180 return get(Instruction::URem, C1, C2);
2181}
2182
Chris Lattnera676c0f2011-02-07 16:40:21 +00002183Constant *ConstantExpr::getSRem(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002184 return get(Instruction::SRem, C1, C2);
2185}
2186
Chris Lattnera676c0f2011-02-07 16:40:21 +00002187Constant *ConstantExpr::getFRem(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002188 return get(Instruction::FRem, C1, C2);
2189}
2190
Chris Lattnera676c0f2011-02-07 16:40:21 +00002191Constant *ConstantExpr::getAnd(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002192 return get(Instruction::And, C1, C2);
2193}
2194
Chris Lattnera676c0f2011-02-07 16:40:21 +00002195Constant *ConstantExpr::getOr(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002196 return get(Instruction::Or, C1, C2);
2197}
2198
Chris Lattnera676c0f2011-02-07 16:40:21 +00002199Constant *ConstantExpr::getXor(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002200 return get(Instruction::Xor, C1, C2);
2201}
2202
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002203Constant *ConstantExpr::getShl(Constant *C1, Constant *C2,
2204 bool HasNUW, bool HasNSW) {
2205 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
2206 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
2207 return get(Instruction::Shl, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00002208}
2209
Chris Lattner0d75eac2011-02-09 16:43:07 +00002210Constant *ConstantExpr::getLShr(Constant *C1, Constant *C2, bool isExact) {
2211 return get(Instruction::LShr, C1, C2,
2212 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00002213}
2214
Chris Lattner0d75eac2011-02-09 16:43:07 +00002215Constant *ConstantExpr::getAShr(Constant *C1, Constant *C2, bool isExact) {
2216 return get(Instruction::AShr, C1, C2,
2217 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00002218}
2219
Duncan Sandsd7aeefe2012-06-12 14:33:56 +00002220Constant *ConstantExpr::getBinOpIdentity(unsigned Opcode, Type *Ty) {
2221 switch (Opcode) {
2222 default:
Duncan Sands318a89d2012-06-13 09:42:13 +00002223 // Doesn't have an identity.
Craig Topperc6207612014-04-09 06:08:46 +00002224 return nullptr;
Duncan Sands318a89d2012-06-13 09:42:13 +00002225
Duncan Sandsd7aeefe2012-06-12 14:33:56 +00002226 case Instruction::Add:
2227 case Instruction::Or:
2228 case Instruction::Xor:
2229 return Constant::getNullValue(Ty);
2230
2231 case Instruction::Mul:
2232 return ConstantInt::get(Ty, 1);
2233
2234 case Instruction::And:
2235 return Constant::getAllOnesValue(Ty);
2236 }
2237}
2238
Duncan Sands318a89d2012-06-13 09:42:13 +00002239Constant *ConstantExpr::getBinOpAbsorber(unsigned Opcode, Type *Ty) {
2240 switch (Opcode) {
2241 default:
2242 // Doesn't have an absorber.
Craig Topperc6207612014-04-09 06:08:46 +00002243 return nullptr;
Duncan Sands318a89d2012-06-13 09:42:13 +00002244
2245 case Instruction::Or:
2246 return Constant::getAllOnesValue(Ty);
2247
2248 case Instruction::And:
2249 case Instruction::Mul:
2250 return Constant::getNullValue(Ty);
2251 }
2252}
2253
Sanjay Patel1d0ac7c2016-04-29 22:03:27 +00002254/// Remove the constant from the constant table.
Pete Cooper86dd4cf2015-06-23 21:55:11 +00002255void ConstantExpr::destroyConstantImpl() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002256 getType()->getContext().pImpl->ExprConstants.remove(this);
Vikram S. Adve4e537b22002-07-14 23:13:17 +00002257}
2258
Chris Lattner3cd8c562002-07-30 18:54:25 +00002259const char *ConstantExpr::getOpcodeName() const {
2260 return Instruction::getOpcodeName(getOpcode());
Vikram S. Adve4e537b22002-07-14 23:13:17 +00002261}
Reid Spencer1ebe1ab2004-07-17 23:48:33 +00002262
David Blaikie60310f22015-05-08 00:42:26 +00002263GetElementPtrConstantExpr::GetElementPtrConstantExpr(
2264 Type *SrcElementTy, Constant *C, ArrayRef<Constant *> IdxList, Type *DestTy)
2265 : ConstantExpr(DestTy, Instruction::GetElementPtr,
2266 OperandTraits<GetElementPtrConstantExpr>::op_end(this) -
2267 (IdxList.size() + 1),
2268 IdxList.size() + 1),
Eduard Burtescu19eb0312016-01-19 17:28:00 +00002269 SrcElementTy(SrcElementTy),
2270 ResElementTy(GetElementPtrInst::getIndexedType(SrcElementTy, IdxList)) {
Pete Coopereb31b682015-05-21 22:48:54 +00002271 Op<0>() = C;
Pete Cooper74510a42015-06-12 17:48:05 +00002272 Use *OperandList = getOperandList();
Chris Lattnera3b94ba2010-03-30 20:48:48 +00002273 for (unsigned i = 0, E = IdxList.size(); i != E; ++i)
2274 OperandList[i+1] = IdxList[i];
2275}
2276
David Blaikie60310f22015-05-08 00:42:26 +00002277Type *GetElementPtrConstantExpr::getSourceElementType() const {
2278 return SrcElementTy;
2279}
2280
Eduard Burtescu19eb0312016-01-19 17:28:00 +00002281Type *GetElementPtrConstantExpr::getResultElementType() const {
2282 return ResElementTy;
2283}
2284
Chris Lattner3756b912012-01-23 22:57:10 +00002285//===----------------------------------------------------------------------===//
2286// ConstantData* implementations
2287
2288void ConstantDataArray::anchor() {}
2289void ConstantDataVector::anchor() {}
2290
Chris Lattnere4f3f102012-01-24 04:43:41 +00002291Type *ConstantDataSequential::getElementType() const {
2292 return getType()->getElementType();
2293}
2294
Chris Lattner5d4497b2012-01-24 09:31:43 +00002295StringRef ConstantDataSequential::getRawDataValues() const {
Chris Lattner00245f42012-01-24 13:41:11 +00002296 return StringRef(DataElements, getNumElements()*getElementByteSize());
Chris Lattner5d4497b2012-01-24 09:31:43 +00002297}
2298
Craig Toppere3dcce92015-08-01 22:20:21 +00002299bool ConstantDataSequential::isElementTypeCompatible(Type *Ty) {
Justin Bogner0ebc8602015-12-08 03:01:16 +00002300 if (Ty->isHalfTy() || Ty->isFloatTy() || Ty->isDoubleTy()) return true;
Craig Toppere3dcce92015-08-01 22:20:21 +00002301 if (auto *IT = dyn_cast<IntegerType>(Ty)) {
Chris Lattnere4f3f102012-01-24 04:43:41 +00002302 switch (IT->getBitWidth()) {
2303 case 8:
2304 case 16:
2305 case 32:
2306 case 64:
2307 return true;
2308 default: break;
2309 }
2310 }
2311 return false;
2312}
2313
Chris Lattner00245f42012-01-24 13:41:11 +00002314unsigned ConstantDataSequential::getNumElements() const {
Chris Lattner8a3df542012-01-25 01:32:59 +00002315 if (ArrayType *AT = dyn_cast<ArrayType>(getType()))
2316 return AT->getNumElements();
Chris Lattner8326bd82012-01-26 00:42:34 +00002317 return getType()->getVectorNumElements();
Chris Lattner00245f42012-01-24 13:41:11 +00002318}
2319
2320
Chris Lattnere4f3f102012-01-24 04:43:41 +00002321uint64_t ConstantDataSequential::getElementByteSize() const {
2322 return getElementType()->getPrimitiveSizeInBits()/8;
2323}
2324
Sanjay Patel1d0ac7c2016-04-29 22:03:27 +00002325/// Return the start of the specified element.
Chris Lattnere4f3f102012-01-24 04:43:41 +00002326const char *ConstantDataSequential::getElementPointer(unsigned Elt) const {
Chris Lattner00245f42012-01-24 13:41:11 +00002327 assert(Elt < getNumElements() && "Invalid Elt");
Chris Lattnere4f3f102012-01-24 04:43:41 +00002328 return DataElements+Elt*getElementByteSize();
2329}
2330
2331
Sanjay Patel1d0ac7c2016-04-29 22:03:27 +00002332/// Return true if the array is empty or all zeros.
Chris Lattner3756b912012-01-23 22:57:10 +00002333static bool isAllZeros(StringRef Arr) {
Benjamin Krameraf28e7d2016-06-26 14:10:56 +00002334 for (char I : Arr)
2335 if (I != 0)
Chris Lattner3756b912012-01-23 22:57:10 +00002336 return false;
2337 return true;
2338}
Chris Lattner030af792012-01-24 05:42:11 +00002339
Sanjay Patel1d0ac7c2016-04-29 22:03:27 +00002340/// This is the underlying implementation of all of the
Chris Lattner3756b912012-01-23 22:57:10 +00002341/// ConstantDataSequential::get methods. They all thunk down to here, providing
Chris Lattnerf06039b2012-01-30 18:19:30 +00002342/// the correct element type. We take the bytes in as a StringRef because
Chris Lattner3756b912012-01-23 22:57:10 +00002343/// we *want* an underlying "char*" to avoid TBAA type punning violations.
2344Constant *ConstantDataSequential::getImpl(StringRef Elements, Type *Ty) {
Chris Lattner8326bd82012-01-26 00:42:34 +00002345 assert(isElementTypeCompatible(Ty->getSequentialElementType()));
Chris Lattner139822f2012-01-24 14:17:05 +00002346 // If the elements are all zero or there are no elements, return a CAZ, which
2347 // is more dense and canonical.
Chris Lattner3756b912012-01-23 22:57:10 +00002348 if (isAllZeros(Elements))
2349 return ConstantAggregateZero::get(Ty);
2350
2351 // Do a lookup to see if we have already formed one of these.
David Blaikie5106ce72014-11-19 05:49:42 +00002352 auto &Slot =
2353 *Ty->getContext()
2354 .pImpl->CDSConstants.insert(std::make_pair(Elements, nullptr))
2355 .first;
Galina Kistanovafc259902012-07-13 01:25:27 +00002356
Chris Lattner3756b912012-01-23 22:57:10 +00002357 // The bucket can point to a linked list of different CDS's that have the same
2358 // body but different types. For example, 0,0,0,1 could be a 4 element array
2359 // of i8, or a 1-element array of i32. They'll both end up in the same
2360 /// StringMap bucket, linked up by their Next pointers. Walk the list.
David Blaikie5106ce72014-11-19 05:49:42 +00002361 ConstantDataSequential **Entry = &Slot.second;
Craig Topperc6207612014-04-09 06:08:46 +00002362 for (ConstantDataSequential *Node = *Entry; Node;
Chris Lattner3756b912012-01-23 22:57:10 +00002363 Entry = &Node->Next, Node = *Entry)
2364 if (Node->getType() == Ty)
2365 return Node;
Galina Kistanovafc259902012-07-13 01:25:27 +00002366
Chris Lattner3756b912012-01-23 22:57:10 +00002367 // Okay, we didn't get a hit. Create a node of the right class, link it in,
2368 // and return it.
2369 if (isa<ArrayType>(Ty))
David Blaikie5106ce72014-11-19 05:49:42 +00002370 return *Entry = new ConstantDataArray(Ty, Slot.first().data());
Chris Lattner3756b912012-01-23 22:57:10 +00002371
2372 assert(isa<VectorType>(Ty));
David Blaikie5106ce72014-11-19 05:49:42 +00002373 return *Entry = new ConstantDataVector(Ty, Slot.first().data());
Chris Lattner3756b912012-01-23 22:57:10 +00002374}
2375
Pete Cooper86dd4cf2015-06-23 21:55:11 +00002376void ConstantDataSequential::destroyConstantImpl() {
Chris Lattner3756b912012-01-23 22:57:10 +00002377 // Remove the constant from the StringMap.
2378 StringMap<ConstantDataSequential*> &CDSConstants =
2379 getType()->getContext().pImpl->CDSConstants;
Galina Kistanovafc259902012-07-13 01:25:27 +00002380
Chris Lattner3756b912012-01-23 22:57:10 +00002381 StringMap<ConstantDataSequential*>::iterator Slot =
Chris Lattner5d4497b2012-01-24 09:31:43 +00002382 CDSConstants.find(getRawDataValues());
Chris Lattner3756b912012-01-23 22:57:10 +00002383
2384 assert(Slot != CDSConstants.end() && "CDS not found in uniquing table");
2385
2386 ConstantDataSequential **Entry = &Slot->getValue();
2387
2388 // Remove the entry from the hash table.
Craig Topperc6207612014-04-09 06:08:46 +00002389 if (!(*Entry)->Next) {
Chris Lattner3756b912012-01-23 22:57:10 +00002390 // If there is only one value in the bucket (common case) it must be this
2391 // entry, and removing the entry should remove the bucket completely.
2392 assert((*Entry) == this && "Hash mismatch in ConstantDataSequential");
2393 getContext().pImpl->CDSConstants.erase(Slot);
2394 } else {
2395 // Otherwise, there are multiple entries linked off the bucket, unlink the
2396 // node we care about but keep the bucket around.
2397 for (ConstantDataSequential *Node = *Entry; ;
2398 Entry = &Node->Next, Node = *Entry) {
2399 assert(Node && "Didn't find entry in its uniquing hash table!");
2400 // If we found our entry, unlink it from the list and we're done.
2401 if (Node == this) {
2402 *Entry = Node->Next;
2403 break;
2404 }
2405 }
2406 }
Galina Kistanovafc259902012-07-13 01:25:27 +00002407
Chris Lattner3756b912012-01-23 22:57:10 +00002408 // If we were part of a list, make sure that we don't delete the list that is
2409 // still owned by the uniquing map.
Craig Topperc6207612014-04-09 06:08:46 +00002410 Next = nullptr;
Chris Lattner3756b912012-01-23 22:57:10 +00002411}
2412
2413/// get() constructors - Return a constant with array type with an element
2414/// count and element type matching the ArrayRef passed in. Note that this
2415/// can return a ConstantAggregateZero object.
Chris Lattner20683932012-01-24 14:04:40 +00002416Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint8_t> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002417 Type *Ty = ArrayType::get(Type::getInt8Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002418 const char *Data = reinterpret_cast<const char *>(Elts.data());
2419 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*1), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002420}
Chris Lattner20683932012-01-24 14:04:40 +00002421Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint16_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002422 Type *Ty = ArrayType::get(Type::getInt16Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002423 const char *Data = reinterpret_cast<const char *>(Elts.data());
2424 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*2), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002425}
Chris Lattner20683932012-01-24 14:04:40 +00002426Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint32_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002427 Type *Ty = ArrayType::get(Type::getInt32Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002428 const char *Data = reinterpret_cast<const char *>(Elts.data());
2429 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*4), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002430}
Chris Lattner20683932012-01-24 14:04:40 +00002431Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint64_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002432 Type *Ty = ArrayType::get(Type::getInt64Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002433 const char *Data = reinterpret_cast<const char *>(Elts.data());
2434 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*8), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002435}
Chris Lattner20683932012-01-24 14:04:40 +00002436Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<float> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002437 Type *Ty = ArrayType::get(Type::getFloatTy(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002438 const char *Data = reinterpret_cast<const char *>(Elts.data());
2439 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*4), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002440}
Chris Lattner20683932012-01-24 14:04:40 +00002441Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<double> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002442 Type *Ty = ArrayType::get(Type::getDoubleTy(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002443 const char *Data = reinterpret_cast<const char *>(Elts.data());
Rafael Espindola8c97e192015-02-19 16:08:20 +00002444 return getImpl(StringRef(const_cast<char *>(Data), Elts.size() * 8), Ty);
2445}
2446
2447/// getFP() constructors - Return a constant with array type with an element
2448/// count and element type of float with precision matching the number of
2449/// bits in the ArrayRef passed in. (i.e. half for 16bits, float for 32bits,
2450/// double for 64bits) Note that this can return a ConstantAggregateZero
2451/// object.
2452Constant *ConstantDataArray::getFP(LLVMContext &Context,
2453 ArrayRef<uint16_t> Elts) {
Justin Bognerb7389d6712015-12-09 21:21:07 +00002454 Type *Ty = ArrayType::get(Type::getHalfTy(Context), Elts.size());
Rafael Espindola8c97e192015-02-19 16:08:20 +00002455 const char *Data = reinterpret_cast<const char *>(Elts.data());
2456 return getImpl(StringRef(const_cast<char *>(Data), Elts.size() * 2), Ty);
2457}
2458Constant *ConstantDataArray::getFP(LLVMContext &Context,
2459 ArrayRef<uint32_t> Elts) {
2460 Type *Ty = ArrayType::get(Type::getFloatTy(Context), Elts.size());
2461 const char *Data = reinterpret_cast<const char *>(Elts.data());
2462 return getImpl(StringRef(const_cast<char *>(Data), Elts.size() * 4), Ty);
2463}
2464Constant *ConstantDataArray::getFP(LLVMContext &Context,
2465 ArrayRef<uint64_t> Elts) {
2466 Type *Ty = ArrayType::get(Type::getDoubleTy(Context), Elts.size());
2467 const char *Data = reinterpret_cast<const char *>(Elts.data());
2468 return getImpl(StringRef(const_cast<char *>(Data), Elts.size() * 8), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002469}
2470
Chris Lattner20683932012-01-24 14:04:40 +00002471Constant *ConstantDataArray::getString(LLVMContext &Context,
2472 StringRef Str, bool AddNull) {
Galina Kistanovafc259902012-07-13 01:25:27 +00002473 if (!AddNull) {
2474 const uint8_t *Data = reinterpret_cast<const uint8_t *>(Str.data());
Craig Toppere1d12942014-08-27 05:25:25 +00002475 return get(Context, makeArrayRef(const_cast<uint8_t *>(Data),
Galina Kistanovafc259902012-07-13 01:25:27 +00002476 Str.size()));
2477 }
2478
Chris Lattner20683932012-01-24 14:04:40 +00002479 SmallVector<uint8_t, 64> ElementVals;
2480 ElementVals.append(Str.begin(), Str.end());
2481 ElementVals.push_back(0);
2482 return get(Context, ElementVals);
2483}
Chris Lattner3756b912012-01-23 22:57:10 +00002484
2485/// get() constructors - Return a constant with vector type with an element
2486/// count and element type matching the ArrayRef passed in. Note that this
2487/// can return a ConstantAggregateZero object.
Chris Lattner20683932012-01-24 14:04:40 +00002488Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint8_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002489 Type *Ty = VectorType::get(Type::getInt8Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002490 const char *Data = reinterpret_cast<const char *>(Elts.data());
2491 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*1), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002492}
Chris Lattner20683932012-01-24 14:04:40 +00002493Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint16_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002494 Type *Ty = VectorType::get(Type::getInt16Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002495 const char *Data = reinterpret_cast<const char *>(Elts.data());
2496 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*2), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002497}
Chris Lattner20683932012-01-24 14:04:40 +00002498Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint32_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002499 Type *Ty = VectorType::get(Type::getInt32Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002500 const char *Data = reinterpret_cast<const char *>(Elts.data());
2501 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*4), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002502}
Chris Lattner20683932012-01-24 14:04:40 +00002503Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint64_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002504 Type *Ty = VectorType::get(Type::getInt64Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002505 const char *Data = reinterpret_cast<const char *>(Elts.data());
2506 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*8), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002507}
Chris Lattner20683932012-01-24 14:04:40 +00002508Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<float> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002509 Type *Ty = VectorType::get(Type::getFloatTy(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002510 const char *Data = reinterpret_cast<const char *>(Elts.data());
2511 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*4), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002512}
Chris Lattner20683932012-01-24 14:04:40 +00002513Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<double> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002514 Type *Ty = VectorType::get(Type::getDoubleTy(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002515 const char *Data = reinterpret_cast<const char *>(Elts.data());
Rafael Espindola8c97e192015-02-19 16:08:20 +00002516 return getImpl(StringRef(const_cast<char *>(Data), Elts.size() * 8), Ty);
2517}
2518
2519/// getFP() constructors - Return a constant with vector type with an element
2520/// count and element type of float with the precision matching the number of
2521/// bits in the ArrayRef passed in. (i.e. half for 16bits, float for 32bits,
2522/// double for 64bits) Note that this can return a ConstantAggregateZero
2523/// object.
2524Constant *ConstantDataVector::getFP(LLVMContext &Context,
2525 ArrayRef<uint16_t> Elts) {
2526 Type *Ty = VectorType::get(Type::getHalfTy(Context), Elts.size());
2527 const char *Data = reinterpret_cast<const char *>(Elts.data());
2528 return getImpl(StringRef(const_cast<char *>(Data), Elts.size() * 2), Ty);
2529}
2530Constant *ConstantDataVector::getFP(LLVMContext &Context,
2531 ArrayRef<uint32_t> Elts) {
2532 Type *Ty = VectorType::get(Type::getFloatTy(Context), Elts.size());
2533 const char *Data = reinterpret_cast<const char *>(Elts.data());
2534 return getImpl(StringRef(const_cast<char *>(Data), Elts.size() * 4), Ty);
2535}
2536Constant *ConstantDataVector::getFP(LLVMContext &Context,
2537 ArrayRef<uint64_t> Elts) {
2538 Type *Ty = VectorType::get(Type::getDoubleTy(Context), Elts.size());
2539 const char *Data = reinterpret_cast<const char *>(Elts.data());
2540 return getImpl(StringRef(const_cast<char *>(Data), Elts.size() * 8), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002541}
2542
Chris Lattnere9eed292012-01-25 05:19:54 +00002543Constant *ConstantDataVector::getSplat(unsigned NumElts, Constant *V) {
2544 assert(isElementTypeCompatible(V->getType()) &&
2545 "Element type not compatible with ConstantData");
2546 if (ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
2547 if (CI->getType()->isIntegerTy(8)) {
2548 SmallVector<uint8_t, 16> Elts(NumElts, CI->getZExtValue());
2549 return get(V->getContext(), Elts);
2550 }
2551 if (CI->getType()->isIntegerTy(16)) {
2552 SmallVector<uint16_t, 16> Elts(NumElts, CI->getZExtValue());
2553 return get(V->getContext(), Elts);
2554 }
2555 if (CI->getType()->isIntegerTy(32)) {
2556 SmallVector<uint32_t, 16> Elts(NumElts, CI->getZExtValue());
2557 return get(V->getContext(), Elts);
2558 }
2559 assert(CI->getType()->isIntegerTy(64) && "Unsupported ConstantData type");
2560 SmallVector<uint64_t, 16> Elts(NumElts, CI->getZExtValue());
2561 return get(V->getContext(), Elts);
2562 }
2563
Chris Lattner978fe0c2012-01-30 06:21:21 +00002564 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V)) {
Justin Bogner0ebc8602015-12-08 03:01:16 +00002565 if (CFP->getType()->isHalfTy()) {
2566 SmallVector<uint16_t, 16> Elts(
2567 NumElts, CFP->getValueAPF().bitcastToAPInt().getLimitedValue());
2568 return getFP(V->getContext(), Elts);
2569 }
Chris Lattner978fe0c2012-01-30 06:21:21 +00002570 if (CFP->getType()->isFloatTy()) {
Rafael Espindola8c97e192015-02-19 16:08:20 +00002571 SmallVector<uint32_t, 16> Elts(
2572 NumElts, CFP->getValueAPF().bitcastToAPInt().getLimitedValue());
2573 return getFP(V->getContext(), Elts);
Chris Lattner978fe0c2012-01-30 06:21:21 +00002574 }
2575 if (CFP->getType()->isDoubleTy()) {
Rafael Espindola8c97e192015-02-19 16:08:20 +00002576 SmallVector<uint64_t, 16> Elts(
2577 NumElts, CFP->getValueAPF().bitcastToAPInt().getLimitedValue());
2578 return getFP(V->getContext(), Elts);
Chris Lattner978fe0c2012-01-30 06:21:21 +00002579 }
Chris Lattnere9eed292012-01-25 05:19:54 +00002580 }
Chris Lattner978fe0c2012-01-30 06:21:21 +00002581 return ConstantVector::getSplat(NumElts, V);
Chris Lattnere9eed292012-01-25 05:19:54 +00002582}
2583
2584
Chris Lattnere4f3f102012-01-24 04:43:41 +00002585uint64_t ConstantDataSequential::getElementAsInteger(unsigned Elt) const {
2586 assert(isa<IntegerType>(getElementType()) &&
2587 "Accessor can only be used when element is an integer");
2588 const char *EltPtr = getElementPointer(Elt);
Galina Kistanovafc259902012-07-13 01:25:27 +00002589
Chris Lattnere4f3f102012-01-24 04:43:41 +00002590 // The data is stored in host byte order, make sure to cast back to the right
2591 // type to load with the right endianness.
Chris Lattner8326bd82012-01-26 00:42:34 +00002592 switch (getElementType()->getIntegerBitWidth()) {
Craig Topperc514b542012-02-05 22:14:15 +00002593 default: llvm_unreachable("Invalid bitwidth for CDS");
Galina Kistanovafc259902012-07-13 01:25:27 +00002594 case 8:
2595 return *const_cast<uint8_t *>(reinterpret_cast<const uint8_t *>(EltPtr));
2596 case 16:
2597 return *const_cast<uint16_t *>(reinterpret_cast<const uint16_t *>(EltPtr));
2598 case 32:
2599 return *const_cast<uint32_t *>(reinterpret_cast<const uint32_t *>(EltPtr));
2600 case 64:
2601 return *const_cast<uint64_t *>(reinterpret_cast<const uint64_t *>(EltPtr));
Chris Lattnere4f3f102012-01-24 04:43:41 +00002602 }
2603}
2604
Chris Lattnere4f3f102012-01-24 04:43:41 +00002605APFloat ConstantDataSequential::getElementAsAPFloat(unsigned Elt) const {
2606 const char *EltPtr = getElementPointer(Elt);
2607
2608 switch (getElementType()->getTypeID()) {
Nick Lewyckyff509622012-01-25 03:20:12 +00002609 default:
Craig Topperc514b542012-02-05 22:14:15 +00002610 llvm_unreachable("Accessor can only be used when element is float/double!");
Justin Bogner0ebc8602015-12-08 03:01:16 +00002611 case Type::HalfTyID: {
2612 auto EltVal = *reinterpret_cast<const uint16_t *>(EltPtr);
2613 return APFloat(APFloat::IEEEhalf, APInt(16, EltVal));
2614 }
Benjamin Kramer7af984b2015-02-20 15:11:55 +00002615 case Type::FloatTyID: {
2616 auto EltVal = *reinterpret_cast<const uint32_t *>(EltPtr);
NAKAMURA Takumie86b9b72015-02-20 14:24:49 +00002617 return APFloat(APFloat::IEEEsingle, APInt(32, EltVal));
Benjamin Kramer7af984b2015-02-20 15:11:55 +00002618 }
2619 case Type::DoubleTyID: {
2620 auto EltVal = *reinterpret_cast<const uint64_t *>(EltPtr);
NAKAMURA Takumie86b9b72015-02-20 14:24:49 +00002621 return APFloat(APFloat::IEEEdouble, APInt(64, EltVal));
Chris Lattnere4f3f102012-01-24 04:43:41 +00002622 }
Benjamin Kramer7af984b2015-02-20 15:11:55 +00002623 }
Chris Lattnere4f3f102012-01-24 04:43:41 +00002624}
2625
Chris Lattnere4f3f102012-01-24 04:43:41 +00002626float ConstantDataSequential::getElementAsFloat(unsigned Elt) const {
2627 assert(getElementType()->isFloatTy() &&
2628 "Accessor can only be used when element is a 'float'");
Galina Kistanovafc259902012-07-13 01:25:27 +00002629 const float *EltPtr = reinterpret_cast<const float *>(getElementPointer(Elt));
2630 return *const_cast<float *>(EltPtr);
Chris Lattnere4f3f102012-01-24 04:43:41 +00002631}
2632
Chris Lattnere4f3f102012-01-24 04:43:41 +00002633double ConstantDataSequential::getElementAsDouble(unsigned Elt) const {
2634 assert(getElementType()->isDoubleTy() &&
2635 "Accessor can only be used when element is a 'float'");
Galina Kistanovafc259902012-07-13 01:25:27 +00002636 const double *EltPtr =
2637 reinterpret_cast<const double *>(getElementPointer(Elt));
2638 return *const_cast<double *>(EltPtr);
Chris Lattnere4f3f102012-01-24 04:43:41 +00002639}
2640
Chris Lattnere4f3f102012-01-24 04:43:41 +00002641Constant *ConstantDataSequential::getElementAsConstant(unsigned Elt) const {
Justin Bogner0ebc8602015-12-08 03:01:16 +00002642 if (getElementType()->isHalfTy() || getElementType()->isFloatTy() ||
2643 getElementType()->isDoubleTy())
Chris Lattnere4f3f102012-01-24 04:43:41 +00002644 return ConstantFP::get(getContext(), getElementAsAPFloat(Elt));
Galina Kistanovafc259902012-07-13 01:25:27 +00002645
Chris Lattnere4f3f102012-01-24 04:43:41 +00002646 return ConstantInt::get(getElementType(), getElementAsInteger(Elt));
2647}
2648
Chris Lattner5dd4d872012-01-24 09:01:07 +00002649bool ConstantDataSequential::isString() const {
2650 return isa<ArrayType>(getType()) && getElementType()->isIntegerTy(8);
2651}
Chris Lattner3756b912012-01-23 22:57:10 +00002652
Chris Lattner5dd4d872012-01-24 09:01:07 +00002653bool ConstantDataSequential::isCString() const {
2654 if (!isString())
2655 return false;
Galina Kistanovafc259902012-07-13 01:25:27 +00002656
Chris Lattner5dd4d872012-01-24 09:01:07 +00002657 StringRef Str = getAsString();
Galina Kistanovafc259902012-07-13 01:25:27 +00002658
Chris Lattner5dd4d872012-01-24 09:01:07 +00002659 // The last value must be nul.
2660 if (Str.back() != 0) return false;
Galina Kistanovafc259902012-07-13 01:25:27 +00002661
Chris Lattner5dd4d872012-01-24 09:01:07 +00002662 // Other elements must be non-nul.
2663 return Str.drop_back().find(0) == StringRef::npos;
2664}
Chris Lattner3756b912012-01-23 22:57:10 +00002665
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002666Constant *ConstantDataVector::getSplatValue() const {
2667 const char *Base = getRawDataValues().data();
Galina Kistanovafc259902012-07-13 01:25:27 +00002668
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002669 // Compare elements 1+ to the 0'th element.
2670 unsigned EltSize = getElementByteSize();
2671 for (unsigned i = 1, e = getNumElements(); i != e; ++i)
2672 if (memcmp(Base, Base+i*EltSize, EltSize))
Craig Topperc6207612014-04-09 06:08:46 +00002673 return nullptr;
Galina Kistanovafc259902012-07-13 01:25:27 +00002674
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002675 // If they're all the same, return the 0th one as a representative.
2676 return getElementAsConstant(0);
2677}
Chris Lattnera3b94ba2010-03-30 20:48:48 +00002678
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002679//===----------------------------------------------------------------------===//
Pete Cooper5815b1f2015-06-24 18:55:24 +00002680// handleOperandChange implementations
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002681
Pete Cooper5815b1f2015-06-24 18:55:24 +00002682/// Update this constant array to change uses of
Chris Lattner913849b2007-08-21 00:55:23 +00002683/// 'From' to be uses of 'To'. This must update the uniquing data structures
2684/// etc.
2685///
2686/// Note that we intentionally replace all uses of From with To here. Consider
2687/// a large array that uses 'From' 1000 times. By handling this case all here,
Pete Cooper5815b1f2015-06-24 18:55:24 +00002688/// ConstantArray::handleOperandChange is only invoked once, and that
Chris Lattner913849b2007-08-21 00:55:23 +00002689/// single invocation handles all 1000 uses. Handling them one at a time would
2690/// work, but would be really slow because it would have to unique each updated
2691/// array instance.
Chris Lattner31b132c2009-10-28 00:01:44 +00002692///
Mehdi Amini8914d292016-02-10 22:47:15 +00002693void Constant::handleOperandChange(Value *From, Value *To) {
Pete Cooper5815b1f2015-06-24 18:55:24 +00002694 Value *Replacement = nullptr;
2695 switch (getValueID()) {
2696 default:
2697 llvm_unreachable("Not a constant!");
2698#define HANDLE_CONSTANT(Name) \
2699 case Value::Name##Val: \
Mehdi Amini8914d292016-02-10 22:47:15 +00002700 Replacement = cast<Name>(this)->handleOperandChangeImpl(From, To); \
Pete Cooper5815b1f2015-06-24 18:55:24 +00002701 break;
2702#include "llvm/IR/Value.def"
2703 }
2704
2705 // If handleOperandChangeImpl returned nullptr, then it handled
2706 // replacing itself and we don't want to delete or replace anything else here.
2707 if (!Replacement)
2708 return;
2709
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002710 // I do need to replace this with an existing value.
2711 assert(Replacement != this && "I didn't contain From!");
2712
2713 // Everyone using this now uses the replacement.
2714 replaceAllUsesWith(Replacement);
2715
2716 // Delete the old constant!
2717 destroyConstant();
2718}
2719
Mehdi Amini8914d292016-02-10 22:47:15 +00002720Value *ConstantArray::handleOperandChangeImpl(Value *From, Value *To) {
Owen Andersonc2c79322009-07-28 18:32:17 +00002721 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2722 Constant *ToC = cast<Constant>(To);
2723
Talin46e9b442012-02-05 20:54:10 +00002724 SmallVector<Constant*, 8> Values;
Owen Andersonc2c79322009-07-28 18:32:17 +00002725 Values.reserve(getNumOperands()); // Build replacement array.
2726
Galina Kistanovafc259902012-07-13 01:25:27 +00002727 // Fill values with the modified operands of the constant array. Also,
Owen Andersonc2c79322009-07-28 18:32:17 +00002728 // compute whether this turns into an all-zeros array.
Owen Andersonc2c79322009-07-28 18:32:17 +00002729 unsigned NumUpdated = 0;
Galina Kistanovafc259902012-07-13 01:25:27 +00002730
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002731 // Keep track of whether all the values in the array are "ToC".
2732 bool AllSame = true;
Pete Cooper74510a42015-06-12 17:48:05 +00002733 Use *OperandList = getOperandList();
Mehdi Amini8914d292016-02-10 22:47:15 +00002734 unsigned OperandNo = 0;
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002735 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2736 Constant *Val = cast<Constant>(O->get());
2737 if (Val == From) {
Mehdi Amini8914d292016-02-10 22:47:15 +00002738 OperandNo = (O - OperandList);
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002739 Val = ToC;
2740 ++NumUpdated;
Owen Andersonc2c79322009-07-28 18:32:17 +00002741 }
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002742 Values.push_back(Val);
Talin46e9b442012-02-05 20:54:10 +00002743 AllSame &= Val == ToC;
Owen Andersonc2c79322009-07-28 18:32:17 +00002744 }
Galina Kistanovafc259902012-07-13 01:25:27 +00002745
Pete Cooper5815b1f2015-06-24 18:55:24 +00002746 if (AllSame && ToC->isNullValue())
2747 return ConstantAggregateZero::get(getType());
2748
2749 if (AllSame && isa<UndefValue>(ToC))
2750 return UndefValue::get(getType());
Aaron Ballmane4b91dc2014-08-19 14:59:02 +00002751
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002752 // Check for any other type of constant-folding.
Pete Cooper5815b1f2015-06-24 18:55:24 +00002753 if (Constant *C = getImpl(getType(), Values))
2754 return C;
Aaron Ballmane4b91dc2014-08-19 14:59:02 +00002755
Duncan P. N. Exon Smith909620a2014-08-19 19:13:30 +00002756 // Update to the new value.
Pete Cooper5815b1f2015-06-24 18:55:24 +00002757 return getContext().pImpl->ArrayConstants.replaceOperandsInPlace(
Mehdi Amini8914d292016-02-10 22:47:15 +00002758 Values, this, From, ToC, NumUpdated, OperandNo);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002759}
2760
Mehdi Amini8914d292016-02-10 22:47:15 +00002761Value *ConstantStruct::handleOperandChangeImpl(Value *From, Value *To) {
Owen Anderson45308b52009-07-27 22:29:26 +00002762 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2763 Constant *ToC = cast<Constant>(To);
2764
Pete Cooper74510a42015-06-12 17:48:05 +00002765 Use *OperandList = getOperandList();
Owen Anderson45308b52009-07-27 22:29:26 +00002766
Talin46e9b442012-02-05 20:54:10 +00002767 SmallVector<Constant*, 8> Values;
Owen Anderson45308b52009-07-27 22:29:26 +00002768 Values.reserve(getNumOperands()); // Build replacement struct.
Galina Kistanovafc259902012-07-13 01:25:27 +00002769
2770 // Fill values with the modified operands of the constant struct. Also,
Owen Anderson45308b52009-07-27 22:29:26 +00002771 // compute whether this turns into an all-zeros struct.
Mehdi Amini8914d292016-02-10 22:47:15 +00002772 unsigned NumUpdated = 0;
2773 bool AllSame = true;
2774 unsigned OperandNo = 0;
2775 for (Use *O = OperandList, *E = OperandList + getNumOperands(); O != E; ++O) {
2776 Constant *Val = cast<Constant>(O->get());
2777 if (Val == From) {
2778 OperandNo = (O - OperandList);
2779 Val = ToC;
2780 ++NumUpdated;
Owen Anderson45308b52009-07-27 22:29:26 +00002781 }
Mehdi Amini8914d292016-02-10 22:47:15 +00002782 Values.push_back(Val);
2783 AllSame &= Val == ToC;
Owen Anderson45308b52009-07-27 22:29:26 +00002784 }
Galina Kistanovafc259902012-07-13 01:25:27 +00002785
Mehdi Amini8914d292016-02-10 22:47:15 +00002786 if (AllSame && ToC->isNullValue())
Pete Cooper5815b1f2015-06-24 18:55:24 +00002787 return ConstantAggregateZero::get(getType());
2788
Mehdi Amini8914d292016-02-10 22:47:15 +00002789 if (AllSame && isa<UndefValue>(ToC))
Pete Cooper5815b1f2015-06-24 18:55:24 +00002790 return UndefValue::get(getType());
Galina Kistanovafc259902012-07-13 01:25:27 +00002791
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002792 // Update to the new value.
Pete Cooper5815b1f2015-06-24 18:55:24 +00002793 return getContext().pImpl->StructConstants.replaceOperandsInPlace(
Mehdi Amini8914d292016-02-10 22:47:15 +00002794 Values, this, From, ToC, NumUpdated, OperandNo);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002795}
2796
Mehdi Amini8914d292016-02-10 22:47:15 +00002797Value *ConstantVector::handleOperandChangeImpl(Value *From, Value *To) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002798 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002799 Constant *ToC = cast<Constant>(To);
Galina Kistanovafc259902012-07-13 01:25:27 +00002800
Chris Lattnera474bb22012-01-26 20:40:56 +00002801 SmallVector<Constant*, 8> Values;
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002802 Values.reserve(getNumOperands()); // Build replacement array...
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002803 unsigned NumUpdated = 0;
Mehdi Amini8914d292016-02-10 22:47:15 +00002804 unsigned OperandNo = 0;
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002805 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
2806 Constant *Val = getOperand(i);
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002807 if (Val == From) {
Mehdi Amini8914d292016-02-10 22:47:15 +00002808 OperandNo = i;
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002809 ++NumUpdated;
2810 Val = ToC;
2811 }
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002812 Values.push_back(Val);
2813 }
Galina Kistanovafc259902012-07-13 01:25:27 +00002814
Pete Cooper5815b1f2015-06-24 18:55:24 +00002815 if (Constant *C = getImpl(Values))
2816 return C;
Duncan P. N. Exon Smith687744d2014-08-19 02:24:46 +00002817
Duncan P. N. Exon Smith909620a2014-08-19 19:13:30 +00002818 // Update to the new value.
Pete Cooper5815b1f2015-06-24 18:55:24 +00002819 return getContext().pImpl->VectorConstants.replaceOperandsInPlace(
Mehdi Amini8914d292016-02-10 22:47:15 +00002820 Values, this, From, ToC, NumUpdated, OperandNo);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002821}
2822
Mehdi Amini8914d292016-02-10 22:47:15 +00002823Value *ConstantExpr::handleOperandChangeImpl(Value *From, Value *ToV) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002824 assert(isa<Constant>(ToV) && "Cannot make Constant refer to non-constant!");
2825 Constant *To = cast<Constant>(ToV);
Galina Kistanovafc259902012-07-13 01:25:27 +00002826
Chris Lattner37e38352012-01-26 20:37:11 +00002827 SmallVector<Constant*, 8> NewOps;
Duncan P. N. Exon Smith33de00c2014-08-19 20:03:35 +00002828 unsigned NumUpdated = 0;
Mehdi Amini8914d292016-02-10 22:47:15 +00002829 unsigned OperandNo = 0;
Chris Lattner37e38352012-01-26 20:37:11 +00002830 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
2831 Constant *Op = getOperand(i);
Duncan P. N. Exon Smith33de00c2014-08-19 20:03:35 +00002832 if (Op == From) {
Mehdi Amini8914d292016-02-10 22:47:15 +00002833 OperandNo = i;
Duncan P. N. Exon Smith33de00c2014-08-19 20:03:35 +00002834 ++NumUpdated;
2835 Op = To;
2836 }
2837 NewOps.push_back(Op);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002838 }
Duncan P. N. Exon Smith33de00c2014-08-19 20:03:35 +00002839 assert(NumUpdated && "I didn't contain From!");
Galina Kistanovafc259902012-07-13 01:25:27 +00002840
Pete Cooper5815b1f2015-06-24 18:55:24 +00002841 if (Constant *C = getWithOperands(NewOps, getType(), true))
2842 return C;
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002843
Duncan P. N. Exon Smith33de00c2014-08-19 20:03:35 +00002844 // Update to the new value.
Pete Cooper5815b1f2015-06-24 18:55:24 +00002845 return getContext().pImpl->ExprConstants.replaceOperandsInPlace(
Mehdi Amini8914d292016-02-10 22:47:15 +00002846 NewOps, this, From, To, NumUpdated, OperandNo);
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002847}
2848
James Molloyce545682012-11-17 17:56:30 +00002849Instruction *ConstantExpr::getAsInstruction() {
Benjamin Kramer5fbfe2f2015-02-28 13:20:15 +00002850 SmallVector<Value *, 4> ValueOperands(op_begin(), op_end());
James Molloyce545682012-11-17 17:56:30 +00002851 ArrayRef<Value*> Ops(ValueOperands);
2852
2853 switch (getOpcode()) {
2854 case Instruction::Trunc:
2855 case Instruction::ZExt:
2856 case Instruction::SExt:
2857 case Instruction::FPTrunc:
2858 case Instruction::FPExt:
2859 case Instruction::UIToFP:
2860 case Instruction::SIToFP:
2861 case Instruction::FPToUI:
2862 case Instruction::FPToSI:
2863 case Instruction::PtrToInt:
2864 case Instruction::IntToPtr:
2865 case Instruction::BitCast:
Eli Bendersky157a97a2014-01-18 22:54:33 +00002866 case Instruction::AddrSpaceCast:
James Molloyce545682012-11-17 17:56:30 +00002867 return CastInst::Create((Instruction::CastOps)getOpcode(),
2868 Ops[0], getType());
2869 case Instruction::Select:
2870 return SelectInst::Create(Ops[0], Ops[1], Ops[2]);
2871 case Instruction::InsertElement:
2872 return InsertElementInst::Create(Ops[0], Ops[1], Ops[2]);
2873 case Instruction::ExtractElement:
2874 return ExtractElementInst::Create(Ops[0], Ops[1]);
2875 case Instruction::InsertValue:
2876 return InsertValueInst::Create(Ops[0], Ops[1], getIndices());
2877 case Instruction::ExtractValue:
2878 return ExtractValueInst::Create(Ops[0], getIndices());
2879 case Instruction::ShuffleVector:
2880 return new ShuffleVectorInst(Ops[0], Ops[1], Ops[2]);
2881
David Blaikie741c8f82015-03-14 01:53:18 +00002882 case Instruction::GetElementPtr: {
2883 const auto *GO = cast<GEPOperator>(this);
2884 if (GO->isInBounds())
2885 return GetElementPtrInst::CreateInBounds(GO->getSourceElementType(),
2886 Ops[0], Ops.slice(1));
2887 return GetElementPtrInst::Create(GO->getSourceElementType(), Ops[0],
2888 Ops.slice(1));
2889 }
James Molloyce545682012-11-17 17:56:30 +00002890 case Instruction::ICmp:
2891 case Instruction::FCmp:
2892 return CmpInst::Create((Instruction::OtherOps)getOpcode(),
Craig Topper1c3f2832015-12-15 06:11:33 +00002893 (CmpInst::Predicate)getPredicate(), Ops[0], Ops[1]);
James Molloyce545682012-11-17 17:56:30 +00002894
2895 default:
2896 assert(getNumOperands() == 2 && "Must be binary operator?");
2897 BinaryOperator *BO =
2898 BinaryOperator::Create((Instruction::BinaryOps)getOpcode(),
2899 Ops[0], Ops[1]);
2900 if (isa<OverflowingBinaryOperator>(BO)) {
2901 BO->setHasNoUnsignedWrap(SubclassOptionalData &
2902 OverflowingBinaryOperator::NoUnsignedWrap);
2903 BO->setHasNoSignedWrap(SubclassOptionalData &
2904 OverflowingBinaryOperator::NoSignedWrap);
2905 }
2906 if (isa<PossiblyExactOperator>(BO))
2907 BO->setIsExact(SubclassOptionalData & PossiblyExactOperator::IsExact);
2908 return BO;
2909 }
2910}