blob: b237c913dcf1e6fc763afc94e8f3d53158d300ee [file] [log] [blame]
Chris Lattner2b383d2e2003-05-13 21:37:02 +00001//===-- Constants.cpp - Implement Constant nodes --------------------------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
John Criswell482202a2003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanb1c93172005-04-21 23:48:37 +00007//
John Criswell482202a2003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +00009//
Chris Lattnere17322b2011-02-07 20:03:14 +000010// This file implements the Constant* classes.
Chris Lattner2f7c9632001-06-06 20:29:01 +000011//
12//===----------------------------------------------------------------------===//
13
Chandler Carruth9fb823b2013-01-02 11:36:10 +000014#include "llvm/IR/Constants.h"
Chris Lattner33e93b82007-02-27 03:05:06 +000015#include "ConstantFold.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000016#include "LLVMContextImpl.h"
17#include "llvm/ADT/DenseMap.h"
18#include "llvm/ADT/FoldingSet.h"
19#include "llvm/ADT/STLExtras.h"
20#include "llvm/ADT/SmallVector.h"
21#include "llvm/ADT/StringExtras.h"
22#include "llvm/ADT/StringMap.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000023#include "llvm/IR/DerivedTypes.h"
Chandler Carruth03eb0de2014-03-04 10:40:04 +000024#include "llvm/IR/GetElementPtrTypeIterator.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000025#include "llvm/IR/GlobalValue.h"
26#include "llvm/IR/Instructions.h"
27#include "llvm/IR/Module.h"
28#include "llvm/IR/Operator.h"
Chris Lattner3d27be12006-08-27 12:54:02 +000029#include "llvm/Support/Compiler.h"
Bill Wendling6a462f12006-11-17 08:03:48 +000030#include "llvm/Support/Debug.h"
Torok Edwinccb29cd2009-07-11 13:10:19 +000031#include "llvm/Support/ErrorHandling.h"
Chris Lattner69edc982006-09-28 00:35:06 +000032#include "llvm/Support/ManagedStatic.h"
Bill Wendling6a462f12006-11-17 08:03:48 +000033#include "llvm/Support/MathExtras.h"
Chris Lattner78683a72009-08-23 04:02:03 +000034#include "llvm/Support/raw_ostream.h"
Chris Lattner2f7c9632001-06-06 20:29:01 +000035#include <algorithm>
Talin3a0a30d2011-02-28 23:53:27 +000036#include <cstdarg>
Chris Lattner189d19f2003-11-21 20:23:48 +000037using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000038
Chris Lattner2f7c9632001-06-06 20:29:01 +000039//===----------------------------------------------------------------------===//
Chris Lattner3462ae32001-12-03 22:26:30 +000040// Constant Class
Chris Lattner2f7c9632001-06-06 20:29:01 +000041//===----------------------------------------------------------------------===//
42
David Blaikiea379b1812011-12-20 02:50:00 +000043void Constant::anchor() { }
44
Chris Lattnerac5fb562011-07-15 05:58:04 +000045bool Constant::isNegativeZeroValue() const {
46 // Floating point values have an explicit -0.0 value.
47 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
48 return CFP->isZero() && CFP->isNegative();
Galina Kistanovafc259902012-07-13 01:25:27 +000049
David Tweed5493fee2013-03-18 11:54:44 +000050 // Equivalent for a vector of -0.0's.
51 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this))
52 if (ConstantFP *SplatCFP = dyn_cast_or_null<ConstantFP>(CV->getSplatValue()))
53 if (SplatCFP && SplatCFP->isZero() && SplatCFP->isNegative())
54 return true;
55
David Tweed298e4192013-03-19 10:16:40 +000056 // We've already handled true FP case; any other FP vectors can't represent -0.0.
57 if (getType()->isFPOrFPVectorTy())
58 return false;
David Tweed5493fee2013-03-18 11:54:44 +000059
Chris Lattnerac5fb562011-07-15 05:58:04 +000060 // Otherwise, just use +0.0.
61 return isNullValue();
62}
63
Shuxin Yang9ca562e2013-01-09 00:53:25 +000064// Return true iff this constant is positive zero (floating point), negative
65// zero (floating point), or a null value.
Shuxin Yangf0537ab2013-01-09 00:13:41 +000066bool Constant::isZeroValue() const {
67 // Floating point values have an explicit -0.0 value.
68 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
69 return CFP->isZero();
70
Owen Anderson630077e2015-11-20 08:16:13 +000071 // Equivalent for a vector of -0.0's.
72 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this))
73 if (ConstantFP *SplatCFP = dyn_cast_or_null<ConstantFP>(CV->getSplatValue()))
74 if (SplatCFP && SplatCFP->isZero())
75 return true;
76
Shuxin Yangf0537ab2013-01-09 00:13:41 +000077 // Otherwise, just use +0.0.
78 return isNullValue();
79}
80
Chris Lattnerbe6610c2011-07-15 06:14:08 +000081bool Constant::isNullValue() const {
82 // 0 is null.
83 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
84 return CI->isZero();
Galina Kistanovafc259902012-07-13 01:25:27 +000085
Chris Lattnerbe6610c2011-07-15 06:14:08 +000086 // +0.0 is null.
87 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
88 return CFP->isZero() && !CFP->isNegative();
89
David Majnemerf0f224d2015-11-11 21:57:16 +000090 // constant zero is zero for aggregates, cpnull is null for pointers, none for
91 // tokens.
92 return isa<ConstantAggregateZero>(this) || isa<ConstantPointerNull>(this) ||
93 isa<ConstantTokenNone>(this);
Chris Lattnerbe6610c2011-07-15 06:14:08 +000094}
95
Nadav Rotem365af6f2011-08-24 20:18:38 +000096bool Constant::isAllOnesValue() const {
97 // Check for -1 integers
98 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
99 return CI->isMinusOne();
100
101 // Check for FP which are bitcasted from -1 integers
102 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
103 return CFP->getValueAPF().bitcastToAPInt().isAllOnesValue();
104
Benjamin Kramer42d098e2011-11-14 19:12:20 +0000105 // Check for constant vectors which are splats of -1 values.
Nadav Rotem365af6f2011-08-24 20:18:38 +0000106 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
Benjamin Kramer42d098e2011-11-14 19:12:20 +0000107 if (Constant *Splat = CV->getSplatValue())
108 return Splat->isAllOnesValue();
Nadav Rotem365af6f2011-08-24 20:18:38 +0000109
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000110 // Check for constant vectors which are splats of -1 values.
111 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this))
112 if (Constant *Splat = CV->getSplatValue())
113 return Splat->isAllOnesValue();
114
Nadav Rotem365af6f2011-08-24 20:18:38 +0000115 return false;
116}
Benjamin Kramer42d098e2011-11-14 19:12:20 +0000117
David Majnemer1a0bbc82014-08-16 09:23:42 +0000118bool Constant::isOneValue() const {
119 // Check for 1 integers
120 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
121 return CI->isOne();
122
123 // Check for FP which are bitcasted from 1 integers
124 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
125 return CFP->getValueAPF().bitcastToAPInt() == 1;
126
127 // Check for constant vectors which are splats of 1 values.
128 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
129 if (Constant *Splat = CV->getSplatValue())
130 return Splat->isOneValue();
131
132 // Check for constant vectors which are splats of 1 values.
133 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this))
134 if (Constant *Splat = CV->getSplatValue())
135 return Splat->isOneValue();
136
137 return false;
138}
139
David Majnemerbdeef602014-07-02 06:07:09 +0000140bool Constant::isMinSignedValue() const {
141 // Check for INT_MIN integers
142 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
143 return CI->isMinValue(/*isSigned=*/true);
144
145 // Check for FP which are bitcasted from INT_MIN integers
146 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
147 return CFP->getValueAPF().bitcastToAPInt().isMinSignedValue();
148
149 // Check for constant vectors which are splats of INT_MIN values.
150 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
151 if (Constant *Splat = CV->getSplatValue())
152 return Splat->isMinSignedValue();
153
154 // Check for constant vectors which are splats of INT_MIN values.
155 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this))
156 if (Constant *Splat = CV->getSplatValue())
157 return Splat->isMinSignedValue();
158
159 return false;
160}
161
David Majnemer0e6c9862014-08-22 16:41:23 +0000162bool Constant::isNotMinSignedValue() const {
163 // Check for INT_MIN integers
164 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
165 return !CI->isMinValue(/*isSigned=*/true);
166
167 // Check for FP which are bitcasted from INT_MIN integers
168 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
169 return !CFP->getValueAPF().bitcastToAPInt().isMinSignedValue();
170
171 // Check for constant vectors which are splats of INT_MIN values.
172 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
173 if (Constant *Splat = CV->getSplatValue())
174 return Splat->isNotMinSignedValue();
175
176 // Check for constant vectors which are splats of INT_MIN values.
177 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this))
178 if (Constant *Splat = CV->getSplatValue())
179 return Splat->isNotMinSignedValue();
180
181 // It *may* contain INT_MIN, we can't tell.
182 return false;
183}
184
Owen Anderson5a1acd92009-07-31 20:28:14 +0000185// Constructor to create a '0' constant of arbitrary type...
Chris Lattner229907c2011-07-18 04:54:35 +0000186Constant *Constant::getNullValue(Type *Ty) {
Owen Anderson5a1acd92009-07-31 20:28:14 +0000187 switch (Ty->getTypeID()) {
188 case Type::IntegerTyID:
189 return ConstantInt::get(Ty, 0);
Dan Gohman518cda42011-12-17 00:04:22 +0000190 case Type::HalfTyID:
191 return ConstantFP::get(Ty->getContext(),
192 APFloat::getZero(APFloat::IEEEhalf));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000193 case Type::FloatTyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000194 return ConstantFP::get(Ty->getContext(),
195 APFloat::getZero(APFloat::IEEEsingle));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000196 case Type::DoubleTyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000197 return ConstantFP::get(Ty->getContext(),
198 APFloat::getZero(APFloat::IEEEdouble));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000199 case Type::X86_FP80TyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000200 return ConstantFP::get(Ty->getContext(),
201 APFloat::getZero(APFloat::x87DoubleExtended));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000202 case Type::FP128TyID:
203 return ConstantFP::get(Ty->getContext(),
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000204 APFloat::getZero(APFloat::IEEEquad));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000205 case Type::PPC_FP128TyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000206 return ConstantFP::get(Ty->getContext(),
Tim Northover29178a32013-01-22 09:46:31 +0000207 APFloat(APFloat::PPCDoubleDouble,
208 APInt::getNullValue(128)));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000209 case Type::PointerTyID:
210 return ConstantPointerNull::get(cast<PointerType>(Ty));
211 case Type::StructTyID:
212 case Type::ArrayTyID:
213 case Type::VectorTyID:
214 return ConstantAggregateZero::get(Ty);
David Majnemerf0f224d2015-11-11 21:57:16 +0000215 case Type::TokenTyID:
216 return ConstantTokenNone::get(Ty->getContext());
Owen Anderson5a1acd92009-07-31 20:28:14 +0000217 default:
218 // Function, Label, or Opaque type?
Craig Topperc514b542012-02-05 22:14:15 +0000219 llvm_unreachable("Cannot create a null constant of that type!");
Owen Anderson5a1acd92009-07-31 20:28:14 +0000220 }
221}
222
Chris Lattner229907c2011-07-18 04:54:35 +0000223Constant *Constant::getIntegerValue(Type *Ty, const APInt &V) {
224 Type *ScalarTy = Ty->getScalarType();
Dan Gohmanf011f5a2009-08-03 22:07:33 +0000225
226 // Create the base integer constant.
227 Constant *C = ConstantInt::get(Ty->getContext(), V);
228
229 // Convert an integer to a pointer, if necessary.
Chris Lattner229907c2011-07-18 04:54:35 +0000230 if (PointerType *PTy = dyn_cast<PointerType>(ScalarTy))
Dan Gohmanf011f5a2009-08-03 22:07:33 +0000231 C = ConstantExpr::getIntToPtr(C, PTy);
232
233 // Broadcast a scalar to a vector, if necessary.
Chris Lattner229907c2011-07-18 04:54:35 +0000234 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000235 C = ConstantVector::getSplat(VTy->getNumElements(), C);
Dan Gohmanf011f5a2009-08-03 22:07:33 +0000236
237 return C;
238}
239
Chris Lattner229907c2011-07-18 04:54:35 +0000240Constant *Constant::getAllOnesValue(Type *Ty) {
241 if (IntegerType *ITy = dyn_cast<IntegerType>(Ty))
Owen Anderson5a1acd92009-07-31 20:28:14 +0000242 return ConstantInt::get(Ty->getContext(),
243 APInt::getAllOnesValue(ITy->getBitWidth()));
Nadav Rotem7cc6d122011-02-17 21:22:27 +0000244
245 if (Ty->isFloatingPointTy()) {
246 APFloat FL = APFloat::getAllOnesValue(Ty->getPrimitiveSizeInBits(),
247 !Ty->isPPC_FP128Ty());
248 return ConstantFP::get(Ty->getContext(), FL);
249 }
250
Chris Lattner229907c2011-07-18 04:54:35 +0000251 VectorType *VTy = cast<VectorType>(Ty);
Chris Lattnere9eed292012-01-25 05:19:54 +0000252 return ConstantVector::getSplat(VTy->getNumElements(),
253 getAllOnesValue(VTy->getElementType()));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000254}
255
Chris Lattner7e683d12012-01-25 06:16:32 +0000256/// getAggregateElement - For aggregates (struct/array/vector) return the
257/// constant that corresponds to the specified element if possible, or null if
258/// not. This can return null if the element index is a ConstantExpr, or if
259/// 'this' is a constant expr.
260Constant *Constant::getAggregateElement(unsigned Elt) const {
261 if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(this))
Craig Topperc6207612014-04-09 06:08:46 +0000262 return Elt < CS->getNumOperands() ? CS->getOperand(Elt) : nullptr;
Galina Kistanovafc259902012-07-13 01:25:27 +0000263
Chris Lattner7e683d12012-01-25 06:16:32 +0000264 if (const ConstantArray *CA = dyn_cast<ConstantArray>(this))
Craig Topperc6207612014-04-09 06:08:46 +0000265 return Elt < CA->getNumOperands() ? CA->getOperand(Elt) : nullptr;
Galina Kistanovafc259902012-07-13 01:25:27 +0000266
Chris Lattner7e683d12012-01-25 06:16:32 +0000267 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
Craig Topperc6207612014-04-09 06:08:46 +0000268 return Elt < CV->getNumOperands() ? CV->getOperand(Elt) : nullptr;
Galina Kistanovafc259902012-07-13 01:25:27 +0000269
David Majnemer9b529a72015-02-16 04:02:09 +0000270 if (const ConstantAggregateZero *CAZ = dyn_cast<ConstantAggregateZero>(this))
271 return Elt < CAZ->getNumElements() ? CAZ->getElementValue(Elt) : nullptr;
Galina Kistanovafc259902012-07-13 01:25:27 +0000272
Chris Lattner7e683d12012-01-25 06:16:32 +0000273 if (const UndefValue *UV = dyn_cast<UndefValue>(this))
David Majnemer9b529a72015-02-16 04:02:09 +0000274 return Elt < UV->getNumElements() ? UV->getElementValue(Elt) : nullptr;
Galina Kistanovafc259902012-07-13 01:25:27 +0000275
Chris Lattner8326bd82012-01-26 00:42:34 +0000276 if (const ConstantDataSequential *CDS =dyn_cast<ConstantDataSequential>(this))
Craig Topperc6207612014-04-09 06:08:46 +0000277 return Elt < CDS->getNumElements() ? CDS->getElementAsConstant(Elt)
278 : nullptr;
279 return nullptr;
Chris Lattner7e683d12012-01-25 06:16:32 +0000280}
281
282Constant *Constant::getAggregateElement(Constant *Elt) const {
283 assert(isa<IntegerType>(Elt->getType()) && "Index must be an integer");
284 if (ConstantInt *CI = dyn_cast<ConstantInt>(Elt))
285 return getAggregateElement(CI->getZExtValue());
Craig Topperc6207612014-04-09 06:08:46 +0000286 return nullptr;
Chris Lattner7e683d12012-01-25 06:16:32 +0000287}
288
Pete Cooper86dd4cf2015-06-23 21:55:11 +0000289void Constant::destroyConstant() {
290 /// First call destroyConstantImpl on the subclass. This gives the subclass
291 /// a chance to remove the constant from any maps/pools it's contained in.
292 switch (getValueID()) {
293 default:
294 llvm_unreachable("Not a constant!");
295#define HANDLE_CONSTANT(Name) \
296 case Value::Name##Val: \
297 cast<Name>(this)->destroyConstantImpl(); \
298 break;
299#include "llvm/IR/Value.def"
300 }
Chris Lattner7e683d12012-01-25 06:16:32 +0000301
Chris Lattner3462ae32001-12-03 22:26:30 +0000302 // When a Constant is destroyed, there may be lingering
Chris Lattnerd7a73302001-10-13 06:57:33 +0000303 // references to the constant by other constants in the constant pool. These
Misha Brukmanbe372b92003-08-21 22:14:26 +0000304 // constants are implicitly dependent on the module that is being deleted,
Chris Lattnerd7a73302001-10-13 06:57:33 +0000305 // but they don't know that. Because we only find out when the CPV is
306 // deleted, we must now notify all of our users (that should only be
Chris Lattner3462ae32001-12-03 22:26:30 +0000307 // Constants) that they are, in fact, invalid now and should be deleted.
Chris Lattnerd7a73302001-10-13 06:57:33 +0000308 //
309 while (!use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000310 Value *V = user_back();
Pete Cooper86dd4cf2015-06-23 21:55:11 +0000311#ifndef NDEBUG // Only in -g mode...
Chris Lattner78683a72009-08-23 04:02:03 +0000312 if (!isa<Constant>(V)) {
David Greene1e27a132010-01-05 01:29:19 +0000313 dbgs() << "While deleting: " << *this
Pete Cooper86dd4cf2015-06-23 21:55:11 +0000314 << "\n\nUse still stuck around after Def is destroyed: " << *V
315 << "\n\n";
Chris Lattner78683a72009-08-23 04:02:03 +0000316 }
Chris Lattnerd7a73302001-10-13 06:57:33 +0000317#endif
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000318 assert(isa<Constant>(V) && "References remain to Constant being destroyed");
Chris Lattner8326bd82012-01-26 00:42:34 +0000319 cast<Constant>(V)->destroyConstant();
Chris Lattnerd7a73302001-10-13 06:57:33 +0000320
321 // The constant should remove itself from our use list...
Chandler Carruthcdf47882014-03-09 03:16:01 +0000322 assert((use_empty() || user_back() != V) && "Constant not removed!");
Chris Lattnerd7a73302001-10-13 06:57:33 +0000323 }
324
325 // Value has no outstanding references it is safe to delete it now...
326 delete this;
Chris Lattner38569342001-10-01 20:11:19 +0000327}
Chris Lattner2f7c9632001-06-06 20:29:01 +0000328
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +0000329static bool canTrapImpl(const Constant *C,
Craig Topper71b7b682014-08-21 05:55:13 +0000330 SmallPtrSetImpl<const ConstantExpr *> &NonTrappingOps) {
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +0000331 assert(C->getType()->isFirstClassType() && "Cannot evaluate aggregate vals!");
Chris Lattner23dd1f62006-10-20 00:27:06 +0000332 // The only thing that could possibly trap are constant exprs.
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +0000333 const ConstantExpr *CE = dyn_cast<ConstantExpr>(C);
334 if (!CE)
335 return false;
Galina Kistanovafc259902012-07-13 01:25:27 +0000336
337 // ConstantExpr traps if any operands can trap.
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +0000338 for (unsigned i = 0, e = C->getNumOperands(); i != e; ++i) {
339 if (ConstantExpr *Op = dyn_cast<ConstantExpr>(CE->getOperand(i))) {
David Blaikie70573dc2014-11-19 07:49:26 +0000340 if (NonTrappingOps.insert(Op).second && canTrapImpl(Op, NonTrappingOps))
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +0000341 return true;
342 }
343 }
Chris Lattner23dd1f62006-10-20 00:27:06 +0000344
345 // Otherwise, only specific operations can trap.
346 switch (CE->getOpcode()) {
347 default:
348 return false;
Reid Spencer7e80b0b2006-10-26 06:15:43 +0000349 case Instruction::UDiv:
350 case Instruction::SDiv:
351 case Instruction::FDiv:
Reid Spencer7eb55b32006-11-02 01:53:59 +0000352 case Instruction::URem:
353 case Instruction::SRem:
354 case Instruction::FRem:
Chris Lattner23dd1f62006-10-20 00:27:06 +0000355 // Div and rem can trap if the RHS is not known to be non-zero.
Chris Lattnera91a5632009-10-28 05:14:34 +0000356 if (!isa<ConstantInt>(CE->getOperand(1)) ||CE->getOperand(1)->isNullValue())
Chris Lattner23dd1f62006-10-20 00:27:06 +0000357 return true;
358 return false;
359 }
360}
361
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +0000362/// canTrap - Return true if evaluation of this constant could trap. This is
363/// true for things like constant expressions that could divide by zero.
364bool Constant::canTrap() const {
365 SmallPtrSet<const ConstantExpr *, 4> NonTrappingOps;
366 return canTrapImpl(this, NonTrappingOps);
367}
368
Hans Wennborg4dc89512014-06-20 00:38:12 +0000369/// Check if C contains a GlobalValue for which Predicate is true.
370static bool
371ConstHasGlobalValuePredicate(const Constant *C,
372 bool (*Predicate)(const GlobalValue *)) {
373 SmallPtrSet<const Constant *, 8> Visited;
374 SmallVector<const Constant *, 8> WorkList;
375 WorkList.push_back(C);
376 Visited.insert(C);
Hans Wennborg709e0152012-11-15 11:40:00 +0000377
378 while (!WorkList.empty()) {
Hans Wennborg4dc89512014-06-20 00:38:12 +0000379 const Constant *WorkItem = WorkList.pop_back_val();
380 if (const auto *GV = dyn_cast<GlobalValue>(WorkItem))
381 if (Predicate(GV))
Hans Wennborg709e0152012-11-15 11:40:00 +0000382 return true;
Hans Wennborg4dc89512014-06-20 00:38:12 +0000383 for (const Value *Op : WorkItem->operands()) {
384 const Constant *ConstOp = dyn_cast<Constant>(Op);
385 if (!ConstOp)
Hans Wennborg18aa12402012-11-16 10:33:25 +0000386 continue;
David Blaikie70573dc2014-11-19 07:49:26 +0000387 if (Visited.insert(ConstOp).second)
Hans Wennborg4dc89512014-06-20 00:38:12 +0000388 WorkList.push_back(ConstOp);
Hans Wennborg709e0152012-11-15 11:40:00 +0000389 }
390 }
Hans Wennborg709e0152012-11-15 11:40:00 +0000391 return false;
392}
393
Hans Wennborg4dc89512014-06-20 00:38:12 +0000394/// Return true if the value can vary between threads.
395bool Constant::isThreadDependent() const {
396 auto DLLImportPredicate = [](const GlobalValue *GV) {
397 return GV->isThreadLocal();
398 };
399 return ConstHasGlobalValuePredicate(this, DLLImportPredicate);
400}
401
402bool Constant::isDLLImportDependent() const {
403 auto DLLImportPredicate = [](const GlobalValue *GV) {
404 return GV->hasDLLImportStorageClass();
405 };
406 return ConstHasGlobalValuePredicate(this, DLLImportPredicate);
407}
408
409/// Return true if the constant has users other than constant exprs and other
410/// dangling things.
Chris Lattner253bc772009-11-01 18:11:50 +0000411bool Constant::isConstantUsed() const {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000412 for (const User *U : users()) {
413 const Constant *UC = dyn_cast<Constant>(U);
Craig Topperc6207612014-04-09 06:08:46 +0000414 if (!UC || isa<GlobalValue>(UC))
Chris Lattner253bc772009-11-01 18:11:50 +0000415 return true;
Galina Kistanovafc259902012-07-13 01:25:27 +0000416
Chris Lattner253bc772009-11-01 18:11:50 +0000417 if (UC->isConstantUsed())
418 return true;
419 }
420 return false;
421}
422
Rafael Espindola65e49022015-11-17 00:51:23 +0000423bool Constant::needsRelocation() const {
424 if (isa<GlobalValue>(this))
425 return true; // Global reference.
426
Chris Lattner2cb85b42009-10-28 04:12:16 +0000427 if (const BlockAddress *BA = dyn_cast<BlockAddress>(this))
Rafael Espindola65e49022015-11-17 00:51:23 +0000428 return BA->getFunction()->needsRelocation();
429
Chris Lattnera7cfc432010-01-03 18:09:40 +0000430 // While raw uses of blockaddress need to be relocated, differences between
431 // two of them don't when they are for labels in the same function. This is a
432 // common idiom when creating a table for the indirect goto extension, so we
433 // handle it efficiently here.
434 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(this))
435 if (CE->getOpcode() == Instruction::Sub) {
436 ConstantExpr *LHS = dyn_cast<ConstantExpr>(CE->getOperand(0));
437 ConstantExpr *RHS = dyn_cast<ConstantExpr>(CE->getOperand(1));
Rafael Espindola65e49022015-11-17 00:51:23 +0000438 if (LHS && RHS && LHS->getOpcode() == Instruction::PtrToInt &&
Chris Lattnera7cfc432010-01-03 18:09:40 +0000439 RHS->getOpcode() == Instruction::PtrToInt &&
440 isa<BlockAddress>(LHS->getOperand(0)) &&
441 isa<BlockAddress>(RHS->getOperand(0)) &&
442 cast<BlockAddress>(LHS->getOperand(0))->getFunction() ==
Rafael Espindola65e49022015-11-17 00:51:23 +0000443 cast<BlockAddress>(RHS->getOperand(0))->getFunction())
444 return false;
Chris Lattnera7cfc432010-01-03 18:09:40 +0000445 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000446
Rafael Espindola65e49022015-11-17 00:51:23 +0000447 bool Result = false;
Evan Chengf9e003b2007-03-08 00:59:12 +0000448 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Rafael Espindola65e49022015-11-17 00:51:23 +0000449 Result |= cast<Constant>(getOperand(i))->needsRelocation();
Galina Kistanovafc259902012-07-13 01:25:27 +0000450
Chris Lattner4565ef52009-07-22 00:05:44 +0000451 return Result;
Evan Chengf9e003b2007-03-08 00:59:12 +0000452}
453
Chris Lattner84886402011-02-18 04:41:42 +0000454/// removeDeadUsersOfConstant - If the specified constantexpr is dead, remove
455/// it. This involves recursively eliminating any dead users of the
456/// constantexpr.
457static bool removeDeadUsersOfConstant(const Constant *C) {
458 if (isa<GlobalValue>(C)) return false; // Cannot remove this
Galina Kistanovafc259902012-07-13 01:25:27 +0000459
Chris Lattner84886402011-02-18 04:41:42 +0000460 while (!C->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000461 const Constant *User = dyn_cast<Constant>(C->user_back());
Chris Lattner84886402011-02-18 04:41:42 +0000462 if (!User) return false; // Non-constant usage;
463 if (!removeDeadUsersOfConstant(User))
464 return false; // Constant wasn't dead
465 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000466
Chris Lattner84886402011-02-18 04:41:42 +0000467 const_cast<Constant*>(C)->destroyConstant();
468 return true;
469}
470
471
472/// removeDeadConstantUsers - If there are any dead constant users dangling
473/// off of this constant, remove them. This method is useful for clients
474/// that want to check to see if a global is unused, but don't want to deal
475/// with potentially dead constants hanging off of the globals.
476void Constant::removeDeadConstantUsers() const {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000477 Value::const_user_iterator I = user_begin(), E = user_end();
478 Value::const_user_iterator LastNonDeadUser = E;
Chris Lattner84886402011-02-18 04:41:42 +0000479 while (I != E) {
480 const Constant *User = dyn_cast<Constant>(*I);
Craig Topperc6207612014-04-09 06:08:46 +0000481 if (!User) {
Chris Lattner84886402011-02-18 04:41:42 +0000482 LastNonDeadUser = I;
483 ++I;
484 continue;
485 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000486
Chris Lattner84886402011-02-18 04:41:42 +0000487 if (!removeDeadUsersOfConstant(User)) {
488 // If the constant wasn't dead, remember that this was the last live use
489 // and move on to the next constant.
490 LastNonDeadUser = I;
491 ++I;
492 continue;
493 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000494
Chris Lattner84886402011-02-18 04:41:42 +0000495 // If the constant was dead, then the iterator is invalidated.
496 if (LastNonDeadUser == E) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000497 I = user_begin();
Chris Lattner84886402011-02-18 04:41:42 +0000498 if (I == E) break;
499 } else {
500 I = LastNonDeadUser;
501 ++I;
502 }
503 }
504}
505
506
Chris Lattner2105d662008-07-10 00:28:11 +0000507
Chris Lattner2f7c9632001-06-06 20:29:01 +0000508//===----------------------------------------------------------------------===//
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000509// ConstantInt
Chris Lattner2f7c9632001-06-06 20:29:01 +0000510//===----------------------------------------------------------------------===//
511
David Blaikiea379b1812011-12-20 02:50:00 +0000512void ConstantInt::anchor() { }
513
Chris Lattner229907c2011-07-18 04:54:35 +0000514ConstantInt::ConstantInt(IntegerType *Ty, const APInt& V)
Craig Topperc6207612014-04-09 06:08:46 +0000515 : Constant(Ty, ConstantIntVal, nullptr, 0), Val(V) {
Reid Spencerb31bffe2007-02-26 23:54:03 +0000516 assert(V.getBitWidth() == Ty->getBitWidth() && "Invalid constant for type");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000517}
518
Nick Lewycky92db8e82011-03-06 03:36:19 +0000519ConstantInt *ConstantInt::getTrue(LLVMContext &Context) {
Owen Anderson23a204d2009-07-31 17:39:07 +0000520 LLVMContextImpl *pImpl = Context.pImpl;
Benjamin Kramerddd1b7b2010-11-20 18:43:35 +0000521 if (!pImpl->TheTrueVal)
522 pImpl->TheTrueVal = ConstantInt::get(Type::getInt1Ty(Context), 1);
523 return pImpl->TheTrueVal;
Owen Anderson23a204d2009-07-31 17:39:07 +0000524}
525
Nick Lewycky92db8e82011-03-06 03:36:19 +0000526ConstantInt *ConstantInt::getFalse(LLVMContext &Context) {
Owen Anderson23a204d2009-07-31 17:39:07 +0000527 LLVMContextImpl *pImpl = Context.pImpl;
Benjamin Kramerddd1b7b2010-11-20 18:43:35 +0000528 if (!pImpl->TheFalseVal)
529 pImpl->TheFalseVal = ConstantInt::get(Type::getInt1Ty(Context), 0);
530 return pImpl->TheFalseVal;
Owen Anderson23a204d2009-07-31 17:39:07 +0000531}
532
Chris Lattner229907c2011-07-18 04:54:35 +0000533Constant *ConstantInt::getTrue(Type *Ty) {
534 VectorType *VTy = dyn_cast<VectorType>(Ty);
Nick Lewycky92db8e82011-03-06 03:36:19 +0000535 if (!VTy) {
536 assert(Ty->isIntegerTy(1) && "True must be i1 or vector of i1.");
537 return ConstantInt::getTrue(Ty->getContext());
538 }
539 assert(VTy->getElementType()->isIntegerTy(1) &&
540 "True must be vector of i1 or i1.");
Chris Lattnere9eed292012-01-25 05:19:54 +0000541 return ConstantVector::getSplat(VTy->getNumElements(),
542 ConstantInt::getTrue(Ty->getContext()));
Nick Lewycky92db8e82011-03-06 03:36:19 +0000543}
544
Chris Lattner229907c2011-07-18 04:54:35 +0000545Constant *ConstantInt::getFalse(Type *Ty) {
546 VectorType *VTy = dyn_cast<VectorType>(Ty);
Nick Lewycky92db8e82011-03-06 03:36:19 +0000547 if (!VTy) {
548 assert(Ty->isIntegerTy(1) && "False must be i1 or vector of i1.");
549 return ConstantInt::getFalse(Ty->getContext());
550 }
551 assert(VTy->getElementType()->isIntegerTy(1) &&
552 "False must be vector of i1 or i1.");
Chris Lattnere9eed292012-01-25 05:19:54 +0000553 return ConstantVector::getSplat(VTy->getNumElements(),
554 ConstantInt::getFalse(Ty->getContext()));
Nick Lewycky92db8e82011-03-06 03:36:19 +0000555}
556
Benjamin Kramer8e5dc532014-12-06 13:12:56 +0000557// Get a ConstantInt from an APInt.
Nick Lewycky92db8e82011-03-06 03:36:19 +0000558ConstantInt *ConstantInt::get(LLVMContext &Context, const APInt &V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000559 // get an existing value or the insertion position
Benjamin Kramer320682f2013-06-01 17:51:03 +0000560 LLVMContextImpl *pImpl = Context.pImpl;
Benjamin Kramer8e5dc532014-12-06 13:12:56 +0000561 ConstantInt *&Slot = pImpl->IntConstants[V];
562 if (!Slot) {
563 // Get the corresponding integer type for the bit width of the value.
564 IntegerType *ITy = IntegerType::get(Context, V.getBitWidth());
NAKAMURA Takumifc3062f2014-12-06 05:57:06 +0000565 Slot = new ConstantInt(ITy, V);
Benjamin Kramer8e5dc532014-12-06 13:12:56 +0000566 }
567 assert(Slot->getType() == IntegerType::get(Context, V.getBitWidth()));
Owen Anderson5dab84c2009-10-19 20:11:52 +0000568 return Slot;
Owen Andersonedb4a702009-07-24 23:12:02 +0000569}
570
Chris Lattner229907c2011-07-18 04:54:35 +0000571Constant *ConstantInt::get(Type *Ty, uint64_t V, bool isSigned) {
Nick Lewycky92db8e82011-03-06 03:36:19 +0000572 Constant *C = get(cast<IntegerType>(Ty->getScalarType()), V, isSigned);
Owen Andersonedb4a702009-07-24 23:12:02 +0000573
574 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000575 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000576 return ConstantVector::getSplat(VTy->getNumElements(), C);
Owen Andersonedb4a702009-07-24 23:12:02 +0000577
578 return C;
579}
580
Chris Lattner0256be92012-01-27 03:08:05 +0000581ConstantInt *ConstantInt::get(IntegerType *Ty, uint64_t V,
Owen Andersonedb4a702009-07-24 23:12:02 +0000582 bool isSigned) {
583 return get(Ty->getContext(), APInt(Ty->getBitWidth(), V, isSigned));
584}
585
Chris Lattner0256be92012-01-27 03:08:05 +0000586ConstantInt *ConstantInt::getSigned(IntegerType *Ty, int64_t V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000587 return get(Ty, V, true);
588}
589
Chris Lattner229907c2011-07-18 04:54:35 +0000590Constant *ConstantInt::getSigned(Type *Ty, int64_t V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000591 return get(Ty, V, true);
592}
593
Chris Lattner0256be92012-01-27 03:08:05 +0000594Constant *ConstantInt::get(Type *Ty, const APInt& V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000595 ConstantInt *C = get(Ty->getContext(), V);
596 assert(C->getType() == Ty->getScalarType() &&
597 "ConstantInt type doesn't match the type implied by its value!");
598
599 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000600 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000601 return ConstantVector::getSplat(VTy->getNumElements(), C);
Owen Andersonedb4a702009-07-24 23:12:02 +0000602
603 return C;
604}
605
Chris Lattner0256be92012-01-27 03:08:05 +0000606ConstantInt *ConstantInt::get(IntegerType* Ty, StringRef Str,
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000607 uint8_t radix) {
608 return get(Ty->getContext(), APInt(Ty->getBitWidth(), Str, radix));
609}
610
Pete Cooper86dd4cf2015-06-23 21:55:11 +0000611/// Remove the constant from the constant table.
612void ConstantInt::destroyConstantImpl() {
613 llvm_unreachable("You can't ConstantInt->destroyConstantImpl()!");
614}
615
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000616//===----------------------------------------------------------------------===//
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000617// ConstantFP
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000618//===----------------------------------------------------------------------===//
619
Chris Lattner229907c2011-07-18 04:54:35 +0000620static const fltSemantics *TypeToFloatSemantics(Type *Ty) {
Dan Gohman518cda42011-12-17 00:04:22 +0000621 if (Ty->isHalfTy())
622 return &APFloat::IEEEhalf;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000623 if (Ty->isFloatTy())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000624 return &APFloat::IEEEsingle;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000625 if (Ty->isDoubleTy())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000626 return &APFloat::IEEEdouble;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000627 if (Ty->isX86_FP80Ty())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000628 return &APFloat::x87DoubleExtended;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000629 else if (Ty->isFP128Ty())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000630 return &APFloat::IEEEquad;
Galina Kistanovafc259902012-07-13 01:25:27 +0000631
Chris Lattnerfdd87902009-10-05 05:54:46 +0000632 assert(Ty->isPPC_FP128Ty() && "Unknown FP format");
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000633 return &APFloat::PPCDoubleDouble;
634}
635
David Blaikiea379b1812011-12-20 02:50:00 +0000636void ConstantFP::anchor() { }
637
Owen Anderson69c464d2009-07-27 20:59:43 +0000638/// get() - This returns a constant fp for the specified value in the
639/// specified type. This should only be used for simple constant values like
640/// 2.0/1.0 etc, that are known-valid both as double and as the target format.
Chris Lattner0256be92012-01-27 03:08:05 +0000641Constant *ConstantFP::get(Type *Ty, double V) {
Owen Anderson69c464d2009-07-27 20:59:43 +0000642 LLVMContext &Context = Ty->getContext();
Galina Kistanovafc259902012-07-13 01:25:27 +0000643
Owen Anderson69c464d2009-07-27 20:59:43 +0000644 APFloat FV(V);
645 bool ignored;
646 FV.convert(*TypeToFloatSemantics(Ty->getScalarType()),
647 APFloat::rmNearestTiesToEven, &ignored);
648 Constant *C = get(Context, FV);
649
650 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000651 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000652 return ConstantVector::getSplat(VTy->getNumElements(), C);
Owen Anderson69c464d2009-07-27 20:59:43 +0000653
654 return C;
655}
656
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000657
Chris Lattner0256be92012-01-27 03:08:05 +0000658Constant *ConstantFP::get(Type *Ty, StringRef Str) {
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000659 LLVMContext &Context = Ty->getContext();
660
661 APFloat FV(*TypeToFloatSemantics(Ty->getScalarType()), Str);
662 Constant *C = get(Context, FV);
663
664 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000665 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000666 return ConstantVector::getSplat(VTy->getNumElements(), C);
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000667
668 return C;
669}
670
Tom Stellard67246d12015-04-20 19:38:24 +0000671Constant *ConstantFP::getNaN(Type *Ty, bool Negative, unsigned Type) {
672 const fltSemantics &Semantics = *TypeToFloatSemantics(Ty->getScalarType());
673 APFloat NaN = APFloat::getNaN(Semantics, Negative, Type);
674 Constant *C = get(Ty->getContext(), NaN);
675
676 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
677 return ConstantVector::getSplat(VTy->getNumElements(), C);
678
679 return C;
680}
681
Benjamin Kramer5d2ff222014-01-18 16:43:06 +0000682Constant *ConstantFP::getNegativeZero(Type *Ty) {
683 const fltSemantics &Semantics = *TypeToFloatSemantics(Ty->getScalarType());
684 APFloat NegZero = APFloat::getZero(Semantics, /*Negative=*/true);
685 Constant *C = get(Ty->getContext(), NegZero);
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000686
Benjamin Kramer5d2ff222014-01-18 16:43:06 +0000687 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
688 return ConstantVector::getSplat(VTy->getNumElements(), C);
689
690 return C;
Owen Anderson69c464d2009-07-27 20:59:43 +0000691}
692
693
Chris Lattnere9eed292012-01-25 05:19:54 +0000694Constant *ConstantFP::getZeroValueForNegation(Type *Ty) {
Benjamin Kramer5d2ff222014-01-18 16:43:06 +0000695 if (Ty->isFPOrFPVectorTy())
696 return getNegativeZero(Ty);
Owen Anderson69c464d2009-07-27 20:59:43 +0000697
Owen Anderson5a1acd92009-07-31 20:28:14 +0000698 return Constant::getNullValue(Ty);
Owen Anderson69c464d2009-07-27 20:59:43 +0000699}
700
701
702// ConstantFP accessors.
703ConstantFP* ConstantFP::get(LLVMContext &Context, const APFloat& V) {
Owen Anderson69c464d2009-07-27 20:59:43 +0000704 LLVMContextImpl* pImpl = Context.pImpl;
Galina Kistanovafc259902012-07-13 01:25:27 +0000705
Benjamin Kramer8e5dc532014-12-06 13:12:56 +0000706 ConstantFP *&Slot = pImpl->FPConstants[V];
Galina Kistanovafc259902012-07-13 01:25:27 +0000707
Owen Anderson69c464d2009-07-27 20:59:43 +0000708 if (!Slot) {
Chris Lattner229907c2011-07-18 04:54:35 +0000709 Type *Ty;
Dan Gohman518cda42011-12-17 00:04:22 +0000710 if (&V.getSemantics() == &APFloat::IEEEhalf)
711 Ty = Type::getHalfTy(Context);
712 else if (&V.getSemantics() == &APFloat::IEEEsingle)
Owen Anderson5dab84c2009-10-19 20:11:52 +0000713 Ty = Type::getFloatTy(Context);
714 else if (&V.getSemantics() == &APFloat::IEEEdouble)
715 Ty = Type::getDoubleTy(Context);
716 else if (&V.getSemantics() == &APFloat::x87DoubleExtended)
717 Ty = Type::getX86_FP80Ty(Context);
718 else if (&V.getSemantics() == &APFloat::IEEEquad)
719 Ty = Type::getFP128Ty(Context);
720 else {
721 assert(&V.getSemantics() == &APFloat::PPCDoubleDouble &&
722 "Unknown FP format");
723 Ty = Type::getPPC_FP128Ty(Context);
Owen Anderson69c464d2009-07-27 20:59:43 +0000724 }
Owen Anderson5dab84c2009-10-19 20:11:52 +0000725 Slot = new ConstantFP(Ty, V);
Owen Anderson69c464d2009-07-27 20:59:43 +0000726 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000727
Owen Anderson69c464d2009-07-27 20:59:43 +0000728 return Slot;
729}
730
Benjamin Kramer5d2ff222014-01-18 16:43:06 +0000731Constant *ConstantFP::getInfinity(Type *Ty, bool Negative) {
732 const fltSemantics &Semantics = *TypeToFloatSemantics(Ty->getScalarType());
733 Constant *C = get(Ty->getContext(), APFloat::getInf(Semantics, Negative));
734
735 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
736 return ConstantVector::getSplat(VTy->getNumElements(), C);
737
738 return C;
Dan Gohmanfeb50212009-09-25 23:00:48 +0000739}
740
Chris Lattner229907c2011-07-18 04:54:35 +0000741ConstantFP::ConstantFP(Type *Ty, const APFloat& V)
Craig Topperc6207612014-04-09 06:08:46 +0000742 : Constant(Ty, ConstantFPVal, nullptr, 0), Val(V) {
Chris Lattner98bd9392008-04-09 06:38:30 +0000743 assert(&V.getSemantics() == TypeToFloatSemantics(Ty) &&
744 "FP type Mismatch");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000745}
746
Chris Lattnerbe6610c2011-07-15 06:14:08 +0000747bool ConstantFP::isExactlyValue(const APFloat &V) const {
Dale Johannesend246b2c2007-08-30 00:23:21 +0000748 return Val.bitwiseIsEqual(V);
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000749}
750
Pete Cooper86dd4cf2015-06-23 21:55:11 +0000751/// Remove the constant from the constant table.
752void ConstantFP::destroyConstantImpl() {
753 llvm_unreachable("You can't ConstantInt->destroyConstantImpl()!");
754}
755
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000756//===----------------------------------------------------------------------===//
Chris Lattner030af792012-01-24 05:42:11 +0000757// ConstantAggregateZero Implementation
758//===----------------------------------------------------------------------===//
759
760/// getSequentialElement - If this CAZ has array or vector type, return a zero
761/// with the right element type.
Chris Lattner7e683d12012-01-25 06:16:32 +0000762Constant *ConstantAggregateZero::getSequentialElement() const {
Chris Lattner8326bd82012-01-26 00:42:34 +0000763 return Constant::getNullValue(getType()->getSequentialElementType());
Chris Lattner030af792012-01-24 05:42:11 +0000764}
765
766/// getStructElement - If this CAZ has struct type, return a zero with the
767/// right element type for the specified element.
Chris Lattner7e683d12012-01-25 06:16:32 +0000768Constant *ConstantAggregateZero::getStructElement(unsigned Elt) const {
Chris Lattner8326bd82012-01-26 00:42:34 +0000769 return Constant::getNullValue(getType()->getStructElementType(Elt));
Chris Lattner030af792012-01-24 05:42:11 +0000770}
771
772/// getElementValue - Return a zero of the right value for the specified GEP
773/// index if we can, otherwise return null (e.g. if C is a ConstantExpr).
Chris Lattner7e683d12012-01-25 06:16:32 +0000774Constant *ConstantAggregateZero::getElementValue(Constant *C) const {
Chris Lattner030af792012-01-24 05:42:11 +0000775 if (isa<SequentialType>(getType()))
776 return getSequentialElement();
777 return getStructElement(cast<ConstantInt>(C)->getZExtValue());
778}
779
Chris Lattnerf7eb5432012-01-24 07:54:10 +0000780/// getElementValue - Return a zero of the right value for the specified GEP
781/// index.
Chris Lattner7e683d12012-01-25 06:16:32 +0000782Constant *ConstantAggregateZero::getElementValue(unsigned Idx) const {
Chris Lattnerf7eb5432012-01-24 07:54:10 +0000783 if (isa<SequentialType>(getType()))
784 return getSequentialElement();
785 return getStructElement(Idx);
786}
787
David Majnemer9b529a72015-02-16 04:02:09 +0000788unsigned ConstantAggregateZero::getNumElements() const {
Craig Toppere3dcce92015-08-01 22:20:21 +0000789 Type *Ty = getType();
790 if (auto *AT = dyn_cast<ArrayType>(Ty))
David Majnemer9b529a72015-02-16 04:02:09 +0000791 return AT->getNumElements();
Craig Toppere3dcce92015-08-01 22:20:21 +0000792 if (auto *VT = dyn_cast<VectorType>(Ty))
David Majnemer9b529a72015-02-16 04:02:09 +0000793 return VT->getNumElements();
794 return Ty->getStructNumElements();
795}
Chris Lattnerf7eb5432012-01-24 07:54:10 +0000796
Chris Lattner030af792012-01-24 05:42:11 +0000797//===----------------------------------------------------------------------===//
798// UndefValue Implementation
799//===----------------------------------------------------------------------===//
800
801/// getSequentialElement - If this undef has array or vector type, return an
802/// undef with the right element type.
Chris Lattner7e683d12012-01-25 06:16:32 +0000803UndefValue *UndefValue::getSequentialElement() const {
Chris Lattner8326bd82012-01-26 00:42:34 +0000804 return UndefValue::get(getType()->getSequentialElementType());
Chris Lattner030af792012-01-24 05:42:11 +0000805}
806
807/// getStructElement - If this undef has struct type, return a zero with the
808/// right element type for the specified element.
Chris Lattner7e683d12012-01-25 06:16:32 +0000809UndefValue *UndefValue::getStructElement(unsigned Elt) const {
Chris Lattner8326bd82012-01-26 00:42:34 +0000810 return UndefValue::get(getType()->getStructElementType(Elt));
Chris Lattner030af792012-01-24 05:42:11 +0000811}
812
813/// getElementValue - Return an undef of the right value for the specified GEP
814/// index if we can, otherwise return null (e.g. if C is a ConstantExpr).
Chris Lattner7e683d12012-01-25 06:16:32 +0000815UndefValue *UndefValue::getElementValue(Constant *C) const {
Chris Lattner030af792012-01-24 05:42:11 +0000816 if (isa<SequentialType>(getType()))
817 return getSequentialElement();
818 return getStructElement(cast<ConstantInt>(C)->getZExtValue());
819}
820
Chris Lattnerf7eb5432012-01-24 07:54:10 +0000821/// getElementValue - Return an undef of the right value for the specified GEP
822/// index.
Chris Lattner7e683d12012-01-25 06:16:32 +0000823UndefValue *UndefValue::getElementValue(unsigned Idx) const {
Chris Lattnerf7eb5432012-01-24 07:54:10 +0000824 if (isa<SequentialType>(getType()))
825 return getSequentialElement();
826 return getStructElement(Idx);
827}
828
David Majnemer9b529a72015-02-16 04:02:09 +0000829unsigned UndefValue::getNumElements() const {
Craig Toppere3dcce92015-08-01 22:20:21 +0000830 Type *Ty = getType();
831 if (auto *AT = dyn_cast<ArrayType>(Ty))
David Majnemer9b529a72015-02-16 04:02:09 +0000832 return AT->getNumElements();
Craig Toppere3dcce92015-08-01 22:20:21 +0000833 if (auto *VT = dyn_cast<VectorType>(Ty))
David Majnemer9b529a72015-02-16 04:02:09 +0000834 return VT->getNumElements();
835 return Ty->getStructNumElements();
836}
Chris Lattner030af792012-01-24 05:42:11 +0000837
838//===----------------------------------------------------------------------===//
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000839// ConstantXXX Classes
840//===----------------------------------------------------------------------===//
841
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000842template <typename ItTy, typename EltTy>
843static bool rangeOnlyContains(ItTy Start, ItTy End, EltTy Elt) {
844 for (; Start != End; ++Start)
845 if (*Start != Elt)
846 return false;
847 return true;
848}
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000849
Jay Foad89d9b812011-07-25 10:14:44 +0000850ConstantArray::ConstantArray(ArrayType *T, ArrayRef<Constant *> V)
Gabor Greiff6caff662008-05-10 08:32:32 +0000851 : Constant(T, ConstantArrayVal,
852 OperandTraits<ConstantArray>::op_end(this) - V.size(),
853 V.size()) {
Alkis Evlogimenos0507ffe2004-09-15 02:32:15 +0000854 assert(V.size() == T->getNumElements() &&
855 "Invalid initializer vector for constant array");
Jay Foad89d9b812011-07-25 10:14:44 +0000856 for (unsigned i = 0, e = V.size(); i != e; ++i)
857 assert(V[i]->getType() == T->getElementType() &&
Alkis Evlogimenoscb031d92004-09-10 04:16:59 +0000858 "Initializer for array element doesn't match array element type!");
Jay Foad89d9b812011-07-25 10:14:44 +0000859 std::copy(V.begin(), V.end(), op_begin());
Chris Lattner2f7c9632001-06-06 20:29:01 +0000860}
861
Chris Lattner229907c2011-07-18 04:54:35 +0000862Constant *ConstantArray::get(ArrayType *Ty, ArrayRef<Constant*> V) {
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +0000863 if (Constant *C = getImpl(Ty, V))
864 return C;
865 return Ty->getContext().pImpl->ArrayConstants.getOrCreate(Ty, V);
866}
867Constant *ConstantArray::getImpl(ArrayType *Ty, ArrayRef<Constant*> V) {
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000868 // Empty arrays are canonicalized to ConstantAggregateZero.
869 if (V.empty())
870 return ConstantAggregateZero::get(Ty);
871
Jeffrey Yasskin8ce67f82009-09-30 21:08:08 +0000872 for (unsigned i = 0, e = V.size(); i != e; ++i) {
873 assert(V[i]->getType() == Ty->getElementType() &&
874 "Wrong type in array element initializer");
875 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000876
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000877 // If this is an all-zero array, return a ConstantAggregateZero object. If
878 // all undef, return an UndefValue, if "all simple", then return a
879 // ConstantDataArray.
880 Constant *C = V[0];
881 if (isa<UndefValue>(C) && rangeOnlyContains(V.begin(), V.end(), C))
882 return UndefValue::get(Ty);
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000883
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000884 if (C->isNullValue() && rangeOnlyContains(V.begin(), V.end(), C))
885 return ConstantAggregateZero::get(Ty);
886
887 // Check to see if all of the elements are ConstantFP or ConstantInt and if
888 // the element type is compatible with ConstantDataVector. If so, use it.
889 if (ConstantDataSequential::isElementTypeCompatible(C->getType())) {
890 // We speculatively build the elements here even if it turns out that there
891 // is a constantexpr or something else weird in the array, since it is so
892 // uncommon for that to happen.
893 if (ConstantInt *CI = dyn_cast<ConstantInt>(C)) {
894 if (CI->getType()->isIntegerTy(8)) {
895 SmallVector<uint8_t, 16> Elts;
896 for (unsigned i = 0, e = V.size(); i != e; ++i)
897 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
898 Elts.push_back(CI->getZExtValue());
899 else
900 break;
901 if (Elts.size() == V.size())
902 return ConstantDataArray::get(C->getContext(), Elts);
903 } else if (CI->getType()->isIntegerTy(16)) {
904 SmallVector<uint16_t, 16> Elts;
905 for (unsigned i = 0, e = V.size(); i != e; ++i)
906 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
907 Elts.push_back(CI->getZExtValue());
908 else
909 break;
910 if (Elts.size() == V.size())
911 return ConstantDataArray::get(C->getContext(), Elts);
912 } else if (CI->getType()->isIntegerTy(32)) {
913 SmallVector<uint32_t, 16> Elts;
914 for (unsigned i = 0, e = V.size(); i != e; ++i)
915 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
916 Elts.push_back(CI->getZExtValue());
917 else
918 break;
919 if (Elts.size() == V.size())
920 return ConstantDataArray::get(C->getContext(), Elts);
921 } else if (CI->getType()->isIntegerTy(64)) {
922 SmallVector<uint64_t, 16> Elts;
923 for (unsigned i = 0, e = V.size(); i != e; ++i)
924 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
925 Elts.push_back(CI->getZExtValue());
926 else
927 break;
928 if (Elts.size() == V.size())
929 return ConstantDataArray::get(C->getContext(), Elts);
930 }
931 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000932
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000933 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
934 if (CFP->getType()->isFloatTy()) {
Rafael Espindola8c97e192015-02-19 16:08:20 +0000935 SmallVector<uint32_t, 16> Elts;
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000936 for (unsigned i = 0, e = V.size(); i != e; ++i)
937 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V[i]))
Rafael Espindola8c97e192015-02-19 16:08:20 +0000938 Elts.push_back(
939 CFP->getValueAPF().bitcastToAPInt().getLimitedValue());
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000940 else
941 break;
942 if (Elts.size() == V.size())
Rafael Espindola8c97e192015-02-19 16:08:20 +0000943 return ConstantDataArray::getFP(C->getContext(), Elts);
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000944 } else if (CFP->getType()->isDoubleTy()) {
Rafael Espindola8c97e192015-02-19 16:08:20 +0000945 SmallVector<uint64_t, 16> Elts;
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000946 for (unsigned i = 0, e = V.size(); i != e; ++i)
947 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V[i]))
Rafael Espindola8c97e192015-02-19 16:08:20 +0000948 Elts.push_back(
949 CFP->getValueAPF().bitcastToAPInt().getLimitedValue());
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000950 else
951 break;
952 if (Elts.size() == V.size())
Rafael Espindola8c97e192015-02-19 16:08:20 +0000953 return ConstantDataArray::getFP(C->getContext(), Elts);
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000954 }
955 }
Owen Andersonc2c79322009-07-28 18:32:17 +0000956 }
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000957
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000958 // Otherwise, we really do want to create a ConstantArray.
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +0000959 return nullptr;
Owen Andersonc2c79322009-07-28 18:32:17 +0000960}
961
Chris Lattnercc19efa2011-06-20 04:01:31 +0000962/// getTypeForElements - Return an anonymous struct type to use for a constant
963/// with the specified set of elements. The list must not be empty.
964StructType *ConstantStruct::getTypeForElements(LLVMContext &Context,
965 ArrayRef<Constant*> V,
966 bool Packed) {
Bill Wendling3ae7dd32012-02-07 01:27:51 +0000967 unsigned VecSize = V.size();
968 SmallVector<Type*, 16> EltTypes(VecSize);
969 for (unsigned i = 0; i != VecSize; ++i)
970 EltTypes[i] = V[i]->getType();
Galina Kistanovafc259902012-07-13 01:25:27 +0000971
Chris Lattnercc19efa2011-06-20 04:01:31 +0000972 return StructType::get(Context, EltTypes, Packed);
973}
974
975
976StructType *ConstantStruct::getTypeForElements(ArrayRef<Constant*> V,
977 bool Packed) {
978 assert(!V.empty() &&
979 "ConstantStruct::getTypeForElements cannot be called on empty list");
980 return getTypeForElements(V[0]->getContext(), V, Packed);
981}
982
983
Jay Foad89d9b812011-07-25 10:14:44 +0000984ConstantStruct::ConstantStruct(StructType *T, ArrayRef<Constant *> V)
Gabor Greiff6caff662008-05-10 08:32:32 +0000985 : Constant(T, ConstantStructVal,
986 OperandTraits<ConstantStruct>::op_end(this) - V.size(),
987 V.size()) {
Chris Lattnerc3e74cd2011-08-07 04:18:48 +0000988 assert(V.size() == T->getNumElements() &&
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000989 "Invalid initializer vector for constant structure");
Jay Foad89d9b812011-07-25 10:14:44 +0000990 for (unsigned i = 0, e = V.size(); i != e; ++i)
991 assert((T->isOpaque() || V[i]->getType() == T->getElementType(i)) &&
Chris Lattner93c8f142003-06-02 17:42:47 +0000992 "Initializer for struct element doesn't match struct element type!");
Jay Foad89d9b812011-07-25 10:14:44 +0000993 std::copy(V.begin(), V.end(), op_begin());
Chris Lattner2f7c9632001-06-06 20:29:01 +0000994}
995
Owen Anderson45308b52009-07-27 22:29:26 +0000996// ConstantStruct accessors.
Chris Lattner229907c2011-07-18 04:54:35 +0000997Constant *ConstantStruct::get(StructType *ST, ArrayRef<Constant*> V) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000998 assert((ST->isOpaque() || ST->getNumElements() == V.size()) &&
999 "Incorrect # elements specified to ConstantStruct::get");
Chris Lattnerf14a67f2012-01-26 02:31:22 +00001000
1001 // Create a ConstantAggregateZero value if all elements are zeros.
1002 bool isZero = true;
1003 bool isUndef = false;
1004
1005 if (!V.empty()) {
1006 isUndef = isa<UndefValue>(V[0]);
1007 isZero = V[0]->isNullValue();
1008 if (isUndef || isZero) {
1009 for (unsigned i = 0, e = V.size(); i != e; ++i) {
1010 if (!V[i]->isNullValue())
1011 isZero = false;
1012 if (!isa<UndefValue>(V[i]))
1013 isUndef = false;
1014 }
1015 }
Galina Kistanovafc259902012-07-13 01:25:27 +00001016 }
Chris Lattnerf14a67f2012-01-26 02:31:22 +00001017 if (isZero)
1018 return ConstantAggregateZero::get(ST);
1019 if (isUndef)
1020 return UndefValue::get(ST);
Galina Kistanovafc259902012-07-13 01:25:27 +00001021
Chris Lattnerf14a67f2012-01-26 02:31:22 +00001022 return ST->getContext().pImpl->StructConstants.getOrCreate(ST, V);
Owen Anderson45308b52009-07-27 22:29:26 +00001023}
1024
Chris Lattnerc3e74cd2011-08-07 04:18:48 +00001025Constant *ConstantStruct::get(StructType *T, ...) {
Talin3a0a30d2011-02-28 23:53:27 +00001026 va_list ap;
Chris Lattnercc19efa2011-06-20 04:01:31 +00001027 SmallVector<Constant*, 8> Values;
1028 va_start(ap, T);
1029 while (Constant *Val = va_arg(ap, llvm::Constant*))
Talin3a0a30d2011-02-28 23:53:27 +00001030 Values.push_back(Val);
Talinde422be2011-03-01 18:00:49 +00001031 va_end(ap);
Chris Lattnercc19efa2011-06-20 04:01:31 +00001032 return get(T, Values);
Talin3a0a30d2011-02-28 23:53:27 +00001033}
1034
Jay Foad89d9b812011-07-25 10:14:44 +00001035ConstantVector::ConstantVector(VectorType *T, ArrayRef<Constant *> V)
Gabor Greiff6caff662008-05-10 08:32:32 +00001036 : Constant(T, ConstantVectorVal,
1037 OperandTraits<ConstantVector>::op_end(this) - V.size(),
1038 V.size()) {
Jay Foad89d9b812011-07-25 10:14:44 +00001039 for (size_t i = 0, e = V.size(); i != e; i++)
1040 assert(V[i]->getType() == T->getElementType() &&
Dan Gohman30978072007-05-24 14:36:04 +00001041 "Initializer for vector element doesn't match vector element type!");
Jay Foad89d9b812011-07-25 10:14:44 +00001042 std::copy(V.begin(), V.end(), op_begin());
Brian Gaeke02209042004-08-20 06:00:58 +00001043}
1044
Owen Anderson4aa32952009-07-28 21:19:26 +00001045// ConstantVector accessors.
Jay Foadb8a8bed32011-06-22 09:10:19 +00001046Constant *ConstantVector::get(ArrayRef<Constant*> V) {
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00001047 if (Constant *C = getImpl(V))
1048 return C;
1049 VectorType *Ty = VectorType::get(V.front()->getType(), V.size());
1050 return Ty->getContext().pImpl->VectorConstants.getOrCreate(Ty, V);
1051}
1052Constant *ConstantVector::getImpl(ArrayRef<Constant*> V) {
Jay Foad9f32cfd2011-01-27 14:44:55 +00001053 assert(!V.empty() && "Vectors can't be empty");
Chris Lattner229907c2011-07-18 04:54:35 +00001054 VectorType *T = VectorType::get(V.front()->getType(), V.size());
Jay Foad9f32cfd2011-01-27 14:44:55 +00001055
Chris Lattner69229312011-02-15 00:14:00 +00001056 // If this is an all-undef or all-zero vector, return a
Owen Anderson4aa32952009-07-28 21:19:26 +00001057 // ConstantAggregateZero or UndefValue.
1058 Constant *C = V[0];
1059 bool isZero = C->isNullValue();
1060 bool isUndef = isa<UndefValue>(C);
1061
1062 if (isZero || isUndef) {
1063 for (unsigned i = 1, e = V.size(); i != e; ++i)
1064 if (V[i] != C) {
1065 isZero = isUndef = false;
1066 break;
1067 }
1068 }
Galina Kistanovafc259902012-07-13 01:25:27 +00001069
Owen Anderson4aa32952009-07-28 21:19:26 +00001070 if (isZero)
Owen Andersonb292b8c2009-07-30 23:03:37 +00001071 return ConstantAggregateZero::get(T);
Owen Anderson4aa32952009-07-28 21:19:26 +00001072 if (isUndef)
Owen Andersonb292b8c2009-07-30 23:03:37 +00001073 return UndefValue::get(T);
Galina Kistanovafc259902012-07-13 01:25:27 +00001074
Chris Lattner978fe0c2012-01-30 06:21:21 +00001075 // Check to see if all of the elements are ConstantFP or ConstantInt and if
1076 // the element type is compatible with ConstantDataVector. If so, use it.
Chris Lattnercf9e8f62012-02-05 02:29:43 +00001077 if (ConstantDataSequential::isElementTypeCompatible(C->getType())) {
Chris Lattner978fe0c2012-01-30 06:21:21 +00001078 // We speculatively build the elements here even if it turns out that there
1079 // is a constantexpr or something else weird in the array, since it is so
1080 // uncommon for that to happen.
1081 if (ConstantInt *CI = dyn_cast<ConstantInt>(C)) {
1082 if (CI->getType()->isIntegerTy(8)) {
1083 SmallVector<uint8_t, 16> Elts;
1084 for (unsigned i = 0, e = V.size(); i != e; ++i)
1085 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
1086 Elts.push_back(CI->getZExtValue());
1087 else
1088 break;
1089 if (Elts.size() == V.size())
1090 return ConstantDataVector::get(C->getContext(), Elts);
1091 } else if (CI->getType()->isIntegerTy(16)) {
1092 SmallVector<uint16_t, 16> Elts;
1093 for (unsigned i = 0, e = V.size(); i != e; ++i)
1094 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
1095 Elts.push_back(CI->getZExtValue());
1096 else
1097 break;
1098 if (Elts.size() == V.size())
1099 return ConstantDataVector::get(C->getContext(), Elts);
1100 } else if (CI->getType()->isIntegerTy(32)) {
1101 SmallVector<uint32_t, 16> Elts;
1102 for (unsigned i = 0, e = V.size(); i != e; ++i)
1103 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
1104 Elts.push_back(CI->getZExtValue());
1105 else
1106 break;
1107 if (Elts.size() == V.size())
1108 return ConstantDataVector::get(C->getContext(), Elts);
1109 } else if (CI->getType()->isIntegerTy(64)) {
1110 SmallVector<uint64_t, 16> Elts;
1111 for (unsigned i = 0, e = V.size(); i != e; ++i)
1112 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
1113 Elts.push_back(CI->getZExtValue());
1114 else
1115 break;
1116 if (Elts.size() == V.size())
1117 return ConstantDataVector::get(C->getContext(), Elts);
1118 }
1119 }
Galina Kistanovafc259902012-07-13 01:25:27 +00001120
Chris Lattner978fe0c2012-01-30 06:21:21 +00001121 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
1122 if (CFP->getType()->isFloatTy()) {
Rafael Espindola8c97e192015-02-19 16:08:20 +00001123 SmallVector<uint32_t, 16> Elts;
Chris Lattner978fe0c2012-01-30 06:21:21 +00001124 for (unsigned i = 0, e = V.size(); i != e; ++i)
1125 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V[i]))
Rafael Espindola8c97e192015-02-19 16:08:20 +00001126 Elts.push_back(
1127 CFP->getValueAPF().bitcastToAPInt().getLimitedValue());
Chris Lattner978fe0c2012-01-30 06:21:21 +00001128 else
1129 break;
1130 if (Elts.size() == V.size())
Rafael Espindola8c97e192015-02-19 16:08:20 +00001131 return ConstantDataVector::getFP(C->getContext(), Elts);
Chris Lattner978fe0c2012-01-30 06:21:21 +00001132 } else if (CFP->getType()->isDoubleTy()) {
Rafael Espindola8c97e192015-02-19 16:08:20 +00001133 SmallVector<uint64_t, 16> Elts;
Chris Lattner978fe0c2012-01-30 06:21:21 +00001134 for (unsigned i = 0, e = V.size(); i != e; ++i)
1135 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V[i]))
Rafael Espindola8c97e192015-02-19 16:08:20 +00001136 Elts.push_back(
1137 CFP->getValueAPF().bitcastToAPInt().getLimitedValue());
Chris Lattner978fe0c2012-01-30 06:21:21 +00001138 else
1139 break;
1140 if (Elts.size() == V.size())
Rafael Espindola8c97e192015-02-19 16:08:20 +00001141 return ConstantDataVector::getFP(C->getContext(), Elts);
Chris Lattner978fe0c2012-01-30 06:21:21 +00001142 }
1143 }
1144 }
Galina Kistanovafc259902012-07-13 01:25:27 +00001145
Chris Lattner978fe0c2012-01-30 06:21:21 +00001146 // Otherwise, the element type isn't compatible with ConstantDataVector, or
1147 // the operand list constants a ConstantExpr or something else strange.
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00001148 return nullptr;
Owen Anderson4aa32952009-07-28 21:19:26 +00001149}
1150
Chris Lattnere9eed292012-01-25 05:19:54 +00001151Constant *ConstantVector::getSplat(unsigned NumElts, Constant *V) {
Chris Lattner978fe0c2012-01-30 06:21:21 +00001152 // If this splat is compatible with ConstantDataVector, use it instead of
1153 // ConstantVector.
1154 if ((isa<ConstantFP>(V) || isa<ConstantInt>(V)) &&
1155 ConstantDataSequential::isElementTypeCompatible(V->getType()))
1156 return ConstantDataVector::getSplat(NumElts, V);
Galina Kistanovafc259902012-07-13 01:25:27 +00001157
Chris Lattnere9eed292012-01-25 05:19:54 +00001158 SmallVector<Constant*, 32> Elts(NumElts, V);
1159 return get(Elts);
1160}
1161
David Majnemerf0f224d2015-11-11 21:57:16 +00001162ConstantTokenNone *ConstantTokenNone::get(LLVMContext &Context) {
1163 LLVMContextImpl *pImpl = Context.pImpl;
1164 if (!pImpl->TheNoneToken)
David Majnemer2dd41c52015-11-16 20:55:57 +00001165 pImpl->TheNoneToken.reset(new ConstantTokenNone(Context));
1166 return pImpl->TheNoneToken.get();
David Majnemerf0f224d2015-11-11 21:57:16 +00001167}
1168
1169/// Remove the constant from the constant table.
1170void ConstantTokenNone::destroyConstantImpl() {
1171 llvm_unreachable("You can't ConstantTokenNone->destroyConstantImpl()!");
1172}
Chris Lattnere9eed292012-01-25 05:19:54 +00001173
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001174// Utility function for determining if a ConstantExpr is a CastOp or not. This
1175// can't be inline because we don't want to #include Instruction.h into
1176// Constant.h
1177bool ConstantExpr::isCast() const {
1178 return Instruction::isCast(getOpcode());
1179}
1180
Reid Spenceree3c9912006-12-04 05:19:50 +00001181bool ConstantExpr::isCompare() const {
Nick Lewyckya21d3da2009-07-08 03:04:38 +00001182 return getOpcode() == Instruction::ICmp || getOpcode() == Instruction::FCmp;
Reid Spenceree3c9912006-12-04 05:19:50 +00001183}
1184
Dan Gohman7190d482009-09-10 23:37:55 +00001185bool ConstantExpr::isGEPWithNoNotionalOverIndexing() const {
1186 if (getOpcode() != Instruction::GetElementPtr) return false;
1187
1188 gep_type_iterator GEPI = gep_type_begin(this), E = gep_type_end(this);
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001189 User::const_op_iterator OI = std::next(this->op_begin());
Dan Gohman7190d482009-09-10 23:37:55 +00001190
1191 // Skip the first index, as it has no static limit.
1192 ++GEPI;
1193 ++OI;
1194
1195 // The remaining indices must be compile-time known integers within the
1196 // bounds of the corresponding notional static array types.
1197 for (; GEPI != E; ++GEPI, ++OI) {
1198 ConstantInt *CI = dyn_cast<ConstantInt>(*OI);
1199 if (!CI) return false;
Chris Lattner229907c2011-07-18 04:54:35 +00001200 if (ArrayType *ATy = dyn_cast<ArrayType>(*GEPI))
Dan Gohman7190d482009-09-10 23:37:55 +00001201 if (CI->getValue().getActiveBits() > 64 ||
1202 CI->getZExtValue() >= ATy->getNumElements())
1203 return false;
1204 }
1205
1206 // All the indices checked out.
1207 return true;
1208}
1209
Dan Gohman1ecaf452008-05-31 00:58:22 +00001210bool ConstantExpr::hasIndices() const {
1211 return getOpcode() == Instruction::ExtractValue ||
1212 getOpcode() == Instruction::InsertValue;
1213}
1214
Jay Foad0091fe82011-04-13 15:22:40 +00001215ArrayRef<unsigned> ConstantExpr::getIndices() const {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001216 if (const ExtractValueConstantExpr *EVCE =
1217 dyn_cast<ExtractValueConstantExpr>(this))
1218 return EVCE->Indices;
Dan Gohmana469bdb2008-06-23 16:39:44 +00001219
1220 return cast<InsertValueConstantExpr>(this)->Indices;
Dan Gohman1ecaf452008-05-31 00:58:22 +00001221}
1222
Reid Spencer10fbf0e2006-12-03 05:48:19 +00001223unsigned ConstantExpr::getPredicate() const {
Chris Lattnerd04e32d2011-07-17 06:01:30 +00001224 assert(isCompare());
Chris Lattneref650092007-10-18 16:26:24 +00001225 return ((const CompareConstantExpr*)this)->predicate;
Reid Spencer10fbf0e2006-12-03 05:48:19 +00001226}
Chris Lattner60e0dd72001-10-03 06:12:09 +00001227
Chris Lattner7c1018a2006-07-14 19:37:40 +00001228/// getWithOperandReplaced - Return a constant expression identical to this
1229/// one, but with the specified operand set to the specified value.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001230Constant *
1231ConstantExpr::getWithOperandReplaced(unsigned OpNo, Constant *Op) const {
Chris Lattner7c1018a2006-07-14 19:37:40 +00001232 assert(Op->getType() == getOperand(OpNo)->getType() &&
1233 "Replacing operand with value of different type!");
Chris Lattner227816342006-07-14 22:20:01 +00001234 if (getOperand(OpNo) == Op)
1235 return const_cast<ConstantExpr*>(this);
Chris Lattner37e38352012-01-26 20:37:11 +00001236
1237 SmallVector<Constant*, 8> NewOps;
1238 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
1239 NewOps.push_back(i == OpNo ? Op : getOperand(i));
Galina Kistanovafc259902012-07-13 01:25:27 +00001240
Chris Lattner37e38352012-01-26 20:37:11 +00001241 return getWithOperands(NewOps);
Chris Lattner227816342006-07-14 22:20:01 +00001242}
1243
1244/// getWithOperands - This returns the current constant expression with the
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001245/// operands replaced with the specified values. The specified array must
1246/// have the same number of operands as our current one.
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001247Constant *ConstantExpr::getWithOperands(ArrayRef<Constant *> Ops, Type *Ty,
David Blaikie88208842015-08-21 20:16:51 +00001248 bool OnlyIfReduced, Type *SrcTy) const {
Jay Foad5c984e562011-04-13 13:46:01 +00001249 assert(Ops.size() == getNumOperands() && "Operand count mismatch!");
Galina Kistanovafc259902012-07-13 01:25:27 +00001250
Benjamin Kramer8008e9f2015-03-02 11:57:04 +00001251 // If no operands changed return self.
1252 if (Ty == getType() && std::equal(Ops.begin(), Ops.end(), op_begin()))
Chris Lattner227816342006-07-14 22:20:01 +00001253 return const_cast<ConstantExpr*>(this);
1254
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001255 Type *OnlyIfReducedTy = OnlyIfReduced ? Ty : nullptr;
Chris Lattner227816342006-07-14 22:20:01 +00001256 switch (getOpcode()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001257 case Instruction::Trunc:
1258 case Instruction::ZExt:
1259 case Instruction::SExt:
1260 case Instruction::FPTrunc:
1261 case Instruction::FPExt:
1262 case Instruction::UIToFP:
1263 case Instruction::SIToFP:
1264 case Instruction::FPToUI:
1265 case Instruction::FPToSI:
1266 case Instruction::PtrToInt:
1267 case Instruction::IntToPtr:
1268 case Instruction::BitCast:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001269 case Instruction::AddrSpaceCast:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001270 return ConstantExpr::getCast(getOpcode(), Ops[0], Ty, OnlyIfReduced);
Chris Lattner227816342006-07-14 22:20:01 +00001271 case Instruction::Select:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001272 return ConstantExpr::getSelect(Ops[0], Ops[1], Ops[2], OnlyIfReducedTy);
Chris Lattner227816342006-07-14 22:20:01 +00001273 case Instruction::InsertElement:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001274 return ConstantExpr::getInsertElement(Ops[0], Ops[1], Ops[2],
1275 OnlyIfReducedTy);
Chris Lattner227816342006-07-14 22:20:01 +00001276 case Instruction::ExtractElement:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001277 return ConstantExpr::getExtractElement(Ops[0], Ops[1], OnlyIfReducedTy);
Chris Lattner37e38352012-01-26 20:37:11 +00001278 case Instruction::InsertValue:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001279 return ConstantExpr::getInsertValue(Ops[0], Ops[1], getIndices(),
1280 OnlyIfReducedTy);
Chris Lattner37e38352012-01-26 20:37:11 +00001281 case Instruction::ExtractValue:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001282 return ConstantExpr::getExtractValue(Ops[0], getIndices(), OnlyIfReducedTy);
Chris Lattner227816342006-07-14 22:20:01 +00001283 case Instruction::ShuffleVector:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001284 return ConstantExpr::getShuffleVector(Ops[0], Ops[1], Ops[2],
1285 OnlyIfReducedTy);
David Blaikie88208842015-08-21 20:16:51 +00001286 case Instruction::GetElementPtr: {
1287 auto *GEPO = cast<GEPOperator>(this);
1288 assert(SrcTy || (Ops[0]->getType() == getOperand(0)->getType()));
1289 return ConstantExpr::getGetElementPtr(
1290 SrcTy ? SrcTy : GEPO->getSourceElementType(), Ops[0], Ops.slice(1),
1291 GEPO->isInBounds(), OnlyIfReducedTy);
1292 }
Reid Spencer266e42b2006-12-23 06:05:41 +00001293 case Instruction::ICmp:
1294 case Instruction::FCmp:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001295 return ConstantExpr::getCompare(getPredicate(), Ops[0], Ops[1],
1296 OnlyIfReducedTy);
Chris Lattner227816342006-07-14 22:20:01 +00001297 default:
1298 assert(getNumOperands() == 2 && "Must be binary operator?");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001299 return ConstantExpr::get(getOpcode(), Ops[0], Ops[1], SubclassOptionalData,
1300 OnlyIfReducedTy);
Chris Lattner7c1018a2006-07-14 19:37:40 +00001301 }
1302}
1303
Chris Lattner2f7c9632001-06-06 20:29:01 +00001304
1305//===----------------------------------------------------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +00001306// isValueValidForType implementations
1307
Chris Lattner229907c2011-07-18 04:54:35 +00001308bool ConstantInt::isValueValidForType(Type *Ty, uint64_t Val) {
Chris Lattner8326bd82012-01-26 00:42:34 +00001309 unsigned NumBits = Ty->getIntegerBitWidth(); // assert okay
1310 if (Ty->isIntegerTy(1))
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001311 return Val == 0 || Val == 1;
Reid Spencerd7a00d72007-02-05 23:47:56 +00001312 if (NumBits >= 64)
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001313 return true; // always true, has to fit in largest type
1314 uint64_t Max = (1ll << NumBits) - 1;
1315 return Val <= Max;
Reid Spencere7334722006-12-19 01:28:19 +00001316}
1317
Chris Lattner229907c2011-07-18 04:54:35 +00001318bool ConstantInt::isValueValidForType(Type *Ty, int64_t Val) {
Chris Lattner8326bd82012-01-26 00:42:34 +00001319 unsigned NumBits = Ty->getIntegerBitWidth();
1320 if (Ty->isIntegerTy(1))
Reid Spencera94d3942007-01-19 21:13:56 +00001321 return Val == 0 || Val == 1 || Val == -1;
Reid Spencerd7a00d72007-02-05 23:47:56 +00001322 if (NumBits >= 64)
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001323 return true; // always true, has to fit in largest type
1324 int64_t Min = -(1ll << (NumBits-1));
1325 int64_t Max = (1ll << (NumBits-1)) - 1;
1326 return (Val >= Min && Val <= Max);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001327}
1328
Chris Lattner229907c2011-07-18 04:54:35 +00001329bool ConstantFP::isValueValidForType(Type *Ty, const APFloat& Val) {
Dale Johannesend246b2c2007-08-30 00:23:21 +00001330 // convert modifies in place, so make a copy.
1331 APFloat Val2 = APFloat(Val);
Dale Johannesen4f0bd682008-10-09 23:00:39 +00001332 bool losesInfo;
Chris Lattner6b727592004-06-17 18:19:28 +00001333 switch (Ty->getTypeID()) {
Chris Lattner2f7c9632001-06-06 20:29:01 +00001334 default:
1335 return false; // These can't be represented as floating point!
1336
Dale Johannesend246b2c2007-08-30 00:23:21 +00001337 // FIXME rounding mode needs to be more flexible
Dan Gohman518cda42011-12-17 00:04:22 +00001338 case Type::HalfTyID: {
1339 if (&Val2.getSemantics() == &APFloat::IEEEhalf)
1340 return true;
1341 Val2.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven, &losesInfo);
1342 return !losesInfo;
1343 }
Dale Johannesen4f0bd682008-10-09 23:00:39 +00001344 case Type::FloatTyID: {
1345 if (&Val2.getSemantics() == &APFloat::IEEEsingle)
1346 return true;
1347 Val2.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven, &losesInfo);
1348 return !losesInfo;
1349 }
1350 case Type::DoubleTyID: {
Dan Gohman518cda42011-12-17 00:04:22 +00001351 if (&Val2.getSemantics() == &APFloat::IEEEhalf ||
1352 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen4f0bd682008-10-09 23:00:39 +00001353 &Val2.getSemantics() == &APFloat::IEEEdouble)
1354 return true;
1355 Val2.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, &losesInfo);
1356 return !losesInfo;
1357 }
Dale Johannesenbdad8092007-08-09 22:51:36 +00001358 case Type::X86_FP80TyID:
Dan Gohman518cda42011-12-17 00:04:22 +00001359 return &Val2.getSemantics() == &APFloat::IEEEhalf ||
1360 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen028084e2007-09-12 03:30:33 +00001361 &Val2.getSemantics() == &APFloat::IEEEdouble ||
1362 &Val2.getSemantics() == &APFloat::x87DoubleExtended;
Dale Johannesenbdad8092007-08-09 22:51:36 +00001363 case Type::FP128TyID:
Dan Gohman518cda42011-12-17 00:04:22 +00001364 return &Val2.getSemantics() == &APFloat::IEEEhalf ||
1365 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen028084e2007-09-12 03:30:33 +00001366 &Val2.getSemantics() == &APFloat::IEEEdouble ||
1367 &Val2.getSemantics() == &APFloat::IEEEquad;
Dale Johannesen007aa372007-10-11 18:07:22 +00001368 case Type::PPC_FP128TyID:
Dan Gohman518cda42011-12-17 00:04:22 +00001369 return &Val2.getSemantics() == &APFloat::IEEEhalf ||
1370 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen007aa372007-10-11 18:07:22 +00001371 &Val2.getSemantics() == &APFloat::IEEEdouble ||
1372 &Val2.getSemantics() == &APFloat::PPCDoubleDouble;
Chris Lattner2f7c9632001-06-06 20:29:01 +00001373 }
Chris Lattneraa2372562006-05-24 17:04:05 +00001374}
Chris Lattner9655e542001-07-20 19:16:02 +00001375
Chris Lattner030af792012-01-24 05:42:11 +00001376
Chris Lattner49d855c2001-09-07 16:46:31 +00001377//===----------------------------------------------------------------------===//
Chris Lattner49d855c2001-09-07 16:46:31 +00001378// Factory Function Implementation
1379
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001380ConstantAggregateZero *ConstantAggregateZero::get(Type *Ty) {
Chris Lattner13ee7952010-08-28 04:09:24 +00001381 assert((Ty->isStructTy() || Ty->isArrayTy() || Ty->isVectorTy()) &&
Owen Andersonb292b8c2009-07-30 23:03:37 +00001382 "Cannot create an aggregate zero of non-aggregate type!");
David Blaikiecb2818f2014-11-25 02:26:22 +00001383
1384 ConstantAggregateZero *&Entry = Ty->getContext().pImpl->CAZConstants[Ty];
David Blaikie899b85a2014-11-25 02:13:54 +00001385 if (!Entry)
David Blaikiecb2818f2014-11-25 02:26:22 +00001386 Entry = new ConstantAggregateZero(Ty);
David Blaikie899b85a2014-11-25 02:13:54 +00001387
David Blaikiecb2818f2014-11-25 02:26:22 +00001388 return Entry;
Owen Andersonb292b8c2009-07-30 23:03:37 +00001389}
1390
Chris Lattner030af792012-01-24 05:42:11 +00001391/// destroyConstant - Remove the constant from the constant table.
Dan Gohman92b551b2009-03-03 02:55:14 +00001392///
Pete Cooper86dd4cf2015-06-23 21:55:11 +00001393void ConstantAggregateZero::destroyConstantImpl() {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001394 getContext().pImpl->CAZConstants.erase(getType());
Chris Lattner9fba3da2004-02-15 05:53:04 +00001395}
1396
Dan Gohman92b551b2009-03-03 02:55:14 +00001397/// destroyConstant - Remove the constant from the constant table...
1398///
Pete Cooper86dd4cf2015-06-23 21:55:11 +00001399void ConstantArray::destroyConstantImpl() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001400 getType()->getContext().pImpl->ArrayConstants.remove(this);
Chris Lattner98fa07b2003-05-23 20:03:32 +00001401}
1402
Chris Lattner81fabb02002-08-26 17:53:56 +00001403
Chris Lattner3462ae32001-12-03 22:26:30 +00001404//---- ConstantStruct::get() implementation...
Chris Lattner49d855c2001-09-07 16:46:31 +00001405//
Chris Lattnerb50d1352003-10-05 00:17:43 +00001406
Chris Lattnerd7a73302001-10-13 06:57:33 +00001407// destroyConstant - Remove the constant from the constant table...
Chris Lattner883ad0b2001-10-03 15:39:36 +00001408//
Pete Cooper86dd4cf2015-06-23 21:55:11 +00001409void ConstantStruct::destroyConstantImpl() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001410 getType()->getContext().pImpl->StructConstants.remove(this);
Chris Lattnerd7a73302001-10-13 06:57:33 +00001411}
Chris Lattner883ad0b2001-10-03 15:39:36 +00001412
Brian Gaeke02209042004-08-20 06:00:58 +00001413// destroyConstant - Remove the constant from the constant table...
1414//
Pete Cooper86dd4cf2015-06-23 21:55:11 +00001415void ConstantVector::destroyConstantImpl() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001416 getType()->getContext().pImpl->VectorConstants.remove(this);
Brian Gaeke02209042004-08-20 06:00:58 +00001417}
1418
Duncan Sandse6beec62012-11-13 12:59:33 +00001419/// getSplatValue - If this is a splat vector constant, meaning that all of
1420/// the elements have the same value, return that value. Otherwise return 0.
1421Constant *Constant::getSplatValue() const {
1422 assert(this->getType()->isVectorTy() && "Only valid for vectors!");
1423 if (isa<ConstantAggregateZero>(this))
1424 return getNullValue(this->getType()->getVectorElementType());
1425 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this))
1426 return CV->getSplatValue();
1427 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
1428 return CV->getSplatValue();
Craig Topperc6207612014-04-09 06:08:46 +00001429 return nullptr;
Duncan Sandse6beec62012-11-13 12:59:33 +00001430}
1431
Dan Gohman07159202007-10-17 17:51:30 +00001432/// getSplatValue - If this is a splat constant, where all of the
1433/// elements have the same value, return that value. Otherwise return null.
Duncan Sandscf0ff032011-02-01 08:39:12 +00001434Constant *ConstantVector::getSplatValue() const {
Dan Gohman07159202007-10-17 17:51:30 +00001435 // Check out first element.
1436 Constant *Elt = getOperand(0);
1437 // Then make sure all remaining elements point to the same value.
1438 for (unsigned I = 1, E = getNumOperands(); I < E; ++I)
Chris Lattnerd04e32d2011-07-17 06:01:30 +00001439 if (getOperand(I) != Elt)
Craig Topperc6207612014-04-09 06:08:46 +00001440 return nullptr;
Dan Gohman07159202007-10-17 17:51:30 +00001441 return Elt;
1442}
1443
Duncan Sandse6beec62012-11-13 12:59:33 +00001444/// If C is a constant integer then return its value, otherwise C must be a
1445/// vector of constant integers, all equal, and the common value is returned.
1446const APInt &Constant::getUniqueInteger() const {
1447 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
1448 return CI->getValue();
1449 assert(this->getSplatValue() && "Doesn't contain a unique integer!");
1450 const Constant *C = this->getAggregateElement(0U);
1451 assert(C && isa<ConstantInt>(C) && "Not a vector of numbers!");
1452 return cast<ConstantInt>(C)->getValue();
1453}
1454
Chris Lattner31b132c2009-10-28 00:01:44 +00001455//---- ConstantPointerNull::get() implementation.
Chris Lattnerd7a73302001-10-13 06:57:33 +00001456//
Chris Lattner98fa07b2003-05-23 20:03:32 +00001457
Chris Lattner229907c2011-07-18 04:54:35 +00001458ConstantPointerNull *ConstantPointerNull::get(PointerType *Ty) {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001459 ConstantPointerNull *&Entry = Ty->getContext().pImpl->CPNConstants[Ty];
Craig Topperc6207612014-04-09 06:08:46 +00001460 if (!Entry)
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001461 Entry = new ConstantPointerNull(Ty);
Galina Kistanovafc259902012-07-13 01:25:27 +00001462
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001463 return Entry;
Chris Lattner883ad0b2001-10-03 15:39:36 +00001464}
1465
Chris Lattner0c6e0b92002-08-18 00:40:04 +00001466// destroyConstant - Remove the constant from the constant table...
1467//
Pete Cooper86dd4cf2015-06-23 21:55:11 +00001468void ConstantPointerNull::destroyConstantImpl() {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001469 getContext().pImpl->CPNConstants.erase(getType());
Chris Lattner0c6e0b92002-08-18 00:40:04 +00001470}
1471
1472
Chris Lattner31b132c2009-10-28 00:01:44 +00001473//---- UndefValue::get() implementation.
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001474//
1475
Chris Lattner229907c2011-07-18 04:54:35 +00001476UndefValue *UndefValue::get(Type *Ty) {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001477 UndefValue *&Entry = Ty->getContext().pImpl->UVConstants[Ty];
Craig Topperc6207612014-04-09 06:08:46 +00001478 if (!Entry)
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001479 Entry = new UndefValue(Ty);
Galina Kistanovafc259902012-07-13 01:25:27 +00001480
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001481 return Entry;
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001482}
1483
1484// destroyConstant - Remove the constant from the constant table.
1485//
Pete Cooper86dd4cf2015-06-23 21:55:11 +00001486void UndefValue::destroyConstantImpl() {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001487 // Free the constant and any dangling references to it.
1488 getContext().pImpl->UVConstants.erase(getType());
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001489}
1490
Chris Lattner31b132c2009-10-28 00:01:44 +00001491//---- BlockAddress::get() implementation.
1492//
1493
1494BlockAddress *BlockAddress::get(BasicBlock *BB) {
Craig Topper2617dcc2014-04-15 06:32:26 +00001495 assert(BB->getParent() && "Block must have a parent");
Chris Lattner31b132c2009-10-28 00:01:44 +00001496 return get(BB->getParent(), BB);
1497}
1498
1499BlockAddress *BlockAddress::get(Function *F, BasicBlock *BB) {
1500 BlockAddress *&BA =
1501 F->getContext().pImpl->BlockAddresses[std::make_pair(F, BB)];
Craig Topperc6207612014-04-09 06:08:46 +00001502 if (!BA)
Chris Lattner31b132c2009-10-28 00:01:44 +00001503 BA = new BlockAddress(F, BB);
Galina Kistanovafc259902012-07-13 01:25:27 +00001504
Chris Lattner31b132c2009-10-28 00:01:44 +00001505 assert(BA->getFunction() == F && "Basic block moved between functions");
1506 return BA;
1507}
1508
1509BlockAddress::BlockAddress(Function *F, BasicBlock *BB)
1510: Constant(Type::getInt8PtrTy(F->getContext()), Value::BlockAddressVal,
1511 &Op<0>(), 2) {
Chris Lattnerc559a9f2009-11-01 03:03:03 +00001512 setOperand(0, F);
1513 setOperand(1, BB);
Chris Lattneraa99c942009-11-01 01:27:45 +00001514 BB->AdjustBlockAddressRefCount(1);
Chris Lattner31b132c2009-10-28 00:01:44 +00001515}
1516
Chandler Carruth6a936922014-01-19 02:13:50 +00001517BlockAddress *BlockAddress::lookup(const BasicBlock *BB) {
1518 if (!BB->hasAddressTaken())
Craig Topperc6207612014-04-09 06:08:46 +00001519 return nullptr;
Chandler Carruth6a936922014-01-19 02:13:50 +00001520
1521 const Function *F = BB->getParent();
Craig Topper2617dcc2014-04-15 06:32:26 +00001522 assert(F && "Block must have a parent");
Chandler Carruth6a936922014-01-19 02:13:50 +00001523 BlockAddress *BA =
1524 F->getContext().pImpl->BlockAddresses.lookup(std::make_pair(F, BB));
1525 assert(BA && "Refcount and block address map disagree!");
1526 return BA;
1527}
Chris Lattner31b132c2009-10-28 00:01:44 +00001528
1529// destroyConstant - Remove the constant from the constant table.
1530//
Pete Cooper86dd4cf2015-06-23 21:55:11 +00001531void BlockAddress::destroyConstantImpl() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001532 getFunction()->getType()->getContext().pImpl
Chris Lattner31b132c2009-10-28 00:01:44 +00001533 ->BlockAddresses.erase(std::make_pair(getFunction(), getBasicBlock()));
Chris Lattneraa99c942009-11-01 01:27:45 +00001534 getBasicBlock()->AdjustBlockAddressRefCount(-1);
Chris Lattner31b132c2009-10-28 00:01:44 +00001535}
1536
Pete Cooper5815b1f2015-06-24 18:55:24 +00001537Value *BlockAddress::handleOperandChangeImpl(Value *From, Value *To, Use *U) {
Chris Lattner31b132c2009-10-28 00:01:44 +00001538 // This could be replacing either the Basic Block or the Function. In either
1539 // case, we have to remove the map entry.
1540 Function *NewF = getFunction();
1541 BasicBlock *NewBB = getBasicBlock();
Galina Kistanovafc259902012-07-13 01:25:27 +00001542
Chris Lattner31b132c2009-10-28 00:01:44 +00001543 if (U == &Op<0>())
Derek Schuffec9dc012013-06-13 19:51:17 +00001544 NewF = cast<Function>(To->stripPointerCasts());
Chris Lattner31b132c2009-10-28 00:01:44 +00001545 else
1546 NewBB = cast<BasicBlock>(To);
Galina Kistanovafc259902012-07-13 01:25:27 +00001547
Chris Lattner31b132c2009-10-28 00:01:44 +00001548 // See if the 'new' entry already exists, if not, just update this in place
1549 // and return early.
1550 BlockAddress *&NewBA =
1551 getContext().pImpl->BlockAddresses[std::make_pair(NewF, NewBB)];
Pete Cooper5815b1f2015-06-24 18:55:24 +00001552 if (NewBA)
1553 return NewBA;
Chris Lattner31b132c2009-10-28 00:01:44 +00001554
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00001555 getBasicBlock()->AdjustBlockAddressRefCount(-1);
Galina Kistanovafc259902012-07-13 01:25:27 +00001556
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00001557 // Remove the old entry, this can't cause the map to rehash (just a
1558 // tombstone will get added).
1559 getContext().pImpl->BlockAddresses.erase(std::make_pair(getFunction(),
1560 getBasicBlock()));
1561 NewBA = this;
1562 setOperand(0, NewF);
1563 setOperand(1, NewBB);
1564 getBasicBlock()->AdjustBlockAddressRefCount(1);
Pete Cooper5815b1f2015-06-24 18:55:24 +00001565
1566 // If we just want to keep the existing value, then return null.
1567 // Callers know that this means we shouldn't delete this value.
1568 return nullptr;
Chris Lattner31b132c2009-10-28 00:01:44 +00001569}
1570
1571//---- ConstantExpr::get() implementations.
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001572//
Reid Spencer8d9336d2006-12-31 05:26:44 +00001573
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001574/// This is a utility function to handle folding of casts and lookup of the
Duncan Sands7d6c8ae2008-03-30 19:38:55 +00001575/// cast in the ExprConstants map. It is used by the various get* methods below.
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001576static Constant *getFoldedCast(Instruction::CastOps opc, Constant *C, Type *Ty,
1577 bool OnlyIfReduced = false) {
Chris Lattner815ae2b2003-10-07 22:19:19 +00001578 assert(Ty->isFirstClassType() && "Cannot cast to an aggregate type!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001579 // Fold a few common cases
Chris Lattnerf5edeeb2010-02-01 20:48:08 +00001580 if (Constant *FC = ConstantFoldCastInstruction(opc, C, Ty))
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001581 return FC;
Chris Lattneracdbe712003-04-17 19:24:48 +00001582
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001583 if (OnlyIfReduced)
1584 return nullptr;
1585
Owen Anderson1584a292009-08-04 20:25:11 +00001586 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
1587
Nadav Rotem88330432013-03-07 01:30:40 +00001588 // Look up the constant in the table first to ensure uniqueness.
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00001589 ConstantExprKeyType Key(opc, C);
Galina Kistanovafc259902012-07-13 01:25:27 +00001590
Owen Anderson1584a292009-08-04 20:25:11 +00001591 return pImpl->ExprConstants.getOrCreate(Ty, Key);
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001592}
Galina Kistanovafc259902012-07-13 01:25:27 +00001593
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001594Constant *ConstantExpr::getCast(unsigned oc, Constant *C, Type *Ty,
1595 bool OnlyIfReduced) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001596 Instruction::CastOps opc = Instruction::CastOps(oc);
1597 assert(Instruction::isCast(opc) && "opcode out of range");
1598 assert(C && Ty && "Null arguments to getCast");
Chris Lattner37bc78a2010-01-26 21:51:43 +00001599 assert(CastInst::castIsValid(opc, C, Ty) && "Invalid constantexpr cast!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001600
1601 switch (opc) {
Chris Lattner37bc78a2010-01-26 21:51:43 +00001602 default:
1603 llvm_unreachable("Invalid cast opcode");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001604 case Instruction::Trunc:
1605 return getTrunc(C, Ty, OnlyIfReduced);
1606 case Instruction::ZExt:
1607 return getZExt(C, Ty, OnlyIfReduced);
1608 case Instruction::SExt:
1609 return getSExt(C, Ty, OnlyIfReduced);
1610 case Instruction::FPTrunc:
1611 return getFPTrunc(C, Ty, OnlyIfReduced);
1612 case Instruction::FPExt:
1613 return getFPExtend(C, Ty, OnlyIfReduced);
1614 case Instruction::UIToFP:
1615 return getUIToFP(C, Ty, OnlyIfReduced);
1616 case Instruction::SIToFP:
1617 return getSIToFP(C, Ty, OnlyIfReduced);
1618 case Instruction::FPToUI:
1619 return getFPToUI(C, Ty, OnlyIfReduced);
1620 case Instruction::FPToSI:
1621 return getFPToSI(C, Ty, OnlyIfReduced);
1622 case Instruction::PtrToInt:
1623 return getPtrToInt(C, Ty, OnlyIfReduced);
1624 case Instruction::IntToPtr:
1625 return getIntToPtr(C, Ty, OnlyIfReduced);
1626 case Instruction::BitCast:
1627 return getBitCast(C, Ty, OnlyIfReduced);
1628 case Instruction::AddrSpaceCast:
1629 return getAddrSpaceCast(C, Ty, OnlyIfReduced);
Chris Lattner1ece6f82005-01-01 15:59:57 +00001630 }
Galina Kistanovafc259902012-07-13 01:25:27 +00001631}
Reid Spencerf37dc652006-12-05 19:14:13 +00001632
Chris Lattner229907c2011-07-18 04:54:35 +00001633Constant *ConstantExpr::getZExtOrBitCast(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001634 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001635 return getBitCast(C, Ty);
1636 return getZExt(C, Ty);
Reid Spencer5c140882006-12-04 20:17:56 +00001637}
1638
Chris Lattner229907c2011-07-18 04:54:35 +00001639Constant *ConstantExpr::getSExtOrBitCast(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001640 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001641 return getBitCast(C, Ty);
1642 return getSExt(C, Ty);
Reid Spencer5c140882006-12-04 20:17:56 +00001643}
1644
Chris Lattner229907c2011-07-18 04:54:35 +00001645Constant *ConstantExpr::getTruncOrBitCast(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001646 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001647 return getBitCast(C, Ty);
1648 return getTrunc(C, Ty);
Reid Spencer5c140882006-12-04 20:17:56 +00001649}
1650
Chris Lattner229907c2011-07-18 04:54:35 +00001651Constant *ConstantExpr::getPointerCast(Constant *S, Type *Ty) {
Evgeniy Stepanov23382642013-01-16 14:41:46 +00001652 assert(S->getType()->isPtrOrPtrVectorTy() && "Invalid cast");
1653 assert((Ty->isIntOrIntVectorTy() || Ty->isPtrOrPtrVectorTy()) &&
1654 "Invalid cast");
Reid Spencerbc245a02006-12-05 03:25:26 +00001655
Evgeniy Stepanov23382642013-01-16 14:41:46 +00001656 if (Ty->isIntOrIntVectorTy())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001657 return getPtrToInt(S, Ty);
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001658
1659 unsigned SrcAS = S->getType()->getPointerAddressSpace();
1660 if (Ty->isPtrOrPtrVectorTy() && SrcAS != Ty->getPointerAddressSpace())
1661 return getAddrSpaceCast(S, Ty);
1662
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001663 return getBitCast(S, Ty);
Reid Spencerbc245a02006-12-05 03:25:26 +00001664}
1665
Matt Arsenault21f38f42013-12-07 02:58:41 +00001666Constant *ConstantExpr::getPointerBitCastOrAddrSpaceCast(Constant *S,
1667 Type *Ty) {
1668 assert(S->getType()->isPtrOrPtrVectorTy() && "Invalid cast");
1669 assert(Ty->isPtrOrPtrVectorTy() && "Invalid cast");
1670
1671 if (S->getType()->getPointerAddressSpace() != Ty->getPointerAddressSpace())
1672 return getAddrSpaceCast(S, Ty);
1673
1674 return getBitCast(S, Ty);
1675}
1676
1677Constant *ConstantExpr::getIntegerCast(Constant *C, Type *Ty,
Reid Spencer56521c42006-12-12 00:51:07 +00001678 bool isSigned) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001679 assert(C->getType()->isIntOrIntVectorTy() &&
1680 Ty->isIntOrIntVectorTy() && "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001681 unsigned SrcBits = C->getType()->getScalarSizeInBits();
1682 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer56521c42006-12-12 00:51:07 +00001683 Instruction::CastOps opcode =
1684 (SrcBits == DstBits ? Instruction::BitCast :
1685 (SrcBits > DstBits ? Instruction::Trunc :
1686 (isSigned ? Instruction::SExt : Instruction::ZExt)));
1687 return getCast(opcode, C, Ty);
1688}
1689
Chris Lattner229907c2011-07-18 04:54:35 +00001690Constant *ConstantExpr::getFPCast(Constant *C, Type *Ty) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001691 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer56521c42006-12-12 00:51:07 +00001692 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001693 unsigned SrcBits = C->getType()->getScalarSizeInBits();
1694 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencerca104e82006-12-12 05:38:50 +00001695 if (SrcBits == DstBits)
1696 return C; // Avoid a useless cast
Reid Spencer56521c42006-12-12 00:51:07 +00001697 Instruction::CastOps opcode =
Jay Foad9f32cfd2011-01-27 14:44:55 +00001698 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt);
Reid Spencer56521c42006-12-12 00:51:07 +00001699 return getCast(opcode, C, Ty);
1700}
1701
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001702Constant *ConstantExpr::getTrunc(Constant *C, Type *Ty, bool OnlyIfReduced) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001703#ifndef NDEBUG
1704 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1705 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1706#endif
1707 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001708 assert(C->getType()->isIntOrIntVectorTy() && "Trunc operand must be integer");
1709 assert(Ty->isIntOrIntVectorTy() && "Trunc produces only integral");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001710 assert(C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001711 "SrcTy must be larger than DestTy for Trunc!");
1712
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001713 return getFoldedCast(Instruction::Trunc, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001714}
1715
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001716Constant *ConstantExpr::getSExt(Constant *C, Type *Ty, bool OnlyIfReduced) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001717#ifndef NDEBUG
1718 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1719 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1720#endif
1721 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001722 assert(C->getType()->isIntOrIntVectorTy() && "SExt operand must be integral");
1723 assert(Ty->isIntOrIntVectorTy() && "SExt produces only integer");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001724 assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001725 "SrcTy must be smaller than DestTy for SExt!");
1726
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001727 return getFoldedCast(Instruction::SExt, C, Ty, OnlyIfReduced);
Chris Lattnerdd284742004-04-04 23:20:30 +00001728}
1729
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001730Constant *ConstantExpr::getZExt(Constant *C, Type *Ty, bool OnlyIfReduced) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001731#ifndef NDEBUG
1732 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1733 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1734#endif
1735 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001736 assert(C->getType()->isIntOrIntVectorTy() && "ZEXt operand must be integral");
1737 assert(Ty->isIntOrIntVectorTy() && "ZExt produces only integer");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001738 assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001739 "SrcTy must be smaller than DestTy for ZExt!");
1740
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001741 return getFoldedCast(Instruction::ZExt, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001742}
1743
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001744Constant *ConstantExpr::getFPTrunc(Constant *C, Type *Ty, bool OnlyIfReduced) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001745#ifndef NDEBUG
1746 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1747 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1748#endif
1749 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001750 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001751 C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001752 "This is an illegal floating point truncation!");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001753 return getFoldedCast(Instruction::FPTrunc, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001754}
1755
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001756Constant *ConstantExpr::getFPExtend(Constant *C, Type *Ty, bool OnlyIfReduced) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001757#ifndef NDEBUG
1758 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1759 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1760#endif
1761 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001762 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001763 C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001764 "This is an illegal floating point extension!");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001765 return getFoldedCast(Instruction::FPExt, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001766}
1767
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001768Constant *ConstantExpr::getUIToFP(Constant *C, Type *Ty, bool OnlyIfReduced) {
Devang Pateld26344d2008-11-03 23:20:04 +00001769#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001770 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1771 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001772#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001773 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001774 assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00001775 "This is an illegal uint to floating point cast!");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001776 return getFoldedCast(Instruction::UIToFP, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001777}
1778
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001779Constant *ConstantExpr::getSIToFP(Constant *C, Type *Ty, bool OnlyIfReduced) {
Devang Pateld26344d2008-11-03 23:20:04 +00001780#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001781 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1782 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001783#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001784 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001785 assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001786 "This is an illegal sint to floating point cast!");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001787 return getFoldedCast(Instruction::SIToFP, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001788}
1789
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001790Constant *ConstantExpr::getFPToUI(Constant *C, Type *Ty, bool OnlyIfReduced) {
Devang Pateld26344d2008-11-03 23:20:04 +00001791#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001792 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1793 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001794#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001795 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001796 assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00001797 "This is an illegal floating point to uint cast!");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001798 return getFoldedCast(Instruction::FPToUI, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001799}
1800
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001801Constant *ConstantExpr::getFPToSI(Constant *C, Type *Ty, bool OnlyIfReduced) {
Devang Pateld26344d2008-11-03 23:20:04 +00001802#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001803 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1804 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001805#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001806 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001807 assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00001808 "This is an illegal floating point to sint cast!");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001809 return getFoldedCast(Instruction::FPToSI, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001810}
1811
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001812Constant *ConstantExpr::getPtrToInt(Constant *C, Type *DstTy,
1813 bool OnlyIfReduced) {
Nadav Rotem3924cb02011-12-05 06:29:09 +00001814 assert(C->getType()->getScalarType()->isPointerTy() &&
1815 "PtrToInt source must be pointer or pointer vector");
1816 assert(DstTy->getScalarType()->isIntegerTy() &&
1817 "PtrToInt destination must be integer or integer vector");
Chris Lattner8a3df542012-01-25 01:32:59 +00001818 assert(isa<VectorType>(C->getType()) == isa<VectorType>(DstTy));
Nick Lewyckyff509622012-01-25 03:20:12 +00001819 if (isa<VectorType>(C->getType()))
Chris Lattner8326bd82012-01-26 00:42:34 +00001820 assert(C->getType()->getVectorNumElements()==DstTy->getVectorNumElements()&&
Chris Lattner8a3df542012-01-25 01:32:59 +00001821 "Invalid cast between a different number of vector elements");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001822 return getFoldedCast(Instruction::PtrToInt, C, DstTy, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001823}
1824
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001825Constant *ConstantExpr::getIntToPtr(Constant *C, Type *DstTy,
1826 bool OnlyIfReduced) {
Nadav Rotem3924cb02011-12-05 06:29:09 +00001827 assert(C->getType()->getScalarType()->isIntegerTy() &&
1828 "IntToPtr source must be integer or integer vector");
1829 assert(DstTy->getScalarType()->isPointerTy() &&
1830 "IntToPtr destination must be a pointer or pointer vector");
Chris Lattner8a3df542012-01-25 01:32:59 +00001831 assert(isa<VectorType>(C->getType()) == isa<VectorType>(DstTy));
Nick Lewyckyff509622012-01-25 03:20:12 +00001832 if (isa<VectorType>(C->getType()))
Chris Lattner8326bd82012-01-26 00:42:34 +00001833 assert(C->getType()->getVectorNumElements()==DstTy->getVectorNumElements()&&
Chris Lattner8a3df542012-01-25 01:32:59 +00001834 "Invalid cast between a different number of vector elements");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001835 return getFoldedCast(Instruction::IntToPtr, C, DstTy, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001836}
1837
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001838Constant *ConstantExpr::getBitCast(Constant *C, Type *DstTy,
1839 bool OnlyIfReduced) {
Chris Lattner37bc78a2010-01-26 21:51:43 +00001840 assert(CastInst::castIsValid(Instruction::BitCast, C, DstTy) &&
1841 "Invalid constantexpr bitcast!");
Galina Kistanovafc259902012-07-13 01:25:27 +00001842
Chris Lattnercbeda872009-03-21 06:55:54 +00001843 // It is common to ask for a bitcast of a value to its own type, handle this
1844 // speedily.
1845 if (C->getType() == DstTy) return C;
Galina Kistanovafc259902012-07-13 01:25:27 +00001846
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001847 return getFoldedCast(Instruction::BitCast, C, DstTy, OnlyIfReduced);
Chris Lattnerdd284742004-04-04 23:20:30 +00001848}
1849
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001850Constant *ConstantExpr::getAddrSpaceCast(Constant *C, Type *DstTy,
1851 bool OnlyIfReduced) {
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001852 assert(CastInst::castIsValid(Instruction::AddrSpaceCast, C, DstTy) &&
1853 "Invalid constantexpr addrspacecast!");
1854
Jingyue Wubaabe502014-06-15 21:40:57 +00001855 // Canonicalize addrspacecasts between different pointer types by first
1856 // bitcasting the pointer type and then converting the address space.
1857 PointerType *SrcScalarTy = cast<PointerType>(C->getType()->getScalarType());
1858 PointerType *DstScalarTy = cast<PointerType>(DstTy->getScalarType());
1859 Type *DstElemTy = DstScalarTy->getElementType();
1860 if (SrcScalarTy->getElementType() != DstElemTy) {
1861 Type *MidTy = PointerType::get(DstElemTy, SrcScalarTy->getAddressSpace());
1862 if (VectorType *VT = dyn_cast<VectorType>(DstTy)) {
1863 // Handle vectors of pointers.
1864 MidTy = VectorType::get(MidTy, VT->getNumElements());
1865 }
1866 C = getBitCast(C, MidTy);
1867 }
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001868 return getFoldedCast(Instruction::AddrSpaceCast, C, DstTy, OnlyIfReduced);
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001869}
1870
Chris Lattner887ecac2011-07-09 18:23:52 +00001871Constant *ConstantExpr::get(unsigned Opcode, Constant *C1, Constant *C2,
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001872 unsigned Flags, Type *OnlyIfReducedTy) {
Chris Lattner887ecac2011-07-09 18:23:52 +00001873 // Check the operands for consistency first.
Reid Spencer7eb55b32006-11-02 01:53:59 +00001874 assert(Opcode >= Instruction::BinaryOpsBegin &&
1875 Opcode < Instruction::BinaryOpsEnd &&
Chris Lattner38a9bcd2003-05-21 17:49:25 +00001876 "Invalid opcode in binary constant expression");
1877 assert(C1->getType() == C2->getType() &&
1878 "Operand types in binary constant expression should match");
Galina Kistanovafc259902012-07-13 01:25:27 +00001879
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001880#ifndef NDEBUG
1881 switch (Opcode) {
Dan Gohmana5b96452009-06-04 22:49:04 +00001882 case Instruction::Add:
Reid Spencer7eb55b32006-11-02 01:53:59 +00001883 case Instruction::Sub:
Dan Gohmana5b96452009-06-04 22:49:04 +00001884 case Instruction::Mul:
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001885 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001886 assert(C1->getType()->isIntOrIntVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001887 "Tried to create an integer operation on a non-integer type!");
1888 break;
1889 case Instruction::FAdd:
1890 case Instruction::FSub:
1891 case Instruction::FMul:
1892 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001893 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001894 "Tried to create a floating-point operation on a "
1895 "non-floating-point type!");
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001896 break;
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001897 case Instruction::UDiv:
1898 case Instruction::SDiv:
1899 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001900 assert(C1->getType()->isIntOrIntVectorTy() &&
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001901 "Tried to create an arithmetic operation on a non-arithmetic type!");
1902 break;
1903 case Instruction::FDiv:
1904 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001905 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001906 "Tried to create an arithmetic operation on a non-arithmetic type!");
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001907 break;
Reid Spencer7eb55b32006-11-02 01:53:59 +00001908 case Instruction::URem:
1909 case Instruction::SRem:
1910 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001911 assert(C1->getType()->isIntOrIntVectorTy() &&
Reid Spencer7eb55b32006-11-02 01:53:59 +00001912 "Tried to create an arithmetic operation on a non-arithmetic type!");
1913 break;
1914 case Instruction::FRem:
1915 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001916 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001917 "Tried to create an arithmetic operation on a non-arithmetic type!");
Reid Spencer7eb55b32006-11-02 01:53:59 +00001918 break;
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001919 case Instruction::And:
1920 case Instruction::Or:
1921 case Instruction::Xor:
1922 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001923 assert(C1->getType()->isIntOrIntVectorTy() &&
Misha Brukman3852f652005-01-27 06:46:38 +00001924 "Tried to create a logical operation on a non-integral type!");
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001925 break;
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001926 case Instruction::Shl:
Reid Spencerfdff9382006-11-08 06:47:33 +00001927 case Instruction::LShr:
1928 case Instruction::AShr:
Reid Spencer2341c222007-02-02 02:16:23 +00001929 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001930 assert(C1->getType()->isIntOrIntVectorTy() &&
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001931 "Tried to create a shift operation on a non-integer type!");
1932 break;
1933 default:
1934 break;
1935 }
1936#endif
1937
Chris Lattner887ecac2011-07-09 18:23:52 +00001938 if (Constant *FC = ConstantFoldBinaryInstruction(Opcode, C1, C2))
1939 return FC; // Fold a few common cases.
Galina Kistanovafc259902012-07-13 01:25:27 +00001940
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001941 if (OnlyIfReducedTy == C1->getType())
1942 return nullptr;
1943
Benjamin Kramer324322b2013-03-07 20:53:34 +00001944 Constant *ArgVec[] = { C1, C2 };
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00001945 ConstantExprKeyType Key(Opcode, ArgVec, 0, Flags);
Galina Kistanovafc259902012-07-13 01:25:27 +00001946
Chris Lattner887ecac2011-07-09 18:23:52 +00001947 LLVMContextImpl *pImpl = C1->getContext().pImpl;
1948 return pImpl->ExprConstants.getOrCreate(C1->getType(), Key);
Reid Spencera009d0d2006-12-04 21:35:24 +00001949}
1950
Chris Lattner229907c2011-07-18 04:54:35 +00001951Constant *ConstantExpr::getSizeOf(Type* Ty) {
Owen Anderson487375e2009-07-29 18:55:55 +00001952 // sizeof is implemented as: (i64) gep (Ty*)null, 1
1953 // Note that a non-inbounds gep is used, as null isn't within any object.
Owen Anderson55f1c092009-08-13 21:58:54 +00001954 Constant *GEPIdx = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
Owen Anderson487375e2009-07-29 18:55:55 +00001955 Constant *GEP = getGetElementPtr(
David Blaikie4a2e73b2015-04-02 18:55:32 +00001956 Ty, Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx);
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001957 return getPtrToInt(GEP,
1958 Type::getInt64Ty(Ty->getContext()));
Owen Anderson487375e2009-07-29 18:55:55 +00001959}
1960
Chris Lattner229907c2011-07-18 04:54:35 +00001961Constant *ConstantExpr::getAlignOf(Type* Ty) {
Dan Gohmancf913832010-01-28 02:15:55 +00001962 // alignof is implemented as: (i64) gep ({i1,Ty}*)null, 0, 1
Dan Gohman50c09d02009-08-11 17:57:01 +00001963 // Note that a non-inbounds gep is used, as null isn't within any object.
Chris Lattner229907c2011-07-18 04:54:35 +00001964 Type *AligningTy =
Reid Kleckner971c3ea2014-11-13 22:55:19 +00001965 StructType::get(Type::getInt1Ty(Ty->getContext()), Ty, nullptr);
Matt Arsenaultbe558882014-04-23 20:58:57 +00001966 Constant *NullPtr = Constant::getNullValue(AligningTy->getPointerTo(0));
Dan Gohmana9be7392010-01-28 02:43:22 +00001967 Constant *Zero = ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0);
Owen Anderson55f1c092009-08-13 21:58:54 +00001968 Constant *One = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
Owen Anderson487375e2009-07-29 18:55:55 +00001969 Constant *Indices[2] = { Zero, One };
David Blaikie4a2e73b2015-04-02 18:55:32 +00001970 Constant *GEP = getGetElementPtr(AligningTy, NullPtr, Indices);
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001971 return getPtrToInt(GEP,
1972 Type::getInt64Ty(Ty->getContext()));
Owen Anderson487375e2009-07-29 18:55:55 +00001973}
1974
Chris Lattner229907c2011-07-18 04:54:35 +00001975Constant *ConstantExpr::getOffsetOf(StructType* STy, unsigned FieldNo) {
Dan Gohmanede94e62010-02-01 16:37:38 +00001976 return getOffsetOf(STy, ConstantInt::get(Type::getInt32Ty(STy->getContext()),
1977 FieldNo));
1978}
1979
Chris Lattner229907c2011-07-18 04:54:35 +00001980Constant *ConstantExpr::getOffsetOf(Type* Ty, Constant *FieldNo) {
Dan Gohmanff3af7252009-08-16 21:26:11 +00001981 // offsetof is implemented as: (i64) gep (Ty*)null, 0, FieldNo
1982 // Note that a non-inbounds gep is used, as null isn't within any object.
1983 Constant *GEPIdx[] = {
Dan Gohmanede94e62010-02-01 16:37:38 +00001984 ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0),
1985 FieldNo
Dan Gohmanff3af7252009-08-16 21:26:11 +00001986 };
1987 Constant *GEP = getGetElementPtr(
David Blaikie4a2e73b2015-04-02 18:55:32 +00001988 Ty, Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx);
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001989 return getPtrToInt(GEP,
1990 Type::getInt64Ty(Ty->getContext()));
Dan Gohmanff3af7252009-08-16 21:26:11 +00001991}
Owen Anderson487375e2009-07-29 18:55:55 +00001992
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001993Constant *ConstantExpr::getCompare(unsigned short Predicate, Constant *C1,
1994 Constant *C2, bool OnlyIfReduced) {
Reid Spencera009d0d2006-12-04 21:35:24 +00001995 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Galina Kistanovafc259902012-07-13 01:25:27 +00001996
Chris Lattner887ecac2011-07-09 18:23:52 +00001997 switch (Predicate) {
1998 default: llvm_unreachable("Invalid CmpInst predicate");
1999 case CmpInst::FCMP_FALSE: case CmpInst::FCMP_OEQ: case CmpInst::FCMP_OGT:
2000 case CmpInst::FCMP_OGE: case CmpInst::FCMP_OLT: case CmpInst::FCMP_OLE:
2001 case CmpInst::FCMP_ONE: case CmpInst::FCMP_ORD: case CmpInst::FCMP_UNO:
2002 case CmpInst::FCMP_UEQ: case CmpInst::FCMP_UGT: case CmpInst::FCMP_UGE:
2003 case CmpInst::FCMP_ULT: case CmpInst::FCMP_ULE: case CmpInst::FCMP_UNE:
2004 case CmpInst::FCMP_TRUE:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002005 return getFCmp(Predicate, C1, C2, OnlyIfReduced);
Galina Kistanovafc259902012-07-13 01:25:27 +00002006
Chris Lattner887ecac2011-07-09 18:23:52 +00002007 case CmpInst::ICMP_EQ: case CmpInst::ICMP_NE: case CmpInst::ICMP_UGT:
2008 case CmpInst::ICMP_UGE: case CmpInst::ICMP_ULT: case CmpInst::ICMP_ULE:
2009 case CmpInst::ICMP_SGT: case CmpInst::ICMP_SGE: case CmpInst::ICMP_SLT:
2010 case CmpInst::ICMP_SLE:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002011 return getICmp(Predicate, C1, C2, OnlyIfReduced);
Chris Lattner887ecac2011-07-09 18:23:52 +00002012 }
Chris Lattner29ca2c62004-08-04 18:50:09 +00002013}
2014
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002015Constant *ConstantExpr::getSelect(Constant *C, Constant *V1, Constant *V2,
2016 Type *OnlyIfReducedTy) {
Chris Lattner41632132008-12-29 00:16:12 +00002017 assert(!SelectInst::areInvalidOperands(C, V1, V2)&&"Invalid select operands");
Chris Lattner6e415c02004-03-12 05:54:04 +00002018
Chris Lattner887ecac2011-07-09 18:23:52 +00002019 if (Constant *SC = ConstantFoldSelectInstruction(C, V1, V2))
2020 return SC; // Fold common cases
Chris Lattner6e415c02004-03-12 05:54:04 +00002021
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002022 if (OnlyIfReducedTy == V1->getType())
2023 return nullptr;
2024
Benjamin Kramer324322b2013-03-07 20:53:34 +00002025 Constant *ArgVec[] = { C, V1, V2 };
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002026 ConstantExprKeyType Key(Instruction::Select, ArgVec);
Galina Kistanovafc259902012-07-13 01:25:27 +00002027
Chris Lattner887ecac2011-07-09 18:23:52 +00002028 LLVMContextImpl *pImpl = C->getContext().pImpl;
2029 return pImpl->ExprConstants.getOrCreate(V1->getType(), Key);
Chris Lattner6e415c02004-03-12 05:54:04 +00002030}
2031
David Blaikie4a2e73b2015-04-02 18:55:32 +00002032Constant *ConstantExpr::getGetElementPtr(Type *Ty, Constant *C,
2033 ArrayRef<Value *> Idxs, bool InBounds,
2034 Type *OnlyIfReducedTy) {
David Blaikie4a2e73b2015-04-02 18:55:32 +00002035 if (!Ty)
2036 Ty = cast<PointerType>(C->getType()->getScalarType())->getElementType();
2037 else
David Blaikied9d900c2015-05-07 17:28:58 +00002038 assert(
2039 Ty ==
2040 cast<PointerType>(C->getType()->getScalarType())->getContainedType(0u));
2041
2042 if (Constant *FC = ConstantFoldGetElementPtr(Ty, C, InBounds, Idxs))
2043 return FC; // Fold a few common cases.
2044
Chris Lattner887ecac2011-07-09 18:23:52 +00002045 // Get the result type of the getelementptr!
David Blaikie4a2e73b2015-04-02 18:55:32 +00002046 Type *DestTy = GetElementPtrInst::getIndexedType(Ty, Idxs);
2047 assert(DestTy && "GEP indices invalid!");
Chris Lattner8326bd82012-01-26 00:42:34 +00002048 unsigned AS = C->getType()->getPointerAddressSpace();
David Blaikie4a2e73b2015-04-02 18:55:32 +00002049 Type *ReqTy = DestTy->getPointerTo(AS);
Duncan Sandse6beec62012-11-13 12:59:33 +00002050 if (VectorType *VecTy = dyn_cast<VectorType>(C->getType()))
2051 ReqTy = VectorType::get(ReqTy, VecTy->getNumElements());
Galina Kistanovafc259902012-07-13 01:25:27 +00002052
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002053 if (OnlyIfReducedTy == ReqTy)
2054 return nullptr;
2055
Dan Gohman1b849082009-09-07 23:54:19 +00002056 // Look up the constant in the table first to ensure uniqueness
2057 std::vector<Constant*> ArgVec;
Jay Foaded8db7d2011-07-21 14:31:17 +00002058 ArgVec.reserve(1 + Idxs.size());
Dan Gohman1b849082009-09-07 23:54:19 +00002059 ArgVec.push_back(C);
Duncan Sandse6beec62012-11-13 12:59:33 +00002060 for (unsigned i = 0, e = Idxs.size(); i != e; ++i) {
2061 assert(Idxs[i]->getType()->isVectorTy() == ReqTy->isVectorTy() &&
2062 "getelementptr index type missmatch");
2063 assert((!Idxs[i]->getType()->isVectorTy() ||
2064 ReqTy->getVectorNumElements() ==
2065 Idxs[i]->getType()->getVectorNumElements()) &&
2066 "getelementptr index type missmatch");
Dan Gohman1b849082009-09-07 23:54:19 +00002067 ArgVec.push_back(cast<Constant>(Idxs[i]));
Duncan Sandse6beec62012-11-13 12:59:33 +00002068 }
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002069 const ConstantExprKeyType Key(Instruction::GetElementPtr, ArgVec, 0,
David Blaikie60310f22015-05-08 00:42:26 +00002070 InBounds ? GEPOperator::IsInBounds : 0, None,
2071 Ty);
Galina Kistanovafc259902012-07-13 01:25:27 +00002072
Chris Lattner887ecac2011-07-09 18:23:52 +00002073 LLVMContextImpl *pImpl = C->getContext().pImpl;
Dan Gohman1b849082009-09-07 23:54:19 +00002074 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
2075}
2076
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002077Constant *ConstantExpr::getICmp(unsigned short pred, Constant *LHS,
2078 Constant *RHS, bool OnlyIfReduced) {
Reid Spenceree3c9912006-12-04 05:19:50 +00002079 assert(LHS->getType() == RHS->getType());
2080 assert(pred >= ICmpInst::FIRST_ICMP_PREDICATE &&
2081 pred <= ICmpInst::LAST_ICMP_PREDICATE && "Invalid ICmp Predicate");
2082
Chris Lattnerf5edeeb2010-02-01 20:48:08 +00002083 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
Reid Spenceree3c9912006-12-04 05:19:50 +00002084 return FC; // Fold a few common cases...
2085
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002086 if (OnlyIfReduced)
2087 return nullptr;
2088
Reid Spenceree3c9912006-12-04 05:19:50 +00002089 // Look up the constant in the table first to ensure uniqueness
Benjamin Kramer324322b2013-03-07 20:53:34 +00002090 Constant *ArgVec[] = { LHS, RHS };
Reid Spencerb1537492006-12-24 18:42:29 +00002091 // Get the key type with both the opcode and predicate
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002092 const ConstantExprKeyType Key(Instruction::ICmp, ArgVec, pred);
Owen Anderson61794042009-06-17 20:10:08 +00002093
Chris Lattner229907c2011-07-18 04:54:35 +00002094 Type *ResultTy = Type::getInt1Ty(LHS->getContext());
2095 if (VectorType *VT = dyn_cast<VectorType>(LHS->getType()))
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00002096 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
2097
Owen Anderson1584a292009-08-04 20:25:11 +00002098 LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl;
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00002099 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
Reid Spenceree3c9912006-12-04 05:19:50 +00002100}
2101
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002102Constant *ConstantExpr::getFCmp(unsigned short pred, Constant *LHS,
2103 Constant *RHS, bool OnlyIfReduced) {
Reid Spenceree3c9912006-12-04 05:19:50 +00002104 assert(LHS->getType() == RHS->getType());
2105 assert(pred <= FCmpInst::LAST_FCMP_PREDICATE && "Invalid FCmp Predicate");
2106
Chris Lattnerf5edeeb2010-02-01 20:48:08 +00002107 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
Reid Spenceree3c9912006-12-04 05:19:50 +00002108 return FC; // Fold a few common cases...
2109
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002110 if (OnlyIfReduced)
2111 return nullptr;
2112
Reid Spenceree3c9912006-12-04 05:19:50 +00002113 // Look up the constant in the table first to ensure uniqueness
Benjamin Kramer324322b2013-03-07 20:53:34 +00002114 Constant *ArgVec[] = { LHS, RHS };
Reid Spencerb1537492006-12-24 18:42:29 +00002115 // Get the key type with both the opcode and predicate
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002116 const ConstantExprKeyType Key(Instruction::FCmp, ArgVec, pred);
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00002117
Chris Lattner229907c2011-07-18 04:54:35 +00002118 Type *ResultTy = Type::getInt1Ty(LHS->getContext());
2119 if (VectorType *VT = dyn_cast<VectorType>(LHS->getType()))
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00002120 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
2121
Owen Anderson1584a292009-08-04 20:25:11 +00002122 LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl;
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00002123 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
Reid Spenceree3c9912006-12-04 05:19:50 +00002124}
2125
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002126Constant *ConstantExpr::getExtractElement(Constant *Val, Constant *Idx,
2127 Type *OnlyIfReducedTy) {
Duncan Sands19d0b472010-02-16 11:11:14 +00002128 assert(Val->getType()->isVectorTy() &&
Reid Spencer09575ba2007-02-15 03:39:18 +00002129 "Tried to create extractelement operation on non-vector type!");
Michael J. Spencer1f10c5ea2014-05-01 22:12:39 +00002130 assert(Idx->getType()->isIntegerTy() &&
2131 "Extractelement index must be an integer type!");
Galina Kistanovafc259902012-07-13 01:25:27 +00002132
Chris Lattner887ecac2011-07-09 18:23:52 +00002133 if (Constant *FC = ConstantFoldExtractElementInstruction(Val, Idx))
Chris Lattner09660c92009-12-30 20:25:09 +00002134 return FC; // Fold a few common cases.
Galina Kistanovafc259902012-07-13 01:25:27 +00002135
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002136 Type *ReqTy = Val->getType()->getVectorElementType();
2137 if (OnlyIfReducedTy == ReqTy)
2138 return nullptr;
2139
Robert Bocchinoca27f032006-01-17 20:07:22 +00002140 // Look up the constant in the table first to ensure uniqueness
Benjamin Kramer324322b2013-03-07 20:53:34 +00002141 Constant *ArgVec[] = { Val, Idx };
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002142 const ConstantExprKeyType Key(Instruction::ExtractElement, ArgVec);
Galina Kistanovafc259902012-07-13 01:25:27 +00002143
Chris Lattner887ecac2011-07-09 18:23:52 +00002144 LLVMContextImpl *pImpl = Val->getContext().pImpl;
Owen Anderson1584a292009-08-04 20:25:11 +00002145 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Robert Bocchinoca27f032006-01-17 20:07:22 +00002146}
2147
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002148Constant *ConstantExpr::getInsertElement(Constant *Val, Constant *Elt,
2149 Constant *Idx, Type *OnlyIfReducedTy) {
Duncan Sands19d0b472010-02-16 11:11:14 +00002150 assert(Val->getType()->isVectorTy() &&
Reid Spencer09575ba2007-02-15 03:39:18 +00002151 "Tried to create insertelement operation on non-vector type!");
Chris Lattner8326bd82012-01-26 00:42:34 +00002152 assert(Elt->getType() == Val->getType()->getVectorElementType() &&
2153 "Insertelement types must match!");
Michael J. Spencer1f10c5ea2014-05-01 22:12:39 +00002154 assert(Idx->getType()->isIntegerTy() &&
Reid Spencer2546b762007-01-26 07:37:34 +00002155 "Insertelement index must be i32 type!");
Robert Bocchinoca27f032006-01-17 20:07:22 +00002156
Chris Lattner887ecac2011-07-09 18:23:52 +00002157 if (Constant *FC = ConstantFoldInsertElementInstruction(Val, Elt, Idx))
2158 return FC; // Fold a few common cases.
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002159
2160 if (OnlyIfReducedTy == Val->getType())
2161 return nullptr;
2162
Chris Lattnerbbe0a422006-04-08 01:18:18 +00002163 // Look up the constant in the table first to ensure uniqueness
Benjamin Kramer324322b2013-03-07 20:53:34 +00002164 Constant *ArgVec[] = { Val, Elt, Idx };
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002165 const ConstantExprKeyType Key(Instruction::InsertElement, ArgVec);
Galina Kistanovafc259902012-07-13 01:25:27 +00002166
Chris Lattner887ecac2011-07-09 18:23:52 +00002167 LLVMContextImpl *pImpl = Val->getContext().pImpl;
2168 return pImpl->ExprConstants.getOrCreate(Val->getType(), Key);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00002169}
2170
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002171Constant *ConstantExpr::getShuffleVector(Constant *V1, Constant *V2,
2172 Constant *Mask, Type *OnlyIfReducedTy) {
Chris Lattnerbbe0a422006-04-08 01:18:18 +00002173 assert(ShuffleVectorInst::isValidOperands(V1, V2, Mask) &&
2174 "Invalid shuffle vector constant expr operands!");
Nate Begeman94aa38d2009-02-12 21:28:33 +00002175
Chris Lattner887ecac2011-07-09 18:23:52 +00002176 if (Constant *FC = ConstantFoldShuffleVectorInstruction(V1, V2, Mask))
2177 return FC; // Fold a few common cases.
2178
Chris Lattner8326bd82012-01-26 00:42:34 +00002179 unsigned NElts = Mask->getType()->getVectorNumElements();
2180 Type *EltTy = V1->getType()->getVectorElementType();
Chris Lattner229907c2011-07-18 04:54:35 +00002181 Type *ShufTy = VectorType::get(EltTy, NElts);
Chris Lattner887ecac2011-07-09 18:23:52 +00002182
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002183 if (OnlyIfReducedTy == ShufTy)
2184 return nullptr;
2185
Chris Lattner887ecac2011-07-09 18:23:52 +00002186 // Look up the constant in the table first to ensure uniqueness
Benjamin Kramer324322b2013-03-07 20:53:34 +00002187 Constant *ArgVec[] = { V1, V2, Mask };
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002188 const ConstantExprKeyType Key(Instruction::ShuffleVector, ArgVec);
Galina Kistanovafc259902012-07-13 01:25:27 +00002189
Chris Lattner887ecac2011-07-09 18:23:52 +00002190 LLVMContextImpl *pImpl = ShufTy->getContext().pImpl;
2191 return pImpl->ExprConstants.getOrCreate(ShufTy, Key);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00002192}
2193
Chris Lattner887ecac2011-07-09 18:23:52 +00002194Constant *ConstantExpr::getInsertValue(Constant *Agg, Constant *Val,
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002195 ArrayRef<unsigned> Idxs,
2196 Type *OnlyIfReducedTy) {
Hal Finkelb31366d2013-07-10 22:51:01 +00002197 assert(Agg->getType()->isFirstClassType() &&
2198 "Non-first-class type for constant insertvalue expression");
2199
Jay Foad57aa6362011-07-13 10:26:04 +00002200 assert(ExtractValueInst::getIndexedType(Agg->getType(),
2201 Idxs) == Val->getType() &&
Dan Gohman12fce772008-05-15 19:50:34 +00002202 "insertvalue indices invalid!");
Hal Finkelb31366d2013-07-10 22:51:01 +00002203 Type *ReqTy = Val->getType();
2204
2205 if (Constant *FC = ConstantFoldInsertValueInstruction(Agg, Val, Idxs))
2206 return FC;
2207
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002208 if (OnlyIfReducedTy == ReqTy)
2209 return nullptr;
2210
Hal Finkelb31366d2013-07-10 22:51:01 +00002211 Constant *ArgVec[] = { Agg, Val };
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002212 const ConstantExprKeyType Key(Instruction::InsertValue, ArgVec, 0, 0, Idxs);
Hal Finkelb31366d2013-07-10 22:51:01 +00002213
2214 LLVMContextImpl *pImpl = Agg->getContext().pImpl;
2215 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Dan Gohman12fce772008-05-15 19:50:34 +00002216}
2217
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002218Constant *ConstantExpr::getExtractValue(Constant *Agg, ArrayRef<unsigned> Idxs,
2219 Type *OnlyIfReducedTy) {
Dan Gohman0752bff2008-05-23 00:36:11 +00002220 assert(Agg->getType()->isFirstClassType() &&
Chris Lattner887ecac2011-07-09 18:23:52 +00002221 "Tried to create extractelement operation on non-first-class type!");
Dan Gohman12fce772008-05-15 19:50:34 +00002222
Chris Lattner229907c2011-07-18 04:54:35 +00002223 Type *ReqTy = ExtractValueInst::getIndexedType(Agg->getType(), Idxs);
Chandler Carruth9db56b82011-07-10 09:45:35 +00002224 (void)ReqTy;
Chris Lattner887ecac2011-07-09 18:23:52 +00002225 assert(ReqTy && "extractvalue indices invalid!");
Galina Kistanovafc259902012-07-13 01:25:27 +00002226
Dan Gohman0752bff2008-05-23 00:36:11 +00002227 assert(Agg->getType()->isFirstClassType() &&
2228 "Non-first-class type for constant extractvalue expression");
Hal Finkelb31366d2013-07-10 22:51:01 +00002229 if (Constant *FC = ConstantFoldExtractValueInstruction(Agg, Idxs))
2230 return FC;
2231
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002232 if (OnlyIfReducedTy == ReqTy)
2233 return nullptr;
2234
Hal Finkelb31366d2013-07-10 22:51:01 +00002235 Constant *ArgVec[] = { Agg };
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002236 const ConstantExprKeyType Key(Instruction::ExtractValue, ArgVec, 0, 0, Idxs);
Hal Finkelb31366d2013-07-10 22:51:01 +00002237
2238 LLVMContextImpl *pImpl = Agg->getContext().pImpl;
2239 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Dan Gohman12fce772008-05-15 19:50:34 +00002240}
2241
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002242Constant *ConstantExpr::getNeg(Constant *C, bool HasNUW, bool HasNSW) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002243 assert(C->getType()->isIntOrIntVectorTy() &&
Owen Anderson487375e2009-07-29 18:55:55 +00002244 "Cannot NEG a nonintegral value!");
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002245 return getSub(ConstantFP::getZeroValueForNegation(C->getType()),
2246 C, HasNUW, HasNSW);
Owen Anderson487375e2009-07-29 18:55:55 +00002247}
2248
Chris Lattnera676c0f2011-02-07 16:40:21 +00002249Constant *ConstantExpr::getFNeg(Constant *C) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002250 assert(C->getType()->isFPOrFPVectorTy() &&
Owen Anderson487375e2009-07-29 18:55:55 +00002251 "Cannot FNEG a non-floating-point value!");
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002252 return getFSub(ConstantFP::getZeroValueForNegation(C->getType()), C);
Owen Anderson487375e2009-07-29 18:55:55 +00002253}
2254
Chris Lattnera676c0f2011-02-07 16:40:21 +00002255Constant *ConstantExpr::getNot(Constant *C) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002256 assert(C->getType()->isIntOrIntVectorTy() &&
Owen Anderson487375e2009-07-29 18:55:55 +00002257 "Cannot NOT a nonintegral value!");
Owen Anderson5a1acd92009-07-31 20:28:14 +00002258 return get(Instruction::Xor, C, Constant::getAllOnesValue(C->getType()));
Owen Anderson487375e2009-07-29 18:55:55 +00002259}
2260
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002261Constant *ConstantExpr::getAdd(Constant *C1, Constant *C2,
2262 bool HasNUW, bool HasNSW) {
2263 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
2264 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
2265 return get(Instruction::Add, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00002266}
2267
Chris Lattnera676c0f2011-02-07 16:40:21 +00002268Constant *ConstantExpr::getFAdd(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002269 return get(Instruction::FAdd, C1, C2);
2270}
2271
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002272Constant *ConstantExpr::getSub(Constant *C1, Constant *C2,
2273 bool HasNUW, bool HasNSW) {
2274 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
2275 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
2276 return get(Instruction::Sub, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00002277}
2278
Chris Lattnera676c0f2011-02-07 16:40:21 +00002279Constant *ConstantExpr::getFSub(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002280 return get(Instruction::FSub, C1, C2);
2281}
2282
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002283Constant *ConstantExpr::getMul(Constant *C1, Constant *C2,
2284 bool HasNUW, bool HasNSW) {
2285 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
2286 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
2287 return get(Instruction::Mul, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00002288}
2289
Chris Lattnera676c0f2011-02-07 16:40:21 +00002290Constant *ConstantExpr::getFMul(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002291 return get(Instruction::FMul, C1, C2);
2292}
2293
Chris Lattner0d75eac2011-02-09 16:43:07 +00002294Constant *ConstantExpr::getUDiv(Constant *C1, Constant *C2, bool isExact) {
2295 return get(Instruction::UDiv, C1, C2,
2296 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00002297}
2298
Chris Lattner0d75eac2011-02-09 16:43:07 +00002299Constant *ConstantExpr::getSDiv(Constant *C1, Constant *C2, bool isExact) {
2300 return get(Instruction::SDiv, C1, C2,
2301 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00002302}
2303
Chris Lattnera676c0f2011-02-07 16:40:21 +00002304Constant *ConstantExpr::getFDiv(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002305 return get(Instruction::FDiv, C1, C2);
2306}
2307
Chris Lattnera676c0f2011-02-07 16:40:21 +00002308Constant *ConstantExpr::getURem(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002309 return get(Instruction::URem, C1, C2);
2310}
2311
Chris Lattnera676c0f2011-02-07 16:40:21 +00002312Constant *ConstantExpr::getSRem(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002313 return get(Instruction::SRem, C1, C2);
2314}
2315
Chris Lattnera676c0f2011-02-07 16:40:21 +00002316Constant *ConstantExpr::getFRem(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002317 return get(Instruction::FRem, C1, C2);
2318}
2319
Chris Lattnera676c0f2011-02-07 16:40:21 +00002320Constant *ConstantExpr::getAnd(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002321 return get(Instruction::And, C1, C2);
2322}
2323
Chris Lattnera676c0f2011-02-07 16:40:21 +00002324Constant *ConstantExpr::getOr(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002325 return get(Instruction::Or, C1, C2);
2326}
2327
Chris Lattnera676c0f2011-02-07 16:40:21 +00002328Constant *ConstantExpr::getXor(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002329 return get(Instruction::Xor, C1, C2);
2330}
2331
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002332Constant *ConstantExpr::getShl(Constant *C1, Constant *C2,
2333 bool HasNUW, bool HasNSW) {
2334 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
2335 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
2336 return get(Instruction::Shl, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00002337}
2338
Chris Lattner0d75eac2011-02-09 16:43:07 +00002339Constant *ConstantExpr::getLShr(Constant *C1, Constant *C2, bool isExact) {
2340 return get(Instruction::LShr, C1, C2,
2341 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00002342}
2343
Chris Lattner0d75eac2011-02-09 16:43:07 +00002344Constant *ConstantExpr::getAShr(Constant *C1, Constant *C2, bool isExact) {
2345 return get(Instruction::AShr, C1, C2,
2346 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00002347}
2348
Duncan Sandsd7aeefe2012-06-12 14:33:56 +00002349/// getBinOpIdentity - Return the identity for the given binary operation,
2350/// i.e. a constant C such that X op C = X and C op X = X for every X. It
Duncan Sands318a89d2012-06-13 09:42:13 +00002351/// returns null if the operator doesn't have an identity.
Duncan Sandsd7aeefe2012-06-12 14:33:56 +00002352Constant *ConstantExpr::getBinOpIdentity(unsigned Opcode, Type *Ty) {
2353 switch (Opcode) {
2354 default:
Duncan Sands318a89d2012-06-13 09:42:13 +00002355 // Doesn't have an identity.
Craig Topperc6207612014-04-09 06:08:46 +00002356 return nullptr;
Duncan Sands318a89d2012-06-13 09:42:13 +00002357
Duncan Sandsd7aeefe2012-06-12 14:33:56 +00002358 case Instruction::Add:
2359 case Instruction::Or:
2360 case Instruction::Xor:
2361 return Constant::getNullValue(Ty);
2362
2363 case Instruction::Mul:
2364 return ConstantInt::get(Ty, 1);
2365
2366 case Instruction::And:
2367 return Constant::getAllOnesValue(Ty);
2368 }
2369}
2370
Duncan Sands318a89d2012-06-13 09:42:13 +00002371/// getBinOpAbsorber - Return the absorbing element for the given binary
2372/// operation, i.e. a constant C such that X op C = C and C op X = C for
2373/// every X. For example, this returns zero for integer multiplication.
2374/// It returns null if the operator doesn't have an absorbing element.
2375Constant *ConstantExpr::getBinOpAbsorber(unsigned Opcode, Type *Ty) {
2376 switch (Opcode) {
2377 default:
2378 // Doesn't have an absorber.
Craig Topperc6207612014-04-09 06:08:46 +00002379 return nullptr;
Duncan Sands318a89d2012-06-13 09:42:13 +00002380
2381 case Instruction::Or:
2382 return Constant::getAllOnesValue(Ty);
2383
2384 case Instruction::And:
2385 case Instruction::Mul:
2386 return Constant::getNullValue(Ty);
2387 }
2388}
2389
Vikram S. Adve4c485332002-07-15 18:19:33 +00002390// destroyConstant - Remove the constant from the constant table...
2391//
Pete Cooper86dd4cf2015-06-23 21:55:11 +00002392void ConstantExpr::destroyConstantImpl() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002393 getType()->getContext().pImpl->ExprConstants.remove(this);
Vikram S. Adve4e537b22002-07-14 23:13:17 +00002394}
2395
Chris Lattner3cd8c562002-07-30 18:54:25 +00002396const char *ConstantExpr::getOpcodeName() const {
2397 return Instruction::getOpcodeName(getOpcode());
Vikram S. Adve4e537b22002-07-14 23:13:17 +00002398}
Reid Spencer1ebe1ab2004-07-17 23:48:33 +00002399
David Blaikie60310f22015-05-08 00:42:26 +00002400GetElementPtrConstantExpr::GetElementPtrConstantExpr(
2401 Type *SrcElementTy, Constant *C, ArrayRef<Constant *> IdxList, Type *DestTy)
2402 : ConstantExpr(DestTy, Instruction::GetElementPtr,
2403 OperandTraits<GetElementPtrConstantExpr>::op_end(this) -
2404 (IdxList.size() + 1),
2405 IdxList.size() + 1),
2406 SrcElementTy(SrcElementTy) {
Pete Coopereb31b682015-05-21 22:48:54 +00002407 Op<0>() = C;
Pete Cooper74510a42015-06-12 17:48:05 +00002408 Use *OperandList = getOperandList();
Chris Lattnera3b94ba2010-03-30 20:48:48 +00002409 for (unsigned i = 0, E = IdxList.size(); i != E; ++i)
2410 OperandList[i+1] = IdxList[i];
2411}
2412
David Blaikie60310f22015-05-08 00:42:26 +00002413Type *GetElementPtrConstantExpr::getSourceElementType() const {
2414 return SrcElementTy;
2415}
2416
Chris Lattner3756b912012-01-23 22:57:10 +00002417//===----------------------------------------------------------------------===//
2418// ConstantData* implementations
2419
2420void ConstantDataArray::anchor() {}
2421void ConstantDataVector::anchor() {}
2422
Chris Lattnere4f3f102012-01-24 04:43:41 +00002423/// getElementType - Return the element type of the array/vector.
2424Type *ConstantDataSequential::getElementType() const {
2425 return getType()->getElementType();
2426}
2427
Chris Lattner5d4497b2012-01-24 09:31:43 +00002428StringRef ConstantDataSequential::getRawDataValues() const {
Chris Lattner00245f42012-01-24 13:41:11 +00002429 return StringRef(DataElements, getNumElements()*getElementByteSize());
Chris Lattner5d4497b2012-01-24 09:31:43 +00002430}
2431
Chris Lattner030af792012-01-24 05:42:11 +00002432/// isElementTypeCompatible - Return true if a ConstantDataSequential can be
2433/// formed with a vector or array of the specified element type.
2434/// ConstantDataArray only works with normal float and int types that are
2435/// stored densely in memory, not with things like i42 or x86_f80.
Craig Toppere3dcce92015-08-01 22:20:21 +00002436bool ConstantDataSequential::isElementTypeCompatible(Type *Ty) {
Chris Lattnere4f3f102012-01-24 04:43:41 +00002437 if (Ty->isFloatTy() || Ty->isDoubleTy()) return true;
Craig Toppere3dcce92015-08-01 22:20:21 +00002438 if (auto *IT = dyn_cast<IntegerType>(Ty)) {
Chris Lattnere4f3f102012-01-24 04:43:41 +00002439 switch (IT->getBitWidth()) {
2440 case 8:
2441 case 16:
2442 case 32:
2443 case 64:
2444 return true;
2445 default: break;
2446 }
2447 }
2448 return false;
2449}
2450
Chris Lattner00245f42012-01-24 13:41:11 +00002451/// getNumElements - Return the number of elements in the array or vector.
2452unsigned ConstantDataSequential::getNumElements() const {
Chris Lattner8a3df542012-01-25 01:32:59 +00002453 if (ArrayType *AT = dyn_cast<ArrayType>(getType()))
2454 return AT->getNumElements();
Chris Lattner8326bd82012-01-26 00:42:34 +00002455 return getType()->getVectorNumElements();
Chris Lattner00245f42012-01-24 13:41:11 +00002456}
2457
2458
Chris Lattnere4f3f102012-01-24 04:43:41 +00002459/// getElementByteSize - Return the size in bytes of the elements in the data.
2460uint64_t ConstantDataSequential::getElementByteSize() const {
2461 return getElementType()->getPrimitiveSizeInBits()/8;
2462}
2463
2464/// getElementPointer - Return the start of the specified element.
2465const char *ConstantDataSequential::getElementPointer(unsigned Elt) const {
Chris Lattner00245f42012-01-24 13:41:11 +00002466 assert(Elt < getNumElements() && "Invalid Elt");
Chris Lattnere4f3f102012-01-24 04:43:41 +00002467 return DataElements+Elt*getElementByteSize();
2468}
2469
2470
Chris Lattner3756b912012-01-23 22:57:10 +00002471/// isAllZeros - return true if the array is empty or all zeros.
2472static bool isAllZeros(StringRef Arr) {
2473 for (StringRef::iterator I = Arr.begin(), E = Arr.end(); I != E; ++I)
2474 if (*I != 0)
2475 return false;
2476 return true;
2477}
Chris Lattner030af792012-01-24 05:42:11 +00002478
Chris Lattner3756b912012-01-23 22:57:10 +00002479/// getImpl - This is the underlying implementation of all of the
2480/// ConstantDataSequential::get methods. They all thunk down to here, providing
Chris Lattnerf06039b2012-01-30 18:19:30 +00002481/// the correct element type. We take the bytes in as a StringRef because
Chris Lattner3756b912012-01-23 22:57:10 +00002482/// we *want* an underlying "char*" to avoid TBAA type punning violations.
2483Constant *ConstantDataSequential::getImpl(StringRef Elements, Type *Ty) {
Chris Lattner8326bd82012-01-26 00:42:34 +00002484 assert(isElementTypeCompatible(Ty->getSequentialElementType()));
Chris Lattner139822f2012-01-24 14:17:05 +00002485 // If the elements are all zero or there are no elements, return a CAZ, which
2486 // is more dense and canonical.
Chris Lattner3756b912012-01-23 22:57:10 +00002487 if (isAllZeros(Elements))
2488 return ConstantAggregateZero::get(Ty);
2489
2490 // Do a lookup to see if we have already formed one of these.
David Blaikie5106ce72014-11-19 05:49:42 +00002491 auto &Slot =
2492 *Ty->getContext()
2493 .pImpl->CDSConstants.insert(std::make_pair(Elements, nullptr))
2494 .first;
Galina Kistanovafc259902012-07-13 01:25:27 +00002495
Chris Lattner3756b912012-01-23 22:57:10 +00002496 // The bucket can point to a linked list of different CDS's that have the same
2497 // body but different types. For example, 0,0,0,1 could be a 4 element array
2498 // of i8, or a 1-element array of i32. They'll both end up in the same
2499 /// StringMap bucket, linked up by their Next pointers. Walk the list.
David Blaikie5106ce72014-11-19 05:49:42 +00002500 ConstantDataSequential **Entry = &Slot.second;
Craig Topperc6207612014-04-09 06:08:46 +00002501 for (ConstantDataSequential *Node = *Entry; Node;
Chris Lattner3756b912012-01-23 22:57:10 +00002502 Entry = &Node->Next, Node = *Entry)
2503 if (Node->getType() == Ty)
2504 return Node;
Galina Kistanovafc259902012-07-13 01:25:27 +00002505
Chris Lattner3756b912012-01-23 22:57:10 +00002506 // Okay, we didn't get a hit. Create a node of the right class, link it in,
2507 // and return it.
2508 if (isa<ArrayType>(Ty))
David Blaikie5106ce72014-11-19 05:49:42 +00002509 return *Entry = new ConstantDataArray(Ty, Slot.first().data());
Chris Lattner3756b912012-01-23 22:57:10 +00002510
2511 assert(isa<VectorType>(Ty));
David Blaikie5106ce72014-11-19 05:49:42 +00002512 return *Entry = new ConstantDataVector(Ty, Slot.first().data());
Chris Lattner3756b912012-01-23 22:57:10 +00002513}
2514
Pete Cooper86dd4cf2015-06-23 21:55:11 +00002515void ConstantDataSequential::destroyConstantImpl() {
Chris Lattner3756b912012-01-23 22:57:10 +00002516 // Remove the constant from the StringMap.
2517 StringMap<ConstantDataSequential*> &CDSConstants =
2518 getType()->getContext().pImpl->CDSConstants;
Galina Kistanovafc259902012-07-13 01:25:27 +00002519
Chris Lattner3756b912012-01-23 22:57:10 +00002520 StringMap<ConstantDataSequential*>::iterator Slot =
Chris Lattner5d4497b2012-01-24 09:31:43 +00002521 CDSConstants.find(getRawDataValues());
Chris Lattner3756b912012-01-23 22:57:10 +00002522
2523 assert(Slot != CDSConstants.end() && "CDS not found in uniquing table");
2524
2525 ConstantDataSequential **Entry = &Slot->getValue();
2526
2527 // Remove the entry from the hash table.
Craig Topperc6207612014-04-09 06:08:46 +00002528 if (!(*Entry)->Next) {
Chris Lattner3756b912012-01-23 22:57:10 +00002529 // If there is only one value in the bucket (common case) it must be this
2530 // entry, and removing the entry should remove the bucket completely.
2531 assert((*Entry) == this && "Hash mismatch in ConstantDataSequential");
2532 getContext().pImpl->CDSConstants.erase(Slot);
2533 } else {
2534 // Otherwise, there are multiple entries linked off the bucket, unlink the
2535 // node we care about but keep the bucket around.
2536 for (ConstantDataSequential *Node = *Entry; ;
2537 Entry = &Node->Next, Node = *Entry) {
2538 assert(Node && "Didn't find entry in its uniquing hash table!");
2539 // If we found our entry, unlink it from the list and we're done.
2540 if (Node == this) {
2541 *Entry = Node->Next;
2542 break;
2543 }
2544 }
2545 }
Galina Kistanovafc259902012-07-13 01:25:27 +00002546
Chris Lattner3756b912012-01-23 22:57:10 +00002547 // If we were part of a list, make sure that we don't delete the list that is
2548 // still owned by the uniquing map.
Craig Topperc6207612014-04-09 06:08:46 +00002549 Next = nullptr;
Chris Lattner3756b912012-01-23 22:57:10 +00002550}
2551
2552/// get() constructors - Return a constant with array type with an element
2553/// count and element type matching the ArrayRef passed in. Note that this
2554/// can return a ConstantAggregateZero object.
Chris Lattner20683932012-01-24 14:04:40 +00002555Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint8_t> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002556 Type *Ty = ArrayType::get(Type::getInt8Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002557 const char *Data = reinterpret_cast<const char *>(Elts.data());
2558 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*1), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002559}
Chris Lattner20683932012-01-24 14:04:40 +00002560Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint16_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002561 Type *Ty = ArrayType::get(Type::getInt16Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002562 const char *Data = reinterpret_cast<const char *>(Elts.data());
2563 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*2), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002564}
Chris Lattner20683932012-01-24 14:04:40 +00002565Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint32_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002566 Type *Ty = ArrayType::get(Type::getInt32Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002567 const char *Data = reinterpret_cast<const char *>(Elts.data());
2568 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*4), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002569}
Chris Lattner20683932012-01-24 14:04:40 +00002570Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint64_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002571 Type *Ty = ArrayType::get(Type::getInt64Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002572 const char *Data = reinterpret_cast<const char *>(Elts.data());
2573 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*8), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002574}
Chris Lattner20683932012-01-24 14:04:40 +00002575Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<float> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002576 Type *Ty = ArrayType::get(Type::getFloatTy(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002577 const char *Data = reinterpret_cast<const char *>(Elts.data());
2578 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*4), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002579}
Chris Lattner20683932012-01-24 14:04:40 +00002580Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<double> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002581 Type *Ty = ArrayType::get(Type::getDoubleTy(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002582 const char *Data = reinterpret_cast<const char *>(Elts.data());
Rafael Espindola8c97e192015-02-19 16:08:20 +00002583 return getImpl(StringRef(const_cast<char *>(Data), Elts.size() * 8), Ty);
2584}
2585
2586/// getFP() constructors - Return a constant with array type with an element
2587/// count and element type of float with precision matching the number of
2588/// bits in the ArrayRef passed in. (i.e. half for 16bits, float for 32bits,
2589/// double for 64bits) Note that this can return a ConstantAggregateZero
2590/// object.
2591Constant *ConstantDataArray::getFP(LLVMContext &Context,
2592 ArrayRef<uint16_t> Elts) {
2593 Type *Ty = VectorType::get(Type::getHalfTy(Context), Elts.size());
2594 const char *Data = reinterpret_cast<const char *>(Elts.data());
2595 return getImpl(StringRef(const_cast<char *>(Data), Elts.size() * 2), Ty);
2596}
2597Constant *ConstantDataArray::getFP(LLVMContext &Context,
2598 ArrayRef<uint32_t> Elts) {
2599 Type *Ty = ArrayType::get(Type::getFloatTy(Context), Elts.size());
2600 const char *Data = reinterpret_cast<const char *>(Elts.data());
2601 return getImpl(StringRef(const_cast<char *>(Data), Elts.size() * 4), Ty);
2602}
2603Constant *ConstantDataArray::getFP(LLVMContext &Context,
2604 ArrayRef<uint64_t> Elts) {
2605 Type *Ty = ArrayType::get(Type::getDoubleTy(Context), Elts.size());
2606 const char *Data = reinterpret_cast<const char *>(Elts.data());
2607 return getImpl(StringRef(const_cast<char *>(Data), Elts.size() * 8), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002608}
2609
Chris Lattner20683932012-01-24 14:04:40 +00002610/// getString - This method constructs a CDS and initializes it with a text
2611/// string. The default behavior (AddNull==true) causes a null terminator to
2612/// be placed at the end of the array (increasing the length of the string by
2613/// one more than the StringRef would normally indicate. Pass AddNull=false
2614/// to disable this behavior.
2615Constant *ConstantDataArray::getString(LLVMContext &Context,
2616 StringRef Str, bool AddNull) {
Galina Kistanovafc259902012-07-13 01:25:27 +00002617 if (!AddNull) {
2618 const uint8_t *Data = reinterpret_cast<const uint8_t *>(Str.data());
Craig Toppere1d12942014-08-27 05:25:25 +00002619 return get(Context, makeArrayRef(const_cast<uint8_t *>(Data),
Galina Kistanovafc259902012-07-13 01:25:27 +00002620 Str.size()));
2621 }
2622
Chris Lattner20683932012-01-24 14:04:40 +00002623 SmallVector<uint8_t, 64> ElementVals;
2624 ElementVals.append(Str.begin(), Str.end());
2625 ElementVals.push_back(0);
2626 return get(Context, ElementVals);
2627}
Chris Lattner3756b912012-01-23 22:57:10 +00002628
2629/// get() constructors - Return a constant with vector type with an element
2630/// count and element type matching the ArrayRef passed in. Note that this
2631/// can return a ConstantAggregateZero object.
Chris Lattner20683932012-01-24 14:04:40 +00002632Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint8_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002633 Type *Ty = VectorType::get(Type::getInt8Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002634 const char *Data = reinterpret_cast<const char *>(Elts.data());
2635 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*1), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002636}
Chris Lattner20683932012-01-24 14:04:40 +00002637Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint16_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002638 Type *Ty = VectorType::get(Type::getInt16Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002639 const char *Data = reinterpret_cast<const char *>(Elts.data());
2640 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*2), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002641}
Chris Lattner20683932012-01-24 14:04:40 +00002642Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint32_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002643 Type *Ty = VectorType::get(Type::getInt32Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002644 const char *Data = reinterpret_cast<const char *>(Elts.data());
2645 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*4), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002646}
Chris Lattner20683932012-01-24 14:04:40 +00002647Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint64_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002648 Type *Ty = VectorType::get(Type::getInt64Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002649 const char *Data = reinterpret_cast<const char *>(Elts.data());
2650 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*8), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002651}
Chris Lattner20683932012-01-24 14:04:40 +00002652Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<float> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002653 Type *Ty = VectorType::get(Type::getFloatTy(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002654 const char *Data = reinterpret_cast<const char *>(Elts.data());
2655 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*4), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002656}
Chris Lattner20683932012-01-24 14:04:40 +00002657Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<double> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002658 Type *Ty = VectorType::get(Type::getDoubleTy(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002659 const char *Data = reinterpret_cast<const char *>(Elts.data());
Rafael Espindola8c97e192015-02-19 16:08:20 +00002660 return getImpl(StringRef(const_cast<char *>(Data), Elts.size() * 8), Ty);
2661}
2662
2663/// getFP() constructors - Return a constant with vector type with an element
2664/// count and element type of float with the precision matching the number of
2665/// bits in the ArrayRef passed in. (i.e. half for 16bits, float for 32bits,
2666/// double for 64bits) Note that this can return a ConstantAggregateZero
2667/// object.
2668Constant *ConstantDataVector::getFP(LLVMContext &Context,
2669 ArrayRef<uint16_t> Elts) {
2670 Type *Ty = VectorType::get(Type::getHalfTy(Context), Elts.size());
2671 const char *Data = reinterpret_cast<const char *>(Elts.data());
2672 return getImpl(StringRef(const_cast<char *>(Data), Elts.size() * 2), Ty);
2673}
2674Constant *ConstantDataVector::getFP(LLVMContext &Context,
2675 ArrayRef<uint32_t> Elts) {
2676 Type *Ty = VectorType::get(Type::getFloatTy(Context), Elts.size());
2677 const char *Data = reinterpret_cast<const char *>(Elts.data());
2678 return getImpl(StringRef(const_cast<char *>(Data), Elts.size() * 4), Ty);
2679}
2680Constant *ConstantDataVector::getFP(LLVMContext &Context,
2681 ArrayRef<uint64_t> Elts) {
2682 Type *Ty = VectorType::get(Type::getDoubleTy(Context), Elts.size());
2683 const char *Data = reinterpret_cast<const char *>(Elts.data());
2684 return getImpl(StringRef(const_cast<char *>(Data), Elts.size() * 8), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002685}
2686
Chris Lattnere9eed292012-01-25 05:19:54 +00002687Constant *ConstantDataVector::getSplat(unsigned NumElts, Constant *V) {
2688 assert(isElementTypeCompatible(V->getType()) &&
2689 "Element type not compatible with ConstantData");
2690 if (ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
2691 if (CI->getType()->isIntegerTy(8)) {
2692 SmallVector<uint8_t, 16> Elts(NumElts, CI->getZExtValue());
2693 return get(V->getContext(), Elts);
2694 }
2695 if (CI->getType()->isIntegerTy(16)) {
2696 SmallVector<uint16_t, 16> Elts(NumElts, CI->getZExtValue());
2697 return get(V->getContext(), Elts);
2698 }
2699 if (CI->getType()->isIntegerTy(32)) {
2700 SmallVector<uint32_t, 16> Elts(NumElts, CI->getZExtValue());
2701 return get(V->getContext(), Elts);
2702 }
2703 assert(CI->getType()->isIntegerTy(64) && "Unsupported ConstantData type");
2704 SmallVector<uint64_t, 16> Elts(NumElts, CI->getZExtValue());
2705 return get(V->getContext(), Elts);
2706 }
2707
Chris Lattner978fe0c2012-01-30 06:21:21 +00002708 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V)) {
2709 if (CFP->getType()->isFloatTy()) {
Rafael Espindola8c97e192015-02-19 16:08:20 +00002710 SmallVector<uint32_t, 16> Elts(
2711 NumElts, CFP->getValueAPF().bitcastToAPInt().getLimitedValue());
2712 return getFP(V->getContext(), Elts);
Chris Lattner978fe0c2012-01-30 06:21:21 +00002713 }
2714 if (CFP->getType()->isDoubleTy()) {
Rafael Espindola8c97e192015-02-19 16:08:20 +00002715 SmallVector<uint64_t, 16> Elts(
2716 NumElts, CFP->getValueAPF().bitcastToAPInt().getLimitedValue());
2717 return getFP(V->getContext(), Elts);
Chris Lattner978fe0c2012-01-30 06:21:21 +00002718 }
Chris Lattnere9eed292012-01-25 05:19:54 +00002719 }
Chris Lattner978fe0c2012-01-30 06:21:21 +00002720 return ConstantVector::getSplat(NumElts, V);
Chris Lattnere9eed292012-01-25 05:19:54 +00002721}
2722
2723
Chris Lattnere4f3f102012-01-24 04:43:41 +00002724/// getElementAsInteger - If this is a sequential container of integers (of
2725/// any size), return the specified element in the low bits of a uint64_t.
2726uint64_t ConstantDataSequential::getElementAsInteger(unsigned Elt) const {
2727 assert(isa<IntegerType>(getElementType()) &&
2728 "Accessor can only be used when element is an integer");
2729 const char *EltPtr = getElementPointer(Elt);
Galina Kistanovafc259902012-07-13 01:25:27 +00002730
Chris Lattnere4f3f102012-01-24 04:43:41 +00002731 // The data is stored in host byte order, make sure to cast back to the right
2732 // type to load with the right endianness.
Chris Lattner8326bd82012-01-26 00:42:34 +00002733 switch (getElementType()->getIntegerBitWidth()) {
Craig Topperc514b542012-02-05 22:14:15 +00002734 default: llvm_unreachable("Invalid bitwidth for CDS");
Galina Kistanovafc259902012-07-13 01:25:27 +00002735 case 8:
2736 return *const_cast<uint8_t *>(reinterpret_cast<const uint8_t *>(EltPtr));
2737 case 16:
2738 return *const_cast<uint16_t *>(reinterpret_cast<const uint16_t *>(EltPtr));
2739 case 32:
2740 return *const_cast<uint32_t *>(reinterpret_cast<const uint32_t *>(EltPtr));
2741 case 64:
2742 return *const_cast<uint64_t *>(reinterpret_cast<const uint64_t *>(EltPtr));
Chris Lattnere4f3f102012-01-24 04:43:41 +00002743 }
2744}
2745
2746/// getElementAsAPFloat - If this is a sequential container of floating point
2747/// type, return the specified element as an APFloat.
2748APFloat ConstantDataSequential::getElementAsAPFloat(unsigned Elt) const {
2749 const char *EltPtr = getElementPointer(Elt);
2750
2751 switch (getElementType()->getTypeID()) {
Nick Lewyckyff509622012-01-25 03:20:12 +00002752 default:
Craig Topperc514b542012-02-05 22:14:15 +00002753 llvm_unreachable("Accessor can only be used when element is float/double!");
Benjamin Kramer7af984b2015-02-20 15:11:55 +00002754 case Type::FloatTyID: {
2755 auto EltVal = *reinterpret_cast<const uint32_t *>(EltPtr);
NAKAMURA Takumie86b9b72015-02-20 14:24:49 +00002756 return APFloat(APFloat::IEEEsingle, APInt(32, EltVal));
Benjamin Kramer7af984b2015-02-20 15:11:55 +00002757 }
2758 case Type::DoubleTyID: {
2759 auto EltVal = *reinterpret_cast<const uint64_t *>(EltPtr);
NAKAMURA Takumie86b9b72015-02-20 14:24:49 +00002760 return APFloat(APFloat::IEEEdouble, APInt(64, EltVal));
Chris Lattnere4f3f102012-01-24 04:43:41 +00002761 }
Benjamin Kramer7af984b2015-02-20 15:11:55 +00002762 }
Chris Lattnere4f3f102012-01-24 04:43:41 +00002763}
2764
2765/// getElementAsFloat - If this is an sequential container of floats, return
2766/// the specified element as a float.
2767float ConstantDataSequential::getElementAsFloat(unsigned Elt) const {
2768 assert(getElementType()->isFloatTy() &&
2769 "Accessor can only be used when element is a 'float'");
Galina Kistanovafc259902012-07-13 01:25:27 +00002770 const float *EltPtr = reinterpret_cast<const float *>(getElementPointer(Elt));
2771 return *const_cast<float *>(EltPtr);
Chris Lattnere4f3f102012-01-24 04:43:41 +00002772}
2773
2774/// getElementAsDouble - If this is an sequential container of doubles, return
2775/// the specified element as a float.
2776double ConstantDataSequential::getElementAsDouble(unsigned Elt) const {
2777 assert(getElementType()->isDoubleTy() &&
2778 "Accessor can only be used when element is a 'float'");
Galina Kistanovafc259902012-07-13 01:25:27 +00002779 const double *EltPtr =
2780 reinterpret_cast<const double *>(getElementPointer(Elt));
2781 return *const_cast<double *>(EltPtr);
Chris Lattnere4f3f102012-01-24 04:43:41 +00002782}
2783
2784/// getElementAsConstant - Return a Constant for a specified index's element.
2785/// Note that this has to compute a new constant to return, so it isn't as
2786/// efficient as getElementAsInteger/Float/Double.
2787Constant *ConstantDataSequential::getElementAsConstant(unsigned Elt) const {
2788 if (getElementType()->isFloatTy() || getElementType()->isDoubleTy())
2789 return ConstantFP::get(getContext(), getElementAsAPFloat(Elt));
Galina Kistanovafc259902012-07-13 01:25:27 +00002790
Chris Lattnere4f3f102012-01-24 04:43:41 +00002791 return ConstantInt::get(getElementType(), getElementAsInteger(Elt));
2792}
2793
Chris Lattner5dd4d872012-01-24 09:01:07 +00002794/// isString - This method returns true if this is an array of i8.
2795bool ConstantDataSequential::isString() const {
2796 return isa<ArrayType>(getType()) && getElementType()->isIntegerTy(8);
2797}
Chris Lattner3756b912012-01-23 22:57:10 +00002798
Chris Lattner5dd4d872012-01-24 09:01:07 +00002799/// isCString - This method returns true if the array "isString", ends with a
2800/// nul byte, and does not contains any other nul bytes.
2801bool ConstantDataSequential::isCString() const {
2802 if (!isString())
2803 return false;
Galina Kistanovafc259902012-07-13 01:25:27 +00002804
Chris Lattner5dd4d872012-01-24 09:01:07 +00002805 StringRef Str = getAsString();
Galina Kistanovafc259902012-07-13 01:25:27 +00002806
Chris Lattner5dd4d872012-01-24 09:01:07 +00002807 // The last value must be nul.
2808 if (Str.back() != 0) return false;
Galina Kistanovafc259902012-07-13 01:25:27 +00002809
Chris Lattner5dd4d872012-01-24 09:01:07 +00002810 // Other elements must be non-nul.
2811 return Str.drop_back().find(0) == StringRef::npos;
2812}
Chris Lattner3756b912012-01-23 22:57:10 +00002813
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002814/// getSplatValue - If this is a splat constant, meaning that all of the
Reid Kleckner971c3ea2014-11-13 22:55:19 +00002815/// elements have the same value, return that value. Otherwise return nullptr.
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002816Constant *ConstantDataVector::getSplatValue() const {
2817 const char *Base = getRawDataValues().data();
Galina Kistanovafc259902012-07-13 01:25:27 +00002818
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002819 // Compare elements 1+ to the 0'th element.
2820 unsigned EltSize = getElementByteSize();
2821 for (unsigned i = 1, e = getNumElements(); i != e; ++i)
2822 if (memcmp(Base, Base+i*EltSize, EltSize))
Craig Topperc6207612014-04-09 06:08:46 +00002823 return nullptr;
Galina Kistanovafc259902012-07-13 01:25:27 +00002824
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002825 // If they're all the same, return the 0th one as a representative.
2826 return getElementAsConstant(0);
2827}
Chris Lattnera3b94ba2010-03-30 20:48:48 +00002828
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002829//===----------------------------------------------------------------------===//
Pete Cooper5815b1f2015-06-24 18:55:24 +00002830// handleOperandChange implementations
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002831
Pete Cooper5815b1f2015-06-24 18:55:24 +00002832/// Update this constant array to change uses of
Chris Lattner913849b2007-08-21 00:55:23 +00002833/// 'From' to be uses of 'To'. This must update the uniquing data structures
2834/// etc.
2835///
2836/// Note that we intentionally replace all uses of From with To here. Consider
2837/// a large array that uses 'From' 1000 times. By handling this case all here,
Pete Cooper5815b1f2015-06-24 18:55:24 +00002838/// ConstantArray::handleOperandChange is only invoked once, and that
Chris Lattner913849b2007-08-21 00:55:23 +00002839/// single invocation handles all 1000 uses. Handling them one at a time would
2840/// work, but would be really slow because it would have to unique each updated
2841/// array instance.
Chris Lattner31b132c2009-10-28 00:01:44 +00002842///
Pete Cooper5815b1f2015-06-24 18:55:24 +00002843void Constant::handleOperandChange(Value *From, Value *To, Use *U) {
2844 Value *Replacement = nullptr;
2845 switch (getValueID()) {
2846 default:
2847 llvm_unreachable("Not a constant!");
2848#define HANDLE_CONSTANT(Name) \
2849 case Value::Name##Val: \
2850 Replacement = cast<Name>(this)->handleOperandChangeImpl(From, To, U); \
2851 break;
2852#include "llvm/IR/Value.def"
2853 }
2854
2855 // If handleOperandChangeImpl returned nullptr, then it handled
2856 // replacing itself and we don't want to delete or replace anything else here.
2857 if (!Replacement)
2858 return;
2859
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002860 // I do need to replace this with an existing value.
2861 assert(Replacement != this && "I didn't contain From!");
2862
2863 // Everyone using this now uses the replacement.
2864 replaceAllUsesWith(Replacement);
2865
2866 // Delete the old constant!
2867 destroyConstant();
2868}
2869
Pete Cooper5815b1f2015-06-24 18:55:24 +00002870Value *ConstantInt::handleOperandChangeImpl(Value *From, Value *To, Use *U) {
2871 llvm_unreachable("Unsupported class for handleOperandChange()!");
2872}
2873
2874Value *ConstantFP::handleOperandChangeImpl(Value *From, Value *To, Use *U) {
2875 llvm_unreachable("Unsupported class for handleOperandChange()!");
2876}
2877
David Majnemerf0f224d2015-11-11 21:57:16 +00002878Value *ConstantTokenNone::handleOperandChangeImpl(Value *From, Value *To,
2879 Use *U) {
2880 llvm_unreachable("Unsupported class for handleOperandChange()!");
2881}
2882
Pete Cooper5815b1f2015-06-24 18:55:24 +00002883Value *UndefValue::handleOperandChangeImpl(Value *From, Value *To, Use *U) {
2884 llvm_unreachable("Unsupported class for handleOperandChange()!");
2885}
2886
2887Value *ConstantPointerNull::handleOperandChangeImpl(Value *From, Value *To,
2888 Use *U) {
2889 llvm_unreachable("Unsupported class for handleOperandChange()!");
2890}
2891
2892Value *ConstantAggregateZero::handleOperandChangeImpl(Value *From, Value *To,
2893 Use *U) {
2894 llvm_unreachable("Unsupported class for handleOperandChange()!");
2895}
2896
2897Value *ConstantDataSequential::handleOperandChangeImpl(Value *From, Value *To,
2898 Use *U) {
2899 llvm_unreachable("Unsupported class for handleOperandChange()!");
2900}
2901
2902Value *ConstantArray::handleOperandChangeImpl(Value *From, Value *To, Use *U) {
Owen Andersonc2c79322009-07-28 18:32:17 +00002903 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2904 Constant *ToC = cast<Constant>(To);
2905
Talin46e9b442012-02-05 20:54:10 +00002906 SmallVector<Constant*, 8> Values;
Owen Andersonc2c79322009-07-28 18:32:17 +00002907 Values.reserve(getNumOperands()); // Build replacement array.
2908
Galina Kistanovafc259902012-07-13 01:25:27 +00002909 // Fill values with the modified operands of the constant array. Also,
Owen Andersonc2c79322009-07-28 18:32:17 +00002910 // compute whether this turns into an all-zeros array.
Owen Andersonc2c79322009-07-28 18:32:17 +00002911 unsigned NumUpdated = 0;
Galina Kistanovafc259902012-07-13 01:25:27 +00002912
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002913 // Keep track of whether all the values in the array are "ToC".
2914 bool AllSame = true;
Pete Cooper74510a42015-06-12 17:48:05 +00002915 Use *OperandList = getOperandList();
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002916 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2917 Constant *Val = cast<Constant>(O->get());
2918 if (Val == From) {
2919 Val = ToC;
2920 ++NumUpdated;
Owen Andersonc2c79322009-07-28 18:32:17 +00002921 }
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002922 Values.push_back(Val);
Talin46e9b442012-02-05 20:54:10 +00002923 AllSame &= Val == ToC;
Owen Andersonc2c79322009-07-28 18:32:17 +00002924 }
Galina Kistanovafc259902012-07-13 01:25:27 +00002925
Pete Cooper5815b1f2015-06-24 18:55:24 +00002926 if (AllSame && ToC->isNullValue())
2927 return ConstantAggregateZero::get(getType());
2928
2929 if (AllSame && isa<UndefValue>(ToC))
2930 return UndefValue::get(getType());
Aaron Ballmane4b91dc2014-08-19 14:59:02 +00002931
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002932 // Check for any other type of constant-folding.
Pete Cooper5815b1f2015-06-24 18:55:24 +00002933 if (Constant *C = getImpl(getType(), Values))
2934 return C;
Aaron Ballmane4b91dc2014-08-19 14:59:02 +00002935
Duncan P. N. Exon Smith909620a2014-08-19 19:13:30 +00002936 // Update to the new value.
Pete Cooper5815b1f2015-06-24 18:55:24 +00002937 return getContext().pImpl->ArrayConstants.replaceOperandsInPlace(
2938 Values, this, From, ToC, NumUpdated, U - OperandList);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002939}
2940
Pete Cooper5815b1f2015-06-24 18:55:24 +00002941Value *ConstantStruct::handleOperandChangeImpl(Value *From, Value *To, Use *U) {
Owen Anderson45308b52009-07-27 22:29:26 +00002942 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2943 Constant *ToC = cast<Constant>(To);
2944
Pete Cooper74510a42015-06-12 17:48:05 +00002945 Use *OperandList = getOperandList();
Owen Anderson45308b52009-07-27 22:29:26 +00002946 unsigned OperandToUpdate = U-OperandList;
2947 assert(getOperand(OperandToUpdate) == From && "ReplaceAllUsesWith broken!");
2948
Talin46e9b442012-02-05 20:54:10 +00002949 SmallVector<Constant*, 8> Values;
Owen Anderson45308b52009-07-27 22:29:26 +00002950 Values.reserve(getNumOperands()); // Build replacement struct.
Galina Kistanovafc259902012-07-13 01:25:27 +00002951
2952 // Fill values with the modified operands of the constant struct. Also,
Owen Anderson45308b52009-07-27 22:29:26 +00002953 // compute whether this turns into an all-zeros struct.
2954 bool isAllZeros = false;
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002955 bool isAllUndef = false;
2956 if (ToC->isNullValue()) {
Owen Anderson45308b52009-07-27 22:29:26 +00002957 isAllZeros = true;
2958 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2959 Constant *Val = cast<Constant>(O->get());
2960 Values.push_back(Val);
2961 if (isAllZeros) isAllZeros = Val->isNullValue();
2962 }
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002963 } else if (isa<UndefValue>(ToC)) {
2964 isAllUndef = true;
2965 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2966 Constant *Val = cast<Constant>(O->get());
2967 Values.push_back(Val);
2968 if (isAllUndef) isAllUndef = isa<UndefValue>(Val);
2969 }
2970 } else {
2971 for (Use *O = OperandList, *E = OperandList + getNumOperands(); O != E; ++O)
2972 Values.push_back(cast<Constant>(O->get()));
Owen Anderson45308b52009-07-27 22:29:26 +00002973 }
2974 Values[OperandToUpdate] = ToC;
Galina Kistanovafc259902012-07-13 01:25:27 +00002975
Pete Cooper5815b1f2015-06-24 18:55:24 +00002976 if (isAllZeros)
2977 return ConstantAggregateZero::get(getType());
2978
2979 if (isAllUndef)
2980 return UndefValue::get(getType());
Galina Kistanovafc259902012-07-13 01:25:27 +00002981
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002982 // Update to the new value.
Pete Cooper5815b1f2015-06-24 18:55:24 +00002983 return getContext().pImpl->StructConstants.replaceOperandsInPlace(
2984 Values, this, From, ToC);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002985}
2986
Pete Cooper5815b1f2015-06-24 18:55:24 +00002987Value *ConstantVector::handleOperandChangeImpl(Value *From, Value *To, Use *U) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002988 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002989 Constant *ToC = cast<Constant>(To);
Galina Kistanovafc259902012-07-13 01:25:27 +00002990
Chris Lattnera474bb22012-01-26 20:40:56 +00002991 SmallVector<Constant*, 8> Values;
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002992 Values.reserve(getNumOperands()); // Build replacement array...
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002993 unsigned NumUpdated = 0;
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002994 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
2995 Constant *Val = getOperand(i);
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002996 if (Val == From) {
2997 ++NumUpdated;
2998 Val = ToC;
2999 }
Chris Lattnerc4062ba2005-10-03 21:58:36 +00003000 Values.push_back(Val);
3001 }
Galina Kistanovafc259902012-07-13 01:25:27 +00003002
Pete Cooper5815b1f2015-06-24 18:55:24 +00003003 if (Constant *C = getImpl(Values))
3004 return C;
Duncan P. N. Exon Smith687744d2014-08-19 02:24:46 +00003005
Duncan P. N. Exon Smith909620a2014-08-19 19:13:30 +00003006 // Update to the new value.
Pete Cooper74510a42015-06-12 17:48:05 +00003007 Use *OperandList = getOperandList();
Pete Cooper5815b1f2015-06-24 18:55:24 +00003008 return getContext().pImpl->VectorConstants.replaceOperandsInPlace(
3009 Values, this, From, ToC, NumUpdated, U - OperandList);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00003010}
3011
Pete Cooper5815b1f2015-06-24 18:55:24 +00003012Value *ConstantExpr::handleOperandChangeImpl(Value *From, Value *ToV, Use *U) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00003013 assert(isa<Constant>(ToV) && "Cannot make Constant refer to non-constant!");
3014 Constant *To = cast<Constant>(ToV);
Galina Kistanovafc259902012-07-13 01:25:27 +00003015
Chris Lattner37e38352012-01-26 20:37:11 +00003016 SmallVector<Constant*, 8> NewOps;
Duncan P. N. Exon Smith33de00c2014-08-19 20:03:35 +00003017 unsigned NumUpdated = 0;
Chris Lattner37e38352012-01-26 20:37:11 +00003018 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
3019 Constant *Op = getOperand(i);
Duncan P. N. Exon Smith33de00c2014-08-19 20:03:35 +00003020 if (Op == From) {
3021 ++NumUpdated;
3022 Op = To;
3023 }
3024 NewOps.push_back(Op);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00003025 }
Duncan P. N. Exon Smith33de00c2014-08-19 20:03:35 +00003026 assert(NumUpdated && "I didn't contain From!");
Galina Kistanovafc259902012-07-13 01:25:27 +00003027
Pete Cooper5815b1f2015-06-24 18:55:24 +00003028 if (Constant *C = getWithOperands(NewOps, getType(), true))
3029 return C;
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00003030
Duncan P. N. Exon Smith33de00c2014-08-19 20:03:35 +00003031 // Update to the new value.
Pete Cooper74510a42015-06-12 17:48:05 +00003032 Use *OperandList = getOperandList();
Pete Cooper5815b1f2015-06-24 18:55:24 +00003033 return getContext().pImpl->ExprConstants.replaceOperandsInPlace(
3034 NewOps, this, From, To, NumUpdated, U - OperandList);
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00003035}
3036
James Molloyce545682012-11-17 17:56:30 +00003037Instruction *ConstantExpr::getAsInstruction() {
Benjamin Kramer5fbfe2f2015-02-28 13:20:15 +00003038 SmallVector<Value *, 4> ValueOperands(op_begin(), op_end());
James Molloyce545682012-11-17 17:56:30 +00003039 ArrayRef<Value*> Ops(ValueOperands);
3040
3041 switch (getOpcode()) {
3042 case Instruction::Trunc:
3043 case Instruction::ZExt:
3044 case Instruction::SExt:
3045 case Instruction::FPTrunc:
3046 case Instruction::FPExt:
3047 case Instruction::UIToFP:
3048 case Instruction::SIToFP:
3049 case Instruction::FPToUI:
3050 case Instruction::FPToSI:
3051 case Instruction::PtrToInt:
3052 case Instruction::IntToPtr:
3053 case Instruction::BitCast:
Eli Bendersky157a97a2014-01-18 22:54:33 +00003054 case Instruction::AddrSpaceCast:
James Molloyce545682012-11-17 17:56:30 +00003055 return CastInst::Create((Instruction::CastOps)getOpcode(),
3056 Ops[0], getType());
3057 case Instruction::Select:
3058 return SelectInst::Create(Ops[0], Ops[1], Ops[2]);
3059 case Instruction::InsertElement:
3060 return InsertElementInst::Create(Ops[0], Ops[1], Ops[2]);
3061 case Instruction::ExtractElement:
3062 return ExtractElementInst::Create(Ops[0], Ops[1]);
3063 case Instruction::InsertValue:
3064 return InsertValueInst::Create(Ops[0], Ops[1], getIndices());
3065 case Instruction::ExtractValue:
3066 return ExtractValueInst::Create(Ops[0], getIndices());
3067 case Instruction::ShuffleVector:
3068 return new ShuffleVectorInst(Ops[0], Ops[1], Ops[2]);
3069
David Blaikie741c8f82015-03-14 01:53:18 +00003070 case Instruction::GetElementPtr: {
3071 const auto *GO = cast<GEPOperator>(this);
3072 if (GO->isInBounds())
3073 return GetElementPtrInst::CreateInBounds(GO->getSourceElementType(),
3074 Ops[0], Ops.slice(1));
3075 return GetElementPtrInst::Create(GO->getSourceElementType(), Ops[0],
3076 Ops.slice(1));
3077 }
James Molloyce545682012-11-17 17:56:30 +00003078 case Instruction::ICmp:
3079 case Instruction::FCmp:
3080 return CmpInst::Create((Instruction::OtherOps)getOpcode(),
3081 getPredicate(), Ops[0], Ops[1]);
3082
3083 default:
3084 assert(getNumOperands() == 2 && "Must be binary operator?");
3085 BinaryOperator *BO =
3086 BinaryOperator::Create((Instruction::BinaryOps)getOpcode(),
3087 Ops[0], Ops[1]);
3088 if (isa<OverflowingBinaryOperator>(BO)) {
3089 BO->setHasNoUnsignedWrap(SubclassOptionalData &
3090 OverflowingBinaryOperator::NoUnsignedWrap);
3091 BO->setHasNoSignedWrap(SubclassOptionalData &
3092 OverflowingBinaryOperator::NoSignedWrap);
3093 }
3094 if (isa<PossiblyExactOperator>(BO))
3095 BO->setIsExact(SubclassOptionalData & PossiblyExactOperator::IsExact);
3096 return BO;
3097 }
3098}