blob: aa1d6c909b377e0b36881b721f91aad182e1f193 [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"
Chandler Carruthed0881b2012-12-03 16:50:05 +000019#include "llvm/ADT/StringMap.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000020#include "llvm/IR/DerivedTypes.h"
Chandler Carruth03eb0de2014-03-04 10:40:04 +000021#include "llvm/IR/GetElementPtrTypeIterator.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000022#include "llvm/IR/GlobalValue.h"
23#include "llvm/IR/Instructions.h"
24#include "llvm/IR/Module.h"
25#include "llvm/IR/Operator.h"
Bill Wendling6a462f12006-11-17 08:03:48 +000026#include "llvm/Support/Debug.h"
Torok Edwinccb29cd2009-07-11 13:10:19 +000027#include "llvm/Support/ErrorHandling.h"
Chris Lattner69edc982006-09-28 00:35:06 +000028#include "llvm/Support/ManagedStatic.h"
Bill Wendling6a462f12006-11-17 08:03:48 +000029#include "llvm/Support/MathExtras.h"
Chris Lattner78683a72009-08-23 04:02:03 +000030#include "llvm/Support/raw_ostream.h"
Chris Lattner2f7c9632001-06-06 20:29:01 +000031#include <algorithm>
Serge Gueltone38003f2017-05-09 19:31:13 +000032
Chris Lattner189d19f2003-11-21 20:23:48 +000033using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000034
Chris Lattner2f7c9632001-06-06 20:29:01 +000035//===----------------------------------------------------------------------===//
Chris Lattner3462ae32001-12-03 22:26:30 +000036// Constant Class
Chris Lattner2f7c9632001-06-06 20:29:01 +000037//===----------------------------------------------------------------------===//
38
Chris Lattnerac5fb562011-07-15 05:58:04 +000039bool Constant::isNegativeZeroValue() const {
40 // Floating point values have an explicit -0.0 value.
41 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
42 return CFP->isZero() && CFP->isNegative();
Galina Kistanovafc259902012-07-13 01:25:27 +000043
David Tweed5493fee2013-03-18 11:54:44 +000044 // Equivalent for a vector of -0.0's.
45 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this))
Craig Topper0b4b4e32017-07-15 22:06:19 +000046 if (CV->getElementType()->isFloatingPointTy() && CV->isSplat())
47 if (CV->getElementAsAPFloat(0).isNegZero())
David Tweed5493fee2013-03-18 11:54:44 +000048 return true;
49
Owen Anderson8e851302015-11-20 22:34:48 +000050 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
51 if (ConstantFP *SplatCFP = dyn_cast_or_null<ConstantFP>(CV->getSplatValue()))
52 if (SplatCFP && SplatCFP->isZero() && SplatCFP->isNegative())
53 return true;
54
David Tweed298e4192013-03-19 10:16:40 +000055 // We've already handled true FP case; any other FP vectors can't represent -0.0.
56 if (getType()->isFPOrFPVectorTy())
57 return false;
David Tweed5493fee2013-03-18 11:54:44 +000058
Chris Lattnerac5fb562011-07-15 05:58:04 +000059 // Otherwise, just use +0.0.
60 return isNullValue();
61}
62
Shuxin Yang9ca562e2013-01-09 00:53:25 +000063// Return true iff this constant is positive zero (floating point), negative
64// zero (floating point), or a null value.
Shuxin Yangf0537ab2013-01-09 00:13:41 +000065bool Constant::isZeroValue() const {
66 // Floating point values have an explicit -0.0 value.
67 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
68 return CFP->isZero();
69
Owen Anderson630077e2015-11-20 08:16:13 +000070 // Equivalent for a vector of -0.0's.
71 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this))
Craig Topper0b4b4e32017-07-15 22:06:19 +000072 if (CV->getElementType()->isFloatingPointTy() && CV->isSplat())
73 if (CV->getElementAsAPFloat(0).isZero())
Owen Anderson630077e2015-11-20 08:16:13 +000074 return true;
75
Owen Anderson8e851302015-11-20 22:34:48 +000076 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
77 if (ConstantFP *SplatCFP = dyn_cast_or_null<ConstantFP>(CV->getSplatValue()))
78 if (SplatCFP && SplatCFP->isZero())
79 return true;
80
Shuxin Yangf0537ab2013-01-09 00:13:41 +000081 // Otherwise, just use +0.0.
82 return isNullValue();
83}
84
Chris Lattnerbe6610c2011-07-15 06:14:08 +000085bool Constant::isNullValue() const {
86 // 0 is null.
87 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
88 return CI->isZero();
Galina Kistanovafc259902012-07-13 01:25:27 +000089
Chris Lattnerbe6610c2011-07-15 06:14:08 +000090 // +0.0 is null.
91 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
92 return CFP->isZero() && !CFP->isNegative();
93
David Majnemerf0f224d2015-11-11 21:57:16 +000094 // constant zero is zero for aggregates, cpnull is null for pointers, none for
95 // tokens.
96 return isa<ConstantAggregateZero>(this) || isa<ConstantPointerNull>(this) ||
97 isa<ConstantTokenNone>(this);
Chris Lattnerbe6610c2011-07-15 06:14:08 +000098}
99
Nadav Rotem365af6f2011-08-24 20:18:38 +0000100bool Constant::isAllOnesValue() const {
101 // Check for -1 integers
102 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
103 return CI->isMinusOne();
104
105 // Check for FP which are bitcasted from -1 integers
106 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
107 return CFP->getValueAPF().bitcastToAPInt().isAllOnesValue();
108
Benjamin Kramer42d098e2011-11-14 19:12:20 +0000109 // Check for constant vectors which are splats of -1 values.
Nadav Rotem365af6f2011-08-24 20:18:38 +0000110 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
Benjamin Kramer42d098e2011-11-14 19:12:20 +0000111 if (Constant *Splat = CV->getSplatValue())
112 return Splat->isAllOnesValue();
Nadav Rotem365af6f2011-08-24 20:18:38 +0000113
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000114 // Check for constant vectors which are splats of -1 values.
Craig Topper0b4b4e32017-07-15 22:06:19 +0000115 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this)) {
116 if (CV->isSplat()) {
117 if (CV->getElementType()->isFloatingPointTy())
118 return CV->getElementAsAPFloat(0).bitcastToAPInt().isAllOnesValue();
119 return CV->getElementAsAPInt(0).isAllOnesValue();
120 }
121 }
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000122
Nadav Rotem365af6f2011-08-24 20:18:38 +0000123 return false;
124}
Benjamin Kramer42d098e2011-11-14 19:12:20 +0000125
David Majnemer1a0bbc82014-08-16 09:23:42 +0000126bool Constant::isOneValue() const {
127 // Check for 1 integers
128 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
129 return CI->isOne();
130
131 // Check for FP which are bitcasted from 1 integers
132 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
Craig Topper93ac6e12017-06-07 00:58:02 +0000133 return CFP->getValueAPF().bitcastToAPInt().isOneValue();
David Majnemer1a0bbc82014-08-16 09:23:42 +0000134
135 // Check for constant vectors which are splats of 1 values.
136 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
137 if (Constant *Splat = CV->getSplatValue())
138 return Splat->isOneValue();
139
140 // Check for constant vectors which are splats of 1 values.
Craig Topper0b4b4e32017-07-15 22:06:19 +0000141 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this)) {
142 if (CV->isSplat()) {
143 if (CV->getElementType()->isFloatingPointTy())
144 return CV->getElementAsAPFloat(0).bitcastToAPInt().isOneValue();
145 return CV->getElementAsAPInt(0).isOneValue();
146 }
147 }
David Majnemer1a0bbc82014-08-16 09:23:42 +0000148
149 return false;
150}
151
David Majnemerbdeef602014-07-02 06:07:09 +0000152bool Constant::isMinSignedValue() const {
153 // Check for INT_MIN integers
154 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
155 return CI->isMinValue(/*isSigned=*/true);
156
157 // Check for FP which are bitcasted from INT_MIN integers
158 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
159 return CFP->getValueAPF().bitcastToAPInt().isMinSignedValue();
160
161 // Check for constant vectors which are splats of INT_MIN values.
162 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
163 if (Constant *Splat = CV->getSplatValue())
164 return Splat->isMinSignedValue();
165
166 // Check for constant vectors which are splats of INT_MIN values.
Craig Topper0b4b4e32017-07-15 22:06:19 +0000167 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this)) {
168 if (CV->isSplat()) {
169 if (CV->getElementType()->isFloatingPointTy())
170 return CV->getElementAsAPFloat(0).bitcastToAPInt().isMinSignedValue();
171 return CV->getElementAsAPInt(0).isMinSignedValue();
172 }
173 }
David Majnemerbdeef602014-07-02 06:07:09 +0000174
175 return false;
176}
177
David Majnemer0e6c9862014-08-22 16:41:23 +0000178bool Constant::isNotMinSignedValue() const {
179 // Check for INT_MIN integers
180 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
181 return !CI->isMinValue(/*isSigned=*/true);
182
183 // Check for FP which are bitcasted from INT_MIN integers
184 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
185 return !CFP->getValueAPF().bitcastToAPInt().isMinSignedValue();
186
Nikita Popov0c5d6cc2018-12-01 10:58:34 +0000187 // Check that vectors don't contain INT_MIN
188 if (this->getType()->isVectorTy()) {
189 unsigned NumElts = this->getType()->getVectorNumElements();
190 for (unsigned i = 0; i != NumElts; ++i) {
191 Constant *Elt = this->getAggregateElement(i);
192 if (!Elt || !Elt->isNotMinSignedValue())
193 return false;
Craig Topper0b4b4e32017-07-15 22:06:19 +0000194 }
Nikita Popov0c5d6cc2018-12-01 10:58:34 +0000195 return true;
Craig Topper0b4b4e32017-07-15 22:06:19 +0000196 }
David Majnemer0e6c9862014-08-22 16:41:23 +0000197
198 // It *may* contain INT_MIN, we can't tell.
199 return false;
200}
201
Sanjay Patel08868e4942018-02-16 22:32:54 +0000202bool Constant::isFiniteNonZeroFP() const {
203 if (auto *CFP = dyn_cast<ConstantFP>(this))
204 return CFP->getValueAPF().isFiniteNonZero();
205 if (!getType()->isVectorTy())
206 return false;
207 for (unsigned i = 0, e = getType()->getVectorNumElements(); i != e; ++i) {
208 auto *CFP = dyn_cast_or_null<ConstantFP>(this->getAggregateElement(i));
209 if (!CFP || !CFP->getValueAPF().isFiniteNonZero())
210 return false;
211 }
212 return true;
213}
214
215bool Constant::isNormalFP() const {
216 if (auto *CFP = dyn_cast<ConstantFP>(this))
217 return CFP->getValueAPF().isNormal();
218 if (!getType()->isVectorTy())
219 return false;
220 for (unsigned i = 0, e = getType()->getVectorNumElements(); i != e; ++i) {
221 auto *CFP = dyn_cast_or_null<ConstantFP>(this->getAggregateElement(i));
222 if (!CFP || !CFP->getValueAPF().isNormal())
223 return false;
224 }
225 return true;
226}
227
Sanjay Patel90f4c8e2018-02-20 16:08:15 +0000228bool Constant::hasExactInverseFP() const {
229 if (auto *CFP = dyn_cast<ConstantFP>(this))
230 return CFP->getValueAPF().getExactInverse(nullptr);
231 if (!getType()->isVectorTy())
232 return false;
233 for (unsigned i = 0, e = getType()->getVectorNumElements(); i != e; ++i) {
234 auto *CFP = dyn_cast_or_null<ConstantFP>(this->getAggregateElement(i));
235 if (!CFP || !CFP->getValueAPF().getExactInverse(nullptr))
236 return false;
237 }
238 return true;
239}
240
Sanjay Patel46b083e2018-03-02 18:36:08 +0000241bool Constant::isNaN() const {
242 if (auto *CFP = dyn_cast<ConstantFP>(this))
243 return CFP->isNaN();
244 if (!getType()->isVectorTy())
245 return false;
246 for (unsigned i = 0, e = getType()->getVectorNumElements(); i != e; ++i) {
247 auto *CFP = dyn_cast_or_null<ConstantFP>(this->getAggregateElement(i));
248 if (!CFP || !CFP->isNaN())
249 return false;
250 }
251 return true;
252}
253
Sanjay Patele6dda2f2018-07-06 14:52:36 +0000254bool Constant::containsUndefElement() const {
255 if (!getType()->isVectorTy())
256 return false;
257 for (unsigned i = 0, e = getType()->getVectorNumElements(); i != e; ++i)
258 if (isa<UndefValue>(getAggregateElement(i)))
259 return true;
260
261 return false;
262}
263
Sanjay Patel1d0ac7c2016-04-29 22:03:27 +0000264/// Constructor to create a '0' constant of arbitrary type.
Chris Lattner229907c2011-07-18 04:54:35 +0000265Constant *Constant::getNullValue(Type *Ty) {
Owen Anderson5a1acd92009-07-31 20:28:14 +0000266 switch (Ty->getTypeID()) {
267 case Type::IntegerTyID:
268 return ConstantInt::get(Ty, 0);
Dan Gohman518cda42011-12-17 00:04:22 +0000269 case Type::HalfTyID:
270 return ConstantFP::get(Ty->getContext(),
Stephan Bergmann17c7f702016-12-14 11:57:17 +0000271 APFloat::getZero(APFloat::IEEEhalf()));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000272 case Type::FloatTyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000273 return ConstantFP::get(Ty->getContext(),
Stephan Bergmann17c7f702016-12-14 11:57:17 +0000274 APFloat::getZero(APFloat::IEEEsingle()));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000275 case Type::DoubleTyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000276 return ConstantFP::get(Ty->getContext(),
Stephan Bergmann17c7f702016-12-14 11:57:17 +0000277 APFloat::getZero(APFloat::IEEEdouble()));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000278 case Type::X86_FP80TyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000279 return ConstantFP::get(Ty->getContext(),
Stephan Bergmann17c7f702016-12-14 11:57:17 +0000280 APFloat::getZero(APFloat::x87DoubleExtended()));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000281 case Type::FP128TyID:
282 return ConstantFP::get(Ty->getContext(),
Stephan Bergmann17c7f702016-12-14 11:57:17 +0000283 APFloat::getZero(APFloat::IEEEquad()));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000284 case Type::PPC_FP128TyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000285 return ConstantFP::get(Ty->getContext(),
Stephan Bergmann17c7f702016-12-14 11:57:17 +0000286 APFloat(APFloat::PPCDoubleDouble(),
Tim Northover29178a32013-01-22 09:46:31 +0000287 APInt::getNullValue(128)));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000288 case Type::PointerTyID:
289 return ConstantPointerNull::get(cast<PointerType>(Ty));
290 case Type::StructTyID:
291 case Type::ArrayTyID:
292 case Type::VectorTyID:
293 return ConstantAggregateZero::get(Ty);
David Majnemerf0f224d2015-11-11 21:57:16 +0000294 case Type::TokenTyID:
295 return ConstantTokenNone::get(Ty->getContext());
Owen Anderson5a1acd92009-07-31 20:28:14 +0000296 default:
297 // Function, Label, or Opaque type?
Craig Topperc514b542012-02-05 22:14:15 +0000298 llvm_unreachable("Cannot create a null constant of that type!");
Owen Anderson5a1acd92009-07-31 20:28:14 +0000299 }
300}
301
Chris Lattner229907c2011-07-18 04:54:35 +0000302Constant *Constant::getIntegerValue(Type *Ty, const APInt &V) {
303 Type *ScalarTy = Ty->getScalarType();
Dan Gohmanf011f5a2009-08-03 22:07:33 +0000304
305 // Create the base integer constant.
306 Constant *C = ConstantInt::get(Ty->getContext(), V);
307
308 // Convert an integer to a pointer, if necessary.
Chris Lattner229907c2011-07-18 04:54:35 +0000309 if (PointerType *PTy = dyn_cast<PointerType>(ScalarTy))
Dan Gohmanf011f5a2009-08-03 22:07:33 +0000310 C = ConstantExpr::getIntToPtr(C, PTy);
311
312 // Broadcast a scalar to a vector, if necessary.
Chris Lattner229907c2011-07-18 04:54:35 +0000313 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000314 C = ConstantVector::getSplat(VTy->getNumElements(), C);
Dan Gohmanf011f5a2009-08-03 22:07:33 +0000315
316 return C;
317}
318
Chris Lattner229907c2011-07-18 04:54:35 +0000319Constant *Constant::getAllOnesValue(Type *Ty) {
320 if (IntegerType *ITy = dyn_cast<IntegerType>(Ty))
Owen Anderson5a1acd92009-07-31 20:28:14 +0000321 return ConstantInt::get(Ty->getContext(),
322 APInt::getAllOnesValue(ITy->getBitWidth()));
Nadav Rotem7cc6d122011-02-17 21:22:27 +0000323
324 if (Ty->isFloatingPointTy()) {
325 APFloat FL = APFloat::getAllOnesValue(Ty->getPrimitiveSizeInBits(),
326 !Ty->isPPC_FP128Ty());
327 return ConstantFP::get(Ty->getContext(), FL);
328 }
329
Chris Lattner229907c2011-07-18 04:54:35 +0000330 VectorType *VTy = cast<VectorType>(Ty);
Chris Lattnere9eed292012-01-25 05:19:54 +0000331 return ConstantVector::getSplat(VTy->getNumElements(),
332 getAllOnesValue(VTy->getElementType()));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000333}
334
Chris Lattner7e683d12012-01-25 06:16:32 +0000335Constant *Constant::getAggregateElement(unsigned Elt) const {
Duncan P. N. Exon Smith1de3c7e2016-04-05 21:10:45 +0000336 if (const ConstantAggregate *CC = dyn_cast<ConstantAggregate>(this))
337 return Elt < CC->getNumOperands() ? CC->getOperand(Elt) : nullptr;
Galina Kistanovafc259902012-07-13 01:25:27 +0000338
David Majnemer9b529a72015-02-16 04:02:09 +0000339 if (const ConstantAggregateZero *CAZ = dyn_cast<ConstantAggregateZero>(this))
340 return Elt < CAZ->getNumElements() ? CAZ->getElementValue(Elt) : nullptr;
Galina Kistanovafc259902012-07-13 01:25:27 +0000341
Chris Lattner7e683d12012-01-25 06:16:32 +0000342 if (const UndefValue *UV = dyn_cast<UndefValue>(this))
David Majnemer9b529a72015-02-16 04:02:09 +0000343 return Elt < UV->getNumElements() ? UV->getElementValue(Elt) : nullptr;
Galina Kistanovafc259902012-07-13 01:25:27 +0000344
Chris Lattner8326bd82012-01-26 00:42:34 +0000345 if (const ConstantDataSequential *CDS =dyn_cast<ConstantDataSequential>(this))
Craig Topperc6207612014-04-09 06:08:46 +0000346 return Elt < CDS->getNumElements() ? CDS->getElementAsConstant(Elt)
347 : nullptr;
348 return nullptr;
Chris Lattner7e683d12012-01-25 06:16:32 +0000349}
350
351Constant *Constant::getAggregateElement(Constant *Elt) const {
352 assert(isa<IntegerType>(Elt->getType()) && "Index must be an integer");
353 if (ConstantInt *CI = dyn_cast<ConstantInt>(Elt))
354 return getAggregateElement(CI->getZExtValue());
Craig Topperc6207612014-04-09 06:08:46 +0000355 return nullptr;
Chris Lattner7e683d12012-01-25 06:16:32 +0000356}
357
Pete Cooper86dd4cf2015-06-23 21:55:11 +0000358void Constant::destroyConstant() {
359 /// First call destroyConstantImpl on the subclass. This gives the subclass
360 /// a chance to remove the constant from any maps/pools it's contained in.
361 switch (getValueID()) {
362 default:
363 llvm_unreachable("Not a constant!");
364#define HANDLE_CONSTANT(Name) \
365 case Value::Name##Val: \
366 cast<Name>(this)->destroyConstantImpl(); \
367 break;
368#include "llvm/IR/Value.def"
369 }
Chris Lattner7e683d12012-01-25 06:16:32 +0000370
Chris Lattner3462ae32001-12-03 22:26:30 +0000371 // When a Constant is destroyed, there may be lingering
Chris Lattnerd7a73302001-10-13 06:57:33 +0000372 // references to the constant by other constants in the constant pool. These
Misha Brukmanbe372b92003-08-21 22:14:26 +0000373 // constants are implicitly dependent on the module that is being deleted,
Chris Lattnerd7a73302001-10-13 06:57:33 +0000374 // but they don't know that. Because we only find out when the CPV is
375 // deleted, we must now notify all of our users (that should only be
Chris Lattner3462ae32001-12-03 22:26:30 +0000376 // Constants) that they are, in fact, invalid now and should be deleted.
Chris Lattnerd7a73302001-10-13 06:57:33 +0000377 //
378 while (!use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000379 Value *V = user_back();
Pete Cooper86dd4cf2015-06-23 21:55:11 +0000380#ifndef NDEBUG // Only in -g mode...
Chris Lattner78683a72009-08-23 04:02:03 +0000381 if (!isa<Constant>(V)) {
David Greene1e27a132010-01-05 01:29:19 +0000382 dbgs() << "While deleting: " << *this
Pete Cooper86dd4cf2015-06-23 21:55:11 +0000383 << "\n\nUse still stuck around after Def is destroyed: " << *V
384 << "\n\n";
Chris Lattner78683a72009-08-23 04:02:03 +0000385 }
Chris Lattnerd7a73302001-10-13 06:57:33 +0000386#endif
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000387 assert(isa<Constant>(V) && "References remain to Constant being destroyed");
Chris Lattner8326bd82012-01-26 00:42:34 +0000388 cast<Constant>(V)->destroyConstant();
Chris Lattnerd7a73302001-10-13 06:57:33 +0000389
390 // The constant should remove itself from our use list...
Chandler Carruthcdf47882014-03-09 03:16:01 +0000391 assert((use_empty() || user_back() != V) && "Constant not removed!");
Chris Lattnerd7a73302001-10-13 06:57:33 +0000392 }
393
394 // Value has no outstanding references it is safe to delete it now...
395 delete this;
Chris Lattner38569342001-10-01 20:11:19 +0000396}
Chris Lattner2f7c9632001-06-06 20:29:01 +0000397
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +0000398static bool canTrapImpl(const Constant *C,
Craig Topper71b7b682014-08-21 05:55:13 +0000399 SmallPtrSetImpl<const ConstantExpr *> &NonTrappingOps) {
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +0000400 assert(C->getType()->isFirstClassType() && "Cannot evaluate aggregate vals!");
Chris Lattner23dd1f62006-10-20 00:27:06 +0000401 // The only thing that could possibly trap are constant exprs.
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +0000402 const ConstantExpr *CE = dyn_cast<ConstantExpr>(C);
403 if (!CE)
404 return false;
Galina Kistanovafc259902012-07-13 01:25:27 +0000405
406 // ConstantExpr traps if any operands can trap.
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +0000407 for (unsigned i = 0, e = C->getNumOperands(); i != e; ++i) {
408 if (ConstantExpr *Op = dyn_cast<ConstantExpr>(CE->getOperand(i))) {
David Blaikie70573dc2014-11-19 07:49:26 +0000409 if (NonTrappingOps.insert(Op).second && canTrapImpl(Op, NonTrappingOps))
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +0000410 return true;
411 }
412 }
Chris Lattner23dd1f62006-10-20 00:27:06 +0000413
414 // Otherwise, only specific operations can trap.
415 switch (CE->getOpcode()) {
416 default:
417 return false;
Reid Spencer7e80b0b2006-10-26 06:15:43 +0000418 case Instruction::UDiv:
419 case Instruction::SDiv:
Reid Spencer7eb55b32006-11-02 01:53:59 +0000420 case Instruction::URem:
421 case Instruction::SRem:
Chris Lattner23dd1f62006-10-20 00:27:06 +0000422 // Div and rem can trap if the RHS is not known to be non-zero.
Chris Lattnera91a5632009-10-28 05:14:34 +0000423 if (!isa<ConstantInt>(CE->getOperand(1)) ||CE->getOperand(1)->isNullValue())
Chris Lattner23dd1f62006-10-20 00:27:06 +0000424 return true;
425 return false;
426 }
427}
428
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +0000429bool Constant::canTrap() const {
430 SmallPtrSet<const ConstantExpr *, 4> NonTrappingOps;
431 return canTrapImpl(this, NonTrappingOps);
432}
433
Hans Wennborg4dc89512014-06-20 00:38:12 +0000434/// Check if C contains a GlobalValue for which Predicate is true.
435static bool
436ConstHasGlobalValuePredicate(const Constant *C,
437 bool (*Predicate)(const GlobalValue *)) {
438 SmallPtrSet<const Constant *, 8> Visited;
439 SmallVector<const Constant *, 8> WorkList;
440 WorkList.push_back(C);
441 Visited.insert(C);
Hans Wennborg709e0152012-11-15 11:40:00 +0000442
443 while (!WorkList.empty()) {
Hans Wennborg4dc89512014-06-20 00:38:12 +0000444 const Constant *WorkItem = WorkList.pop_back_val();
445 if (const auto *GV = dyn_cast<GlobalValue>(WorkItem))
446 if (Predicate(GV))
Hans Wennborg709e0152012-11-15 11:40:00 +0000447 return true;
Hans Wennborg4dc89512014-06-20 00:38:12 +0000448 for (const Value *Op : WorkItem->operands()) {
449 const Constant *ConstOp = dyn_cast<Constant>(Op);
450 if (!ConstOp)
Hans Wennborg18aa12402012-11-16 10:33:25 +0000451 continue;
David Blaikie70573dc2014-11-19 07:49:26 +0000452 if (Visited.insert(ConstOp).second)
Hans Wennborg4dc89512014-06-20 00:38:12 +0000453 WorkList.push_back(ConstOp);
Hans Wennborg709e0152012-11-15 11:40:00 +0000454 }
455 }
Hans Wennborg709e0152012-11-15 11:40:00 +0000456 return false;
457}
458
Hans Wennborg4dc89512014-06-20 00:38:12 +0000459bool Constant::isThreadDependent() const {
460 auto DLLImportPredicate = [](const GlobalValue *GV) {
461 return GV->isThreadLocal();
462 };
463 return ConstHasGlobalValuePredicate(this, DLLImportPredicate);
464}
465
466bool Constant::isDLLImportDependent() const {
467 auto DLLImportPredicate = [](const GlobalValue *GV) {
468 return GV->hasDLLImportStorageClass();
469 };
470 return ConstHasGlobalValuePredicate(this, DLLImportPredicate);
471}
472
Chris Lattner253bc772009-11-01 18:11:50 +0000473bool Constant::isConstantUsed() const {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000474 for (const User *U : users()) {
475 const Constant *UC = dyn_cast<Constant>(U);
Craig Topperc6207612014-04-09 06:08:46 +0000476 if (!UC || isa<GlobalValue>(UC))
Chris Lattner253bc772009-11-01 18:11:50 +0000477 return true;
Galina Kistanovafc259902012-07-13 01:25:27 +0000478
Chris Lattner253bc772009-11-01 18:11:50 +0000479 if (UC->isConstantUsed())
480 return true;
481 }
482 return false;
483}
484
Rafael Espindola65e49022015-11-17 00:51:23 +0000485bool Constant::needsRelocation() const {
486 if (isa<GlobalValue>(this))
487 return true; // Global reference.
488
Chris Lattner2cb85b42009-10-28 04:12:16 +0000489 if (const BlockAddress *BA = dyn_cast<BlockAddress>(this))
Rafael Espindola65e49022015-11-17 00:51:23 +0000490 return BA->getFunction()->needsRelocation();
491
Chris Lattnera7cfc432010-01-03 18:09:40 +0000492 // While raw uses of blockaddress need to be relocated, differences between
493 // two of them don't when they are for labels in the same function. This is a
494 // common idiom when creating a table for the indirect goto extension, so we
495 // handle it efficiently here.
496 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(this))
497 if (CE->getOpcode() == Instruction::Sub) {
498 ConstantExpr *LHS = dyn_cast<ConstantExpr>(CE->getOperand(0));
499 ConstantExpr *RHS = dyn_cast<ConstantExpr>(CE->getOperand(1));
Rafael Espindola65e49022015-11-17 00:51:23 +0000500 if (LHS && RHS && LHS->getOpcode() == Instruction::PtrToInt &&
Chris Lattnera7cfc432010-01-03 18:09:40 +0000501 RHS->getOpcode() == Instruction::PtrToInt &&
502 isa<BlockAddress>(LHS->getOperand(0)) &&
503 isa<BlockAddress>(RHS->getOperand(0)) &&
504 cast<BlockAddress>(LHS->getOperand(0))->getFunction() ==
Rafael Espindola65e49022015-11-17 00:51:23 +0000505 cast<BlockAddress>(RHS->getOperand(0))->getFunction())
506 return false;
Chris Lattnera7cfc432010-01-03 18:09:40 +0000507 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000508
Rafael Espindola65e49022015-11-17 00:51:23 +0000509 bool Result = false;
Evan Chengf9e003b2007-03-08 00:59:12 +0000510 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Rafael Espindola65e49022015-11-17 00:51:23 +0000511 Result |= cast<Constant>(getOperand(i))->needsRelocation();
Galina Kistanovafc259902012-07-13 01:25:27 +0000512
Chris Lattner4565ef52009-07-22 00:05:44 +0000513 return Result;
Evan Chengf9e003b2007-03-08 00:59:12 +0000514}
515
Sanjay Patel1d0ac7c2016-04-29 22:03:27 +0000516/// If the specified constantexpr is dead, remove it. This involves recursively
517/// eliminating any dead users of the constantexpr.
Chris Lattner84886402011-02-18 04:41:42 +0000518static bool removeDeadUsersOfConstant(const Constant *C) {
519 if (isa<GlobalValue>(C)) return false; // Cannot remove this
Galina Kistanovafc259902012-07-13 01:25:27 +0000520
Chris Lattner84886402011-02-18 04:41:42 +0000521 while (!C->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000522 const Constant *User = dyn_cast<Constant>(C->user_back());
Chris Lattner84886402011-02-18 04:41:42 +0000523 if (!User) return false; // Non-constant usage;
524 if (!removeDeadUsersOfConstant(User))
525 return false; // Constant wasn't dead
526 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000527
Chris Lattner84886402011-02-18 04:41:42 +0000528 const_cast<Constant*>(C)->destroyConstant();
529 return true;
530}
531
532
Chris Lattner84886402011-02-18 04:41:42 +0000533void Constant::removeDeadConstantUsers() const {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000534 Value::const_user_iterator I = user_begin(), E = user_end();
535 Value::const_user_iterator LastNonDeadUser = E;
Chris Lattner84886402011-02-18 04:41:42 +0000536 while (I != E) {
537 const Constant *User = dyn_cast<Constant>(*I);
Craig Topperc6207612014-04-09 06:08:46 +0000538 if (!User) {
Chris Lattner84886402011-02-18 04:41:42 +0000539 LastNonDeadUser = I;
540 ++I;
541 continue;
542 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000543
Chris Lattner84886402011-02-18 04:41:42 +0000544 if (!removeDeadUsersOfConstant(User)) {
545 // If the constant wasn't dead, remember that this was the last live use
546 // and move on to the next constant.
547 LastNonDeadUser = I;
548 ++I;
549 continue;
550 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000551
Chris Lattner84886402011-02-18 04:41:42 +0000552 // If the constant was dead, then the iterator is invalidated.
553 if (LastNonDeadUser == E) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000554 I = user_begin();
Chris Lattner84886402011-02-18 04:41:42 +0000555 if (I == E) break;
556 } else {
557 I = LastNonDeadUser;
558 ++I;
559 }
560 }
561}
562
563
Chris Lattner2105d662008-07-10 00:28:11 +0000564
Chris Lattner2f7c9632001-06-06 20:29:01 +0000565//===----------------------------------------------------------------------===//
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000566// ConstantInt
Chris Lattner2f7c9632001-06-06 20:29:01 +0000567//===----------------------------------------------------------------------===//
568
Duncan P. N. Exon Smithb6452792016-02-21 02:39:49 +0000569ConstantInt::ConstantInt(IntegerType *Ty, const APInt &V)
570 : ConstantData(Ty, ConstantIntVal), Val(V) {
Reid Spencerb31bffe2007-02-26 23:54:03 +0000571 assert(V.getBitWidth() == Ty->getBitWidth() && "Invalid constant for type");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000572}
573
Nick Lewycky92db8e82011-03-06 03:36:19 +0000574ConstantInt *ConstantInt::getTrue(LLVMContext &Context) {
Owen Anderson23a204d2009-07-31 17:39:07 +0000575 LLVMContextImpl *pImpl = Context.pImpl;
Benjamin Kramerddd1b7b2010-11-20 18:43:35 +0000576 if (!pImpl->TheTrueVal)
577 pImpl->TheTrueVal = ConstantInt::get(Type::getInt1Ty(Context), 1);
578 return pImpl->TheTrueVal;
Owen Anderson23a204d2009-07-31 17:39:07 +0000579}
580
Nick Lewycky92db8e82011-03-06 03:36:19 +0000581ConstantInt *ConstantInt::getFalse(LLVMContext &Context) {
Owen Anderson23a204d2009-07-31 17:39:07 +0000582 LLVMContextImpl *pImpl = Context.pImpl;
Benjamin Kramerddd1b7b2010-11-20 18:43:35 +0000583 if (!pImpl->TheFalseVal)
584 pImpl->TheFalseVal = ConstantInt::get(Type::getInt1Ty(Context), 0);
585 return pImpl->TheFalseVal;
Owen Anderson23a204d2009-07-31 17:39:07 +0000586}
587
Chris Lattner229907c2011-07-18 04:54:35 +0000588Constant *ConstantInt::getTrue(Type *Ty) {
Craig Topperfde47232017-07-09 07:04:03 +0000589 assert(Ty->isIntOrIntVectorTy(1) && "Type not i1 or vector of i1.");
Sanjay Patel70a575a2017-04-16 17:00:21 +0000590 ConstantInt *TrueC = ConstantInt::getTrue(Ty->getContext());
591 if (auto *VTy = dyn_cast<VectorType>(Ty))
592 return ConstantVector::getSplat(VTy->getNumElements(), TrueC);
593 return TrueC;
Nick Lewycky92db8e82011-03-06 03:36:19 +0000594}
595
Chris Lattner229907c2011-07-18 04:54:35 +0000596Constant *ConstantInt::getFalse(Type *Ty) {
Craig Topperfde47232017-07-09 07:04:03 +0000597 assert(Ty->isIntOrIntVectorTy(1) && "Type not i1 or vector of i1.");
Sanjay Patel70a575a2017-04-16 17:00:21 +0000598 ConstantInt *FalseC = ConstantInt::getFalse(Ty->getContext());
599 if (auto *VTy = dyn_cast<VectorType>(Ty))
600 return ConstantVector::getSplat(VTy->getNumElements(), FalseC);
601 return FalseC;
Nick Lewycky92db8e82011-03-06 03:36:19 +0000602}
603
Benjamin Kramer8e5dc532014-12-06 13:12:56 +0000604// Get a ConstantInt from an APInt.
Nick Lewycky92db8e82011-03-06 03:36:19 +0000605ConstantInt *ConstantInt::get(LLVMContext &Context, const APInt &V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000606 // get an existing value or the insertion position
Benjamin Kramer320682f2013-06-01 17:51:03 +0000607 LLVMContextImpl *pImpl = Context.pImpl;
Justin Lebar611c5c22016-10-10 16:26:13 +0000608 std::unique_ptr<ConstantInt> &Slot = pImpl->IntConstants[V];
Benjamin Kramer8e5dc532014-12-06 13:12:56 +0000609 if (!Slot) {
610 // Get the corresponding integer type for the bit width of the value.
611 IntegerType *ITy = IntegerType::get(Context, V.getBitWidth());
Justin Lebar611c5c22016-10-10 16:26:13 +0000612 Slot.reset(new ConstantInt(ITy, V));
Benjamin Kramer8e5dc532014-12-06 13:12:56 +0000613 }
614 assert(Slot->getType() == IntegerType::get(Context, V.getBitWidth()));
Justin Lebar611c5c22016-10-10 16:26:13 +0000615 return Slot.get();
Owen Andersonedb4a702009-07-24 23:12:02 +0000616}
617
Chris Lattner229907c2011-07-18 04:54:35 +0000618Constant *ConstantInt::get(Type *Ty, uint64_t V, bool isSigned) {
Nick Lewycky92db8e82011-03-06 03:36:19 +0000619 Constant *C = get(cast<IntegerType>(Ty->getScalarType()), V, isSigned);
Owen Andersonedb4a702009-07-24 23:12:02 +0000620
621 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000622 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000623 return ConstantVector::getSplat(VTy->getNumElements(), C);
Owen Andersonedb4a702009-07-24 23:12:02 +0000624
625 return C;
626}
627
Sanjay Patelf3587ec2016-05-18 22:05:28 +0000628ConstantInt *ConstantInt::get(IntegerType *Ty, uint64_t V, bool isSigned) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000629 return get(Ty->getContext(), APInt(Ty->getBitWidth(), V, isSigned));
630}
631
Chris Lattner0256be92012-01-27 03:08:05 +0000632ConstantInt *ConstantInt::getSigned(IntegerType *Ty, int64_t V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000633 return get(Ty, V, true);
634}
635
Chris Lattner229907c2011-07-18 04:54:35 +0000636Constant *ConstantInt::getSigned(Type *Ty, int64_t V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000637 return get(Ty, V, true);
638}
639
Chris Lattner0256be92012-01-27 03:08:05 +0000640Constant *ConstantInt::get(Type *Ty, const APInt& V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000641 ConstantInt *C = get(Ty->getContext(), V);
642 assert(C->getType() == Ty->getScalarType() &&
643 "ConstantInt type doesn't match the type implied by its value!");
644
645 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000646 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000647 return ConstantVector::getSplat(VTy->getNumElements(), C);
Owen Andersonedb4a702009-07-24 23:12:02 +0000648
649 return C;
650}
651
Sanjay Patelf3587ec2016-05-18 22:05:28 +0000652ConstantInt *ConstantInt::get(IntegerType* Ty, StringRef Str, uint8_t radix) {
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000653 return get(Ty->getContext(), APInt(Ty->getBitWidth(), Str, radix));
654}
655
Pete Cooper86dd4cf2015-06-23 21:55:11 +0000656/// Remove the constant from the constant table.
657void ConstantInt::destroyConstantImpl() {
658 llvm_unreachable("You can't ConstantInt->destroyConstantImpl()!");
659}
660
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000661//===----------------------------------------------------------------------===//
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000662// ConstantFP
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000663//===----------------------------------------------------------------------===//
664
Chris Lattner229907c2011-07-18 04:54:35 +0000665static const fltSemantics *TypeToFloatSemantics(Type *Ty) {
Dan Gohman518cda42011-12-17 00:04:22 +0000666 if (Ty->isHalfTy())
Stephan Bergmann17c7f702016-12-14 11:57:17 +0000667 return &APFloat::IEEEhalf();
Chris Lattnerfdd87902009-10-05 05:54:46 +0000668 if (Ty->isFloatTy())
Stephan Bergmann17c7f702016-12-14 11:57:17 +0000669 return &APFloat::IEEEsingle();
Chris Lattnerfdd87902009-10-05 05:54:46 +0000670 if (Ty->isDoubleTy())
Stephan Bergmann17c7f702016-12-14 11:57:17 +0000671 return &APFloat::IEEEdouble();
Chris Lattnerfdd87902009-10-05 05:54:46 +0000672 if (Ty->isX86_FP80Ty())
Stephan Bergmann17c7f702016-12-14 11:57:17 +0000673 return &APFloat::x87DoubleExtended();
Chris Lattnerfdd87902009-10-05 05:54:46 +0000674 else if (Ty->isFP128Ty())
Stephan Bergmann17c7f702016-12-14 11:57:17 +0000675 return &APFloat::IEEEquad();
Galina Kistanovafc259902012-07-13 01:25:27 +0000676
Chris Lattnerfdd87902009-10-05 05:54:46 +0000677 assert(Ty->isPPC_FP128Ty() && "Unknown FP format");
Stephan Bergmann17c7f702016-12-14 11:57:17 +0000678 return &APFloat::PPCDoubleDouble();
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000679}
680
Chris Lattner0256be92012-01-27 03:08:05 +0000681Constant *ConstantFP::get(Type *Ty, double V) {
Owen Anderson69c464d2009-07-27 20:59:43 +0000682 LLVMContext &Context = Ty->getContext();
Galina Kistanovafc259902012-07-13 01:25:27 +0000683
Owen Anderson69c464d2009-07-27 20:59:43 +0000684 APFloat FV(V);
685 bool ignored;
686 FV.convert(*TypeToFloatSemantics(Ty->getScalarType()),
687 APFloat::rmNearestTiesToEven, &ignored);
688 Constant *C = get(Context, FV);
689
690 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000691 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000692 return ConstantVector::getSplat(VTy->getNumElements(), C);
Owen Anderson69c464d2009-07-27 20:59:43 +0000693
694 return C;
695}
696
Sanjay Patel6a0f6672018-02-15 13:55:52 +0000697Constant *ConstantFP::get(Type *Ty, const APFloat &V) {
698 ConstantFP *C = get(Ty->getContext(), V);
699 assert(C->getType() == Ty->getScalarType() &&
700 "ConstantFP type doesn't match the type implied by its value!");
701
702 // For vectors, broadcast the value.
703 if (auto *VTy = dyn_cast<VectorType>(Ty))
704 return ConstantVector::getSplat(VTy->getNumElements(), C);
705
706 return C;
707}
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000708
Chris Lattner0256be92012-01-27 03:08:05 +0000709Constant *ConstantFP::get(Type *Ty, StringRef Str) {
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000710 LLVMContext &Context = Ty->getContext();
711
712 APFloat FV(*TypeToFloatSemantics(Ty->getScalarType()), Str);
713 Constant *C = get(Context, FV);
714
715 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000716 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000717 return ConstantVector::getSplat(VTy->getNumElements(), C);
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000718
Bjorn Petterssonaa025802018-07-03 12:39:52 +0000719 return C;
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000720}
721
Tom Stellard67246d12015-04-20 19:38:24 +0000722Constant *ConstantFP::getNaN(Type *Ty, bool Negative, unsigned Type) {
723 const fltSemantics &Semantics = *TypeToFloatSemantics(Ty->getScalarType());
724 APFloat NaN = APFloat::getNaN(Semantics, Negative, Type);
725 Constant *C = get(Ty->getContext(), NaN);
726
727 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
728 return ConstantVector::getSplat(VTy->getNumElements(), C);
729
730 return C;
731}
732
Benjamin Kramer5d2ff222014-01-18 16:43:06 +0000733Constant *ConstantFP::getNegativeZero(Type *Ty) {
734 const fltSemantics &Semantics = *TypeToFloatSemantics(Ty->getScalarType());
735 APFloat NegZero = APFloat::getZero(Semantics, /*Negative=*/true);
736 Constant *C = get(Ty->getContext(), NegZero);
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000737
Benjamin Kramer5d2ff222014-01-18 16:43:06 +0000738 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
739 return ConstantVector::getSplat(VTy->getNumElements(), C);
740
741 return C;
Owen Anderson69c464d2009-07-27 20:59:43 +0000742}
743
744
Chris Lattnere9eed292012-01-25 05:19:54 +0000745Constant *ConstantFP::getZeroValueForNegation(Type *Ty) {
Benjamin Kramer5d2ff222014-01-18 16:43:06 +0000746 if (Ty->isFPOrFPVectorTy())
747 return getNegativeZero(Ty);
Owen Anderson69c464d2009-07-27 20:59:43 +0000748
Owen Anderson5a1acd92009-07-31 20:28:14 +0000749 return Constant::getNullValue(Ty);
Owen Anderson69c464d2009-07-27 20:59:43 +0000750}
751
752
753// ConstantFP accessors.
754ConstantFP* ConstantFP::get(LLVMContext &Context, const APFloat& V) {
Owen Anderson69c464d2009-07-27 20:59:43 +0000755 LLVMContextImpl* pImpl = Context.pImpl;
Galina Kistanovafc259902012-07-13 01:25:27 +0000756
Justin Lebar611c5c22016-10-10 16:26:13 +0000757 std::unique_ptr<ConstantFP> &Slot = pImpl->FPConstants[V];
Galina Kistanovafc259902012-07-13 01:25:27 +0000758
Owen Anderson69c464d2009-07-27 20:59:43 +0000759 if (!Slot) {
Chris Lattner229907c2011-07-18 04:54:35 +0000760 Type *Ty;
Stephan Bergmann17c7f702016-12-14 11:57:17 +0000761 if (&V.getSemantics() == &APFloat::IEEEhalf())
Dan Gohman518cda42011-12-17 00:04:22 +0000762 Ty = Type::getHalfTy(Context);
Stephan Bergmann17c7f702016-12-14 11:57:17 +0000763 else if (&V.getSemantics() == &APFloat::IEEEsingle())
Owen Anderson5dab84c2009-10-19 20:11:52 +0000764 Ty = Type::getFloatTy(Context);
Stephan Bergmann17c7f702016-12-14 11:57:17 +0000765 else if (&V.getSemantics() == &APFloat::IEEEdouble())
Owen Anderson5dab84c2009-10-19 20:11:52 +0000766 Ty = Type::getDoubleTy(Context);
Stephan Bergmann17c7f702016-12-14 11:57:17 +0000767 else if (&V.getSemantics() == &APFloat::x87DoubleExtended())
Owen Anderson5dab84c2009-10-19 20:11:52 +0000768 Ty = Type::getX86_FP80Ty(Context);
Stephan Bergmann17c7f702016-12-14 11:57:17 +0000769 else if (&V.getSemantics() == &APFloat::IEEEquad())
Owen Anderson5dab84c2009-10-19 20:11:52 +0000770 Ty = Type::getFP128Ty(Context);
771 else {
Bjorn Petterssonaa025802018-07-03 12:39:52 +0000772 assert(&V.getSemantics() == &APFloat::PPCDoubleDouble() &&
Owen Anderson5dab84c2009-10-19 20:11:52 +0000773 "Unknown FP format");
774 Ty = Type::getPPC_FP128Ty(Context);
Owen Anderson69c464d2009-07-27 20:59:43 +0000775 }
Justin Lebar611c5c22016-10-10 16:26:13 +0000776 Slot.reset(new ConstantFP(Ty, V));
Owen Anderson69c464d2009-07-27 20:59:43 +0000777 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000778
Justin Lebar611c5c22016-10-10 16:26:13 +0000779 return Slot.get();
Owen Anderson69c464d2009-07-27 20:59:43 +0000780}
781
Benjamin Kramer5d2ff222014-01-18 16:43:06 +0000782Constant *ConstantFP::getInfinity(Type *Ty, bool Negative) {
783 const fltSemantics &Semantics = *TypeToFloatSemantics(Ty->getScalarType());
784 Constant *C = get(Ty->getContext(), APFloat::getInf(Semantics, Negative));
785
786 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
787 return ConstantVector::getSplat(VTy->getNumElements(), C);
788
789 return C;
Dan Gohmanfeb50212009-09-25 23:00:48 +0000790}
791
Duncan P. N. Exon Smithb6452792016-02-21 02:39:49 +0000792ConstantFP::ConstantFP(Type *Ty, const APFloat &V)
793 : ConstantData(Ty, ConstantFPVal), Val(V) {
Chris Lattner98bd9392008-04-09 06:38:30 +0000794 assert(&V.getSemantics() == TypeToFloatSemantics(Ty) &&
795 "FP type Mismatch");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000796}
797
Chris Lattnerbe6610c2011-07-15 06:14:08 +0000798bool ConstantFP::isExactlyValue(const APFloat &V) const {
Dale Johannesend246b2c2007-08-30 00:23:21 +0000799 return Val.bitwiseIsEqual(V);
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000800}
801
Pete Cooper86dd4cf2015-06-23 21:55:11 +0000802/// Remove the constant from the constant table.
803void ConstantFP::destroyConstantImpl() {
Craig Topperccbb8102017-06-27 19:57:51 +0000804 llvm_unreachable("You can't ConstantFP->destroyConstantImpl()!");
Pete Cooper86dd4cf2015-06-23 21:55:11 +0000805}
806
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000807//===----------------------------------------------------------------------===//
Chris Lattner030af792012-01-24 05:42:11 +0000808// ConstantAggregateZero Implementation
809//===----------------------------------------------------------------------===//
810
Chris Lattner7e683d12012-01-25 06:16:32 +0000811Constant *ConstantAggregateZero::getSequentialElement() const {
Chris Lattner8326bd82012-01-26 00:42:34 +0000812 return Constant::getNullValue(getType()->getSequentialElementType());
Chris Lattner030af792012-01-24 05:42:11 +0000813}
814
Chris Lattner7e683d12012-01-25 06:16:32 +0000815Constant *ConstantAggregateZero::getStructElement(unsigned Elt) const {
Chris Lattner8326bd82012-01-26 00:42:34 +0000816 return Constant::getNullValue(getType()->getStructElementType(Elt));
Chris Lattner030af792012-01-24 05:42:11 +0000817}
818
Chris Lattner7e683d12012-01-25 06:16:32 +0000819Constant *ConstantAggregateZero::getElementValue(Constant *C) const {
Chris Lattner030af792012-01-24 05:42:11 +0000820 if (isa<SequentialType>(getType()))
821 return getSequentialElement();
822 return getStructElement(cast<ConstantInt>(C)->getZExtValue());
823}
824
Chris Lattner7e683d12012-01-25 06:16:32 +0000825Constant *ConstantAggregateZero::getElementValue(unsigned Idx) const {
Chris Lattnerf7eb5432012-01-24 07:54:10 +0000826 if (isa<SequentialType>(getType()))
827 return getSequentialElement();
828 return getStructElement(Idx);
829}
830
David Majnemer9b529a72015-02-16 04:02:09 +0000831unsigned ConstantAggregateZero::getNumElements() const {
Craig Toppere3dcce92015-08-01 22:20:21 +0000832 Type *Ty = getType();
833 if (auto *AT = dyn_cast<ArrayType>(Ty))
David Majnemer9b529a72015-02-16 04:02:09 +0000834 return AT->getNumElements();
Craig Toppere3dcce92015-08-01 22:20:21 +0000835 if (auto *VT = dyn_cast<VectorType>(Ty))
David Majnemer9b529a72015-02-16 04:02:09 +0000836 return VT->getNumElements();
837 return Ty->getStructNumElements();
838}
Chris Lattnerf7eb5432012-01-24 07:54:10 +0000839
Chris Lattner030af792012-01-24 05:42:11 +0000840//===----------------------------------------------------------------------===//
841// UndefValue Implementation
842//===----------------------------------------------------------------------===//
843
Chris Lattner7e683d12012-01-25 06:16:32 +0000844UndefValue *UndefValue::getSequentialElement() const {
Chris Lattner8326bd82012-01-26 00:42:34 +0000845 return UndefValue::get(getType()->getSequentialElementType());
Chris Lattner030af792012-01-24 05:42:11 +0000846}
847
Chris Lattner7e683d12012-01-25 06:16:32 +0000848UndefValue *UndefValue::getStructElement(unsigned Elt) const {
Chris Lattner8326bd82012-01-26 00:42:34 +0000849 return UndefValue::get(getType()->getStructElementType(Elt));
Chris Lattner030af792012-01-24 05:42:11 +0000850}
851
Chris Lattner7e683d12012-01-25 06:16:32 +0000852UndefValue *UndefValue::getElementValue(Constant *C) const {
Chris Lattner030af792012-01-24 05:42:11 +0000853 if (isa<SequentialType>(getType()))
854 return getSequentialElement();
855 return getStructElement(cast<ConstantInt>(C)->getZExtValue());
856}
857
Chris Lattner7e683d12012-01-25 06:16:32 +0000858UndefValue *UndefValue::getElementValue(unsigned Idx) const {
Chris Lattnerf7eb5432012-01-24 07:54:10 +0000859 if (isa<SequentialType>(getType()))
860 return getSequentialElement();
861 return getStructElement(Idx);
862}
863
David Majnemer9b529a72015-02-16 04:02:09 +0000864unsigned UndefValue::getNumElements() const {
Craig Toppere3dcce92015-08-01 22:20:21 +0000865 Type *Ty = getType();
Peter Collingbournebc070522016-12-02 03:20:58 +0000866 if (auto *ST = dyn_cast<SequentialType>(Ty))
867 return ST->getNumElements();
David Majnemer9b529a72015-02-16 04:02:09 +0000868 return Ty->getStructNumElements();
869}
Chris Lattner030af792012-01-24 05:42:11 +0000870
871//===----------------------------------------------------------------------===//
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000872// ConstantXXX Classes
873//===----------------------------------------------------------------------===//
874
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000875template <typename ItTy, typename EltTy>
876static bool rangeOnlyContains(ItTy Start, ItTy End, EltTy Elt) {
877 for (; Start != End; ++Start)
878 if (*Start != Elt)
879 return false;
880 return true;
881}
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000882
Justin Bogner909e1c02015-12-01 20:20:49 +0000883template <typename SequentialTy, typename ElementTy>
884static Constant *getIntSequenceIfElementsMatch(ArrayRef<Constant *> V) {
885 assert(!V.empty() && "Cannot get empty int sequence.");
886
887 SmallVector<ElementTy, 16> Elts;
888 for (Constant *C : V)
889 if (auto *CI = dyn_cast<ConstantInt>(C))
890 Elts.push_back(CI->getZExtValue());
891 else
892 return nullptr;
893 return SequentialTy::get(V[0]->getContext(), Elts);
894}
895
896template <typename SequentialTy, typename ElementTy>
897static Constant *getFPSequenceIfElementsMatch(ArrayRef<Constant *> V) {
898 assert(!V.empty() && "Cannot get empty FP sequence.");
899
900 SmallVector<ElementTy, 16> Elts;
901 for (Constant *C : V)
902 if (auto *CFP = dyn_cast<ConstantFP>(C))
903 Elts.push_back(CFP->getValueAPF().bitcastToAPInt().getLimitedValue());
904 else
905 return nullptr;
906 return SequentialTy::getFP(V[0]->getContext(), Elts);
907}
908
909template <typename SequenceTy>
910static Constant *getSequenceIfElementsMatch(Constant *C,
911 ArrayRef<Constant *> V) {
912 // We speculatively build the elements here even if it turns out that there is
913 // a constantexpr or something else weird, since it is so uncommon for that to
914 // happen.
915 if (ConstantInt *CI = dyn_cast<ConstantInt>(C)) {
916 if (CI->getType()->isIntegerTy(8))
917 return getIntSequenceIfElementsMatch<SequenceTy, uint8_t>(V);
918 else if (CI->getType()->isIntegerTy(16))
919 return getIntSequenceIfElementsMatch<SequenceTy, uint16_t>(V);
920 else if (CI->getType()->isIntegerTy(32))
921 return getIntSequenceIfElementsMatch<SequenceTy, uint32_t>(V);
922 else if (CI->getType()->isIntegerTy(64))
923 return getIntSequenceIfElementsMatch<SequenceTy, uint64_t>(V);
924 } else if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
Justin Bogner0ebc8602015-12-08 03:01:16 +0000925 if (CFP->getType()->isHalfTy())
926 return getFPSequenceIfElementsMatch<SequenceTy, uint16_t>(V);
927 else if (CFP->getType()->isFloatTy())
Justin Bogner909e1c02015-12-01 20:20:49 +0000928 return getFPSequenceIfElementsMatch<SequenceTy, uint32_t>(V);
929 else if (CFP->getType()->isDoubleTy())
930 return getFPSequenceIfElementsMatch<SequenceTy, uint64_t>(V);
931 }
932
933 return nullptr;
934}
935
Duncan P. N. Exon Smith1de3c7e2016-04-05 21:10:45 +0000936ConstantAggregate::ConstantAggregate(CompositeType *T, ValueTy VT,
937 ArrayRef<Constant *> V)
938 : Constant(T, VT, OperandTraits<ConstantAggregate>::op_end(this) - V.size(),
939 V.size()) {
Fangrui Song75709322018-11-17 01:44:25 +0000940 llvm::copy(V, op_begin());
Duncan P. N. Exon Smith1de3c7e2016-04-05 21:10:45 +0000941
942 // Check that types match, unless this is an opaque struct.
943 if (auto *ST = dyn_cast<StructType>(T))
944 if (ST->isOpaque())
945 return;
946 for (unsigned I = 0, E = V.size(); I != E; ++I)
947 assert(V[I]->getType() == T->getTypeAtIndex(I) &&
948 "Initializer for composite element doesn't match!");
949}
950
951ConstantArray::ConstantArray(ArrayType *T, ArrayRef<Constant *> V)
952 : ConstantAggregate(T, ConstantArrayVal, V) {
953 assert(V.size() == T->getNumElements() &&
954 "Invalid initializer for constant array");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000955}
956
Chris Lattner229907c2011-07-18 04:54:35 +0000957Constant *ConstantArray::get(ArrayType *Ty, ArrayRef<Constant*> V) {
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +0000958 if (Constant *C = getImpl(Ty, V))
959 return C;
960 return Ty->getContext().pImpl->ArrayConstants.getOrCreate(Ty, V);
961}
Justin Bogner909e1c02015-12-01 20:20:49 +0000962
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +0000963Constant *ConstantArray::getImpl(ArrayType *Ty, ArrayRef<Constant*> V) {
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000964 // Empty arrays are canonicalized to ConstantAggregateZero.
965 if (V.empty())
966 return ConstantAggregateZero::get(Ty);
967
Jeffrey Yasskin8ce67f82009-09-30 21:08:08 +0000968 for (unsigned i = 0, e = V.size(); i != e; ++i) {
969 assert(V[i]->getType() == Ty->getElementType() &&
970 "Wrong type in array element initializer");
971 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000972
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000973 // If this is an all-zero array, return a ConstantAggregateZero object. If
974 // all undef, return an UndefValue, if "all simple", then return a
975 // ConstantDataArray.
976 Constant *C = V[0];
977 if (isa<UndefValue>(C) && rangeOnlyContains(V.begin(), V.end(), C))
978 return UndefValue::get(Ty);
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000979
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000980 if (C->isNullValue() && rangeOnlyContains(V.begin(), V.end(), C))
981 return ConstantAggregateZero::get(Ty);
982
983 // Check to see if all of the elements are ConstantFP or ConstantInt and if
984 // the element type is compatible with ConstantDataVector. If so, use it.
Justin Bogner909e1c02015-12-01 20:20:49 +0000985 if (ConstantDataSequential::isElementTypeCompatible(C->getType()))
986 return getSequenceIfElementsMatch<ConstantDataArray>(C, V);
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000987
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000988 // Otherwise, we really do want to create a ConstantArray.
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +0000989 return nullptr;
Owen Andersonc2c79322009-07-28 18:32:17 +0000990}
991
Chris Lattnercc19efa2011-06-20 04:01:31 +0000992StructType *ConstantStruct::getTypeForElements(LLVMContext &Context,
993 ArrayRef<Constant*> V,
994 bool Packed) {
Bill Wendling3ae7dd32012-02-07 01:27:51 +0000995 unsigned VecSize = V.size();
996 SmallVector<Type*, 16> EltTypes(VecSize);
997 for (unsigned i = 0; i != VecSize; ++i)
998 EltTypes[i] = V[i]->getType();
Galina Kistanovafc259902012-07-13 01:25:27 +0000999
Chris Lattnercc19efa2011-06-20 04:01:31 +00001000 return StructType::get(Context, EltTypes, Packed);
1001}
1002
1003
1004StructType *ConstantStruct::getTypeForElements(ArrayRef<Constant*> V,
1005 bool Packed) {
1006 assert(!V.empty() &&
1007 "ConstantStruct::getTypeForElements cannot be called on empty list");
1008 return getTypeForElements(V[0]->getContext(), V, Packed);
1009}
1010
Jay Foad89d9b812011-07-25 10:14:44 +00001011ConstantStruct::ConstantStruct(StructType *T, ArrayRef<Constant *> V)
Duncan P. N. Exon Smith1de3c7e2016-04-05 21:10:45 +00001012 : ConstantAggregate(T, ConstantStructVal, V) {
1013 assert((T->isOpaque() || V.size() == T->getNumElements()) &&
1014 "Invalid initializer for constant struct");
Chris Lattner2f7c9632001-06-06 20:29:01 +00001015}
1016
Owen Anderson45308b52009-07-27 22:29:26 +00001017// ConstantStruct accessors.
Chris Lattner229907c2011-07-18 04:54:35 +00001018Constant *ConstantStruct::get(StructType *ST, ArrayRef<Constant*> V) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001019 assert((ST->isOpaque() || ST->getNumElements() == V.size()) &&
1020 "Incorrect # elements specified to ConstantStruct::get");
Chris Lattnerf14a67f2012-01-26 02:31:22 +00001021
1022 // Create a ConstantAggregateZero value if all elements are zeros.
1023 bool isZero = true;
1024 bool isUndef = false;
Bjorn Petterssonaa025802018-07-03 12:39:52 +00001025
Chris Lattnerf14a67f2012-01-26 02:31:22 +00001026 if (!V.empty()) {
1027 isUndef = isa<UndefValue>(V[0]);
1028 isZero = V[0]->isNullValue();
1029 if (isUndef || isZero) {
1030 for (unsigned i = 0, e = V.size(); i != e; ++i) {
1031 if (!V[i]->isNullValue())
1032 isZero = false;
1033 if (!isa<UndefValue>(V[i]))
1034 isUndef = false;
1035 }
1036 }
Galina Kistanovafc259902012-07-13 01:25:27 +00001037 }
Chris Lattnerf14a67f2012-01-26 02:31:22 +00001038 if (isZero)
1039 return ConstantAggregateZero::get(ST);
1040 if (isUndef)
1041 return UndefValue::get(ST);
Galina Kistanovafc259902012-07-13 01:25:27 +00001042
Chris Lattnerf14a67f2012-01-26 02:31:22 +00001043 return ST->getContext().pImpl->StructConstants.getOrCreate(ST, V);
Owen Anderson45308b52009-07-27 22:29:26 +00001044}
1045
Jay Foad89d9b812011-07-25 10:14:44 +00001046ConstantVector::ConstantVector(VectorType *T, ArrayRef<Constant *> V)
Duncan P. N. Exon Smith1de3c7e2016-04-05 21:10:45 +00001047 : ConstantAggregate(T, ConstantVectorVal, V) {
Duncan P. N. Exon Smithdb63bda2016-04-05 20:53:47 +00001048 assert(V.size() == T->getNumElements() &&
Duncan P. N. Exon Smith1de3c7e2016-04-05 21:10:45 +00001049 "Invalid initializer for constant vector");
Brian Gaeke02209042004-08-20 06:00:58 +00001050}
1051
Owen Anderson4aa32952009-07-28 21:19:26 +00001052// ConstantVector accessors.
Jay Foadb8a8bed32011-06-22 09:10:19 +00001053Constant *ConstantVector::get(ArrayRef<Constant*> V) {
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00001054 if (Constant *C = getImpl(V))
1055 return C;
1056 VectorType *Ty = VectorType::get(V.front()->getType(), V.size());
1057 return Ty->getContext().pImpl->VectorConstants.getOrCreate(Ty, V);
1058}
Justin Bogner909e1c02015-12-01 20:20:49 +00001059
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00001060Constant *ConstantVector::getImpl(ArrayRef<Constant*> V) {
Jay Foad9f32cfd2011-01-27 14:44:55 +00001061 assert(!V.empty() && "Vectors can't be empty");
Chris Lattner229907c2011-07-18 04:54:35 +00001062 VectorType *T = VectorType::get(V.front()->getType(), V.size());
Jay Foad9f32cfd2011-01-27 14:44:55 +00001063
Chris Lattner69229312011-02-15 00:14:00 +00001064 // If this is an all-undef or all-zero vector, return a
Owen Anderson4aa32952009-07-28 21:19:26 +00001065 // ConstantAggregateZero or UndefValue.
1066 Constant *C = V[0];
1067 bool isZero = C->isNullValue();
1068 bool isUndef = isa<UndefValue>(C);
1069
1070 if (isZero || isUndef) {
1071 for (unsigned i = 1, e = V.size(); i != e; ++i)
1072 if (V[i] != C) {
1073 isZero = isUndef = false;
1074 break;
1075 }
1076 }
Galina Kistanovafc259902012-07-13 01:25:27 +00001077
Owen Anderson4aa32952009-07-28 21:19:26 +00001078 if (isZero)
Owen Andersonb292b8c2009-07-30 23:03:37 +00001079 return ConstantAggregateZero::get(T);
Owen Anderson4aa32952009-07-28 21:19:26 +00001080 if (isUndef)
Owen Andersonb292b8c2009-07-30 23:03:37 +00001081 return UndefValue::get(T);
Galina Kistanovafc259902012-07-13 01:25:27 +00001082
Chris Lattner978fe0c2012-01-30 06:21:21 +00001083 // Check to see if all of the elements are ConstantFP or ConstantInt and if
1084 // the element type is compatible with ConstantDataVector. If so, use it.
Justin Bogner909e1c02015-12-01 20:20:49 +00001085 if (ConstantDataSequential::isElementTypeCompatible(C->getType()))
1086 return getSequenceIfElementsMatch<ConstantDataVector>(C, V);
Galina Kistanovafc259902012-07-13 01:25:27 +00001087
Chris Lattner978fe0c2012-01-30 06:21:21 +00001088 // Otherwise, the element type isn't compatible with ConstantDataVector, or
Craig Topperdf907262017-04-11 06:41:55 +00001089 // the operand list contains a ConstantExpr or something else strange.
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00001090 return nullptr;
Owen Anderson4aa32952009-07-28 21:19:26 +00001091}
1092
Chris Lattnere9eed292012-01-25 05:19:54 +00001093Constant *ConstantVector::getSplat(unsigned NumElts, Constant *V) {
Chris Lattner978fe0c2012-01-30 06:21:21 +00001094 // If this splat is compatible with ConstantDataVector, use it instead of
1095 // ConstantVector.
1096 if ((isa<ConstantFP>(V) || isa<ConstantInt>(V)) &&
1097 ConstantDataSequential::isElementTypeCompatible(V->getType()))
1098 return ConstantDataVector::getSplat(NumElts, V);
Galina Kistanovafc259902012-07-13 01:25:27 +00001099
Chris Lattnere9eed292012-01-25 05:19:54 +00001100 SmallVector<Constant*, 32> Elts(NumElts, V);
1101 return get(Elts);
1102}
1103
David Majnemerf0f224d2015-11-11 21:57:16 +00001104ConstantTokenNone *ConstantTokenNone::get(LLVMContext &Context) {
1105 LLVMContextImpl *pImpl = Context.pImpl;
1106 if (!pImpl->TheNoneToken)
David Majnemer2dd41c52015-11-16 20:55:57 +00001107 pImpl->TheNoneToken.reset(new ConstantTokenNone(Context));
1108 return pImpl->TheNoneToken.get();
David Majnemerf0f224d2015-11-11 21:57:16 +00001109}
1110
1111/// Remove the constant from the constant table.
1112void ConstantTokenNone::destroyConstantImpl() {
1113 llvm_unreachable("You can't ConstantTokenNone->destroyConstantImpl()!");
1114}
Chris Lattnere9eed292012-01-25 05:19:54 +00001115
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001116// Utility function for determining if a ConstantExpr is a CastOp or not. This
1117// can't be inline because we don't want to #include Instruction.h into
1118// Constant.h
1119bool ConstantExpr::isCast() const {
1120 return Instruction::isCast(getOpcode());
1121}
1122
Reid Spenceree3c9912006-12-04 05:19:50 +00001123bool ConstantExpr::isCompare() const {
Nick Lewyckya21d3da2009-07-08 03:04:38 +00001124 return getOpcode() == Instruction::ICmp || getOpcode() == Instruction::FCmp;
Reid Spenceree3c9912006-12-04 05:19:50 +00001125}
1126
Dan Gohman7190d482009-09-10 23:37:55 +00001127bool ConstantExpr::isGEPWithNoNotionalOverIndexing() const {
1128 if (getOpcode() != Instruction::GetElementPtr) return false;
1129
1130 gep_type_iterator GEPI = gep_type_begin(this), E = gep_type_end(this);
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001131 User::const_op_iterator OI = std::next(this->op_begin());
Dan Gohman7190d482009-09-10 23:37:55 +00001132
Sanjay Patel81ed3492016-12-11 20:07:02 +00001133 // The remaining indices may be compile-time known integers within the bounds
1134 // of the corresponding notional static array types.
Dan Gohman7190d482009-09-10 23:37:55 +00001135 for (; GEPI != E; ++GEPI, ++OI) {
Sanjay Patel81ed3492016-12-11 20:07:02 +00001136 if (isa<UndefValue>(*OI))
1137 continue;
1138 auto *CI = dyn_cast<ConstantInt>(*OI);
1139 if (!CI || (GEPI.isBoundedSequential() &&
1140 (CI->getValue().getActiveBits() > 64 ||
1141 CI->getZExtValue() >= GEPI.getSequentialNumElements())))
Peter Collingbourneab85225b2016-12-02 02:24:42 +00001142 return false;
Dan Gohman7190d482009-09-10 23:37:55 +00001143 }
1144
1145 // All the indices checked out.
1146 return true;
1147}
1148
Dan Gohman1ecaf452008-05-31 00:58:22 +00001149bool ConstantExpr::hasIndices() const {
1150 return getOpcode() == Instruction::ExtractValue ||
1151 getOpcode() == Instruction::InsertValue;
1152}
1153
Jay Foad0091fe82011-04-13 15:22:40 +00001154ArrayRef<unsigned> ConstantExpr::getIndices() const {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001155 if (const ExtractValueConstantExpr *EVCE =
1156 dyn_cast<ExtractValueConstantExpr>(this))
1157 return EVCE->Indices;
Dan Gohmana469bdb2008-06-23 16:39:44 +00001158
1159 return cast<InsertValueConstantExpr>(this)->Indices;
Dan Gohman1ecaf452008-05-31 00:58:22 +00001160}
1161
Reid Spencer10fbf0e2006-12-03 05:48:19 +00001162unsigned ConstantExpr::getPredicate() const {
Craig Toppercc03b492015-12-15 06:11:36 +00001163 return cast<CompareConstantExpr>(this)->predicate;
Reid Spencer10fbf0e2006-12-03 05:48:19 +00001164}
Chris Lattner60e0dd72001-10-03 06:12:09 +00001165
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001166Constant *
1167ConstantExpr::getWithOperandReplaced(unsigned OpNo, Constant *Op) const {
Chris Lattner7c1018a2006-07-14 19:37:40 +00001168 assert(Op->getType() == getOperand(OpNo)->getType() &&
1169 "Replacing operand with value of different type!");
Chris Lattner227816342006-07-14 22:20:01 +00001170 if (getOperand(OpNo) == Op)
1171 return const_cast<ConstantExpr*>(this);
Chris Lattner37e38352012-01-26 20:37:11 +00001172
1173 SmallVector<Constant*, 8> NewOps;
1174 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
1175 NewOps.push_back(i == OpNo ? Op : getOperand(i));
Galina Kistanovafc259902012-07-13 01:25:27 +00001176
Chris Lattner37e38352012-01-26 20:37:11 +00001177 return getWithOperands(NewOps);
Chris Lattner227816342006-07-14 22:20:01 +00001178}
1179
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001180Constant *ConstantExpr::getWithOperands(ArrayRef<Constant *> Ops, Type *Ty,
David Blaikie88208842015-08-21 20:16:51 +00001181 bool OnlyIfReduced, Type *SrcTy) const {
Jay Foad5c984e562011-04-13 13:46:01 +00001182 assert(Ops.size() == getNumOperands() && "Operand count mismatch!");
Galina Kistanovafc259902012-07-13 01:25:27 +00001183
Benjamin Kramer8008e9f2015-03-02 11:57:04 +00001184 // If no operands changed return self.
1185 if (Ty == getType() && std::equal(Ops.begin(), Ops.end(), op_begin()))
Chris Lattner227816342006-07-14 22:20:01 +00001186 return const_cast<ConstantExpr*>(this);
1187
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001188 Type *OnlyIfReducedTy = OnlyIfReduced ? Ty : nullptr;
Chris Lattner227816342006-07-14 22:20:01 +00001189 switch (getOpcode()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001190 case Instruction::Trunc:
1191 case Instruction::ZExt:
1192 case Instruction::SExt:
1193 case Instruction::FPTrunc:
1194 case Instruction::FPExt:
1195 case Instruction::UIToFP:
1196 case Instruction::SIToFP:
1197 case Instruction::FPToUI:
1198 case Instruction::FPToSI:
1199 case Instruction::PtrToInt:
1200 case Instruction::IntToPtr:
1201 case Instruction::BitCast:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001202 case Instruction::AddrSpaceCast:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001203 return ConstantExpr::getCast(getOpcode(), Ops[0], Ty, OnlyIfReduced);
Chris Lattner227816342006-07-14 22:20:01 +00001204 case Instruction::Select:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001205 return ConstantExpr::getSelect(Ops[0], Ops[1], Ops[2], OnlyIfReducedTy);
Chris Lattner227816342006-07-14 22:20:01 +00001206 case Instruction::InsertElement:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001207 return ConstantExpr::getInsertElement(Ops[0], Ops[1], Ops[2],
1208 OnlyIfReducedTy);
Chris Lattner227816342006-07-14 22:20:01 +00001209 case Instruction::ExtractElement:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001210 return ConstantExpr::getExtractElement(Ops[0], Ops[1], OnlyIfReducedTy);
Chris Lattner37e38352012-01-26 20:37:11 +00001211 case Instruction::InsertValue:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001212 return ConstantExpr::getInsertValue(Ops[0], Ops[1], getIndices(),
1213 OnlyIfReducedTy);
Chris Lattner37e38352012-01-26 20:37:11 +00001214 case Instruction::ExtractValue:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001215 return ConstantExpr::getExtractValue(Ops[0], getIndices(), OnlyIfReducedTy);
Chris Lattner227816342006-07-14 22:20:01 +00001216 case Instruction::ShuffleVector:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001217 return ConstantExpr::getShuffleVector(Ops[0], Ops[1], Ops[2],
1218 OnlyIfReducedTy);
David Blaikie88208842015-08-21 20:16:51 +00001219 case Instruction::GetElementPtr: {
1220 auto *GEPO = cast<GEPOperator>(this);
1221 assert(SrcTy || (Ops[0]->getType() == getOperand(0)->getType()));
1222 return ConstantExpr::getGetElementPtr(
1223 SrcTy ? SrcTy : GEPO->getSourceElementType(), Ops[0], Ops.slice(1),
Peter Collingbourned93620b2016-11-10 22:34:55 +00001224 GEPO->isInBounds(), GEPO->getInRangeIndex(), OnlyIfReducedTy);
David Blaikie88208842015-08-21 20:16:51 +00001225 }
Reid Spencer266e42b2006-12-23 06:05:41 +00001226 case Instruction::ICmp:
1227 case Instruction::FCmp:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001228 return ConstantExpr::getCompare(getPredicate(), Ops[0], Ops[1],
1229 OnlyIfReducedTy);
Chris Lattner227816342006-07-14 22:20:01 +00001230 default:
1231 assert(getNumOperands() == 2 && "Must be binary operator?");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001232 return ConstantExpr::get(getOpcode(), Ops[0], Ops[1], SubclassOptionalData,
1233 OnlyIfReducedTy);
Chris Lattner7c1018a2006-07-14 19:37:40 +00001234 }
1235}
1236
Chris Lattner2f7c9632001-06-06 20:29:01 +00001237
1238//===----------------------------------------------------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +00001239// isValueValidForType implementations
1240
Chris Lattner229907c2011-07-18 04:54:35 +00001241bool ConstantInt::isValueValidForType(Type *Ty, uint64_t Val) {
Chris Lattner8326bd82012-01-26 00:42:34 +00001242 unsigned NumBits = Ty->getIntegerBitWidth(); // assert okay
1243 if (Ty->isIntegerTy(1))
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001244 return Val == 0 || Val == 1;
Craig Topper50b1e512017-06-07 00:58:05 +00001245 return isUIntN(NumBits, Val);
Reid Spencere7334722006-12-19 01:28:19 +00001246}
1247
Chris Lattner229907c2011-07-18 04:54:35 +00001248bool ConstantInt::isValueValidForType(Type *Ty, int64_t Val) {
Chris Lattner8326bd82012-01-26 00:42:34 +00001249 unsigned NumBits = Ty->getIntegerBitWidth();
1250 if (Ty->isIntegerTy(1))
Reid Spencera94d3942007-01-19 21:13:56 +00001251 return Val == 0 || Val == 1 || Val == -1;
Craig Topper50b1e512017-06-07 00:58:05 +00001252 return isIntN(NumBits, Val);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001253}
1254
Chris Lattner229907c2011-07-18 04:54:35 +00001255bool ConstantFP::isValueValidForType(Type *Ty, const APFloat& Val) {
Dale Johannesend246b2c2007-08-30 00:23:21 +00001256 // convert modifies in place, so make a copy.
1257 APFloat Val2 = APFloat(Val);
Dale Johannesen4f0bd682008-10-09 23:00:39 +00001258 bool losesInfo;
Chris Lattner6b727592004-06-17 18:19:28 +00001259 switch (Ty->getTypeID()) {
Chris Lattner2f7c9632001-06-06 20:29:01 +00001260 default:
1261 return false; // These can't be represented as floating point!
1262
Dale Johannesend246b2c2007-08-30 00:23:21 +00001263 // FIXME rounding mode needs to be more flexible
Dan Gohman518cda42011-12-17 00:04:22 +00001264 case Type::HalfTyID: {
Stephan Bergmann17c7f702016-12-14 11:57:17 +00001265 if (&Val2.getSemantics() == &APFloat::IEEEhalf())
Dan Gohman518cda42011-12-17 00:04:22 +00001266 return true;
Stephan Bergmann17c7f702016-12-14 11:57:17 +00001267 Val2.convert(APFloat::IEEEhalf(), APFloat::rmNearestTiesToEven, &losesInfo);
Dan Gohman518cda42011-12-17 00:04:22 +00001268 return !losesInfo;
1269 }
Dale Johannesen4f0bd682008-10-09 23:00:39 +00001270 case Type::FloatTyID: {
Stephan Bergmann17c7f702016-12-14 11:57:17 +00001271 if (&Val2.getSemantics() == &APFloat::IEEEsingle())
Dale Johannesen4f0bd682008-10-09 23:00:39 +00001272 return true;
Stephan Bergmann17c7f702016-12-14 11:57:17 +00001273 Val2.convert(APFloat::IEEEsingle(), APFloat::rmNearestTiesToEven, &losesInfo);
Dale Johannesen4f0bd682008-10-09 23:00:39 +00001274 return !losesInfo;
1275 }
1276 case Type::DoubleTyID: {
Stephan Bergmann17c7f702016-12-14 11:57:17 +00001277 if (&Val2.getSemantics() == &APFloat::IEEEhalf() ||
1278 &Val2.getSemantics() == &APFloat::IEEEsingle() ||
1279 &Val2.getSemantics() == &APFloat::IEEEdouble())
Dale Johannesen4f0bd682008-10-09 23:00:39 +00001280 return true;
Stephan Bergmann17c7f702016-12-14 11:57:17 +00001281 Val2.convert(APFloat::IEEEdouble(), APFloat::rmNearestTiesToEven, &losesInfo);
Dale Johannesen4f0bd682008-10-09 23:00:39 +00001282 return !losesInfo;
1283 }
Dale Johannesenbdad8092007-08-09 22:51:36 +00001284 case Type::X86_FP80TyID:
Stephan Bergmann17c7f702016-12-14 11:57:17 +00001285 return &Val2.getSemantics() == &APFloat::IEEEhalf() ||
Bjorn Petterssonaa025802018-07-03 12:39:52 +00001286 &Val2.getSemantics() == &APFloat::IEEEsingle() ||
Stephan Bergmann17c7f702016-12-14 11:57:17 +00001287 &Val2.getSemantics() == &APFloat::IEEEdouble() ||
1288 &Val2.getSemantics() == &APFloat::x87DoubleExtended();
Dale Johannesenbdad8092007-08-09 22:51:36 +00001289 case Type::FP128TyID:
Stephan Bergmann17c7f702016-12-14 11:57:17 +00001290 return &Val2.getSemantics() == &APFloat::IEEEhalf() ||
Bjorn Petterssonaa025802018-07-03 12:39:52 +00001291 &Val2.getSemantics() == &APFloat::IEEEsingle() ||
Stephan Bergmann17c7f702016-12-14 11:57:17 +00001292 &Val2.getSemantics() == &APFloat::IEEEdouble() ||
1293 &Val2.getSemantics() == &APFloat::IEEEquad();
Dale Johannesen007aa372007-10-11 18:07:22 +00001294 case Type::PPC_FP128TyID:
Stephan Bergmann17c7f702016-12-14 11:57:17 +00001295 return &Val2.getSemantics() == &APFloat::IEEEhalf() ||
Bjorn Petterssonaa025802018-07-03 12:39:52 +00001296 &Val2.getSemantics() == &APFloat::IEEEsingle() ||
Stephan Bergmann17c7f702016-12-14 11:57:17 +00001297 &Val2.getSemantics() == &APFloat::IEEEdouble() ||
1298 &Val2.getSemantics() == &APFloat::PPCDoubleDouble();
Chris Lattner2f7c9632001-06-06 20:29:01 +00001299 }
Chris Lattneraa2372562006-05-24 17:04:05 +00001300}
Chris Lattner9655e542001-07-20 19:16:02 +00001301
Chris Lattner030af792012-01-24 05:42:11 +00001302
Chris Lattner49d855c2001-09-07 16:46:31 +00001303//===----------------------------------------------------------------------===//
Chris Lattner49d855c2001-09-07 16:46:31 +00001304// Factory Function Implementation
1305
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001306ConstantAggregateZero *ConstantAggregateZero::get(Type *Ty) {
Chris Lattner13ee7952010-08-28 04:09:24 +00001307 assert((Ty->isStructTy() || Ty->isArrayTy() || Ty->isVectorTy()) &&
Owen Andersonb292b8c2009-07-30 23:03:37 +00001308 "Cannot create an aggregate zero of non-aggregate type!");
David Blaikie899b85a2014-11-25 02:13:54 +00001309
Justin Lebar611c5c22016-10-10 16:26:13 +00001310 std::unique_ptr<ConstantAggregateZero> &Entry =
1311 Ty->getContext().pImpl->CAZConstants[Ty];
1312 if (!Entry)
1313 Entry.reset(new ConstantAggregateZero(Ty));
1314
1315 return Entry.get();
Owen Andersonb292b8c2009-07-30 23:03:37 +00001316}
1317
Sanjay Patel1d0ac7c2016-04-29 22:03:27 +00001318/// Remove the constant from the constant table.
Pete Cooper86dd4cf2015-06-23 21:55:11 +00001319void ConstantAggregateZero::destroyConstantImpl() {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001320 getContext().pImpl->CAZConstants.erase(getType());
Chris Lattner9fba3da2004-02-15 05:53:04 +00001321}
1322
Sanjay Patel1d0ac7c2016-04-29 22:03:27 +00001323/// Remove the constant from the constant table.
Pete Cooper86dd4cf2015-06-23 21:55:11 +00001324void ConstantArray::destroyConstantImpl() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001325 getType()->getContext().pImpl->ArrayConstants.remove(this);
Chris Lattner98fa07b2003-05-23 20:03:32 +00001326}
1327
Chris Lattner81fabb02002-08-26 17:53:56 +00001328
Chris Lattner3462ae32001-12-03 22:26:30 +00001329//---- ConstantStruct::get() implementation...
Chris Lattner49d855c2001-09-07 16:46:31 +00001330//
Chris Lattnerb50d1352003-10-05 00:17:43 +00001331
Sanjay Patel1d0ac7c2016-04-29 22:03:27 +00001332/// Remove the constant from the constant table.
Pete Cooper86dd4cf2015-06-23 21:55:11 +00001333void ConstantStruct::destroyConstantImpl() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001334 getType()->getContext().pImpl->StructConstants.remove(this);
Chris Lattnerd7a73302001-10-13 06:57:33 +00001335}
Chris Lattner883ad0b2001-10-03 15:39:36 +00001336
Sanjay Patel1d0ac7c2016-04-29 22:03:27 +00001337/// Remove the constant from the constant table.
Pete Cooper86dd4cf2015-06-23 21:55:11 +00001338void ConstantVector::destroyConstantImpl() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001339 getType()->getContext().pImpl->VectorConstants.remove(this);
Brian Gaeke02209042004-08-20 06:00:58 +00001340}
1341
Duncan Sandse6beec62012-11-13 12:59:33 +00001342Constant *Constant::getSplatValue() const {
1343 assert(this->getType()->isVectorTy() && "Only valid for vectors!");
1344 if (isa<ConstantAggregateZero>(this))
1345 return getNullValue(this->getType()->getVectorElementType());
1346 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this))
1347 return CV->getSplatValue();
1348 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
1349 return CV->getSplatValue();
Craig Topperc6207612014-04-09 06:08:46 +00001350 return nullptr;
Duncan Sandse6beec62012-11-13 12:59:33 +00001351}
1352
Duncan Sandscf0ff032011-02-01 08:39:12 +00001353Constant *ConstantVector::getSplatValue() const {
Dan Gohman07159202007-10-17 17:51:30 +00001354 // Check out first element.
1355 Constant *Elt = getOperand(0);
1356 // Then make sure all remaining elements point to the same value.
1357 for (unsigned I = 1, E = getNumOperands(); I < E; ++I)
Chris Lattnerd04e32d2011-07-17 06:01:30 +00001358 if (getOperand(I) != Elt)
Craig Topperc6207612014-04-09 06:08:46 +00001359 return nullptr;
Dan Gohman07159202007-10-17 17:51:30 +00001360 return Elt;
1361}
1362
Duncan Sandse6beec62012-11-13 12:59:33 +00001363const APInt &Constant::getUniqueInteger() const {
1364 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
1365 return CI->getValue();
1366 assert(this->getSplatValue() && "Doesn't contain a unique integer!");
1367 const Constant *C = this->getAggregateElement(0U);
1368 assert(C && isa<ConstantInt>(C) && "Not a vector of numbers!");
1369 return cast<ConstantInt>(C)->getValue();
1370}
1371
Chris Lattner31b132c2009-10-28 00:01:44 +00001372//---- ConstantPointerNull::get() implementation.
Chris Lattnerd7a73302001-10-13 06:57:33 +00001373//
Chris Lattner98fa07b2003-05-23 20:03:32 +00001374
Chris Lattner229907c2011-07-18 04:54:35 +00001375ConstantPointerNull *ConstantPointerNull::get(PointerType *Ty) {
Justin Lebar611c5c22016-10-10 16:26:13 +00001376 std::unique_ptr<ConstantPointerNull> &Entry =
1377 Ty->getContext().pImpl->CPNConstants[Ty];
Craig Topperc6207612014-04-09 06:08:46 +00001378 if (!Entry)
Justin Lebar611c5c22016-10-10 16:26:13 +00001379 Entry.reset(new ConstantPointerNull(Ty));
Galina Kistanovafc259902012-07-13 01:25:27 +00001380
Justin Lebar611c5c22016-10-10 16:26:13 +00001381 return Entry.get();
Chris Lattner883ad0b2001-10-03 15:39:36 +00001382}
1383
Sanjay Patel1d0ac7c2016-04-29 22:03:27 +00001384/// Remove the constant from the constant table.
Pete Cooper86dd4cf2015-06-23 21:55:11 +00001385void ConstantPointerNull::destroyConstantImpl() {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001386 getContext().pImpl->CPNConstants.erase(getType());
Chris Lattner0c6e0b92002-08-18 00:40:04 +00001387}
1388
Chris Lattner229907c2011-07-18 04:54:35 +00001389UndefValue *UndefValue::get(Type *Ty) {
Justin Lebar611c5c22016-10-10 16:26:13 +00001390 std::unique_ptr<UndefValue> &Entry = Ty->getContext().pImpl->UVConstants[Ty];
Craig Topperc6207612014-04-09 06:08:46 +00001391 if (!Entry)
Justin Lebar611c5c22016-10-10 16:26:13 +00001392 Entry.reset(new UndefValue(Ty));
Galina Kistanovafc259902012-07-13 01:25:27 +00001393
Justin Lebar611c5c22016-10-10 16:26:13 +00001394 return Entry.get();
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001395}
1396
Sanjay Patel1d0ac7c2016-04-29 22:03:27 +00001397/// Remove the constant from the constant table.
Pete Cooper86dd4cf2015-06-23 21:55:11 +00001398void UndefValue::destroyConstantImpl() {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001399 // Free the constant and any dangling references to it.
1400 getContext().pImpl->UVConstants.erase(getType());
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001401}
1402
Chris Lattner31b132c2009-10-28 00:01:44 +00001403BlockAddress *BlockAddress::get(BasicBlock *BB) {
Craig Topper2617dcc2014-04-15 06:32:26 +00001404 assert(BB->getParent() && "Block must have a parent");
Chris Lattner31b132c2009-10-28 00:01:44 +00001405 return get(BB->getParent(), BB);
1406}
1407
1408BlockAddress *BlockAddress::get(Function *F, BasicBlock *BB) {
1409 BlockAddress *&BA =
1410 F->getContext().pImpl->BlockAddresses[std::make_pair(F, BB)];
Craig Topperc6207612014-04-09 06:08:46 +00001411 if (!BA)
Chris Lattner31b132c2009-10-28 00:01:44 +00001412 BA = new BlockAddress(F, BB);
Galina Kistanovafc259902012-07-13 01:25:27 +00001413
Chris Lattner31b132c2009-10-28 00:01:44 +00001414 assert(BA->getFunction() == F && "Basic block moved between functions");
1415 return BA;
1416}
1417
1418BlockAddress::BlockAddress(Function *F, BasicBlock *BB)
1419: Constant(Type::getInt8PtrTy(F->getContext()), Value::BlockAddressVal,
1420 &Op<0>(), 2) {
Chris Lattnerc559a9f2009-11-01 03:03:03 +00001421 setOperand(0, F);
1422 setOperand(1, BB);
Chris Lattneraa99c942009-11-01 01:27:45 +00001423 BB->AdjustBlockAddressRefCount(1);
Chris Lattner31b132c2009-10-28 00:01:44 +00001424}
1425
Chandler Carruth6a936922014-01-19 02:13:50 +00001426BlockAddress *BlockAddress::lookup(const BasicBlock *BB) {
1427 if (!BB->hasAddressTaken())
Craig Topperc6207612014-04-09 06:08:46 +00001428 return nullptr;
Chandler Carruth6a936922014-01-19 02:13:50 +00001429
1430 const Function *F = BB->getParent();
Craig Topper2617dcc2014-04-15 06:32:26 +00001431 assert(F && "Block must have a parent");
Chandler Carruth6a936922014-01-19 02:13:50 +00001432 BlockAddress *BA =
1433 F->getContext().pImpl->BlockAddresses.lookup(std::make_pair(F, BB));
1434 assert(BA && "Refcount and block address map disagree!");
1435 return BA;
1436}
Chris Lattner31b132c2009-10-28 00:01:44 +00001437
Sanjay Patel1d0ac7c2016-04-29 22:03:27 +00001438/// Remove the constant from the constant table.
Pete Cooper86dd4cf2015-06-23 21:55:11 +00001439void BlockAddress::destroyConstantImpl() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001440 getFunction()->getType()->getContext().pImpl
Chris Lattner31b132c2009-10-28 00:01:44 +00001441 ->BlockAddresses.erase(std::make_pair(getFunction(), getBasicBlock()));
Chris Lattneraa99c942009-11-01 01:27:45 +00001442 getBasicBlock()->AdjustBlockAddressRefCount(-1);
Chris Lattner31b132c2009-10-28 00:01:44 +00001443}
1444
Mehdi Amini8914d292016-02-10 22:47:15 +00001445Value *BlockAddress::handleOperandChangeImpl(Value *From, Value *To) {
Chris Lattner31b132c2009-10-28 00:01:44 +00001446 // This could be replacing either the Basic Block or the Function. In either
1447 // case, we have to remove the map entry.
1448 Function *NewF = getFunction();
1449 BasicBlock *NewBB = getBasicBlock();
Galina Kistanovafc259902012-07-13 01:25:27 +00001450
Mehdi Amini8914d292016-02-10 22:47:15 +00001451 if (From == NewF)
Derek Schuffec9dc012013-06-13 19:51:17 +00001452 NewF = cast<Function>(To->stripPointerCasts());
Mehdi Amini8914d292016-02-10 22:47:15 +00001453 else {
1454 assert(From == NewBB && "From does not match any operand");
Chris Lattner31b132c2009-10-28 00:01:44 +00001455 NewBB = cast<BasicBlock>(To);
Mehdi Amini8914d292016-02-10 22:47:15 +00001456 }
Galina Kistanovafc259902012-07-13 01:25:27 +00001457
Chris Lattner31b132c2009-10-28 00:01:44 +00001458 // See if the 'new' entry already exists, if not, just update this in place
1459 // and return early.
1460 BlockAddress *&NewBA =
1461 getContext().pImpl->BlockAddresses[std::make_pair(NewF, NewBB)];
Pete Cooper5815b1f2015-06-24 18:55:24 +00001462 if (NewBA)
1463 return NewBA;
Chris Lattner31b132c2009-10-28 00:01:44 +00001464
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00001465 getBasicBlock()->AdjustBlockAddressRefCount(-1);
Galina Kistanovafc259902012-07-13 01:25:27 +00001466
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00001467 // Remove the old entry, this can't cause the map to rehash (just a
1468 // tombstone will get added).
1469 getContext().pImpl->BlockAddresses.erase(std::make_pair(getFunction(),
1470 getBasicBlock()));
1471 NewBA = this;
1472 setOperand(0, NewF);
1473 setOperand(1, NewBB);
1474 getBasicBlock()->AdjustBlockAddressRefCount(1);
Pete Cooper5815b1f2015-06-24 18:55:24 +00001475
1476 // If we just want to keep the existing value, then return null.
1477 // Callers know that this means we shouldn't delete this value.
1478 return nullptr;
Chris Lattner31b132c2009-10-28 00:01:44 +00001479}
1480
1481//---- ConstantExpr::get() implementations.
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001482//
Reid Spencer8d9336d2006-12-31 05:26:44 +00001483
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001484/// This is a utility function to handle folding of casts and lookup of the
Duncan Sands7d6c8ae2008-03-30 19:38:55 +00001485/// cast in the ExprConstants map. It is used by the various get* methods below.
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001486static Constant *getFoldedCast(Instruction::CastOps opc, Constant *C, Type *Ty,
1487 bool OnlyIfReduced = false) {
Chris Lattner815ae2b2003-10-07 22:19:19 +00001488 assert(Ty->isFirstClassType() && "Cannot cast to an aggregate type!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001489 // Fold a few common cases
Chris Lattnerf5edeeb2010-02-01 20:48:08 +00001490 if (Constant *FC = ConstantFoldCastInstruction(opc, C, Ty))
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001491 return FC;
Chris Lattneracdbe712003-04-17 19:24:48 +00001492
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001493 if (OnlyIfReduced)
1494 return nullptr;
1495
Owen Anderson1584a292009-08-04 20:25:11 +00001496 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
1497
Nadav Rotem88330432013-03-07 01:30:40 +00001498 // Look up the constant in the table first to ensure uniqueness.
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00001499 ConstantExprKeyType Key(opc, C);
Galina Kistanovafc259902012-07-13 01:25:27 +00001500
Owen Anderson1584a292009-08-04 20:25:11 +00001501 return pImpl->ExprConstants.getOrCreate(Ty, Key);
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001502}
Galina Kistanovafc259902012-07-13 01:25:27 +00001503
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001504Constant *ConstantExpr::getCast(unsigned oc, Constant *C, Type *Ty,
1505 bool OnlyIfReduced) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001506 Instruction::CastOps opc = Instruction::CastOps(oc);
1507 assert(Instruction::isCast(opc) && "opcode out of range");
1508 assert(C && Ty && "Null arguments to getCast");
Chris Lattner37bc78a2010-01-26 21:51:43 +00001509 assert(CastInst::castIsValid(opc, C, Ty) && "Invalid constantexpr cast!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001510
1511 switch (opc) {
Chris Lattner37bc78a2010-01-26 21:51:43 +00001512 default:
1513 llvm_unreachable("Invalid cast opcode");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001514 case Instruction::Trunc:
1515 return getTrunc(C, Ty, OnlyIfReduced);
1516 case Instruction::ZExt:
1517 return getZExt(C, Ty, OnlyIfReduced);
1518 case Instruction::SExt:
1519 return getSExt(C, Ty, OnlyIfReduced);
1520 case Instruction::FPTrunc:
1521 return getFPTrunc(C, Ty, OnlyIfReduced);
1522 case Instruction::FPExt:
1523 return getFPExtend(C, Ty, OnlyIfReduced);
1524 case Instruction::UIToFP:
1525 return getUIToFP(C, Ty, OnlyIfReduced);
1526 case Instruction::SIToFP:
1527 return getSIToFP(C, Ty, OnlyIfReduced);
1528 case Instruction::FPToUI:
1529 return getFPToUI(C, Ty, OnlyIfReduced);
1530 case Instruction::FPToSI:
1531 return getFPToSI(C, Ty, OnlyIfReduced);
1532 case Instruction::PtrToInt:
1533 return getPtrToInt(C, Ty, OnlyIfReduced);
1534 case Instruction::IntToPtr:
1535 return getIntToPtr(C, Ty, OnlyIfReduced);
1536 case Instruction::BitCast:
1537 return getBitCast(C, Ty, OnlyIfReduced);
1538 case Instruction::AddrSpaceCast:
1539 return getAddrSpaceCast(C, Ty, OnlyIfReduced);
Chris Lattner1ece6f82005-01-01 15:59:57 +00001540 }
Galina Kistanovafc259902012-07-13 01:25:27 +00001541}
Reid Spencerf37dc652006-12-05 19:14:13 +00001542
Chris Lattner229907c2011-07-18 04:54:35 +00001543Constant *ConstantExpr::getZExtOrBitCast(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001544 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001545 return getBitCast(C, Ty);
1546 return getZExt(C, Ty);
Reid Spencer5c140882006-12-04 20:17:56 +00001547}
1548
Chris Lattner229907c2011-07-18 04:54:35 +00001549Constant *ConstantExpr::getSExtOrBitCast(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001550 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001551 return getBitCast(C, Ty);
1552 return getSExt(C, Ty);
Reid Spencer5c140882006-12-04 20:17:56 +00001553}
1554
Chris Lattner229907c2011-07-18 04:54:35 +00001555Constant *ConstantExpr::getTruncOrBitCast(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001556 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001557 return getBitCast(C, Ty);
1558 return getTrunc(C, Ty);
Reid Spencer5c140882006-12-04 20:17:56 +00001559}
1560
Chris Lattner229907c2011-07-18 04:54:35 +00001561Constant *ConstantExpr::getPointerCast(Constant *S, Type *Ty) {
Evgeniy Stepanov23382642013-01-16 14:41:46 +00001562 assert(S->getType()->isPtrOrPtrVectorTy() && "Invalid cast");
1563 assert((Ty->isIntOrIntVectorTy() || Ty->isPtrOrPtrVectorTy()) &&
1564 "Invalid cast");
Reid Spencerbc245a02006-12-05 03:25:26 +00001565
Evgeniy Stepanov23382642013-01-16 14:41:46 +00001566 if (Ty->isIntOrIntVectorTy())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001567 return getPtrToInt(S, Ty);
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001568
1569 unsigned SrcAS = S->getType()->getPointerAddressSpace();
1570 if (Ty->isPtrOrPtrVectorTy() && SrcAS != Ty->getPointerAddressSpace())
1571 return getAddrSpaceCast(S, Ty);
1572
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001573 return getBitCast(S, Ty);
Reid Spencerbc245a02006-12-05 03:25:26 +00001574}
1575
Matt Arsenault21f38f42013-12-07 02:58:41 +00001576Constant *ConstantExpr::getPointerBitCastOrAddrSpaceCast(Constant *S,
1577 Type *Ty) {
1578 assert(S->getType()->isPtrOrPtrVectorTy() && "Invalid cast");
1579 assert(Ty->isPtrOrPtrVectorTy() && "Invalid cast");
1580
1581 if (S->getType()->getPointerAddressSpace() != Ty->getPointerAddressSpace())
1582 return getAddrSpaceCast(S, Ty);
1583
1584 return getBitCast(S, Ty);
1585}
1586
Sanjay Patelf3587ec2016-05-18 22:05:28 +00001587Constant *ConstantExpr::getIntegerCast(Constant *C, Type *Ty, bool isSigned) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001588 assert(C->getType()->isIntOrIntVectorTy() &&
1589 Ty->isIntOrIntVectorTy() && "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001590 unsigned SrcBits = C->getType()->getScalarSizeInBits();
1591 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer56521c42006-12-12 00:51:07 +00001592 Instruction::CastOps opcode =
1593 (SrcBits == DstBits ? Instruction::BitCast :
1594 (SrcBits > DstBits ? Instruction::Trunc :
1595 (isSigned ? Instruction::SExt : Instruction::ZExt)));
1596 return getCast(opcode, C, Ty);
1597}
1598
Chris Lattner229907c2011-07-18 04:54:35 +00001599Constant *ConstantExpr::getFPCast(Constant *C, Type *Ty) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001600 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer56521c42006-12-12 00:51:07 +00001601 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001602 unsigned SrcBits = C->getType()->getScalarSizeInBits();
1603 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencerca104e82006-12-12 05:38:50 +00001604 if (SrcBits == DstBits)
1605 return C; // Avoid a useless cast
Reid Spencer56521c42006-12-12 00:51:07 +00001606 Instruction::CastOps opcode =
Jay Foad9f32cfd2011-01-27 14:44:55 +00001607 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt);
Reid Spencer56521c42006-12-12 00:51:07 +00001608 return getCast(opcode, C, Ty);
1609}
1610
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001611Constant *ConstantExpr::getTrunc(Constant *C, Type *Ty, bool OnlyIfReduced) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001612#ifndef NDEBUG
1613 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1614 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1615#endif
1616 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001617 assert(C->getType()->isIntOrIntVectorTy() && "Trunc operand must be integer");
1618 assert(Ty->isIntOrIntVectorTy() && "Trunc produces only integral");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001619 assert(C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001620 "SrcTy must be larger than DestTy for Trunc!");
1621
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001622 return getFoldedCast(Instruction::Trunc, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001623}
1624
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001625Constant *ConstantExpr::getSExt(Constant *C, Type *Ty, bool OnlyIfReduced) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001626#ifndef NDEBUG
1627 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1628 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1629#endif
1630 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001631 assert(C->getType()->isIntOrIntVectorTy() && "SExt operand must be integral");
1632 assert(Ty->isIntOrIntVectorTy() && "SExt produces only integer");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001633 assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001634 "SrcTy must be smaller than DestTy for SExt!");
1635
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001636 return getFoldedCast(Instruction::SExt, C, Ty, OnlyIfReduced);
Chris Lattnerdd284742004-04-04 23:20:30 +00001637}
1638
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001639Constant *ConstantExpr::getZExt(Constant *C, Type *Ty, bool OnlyIfReduced) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001640#ifndef NDEBUG
1641 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1642 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1643#endif
1644 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001645 assert(C->getType()->isIntOrIntVectorTy() && "ZEXt operand must be integral");
1646 assert(Ty->isIntOrIntVectorTy() && "ZExt produces only integer");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001647 assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001648 "SrcTy must be smaller than DestTy for ZExt!");
1649
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001650 return getFoldedCast(Instruction::ZExt, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001651}
1652
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001653Constant *ConstantExpr::getFPTrunc(Constant *C, Type *Ty, bool OnlyIfReduced) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001654#ifndef NDEBUG
1655 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1656 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1657#endif
1658 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001659 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001660 C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001661 "This is an illegal floating point truncation!");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001662 return getFoldedCast(Instruction::FPTrunc, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001663}
1664
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001665Constant *ConstantExpr::getFPExtend(Constant *C, Type *Ty, bool OnlyIfReduced) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001666#ifndef NDEBUG
1667 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1668 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1669#endif
1670 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001671 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001672 C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001673 "This is an illegal floating point extension!");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001674 return getFoldedCast(Instruction::FPExt, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001675}
1676
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001677Constant *ConstantExpr::getUIToFP(Constant *C, Type *Ty, bool OnlyIfReduced) {
Devang Pateld26344d2008-11-03 23:20:04 +00001678#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001679 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1680 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001681#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001682 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001683 assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00001684 "This is an illegal uint to floating point cast!");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001685 return getFoldedCast(Instruction::UIToFP, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001686}
1687
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001688Constant *ConstantExpr::getSIToFP(Constant *C, Type *Ty, bool OnlyIfReduced) {
Devang Pateld26344d2008-11-03 23:20:04 +00001689#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001690 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1691 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001692#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001693 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001694 assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001695 "This is an illegal sint to floating point cast!");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001696 return getFoldedCast(Instruction::SIToFP, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001697}
1698
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001699Constant *ConstantExpr::getFPToUI(Constant *C, Type *Ty, bool OnlyIfReduced) {
Devang Pateld26344d2008-11-03 23:20:04 +00001700#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001701 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1702 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001703#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001704 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001705 assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00001706 "This is an illegal floating point to uint cast!");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001707 return getFoldedCast(Instruction::FPToUI, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001708}
1709
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001710Constant *ConstantExpr::getFPToSI(Constant *C, Type *Ty, bool OnlyIfReduced) {
Devang Pateld26344d2008-11-03 23:20:04 +00001711#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001712 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1713 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001714#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001715 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001716 assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00001717 "This is an illegal floating point to sint cast!");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001718 return getFoldedCast(Instruction::FPToSI, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001719}
1720
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001721Constant *ConstantExpr::getPtrToInt(Constant *C, Type *DstTy,
1722 bool OnlyIfReduced) {
Craig Topper95d23472017-07-09 07:04:00 +00001723 assert(C->getType()->isPtrOrPtrVectorTy() &&
Nadav Rotem3924cb02011-12-05 06:29:09 +00001724 "PtrToInt source must be pointer or pointer vector");
Craig Topper95d23472017-07-09 07:04:00 +00001725 assert(DstTy->isIntOrIntVectorTy() &&
Nadav Rotem3924cb02011-12-05 06:29:09 +00001726 "PtrToInt destination must be integer or integer vector");
Chris Lattner8a3df542012-01-25 01:32:59 +00001727 assert(isa<VectorType>(C->getType()) == isa<VectorType>(DstTy));
Nick Lewyckyff509622012-01-25 03:20:12 +00001728 if (isa<VectorType>(C->getType()))
Chris Lattner8326bd82012-01-26 00:42:34 +00001729 assert(C->getType()->getVectorNumElements()==DstTy->getVectorNumElements()&&
Chris Lattner8a3df542012-01-25 01:32:59 +00001730 "Invalid cast between a different number of vector elements");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001731 return getFoldedCast(Instruction::PtrToInt, C, DstTy, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001732}
1733
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001734Constant *ConstantExpr::getIntToPtr(Constant *C, Type *DstTy,
1735 bool OnlyIfReduced) {
Craig Topper95d23472017-07-09 07:04:00 +00001736 assert(C->getType()->isIntOrIntVectorTy() &&
Nadav Rotem3924cb02011-12-05 06:29:09 +00001737 "IntToPtr source must be integer or integer vector");
Craig Topper95d23472017-07-09 07:04:00 +00001738 assert(DstTy->isPtrOrPtrVectorTy() &&
Nadav Rotem3924cb02011-12-05 06:29:09 +00001739 "IntToPtr destination must be a pointer or pointer vector");
Chris Lattner8a3df542012-01-25 01:32:59 +00001740 assert(isa<VectorType>(C->getType()) == isa<VectorType>(DstTy));
Nick Lewyckyff509622012-01-25 03:20:12 +00001741 if (isa<VectorType>(C->getType()))
Chris Lattner8326bd82012-01-26 00:42:34 +00001742 assert(C->getType()->getVectorNumElements()==DstTy->getVectorNumElements()&&
Chris Lattner8a3df542012-01-25 01:32:59 +00001743 "Invalid cast between a different number of vector elements");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001744 return getFoldedCast(Instruction::IntToPtr, C, DstTy, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001745}
1746
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001747Constant *ConstantExpr::getBitCast(Constant *C, Type *DstTy,
1748 bool OnlyIfReduced) {
Chris Lattner37bc78a2010-01-26 21:51:43 +00001749 assert(CastInst::castIsValid(Instruction::BitCast, C, DstTy) &&
1750 "Invalid constantexpr bitcast!");
Galina Kistanovafc259902012-07-13 01:25:27 +00001751
Chris Lattnercbeda872009-03-21 06:55:54 +00001752 // It is common to ask for a bitcast of a value to its own type, handle this
1753 // speedily.
1754 if (C->getType() == DstTy) return C;
Galina Kistanovafc259902012-07-13 01:25:27 +00001755
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001756 return getFoldedCast(Instruction::BitCast, C, DstTy, OnlyIfReduced);
Chris Lattnerdd284742004-04-04 23:20:30 +00001757}
1758
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001759Constant *ConstantExpr::getAddrSpaceCast(Constant *C, Type *DstTy,
1760 bool OnlyIfReduced) {
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001761 assert(CastInst::castIsValid(Instruction::AddrSpaceCast, C, DstTy) &&
1762 "Invalid constantexpr addrspacecast!");
1763
Jingyue Wubaabe502014-06-15 21:40:57 +00001764 // Canonicalize addrspacecasts between different pointer types by first
1765 // bitcasting the pointer type and then converting the address space.
1766 PointerType *SrcScalarTy = cast<PointerType>(C->getType()->getScalarType());
1767 PointerType *DstScalarTy = cast<PointerType>(DstTy->getScalarType());
1768 Type *DstElemTy = DstScalarTy->getElementType();
1769 if (SrcScalarTy->getElementType() != DstElemTy) {
1770 Type *MidTy = PointerType::get(DstElemTy, SrcScalarTy->getAddressSpace());
1771 if (VectorType *VT = dyn_cast<VectorType>(DstTy)) {
1772 // Handle vectors of pointers.
1773 MidTy = VectorType::get(MidTy, VT->getNumElements());
1774 }
1775 C = getBitCast(C, MidTy);
1776 }
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001777 return getFoldedCast(Instruction::AddrSpaceCast, C, DstTy, OnlyIfReduced);
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001778}
1779
Cameron McInallycbde0d92018-11-13 18:15:47 +00001780Constant *ConstantExpr::get(unsigned Opcode, Constant *C, unsigned Flags,
1781 Type *OnlyIfReducedTy) {
1782 // Check the operands for consistency first.
1783 assert(Instruction::isUnaryOp(Opcode) &&
1784 "Invalid opcode in unary constant expression");
1785
1786#ifndef NDEBUG
1787 switch (Opcode) {
1788 case Instruction::FNeg:
1789 assert(C->getType()->isFPOrFPVectorTy() &&
1790 "Tried to create a floating-point operation on a "
1791 "non-floating-point type!");
1792 break;
1793 default:
1794 break;
1795 }
1796#endif
1797
1798 // TODO: Try to constant fold operation.
1799
1800 if (OnlyIfReducedTy == C->getType())
1801 return nullptr;
1802
1803 Constant *ArgVec[] = { C };
1804 ConstantExprKeyType Key(Opcode, ArgVec, 0, Flags);
1805
1806 LLVMContextImpl *pImpl = C->getContext().pImpl;
1807 return pImpl->ExprConstants.getOrCreate(C->getType(), Key);
1808}
1809
Chris Lattner887ecac2011-07-09 18:23:52 +00001810Constant *ConstantExpr::get(unsigned Opcode, Constant *C1, Constant *C2,
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001811 unsigned Flags, Type *OnlyIfReducedTy) {
Chris Lattner887ecac2011-07-09 18:23:52 +00001812 // Check the operands for consistency first.
Simon Pilgrime0a6eb12018-06-22 10:48:02 +00001813 assert(Instruction::isBinaryOp(Opcode) &&
Chris Lattner38a9bcd2003-05-21 17:49:25 +00001814 "Invalid opcode in binary constant expression");
1815 assert(C1->getType() == C2->getType() &&
1816 "Operand types in binary constant expression should match");
Galina Kistanovafc259902012-07-13 01:25:27 +00001817
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001818#ifndef NDEBUG
1819 switch (Opcode) {
Dan Gohmana5b96452009-06-04 22:49:04 +00001820 case Instruction::Add:
Reid Spencer7eb55b32006-11-02 01:53:59 +00001821 case Instruction::Sub:
Dan Gohmana5b96452009-06-04 22:49:04 +00001822 case Instruction::Mul:
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001823 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001824 assert(C1->getType()->isIntOrIntVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001825 "Tried to create an integer operation on a non-integer type!");
1826 break;
1827 case Instruction::FAdd:
1828 case Instruction::FSub:
1829 case Instruction::FMul:
1830 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001831 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001832 "Tried to create a floating-point operation on a "
1833 "non-floating-point type!");
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001834 break;
Bjorn Petterssonaa025802018-07-03 12:39:52 +00001835 case Instruction::UDiv:
1836 case Instruction::SDiv:
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001837 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001838 assert(C1->getType()->isIntOrIntVectorTy() &&
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001839 "Tried to create an arithmetic operation on a non-arithmetic type!");
1840 break;
1841 case Instruction::FDiv:
1842 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001843 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001844 "Tried to create an arithmetic operation on a non-arithmetic type!");
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001845 break;
Bjorn Petterssonaa025802018-07-03 12:39:52 +00001846 case Instruction::URem:
1847 case Instruction::SRem:
Reid Spencer7eb55b32006-11-02 01:53:59 +00001848 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001849 assert(C1->getType()->isIntOrIntVectorTy() &&
Reid Spencer7eb55b32006-11-02 01:53:59 +00001850 "Tried to create an arithmetic operation on a non-arithmetic type!");
1851 break;
1852 case Instruction::FRem:
1853 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001854 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001855 "Tried to create an arithmetic operation on a non-arithmetic type!");
Reid Spencer7eb55b32006-11-02 01:53:59 +00001856 break;
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001857 case Instruction::And:
1858 case Instruction::Or:
1859 case Instruction::Xor:
1860 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001861 assert(C1->getType()->isIntOrIntVectorTy() &&
Misha Brukman3852f652005-01-27 06:46:38 +00001862 "Tried to create a logical operation on a non-integral type!");
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001863 break;
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001864 case Instruction::Shl:
Reid Spencerfdff9382006-11-08 06:47:33 +00001865 case Instruction::LShr:
1866 case Instruction::AShr:
Reid Spencer2341c222007-02-02 02:16:23 +00001867 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001868 assert(C1->getType()->isIntOrIntVectorTy() &&
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001869 "Tried to create a shift operation on a non-integer type!");
1870 break;
1871 default:
1872 break;
1873 }
1874#endif
1875
Chris Lattner887ecac2011-07-09 18:23:52 +00001876 if (Constant *FC = ConstantFoldBinaryInstruction(Opcode, C1, C2))
1877 return FC; // Fold a few common cases.
Galina Kistanovafc259902012-07-13 01:25:27 +00001878
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001879 if (OnlyIfReducedTy == C1->getType())
1880 return nullptr;
1881
Benjamin Kramer324322b2013-03-07 20:53:34 +00001882 Constant *ArgVec[] = { C1, C2 };
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00001883 ConstantExprKeyType Key(Opcode, ArgVec, 0, Flags);
Galina Kistanovafc259902012-07-13 01:25:27 +00001884
Chris Lattner887ecac2011-07-09 18:23:52 +00001885 LLVMContextImpl *pImpl = C1->getContext().pImpl;
1886 return pImpl->ExprConstants.getOrCreate(C1->getType(), Key);
Reid Spencera009d0d2006-12-04 21:35:24 +00001887}
1888
Chris Lattner229907c2011-07-18 04:54:35 +00001889Constant *ConstantExpr::getSizeOf(Type* Ty) {
Owen Anderson487375e2009-07-29 18:55:55 +00001890 // sizeof is implemented as: (i64) gep (Ty*)null, 1
1891 // Note that a non-inbounds gep is used, as null isn't within any object.
Owen Anderson55f1c092009-08-13 21:58:54 +00001892 Constant *GEPIdx = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
Owen Anderson487375e2009-07-29 18:55:55 +00001893 Constant *GEP = getGetElementPtr(
David Blaikie4a2e73b2015-04-02 18:55:32 +00001894 Ty, Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx);
Bjorn Petterssonaa025802018-07-03 12:39:52 +00001895 return getPtrToInt(GEP,
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001896 Type::getInt64Ty(Ty->getContext()));
Owen Anderson487375e2009-07-29 18:55:55 +00001897}
1898
Chris Lattner229907c2011-07-18 04:54:35 +00001899Constant *ConstantExpr::getAlignOf(Type* Ty) {
Dan Gohmancf913832010-01-28 02:15:55 +00001900 // alignof is implemented as: (i64) gep ({i1,Ty}*)null, 0, 1
Dan Gohman50c09d02009-08-11 17:57:01 +00001901 // Note that a non-inbounds gep is used, as null isn't within any object.
Serge Gueltone38003f2017-05-09 19:31:13 +00001902 Type *AligningTy = StructType::get(Type::getInt1Ty(Ty->getContext()), Ty);
Matt Arsenaultbe558882014-04-23 20:58:57 +00001903 Constant *NullPtr = Constant::getNullValue(AligningTy->getPointerTo(0));
Dan Gohmana9be7392010-01-28 02:43:22 +00001904 Constant *Zero = ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0);
Owen Anderson55f1c092009-08-13 21:58:54 +00001905 Constant *One = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
Owen Anderson487375e2009-07-29 18:55:55 +00001906 Constant *Indices[2] = { Zero, One };
David Blaikie4a2e73b2015-04-02 18:55:32 +00001907 Constant *GEP = getGetElementPtr(AligningTy, NullPtr, Indices);
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001908 return getPtrToInt(GEP,
1909 Type::getInt64Ty(Ty->getContext()));
Owen Anderson487375e2009-07-29 18:55:55 +00001910}
1911
Chris Lattner229907c2011-07-18 04:54:35 +00001912Constant *ConstantExpr::getOffsetOf(StructType* STy, unsigned FieldNo) {
Dan Gohmanede94e62010-02-01 16:37:38 +00001913 return getOffsetOf(STy, ConstantInt::get(Type::getInt32Ty(STy->getContext()),
1914 FieldNo));
1915}
1916
Chris Lattner229907c2011-07-18 04:54:35 +00001917Constant *ConstantExpr::getOffsetOf(Type* Ty, Constant *FieldNo) {
Dan Gohmanff3af7252009-08-16 21:26:11 +00001918 // offsetof is implemented as: (i64) gep (Ty*)null, 0, FieldNo
1919 // Note that a non-inbounds gep is used, as null isn't within any object.
1920 Constant *GEPIdx[] = {
Dan Gohmanede94e62010-02-01 16:37:38 +00001921 ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0),
1922 FieldNo
Dan Gohmanff3af7252009-08-16 21:26:11 +00001923 };
1924 Constant *GEP = getGetElementPtr(
David Blaikie4a2e73b2015-04-02 18:55:32 +00001925 Ty, Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx);
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001926 return getPtrToInt(GEP,
1927 Type::getInt64Ty(Ty->getContext()));
Dan Gohmanff3af7252009-08-16 21:26:11 +00001928}
Owen Anderson487375e2009-07-29 18:55:55 +00001929
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001930Constant *ConstantExpr::getCompare(unsigned short Predicate, Constant *C1,
1931 Constant *C2, bool OnlyIfReduced) {
Reid Spencera009d0d2006-12-04 21:35:24 +00001932 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Galina Kistanovafc259902012-07-13 01:25:27 +00001933
Chris Lattner887ecac2011-07-09 18:23:52 +00001934 switch (Predicate) {
1935 default: llvm_unreachable("Invalid CmpInst predicate");
1936 case CmpInst::FCMP_FALSE: case CmpInst::FCMP_OEQ: case CmpInst::FCMP_OGT:
1937 case CmpInst::FCMP_OGE: case CmpInst::FCMP_OLT: case CmpInst::FCMP_OLE:
1938 case CmpInst::FCMP_ONE: case CmpInst::FCMP_ORD: case CmpInst::FCMP_UNO:
1939 case CmpInst::FCMP_UEQ: case CmpInst::FCMP_UGT: case CmpInst::FCMP_UGE:
1940 case CmpInst::FCMP_ULT: case CmpInst::FCMP_ULE: case CmpInst::FCMP_UNE:
1941 case CmpInst::FCMP_TRUE:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001942 return getFCmp(Predicate, C1, C2, OnlyIfReduced);
Galina Kistanovafc259902012-07-13 01:25:27 +00001943
Chris Lattner887ecac2011-07-09 18:23:52 +00001944 case CmpInst::ICMP_EQ: case CmpInst::ICMP_NE: case CmpInst::ICMP_UGT:
1945 case CmpInst::ICMP_UGE: case CmpInst::ICMP_ULT: case CmpInst::ICMP_ULE:
1946 case CmpInst::ICMP_SGT: case CmpInst::ICMP_SGE: case CmpInst::ICMP_SLT:
1947 case CmpInst::ICMP_SLE:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001948 return getICmp(Predicate, C1, C2, OnlyIfReduced);
Chris Lattner887ecac2011-07-09 18:23:52 +00001949 }
Chris Lattner29ca2c62004-08-04 18:50:09 +00001950}
1951
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001952Constant *ConstantExpr::getSelect(Constant *C, Constant *V1, Constant *V2,
1953 Type *OnlyIfReducedTy) {
Chris Lattner41632132008-12-29 00:16:12 +00001954 assert(!SelectInst::areInvalidOperands(C, V1, V2)&&"Invalid select operands");
Chris Lattner6e415c02004-03-12 05:54:04 +00001955
Chris Lattner887ecac2011-07-09 18:23:52 +00001956 if (Constant *SC = ConstantFoldSelectInstruction(C, V1, V2))
1957 return SC; // Fold common cases
Chris Lattner6e415c02004-03-12 05:54:04 +00001958
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001959 if (OnlyIfReducedTy == V1->getType())
1960 return nullptr;
1961
Benjamin Kramer324322b2013-03-07 20:53:34 +00001962 Constant *ArgVec[] = { C, V1, V2 };
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00001963 ConstantExprKeyType Key(Instruction::Select, ArgVec);
Galina Kistanovafc259902012-07-13 01:25:27 +00001964
Chris Lattner887ecac2011-07-09 18:23:52 +00001965 LLVMContextImpl *pImpl = C->getContext().pImpl;
1966 return pImpl->ExprConstants.getOrCreate(V1->getType(), Key);
Chris Lattner6e415c02004-03-12 05:54:04 +00001967}
1968
David Blaikie4a2e73b2015-04-02 18:55:32 +00001969Constant *ConstantExpr::getGetElementPtr(Type *Ty, Constant *C,
1970 ArrayRef<Value *> Idxs, bool InBounds,
Peter Collingbourned93620b2016-11-10 22:34:55 +00001971 Optional<unsigned> InRangeIndex,
David Blaikie4a2e73b2015-04-02 18:55:32 +00001972 Type *OnlyIfReducedTy) {
David Blaikie4a2e73b2015-04-02 18:55:32 +00001973 if (!Ty)
1974 Ty = cast<PointerType>(C->getType()->getScalarType())->getElementType();
1975 else
David Blaikied9d900c2015-05-07 17:28:58 +00001976 assert(
1977 Ty ==
1978 cast<PointerType>(C->getType()->getScalarType())->getContainedType(0u));
1979
Peter Collingbourned93620b2016-11-10 22:34:55 +00001980 if (Constant *FC =
1981 ConstantFoldGetElementPtr(Ty, C, InBounds, InRangeIndex, Idxs))
David Blaikied9d900c2015-05-07 17:28:58 +00001982 return FC; // Fold a few common cases.
1983
Chris Lattner887ecac2011-07-09 18:23:52 +00001984 // Get the result type of the getelementptr!
David Blaikie4a2e73b2015-04-02 18:55:32 +00001985 Type *DestTy = GetElementPtrInst::getIndexedType(Ty, Idxs);
1986 assert(DestTy && "GEP indices invalid!");
Chris Lattner8326bd82012-01-26 00:42:34 +00001987 unsigned AS = C->getType()->getPointerAddressSpace();
David Blaikie4a2e73b2015-04-02 18:55:32 +00001988 Type *ReqTy = DestTy->getPointerTo(AS);
Elena Demikhovskyee004bc2016-05-15 12:30:25 +00001989
1990 unsigned NumVecElts = 0;
1991 if (C->getType()->isVectorTy())
1992 NumVecElts = C->getType()->getVectorNumElements();
1993 else for (auto Idx : Idxs)
1994 if (Idx->getType()->isVectorTy())
1995 NumVecElts = Idx->getType()->getVectorNumElements();
1996
1997 if (NumVecElts)
1998 ReqTy = VectorType::get(ReqTy, NumVecElts);
Galina Kistanovafc259902012-07-13 01:25:27 +00001999
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002000 if (OnlyIfReducedTy == ReqTy)
2001 return nullptr;
2002
Dan Gohman1b849082009-09-07 23:54:19 +00002003 // Look up the constant in the table first to ensure uniqueness
2004 std::vector<Constant*> ArgVec;
Jay Foaded8db7d2011-07-21 14:31:17 +00002005 ArgVec.reserve(1 + Idxs.size());
Dan Gohman1b849082009-09-07 23:54:19 +00002006 ArgVec.push_back(C);
Duncan Sandse6beec62012-11-13 12:59:33 +00002007 for (unsigned i = 0, e = Idxs.size(); i != e; ++i) {
Duncan Sandse6beec62012-11-13 12:59:33 +00002008 assert((!Idxs[i]->getType()->isVectorTy() ||
Elena Demikhovskyee004bc2016-05-15 12:30:25 +00002009 Idxs[i]->getType()->getVectorNumElements() == NumVecElts) &&
Duncan Sandse6beec62012-11-13 12:59:33 +00002010 "getelementptr index type missmatch");
Elena Demikhovskyee004bc2016-05-15 12:30:25 +00002011
2012 Constant *Idx = cast<Constant>(Idxs[i]);
2013 if (NumVecElts && !Idxs[i]->getType()->isVectorTy())
2014 Idx = ConstantVector::getSplat(NumVecElts, Idx);
2015 ArgVec.push_back(Idx);
Duncan Sandse6beec62012-11-13 12:59:33 +00002016 }
Peter Collingbourned93620b2016-11-10 22:34:55 +00002017
2018 unsigned SubClassOptionalData = InBounds ? GEPOperator::IsInBounds : 0;
2019 if (InRangeIndex && *InRangeIndex < 63)
2020 SubClassOptionalData |= (*InRangeIndex + 1) << 1;
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002021 const ConstantExprKeyType Key(Instruction::GetElementPtr, ArgVec, 0,
Peter Collingbourned93620b2016-11-10 22:34:55 +00002022 SubClassOptionalData, None, Ty);
Galina Kistanovafc259902012-07-13 01:25:27 +00002023
Chris Lattner887ecac2011-07-09 18:23:52 +00002024 LLVMContextImpl *pImpl = C->getContext().pImpl;
Dan Gohman1b849082009-09-07 23:54:19 +00002025 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
2026}
2027
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002028Constant *ConstantExpr::getICmp(unsigned short pred, Constant *LHS,
2029 Constant *RHS, bool OnlyIfReduced) {
Reid Spenceree3c9912006-12-04 05:19:50 +00002030 assert(LHS->getType() == RHS->getType());
Craig Topper45844762017-07-05 23:35:46 +00002031 assert(CmpInst::isIntPredicate((CmpInst::Predicate)pred) &&
2032 "Invalid ICmp Predicate");
Reid Spenceree3c9912006-12-04 05:19:50 +00002033
Chris Lattnerf5edeeb2010-02-01 20:48:08 +00002034 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
Reid Spenceree3c9912006-12-04 05:19:50 +00002035 return FC; // Fold a few common cases...
2036
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002037 if (OnlyIfReduced)
2038 return nullptr;
2039
Reid Spenceree3c9912006-12-04 05:19:50 +00002040 // Look up the constant in the table first to ensure uniqueness
Benjamin Kramer324322b2013-03-07 20:53:34 +00002041 Constant *ArgVec[] = { LHS, RHS };
Reid Spencerb1537492006-12-24 18:42:29 +00002042 // Get the key type with both the opcode and predicate
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002043 const ConstantExprKeyType Key(Instruction::ICmp, ArgVec, pred);
Owen Anderson61794042009-06-17 20:10:08 +00002044
Chris Lattner229907c2011-07-18 04:54:35 +00002045 Type *ResultTy = Type::getInt1Ty(LHS->getContext());
2046 if (VectorType *VT = dyn_cast<VectorType>(LHS->getType()))
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00002047 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
2048
Owen Anderson1584a292009-08-04 20:25:11 +00002049 LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl;
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00002050 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
Reid Spenceree3c9912006-12-04 05:19:50 +00002051}
2052
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002053Constant *ConstantExpr::getFCmp(unsigned short pred, Constant *LHS,
2054 Constant *RHS, bool OnlyIfReduced) {
Reid Spenceree3c9912006-12-04 05:19:50 +00002055 assert(LHS->getType() == RHS->getType());
Craig Topper45844762017-07-05 23:35:46 +00002056 assert(CmpInst::isFPPredicate((CmpInst::Predicate)pred) &&
2057 "Invalid FCmp Predicate");
Reid Spenceree3c9912006-12-04 05:19:50 +00002058
Chris Lattnerf5edeeb2010-02-01 20:48:08 +00002059 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
Reid Spenceree3c9912006-12-04 05:19:50 +00002060 return FC; // Fold a few common cases...
2061
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002062 if (OnlyIfReduced)
2063 return nullptr;
2064
Reid Spenceree3c9912006-12-04 05:19:50 +00002065 // Look up the constant in the table first to ensure uniqueness
Benjamin Kramer324322b2013-03-07 20:53:34 +00002066 Constant *ArgVec[] = { LHS, RHS };
Reid Spencerb1537492006-12-24 18:42:29 +00002067 // Get the key type with both the opcode and predicate
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002068 const ConstantExprKeyType Key(Instruction::FCmp, ArgVec, pred);
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00002069
Chris Lattner229907c2011-07-18 04:54:35 +00002070 Type *ResultTy = Type::getInt1Ty(LHS->getContext());
2071 if (VectorType *VT = dyn_cast<VectorType>(LHS->getType()))
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00002072 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
2073
Owen Anderson1584a292009-08-04 20:25:11 +00002074 LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl;
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00002075 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
Reid Spenceree3c9912006-12-04 05:19:50 +00002076}
2077
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002078Constant *ConstantExpr::getExtractElement(Constant *Val, Constant *Idx,
2079 Type *OnlyIfReducedTy) {
Duncan Sands19d0b472010-02-16 11:11:14 +00002080 assert(Val->getType()->isVectorTy() &&
Reid Spencer09575ba2007-02-15 03:39:18 +00002081 "Tried to create extractelement operation on non-vector type!");
Michael J. Spencer1f10c5ea2014-05-01 22:12:39 +00002082 assert(Idx->getType()->isIntegerTy() &&
2083 "Extractelement index must be an integer type!");
Galina Kistanovafc259902012-07-13 01:25:27 +00002084
Chris Lattner887ecac2011-07-09 18:23:52 +00002085 if (Constant *FC = ConstantFoldExtractElementInstruction(Val, Idx))
Chris Lattner09660c92009-12-30 20:25:09 +00002086 return FC; // Fold a few common cases.
Galina Kistanovafc259902012-07-13 01:25:27 +00002087
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002088 Type *ReqTy = Val->getType()->getVectorElementType();
2089 if (OnlyIfReducedTy == ReqTy)
2090 return nullptr;
2091
Robert Bocchinoca27f032006-01-17 20:07:22 +00002092 // Look up the constant in the table first to ensure uniqueness
Benjamin Kramer324322b2013-03-07 20:53:34 +00002093 Constant *ArgVec[] = { Val, Idx };
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002094 const ConstantExprKeyType Key(Instruction::ExtractElement, ArgVec);
Galina Kistanovafc259902012-07-13 01:25:27 +00002095
Chris Lattner887ecac2011-07-09 18:23:52 +00002096 LLVMContextImpl *pImpl = Val->getContext().pImpl;
Owen Anderson1584a292009-08-04 20:25:11 +00002097 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Robert Bocchinoca27f032006-01-17 20:07:22 +00002098}
2099
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002100Constant *ConstantExpr::getInsertElement(Constant *Val, Constant *Elt,
2101 Constant *Idx, Type *OnlyIfReducedTy) {
Duncan Sands19d0b472010-02-16 11:11:14 +00002102 assert(Val->getType()->isVectorTy() &&
Reid Spencer09575ba2007-02-15 03:39:18 +00002103 "Tried to create insertelement operation on non-vector type!");
Chris Lattner8326bd82012-01-26 00:42:34 +00002104 assert(Elt->getType() == Val->getType()->getVectorElementType() &&
2105 "Insertelement types must match!");
Michael J. Spencer1f10c5ea2014-05-01 22:12:39 +00002106 assert(Idx->getType()->isIntegerTy() &&
Reid Spencer2546b762007-01-26 07:37:34 +00002107 "Insertelement index must be i32 type!");
Robert Bocchinoca27f032006-01-17 20:07:22 +00002108
Chris Lattner887ecac2011-07-09 18:23:52 +00002109 if (Constant *FC = ConstantFoldInsertElementInstruction(Val, Elt, Idx))
2110 return FC; // Fold a few common cases.
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002111
2112 if (OnlyIfReducedTy == Val->getType())
2113 return nullptr;
2114
Chris Lattnerbbe0a422006-04-08 01:18:18 +00002115 // Look up the constant in the table first to ensure uniqueness
Benjamin Kramer324322b2013-03-07 20:53:34 +00002116 Constant *ArgVec[] = { Val, Elt, Idx };
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002117 const ConstantExprKeyType Key(Instruction::InsertElement, ArgVec);
Galina Kistanovafc259902012-07-13 01:25:27 +00002118
Chris Lattner887ecac2011-07-09 18:23:52 +00002119 LLVMContextImpl *pImpl = Val->getContext().pImpl;
2120 return pImpl->ExprConstants.getOrCreate(Val->getType(), Key);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00002121}
2122
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002123Constant *ConstantExpr::getShuffleVector(Constant *V1, Constant *V2,
2124 Constant *Mask, Type *OnlyIfReducedTy) {
Chris Lattnerbbe0a422006-04-08 01:18:18 +00002125 assert(ShuffleVectorInst::isValidOperands(V1, V2, Mask) &&
2126 "Invalid shuffle vector constant expr operands!");
Nate Begeman94aa38d2009-02-12 21:28:33 +00002127
Chris Lattner887ecac2011-07-09 18:23:52 +00002128 if (Constant *FC = ConstantFoldShuffleVectorInstruction(V1, V2, Mask))
2129 return FC; // Fold a few common cases.
2130
Chris Lattner8326bd82012-01-26 00:42:34 +00002131 unsigned NElts = Mask->getType()->getVectorNumElements();
2132 Type *EltTy = V1->getType()->getVectorElementType();
Chris Lattner229907c2011-07-18 04:54:35 +00002133 Type *ShufTy = VectorType::get(EltTy, NElts);
Chris Lattner887ecac2011-07-09 18:23:52 +00002134
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002135 if (OnlyIfReducedTy == ShufTy)
2136 return nullptr;
2137
Chris Lattner887ecac2011-07-09 18:23:52 +00002138 // Look up the constant in the table first to ensure uniqueness
Benjamin Kramer324322b2013-03-07 20:53:34 +00002139 Constant *ArgVec[] = { V1, V2, Mask };
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002140 const ConstantExprKeyType Key(Instruction::ShuffleVector, ArgVec);
Galina Kistanovafc259902012-07-13 01:25:27 +00002141
Chris Lattner887ecac2011-07-09 18:23:52 +00002142 LLVMContextImpl *pImpl = ShufTy->getContext().pImpl;
2143 return pImpl->ExprConstants.getOrCreate(ShufTy, Key);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00002144}
2145
Chris Lattner887ecac2011-07-09 18:23:52 +00002146Constant *ConstantExpr::getInsertValue(Constant *Agg, Constant *Val,
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002147 ArrayRef<unsigned> Idxs,
2148 Type *OnlyIfReducedTy) {
Hal Finkelb31366d2013-07-10 22:51:01 +00002149 assert(Agg->getType()->isFirstClassType() &&
2150 "Non-first-class type for constant insertvalue expression");
2151
Jay Foad57aa6362011-07-13 10:26:04 +00002152 assert(ExtractValueInst::getIndexedType(Agg->getType(),
2153 Idxs) == Val->getType() &&
Dan Gohman12fce772008-05-15 19:50:34 +00002154 "insertvalue indices invalid!");
Hal Finkelb31366d2013-07-10 22:51:01 +00002155 Type *ReqTy = Val->getType();
2156
2157 if (Constant *FC = ConstantFoldInsertValueInstruction(Agg, Val, Idxs))
2158 return FC;
2159
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002160 if (OnlyIfReducedTy == ReqTy)
2161 return nullptr;
2162
Hal Finkelb31366d2013-07-10 22:51:01 +00002163 Constant *ArgVec[] = { Agg, Val };
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002164 const ConstantExprKeyType Key(Instruction::InsertValue, ArgVec, 0, 0, Idxs);
Hal Finkelb31366d2013-07-10 22:51:01 +00002165
2166 LLVMContextImpl *pImpl = Agg->getContext().pImpl;
2167 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Dan Gohman12fce772008-05-15 19:50:34 +00002168}
2169
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002170Constant *ConstantExpr::getExtractValue(Constant *Agg, ArrayRef<unsigned> Idxs,
2171 Type *OnlyIfReducedTy) {
Dan Gohman0752bff2008-05-23 00:36:11 +00002172 assert(Agg->getType()->isFirstClassType() &&
Chris Lattner887ecac2011-07-09 18:23:52 +00002173 "Tried to create extractelement operation on non-first-class type!");
Dan Gohman12fce772008-05-15 19:50:34 +00002174
Chris Lattner229907c2011-07-18 04:54:35 +00002175 Type *ReqTy = ExtractValueInst::getIndexedType(Agg->getType(), Idxs);
Chandler Carruth9db56b82011-07-10 09:45:35 +00002176 (void)ReqTy;
Chris Lattner887ecac2011-07-09 18:23:52 +00002177 assert(ReqTy && "extractvalue indices invalid!");
Galina Kistanovafc259902012-07-13 01:25:27 +00002178
Dan Gohman0752bff2008-05-23 00:36:11 +00002179 assert(Agg->getType()->isFirstClassType() &&
2180 "Non-first-class type for constant extractvalue expression");
Hal Finkelb31366d2013-07-10 22:51:01 +00002181 if (Constant *FC = ConstantFoldExtractValueInstruction(Agg, Idxs))
2182 return FC;
2183
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002184 if (OnlyIfReducedTy == ReqTy)
2185 return nullptr;
2186
Hal Finkelb31366d2013-07-10 22:51:01 +00002187 Constant *ArgVec[] = { Agg };
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002188 const ConstantExprKeyType Key(Instruction::ExtractValue, ArgVec, 0, 0, Idxs);
Hal Finkelb31366d2013-07-10 22:51:01 +00002189
2190 LLVMContextImpl *pImpl = Agg->getContext().pImpl;
2191 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Dan Gohman12fce772008-05-15 19:50:34 +00002192}
2193
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002194Constant *ConstantExpr::getNeg(Constant *C, bool HasNUW, bool HasNSW) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002195 assert(C->getType()->isIntOrIntVectorTy() &&
Owen Anderson487375e2009-07-29 18:55:55 +00002196 "Cannot NEG a nonintegral value!");
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002197 return getSub(ConstantFP::getZeroValueForNegation(C->getType()),
2198 C, HasNUW, HasNSW);
Owen Anderson487375e2009-07-29 18:55:55 +00002199}
2200
Chris Lattnera676c0f2011-02-07 16:40:21 +00002201Constant *ConstantExpr::getFNeg(Constant *C) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002202 assert(C->getType()->isFPOrFPVectorTy() &&
Owen Anderson487375e2009-07-29 18:55:55 +00002203 "Cannot FNEG a non-floating-point value!");
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002204 return getFSub(ConstantFP::getZeroValueForNegation(C->getType()), C);
Owen Anderson487375e2009-07-29 18:55:55 +00002205}
2206
Chris Lattnera676c0f2011-02-07 16:40:21 +00002207Constant *ConstantExpr::getNot(Constant *C) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002208 assert(C->getType()->isIntOrIntVectorTy() &&
Owen Anderson487375e2009-07-29 18:55:55 +00002209 "Cannot NOT a nonintegral value!");
Owen Anderson5a1acd92009-07-31 20:28:14 +00002210 return get(Instruction::Xor, C, Constant::getAllOnesValue(C->getType()));
Owen Anderson487375e2009-07-29 18:55:55 +00002211}
2212
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002213Constant *ConstantExpr::getAdd(Constant *C1, Constant *C2,
2214 bool HasNUW, bool HasNSW) {
2215 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
2216 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
2217 return get(Instruction::Add, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00002218}
2219
Chris Lattnera676c0f2011-02-07 16:40:21 +00002220Constant *ConstantExpr::getFAdd(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002221 return get(Instruction::FAdd, C1, C2);
2222}
2223
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002224Constant *ConstantExpr::getSub(Constant *C1, Constant *C2,
2225 bool HasNUW, bool HasNSW) {
2226 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
2227 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
2228 return get(Instruction::Sub, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00002229}
2230
Chris Lattnera676c0f2011-02-07 16:40:21 +00002231Constant *ConstantExpr::getFSub(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002232 return get(Instruction::FSub, C1, C2);
2233}
2234
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002235Constant *ConstantExpr::getMul(Constant *C1, Constant *C2,
2236 bool HasNUW, bool HasNSW) {
2237 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
2238 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
2239 return get(Instruction::Mul, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00002240}
2241
Chris Lattnera676c0f2011-02-07 16:40:21 +00002242Constant *ConstantExpr::getFMul(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002243 return get(Instruction::FMul, C1, C2);
2244}
2245
Chris Lattner0d75eac2011-02-09 16:43:07 +00002246Constant *ConstantExpr::getUDiv(Constant *C1, Constant *C2, bool isExact) {
2247 return get(Instruction::UDiv, C1, C2,
2248 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00002249}
2250
Chris Lattner0d75eac2011-02-09 16:43:07 +00002251Constant *ConstantExpr::getSDiv(Constant *C1, Constant *C2, bool isExact) {
2252 return get(Instruction::SDiv, C1, C2,
2253 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00002254}
2255
Chris Lattnera676c0f2011-02-07 16:40:21 +00002256Constant *ConstantExpr::getFDiv(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002257 return get(Instruction::FDiv, C1, C2);
2258}
2259
Chris Lattnera676c0f2011-02-07 16:40:21 +00002260Constant *ConstantExpr::getURem(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002261 return get(Instruction::URem, C1, C2);
2262}
2263
Chris Lattnera676c0f2011-02-07 16:40:21 +00002264Constant *ConstantExpr::getSRem(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002265 return get(Instruction::SRem, C1, C2);
2266}
2267
Chris Lattnera676c0f2011-02-07 16:40:21 +00002268Constant *ConstantExpr::getFRem(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002269 return get(Instruction::FRem, C1, C2);
2270}
2271
Chris Lattnera676c0f2011-02-07 16:40:21 +00002272Constant *ConstantExpr::getAnd(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002273 return get(Instruction::And, C1, C2);
2274}
2275
Chris Lattnera676c0f2011-02-07 16:40:21 +00002276Constant *ConstantExpr::getOr(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002277 return get(Instruction::Or, C1, C2);
2278}
2279
Chris Lattnera676c0f2011-02-07 16:40:21 +00002280Constant *ConstantExpr::getXor(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002281 return get(Instruction::Xor, C1, C2);
2282}
2283
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002284Constant *ConstantExpr::getShl(Constant *C1, Constant *C2,
2285 bool HasNUW, bool HasNSW) {
2286 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
2287 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
2288 return get(Instruction::Shl, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00002289}
2290
Chris Lattner0d75eac2011-02-09 16:43:07 +00002291Constant *ConstantExpr::getLShr(Constant *C1, Constant *C2, bool isExact) {
2292 return get(Instruction::LShr, C1, C2,
2293 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00002294}
2295
Chris Lattner0d75eac2011-02-09 16:43:07 +00002296Constant *ConstantExpr::getAShr(Constant *C1, Constant *C2, bool isExact) {
2297 return get(Instruction::AShr, C1, C2,
2298 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00002299}
2300
Sanjay Patele85a3002018-07-06 15:18:58 +00002301Constant *ConstantExpr::getBinOpIdentity(unsigned Opcode, Type *Ty,
2302 bool AllowRHSConstant) {
2303 assert(Instruction::isBinaryOp(Opcode) && "Only binops allowed");
2304
2305 // Commutative opcodes: it does not matter if AllowRHSConstant is set.
2306 if (Instruction::isCommutative(Opcode)) {
2307 switch (Opcode) {
2308 case Instruction::Add: // X + 0 = X
2309 case Instruction::Or: // X | 0 = X
2310 case Instruction::Xor: // X ^ 0 = X
2311 return Constant::getNullValue(Ty);
2312 case Instruction::Mul: // X * 1 = X
2313 return ConstantInt::get(Ty, 1);
2314 case Instruction::And: // X & -1 = X
2315 return Constant::getAllOnesValue(Ty);
2316 case Instruction::FAdd: // X + -0.0 = X
2317 // TODO: If the fadd has 'nsz', should we return +0.0?
2318 return ConstantFP::getNegativeZero(Ty);
2319 case Instruction::FMul: // X * 1.0 = X
2320 return ConstantFP::get(Ty, 1.0);
2321 default:
2322 llvm_unreachable("Every commutative binop has an identity constant");
2323 }
2324 }
2325
2326 // Non-commutative opcodes: AllowRHSConstant must be set.
2327 if (!AllowRHSConstant)
Craig Topperc6207612014-04-09 06:08:46 +00002328 return nullptr;
Duncan Sands318a89d2012-06-13 09:42:13 +00002329
Sanjay Patele85a3002018-07-06 15:18:58 +00002330 switch (Opcode) {
2331 case Instruction::Sub: // X - 0 = X
2332 case Instruction::Shl: // X << 0 = X
2333 case Instruction::LShr: // X >>u 0 = X
2334 case Instruction::AShr: // X >> 0 = X
2335 case Instruction::FSub: // X - 0.0 = X
2336 return Constant::getNullValue(Ty);
2337 case Instruction::SDiv: // X / 1 = X
2338 case Instruction::UDiv: // X /u 1 = X
2339 return ConstantInt::get(Ty, 1);
2340 case Instruction::FDiv: // X / 1.0 = X
2341 return ConstantFP::get(Ty, 1.0);
2342 default:
2343 return nullptr;
Duncan Sandsd7aeefe2012-06-12 14:33:56 +00002344 }
2345}
2346
Duncan Sands318a89d2012-06-13 09:42:13 +00002347Constant *ConstantExpr::getBinOpAbsorber(unsigned Opcode, Type *Ty) {
2348 switch (Opcode) {
2349 default:
2350 // Doesn't have an absorber.
Craig Topperc6207612014-04-09 06:08:46 +00002351 return nullptr;
Duncan Sands318a89d2012-06-13 09:42:13 +00002352
2353 case Instruction::Or:
2354 return Constant::getAllOnesValue(Ty);
2355
2356 case Instruction::And:
2357 case Instruction::Mul:
2358 return Constant::getNullValue(Ty);
2359 }
2360}
2361
Sanjay Patel1d0ac7c2016-04-29 22:03:27 +00002362/// Remove the constant from the constant table.
Pete Cooper86dd4cf2015-06-23 21:55:11 +00002363void ConstantExpr::destroyConstantImpl() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002364 getType()->getContext().pImpl->ExprConstants.remove(this);
Vikram S. Adve4e537b22002-07-14 23:13:17 +00002365}
2366
Chris Lattner3cd8c562002-07-30 18:54:25 +00002367const char *ConstantExpr::getOpcodeName() const {
2368 return Instruction::getOpcodeName(getOpcode());
Vikram S. Adve4e537b22002-07-14 23:13:17 +00002369}
Reid Spencer1ebe1ab2004-07-17 23:48:33 +00002370
David Blaikie60310f22015-05-08 00:42:26 +00002371GetElementPtrConstantExpr::GetElementPtrConstantExpr(
2372 Type *SrcElementTy, Constant *C, ArrayRef<Constant *> IdxList, Type *DestTy)
2373 : ConstantExpr(DestTy, Instruction::GetElementPtr,
2374 OperandTraits<GetElementPtrConstantExpr>::op_end(this) -
2375 (IdxList.size() + 1),
2376 IdxList.size() + 1),
Eduard Burtescu19eb0312016-01-19 17:28:00 +00002377 SrcElementTy(SrcElementTy),
2378 ResElementTy(GetElementPtrInst::getIndexedType(SrcElementTy, IdxList)) {
Pete Coopereb31b682015-05-21 22:48:54 +00002379 Op<0>() = C;
Pete Cooper74510a42015-06-12 17:48:05 +00002380 Use *OperandList = getOperandList();
Chris Lattnera3b94ba2010-03-30 20:48:48 +00002381 for (unsigned i = 0, E = IdxList.size(); i != E; ++i)
2382 OperandList[i+1] = IdxList[i];
2383}
2384
David Blaikie60310f22015-05-08 00:42:26 +00002385Type *GetElementPtrConstantExpr::getSourceElementType() const {
2386 return SrcElementTy;
2387}
2388
Eduard Burtescu19eb0312016-01-19 17:28:00 +00002389Type *GetElementPtrConstantExpr::getResultElementType() const {
2390 return ResElementTy;
2391}
2392
Chris Lattner3756b912012-01-23 22:57:10 +00002393//===----------------------------------------------------------------------===//
2394// ConstantData* implementations
2395
Chris Lattnere4f3f102012-01-24 04:43:41 +00002396Type *ConstantDataSequential::getElementType() const {
2397 return getType()->getElementType();
2398}
2399
Chris Lattner5d4497b2012-01-24 09:31:43 +00002400StringRef ConstantDataSequential::getRawDataValues() const {
Chris Lattner00245f42012-01-24 13:41:11 +00002401 return StringRef(DataElements, getNumElements()*getElementByteSize());
Chris Lattner5d4497b2012-01-24 09:31:43 +00002402}
2403
Craig Toppere3dcce92015-08-01 22:20:21 +00002404bool ConstantDataSequential::isElementTypeCompatible(Type *Ty) {
Justin Bogner0ebc8602015-12-08 03:01:16 +00002405 if (Ty->isHalfTy() || Ty->isFloatTy() || Ty->isDoubleTy()) return true;
Craig Toppere3dcce92015-08-01 22:20:21 +00002406 if (auto *IT = dyn_cast<IntegerType>(Ty)) {
Chris Lattnere4f3f102012-01-24 04:43:41 +00002407 switch (IT->getBitWidth()) {
2408 case 8:
2409 case 16:
2410 case 32:
2411 case 64:
2412 return true;
2413 default: break;
2414 }
2415 }
2416 return false;
2417}
2418
Chris Lattner00245f42012-01-24 13:41:11 +00002419unsigned ConstantDataSequential::getNumElements() const {
Chris Lattner8a3df542012-01-25 01:32:59 +00002420 if (ArrayType *AT = dyn_cast<ArrayType>(getType()))
2421 return AT->getNumElements();
Chris Lattner8326bd82012-01-26 00:42:34 +00002422 return getType()->getVectorNumElements();
Chris Lattner00245f42012-01-24 13:41:11 +00002423}
2424
2425
Chris Lattnere4f3f102012-01-24 04:43:41 +00002426uint64_t ConstantDataSequential::getElementByteSize() const {
2427 return getElementType()->getPrimitiveSizeInBits()/8;
2428}
2429
Sanjay Patel1d0ac7c2016-04-29 22:03:27 +00002430/// Return the start of the specified element.
Chris Lattnere4f3f102012-01-24 04:43:41 +00002431const char *ConstantDataSequential::getElementPointer(unsigned Elt) const {
Chris Lattner00245f42012-01-24 13:41:11 +00002432 assert(Elt < getNumElements() && "Invalid Elt");
Chris Lattnere4f3f102012-01-24 04:43:41 +00002433 return DataElements+Elt*getElementByteSize();
2434}
2435
2436
Sanjay Patel1d0ac7c2016-04-29 22:03:27 +00002437/// Return true if the array is empty or all zeros.
Chris Lattner3756b912012-01-23 22:57:10 +00002438static bool isAllZeros(StringRef Arr) {
Benjamin Krameraf28e7d2016-06-26 14:10:56 +00002439 for (char I : Arr)
2440 if (I != 0)
Chris Lattner3756b912012-01-23 22:57:10 +00002441 return false;
2442 return true;
2443}
Chris Lattner030af792012-01-24 05:42:11 +00002444
Sanjay Patel1d0ac7c2016-04-29 22:03:27 +00002445/// This is the underlying implementation of all of the
Chris Lattner3756b912012-01-23 22:57:10 +00002446/// ConstantDataSequential::get methods. They all thunk down to here, providing
Chris Lattnerf06039b2012-01-30 18:19:30 +00002447/// the correct element type. We take the bytes in as a StringRef because
Chris Lattner3756b912012-01-23 22:57:10 +00002448/// we *want* an underlying "char*" to avoid TBAA type punning violations.
2449Constant *ConstantDataSequential::getImpl(StringRef Elements, Type *Ty) {
Chris Lattner8326bd82012-01-26 00:42:34 +00002450 assert(isElementTypeCompatible(Ty->getSequentialElementType()));
Chris Lattner139822f2012-01-24 14:17:05 +00002451 // If the elements are all zero or there are no elements, return a CAZ, which
2452 // is more dense and canonical.
Chris Lattner3756b912012-01-23 22:57:10 +00002453 if (isAllZeros(Elements))
2454 return ConstantAggregateZero::get(Ty);
2455
2456 // Do a lookup to see if we have already formed one of these.
David Blaikie5106ce72014-11-19 05:49:42 +00002457 auto &Slot =
2458 *Ty->getContext()
2459 .pImpl->CDSConstants.insert(std::make_pair(Elements, nullptr))
2460 .first;
Galina Kistanovafc259902012-07-13 01:25:27 +00002461
Chris Lattner3756b912012-01-23 22:57:10 +00002462 // The bucket can point to a linked list of different CDS's that have the same
2463 // body but different types. For example, 0,0,0,1 could be a 4 element array
2464 // of i8, or a 1-element array of i32. They'll both end up in the same
2465 /// StringMap bucket, linked up by their Next pointers. Walk the list.
David Blaikie5106ce72014-11-19 05:49:42 +00002466 ConstantDataSequential **Entry = &Slot.second;
Craig Topperc6207612014-04-09 06:08:46 +00002467 for (ConstantDataSequential *Node = *Entry; Node;
Chris Lattner3756b912012-01-23 22:57:10 +00002468 Entry = &Node->Next, Node = *Entry)
2469 if (Node->getType() == Ty)
2470 return Node;
Galina Kistanovafc259902012-07-13 01:25:27 +00002471
Chris Lattner3756b912012-01-23 22:57:10 +00002472 // Okay, we didn't get a hit. Create a node of the right class, link it in,
2473 // and return it.
2474 if (isa<ArrayType>(Ty))
David Blaikie5106ce72014-11-19 05:49:42 +00002475 return *Entry = new ConstantDataArray(Ty, Slot.first().data());
Chris Lattner3756b912012-01-23 22:57:10 +00002476
2477 assert(isa<VectorType>(Ty));
David Blaikie5106ce72014-11-19 05:49:42 +00002478 return *Entry = new ConstantDataVector(Ty, Slot.first().data());
Chris Lattner3756b912012-01-23 22:57:10 +00002479}
2480
Pete Cooper86dd4cf2015-06-23 21:55:11 +00002481void ConstantDataSequential::destroyConstantImpl() {
Chris Lattner3756b912012-01-23 22:57:10 +00002482 // Remove the constant from the StringMap.
Bjorn Petterssonaa025802018-07-03 12:39:52 +00002483 StringMap<ConstantDataSequential*> &CDSConstants =
Chris Lattner3756b912012-01-23 22:57:10 +00002484 getType()->getContext().pImpl->CDSConstants;
Galina Kistanovafc259902012-07-13 01:25:27 +00002485
Chris Lattner3756b912012-01-23 22:57:10 +00002486 StringMap<ConstantDataSequential*>::iterator Slot =
Chris Lattner5d4497b2012-01-24 09:31:43 +00002487 CDSConstants.find(getRawDataValues());
Chris Lattner3756b912012-01-23 22:57:10 +00002488
2489 assert(Slot != CDSConstants.end() && "CDS not found in uniquing table");
2490
2491 ConstantDataSequential **Entry = &Slot->getValue();
2492
2493 // Remove the entry from the hash table.
Craig Topperc6207612014-04-09 06:08:46 +00002494 if (!(*Entry)->Next) {
Chris Lattner3756b912012-01-23 22:57:10 +00002495 // If there is only one value in the bucket (common case) it must be this
2496 // entry, and removing the entry should remove the bucket completely.
2497 assert((*Entry) == this && "Hash mismatch in ConstantDataSequential");
2498 getContext().pImpl->CDSConstants.erase(Slot);
2499 } else {
Bjorn Petterssonaa025802018-07-03 12:39:52 +00002500 // Otherwise, there are multiple entries linked off the bucket, unlink the
Chris Lattner3756b912012-01-23 22:57:10 +00002501 // node we care about but keep the bucket around.
2502 for (ConstantDataSequential *Node = *Entry; ;
2503 Entry = &Node->Next, Node = *Entry) {
2504 assert(Node && "Didn't find entry in its uniquing hash table!");
2505 // If we found our entry, unlink it from the list and we're done.
2506 if (Node == this) {
2507 *Entry = Node->Next;
2508 break;
2509 }
2510 }
2511 }
Galina Kistanovafc259902012-07-13 01:25:27 +00002512
Chris Lattner3756b912012-01-23 22:57:10 +00002513 // If we were part of a list, make sure that we don't delete the list that is
2514 // still owned by the uniquing map.
Craig Topperc6207612014-04-09 06:08:46 +00002515 Next = nullptr;
Chris Lattner3756b912012-01-23 22:57:10 +00002516}
2517
Rafael Espindola8c97e192015-02-19 16:08:20 +00002518/// getFP() constructors - Return a constant with array type with an element
2519/// count and element type of float with precision matching the number of
2520/// bits in the ArrayRef passed in. (i.e. half for 16bits, float for 32bits,
2521/// double for 64bits) Note that this can return a ConstantAggregateZero
2522/// object.
2523Constant *ConstantDataArray::getFP(LLVMContext &Context,
2524 ArrayRef<uint16_t> Elts) {
Justin Bognerb7389d6712015-12-09 21:21:07 +00002525 Type *Ty = ArrayType::get(Type::getHalfTy(Context), Elts.size());
Rafael Espindola8c97e192015-02-19 16:08:20 +00002526 const char *Data = reinterpret_cast<const char *>(Elts.data());
Craig Topper393ce692017-07-11 15:52:21 +00002527 return getImpl(StringRef(Data, Elts.size() * 2), Ty);
Rafael Espindola8c97e192015-02-19 16:08:20 +00002528}
2529Constant *ConstantDataArray::getFP(LLVMContext &Context,
2530 ArrayRef<uint32_t> Elts) {
2531 Type *Ty = ArrayType::get(Type::getFloatTy(Context), Elts.size());
2532 const char *Data = reinterpret_cast<const char *>(Elts.data());
Craig Topper393ce692017-07-11 15:52:21 +00002533 return getImpl(StringRef(Data, Elts.size() * 4), Ty);
Rafael Espindola8c97e192015-02-19 16:08:20 +00002534}
2535Constant *ConstantDataArray::getFP(LLVMContext &Context,
2536 ArrayRef<uint64_t> Elts) {
2537 Type *Ty = ArrayType::get(Type::getDoubleTy(Context), Elts.size());
2538 const char *Data = reinterpret_cast<const char *>(Elts.data());
Craig Topper393ce692017-07-11 15:52:21 +00002539 return getImpl(StringRef(Data, Elts.size() * 8), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002540}
2541
Chris Lattner20683932012-01-24 14:04:40 +00002542Constant *ConstantDataArray::getString(LLVMContext &Context,
2543 StringRef Str, bool AddNull) {
Galina Kistanovafc259902012-07-13 01:25:27 +00002544 if (!AddNull) {
2545 const uint8_t *Data = reinterpret_cast<const uint8_t *>(Str.data());
Craig Topper393ce692017-07-11 15:52:21 +00002546 return get(Context, makeArrayRef(Data, Str.size()));
Galina Kistanovafc259902012-07-13 01:25:27 +00002547 }
2548
Chris Lattner20683932012-01-24 14:04:40 +00002549 SmallVector<uint8_t, 64> ElementVals;
2550 ElementVals.append(Str.begin(), Str.end());
2551 ElementVals.push_back(0);
2552 return get(Context, ElementVals);
2553}
Chris Lattner3756b912012-01-23 22:57:10 +00002554
2555/// get() constructors - Return a constant with vector type with an element
2556/// count and element type matching the ArrayRef passed in. Note that this
2557/// can return a ConstantAggregateZero object.
Chris Lattner20683932012-01-24 14:04:40 +00002558Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint8_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002559 Type *Ty = VectorType::get(Type::getInt8Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002560 const char *Data = reinterpret_cast<const char *>(Elts.data());
Craig Topper393ce692017-07-11 15:52:21 +00002561 return getImpl(StringRef(Data, Elts.size() * 1), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002562}
Chris Lattner20683932012-01-24 14:04:40 +00002563Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint16_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002564 Type *Ty = VectorType::get(Type::getInt16Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002565 const char *Data = reinterpret_cast<const char *>(Elts.data());
Craig Topper393ce692017-07-11 15:52:21 +00002566 return getImpl(StringRef(Data, Elts.size() * 2), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002567}
Chris Lattner20683932012-01-24 14:04:40 +00002568Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint32_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002569 Type *Ty = VectorType::get(Type::getInt32Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002570 const char *Data = reinterpret_cast<const char *>(Elts.data());
Craig Topper393ce692017-07-11 15:52:21 +00002571 return getImpl(StringRef(Data, Elts.size() * 4), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002572}
Chris Lattner20683932012-01-24 14:04:40 +00002573Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint64_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002574 Type *Ty = VectorType::get(Type::getInt64Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002575 const char *Data = reinterpret_cast<const char *>(Elts.data());
Craig Topper393ce692017-07-11 15:52:21 +00002576 return getImpl(StringRef(Data, Elts.size() * 8), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002577}
Chris Lattner20683932012-01-24 14:04:40 +00002578Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<float> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002579 Type *Ty = VectorType::get(Type::getFloatTy(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002580 const char *Data = reinterpret_cast<const char *>(Elts.data());
Craig Topper393ce692017-07-11 15:52:21 +00002581 return getImpl(StringRef(Data, Elts.size() * 4), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002582}
Chris Lattner20683932012-01-24 14:04:40 +00002583Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<double> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002584 Type *Ty = VectorType::get(Type::getDoubleTy(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002585 const char *Data = reinterpret_cast<const char *>(Elts.data());
Craig Topper393ce692017-07-11 15:52:21 +00002586 return getImpl(StringRef(Data, Elts.size() * 8), Ty);
Rafael Espindola8c97e192015-02-19 16:08:20 +00002587}
2588
2589/// getFP() constructors - Return a constant with vector type with an element
2590/// count and element type of float with the precision matching the number of
2591/// bits in the ArrayRef passed in. (i.e. half for 16bits, float for 32bits,
2592/// double for 64bits) Note that this can return a ConstantAggregateZero
2593/// object.
2594Constant *ConstantDataVector::getFP(LLVMContext &Context,
2595 ArrayRef<uint16_t> Elts) {
2596 Type *Ty = VectorType::get(Type::getHalfTy(Context), Elts.size());
2597 const char *Data = reinterpret_cast<const char *>(Elts.data());
Craig Topper393ce692017-07-11 15:52:21 +00002598 return getImpl(StringRef(Data, Elts.size() * 2), Ty);
Rafael Espindola8c97e192015-02-19 16:08:20 +00002599}
2600Constant *ConstantDataVector::getFP(LLVMContext &Context,
2601 ArrayRef<uint32_t> Elts) {
2602 Type *Ty = VectorType::get(Type::getFloatTy(Context), Elts.size());
2603 const char *Data = reinterpret_cast<const char *>(Elts.data());
Craig Topper393ce692017-07-11 15:52:21 +00002604 return getImpl(StringRef(Data, Elts.size() * 4), Ty);
Rafael Espindola8c97e192015-02-19 16:08:20 +00002605}
2606Constant *ConstantDataVector::getFP(LLVMContext &Context,
2607 ArrayRef<uint64_t> Elts) {
2608 Type *Ty = VectorType::get(Type::getDoubleTy(Context), Elts.size());
2609 const char *Data = reinterpret_cast<const char *>(Elts.data());
Craig Topper393ce692017-07-11 15:52:21 +00002610 return getImpl(StringRef(Data, Elts.size() * 8), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002611}
2612
Chris Lattnere9eed292012-01-25 05:19:54 +00002613Constant *ConstantDataVector::getSplat(unsigned NumElts, Constant *V) {
2614 assert(isElementTypeCompatible(V->getType()) &&
2615 "Element type not compatible with ConstantData");
2616 if (ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
2617 if (CI->getType()->isIntegerTy(8)) {
2618 SmallVector<uint8_t, 16> Elts(NumElts, CI->getZExtValue());
2619 return get(V->getContext(), Elts);
2620 }
2621 if (CI->getType()->isIntegerTy(16)) {
2622 SmallVector<uint16_t, 16> Elts(NumElts, CI->getZExtValue());
2623 return get(V->getContext(), Elts);
2624 }
2625 if (CI->getType()->isIntegerTy(32)) {
2626 SmallVector<uint32_t, 16> Elts(NumElts, CI->getZExtValue());
2627 return get(V->getContext(), Elts);
2628 }
2629 assert(CI->getType()->isIntegerTy(64) && "Unsupported ConstantData type");
2630 SmallVector<uint64_t, 16> Elts(NumElts, CI->getZExtValue());
2631 return get(V->getContext(), Elts);
2632 }
2633
Chris Lattner978fe0c2012-01-30 06:21:21 +00002634 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V)) {
Justin Bogner0ebc8602015-12-08 03:01:16 +00002635 if (CFP->getType()->isHalfTy()) {
2636 SmallVector<uint16_t, 16> Elts(
2637 NumElts, CFP->getValueAPF().bitcastToAPInt().getLimitedValue());
2638 return getFP(V->getContext(), Elts);
2639 }
Chris Lattner978fe0c2012-01-30 06:21:21 +00002640 if (CFP->getType()->isFloatTy()) {
Rafael Espindola8c97e192015-02-19 16:08:20 +00002641 SmallVector<uint32_t, 16> Elts(
2642 NumElts, CFP->getValueAPF().bitcastToAPInt().getLimitedValue());
2643 return getFP(V->getContext(), Elts);
Chris Lattner978fe0c2012-01-30 06:21:21 +00002644 }
2645 if (CFP->getType()->isDoubleTy()) {
Rafael Espindola8c97e192015-02-19 16:08:20 +00002646 SmallVector<uint64_t, 16> Elts(
2647 NumElts, CFP->getValueAPF().bitcastToAPInt().getLimitedValue());
2648 return getFP(V->getContext(), Elts);
Chris Lattner978fe0c2012-01-30 06:21:21 +00002649 }
Chris Lattnere9eed292012-01-25 05:19:54 +00002650 }
Chris Lattner978fe0c2012-01-30 06:21:21 +00002651 return ConstantVector::getSplat(NumElts, V);
Chris Lattnere9eed292012-01-25 05:19:54 +00002652}
2653
2654
Chris Lattnere4f3f102012-01-24 04:43:41 +00002655uint64_t ConstantDataSequential::getElementAsInteger(unsigned Elt) const {
2656 assert(isa<IntegerType>(getElementType()) &&
2657 "Accessor can only be used when element is an integer");
2658 const char *EltPtr = getElementPointer(Elt);
Galina Kistanovafc259902012-07-13 01:25:27 +00002659
Chris Lattnere4f3f102012-01-24 04:43:41 +00002660 // The data is stored in host byte order, make sure to cast back to the right
2661 // type to load with the right endianness.
Chris Lattner8326bd82012-01-26 00:42:34 +00002662 switch (getElementType()->getIntegerBitWidth()) {
Craig Topperc514b542012-02-05 22:14:15 +00002663 default: llvm_unreachable("Invalid bitwidth for CDS");
Galina Kistanovafc259902012-07-13 01:25:27 +00002664 case 8:
Craig Topper393ce692017-07-11 15:52:21 +00002665 return *reinterpret_cast<const uint8_t *>(EltPtr);
Galina Kistanovafc259902012-07-13 01:25:27 +00002666 case 16:
Craig Topper393ce692017-07-11 15:52:21 +00002667 return *reinterpret_cast<const uint16_t *>(EltPtr);
Galina Kistanovafc259902012-07-13 01:25:27 +00002668 case 32:
Craig Topper393ce692017-07-11 15:52:21 +00002669 return *reinterpret_cast<const uint32_t *>(EltPtr);
Galina Kistanovafc259902012-07-13 01:25:27 +00002670 case 64:
Craig Topper393ce692017-07-11 15:52:21 +00002671 return *reinterpret_cast<const uint64_t *>(EltPtr);
Chris Lattnere4f3f102012-01-24 04:43:41 +00002672 }
2673}
2674
Craig Topper0b4b4e32017-07-15 22:06:19 +00002675APInt ConstantDataSequential::getElementAsAPInt(unsigned Elt) const {
2676 assert(isa<IntegerType>(getElementType()) &&
2677 "Accessor can only be used when element is an integer");
2678 const char *EltPtr = getElementPointer(Elt);
2679
2680 // The data is stored in host byte order, make sure to cast back to the right
2681 // type to load with the right endianness.
2682 switch (getElementType()->getIntegerBitWidth()) {
2683 default: llvm_unreachable("Invalid bitwidth for CDS");
2684 case 8: {
2685 auto EltVal = *reinterpret_cast<const uint8_t *>(EltPtr);
2686 return APInt(8, EltVal);
2687 }
2688 case 16: {
2689 auto EltVal = *reinterpret_cast<const uint16_t *>(EltPtr);
2690 return APInt(16, EltVal);
2691 }
2692 case 32: {
2693 auto EltVal = *reinterpret_cast<const uint32_t *>(EltPtr);
2694 return APInt(32, EltVal);
2695 }
2696 case 64: {
2697 auto EltVal = *reinterpret_cast<const uint64_t *>(EltPtr);
2698 return APInt(64, EltVal);
2699 }
2700 }
2701}
2702
Chris Lattnere4f3f102012-01-24 04:43:41 +00002703APFloat ConstantDataSequential::getElementAsAPFloat(unsigned Elt) const {
2704 const char *EltPtr = getElementPointer(Elt);
2705
2706 switch (getElementType()->getTypeID()) {
Nick Lewyckyff509622012-01-25 03:20:12 +00002707 default:
Craig Topperc514b542012-02-05 22:14:15 +00002708 llvm_unreachable("Accessor can only be used when element is float/double!");
Justin Bogner0ebc8602015-12-08 03:01:16 +00002709 case Type::HalfTyID: {
2710 auto EltVal = *reinterpret_cast<const uint16_t *>(EltPtr);
Stephan Bergmann17c7f702016-12-14 11:57:17 +00002711 return APFloat(APFloat::IEEEhalf(), APInt(16, EltVal));
Justin Bogner0ebc8602015-12-08 03:01:16 +00002712 }
Benjamin Kramer7af984b2015-02-20 15:11:55 +00002713 case Type::FloatTyID: {
2714 auto EltVal = *reinterpret_cast<const uint32_t *>(EltPtr);
Stephan Bergmann17c7f702016-12-14 11:57:17 +00002715 return APFloat(APFloat::IEEEsingle(), APInt(32, EltVal));
Benjamin Kramer7af984b2015-02-20 15:11:55 +00002716 }
2717 case Type::DoubleTyID: {
2718 auto EltVal = *reinterpret_cast<const uint64_t *>(EltPtr);
Stephan Bergmann17c7f702016-12-14 11:57:17 +00002719 return APFloat(APFloat::IEEEdouble(), APInt(64, EltVal));
Chris Lattnere4f3f102012-01-24 04:43:41 +00002720 }
Benjamin Kramer7af984b2015-02-20 15:11:55 +00002721 }
Chris Lattnere4f3f102012-01-24 04:43:41 +00002722}
2723
Chris Lattnere4f3f102012-01-24 04:43:41 +00002724float ConstantDataSequential::getElementAsFloat(unsigned Elt) const {
2725 assert(getElementType()->isFloatTy() &&
2726 "Accessor can only be used when element is a 'float'");
Craig Topper393ce692017-07-11 15:52:21 +00002727 return *reinterpret_cast<const float *>(getElementPointer(Elt));
Chris Lattnere4f3f102012-01-24 04:43:41 +00002728}
2729
Chris Lattnere4f3f102012-01-24 04:43:41 +00002730double ConstantDataSequential::getElementAsDouble(unsigned Elt) const {
2731 assert(getElementType()->isDoubleTy() &&
2732 "Accessor can only be used when element is a 'float'");
Craig Topper393ce692017-07-11 15:52:21 +00002733 return *reinterpret_cast<const double *>(getElementPointer(Elt));
Chris Lattnere4f3f102012-01-24 04:43:41 +00002734}
2735
Chris Lattnere4f3f102012-01-24 04:43:41 +00002736Constant *ConstantDataSequential::getElementAsConstant(unsigned Elt) const {
Justin Bogner0ebc8602015-12-08 03:01:16 +00002737 if (getElementType()->isHalfTy() || getElementType()->isFloatTy() ||
2738 getElementType()->isDoubleTy())
Chris Lattnere4f3f102012-01-24 04:43:41 +00002739 return ConstantFP::get(getContext(), getElementAsAPFloat(Elt));
Galina Kistanovafc259902012-07-13 01:25:27 +00002740
Chris Lattnere4f3f102012-01-24 04:43:41 +00002741 return ConstantInt::get(getElementType(), getElementAsInteger(Elt));
2742}
2743
Matthias Braun50ec0b52017-05-19 22:37:09 +00002744bool ConstantDataSequential::isString(unsigned CharSize) const {
2745 return isa<ArrayType>(getType()) && getElementType()->isIntegerTy(CharSize);
Chris Lattner5dd4d872012-01-24 09:01:07 +00002746}
Chris Lattner3756b912012-01-23 22:57:10 +00002747
Chris Lattner5dd4d872012-01-24 09:01:07 +00002748bool ConstantDataSequential::isCString() const {
2749 if (!isString())
2750 return false;
Galina Kistanovafc259902012-07-13 01:25:27 +00002751
Chris Lattner5dd4d872012-01-24 09:01:07 +00002752 StringRef Str = getAsString();
Galina Kistanovafc259902012-07-13 01:25:27 +00002753
Chris Lattner5dd4d872012-01-24 09:01:07 +00002754 // The last value must be nul.
2755 if (Str.back() != 0) return false;
Galina Kistanovafc259902012-07-13 01:25:27 +00002756
Chris Lattner5dd4d872012-01-24 09:01:07 +00002757 // Other elements must be non-nul.
2758 return Str.drop_back().find(0) == StringRef::npos;
2759}
Chris Lattner3756b912012-01-23 22:57:10 +00002760
Craig Topper0b4b4e32017-07-15 22:06:19 +00002761bool ConstantDataVector::isSplat() const {
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002762 const char *Base = getRawDataValues().data();
Galina Kistanovafc259902012-07-13 01:25:27 +00002763
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002764 // Compare elements 1+ to the 0'th element.
2765 unsigned EltSize = getElementByteSize();
2766 for (unsigned i = 1, e = getNumElements(); i != e; ++i)
2767 if (memcmp(Base, Base+i*EltSize, EltSize))
Craig Topper0b4b4e32017-07-15 22:06:19 +00002768 return false;
Galina Kistanovafc259902012-07-13 01:25:27 +00002769
Craig Topper0b4b4e32017-07-15 22:06:19 +00002770 return true;
2771}
2772
2773Constant *ConstantDataVector::getSplatValue() const {
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002774 // If they're all the same, return the 0th one as a representative.
Craig Topper0b4b4e32017-07-15 22:06:19 +00002775 return isSplat() ? getElementAsConstant(0) : nullptr;
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002776}
Chris Lattnera3b94ba2010-03-30 20:48:48 +00002777
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002778//===----------------------------------------------------------------------===//
Pete Cooper5815b1f2015-06-24 18:55:24 +00002779// handleOperandChange implementations
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002780
Pete Cooper5815b1f2015-06-24 18:55:24 +00002781/// Update this constant array to change uses of
Chris Lattner913849b2007-08-21 00:55:23 +00002782/// 'From' to be uses of 'To'. This must update the uniquing data structures
2783/// etc.
2784///
2785/// Note that we intentionally replace all uses of From with To here. Consider
2786/// a large array that uses 'From' 1000 times. By handling this case all here,
Pete Cooper5815b1f2015-06-24 18:55:24 +00002787/// ConstantArray::handleOperandChange is only invoked once, and that
Chris Lattner913849b2007-08-21 00:55:23 +00002788/// single invocation handles all 1000 uses. Handling them one at a time would
2789/// work, but would be really slow because it would have to unique each updated
2790/// array instance.
Chris Lattner31b132c2009-10-28 00:01:44 +00002791///
Mehdi Amini8914d292016-02-10 22:47:15 +00002792void Constant::handleOperandChange(Value *From, Value *To) {
Pete Cooper5815b1f2015-06-24 18:55:24 +00002793 Value *Replacement = nullptr;
2794 switch (getValueID()) {
2795 default:
2796 llvm_unreachable("Not a constant!");
2797#define HANDLE_CONSTANT(Name) \
2798 case Value::Name##Val: \
Mehdi Amini8914d292016-02-10 22:47:15 +00002799 Replacement = cast<Name>(this)->handleOperandChangeImpl(From, To); \
Pete Cooper5815b1f2015-06-24 18:55:24 +00002800 break;
2801#include "llvm/IR/Value.def"
2802 }
2803
2804 // If handleOperandChangeImpl returned nullptr, then it handled
2805 // replacing itself and we don't want to delete or replace anything else here.
2806 if (!Replacement)
2807 return;
2808
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002809 // I do need to replace this with an existing value.
2810 assert(Replacement != this && "I didn't contain From!");
2811
2812 // Everyone using this now uses the replacement.
2813 replaceAllUsesWith(Replacement);
2814
2815 // Delete the old constant!
2816 destroyConstant();
2817}
2818
Mehdi Amini8914d292016-02-10 22:47:15 +00002819Value *ConstantArray::handleOperandChangeImpl(Value *From, Value *To) {
Owen Andersonc2c79322009-07-28 18:32:17 +00002820 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2821 Constant *ToC = cast<Constant>(To);
2822
Talin46e9b442012-02-05 20:54:10 +00002823 SmallVector<Constant*, 8> Values;
Owen Andersonc2c79322009-07-28 18:32:17 +00002824 Values.reserve(getNumOperands()); // Build replacement array.
2825
Galina Kistanovafc259902012-07-13 01:25:27 +00002826 // Fill values with the modified operands of the constant array. Also,
Owen Andersonc2c79322009-07-28 18:32:17 +00002827 // compute whether this turns into an all-zeros array.
Owen Andersonc2c79322009-07-28 18:32:17 +00002828 unsigned NumUpdated = 0;
Galina Kistanovafc259902012-07-13 01:25:27 +00002829
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002830 // Keep track of whether all the values in the array are "ToC".
2831 bool AllSame = true;
Pete Cooper74510a42015-06-12 17:48:05 +00002832 Use *OperandList = getOperandList();
Mehdi Amini8914d292016-02-10 22:47:15 +00002833 unsigned OperandNo = 0;
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002834 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2835 Constant *Val = cast<Constant>(O->get());
2836 if (Val == From) {
Mehdi Amini8914d292016-02-10 22:47:15 +00002837 OperandNo = (O - OperandList);
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002838 Val = ToC;
2839 ++NumUpdated;
Owen Andersonc2c79322009-07-28 18:32:17 +00002840 }
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002841 Values.push_back(Val);
Talin46e9b442012-02-05 20:54:10 +00002842 AllSame &= Val == ToC;
Owen Andersonc2c79322009-07-28 18:32:17 +00002843 }
Galina Kistanovafc259902012-07-13 01:25:27 +00002844
Pete Cooper5815b1f2015-06-24 18:55:24 +00002845 if (AllSame && ToC->isNullValue())
2846 return ConstantAggregateZero::get(getType());
2847
2848 if (AllSame && isa<UndefValue>(ToC))
2849 return UndefValue::get(getType());
Aaron Ballmane4b91dc2014-08-19 14:59:02 +00002850
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002851 // Check for any other type of constant-folding.
Pete Cooper5815b1f2015-06-24 18:55:24 +00002852 if (Constant *C = getImpl(getType(), Values))
2853 return C;
Aaron Ballmane4b91dc2014-08-19 14:59:02 +00002854
Duncan P. N. Exon Smith909620a2014-08-19 19:13:30 +00002855 // Update to the new value.
Pete Cooper5815b1f2015-06-24 18:55:24 +00002856 return getContext().pImpl->ArrayConstants.replaceOperandsInPlace(
Mehdi Amini8914d292016-02-10 22:47:15 +00002857 Values, this, From, ToC, NumUpdated, OperandNo);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002858}
2859
Mehdi Amini8914d292016-02-10 22:47:15 +00002860Value *ConstantStruct::handleOperandChangeImpl(Value *From, Value *To) {
Owen Anderson45308b52009-07-27 22:29:26 +00002861 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2862 Constant *ToC = cast<Constant>(To);
2863
Pete Cooper74510a42015-06-12 17:48:05 +00002864 Use *OperandList = getOperandList();
Owen Anderson45308b52009-07-27 22:29:26 +00002865
Talin46e9b442012-02-05 20:54:10 +00002866 SmallVector<Constant*, 8> Values;
Owen Anderson45308b52009-07-27 22:29:26 +00002867 Values.reserve(getNumOperands()); // Build replacement struct.
Galina Kistanovafc259902012-07-13 01:25:27 +00002868
2869 // Fill values with the modified operands of the constant struct. Also,
Owen Anderson45308b52009-07-27 22:29:26 +00002870 // compute whether this turns into an all-zeros struct.
Mehdi Amini8914d292016-02-10 22:47:15 +00002871 unsigned NumUpdated = 0;
2872 bool AllSame = true;
2873 unsigned OperandNo = 0;
2874 for (Use *O = OperandList, *E = OperandList + getNumOperands(); O != E; ++O) {
2875 Constant *Val = cast<Constant>(O->get());
2876 if (Val == From) {
2877 OperandNo = (O - OperandList);
2878 Val = ToC;
2879 ++NumUpdated;
Owen Anderson45308b52009-07-27 22:29:26 +00002880 }
Mehdi Amini8914d292016-02-10 22:47:15 +00002881 Values.push_back(Val);
2882 AllSame &= Val == ToC;
Owen Anderson45308b52009-07-27 22:29:26 +00002883 }
Galina Kistanovafc259902012-07-13 01:25:27 +00002884
Mehdi Amini8914d292016-02-10 22:47:15 +00002885 if (AllSame && ToC->isNullValue())
Pete Cooper5815b1f2015-06-24 18:55:24 +00002886 return ConstantAggregateZero::get(getType());
2887
Mehdi Amini8914d292016-02-10 22:47:15 +00002888 if (AllSame && isa<UndefValue>(ToC))
Pete Cooper5815b1f2015-06-24 18:55:24 +00002889 return UndefValue::get(getType());
Galina Kistanovafc259902012-07-13 01:25:27 +00002890
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002891 // Update to the new value.
Pete Cooper5815b1f2015-06-24 18:55:24 +00002892 return getContext().pImpl->StructConstants.replaceOperandsInPlace(
Mehdi Amini8914d292016-02-10 22:47:15 +00002893 Values, this, From, ToC, NumUpdated, OperandNo);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002894}
2895
Mehdi Amini8914d292016-02-10 22:47:15 +00002896Value *ConstantVector::handleOperandChangeImpl(Value *From, Value *To) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002897 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002898 Constant *ToC = cast<Constant>(To);
Galina Kistanovafc259902012-07-13 01:25:27 +00002899
Chris Lattnera474bb22012-01-26 20:40:56 +00002900 SmallVector<Constant*, 8> Values;
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002901 Values.reserve(getNumOperands()); // Build replacement array...
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002902 unsigned NumUpdated = 0;
Mehdi Amini8914d292016-02-10 22:47:15 +00002903 unsigned OperandNo = 0;
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002904 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
2905 Constant *Val = getOperand(i);
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002906 if (Val == From) {
Mehdi Amini8914d292016-02-10 22:47:15 +00002907 OperandNo = i;
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002908 ++NumUpdated;
2909 Val = ToC;
2910 }
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002911 Values.push_back(Val);
2912 }
Galina Kistanovafc259902012-07-13 01:25:27 +00002913
Pete Cooper5815b1f2015-06-24 18:55:24 +00002914 if (Constant *C = getImpl(Values))
2915 return C;
Duncan P. N. Exon Smith687744d2014-08-19 02:24:46 +00002916
Duncan P. N. Exon Smith909620a2014-08-19 19:13:30 +00002917 // Update to the new value.
Pete Cooper5815b1f2015-06-24 18:55:24 +00002918 return getContext().pImpl->VectorConstants.replaceOperandsInPlace(
Mehdi Amini8914d292016-02-10 22:47:15 +00002919 Values, this, From, ToC, NumUpdated, OperandNo);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002920}
2921
Mehdi Amini8914d292016-02-10 22:47:15 +00002922Value *ConstantExpr::handleOperandChangeImpl(Value *From, Value *ToV) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002923 assert(isa<Constant>(ToV) && "Cannot make Constant refer to non-constant!");
2924 Constant *To = cast<Constant>(ToV);
Galina Kistanovafc259902012-07-13 01:25:27 +00002925
Chris Lattner37e38352012-01-26 20:37:11 +00002926 SmallVector<Constant*, 8> NewOps;
Duncan P. N. Exon Smith33de00c2014-08-19 20:03:35 +00002927 unsigned NumUpdated = 0;
Mehdi Amini8914d292016-02-10 22:47:15 +00002928 unsigned OperandNo = 0;
Chris Lattner37e38352012-01-26 20:37:11 +00002929 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
2930 Constant *Op = getOperand(i);
Duncan P. N. Exon Smith33de00c2014-08-19 20:03:35 +00002931 if (Op == From) {
Mehdi Amini8914d292016-02-10 22:47:15 +00002932 OperandNo = i;
Duncan P. N. Exon Smith33de00c2014-08-19 20:03:35 +00002933 ++NumUpdated;
2934 Op = To;
2935 }
2936 NewOps.push_back(Op);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002937 }
Duncan P. N. Exon Smith33de00c2014-08-19 20:03:35 +00002938 assert(NumUpdated && "I didn't contain From!");
Galina Kistanovafc259902012-07-13 01:25:27 +00002939
Pete Cooper5815b1f2015-06-24 18:55:24 +00002940 if (Constant *C = getWithOperands(NewOps, getType(), true))
2941 return C;
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002942
Duncan P. N. Exon Smith33de00c2014-08-19 20:03:35 +00002943 // Update to the new value.
Pete Cooper5815b1f2015-06-24 18:55:24 +00002944 return getContext().pImpl->ExprConstants.replaceOperandsInPlace(
Mehdi Amini8914d292016-02-10 22:47:15 +00002945 NewOps, this, From, To, NumUpdated, OperandNo);
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002946}
2947
James Molloyce545682012-11-17 17:56:30 +00002948Instruction *ConstantExpr::getAsInstruction() {
Benjamin Kramer5fbfe2f2015-02-28 13:20:15 +00002949 SmallVector<Value *, 4> ValueOperands(op_begin(), op_end());
James Molloyce545682012-11-17 17:56:30 +00002950 ArrayRef<Value*> Ops(ValueOperands);
2951
2952 switch (getOpcode()) {
2953 case Instruction::Trunc:
2954 case Instruction::ZExt:
2955 case Instruction::SExt:
2956 case Instruction::FPTrunc:
2957 case Instruction::FPExt:
2958 case Instruction::UIToFP:
2959 case Instruction::SIToFP:
2960 case Instruction::FPToUI:
2961 case Instruction::FPToSI:
2962 case Instruction::PtrToInt:
2963 case Instruction::IntToPtr:
2964 case Instruction::BitCast:
Eli Bendersky157a97a2014-01-18 22:54:33 +00002965 case Instruction::AddrSpaceCast:
James Molloyce545682012-11-17 17:56:30 +00002966 return CastInst::Create((Instruction::CastOps)getOpcode(),
2967 Ops[0], getType());
2968 case Instruction::Select:
2969 return SelectInst::Create(Ops[0], Ops[1], Ops[2]);
2970 case Instruction::InsertElement:
2971 return InsertElementInst::Create(Ops[0], Ops[1], Ops[2]);
2972 case Instruction::ExtractElement:
2973 return ExtractElementInst::Create(Ops[0], Ops[1]);
2974 case Instruction::InsertValue:
2975 return InsertValueInst::Create(Ops[0], Ops[1], getIndices());
2976 case Instruction::ExtractValue:
2977 return ExtractValueInst::Create(Ops[0], getIndices());
2978 case Instruction::ShuffleVector:
2979 return new ShuffleVectorInst(Ops[0], Ops[1], Ops[2]);
2980
David Blaikie741c8f82015-03-14 01:53:18 +00002981 case Instruction::GetElementPtr: {
2982 const auto *GO = cast<GEPOperator>(this);
2983 if (GO->isInBounds())
2984 return GetElementPtrInst::CreateInBounds(GO->getSourceElementType(),
2985 Ops[0], Ops.slice(1));
2986 return GetElementPtrInst::Create(GO->getSourceElementType(), Ops[0],
2987 Ops.slice(1));
2988 }
James Molloyce545682012-11-17 17:56:30 +00002989 case Instruction::ICmp:
2990 case Instruction::FCmp:
2991 return CmpInst::Create((Instruction::OtherOps)getOpcode(),
Craig Topper1c3f2832015-12-15 06:11:33 +00002992 (CmpInst::Predicate)getPredicate(), Ops[0], Ops[1]);
James Molloyce545682012-11-17 17:56:30 +00002993
2994 default:
2995 assert(getNumOperands() == 2 && "Must be binary operator?");
2996 BinaryOperator *BO =
2997 BinaryOperator::Create((Instruction::BinaryOps)getOpcode(),
2998 Ops[0], Ops[1]);
2999 if (isa<OverflowingBinaryOperator>(BO)) {
3000 BO->setHasNoUnsignedWrap(SubclassOptionalData &
3001 OverflowingBinaryOperator::NoUnsignedWrap);
3002 BO->setHasNoSignedWrap(SubclassOptionalData &
3003 OverflowingBinaryOperator::NoSignedWrap);
3004 }
3005 if (isa<PossiblyExactOperator>(BO))
3006 BO->setIsExact(SubclassOptionalData & PossiblyExactOperator::IsExact);
3007 return BO;
3008 }
3009}