blob: 550d9a89a65efbcfff3bc3133a52b56a29f24b11 [file] [log] [blame]
Chris Lattner2b383d2e2003-05-13 21:37:02 +00001//===-- Constants.cpp - Implement Constant nodes --------------------------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
John Criswell482202a2003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanb1c93172005-04-21 23:48:37 +00007//
John Criswell482202a2003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +00009//
Chris Lattnere17322b2011-02-07 20:03:14 +000010// This file implements the Constant* classes.
Chris Lattner2f7c9632001-06-06 20:29:01 +000011//
12//===----------------------------------------------------------------------===//
13
Chandler Carruth9fb823b2013-01-02 11:36:10 +000014#include "llvm/IR/Constants.h"
Chris Lattner33e93b82007-02-27 03:05:06 +000015#include "ConstantFold.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000016#include "LLVMContextImpl.h"
17#include "llvm/ADT/DenseMap.h"
18#include "llvm/ADT/FoldingSet.h"
19#include "llvm/ADT/STLExtras.h"
20#include "llvm/ADT/SmallVector.h"
21#include "llvm/ADT/StringExtras.h"
22#include "llvm/ADT/StringMap.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000023#include "llvm/IR/DerivedTypes.h"
Chandler Carruth03eb0de2014-03-04 10:40:04 +000024#include "llvm/IR/GetElementPtrTypeIterator.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000025#include "llvm/IR/GlobalValue.h"
26#include "llvm/IR/Instructions.h"
27#include "llvm/IR/Module.h"
28#include "llvm/IR/Operator.h"
Chris Lattner3d27be12006-08-27 12:54:02 +000029#include "llvm/Support/Compiler.h"
Bill Wendling6a462f12006-11-17 08:03:48 +000030#include "llvm/Support/Debug.h"
Torok Edwinccb29cd2009-07-11 13:10:19 +000031#include "llvm/Support/ErrorHandling.h"
Chris Lattner69edc982006-09-28 00:35:06 +000032#include "llvm/Support/ManagedStatic.h"
Bill Wendling6a462f12006-11-17 08:03:48 +000033#include "llvm/Support/MathExtras.h"
Chris Lattner78683a72009-08-23 04:02:03 +000034#include "llvm/Support/raw_ostream.h"
Chris Lattner2f7c9632001-06-06 20:29:01 +000035#include <algorithm>
Talin3a0a30d2011-02-28 23:53:27 +000036#include <cstdarg>
Chris Lattner189d19f2003-11-21 20:23:48 +000037using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000038
Chris Lattner2f7c9632001-06-06 20:29:01 +000039//===----------------------------------------------------------------------===//
Chris Lattner3462ae32001-12-03 22:26:30 +000040// Constant Class
Chris Lattner2f7c9632001-06-06 20:29:01 +000041//===----------------------------------------------------------------------===//
42
David Blaikiea379b1812011-12-20 02:50:00 +000043void Constant::anchor() { }
44
Chris Lattnerac5fb562011-07-15 05:58:04 +000045bool Constant::isNegativeZeroValue() const {
46 // Floating point values have an explicit -0.0 value.
47 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
48 return CFP->isZero() && CFP->isNegative();
Galina Kistanovafc259902012-07-13 01:25:27 +000049
David Tweed5493fee2013-03-18 11:54:44 +000050 // Equivalent for a vector of -0.0's.
51 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this))
52 if (ConstantFP *SplatCFP = dyn_cast_or_null<ConstantFP>(CV->getSplatValue()))
53 if (SplatCFP && SplatCFP->isZero() && SplatCFP->isNegative())
54 return true;
55
David Tweed298e4192013-03-19 10:16:40 +000056 // We've already handled true FP case; any other FP vectors can't represent -0.0.
57 if (getType()->isFPOrFPVectorTy())
58 return false;
David Tweed5493fee2013-03-18 11:54:44 +000059
Chris Lattnerac5fb562011-07-15 05:58:04 +000060 // Otherwise, just use +0.0.
61 return isNullValue();
62}
63
Shuxin Yang9ca562e2013-01-09 00:53:25 +000064// Return true iff this constant is positive zero (floating point), negative
65// zero (floating point), or a null value.
Shuxin Yangf0537ab2013-01-09 00:13:41 +000066bool Constant::isZeroValue() const {
67 // Floating point values have an explicit -0.0 value.
68 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
69 return CFP->isZero();
70
71 // Otherwise, just use +0.0.
72 return isNullValue();
73}
74
Chris Lattnerbe6610c2011-07-15 06:14:08 +000075bool Constant::isNullValue() const {
76 // 0 is null.
77 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
78 return CI->isZero();
Galina Kistanovafc259902012-07-13 01:25:27 +000079
Chris Lattnerbe6610c2011-07-15 06:14:08 +000080 // +0.0 is null.
81 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
82 return CFP->isZero() && !CFP->isNegative();
83
David Majnemerf0f224d2015-11-11 21:57:16 +000084 // constant zero is zero for aggregates, cpnull is null for pointers, none for
85 // tokens.
86 return isa<ConstantAggregateZero>(this) || isa<ConstantPointerNull>(this) ||
87 isa<ConstantTokenNone>(this);
Chris Lattnerbe6610c2011-07-15 06:14:08 +000088}
89
Nadav Rotem365af6f2011-08-24 20:18:38 +000090bool Constant::isAllOnesValue() const {
91 // Check for -1 integers
92 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
93 return CI->isMinusOne();
94
95 // Check for FP which are bitcasted from -1 integers
96 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
97 return CFP->getValueAPF().bitcastToAPInt().isAllOnesValue();
98
Benjamin Kramer42d098e2011-11-14 19:12:20 +000099 // Check for constant vectors which are splats of -1 values.
Nadav Rotem365af6f2011-08-24 20:18:38 +0000100 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
Benjamin Kramer42d098e2011-11-14 19:12:20 +0000101 if (Constant *Splat = CV->getSplatValue())
102 return Splat->isAllOnesValue();
Nadav Rotem365af6f2011-08-24 20:18:38 +0000103
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000104 // Check for constant vectors which are splats of -1 values.
105 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this))
106 if (Constant *Splat = CV->getSplatValue())
107 return Splat->isAllOnesValue();
108
Nadav Rotem365af6f2011-08-24 20:18:38 +0000109 return false;
110}
Benjamin Kramer42d098e2011-11-14 19:12:20 +0000111
David Majnemer1a0bbc82014-08-16 09:23:42 +0000112bool Constant::isOneValue() const {
113 // Check for 1 integers
114 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
115 return CI->isOne();
116
117 // Check for FP which are bitcasted from 1 integers
118 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
119 return CFP->getValueAPF().bitcastToAPInt() == 1;
120
121 // Check for constant vectors which are splats of 1 values.
122 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
123 if (Constant *Splat = CV->getSplatValue())
124 return Splat->isOneValue();
125
126 // Check for constant vectors which are splats of 1 values.
127 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this))
128 if (Constant *Splat = CV->getSplatValue())
129 return Splat->isOneValue();
130
131 return false;
132}
133
David Majnemerbdeef602014-07-02 06:07:09 +0000134bool Constant::isMinSignedValue() const {
135 // Check for INT_MIN integers
136 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
137 return CI->isMinValue(/*isSigned=*/true);
138
139 // Check for FP which are bitcasted from INT_MIN integers
140 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
141 return CFP->getValueAPF().bitcastToAPInt().isMinSignedValue();
142
143 // Check for constant vectors which are splats of INT_MIN values.
144 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
145 if (Constant *Splat = CV->getSplatValue())
146 return Splat->isMinSignedValue();
147
148 // Check for constant vectors which are splats of INT_MIN values.
149 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this))
150 if (Constant *Splat = CV->getSplatValue())
151 return Splat->isMinSignedValue();
152
153 return false;
154}
155
David Majnemer0e6c9862014-08-22 16:41:23 +0000156bool Constant::isNotMinSignedValue() const {
157 // Check for INT_MIN integers
158 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
159 return !CI->isMinValue(/*isSigned=*/true);
160
161 // Check for FP which are bitcasted from INT_MIN integers
162 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
163 return !CFP->getValueAPF().bitcastToAPInt().isMinSignedValue();
164
165 // Check for constant vectors which are splats of INT_MIN values.
166 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
167 if (Constant *Splat = CV->getSplatValue())
168 return Splat->isNotMinSignedValue();
169
170 // Check for constant vectors which are splats of INT_MIN values.
171 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this))
172 if (Constant *Splat = CV->getSplatValue())
173 return Splat->isNotMinSignedValue();
174
175 // It *may* contain INT_MIN, we can't tell.
176 return false;
177}
178
Owen Anderson5a1acd92009-07-31 20:28:14 +0000179// Constructor to create a '0' constant of arbitrary type...
Chris Lattner229907c2011-07-18 04:54:35 +0000180Constant *Constant::getNullValue(Type *Ty) {
Owen Anderson5a1acd92009-07-31 20:28:14 +0000181 switch (Ty->getTypeID()) {
182 case Type::IntegerTyID:
183 return ConstantInt::get(Ty, 0);
Dan Gohman518cda42011-12-17 00:04:22 +0000184 case Type::HalfTyID:
185 return ConstantFP::get(Ty->getContext(),
186 APFloat::getZero(APFloat::IEEEhalf));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000187 case Type::FloatTyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000188 return ConstantFP::get(Ty->getContext(),
189 APFloat::getZero(APFloat::IEEEsingle));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000190 case Type::DoubleTyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000191 return ConstantFP::get(Ty->getContext(),
192 APFloat::getZero(APFloat::IEEEdouble));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000193 case Type::X86_FP80TyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000194 return ConstantFP::get(Ty->getContext(),
195 APFloat::getZero(APFloat::x87DoubleExtended));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000196 case Type::FP128TyID:
197 return ConstantFP::get(Ty->getContext(),
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000198 APFloat::getZero(APFloat::IEEEquad));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000199 case Type::PPC_FP128TyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000200 return ConstantFP::get(Ty->getContext(),
Tim Northover29178a32013-01-22 09:46:31 +0000201 APFloat(APFloat::PPCDoubleDouble,
202 APInt::getNullValue(128)));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000203 case Type::PointerTyID:
204 return ConstantPointerNull::get(cast<PointerType>(Ty));
205 case Type::StructTyID:
206 case Type::ArrayTyID:
207 case Type::VectorTyID:
208 return ConstantAggregateZero::get(Ty);
David Majnemerf0f224d2015-11-11 21:57:16 +0000209 case Type::TokenTyID:
210 return ConstantTokenNone::get(Ty->getContext());
Owen Anderson5a1acd92009-07-31 20:28:14 +0000211 default:
212 // Function, Label, or Opaque type?
Craig Topperc514b542012-02-05 22:14:15 +0000213 llvm_unreachable("Cannot create a null constant of that type!");
Owen Anderson5a1acd92009-07-31 20:28:14 +0000214 }
215}
216
Chris Lattner229907c2011-07-18 04:54:35 +0000217Constant *Constant::getIntegerValue(Type *Ty, const APInt &V) {
218 Type *ScalarTy = Ty->getScalarType();
Dan Gohmanf011f5a2009-08-03 22:07:33 +0000219
220 // Create the base integer constant.
221 Constant *C = ConstantInt::get(Ty->getContext(), V);
222
223 // Convert an integer to a pointer, if necessary.
Chris Lattner229907c2011-07-18 04:54:35 +0000224 if (PointerType *PTy = dyn_cast<PointerType>(ScalarTy))
Dan Gohmanf011f5a2009-08-03 22:07:33 +0000225 C = ConstantExpr::getIntToPtr(C, PTy);
226
227 // Broadcast a scalar to a vector, if necessary.
Chris Lattner229907c2011-07-18 04:54:35 +0000228 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000229 C = ConstantVector::getSplat(VTy->getNumElements(), C);
Dan Gohmanf011f5a2009-08-03 22:07:33 +0000230
231 return C;
232}
233
Chris Lattner229907c2011-07-18 04:54:35 +0000234Constant *Constant::getAllOnesValue(Type *Ty) {
235 if (IntegerType *ITy = dyn_cast<IntegerType>(Ty))
Owen Anderson5a1acd92009-07-31 20:28:14 +0000236 return ConstantInt::get(Ty->getContext(),
237 APInt::getAllOnesValue(ITy->getBitWidth()));
Nadav Rotem7cc6d122011-02-17 21:22:27 +0000238
239 if (Ty->isFloatingPointTy()) {
240 APFloat FL = APFloat::getAllOnesValue(Ty->getPrimitiveSizeInBits(),
241 !Ty->isPPC_FP128Ty());
242 return ConstantFP::get(Ty->getContext(), FL);
243 }
244
Chris Lattner229907c2011-07-18 04:54:35 +0000245 VectorType *VTy = cast<VectorType>(Ty);
Chris Lattnere9eed292012-01-25 05:19:54 +0000246 return ConstantVector::getSplat(VTy->getNumElements(),
247 getAllOnesValue(VTy->getElementType()));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000248}
249
Chris Lattner7e683d12012-01-25 06:16:32 +0000250/// getAggregateElement - For aggregates (struct/array/vector) return the
251/// constant that corresponds to the specified element if possible, or null if
252/// not. This can return null if the element index is a ConstantExpr, or if
253/// 'this' is a constant expr.
254Constant *Constant::getAggregateElement(unsigned Elt) const {
255 if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(this))
Craig Topperc6207612014-04-09 06:08:46 +0000256 return Elt < CS->getNumOperands() ? CS->getOperand(Elt) : nullptr;
Galina Kistanovafc259902012-07-13 01:25:27 +0000257
Chris Lattner7e683d12012-01-25 06:16:32 +0000258 if (const ConstantArray *CA = dyn_cast<ConstantArray>(this))
Craig Topperc6207612014-04-09 06:08:46 +0000259 return Elt < CA->getNumOperands() ? CA->getOperand(Elt) : nullptr;
Galina Kistanovafc259902012-07-13 01:25:27 +0000260
Chris Lattner7e683d12012-01-25 06:16:32 +0000261 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
Craig Topperc6207612014-04-09 06:08:46 +0000262 return Elt < CV->getNumOperands() ? CV->getOperand(Elt) : nullptr;
Galina Kistanovafc259902012-07-13 01:25:27 +0000263
David Majnemer9b529a72015-02-16 04:02:09 +0000264 if (const ConstantAggregateZero *CAZ = dyn_cast<ConstantAggregateZero>(this))
265 return Elt < CAZ->getNumElements() ? CAZ->getElementValue(Elt) : nullptr;
Galina Kistanovafc259902012-07-13 01:25:27 +0000266
Chris Lattner7e683d12012-01-25 06:16:32 +0000267 if (const UndefValue *UV = dyn_cast<UndefValue>(this))
David Majnemer9b529a72015-02-16 04:02:09 +0000268 return Elt < UV->getNumElements() ? UV->getElementValue(Elt) : nullptr;
Galina Kistanovafc259902012-07-13 01:25:27 +0000269
Chris Lattner8326bd82012-01-26 00:42:34 +0000270 if (const ConstantDataSequential *CDS =dyn_cast<ConstantDataSequential>(this))
Craig Topperc6207612014-04-09 06:08:46 +0000271 return Elt < CDS->getNumElements() ? CDS->getElementAsConstant(Elt)
272 : nullptr;
273 return nullptr;
Chris Lattner7e683d12012-01-25 06:16:32 +0000274}
275
276Constant *Constant::getAggregateElement(Constant *Elt) const {
277 assert(isa<IntegerType>(Elt->getType()) && "Index must be an integer");
278 if (ConstantInt *CI = dyn_cast<ConstantInt>(Elt))
279 return getAggregateElement(CI->getZExtValue());
Craig Topperc6207612014-04-09 06:08:46 +0000280 return nullptr;
Chris Lattner7e683d12012-01-25 06:16:32 +0000281}
282
Pete Cooper86dd4cf2015-06-23 21:55:11 +0000283void Constant::destroyConstant() {
284 /// First call destroyConstantImpl on the subclass. This gives the subclass
285 /// a chance to remove the constant from any maps/pools it's contained in.
286 switch (getValueID()) {
287 default:
288 llvm_unreachable("Not a constant!");
289#define HANDLE_CONSTANT(Name) \
290 case Value::Name##Val: \
291 cast<Name>(this)->destroyConstantImpl(); \
292 break;
293#include "llvm/IR/Value.def"
294 }
Chris Lattner7e683d12012-01-25 06:16:32 +0000295
Chris Lattner3462ae32001-12-03 22:26:30 +0000296 // When a Constant is destroyed, there may be lingering
Chris Lattnerd7a73302001-10-13 06:57:33 +0000297 // references to the constant by other constants in the constant pool. These
Misha Brukmanbe372b92003-08-21 22:14:26 +0000298 // constants are implicitly dependent on the module that is being deleted,
Chris Lattnerd7a73302001-10-13 06:57:33 +0000299 // but they don't know that. Because we only find out when the CPV is
300 // deleted, we must now notify all of our users (that should only be
Chris Lattner3462ae32001-12-03 22:26:30 +0000301 // Constants) that they are, in fact, invalid now and should be deleted.
Chris Lattnerd7a73302001-10-13 06:57:33 +0000302 //
303 while (!use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000304 Value *V = user_back();
Pete Cooper86dd4cf2015-06-23 21:55:11 +0000305#ifndef NDEBUG // Only in -g mode...
Chris Lattner78683a72009-08-23 04:02:03 +0000306 if (!isa<Constant>(V)) {
David Greene1e27a132010-01-05 01:29:19 +0000307 dbgs() << "While deleting: " << *this
Pete Cooper86dd4cf2015-06-23 21:55:11 +0000308 << "\n\nUse still stuck around after Def is destroyed: " << *V
309 << "\n\n";
Chris Lattner78683a72009-08-23 04:02:03 +0000310 }
Chris Lattnerd7a73302001-10-13 06:57:33 +0000311#endif
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000312 assert(isa<Constant>(V) && "References remain to Constant being destroyed");
Chris Lattner8326bd82012-01-26 00:42:34 +0000313 cast<Constant>(V)->destroyConstant();
Chris Lattnerd7a73302001-10-13 06:57:33 +0000314
315 // The constant should remove itself from our use list...
Chandler Carruthcdf47882014-03-09 03:16:01 +0000316 assert((use_empty() || user_back() != V) && "Constant not removed!");
Chris Lattnerd7a73302001-10-13 06:57:33 +0000317 }
318
319 // Value has no outstanding references it is safe to delete it now...
320 delete this;
Chris Lattner38569342001-10-01 20:11:19 +0000321}
Chris Lattner2f7c9632001-06-06 20:29:01 +0000322
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +0000323static bool canTrapImpl(const Constant *C,
Craig Topper71b7b682014-08-21 05:55:13 +0000324 SmallPtrSetImpl<const ConstantExpr *> &NonTrappingOps) {
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +0000325 assert(C->getType()->isFirstClassType() && "Cannot evaluate aggregate vals!");
Chris Lattner23dd1f62006-10-20 00:27:06 +0000326 // The only thing that could possibly trap are constant exprs.
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +0000327 const ConstantExpr *CE = dyn_cast<ConstantExpr>(C);
328 if (!CE)
329 return false;
Galina Kistanovafc259902012-07-13 01:25:27 +0000330
331 // ConstantExpr traps if any operands can trap.
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +0000332 for (unsigned i = 0, e = C->getNumOperands(); i != e; ++i) {
333 if (ConstantExpr *Op = dyn_cast<ConstantExpr>(CE->getOperand(i))) {
David Blaikie70573dc2014-11-19 07:49:26 +0000334 if (NonTrappingOps.insert(Op).second && canTrapImpl(Op, NonTrappingOps))
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +0000335 return true;
336 }
337 }
Chris Lattner23dd1f62006-10-20 00:27:06 +0000338
339 // Otherwise, only specific operations can trap.
340 switch (CE->getOpcode()) {
341 default:
342 return false;
Reid Spencer7e80b0b2006-10-26 06:15:43 +0000343 case Instruction::UDiv:
344 case Instruction::SDiv:
345 case Instruction::FDiv:
Reid Spencer7eb55b32006-11-02 01:53:59 +0000346 case Instruction::URem:
347 case Instruction::SRem:
348 case Instruction::FRem:
Chris Lattner23dd1f62006-10-20 00:27:06 +0000349 // Div and rem can trap if the RHS is not known to be non-zero.
Chris Lattnera91a5632009-10-28 05:14:34 +0000350 if (!isa<ConstantInt>(CE->getOperand(1)) ||CE->getOperand(1)->isNullValue())
Chris Lattner23dd1f62006-10-20 00:27:06 +0000351 return true;
352 return false;
353 }
354}
355
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +0000356/// canTrap - Return true if evaluation of this constant could trap. This is
357/// true for things like constant expressions that could divide by zero.
358bool Constant::canTrap() const {
359 SmallPtrSet<const ConstantExpr *, 4> NonTrappingOps;
360 return canTrapImpl(this, NonTrappingOps);
361}
362
Hans Wennborg4dc89512014-06-20 00:38:12 +0000363/// Check if C contains a GlobalValue for which Predicate is true.
364static bool
365ConstHasGlobalValuePredicate(const Constant *C,
366 bool (*Predicate)(const GlobalValue *)) {
367 SmallPtrSet<const Constant *, 8> Visited;
368 SmallVector<const Constant *, 8> WorkList;
369 WorkList.push_back(C);
370 Visited.insert(C);
Hans Wennborg709e0152012-11-15 11:40:00 +0000371
372 while (!WorkList.empty()) {
Hans Wennborg4dc89512014-06-20 00:38:12 +0000373 const Constant *WorkItem = WorkList.pop_back_val();
374 if (const auto *GV = dyn_cast<GlobalValue>(WorkItem))
375 if (Predicate(GV))
Hans Wennborg709e0152012-11-15 11:40:00 +0000376 return true;
Hans Wennborg4dc89512014-06-20 00:38:12 +0000377 for (const Value *Op : WorkItem->operands()) {
378 const Constant *ConstOp = dyn_cast<Constant>(Op);
379 if (!ConstOp)
Hans Wennborg18aa12402012-11-16 10:33:25 +0000380 continue;
David Blaikie70573dc2014-11-19 07:49:26 +0000381 if (Visited.insert(ConstOp).second)
Hans Wennborg4dc89512014-06-20 00:38:12 +0000382 WorkList.push_back(ConstOp);
Hans Wennborg709e0152012-11-15 11:40:00 +0000383 }
384 }
Hans Wennborg709e0152012-11-15 11:40:00 +0000385 return false;
386}
387
Hans Wennborg4dc89512014-06-20 00:38:12 +0000388/// Return true if the value can vary between threads.
389bool Constant::isThreadDependent() const {
390 auto DLLImportPredicate = [](const GlobalValue *GV) {
391 return GV->isThreadLocal();
392 };
393 return ConstHasGlobalValuePredicate(this, DLLImportPredicate);
394}
395
396bool Constant::isDLLImportDependent() const {
397 auto DLLImportPredicate = [](const GlobalValue *GV) {
398 return GV->hasDLLImportStorageClass();
399 };
400 return ConstHasGlobalValuePredicate(this, DLLImportPredicate);
401}
402
403/// Return true if the constant has users other than constant exprs and other
404/// dangling things.
Chris Lattner253bc772009-11-01 18:11:50 +0000405bool Constant::isConstantUsed() const {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000406 for (const User *U : users()) {
407 const Constant *UC = dyn_cast<Constant>(U);
Craig Topperc6207612014-04-09 06:08:46 +0000408 if (!UC || isa<GlobalValue>(UC))
Chris Lattner253bc772009-11-01 18:11:50 +0000409 return true;
Galina Kistanovafc259902012-07-13 01:25:27 +0000410
Chris Lattner253bc772009-11-01 18:11:50 +0000411 if (UC->isConstantUsed())
412 return true;
413 }
414 return false;
415}
416
Rafael Espindola65e49022015-11-17 00:51:23 +0000417bool Constant::needsRelocation() const {
418 if (isa<GlobalValue>(this))
419 return true; // Global reference.
420
Chris Lattner2cb85b42009-10-28 04:12:16 +0000421 if (const BlockAddress *BA = dyn_cast<BlockAddress>(this))
Rafael Espindola65e49022015-11-17 00:51:23 +0000422 return BA->getFunction()->needsRelocation();
423
Chris Lattnera7cfc432010-01-03 18:09:40 +0000424 // While raw uses of blockaddress need to be relocated, differences between
425 // two of them don't when they are for labels in the same function. This is a
426 // common idiom when creating a table for the indirect goto extension, so we
427 // handle it efficiently here.
428 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(this))
429 if (CE->getOpcode() == Instruction::Sub) {
430 ConstantExpr *LHS = dyn_cast<ConstantExpr>(CE->getOperand(0));
431 ConstantExpr *RHS = dyn_cast<ConstantExpr>(CE->getOperand(1));
Rafael Espindola65e49022015-11-17 00:51:23 +0000432 if (LHS && RHS && LHS->getOpcode() == Instruction::PtrToInt &&
Chris Lattnera7cfc432010-01-03 18:09:40 +0000433 RHS->getOpcode() == Instruction::PtrToInt &&
434 isa<BlockAddress>(LHS->getOperand(0)) &&
435 isa<BlockAddress>(RHS->getOperand(0)) &&
436 cast<BlockAddress>(LHS->getOperand(0))->getFunction() ==
Rafael Espindola65e49022015-11-17 00:51:23 +0000437 cast<BlockAddress>(RHS->getOperand(0))->getFunction())
438 return false;
Chris Lattnera7cfc432010-01-03 18:09:40 +0000439 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000440
Rafael Espindola65e49022015-11-17 00:51:23 +0000441 bool Result = false;
Evan Chengf9e003b2007-03-08 00:59:12 +0000442 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Rafael Espindola65e49022015-11-17 00:51:23 +0000443 Result |= cast<Constant>(getOperand(i))->needsRelocation();
Galina Kistanovafc259902012-07-13 01:25:27 +0000444
Chris Lattner4565ef52009-07-22 00:05:44 +0000445 return Result;
Evan Chengf9e003b2007-03-08 00:59:12 +0000446}
447
Chris Lattner84886402011-02-18 04:41:42 +0000448/// removeDeadUsersOfConstant - If the specified constantexpr is dead, remove
449/// it. This involves recursively eliminating any dead users of the
450/// constantexpr.
451static bool removeDeadUsersOfConstant(const Constant *C) {
452 if (isa<GlobalValue>(C)) return false; // Cannot remove this
Galina Kistanovafc259902012-07-13 01:25:27 +0000453
Chris Lattner84886402011-02-18 04:41:42 +0000454 while (!C->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000455 const Constant *User = dyn_cast<Constant>(C->user_back());
Chris Lattner84886402011-02-18 04:41:42 +0000456 if (!User) return false; // Non-constant usage;
457 if (!removeDeadUsersOfConstant(User))
458 return false; // Constant wasn't dead
459 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000460
Chris Lattner84886402011-02-18 04:41:42 +0000461 const_cast<Constant*>(C)->destroyConstant();
462 return true;
463}
464
465
466/// removeDeadConstantUsers - If there are any dead constant users dangling
467/// off of this constant, remove them. This method is useful for clients
468/// that want to check to see if a global is unused, but don't want to deal
469/// with potentially dead constants hanging off of the globals.
470void Constant::removeDeadConstantUsers() const {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000471 Value::const_user_iterator I = user_begin(), E = user_end();
472 Value::const_user_iterator LastNonDeadUser = E;
Chris Lattner84886402011-02-18 04:41:42 +0000473 while (I != E) {
474 const Constant *User = dyn_cast<Constant>(*I);
Craig Topperc6207612014-04-09 06:08:46 +0000475 if (!User) {
Chris Lattner84886402011-02-18 04:41:42 +0000476 LastNonDeadUser = I;
477 ++I;
478 continue;
479 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000480
Chris Lattner84886402011-02-18 04:41:42 +0000481 if (!removeDeadUsersOfConstant(User)) {
482 // If the constant wasn't dead, remember that this was the last live use
483 // and move on to the next constant.
484 LastNonDeadUser = I;
485 ++I;
486 continue;
487 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000488
Chris Lattner84886402011-02-18 04:41:42 +0000489 // If the constant was dead, then the iterator is invalidated.
490 if (LastNonDeadUser == E) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000491 I = user_begin();
Chris Lattner84886402011-02-18 04:41:42 +0000492 if (I == E) break;
493 } else {
494 I = LastNonDeadUser;
495 ++I;
496 }
497 }
498}
499
500
Chris Lattner2105d662008-07-10 00:28:11 +0000501
Chris Lattner2f7c9632001-06-06 20:29:01 +0000502//===----------------------------------------------------------------------===//
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000503// ConstantInt
Chris Lattner2f7c9632001-06-06 20:29:01 +0000504//===----------------------------------------------------------------------===//
505
David Blaikiea379b1812011-12-20 02:50:00 +0000506void ConstantInt::anchor() { }
507
Chris Lattner229907c2011-07-18 04:54:35 +0000508ConstantInt::ConstantInt(IntegerType *Ty, const APInt& V)
Craig Topperc6207612014-04-09 06:08:46 +0000509 : Constant(Ty, ConstantIntVal, nullptr, 0), Val(V) {
Reid Spencerb31bffe2007-02-26 23:54:03 +0000510 assert(V.getBitWidth() == Ty->getBitWidth() && "Invalid constant for type");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000511}
512
Nick Lewycky92db8e82011-03-06 03:36:19 +0000513ConstantInt *ConstantInt::getTrue(LLVMContext &Context) {
Owen Anderson23a204d2009-07-31 17:39:07 +0000514 LLVMContextImpl *pImpl = Context.pImpl;
Benjamin Kramerddd1b7b2010-11-20 18:43:35 +0000515 if (!pImpl->TheTrueVal)
516 pImpl->TheTrueVal = ConstantInt::get(Type::getInt1Ty(Context), 1);
517 return pImpl->TheTrueVal;
Owen Anderson23a204d2009-07-31 17:39:07 +0000518}
519
Nick Lewycky92db8e82011-03-06 03:36:19 +0000520ConstantInt *ConstantInt::getFalse(LLVMContext &Context) {
Owen Anderson23a204d2009-07-31 17:39:07 +0000521 LLVMContextImpl *pImpl = Context.pImpl;
Benjamin Kramerddd1b7b2010-11-20 18:43:35 +0000522 if (!pImpl->TheFalseVal)
523 pImpl->TheFalseVal = ConstantInt::get(Type::getInt1Ty(Context), 0);
524 return pImpl->TheFalseVal;
Owen Anderson23a204d2009-07-31 17:39:07 +0000525}
526
Chris Lattner229907c2011-07-18 04:54:35 +0000527Constant *ConstantInt::getTrue(Type *Ty) {
528 VectorType *VTy = dyn_cast<VectorType>(Ty);
Nick Lewycky92db8e82011-03-06 03:36:19 +0000529 if (!VTy) {
530 assert(Ty->isIntegerTy(1) && "True must be i1 or vector of i1.");
531 return ConstantInt::getTrue(Ty->getContext());
532 }
533 assert(VTy->getElementType()->isIntegerTy(1) &&
534 "True must be vector of i1 or i1.");
Chris Lattnere9eed292012-01-25 05:19:54 +0000535 return ConstantVector::getSplat(VTy->getNumElements(),
536 ConstantInt::getTrue(Ty->getContext()));
Nick Lewycky92db8e82011-03-06 03:36:19 +0000537}
538
Chris Lattner229907c2011-07-18 04:54:35 +0000539Constant *ConstantInt::getFalse(Type *Ty) {
540 VectorType *VTy = dyn_cast<VectorType>(Ty);
Nick Lewycky92db8e82011-03-06 03:36:19 +0000541 if (!VTy) {
542 assert(Ty->isIntegerTy(1) && "False must be i1 or vector of i1.");
543 return ConstantInt::getFalse(Ty->getContext());
544 }
545 assert(VTy->getElementType()->isIntegerTy(1) &&
546 "False must be vector of i1 or i1.");
Chris Lattnere9eed292012-01-25 05:19:54 +0000547 return ConstantVector::getSplat(VTy->getNumElements(),
548 ConstantInt::getFalse(Ty->getContext()));
Nick Lewycky92db8e82011-03-06 03:36:19 +0000549}
550
Benjamin Kramer8e5dc532014-12-06 13:12:56 +0000551// Get a ConstantInt from an APInt.
Nick Lewycky92db8e82011-03-06 03:36:19 +0000552ConstantInt *ConstantInt::get(LLVMContext &Context, const APInt &V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000553 // get an existing value or the insertion position
Benjamin Kramer320682f2013-06-01 17:51:03 +0000554 LLVMContextImpl *pImpl = Context.pImpl;
Benjamin Kramer8e5dc532014-12-06 13:12:56 +0000555 ConstantInt *&Slot = pImpl->IntConstants[V];
556 if (!Slot) {
557 // Get the corresponding integer type for the bit width of the value.
558 IntegerType *ITy = IntegerType::get(Context, V.getBitWidth());
NAKAMURA Takumifc3062f2014-12-06 05:57:06 +0000559 Slot = new ConstantInt(ITy, V);
Benjamin Kramer8e5dc532014-12-06 13:12:56 +0000560 }
561 assert(Slot->getType() == IntegerType::get(Context, V.getBitWidth()));
Owen Anderson5dab84c2009-10-19 20:11:52 +0000562 return Slot;
Owen Andersonedb4a702009-07-24 23:12:02 +0000563}
564
Chris Lattner229907c2011-07-18 04:54:35 +0000565Constant *ConstantInt::get(Type *Ty, uint64_t V, bool isSigned) {
Nick Lewycky92db8e82011-03-06 03:36:19 +0000566 Constant *C = get(cast<IntegerType>(Ty->getScalarType()), V, isSigned);
Owen Andersonedb4a702009-07-24 23:12:02 +0000567
568 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000569 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000570 return ConstantVector::getSplat(VTy->getNumElements(), C);
Owen Andersonedb4a702009-07-24 23:12:02 +0000571
572 return C;
573}
574
Chris Lattner0256be92012-01-27 03:08:05 +0000575ConstantInt *ConstantInt::get(IntegerType *Ty, uint64_t V,
Owen Andersonedb4a702009-07-24 23:12:02 +0000576 bool isSigned) {
577 return get(Ty->getContext(), APInt(Ty->getBitWidth(), V, isSigned));
578}
579
Chris Lattner0256be92012-01-27 03:08:05 +0000580ConstantInt *ConstantInt::getSigned(IntegerType *Ty, int64_t V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000581 return get(Ty, V, true);
582}
583
Chris Lattner229907c2011-07-18 04:54:35 +0000584Constant *ConstantInt::getSigned(Type *Ty, int64_t V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000585 return get(Ty, V, true);
586}
587
Chris Lattner0256be92012-01-27 03:08:05 +0000588Constant *ConstantInt::get(Type *Ty, const APInt& V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000589 ConstantInt *C = get(Ty->getContext(), V);
590 assert(C->getType() == Ty->getScalarType() &&
591 "ConstantInt type doesn't match the type implied by its value!");
592
593 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000594 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000595 return ConstantVector::getSplat(VTy->getNumElements(), C);
Owen Andersonedb4a702009-07-24 23:12:02 +0000596
597 return C;
598}
599
Chris Lattner0256be92012-01-27 03:08:05 +0000600ConstantInt *ConstantInt::get(IntegerType* Ty, StringRef Str,
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000601 uint8_t radix) {
602 return get(Ty->getContext(), APInt(Ty->getBitWidth(), Str, radix));
603}
604
Pete Cooper86dd4cf2015-06-23 21:55:11 +0000605/// Remove the constant from the constant table.
606void ConstantInt::destroyConstantImpl() {
607 llvm_unreachable("You can't ConstantInt->destroyConstantImpl()!");
608}
609
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000610//===----------------------------------------------------------------------===//
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000611// ConstantFP
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000612//===----------------------------------------------------------------------===//
613
Chris Lattner229907c2011-07-18 04:54:35 +0000614static const fltSemantics *TypeToFloatSemantics(Type *Ty) {
Dan Gohman518cda42011-12-17 00:04:22 +0000615 if (Ty->isHalfTy())
616 return &APFloat::IEEEhalf;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000617 if (Ty->isFloatTy())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000618 return &APFloat::IEEEsingle;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000619 if (Ty->isDoubleTy())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000620 return &APFloat::IEEEdouble;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000621 if (Ty->isX86_FP80Ty())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000622 return &APFloat::x87DoubleExtended;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000623 else if (Ty->isFP128Ty())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000624 return &APFloat::IEEEquad;
Galina Kistanovafc259902012-07-13 01:25:27 +0000625
Chris Lattnerfdd87902009-10-05 05:54:46 +0000626 assert(Ty->isPPC_FP128Ty() && "Unknown FP format");
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000627 return &APFloat::PPCDoubleDouble;
628}
629
David Blaikiea379b1812011-12-20 02:50:00 +0000630void ConstantFP::anchor() { }
631
Owen Anderson69c464d2009-07-27 20:59:43 +0000632/// get() - This returns a constant fp for the specified value in the
633/// specified type. This should only be used for simple constant values like
634/// 2.0/1.0 etc, that are known-valid both as double and as the target format.
Chris Lattner0256be92012-01-27 03:08:05 +0000635Constant *ConstantFP::get(Type *Ty, double V) {
Owen Anderson69c464d2009-07-27 20:59:43 +0000636 LLVMContext &Context = Ty->getContext();
Galina Kistanovafc259902012-07-13 01:25:27 +0000637
Owen Anderson69c464d2009-07-27 20:59:43 +0000638 APFloat FV(V);
639 bool ignored;
640 FV.convert(*TypeToFloatSemantics(Ty->getScalarType()),
641 APFloat::rmNearestTiesToEven, &ignored);
642 Constant *C = get(Context, FV);
643
644 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000645 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000646 return ConstantVector::getSplat(VTy->getNumElements(), C);
Owen Anderson69c464d2009-07-27 20:59:43 +0000647
648 return C;
649}
650
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000651
Chris Lattner0256be92012-01-27 03:08:05 +0000652Constant *ConstantFP::get(Type *Ty, StringRef Str) {
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000653 LLVMContext &Context = Ty->getContext();
654
655 APFloat FV(*TypeToFloatSemantics(Ty->getScalarType()), Str);
656 Constant *C = get(Context, FV);
657
658 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000659 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000660 return ConstantVector::getSplat(VTy->getNumElements(), C);
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000661
662 return C;
663}
664
Tom Stellard67246d12015-04-20 19:38:24 +0000665Constant *ConstantFP::getNaN(Type *Ty, bool Negative, unsigned Type) {
666 const fltSemantics &Semantics = *TypeToFloatSemantics(Ty->getScalarType());
667 APFloat NaN = APFloat::getNaN(Semantics, Negative, Type);
668 Constant *C = get(Ty->getContext(), NaN);
669
670 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
671 return ConstantVector::getSplat(VTy->getNumElements(), C);
672
673 return C;
674}
675
Benjamin Kramer5d2ff222014-01-18 16:43:06 +0000676Constant *ConstantFP::getNegativeZero(Type *Ty) {
677 const fltSemantics &Semantics = *TypeToFloatSemantics(Ty->getScalarType());
678 APFloat NegZero = APFloat::getZero(Semantics, /*Negative=*/true);
679 Constant *C = get(Ty->getContext(), NegZero);
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000680
Benjamin Kramer5d2ff222014-01-18 16:43:06 +0000681 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
682 return ConstantVector::getSplat(VTy->getNumElements(), C);
683
684 return C;
Owen Anderson69c464d2009-07-27 20:59:43 +0000685}
686
687
Chris Lattnere9eed292012-01-25 05:19:54 +0000688Constant *ConstantFP::getZeroValueForNegation(Type *Ty) {
Benjamin Kramer5d2ff222014-01-18 16:43:06 +0000689 if (Ty->isFPOrFPVectorTy())
690 return getNegativeZero(Ty);
Owen Anderson69c464d2009-07-27 20:59:43 +0000691
Owen Anderson5a1acd92009-07-31 20:28:14 +0000692 return Constant::getNullValue(Ty);
Owen Anderson69c464d2009-07-27 20:59:43 +0000693}
694
695
696// ConstantFP accessors.
697ConstantFP* ConstantFP::get(LLVMContext &Context, const APFloat& V) {
Owen Anderson69c464d2009-07-27 20:59:43 +0000698 LLVMContextImpl* pImpl = Context.pImpl;
Galina Kistanovafc259902012-07-13 01:25:27 +0000699
Benjamin Kramer8e5dc532014-12-06 13:12:56 +0000700 ConstantFP *&Slot = pImpl->FPConstants[V];
Galina Kistanovafc259902012-07-13 01:25:27 +0000701
Owen Anderson69c464d2009-07-27 20:59:43 +0000702 if (!Slot) {
Chris Lattner229907c2011-07-18 04:54:35 +0000703 Type *Ty;
Dan Gohman518cda42011-12-17 00:04:22 +0000704 if (&V.getSemantics() == &APFloat::IEEEhalf)
705 Ty = Type::getHalfTy(Context);
706 else if (&V.getSemantics() == &APFloat::IEEEsingle)
Owen Anderson5dab84c2009-10-19 20:11:52 +0000707 Ty = Type::getFloatTy(Context);
708 else if (&V.getSemantics() == &APFloat::IEEEdouble)
709 Ty = Type::getDoubleTy(Context);
710 else if (&V.getSemantics() == &APFloat::x87DoubleExtended)
711 Ty = Type::getX86_FP80Ty(Context);
712 else if (&V.getSemantics() == &APFloat::IEEEquad)
713 Ty = Type::getFP128Ty(Context);
714 else {
715 assert(&V.getSemantics() == &APFloat::PPCDoubleDouble &&
716 "Unknown FP format");
717 Ty = Type::getPPC_FP128Ty(Context);
Owen Anderson69c464d2009-07-27 20:59:43 +0000718 }
Owen Anderson5dab84c2009-10-19 20:11:52 +0000719 Slot = new ConstantFP(Ty, V);
Owen Anderson69c464d2009-07-27 20:59:43 +0000720 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000721
Owen Anderson69c464d2009-07-27 20:59:43 +0000722 return Slot;
723}
724
Benjamin Kramer5d2ff222014-01-18 16:43:06 +0000725Constant *ConstantFP::getInfinity(Type *Ty, bool Negative) {
726 const fltSemantics &Semantics = *TypeToFloatSemantics(Ty->getScalarType());
727 Constant *C = get(Ty->getContext(), APFloat::getInf(Semantics, Negative));
728
729 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
730 return ConstantVector::getSplat(VTy->getNumElements(), C);
731
732 return C;
Dan Gohmanfeb50212009-09-25 23:00:48 +0000733}
734
Chris Lattner229907c2011-07-18 04:54:35 +0000735ConstantFP::ConstantFP(Type *Ty, const APFloat& V)
Craig Topperc6207612014-04-09 06:08:46 +0000736 : Constant(Ty, ConstantFPVal, nullptr, 0), Val(V) {
Chris Lattner98bd9392008-04-09 06:38:30 +0000737 assert(&V.getSemantics() == TypeToFloatSemantics(Ty) &&
738 "FP type Mismatch");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000739}
740
Chris Lattnerbe6610c2011-07-15 06:14:08 +0000741bool ConstantFP::isExactlyValue(const APFloat &V) const {
Dale Johannesend246b2c2007-08-30 00:23:21 +0000742 return Val.bitwiseIsEqual(V);
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000743}
744
Pete Cooper86dd4cf2015-06-23 21:55:11 +0000745/// Remove the constant from the constant table.
746void ConstantFP::destroyConstantImpl() {
747 llvm_unreachable("You can't ConstantInt->destroyConstantImpl()!");
748}
749
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000750//===----------------------------------------------------------------------===//
Chris Lattner030af792012-01-24 05:42:11 +0000751// ConstantAggregateZero Implementation
752//===----------------------------------------------------------------------===//
753
754/// getSequentialElement - If this CAZ has array or vector type, return a zero
755/// with the right element type.
Chris Lattner7e683d12012-01-25 06:16:32 +0000756Constant *ConstantAggregateZero::getSequentialElement() const {
Chris Lattner8326bd82012-01-26 00:42:34 +0000757 return Constant::getNullValue(getType()->getSequentialElementType());
Chris Lattner030af792012-01-24 05:42:11 +0000758}
759
760/// getStructElement - If this CAZ has struct type, return a zero with the
761/// right element type for the specified element.
Chris Lattner7e683d12012-01-25 06:16:32 +0000762Constant *ConstantAggregateZero::getStructElement(unsigned Elt) const {
Chris Lattner8326bd82012-01-26 00:42:34 +0000763 return Constant::getNullValue(getType()->getStructElementType(Elt));
Chris Lattner030af792012-01-24 05:42:11 +0000764}
765
766/// getElementValue - Return a zero of the right value for the specified GEP
767/// index if we can, otherwise return null (e.g. if C is a ConstantExpr).
Chris Lattner7e683d12012-01-25 06:16:32 +0000768Constant *ConstantAggregateZero::getElementValue(Constant *C) const {
Chris Lattner030af792012-01-24 05:42:11 +0000769 if (isa<SequentialType>(getType()))
770 return getSequentialElement();
771 return getStructElement(cast<ConstantInt>(C)->getZExtValue());
772}
773
Chris Lattnerf7eb5432012-01-24 07:54:10 +0000774/// getElementValue - Return a zero of the right value for the specified GEP
775/// index.
Chris Lattner7e683d12012-01-25 06:16:32 +0000776Constant *ConstantAggregateZero::getElementValue(unsigned Idx) const {
Chris Lattnerf7eb5432012-01-24 07:54:10 +0000777 if (isa<SequentialType>(getType()))
778 return getSequentialElement();
779 return getStructElement(Idx);
780}
781
David Majnemer9b529a72015-02-16 04:02:09 +0000782unsigned ConstantAggregateZero::getNumElements() const {
Craig Toppere3dcce92015-08-01 22:20:21 +0000783 Type *Ty = getType();
784 if (auto *AT = dyn_cast<ArrayType>(Ty))
David Majnemer9b529a72015-02-16 04:02:09 +0000785 return AT->getNumElements();
Craig Toppere3dcce92015-08-01 22:20:21 +0000786 if (auto *VT = dyn_cast<VectorType>(Ty))
David Majnemer9b529a72015-02-16 04:02:09 +0000787 return VT->getNumElements();
788 return Ty->getStructNumElements();
789}
Chris Lattnerf7eb5432012-01-24 07:54:10 +0000790
Chris Lattner030af792012-01-24 05:42:11 +0000791//===----------------------------------------------------------------------===//
792// UndefValue Implementation
793//===----------------------------------------------------------------------===//
794
795/// getSequentialElement - If this undef has array or vector type, return an
796/// undef with the right element type.
Chris Lattner7e683d12012-01-25 06:16:32 +0000797UndefValue *UndefValue::getSequentialElement() const {
Chris Lattner8326bd82012-01-26 00:42:34 +0000798 return UndefValue::get(getType()->getSequentialElementType());
Chris Lattner030af792012-01-24 05:42:11 +0000799}
800
801/// getStructElement - If this undef has struct type, return a zero with the
802/// right element type for the specified element.
Chris Lattner7e683d12012-01-25 06:16:32 +0000803UndefValue *UndefValue::getStructElement(unsigned Elt) const {
Chris Lattner8326bd82012-01-26 00:42:34 +0000804 return UndefValue::get(getType()->getStructElementType(Elt));
Chris Lattner030af792012-01-24 05:42:11 +0000805}
806
807/// getElementValue - Return an undef of the right value for the specified GEP
808/// index if we can, otherwise return null (e.g. if C is a ConstantExpr).
Chris Lattner7e683d12012-01-25 06:16:32 +0000809UndefValue *UndefValue::getElementValue(Constant *C) const {
Chris Lattner030af792012-01-24 05:42:11 +0000810 if (isa<SequentialType>(getType()))
811 return getSequentialElement();
812 return getStructElement(cast<ConstantInt>(C)->getZExtValue());
813}
814
Chris Lattnerf7eb5432012-01-24 07:54:10 +0000815/// getElementValue - Return an undef of the right value for the specified GEP
816/// index.
Chris Lattner7e683d12012-01-25 06:16:32 +0000817UndefValue *UndefValue::getElementValue(unsigned Idx) const {
Chris Lattnerf7eb5432012-01-24 07:54:10 +0000818 if (isa<SequentialType>(getType()))
819 return getSequentialElement();
820 return getStructElement(Idx);
821}
822
David Majnemer9b529a72015-02-16 04:02:09 +0000823unsigned UndefValue::getNumElements() const {
Craig Toppere3dcce92015-08-01 22:20:21 +0000824 Type *Ty = getType();
825 if (auto *AT = dyn_cast<ArrayType>(Ty))
David Majnemer9b529a72015-02-16 04:02:09 +0000826 return AT->getNumElements();
Craig Toppere3dcce92015-08-01 22:20:21 +0000827 if (auto *VT = dyn_cast<VectorType>(Ty))
David Majnemer9b529a72015-02-16 04:02:09 +0000828 return VT->getNumElements();
829 return Ty->getStructNumElements();
830}
Chris Lattner030af792012-01-24 05:42:11 +0000831
832//===----------------------------------------------------------------------===//
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000833// ConstantXXX Classes
834//===----------------------------------------------------------------------===//
835
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000836template <typename ItTy, typename EltTy>
837static bool rangeOnlyContains(ItTy Start, ItTy End, EltTy Elt) {
838 for (; Start != End; ++Start)
839 if (*Start != Elt)
840 return false;
841 return true;
842}
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000843
Jay Foad89d9b812011-07-25 10:14:44 +0000844ConstantArray::ConstantArray(ArrayType *T, ArrayRef<Constant *> V)
Gabor Greiff6caff662008-05-10 08:32:32 +0000845 : Constant(T, ConstantArrayVal,
846 OperandTraits<ConstantArray>::op_end(this) - V.size(),
847 V.size()) {
Alkis Evlogimenos0507ffe2004-09-15 02:32:15 +0000848 assert(V.size() == T->getNumElements() &&
849 "Invalid initializer vector for constant array");
Jay Foad89d9b812011-07-25 10:14:44 +0000850 for (unsigned i = 0, e = V.size(); i != e; ++i)
851 assert(V[i]->getType() == T->getElementType() &&
Alkis Evlogimenoscb031d92004-09-10 04:16:59 +0000852 "Initializer for array element doesn't match array element type!");
Jay Foad89d9b812011-07-25 10:14:44 +0000853 std::copy(V.begin(), V.end(), op_begin());
Chris Lattner2f7c9632001-06-06 20:29:01 +0000854}
855
Chris Lattner229907c2011-07-18 04:54:35 +0000856Constant *ConstantArray::get(ArrayType *Ty, ArrayRef<Constant*> V) {
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +0000857 if (Constant *C = getImpl(Ty, V))
858 return C;
859 return Ty->getContext().pImpl->ArrayConstants.getOrCreate(Ty, V);
860}
861Constant *ConstantArray::getImpl(ArrayType *Ty, ArrayRef<Constant*> V) {
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000862 // Empty arrays are canonicalized to ConstantAggregateZero.
863 if (V.empty())
864 return ConstantAggregateZero::get(Ty);
865
Jeffrey Yasskin8ce67f82009-09-30 21:08:08 +0000866 for (unsigned i = 0, e = V.size(); i != e; ++i) {
867 assert(V[i]->getType() == Ty->getElementType() &&
868 "Wrong type in array element initializer");
869 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000870
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000871 // If this is an all-zero array, return a ConstantAggregateZero object. If
872 // all undef, return an UndefValue, if "all simple", then return a
873 // ConstantDataArray.
874 Constant *C = V[0];
875 if (isa<UndefValue>(C) && rangeOnlyContains(V.begin(), V.end(), C))
876 return UndefValue::get(Ty);
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000877
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000878 if (C->isNullValue() && rangeOnlyContains(V.begin(), V.end(), C))
879 return ConstantAggregateZero::get(Ty);
880
881 // Check to see if all of the elements are ConstantFP or ConstantInt and if
882 // the element type is compatible with ConstantDataVector. If so, use it.
883 if (ConstantDataSequential::isElementTypeCompatible(C->getType())) {
884 // We speculatively build the elements here even if it turns out that there
885 // is a constantexpr or something else weird in the array, since it is so
886 // uncommon for that to happen.
887 if (ConstantInt *CI = dyn_cast<ConstantInt>(C)) {
888 if (CI->getType()->isIntegerTy(8)) {
889 SmallVector<uint8_t, 16> Elts;
890 for (unsigned i = 0, e = V.size(); i != e; ++i)
891 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
892 Elts.push_back(CI->getZExtValue());
893 else
894 break;
895 if (Elts.size() == V.size())
896 return ConstantDataArray::get(C->getContext(), Elts);
897 } else if (CI->getType()->isIntegerTy(16)) {
898 SmallVector<uint16_t, 16> Elts;
899 for (unsigned i = 0, e = V.size(); i != e; ++i)
900 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
901 Elts.push_back(CI->getZExtValue());
902 else
903 break;
904 if (Elts.size() == V.size())
905 return ConstantDataArray::get(C->getContext(), Elts);
906 } else if (CI->getType()->isIntegerTy(32)) {
907 SmallVector<uint32_t, 16> Elts;
908 for (unsigned i = 0, e = V.size(); i != e; ++i)
909 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
910 Elts.push_back(CI->getZExtValue());
911 else
912 break;
913 if (Elts.size() == V.size())
914 return ConstantDataArray::get(C->getContext(), Elts);
915 } else if (CI->getType()->isIntegerTy(64)) {
916 SmallVector<uint64_t, 16> Elts;
917 for (unsigned i = 0, e = V.size(); i != e; ++i)
918 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
919 Elts.push_back(CI->getZExtValue());
920 else
921 break;
922 if (Elts.size() == V.size())
923 return ConstantDataArray::get(C->getContext(), Elts);
924 }
925 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000926
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000927 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
928 if (CFP->getType()->isFloatTy()) {
Rafael Espindola8c97e192015-02-19 16:08:20 +0000929 SmallVector<uint32_t, 16> Elts;
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000930 for (unsigned i = 0, e = V.size(); i != e; ++i)
931 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V[i]))
Rafael Espindola8c97e192015-02-19 16:08:20 +0000932 Elts.push_back(
933 CFP->getValueAPF().bitcastToAPInt().getLimitedValue());
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000934 else
935 break;
936 if (Elts.size() == V.size())
Rafael Espindola8c97e192015-02-19 16:08:20 +0000937 return ConstantDataArray::getFP(C->getContext(), Elts);
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000938 } else if (CFP->getType()->isDoubleTy()) {
Rafael Espindola8c97e192015-02-19 16:08:20 +0000939 SmallVector<uint64_t, 16> Elts;
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000940 for (unsigned i = 0, e = V.size(); i != e; ++i)
941 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V[i]))
Rafael Espindola8c97e192015-02-19 16:08:20 +0000942 Elts.push_back(
943 CFP->getValueAPF().bitcastToAPInt().getLimitedValue());
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000944 else
945 break;
946 if (Elts.size() == V.size())
Rafael Espindola8c97e192015-02-19 16:08:20 +0000947 return ConstantDataArray::getFP(C->getContext(), Elts);
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000948 }
949 }
Owen Andersonc2c79322009-07-28 18:32:17 +0000950 }
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000951
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000952 // Otherwise, we really do want to create a ConstantArray.
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +0000953 return nullptr;
Owen Andersonc2c79322009-07-28 18:32:17 +0000954}
955
Chris Lattnercc19efa2011-06-20 04:01:31 +0000956/// getTypeForElements - Return an anonymous struct type to use for a constant
957/// with the specified set of elements. The list must not be empty.
958StructType *ConstantStruct::getTypeForElements(LLVMContext &Context,
959 ArrayRef<Constant*> V,
960 bool Packed) {
Bill Wendling3ae7dd32012-02-07 01:27:51 +0000961 unsigned VecSize = V.size();
962 SmallVector<Type*, 16> EltTypes(VecSize);
963 for (unsigned i = 0; i != VecSize; ++i)
964 EltTypes[i] = V[i]->getType();
Galina Kistanovafc259902012-07-13 01:25:27 +0000965
Chris Lattnercc19efa2011-06-20 04:01:31 +0000966 return StructType::get(Context, EltTypes, Packed);
967}
968
969
970StructType *ConstantStruct::getTypeForElements(ArrayRef<Constant*> V,
971 bool Packed) {
972 assert(!V.empty() &&
973 "ConstantStruct::getTypeForElements cannot be called on empty list");
974 return getTypeForElements(V[0]->getContext(), V, Packed);
975}
976
977
Jay Foad89d9b812011-07-25 10:14:44 +0000978ConstantStruct::ConstantStruct(StructType *T, ArrayRef<Constant *> V)
Gabor Greiff6caff662008-05-10 08:32:32 +0000979 : Constant(T, ConstantStructVal,
980 OperandTraits<ConstantStruct>::op_end(this) - V.size(),
981 V.size()) {
Chris Lattnerc3e74cd2011-08-07 04:18:48 +0000982 assert(V.size() == T->getNumElements() &&
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000983 "Invalid initializer vector for constant structure");
Jay Foad89d9b812011-07-25 10:14:44 +0000984 for (unsigned i = 0, e = V.size(); i != e; ++i)
985 assert((T->isOpaque() || V[i]->getType() == T->getElementType(i)) &&
Chris Lattner93c8f142003-06-02 17:42:47 +0000986 "Initializer for struct element doesn't match struct element type!");
Jay Foad89d9b812011-07-25 10:14:44 +0000987 std::copy(V.begin(), V.end(), op_begin());
Chris Lattner2f7c9632001-06-06 20:29:01 +0000988}
989
Owen Anderson45308b52009-07-27 22:29:26 +0000990// ConstantStruct accessors.
Chris Lattner229907c2011-07-18 04:54:35 +0000991Constant *ConstantStruct::get(StructType *ST, ArrayRef<Constant*> V) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000992 assert((ST->isOpaque() || ST->getNumElements() == V.size()) &&
993 "Incorrect # elements specified to ConstantStruct::get");
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000994
995 // Create a ConstantAggregateZero value if all elements are zeros.
996 bool isZero = true;
997 bool isUndef = false;
998
999 if (!V.empty()) {
1000 isUndef = isa<UndefValue>(V[0]);
1001 isZero = V[0]->isNullValue();
1002 if (isUndef || isZero) {
1003 for (unsigned i = 0, e = V.size(); i != e; ++i) {
1004 if (!V[i]->isNullValue())
1005 isZero = false;
1006 if (!isa<UndefValue>(V[i]))
1007 isUndef = false;
1008 }
1009 }
Galina Kistanovafc259902012-07-13 01:25:27 +00001010 }
Chris Lattnerf14a67f2012-01-26 02:31:22 +00001011 if (isZero)
1012 return ConstantAggregateZero::get(ST);
1013 if (isUndef)
1014 return UndefValue::get(ST);
Galina Kistanovafc259902012-07-13 01:25:27 +00001015
Chris Lattnerf14a67f2012-01-26 02:31:22 +00001016 return ST->getContext().pImpl->StructConstants.getOrCreate(ST, V);
Owen Anderson45308b52009-07-27 22:29:26 +00001017}
1018
Chris Lattnerc3e74cd2011-08-07 04:18:48 +00001019Constant *ConstantStruct::get(StructType *T, ...) {
Talin3a0a30d2011-02-28 23:53:27 +00001020 va_list ap;
Chris Lattnercc19efa2011-06-20 04:01:31 +00001021 SmallVector<Constant*, 8> Values;
1022 va_start(ap, T);
1023 while (Constant *Val = va_arg(ap, llvm::Constant*))
Talin3a0a30d2011-02-28 23:53:27 +00001024 Values.push_back(Val);
Talinde422be2011-03-01 18:00:49 +00001025 va_end(ap);
Chris Lattnercc19efa2011-06-20 04:01:31 +00001026 return get(T, Values);
Talin3a0a30d2011-02-28 23:53:27 +00001027}
1028
Jay Foad89d9b812011-07-25 10:14:44 +00001029ConstantVector::ConstantVector(VectorType *T, ArrayRef<Constant *> V)
Gabor Greiff6caff662008-05-10 08:32:32 +00001030 : Constant(T, ConstantVectorVal,
1031 OperandTraits<ConstantVector>::op_end(this) - V.size(),
1032 V.size()) {
Jay Foad89d9b812011-07-25 10:14:44 +00001033 for (size_t i = 0, e = V.size(); i != e; i++)
1034 assert(V[i]->getType() == T->getElementType() &&
Dan Gohman30978072007-05-24 14:36:04 +00001035 "Initializer for vector element doesn't match vector element type!");
Jay Foad89d9b812011-07-25 10:14:44 +00001036 std::copy(V.begin(), V.end(), op_begin());
Brian Gaeke02209042004-08-20 06:00:58 +00001037}
1038
Owen Anderson4aa32952009-07-28 21:19:26 +00001039// ConstantVector accessors.
Jay Foadb8a8bed32011-06-22 09:10:19 +00001040Constant *ConstantVector::get(ArrayRef<Constant*> V) {
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00001041 if (Constant *C = getImpl(V))
1042 return C;
1043 VectorType *Ty = VectorType::get(V.front()->getType(), V.size());
1044 return Ty->getContext().pImpl->VectorConstants.getOrCreate(Ty, V);
1045}
1046Constant *ConstantVector::getImpl(ArrayRef<Constant*> V) {
Jay Foad9f32cfd2011-01-27 14:44:55 +00001047 assert(!V.empty() && "Vectors can't be empty");
Chris Lattner229907c2011-07-18 04:54:35 +00001048 VectorType *T = VectorType::get(V.front()->getType(), V.size());
Jay Foad9f32cfd2011-01-27 14:44:55 +00001049
Chris Lattner69229312011-02-15 00:14:00 +00001050 // If this is an all-undef or all-zero vector, return a
Owen Anderson4aa32952009-07-28 21:19:26 +00001051 // ConstantAggregateZero or UndefValue.
1052 Constant *C = V[0];
1053 bool isZero = C->isNullValue();
1054 bool isUndef = isa<UndefValue>(C);
1055
1056 if (isZero || isUndef) {
1057 for (unsigned i = 1, e = V.size(); i != e; ++i)
1058 if (V[i] != C) {
1059 isZero = isUndef = false;
1060 break;
1061 }
1062 }
Galina Kistanovafc259902012-07-13 01:25:27 +00001063
Owen Anderson4aa32952009-07-28 21:19:26 +00001064 if (isZero)
Owen Andersonb292b8c2009-07-30 23:03:37 +00001065 return ConstantAggregateZero::get(T);
Owen Anderson4aa32952009-07-28 21:19:26 +00001066 if (isUndef)
Owen Andersonb292b8c2009-07-30 23:03:37 +00001067 return UndefValue::get(T);
Galina Kistanovafc259902012-07-13 01:25:27 +00001068
Chris Lattner978fe0c2012-01-30 06:21:21 +00001069 // Check to see if all of the elements are ConstantFP or ConstantInt and if
1070 // the element type is compatible with ConstantDataVector. If so, use it.
Chris Lattnercf9e8f62012-02-05 02:29:43 +00001071 if (ConstantDataSequential::isElementTypeCompatible(C->getType())) {
Chris Lattner978fe0c2012-01-30 06:21:21 +00001072 // We speculatively build the elements here even if it turns out that there
1073 // is a constantexpr or something else weird in the array, since it is so
1074 // uncommon for that to happen.
1075 if (ConstantInt *CI = dyn_cast<ConstantInt>(C)) {
1076 if (CI->getType()->isIntegerTy(8)) {
1077 SmallVector<uint8_t, 16> Elts;
1078 for (unsigned i = 0, e = V.size(); i != e; ++i)
1079 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
1080 Elts.push_back(CI->getZExtValue());
1081 else
1082 break;
1083 if (Elts.size() == V.size())
1084 return ConstantDataVector::get(C->getContext(), Elts);
1085 } else if (CI->getType()->isIntegerTy(16)) {
1086 SmallVector<uint16_t, 16> Elts;
1087 for (unsigned i = 0, e = V.size(); i != e; ++i)
1088 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
1089 Elts.push_back(CI->getZExtValue());
1090 else
1091 break;
1092 if (Elts.size() == V.size())
1093 return ConstantDataVector::get(C->getContext(), Elts);
1094 } else if (CI->getType()->isIntegerTy(32)) {
1095 SmallVector<uint32_t, 16> Elts;
1096 for (unsigned i = 0, e = V.size(); i != e; ++i)
1097 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
1098 Elts.push_back(CI->getZExtValue());
1099 else
1100 break;
1101 if (Elts.size() == V.size())
1102 return ConstantDataVector::get(C->getContext(), Elts);
1103 } else if (CI->getType()->isIntegerTy(64)) {
1104 SmallVector<uint64_t, 16> Elts;
1105 for (unsigned i = 0, e = V.size(); i != e; ++i)
1106 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
1107 Elts.push_back(CI->getZExtValue());
1108 else
1109 break;
1110 if (Elts.size() == V.size())
1111 return ConstantDataVector::get(C->getContext(), Elts);
1112 }
1113 }
Galina Kistanovafc259902012-07-13 01:25:27 +00001114
Chris Lattner978fe0c2012-01-30 06:21:21 +00001115 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
1116 if (CFP->getType()->isFloatTy()) {
Rafael Espindola8c97e192015-02-19 16:08:20 +00001117 SmallVector<uint32_t, 16> Elts;
Chris Lattner978fe0c2012-01-30 06:21:21 +00001118 for (unsigned i = 0, e = V.size(); i != e; ++i)
1119 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V[i]))
Rafael Espindola8c97e192015-02-19 16:08:20 +00001120 Elts.push_back(
1121 CFP->getValueAPF().bitcastToAPInt().getLimitedValue());
Chris Lattner978fe0c2012-01-30 06:21:21 +00001122 else
1123 break;
1124 if (Elts.size() == V.size())
Rafael Espindola8c97e192015-02-19 16:08:20 +00001125 return ConstantDataVector::getFP(C->getContext(), Elts);
Chris Lattner978fe0c2012-01-30 06:21:21 +00001126 } else if (CFP->getType()->isDoubleTy()) {
Rafael Espindola8c97e192015-02-19 16:08:20 +00001127 SmallVector<uint64_t, 16> Elts;
Chris Lattner978fe0c2012-01-30 06:21:21 +00001128 for (unsigned i = 0, e = V.size(); i != e; ++i)
1129 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V[i]))
Rafael Espindola8c97e192015-02-19 16:08:20 +00001130 Elts.push_back(
1131 CFP->getValueAPF().bitcastToAPInt().getLimitedValue());
Chris Lattner978fe0c2012-01-30 06:21:21 +00001132 else
1133 break;
1134 if (Elts.size() == V.size())
Rafael Espindola8c97e192015-02-19 16:08:20 +00001135 return ConstantDataVector::getFP(C->getContext(), Elts);
Chris Lattner978fe0c2012-01-30 06:21:21 +00001136 }
1137 }
1138 }
Galina Kistanovafc259902012-07-13 01:25:27 +00001139
Chris Lattner978fe0c2012-01-30 06:21:21 +00001140 // Otherwise, the element type isn't compatible with ConstantDataVector, or
1141 // the operand list constants a ConstantExpr or something else strange.
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00001142 return nullptr;
Owen Anderson4aa32952009-07-28 21:19:26 +00001143}
1144
Chris Lattnere9eed292012-01-25 05:19:54 +00001145Constant *ConstantVector::getSplat(unsigned NumElts, Constant *V) {
Chris Lattner978fe0c2012-01-30 06:21:21 +00001146 // If this splat is compatible with ConstantDataVector, use it instead of
1147 // ConstantVector.
1148 if ((isa<ConstantFP>(V) || isa<ConstantInt>(V)) &&
1149 ConstantDataSequential::isElementTypeCompatible(V->getType()))
1150 return ConstantDataVector::getSplat(NumElts, V);
Galina Kistanovafc259902012-07-13 01:25:27 +00001151
Chris Lattnere9eed292012-01-25 05:19:54 +00001152 SmallVector<Constant*, 32> Elts(NumElts, V);
1153 return get(Elts);
1154}
1155
David Majnemerf0f224d2015-11-11 21:57:16 +00001156ConstantTokenNone *ConstantTokenNone::get(LLVMContext &Context) {
1157 LLVMContextImpl *pImpl = Context.pImpl;
1158 if (!pImpl->TheNoneToken)
David Majnemer2dd41c52015-11-16 20:55:57 +00001159 pImpl->TheNoneToken.reset(new ConstantTokenNone(Context));
1160 return pImpl->TheNoneToken.get();
David Majnemerf0f224d2015-11-11 21:57:16 +00001161}
1162
1163/// Remove the constant from the constant table.
1164void ConstantTokenNone::destroyConstantImpl() {
1165 llvm_unreachable("You can't ConstantTokenNone->destroyConstantImpl()!");
1166}
Chris Lattnere9eed292012-01-25 05:19:54 +00001167
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001168// Utility function for determining if a ConstantExpr is a CastOp or not. This
1169// can't be inline because we don't want to #include Instruction.h into
1170// Constant.h
1171bool ConstantExpr::isCast() const {
1172 return Instruction::isCast(getOpcode());
1173}
1174
Reid Spenceree3c9912006-12-04 05:19:50 +00001175bool ConstantExpr::isCompare() const {
Nick Lewyckya21d3da2009-07-08 03:04:38 +00001176 return getOpcode() == Instruction::ICmp || getOpcode() == Instruction::FCmp;
Reid Spenceree3c9912006-12-04 05:19:50 +00001177}
1178
Dan Gohman7190d482009-09-10 23:37:55 +00001179bool ConstantExpr::isGEPWithNoNotionalOverIndexing() const {
1180 if (getOpcode() != Instruction::GetElementPtr) return false;
1181
1182 gep_type_iterator GEPI = gep_type_begin(this), E = gep_type_end(this);
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001183 User::const_op_iterator OI = std::next(this->op_begin());
Dan Gohman7190d482009-09-10 23:37:55 +00001184
1185 // Skip the first index, as it has no static limit.
1186 ++GEPI;
1187 ++OI;
1188
1189 // The remaining indices must be compile-time known integers within the
1190 // bounds of the corresponding notional static array types.
1191 for (; GEPI != E; ++GEPI, ++OI) {
1192 ConstantInt *CI = dyn_cast<ConstantInt>(*OI);
1193 if (!CI) return false;
Chris Lattner229907c2011-07-18 04:54:35 +00001194 if (ArrayType *ATy = dyn_cast<ArrayType>(*GEPI))
Dan Gohman7190d482009-09-10 23:37:55 +00001195 if (CI->getValue().getActiveBits() > 64 ||
1196 CI->getZExtValue() >= ATy->getNumElements())
1197 return false;
1198 }
1199
1200 // All the indices checked out.
1201 return true;
1202}
1203
Dan Gohman1ecaf452008-05-31 00:58:22 +00001204bool ConstantExpr::hasIndices() const {
1205 return getOpcode() == Instruction::ExtractValue ||
1206 getOpcode() == Instruction::InsertValue;
1207}
1208
Jay Foad0091fe82011-04-13 15:22:40 +00001209ArrayRef<unsigned> ConstantExpr::getIndices() const {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001210 if (const ExtractValueConstantExpr *EVCE =
1211 dyn_cast<ExtractValueConstantExpr>(this))
1212 return EVCE->Indices;
Dan Gohmana469bdb2008-06-23 16:39:44 +00001213
1214 return cast<InsertValueConstantExpr>(this)->Indices;
Dan Gohman1ecaf452008-05-31 00:58:22 +00001215}
1216
Reid Spencer10fbf0e2006-12-03 05:48:19 +00001217unsigned ConstantExpr::getPredicate() const {
Chris Lattnerd04e32d2011-07-17 06:01:30 +00001218 assert(isCompare());
Chris Lattneref650092007-10-18 16:26:24 +00001219 return ((const CompareConstantExpr*)this)->predicate;
Reid Spencer10fbf0e2006-12-03 05:48:19 +00001220}
Chris Lattner60e0dd72001-10-03 06:12:09 +00001221
Chris Lattner7c1018a2006-07-14 19:37:40 +00001222/// getWithOperandReplaced - Return a constant expression identical to this
1223/// one, but with the specified operand set to the specified value.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001224Constant *
1225ConstantExpr::getWithOperandReplaced(unsigned OpNo, Constant *Op) const {
Chris Lattner7c1018a2006-07-14 19:37:40 +00001226 assert(Op->getType() == getOperand(OpNo)->getType() &&
1227 "Replacing operand with value of different type!");
Chris Lattner227816342006-07-14 22:20:01 +00001228 if (getOperand(OpNo) == Op)
1229 return const_cast<ConstantExpr*>(this);
Chris Lattner37e38352012-01-26 20:37:11 +00001230
1231 SmallVector<Constant*, 8> NewOps;
1232 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
1233 NewOps.push_back(i == OpNo ? Op : getOperand(i));
Galina Kistanovafc259902012-07-13 01:25:27 +00001234
Chris Lattner37e38352012-01-26 20:37:11 +00001235 return getWithOperands(NewOps);
Chris Lattner227816342006-07-14 22:20:01 +00001236}
1237
1238/// getWithOperands - This returns the current constant expression with the
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001239/// operands replaced with the specified values. The specified array must
1240/// have the same number of operands as our current one.
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001241Constant *ConstantExpr::getWithOperands(ArrayRef<Constant *> Ops, Type *Ty,
David Blaikie88208842015-08-21 20:16:51 +00001242 bool OnlyIfReduced, Type *SrcTy) const {
Jay Foad5c984e562011-04-13 13:46:01 +00001243 assert(Ops.size() == getNumOperands() && "Operand count mismatch!");
Galina Kistanovafc259902012-07-13 01:25:27 +00001244
Benjamin Kramer8008e9f2015-03-02 11:57:04 +00001245 // If no operands changed return self.
1246 if (Ty == getType() && std::equal(Ops.begin(), Ops.end(), op_begin()))
Chris Lattner227816342006-07-14 22:20:01 +00001247 return const_cast<ConstantExpr*>(this);
1248
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001249 Type *OnlyIfReducedTy = OnlyIfReduced ? Ty : nullptr;
Chris Lattner227816342006-07-14 22:20:01 +00001250 switch (getOpcode()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001251 case Instruction::Trunc:
1252 case Instruction::ZExt:
1253 case Instruction::SExt:
1254 case Instruction::FPTrunc:
1255 case Instruction::FPExt:
1256 case Instruction::UIToFP:
1257 case Instruction::SIToFP:
1258 case Instruction::FPToUI:
1259 case Instruction::FPToSI:
1260 case Instruction::PtrToInt:
1261 case Instruction::IntToPtr:
1262 case Instruction::BitCast:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001263 case Instruction::AddrSpaceCast:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001264 return ConstantExpr::getCast(getOpcode(), Ops[0], Ty, OnlyIfReduced);
Chris Lattner227816342006-07-14 22:20:01 +00001265 case Instruction::Select:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001266 return ConstantExpr::getSelect(Ops[0], Ops[1], Ops[2], OnlyIfReducedTy);
Chris Lattner227816342006-07-14 22:20:01 +00001267 case Instruction::InsertElement:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001268 return ConstantExpr::getInsertElement(Ops[0], Ops[1], Ops[2],
1269 OnlyIfReducedTy);
Chris Lattner227816342006-07-14 22:20:01 +00001270 case Instruction::ExtractElement:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001271 return ConstantExpr::getExtractElement(Ops[0], Ops[1], OnlyIfReducedTy);
Chris Lattner37e38352012-01-26 20:37:11 +00001272 case Instruction::InsertValue:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001273 return ConstantExpr::getInsertValue(Ops[0], Ops[1], getIndices(),
1274 OnlyIfReducedTy);
Chris Lattner37e38352012-01-26 20:37:11 +00001275 case Instruction::ExtractValue:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001276 return ConstantExpr::getExtractValue(Ops[0], getIndices(), OnlyIfReducedTy);
Chris Lattner227816342006-07-14 22:20:01 +00001277 case Instruction::ShuffleVector:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001278 return ConstantExpr::getShuffleVector(Ops[0], Ops[1], Ops[2],
1279 OnlyIfReducedTy);
David Blaikie88208842015-08-21 20:16:51 +00001280 case Instruction::GetElementPtr: {
1281 auto *GEPO = cast<GEPOperator>(this);
1282 assert(SrcTy || (Ops[0]->getType() == getOperand(0)->getType()));
1283 return ConstantExpr::getGetElementPtr(
1284 SrcTy ? SrcTy : GEPO->getSourceElementType(), Ops[0], Ops.slice(1),
1285 GEPO->isInBounds(), OnlyIfReducedTy);
1286 }
Reid Spencer266e42b2006-12-23 06:05:41 +00001287 case Instruction::ICmp:
1288 case Instruction::FCmp:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001289 return ConstantExpr::getCompare(getPredicate(), Ops[0], Ops[1],
1290 OnlyIfReducedTy);
Chris Lattner227816342006-07-14 22:20:01 +00001291 default:
1292 assert(getNumOperands() == 2 && "Must be binary operator?");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001293 return ConstantExpr::get(getOpcode(), Ops[0], Ops[1], SubclassOptionalData,
1294 OnlyIfReducedTy);
Chris Lattner7c1018a2006-07-14 19:37:40 +00001295 }
1296}
1297
Chris Lattner2f7c9632001-06-06 20:29:01 +00001298
1299//===----------------------------------------------------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +00001300// isValueValidForType implementations
1301
Chris Lattner229907c2011-07-18 04:54:35 +00001302bool ConstantInt::isValueValidForType(Type *Ty, uint64_t Val) {
Chris Lattner8326bd82012-01-26 00:42:34 +00001303 unsigned NumBits = Ty->getIntegerBitWidth(); // assert okay
1304 if (Ty->isIntegerTy(1))
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001305 return Val == 0 || Val == 1;
Reid Spencerd7a00d72007-02-05 23:47:56 +00001306 if (NumBits >= 64)
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001307 return true; // always true, has to fit in largest type
1308 uint64_t Max = (1ll << NumBits) - 1;
1309 return Val <= Max;
Reid Spencere7334722006-12-19 01:28:19 +00001310}
1311
Chris Lattner229907c2011-07-18 04:54:35 +00001312bool ConstantInt::isValueValidForType(Type *Ty, int64_t Val) {
Chris Lattner8326bd82012-01-26 00:42:34 +00001313 unsigned NumBits = Ty->getIntegerBitWidth();
1314 if (Ty->isIntegerTy(1))
Reid Spencera94d3942007-01-19 21:13:56 +00001315 return Val == 0 || Val == 1 || Val == -1;
Reid Spencerd7a00d72007-02-05 23:47:56 +00001316 if (NumBits >= 64)
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001317 return true; // always true, has to fit in largest type
1318 int64_t Min = -(1ll << (NumBits-1));
1319 int64_t Max = (1ll << (NumBits-1)) - 1;
1320 return (Val >= Min && Val <= Max);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001321}
1322
Chris Lattner229907c2011-07-18 04:54:35 +00001323bool ConstantFP::isValueValidForType(Type *Ty, const APFloat& Val) {
Dale Johannesend246b2c2007-08-30 00:23:21 +00001324 // convert modifies in place, so make a copy.
1325 APFloat Val2 = APFloat(Val);
Dale Johannesen4f0bd682008-10-09 23:00:39 +00001326 bool losesInfo;
Chris Lattner6b727592004-06-17 18:19:28 +00001327 switch (Ty->getTypeID()) {
Chris Lattner2f7c9632001-06-06 20:29:01 +00001328 default:
1329 return false; // These can't be represented as floating point!
1330
Dale Johannesend246b2c2007-08-30 00:23:21 +00001331 // FIXME rounding mode needs to be more flexible
Dan Gohman518cda42011-12-17 00:04:22 +00001332 case Type::HalfTyID: {
1333 if (&Val2.getSemantics() == &APFloat::IEEEhalf)
1334 return true;
1335 Val2.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven, &losesInfo);
1336 return !losesInfo;
1337 }
Dale Johannesen4f0bd682008-10-09 23:00:39 +00001338 case Type::FloatTyID: {
1339 if (&Val2.getSemantics() == &APFloat::IEEEsingle)
1340 return true;
1341 Val2.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven, &losesInfo);
1342 return !losesInfo;
1343 }
1344 case Type::DoubleTyID: {
Dan Gohman518cda42011-12-17 00:04:22 +00001345 if (&Val2.getSemantics() == &APFloat::IEEEhalf ||
1346 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen4f0bd682008-10-09 23:00:39 +00001347 &Val2.getSemantics() == &APFloat::IEEEdouble)
1348 return true;
1349 Val2.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, &losesInfo);
1350 return !losesInfo;
1351 }
Dale Johannesenbdad8092007-08-09 22:51:36 +00001352 case Type::X86_FP80TyID:
Dan Gohman518cda42011-12-17 00:04:22 +00001353 return &Val2.getSemantics() == &APFloat::IEEEhalf ||
1354 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen028084e2007-09-12 03:30:33 +00001355 &Val2.getSemantics() == &APFloat::IEEEdouble ||
1356 &Val2.getSemantics() == &APFloat::x87DoubleExtended;
Dale Johannesenbdad8092007-08-09 22:51:36 +00001357 case Type::FP128TyID:
Dan Gohman518cda42011-12-17 00:04:22 +00001358 return &Val2.getSemantics() == &APFloat::IEEEhalf ||
1359 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen028084e2007-09-12 03:30:33 +00001360 &Val2.getSemantics() == &APFloat::IEEEdouble ||
1361 &Val2.getSemantics() == &APFloat::IEEEquad;
Dale Johannesen007aa372007-10-11 18:07:22 +00001362 case Type::PPC_FP128TyID:
Dan Gohman518cda42011-12-17 00:04:22 +00001363 return &Val2.getSemantics() == &APFloat::IEEEhalf ||
1364 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen007aa372007-10-11 18:07:22 +00001365 &Val2.getSemantics() == &APFloat::IEEEdouble ||
1366 &Val2.getSemantics() == &APFloat::PPCDoubleDouble;
Chris Lattner2f7c9632001-06-06 20:29:01 +00001367 }
Chris Lattneraa2372562006-05-24 17:04:05 +00001368}
Chris Lattner9655e542001-07-20 19:16:02 +00001369
Chris Lattner030af792012-01-24 05:42:11 +00001370
Chris Lattner49d855c2001-09-07 16:46:31 +00001371//===----------------------------------------------------------------------===//
Chris Lattner49d855c2001-09-07 16:46:31 +00001372// Factory Function Implementation
1373
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001374ConstantAggregateZero *ConstantAggregateZero::get(Type *Ty) {
Chris Lattner13ee7952010-08-28 04:09:24 +00001375 assert((Ty->isStructTy() || Ty->isArrayTy() || Ty->isVectorTy()) &&
Owen Andersonb292b8c2009-07-30 23:03:37 +00001376 "Cannot create an aggregate zero of non-aggregate type!");
David Blaikiecb2818f2014-11-25 02:26:22 +00001377
1378 ConstantAggregateZero *&Entry = Ty->getContext().pImpl->CAZConstants[Ty];
David Blaikie899b85a2014-11-25 02:13:54 +00001379 if (!Entry)
David Blaikiecb2818f2014-11-25 02:26:22 +00001380 Entry = new ConstantAggregateZero(Ty);
David Blaikie899b85a2014-11-25 02:13:54 +00001381
David Blaikiecb2818f2014-11-25 02:26:22 +00001382 return Entry;
Owen Andersonb292b8c2009-07-30 23:03:37 +00001383}
1384
Chris Lattner030af792012-01-24 05:42:11 +00001385/// destroyConstant - Remove the constant from the constant table.
Dan Gohman92b551b2009-03-03 02:55:14 +00001386///
Pete Cooper86dd4cf2015-06-23 21:55:11 +00001387void ConstantAggregateZero::destroyConstantImpl() {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001388 getContext().pImpl->CAZConstants.erase(getType());
Chris Lattner9fba3da2004-02-15 05:53:04 +00001389}
1390
Dan Gohman92b551b2009-03-03 02:55:14 +00001391/// destroyConstant - Remove the constant from the constant table...
1392///
Pete Cooper86dd4cf2015-06-23 21:55:11 +00001393void ConstantArray::destroyConstantImpl() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001394 getType()->getContext().pImpl->ArrayConstants.remove(this);
Chris Lattner98fa07b2003-05-23 20:03:32 +00001395}
1396
Chris Lattner81fabb02002-08-26 17:53:56 +00001397
Chris Lattner3462ae32001-12-03 22:26:30 +00001398//---- ConstantStruct::get() implementation...
Chris Lattner49d855c2001-09-07 16:46:31 +00001399//
Chris Lattnerb50d1352003-10-05 00:17:43 +00001400
Chris Lattnerd7a73302001-10-13 06:57:33 +00001401// destroyConstant - Remove the constant from the constant table...
Chris Lattner883ad0b2001-10-03 15:39:36 +00001402//
Pete Cooper86dd4cf2015-06-23 21:55:11 +00001403void ConstantStruct::destroyConstantImpl() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001404 getType()->getContext().pImpl->StructConstants.remove(this);
Chris Lattnerd7a73302001-10-13 06:57:33 +00001405}
Chris Lattner883ad0b2001-10-03 15:39:36 +00001406
Brian Gaeke02209042004-08-20 06:00:58 +00001407// destroyConstant - Remove the constant from the constant table...
1408//
Pete Cooper86dd4cf2015-06-23 21:55:11 +00001409void ConstantVector::destroyConstantImpl() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001410 getType()->getContext().pImpl->VectorConstants.remove(this);
Brian Gaeke02209042004-08-20 06:00:58 +00001411}
1412
Duncan Sandse6beec62012-11-13 12:59:33 +00001413/// getSplatValue - If this is a splat vector constant, meaning that all of
1414/// the elements have the same value, return that value. Otherwise return 0.
1415Constant *Constant::getSplatValue() const {
1416 assert(this->getType()->isVectorTy() && "Only valid for vectors!");
1417 if (isa<ConstantAggregateZero>(this))
1418 return getNullValue(this->getType()->getVectorElementType());
1419 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this))
1420 return CV->getSplatValue();
1421 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
1422 return CV->getSplatValue();
Craig Topperc6207612014-04-09 06:08:46 +00001423 return nullptr;
Duncan Sandse6beec62012-11-13 12:59:33 +00001424}
1425
Dan Gohman07159202007-10-17 17:51:30 +00001426/// getSplatValue - If this is a splat constant, where all of the
1427/// elements have the same value, return that value. Otherwise return null.
Duncan Sandscf0ff032011-02-01 08:39:12 +00001428Constant *ConstantVector::getSplatValue() const {
Dan Gohman07159202007-10-17 17:51:30 +00001429 // Check out first element.
1430 Constant *Elt = getOperand(0);
1431 // Then make sure all remaining elements point to the same value.
1432 for (unsigned I = 1, E = getNumOperands(); I < E; ++I)
Chris Lattnerd04e32d2011-07-17 06:01:30 +00001433 if (getOperand(I) != Elt)
Craig Topperc6207612014-04-09 06:08:46 +00001434 return nullptr;
Dan Gohman07159202007-10-17 17:51:30 +00001435 return Elt;
1436}
1437
Duncan Sandse6beec62012-11-13 12:59:33 +00001438/// If C is a constant integer then return its value, otherwise C must be a
1439/// vector of constant integers, all equal, and the common value is returned.
1440const APInt &Constant::getUniqueInteger() const {
1441 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
1442 return CI->getValue();
1443 assert(this->getSplatValue() && "Doesn't contain a unique integer!");
1444 const Constant *C = this->getAggregateElement(0U);
1445 assert(C && isa<ConstantInt>(C) && "Not a vector of numbers!");
1446 return cast<ConstantInt>(C)->getValue();
1447}
1448
Chris Lattner31b132c2009-10-28 00:01:44 +00001449//---- ConstantPointerNull::get() implementation.
Chris Lattnerd7a73302001-10-13 06:57:33 +00001450//
Chris Lattner98fa07b2003-05-23 20:03:32 +00001451
Chris Lattner229907c2011-07-18 04:54:35 +00001452ConstantPointerNull *ConstantPointerNull::get(PointerType *Ty) {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001453 ConstantPointerNull *&Entry = Ty->getContext().pImpl->CPNConstants[Ty];
Craig Topperc6207612014-04-09 06:08:46 +00001454 if (!Entry)
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001455 Entry = new ConstantPointerNull(Ty);
Galina Kistanovafc259902012-07-13 01:25:27 +00001456
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001457 return Entry;
Chris Lattner883ad0b2001-10-03 15:39:36 +00001458}
1459
Chris Lattner0c6e0b92002-08-18 00:40:04 +00001460// destroyConstant - Remove the constant from the constant table...
1461//
Pete Cooper86dd4cf2015-06-23 21:55:11 +00001462void ConstantPointerNull::destroyConstantImpl() {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001463 getContext().pImpl->CPNConstants.erase(getType());
Chris Lattner0c6e0b92002-08-18 00:40:04 +00001464}
1465
1466
Chris Lattner31b132c2009-10-28 00:01:44 +00001467//---- UndefValue::get() implementation.
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001468//
1469
Chris Lattner229907c2011-07-18 04:54:35 +00001470UndefValue *UndefValue::get(Type *Ty) {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001471 UndefValue *&Entry = Ty->getContext().pImpl->UVConstants[Ty];
Craig Topperc6207612014-04-09 06:08:46 +00001472 if (!Entry)
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001473 Entry = new UndefValue(Ty);
Galina Kistanovafc259902012-07-13 01:25:27 +00001474
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001475 return Entry;
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001476}
1477
1478// destroyConstant - Remove the constant from the constant table.
1479//
Pete Cooper86dd4cf2015-06-23 21:55:11 +00001480void UndefValue::destroyConstantImpl() {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001481 // Free the constant and any dangling references to it.
1482 getContext().pImpl->UVConstants.erase(getType());
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001483}
1484
Chris Lattner31b132c2009-10-28 00:01:44 +00001485//---- BlockAddress::get() implementation.
1486//
1487
1488BlockAddress *BlockAddress::get(BasicBlock *BB) {
Craig Topper2617dcc2014-04-15 06:32:26 +00001489 assert(BB->getParent() && "Block must have a parent");
Chris Lattner31b132c2009-10-28 00:01:44 +00001490 return get(BB->getParent(), BB);
1491}
1492
1493BlockAddress *BlockAddress::get(Function *F, BasicBlock *BB) {
1494 BlockAddress *&BA =
1495 F->getContext().pImpl->BlockAddresses[std::make_pair(F, BB)];
Craig Topperc6207612014-04-09 06:08:46 +00001496 if (!BA)
Chris Lattner31b132c2009-10-28 00:01:44 +00001497 BA = new BlockAddress(F, BB);
Galina Kistanovafc259902012-07-13 01:25:27 +00001498
Chris Lattner31b132c2009-10-28 00:01:44 +00001499 assert(BA->getFunction() == F && "Basic block moved between functions");
1500 return BA;
1501}
1502
1503BlockAddress::BlockAddress(Function *F, BasicBlock *BB)
1504: Constant(Type::getInt8PtrTy(F->getContext()), Value::BlockAddressVal,
1505 &Op<0>(), 2) {
Chris Lattnerc559a9f2009-11-01 03:03:03 +00001506 setOperand(0, F);
1507 setOperand(1, BB);
Chris Lattneraa99c942009-11-01 01:27:45 +00001508 BB->AdjustBlockAddressRefCount(1);
Chris Lattner31b132c2009-10-28 00:01:44 +00001509}
1510
Chandler Carruth6a936922014-01-19 02:13:50 +00001511BlockAddress *BlockAddress::lookup(const BasicBlock *BB) {
1512 if (!BB->hasAddressTaken())
Craig Topperc6207612014-04-09 06:08:46 +00001513 return nullptr;
Chandler Carruth6a936922014-01-19 02:13:50 +00001514
1515 const Function *F = BB->getParent();
Craig Topper2617dcc2014-04-15 06:32:26 +00001516 assert(F && "Block must have a parent");
Chandler Carruth6a936922014-01-19 02:13:50 +00001517 BlockAddress *BA =
1518 F->getContext().pImpl->BlockAddresses.lookup(std::make_pair(F, BB));
1519 assert(BA && "Refcount and block address map disagree!");
1520 return BA;
1521}
Chris Lattner31b132c2009-10-28 00:01:44 +00001522
1523// destroyConstant - Remove the constant from the constant table.
1524//
Pete Cooper86dd4cf2015-06-23 21:55:11 +00001525void BlockAddress::destroyConstantImpl() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001526 getFunction()->getType()->getContext().pImpl
Chris Lattner31b132c2009-10-28 00:01:44 +00001527 ->BlockAddresses.erase(std::make_pair(getFunction(), getBasicBlock()));
Chris Lattneraa99c942009-11-01 01:27:45 +00001528 getBasicBlock()->AdjustBlockAddressRefCount(-1);
Chris Lattner31b132c2009-10-28 00:01:44 +00001529}
1530
Pete Cooper5815b1f2015-06-24 18:55:24 +00001531Value *BlockAddress::handleOperandChangeImpl(Value *From, Value *To, Use *U) {
Chris Lattner31b132c2009-10-28 00:01:44 +00001532 // This could be replacing either the Basic Block or the Function. In either
1533 // case, we have to remove the map entry.
1534 Function *NewF = getFunction();
1535 BasicBlock *NewBB = getBasicBlock();
Galina Kistanovafc259902012-07-13 01:25:27 +00001536
Chris Lattner31b132c2009-10-28 00:01:44 +00001537 if (U == &Op<0>())
Derek Schuffec9dc012013-06-13 19:51:17 +00001538 NewF = cast<Function>(To->stripPointerCasts());
Chris Lattner31b132c2009-10-28 00:01:44 +00001539 else
1540 NewBB = cast<BasicBlock>(To);
Galina Kistanovafc259902012-07-13 01:25:27 +00001541
Chris Lattner31b132c2009-10-28 00:01:44 +00001542 // See if the 'new' entry already exists, if not, just update this in place
1543 // and return early.
1544 BlockAddress *&NewBA =
1545 getContext().pImpl->BlockAddresses[std::make_pair(NewF, NewBB)];
Pete Cooper5815b1f2015-06-24 18:55:24 +00001546 if (NewBA)
1547 return NewBA;
Chris Lattner31b132c2009-10-28 00:01:44 +00001548
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00001549 getBasicBlock()->AdjustBlockAddressRefCount(-1);
Galina Kistanovafc259902012-07-13 01:25:27 +00001550
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00001551 // Remove the old entry, this can't cause the map to rehash (just a
1552 // tombstone will get added).
1553 getContext().pImpl->BlockAddresses.erase(std::make_pair(getFunction(),
1554 getBasicBlock()));
1555 NewBA = this;
1556 setOperand(0, NewF);
1557 setOperand(1, NewBB);
1558 getBasicBlock()->AdjustBlockAddressRefCount(1);
Pete Cooper5815b1f2015-06-24 18:55:24 +00001559
1560 // If we just want to keep the existing value, then return null.
1561 // Callers know that this means we shouldn't delete this value.
1562 return nullptr;
Chris Lattner31b132c2009-10-28 00:01:44 +00001563}
1564
1565//---- ConstantExpr::get() implementations.
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001566//
Reid Spencer8d9336d2006-12-31 05:26:44 +00001567
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001568/// This is a utility function to handle folding of casts and lookup of the
Duncan Sands7d6c8ae2008-03-30 19:38:55 +00001569/// cast in the ExprConstants map. It is used by the various get* methods below.
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001570static Constant *getFoldedCast(Instruction::CastOps opc, Constant *C, Type *Ty,
1571 bool OnlyIfReduced = false) {
Chris Lattner815ae2b2003-10-07 22:19:19 +00001572 assert(Ty->isFirstClassType() && "Cannot cast to an aggregate type!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001573 // Fold a few common cases
Chris Lattnerf5edeeb2010-02-01 20:48:08 +00001574 if (Constant *FC = ConstantFoldCastInstruction(opc, C, Ty))
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001575 return FC;
Chris Lattneracdbe712003-04-17 19:24:48 +00001576
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001577 if (OnlyIfReduced)
1578 return nullptr;
1579
Owen Anderson1584a292009-08-04 20:25:11 +00001580 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
1581
Nadav Rotem88330432013-03-07 01:30:40 +00001582 // Look up the constant in the table first to ensure uniqueness.
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00001583 ConstantExprKeyType Key(opc, C);
Galina Kistanovafc259902012-07-13 01:25:27 +00001584
Owen Anderson1584a292009-08-04 20:25:11 +00001585 return pImpl->ExprConstants.getOrCreate(Ty, Key);
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001586}
Galina Kistanovafc259902012-07-13 01:25:27 +00001587
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001588Constant *ConstantExpr::getCast(unsigned oc, Constant *C, Type *Ty,
1589 bool OnlyIfReduced) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001590 Instruction::CastOps opc = Instruction::CastOps(oc);
1591 assert(Instruction::isCast(opc) && "opcode out of range");
1592 assert(C && Ty && "Null arguments to getCast");
Chris Lattner37bc78a2010-01-26 21:51:43 +00001593 assert(CastInst::castIsValid(opc, C, Ty) && "Invalid constantexpr cast!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001594
1595 switch (opc) {
Chris Lattner37bc78a2010-01-26 21:51:43 +00001596 default:
1597 llvm_unreachable("Invalid cast opcode");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001598 case Instruction::Trunc:
1599 return getTrunc(C, Ty, OnlyIfReduced);
1600 case Instruction::ZExt:
1601 return getZExt(C, Ty, OnlyIfReduced);
1602 case Instruction::SExt:
1603 return getSExt(C, Ty, OnlyIfReduced);
1604 case Instruction::FPTrunc:
1605 return getFPTrunc(C, Ty, OnlyIfReduced);
1606 case Instruction::FPExt:
1607 return getFPExtend(C, Ty, OnlyIfReduced);
1608 case Instruction::UIToFP:
1609 return getUIToFP(C, Ty, OnlyIfReduced);
1610 case Instruction::SIToFP:
1611 return getSIToFP(C, Ty, OnlyIfReduced);
1612 case Instruction::FPToUI:
1613 return getFPToUI(C, Ty, OnlyIfReduced);
1614 case Instruction::FPToSI:
1615 return getFPToSI(C, Ty, OnlyIfReduced);
1616 case Instruction::PtrToInt:
1617 return getPtrToInt(C, Ty, OnlyIfReduced);
1618 case Instruction::IntToPtr:
1619 return getIntToPtr(C, Ty, OnlyIfReduced);
1620 case Instruction::BitCast:
1621 return getBitCast(C, Ty, OnlyIfReduced);
1622 case Instruction::AddrSpaceCast:
1623 return getAddrSpaceCast(C, Ty, OnlyIfReduced);
Chris Lattner1ece6f82005-01-01 15:59:57 +00001624 }
Galina Kistanovafc259902012-07-13 01:25:27 +00001625}
Reid Spencerf37dc652006-12-05 19:14:13 +00001626
Chris Lattner229907c2011-07-18 04:54:35 +00001627Constant *ConstantExpr::getZExtOrBitCast(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001628 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001629 return getBitCast(C, Ty);
1630 return getZExt(C, Ty);
Reid Spencer5c140882006-12-04 20:17:56 +00001631}
1632
Chris Lattner229907c2011-07-18 04:54:35 +00001633Constant *ConstantExpr::getSExtOrBitCast(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 getSExt(C, Ty);
Reid Spencer5c140882006-12-04 20:17:56 +00001637}
1638
Chris Lattner229907c2011-07-18 04:54:35 +00001639Constant *ConstantExpr::getTruncOrBitCast(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 getTrunc(C, Ty);
Reid Spencer5c140882006-12-04 20:17:56 +00001643}
1644
Chris Lattner229907c2011-07-18 04:54:35 +00001645Constant *ConstantExpr::getPointerCast(Constant *S, Type *Ty) {
Evgeniy Stepanov23382642013-01-16 14:41:46 +00001646 assert(S->getType()->isPtrOrPtrVectorTy() && "Invalid cast");
1647 assert((Ty->isIntOrIntVectorTy() || Ty->isPtrOrPtrVectorTy()) &&
1648 "Invalid cast");
Reid Spencerbc245a02006-12-05 03:25:26 +00001649
Evgeniy Stepanov23382642013-01-16 14:41:46 +00001650 if (Ty->isIntOrIntVectorTy())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001651 return getPtrToInt(S, Ty);
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001652
1653 unsigned SrcAS = S->getType()->getPointerAddressSpace();
1654 if (Ty->isPtrOrPtrVectorTy() && SrcAS != Ty->getPointerAddressSpace())
1655 return getAddrSpaceCast(S, Ty);
1656
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001657 return getBitCast(S, Ty);
Reid Spencerbc245a02006-12-05 03:25:26 +00001658}
1659
Matt Arsenault21f38f42013-12-07 02:58:41 +00001660Constant *ConstantExpr::getPointerBitCastOrAddrSpaceCast(Constant *S,
1661 Type *Ty) {
1662 assert(S->getType()->isPtrOrPtrVectorTy() && "Invalid cast");
1663 assert(Ty->isPtrOrPtrVectorTy() && "Invalid cast");
1664
1665 if (S->getType()->getPointerAddressSpace() != Ty->getPointerAddressSpace())
1666 return getAddrSpaceCast(S, Ty);
1667
1668 return getBitCast(S, Ty);
1669}
1670
1671Constant *ConstantExpr::getIntegerCast(Constant *C, Type *Ty,
Reid Spencer56521c42006-12-12 00:51:07 +00001672 bool isSigned) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001673 assert(C->getType()->isIntOrIntVectorTy() &&
1674 Ty->isIntOrIntVectorTy() && "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001675 unsigned SrcBits = C->getType()->getScalarSizeInBits();
1676 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer56521c42006-12-12 00:51:07 +00001677 Instruction::CastOps opcode =
1678 (SrcBits == DstBits ? Instruction::BitCast :
1679 (SrcBits > DstBits ? Instruction::Trunc :
1680 (isSigned ? Instruction::SExt : Instruction::ZExt)));
1681 return getCast(opcode, C, Ty);
1682}
1683
Chris Lattner229907c2011-07-18 04:54:35 +00001684Constant *ConstantExpr::getFPCast(Constant *C, Type *Ty) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001685 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer56521c42006-12-12 00:51:07 +00001686 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001687 unsigned SrcBits = C->getType()->getScalarSizeInBits();
1688 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencerca104e82006-12-12 05:38:50 +00001689 if (SrcBits == DstBits)
1690 return C; // Avoid a useless cast
Reid Spencer56521c42006-12-12 00:51:07 +00001691 Instruction::CastOps opcode =
Jay Foad9f32cfd2011-01-27 14:44:55 +00001692 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt);
Reid Spencer56521c42006-12-12 00:51:07 +00001693 return getCast(opcode, C, Ty);
1694}
1695
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001696Constant *ConstantExpr::getTrunc(Constant *C, Type *Ty, bool OnlyIfReduced) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001697#ifndef NDEBUG
1698 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1699 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1700#endif
1701 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001702 assert(C->getType()->isIntOrIntVectorTy() && "Trunc operand must be integer");
1703 assert(Ty->isIntOrIntVectorTy() && "Trunc produces only integral");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001704 assert(C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001705 "SrcTy must be larger than DestTy for Trunc!");
1706
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001707 return getFoldedCast(Instruction::Trunc, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001708}
1709
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001710Constant *ConstantExpr::getSExt(Constant *C, Type *Ty, bool OnlyIfReduced) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001711#ifndef NDEBUG
1712 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1713 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1714#endif
1715 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001716 assert(C->getType()->isIntOrIntVectorTy() && "SExt operand must be integral");
1717 assert(Ty->isIntOrIntVectorTy() && "SExt produces only integer");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001718 assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001719 "SrcTy must be smaller than DestTy for SExt!");
1720
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001721 return getFoldedCast(Instruction::SExt, C, Ty, OnlyIfReduced);
Chris Lattnerdd284742004-04-04 23:20:30 +00001722}
1723
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001724Constant *ConstantExpr::getZExt(Constant *C, Type *Ty, bool OnlyIfReduced) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001725#ifndef NDEBUG
1726 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1727 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1728#endif
1729 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001730 assert(C->getType()->isIntOrIntVectorTy() && "ZEXt operand must be integral");
1731 assert(Ty->isIntOrIntVectorTy() && "ZExt produces only integer");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001732 assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001733 "SrcTy must be smaller than DestTy for ZExt!");
1734
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001735 return getFoldedCast(Instruction::ZExt, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001736}
1737
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001738Constant *ConstantExpr::getFPTrunc(Constant *C, Type *Ty, bool OnlyIfReduced) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001739#ifndef NDEBUG
1740 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1741 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1742#endif
1743 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001744 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001745 C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001746 "This is an illegal floating point truncation!");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001747 return getFoldedCast(Instruction::FPTrunc, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001748}
1749
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001750Constant *ConstantExpr::getFPExtend(Constant *C, Type *Ty, bool OnlyIfReduced) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001751#ifndef NDEBUG
1752 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1753 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1754#endif
1755 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001756 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001757 C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001758 "This is an illegal floating point extension!");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001759 return getFoldedCast(Instruction::FPExt, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001760}
1761
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001762Constant *ConstantExpr::getUIToFP(Constant *C, Type *Ty, bool OnlyIfReduced) {
Devang Pateld26344d2008-11-03 23:20:04 +00001763#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001764 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1765 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001766#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001767 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001768 assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00001769 "This is an illegal uint to floating point cast!");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001770 return getFoldedCast(Instruction::UIToFP, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001771}
1772
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001773Constant *ConstantExpr::getSIToFP(Constant *C, Type *Ty, bool OnlyIfReduced) {
Devang Pateld26344d2008-11-03 23:20:04 +00001774#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001775 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1776 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001777#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001778 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001779 assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001780 "This is an illegal sint to floating point cast!");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001781 return getFoldedCast(Instruction::SIToFP, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001782}
1783
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001784Constant *ConstantExpr::getFPToUI(Constant *C, Type *Ty, bool OnlyIfReduced) {
Devang Pateld26344d2008-11-03 23:20:04 +00001785#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001786 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1787 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001788#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001789 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001790 assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00001791 "This is an illegal floating point to uint cast!");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001792 return getFoldedCast(Instruction::FPToUI, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001793}
1794
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001795Constant *ConstantExpr::getFPToSI(Constant *C, Type *Ty, bool OnlyIfReduced) {
Devang Pateld26344d2008-11-03 23:20:04 +00001796#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001797 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1798 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001799#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001800 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001801 assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00001802 "This is an illegal floating point to sint cast!");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001803 return getFoldedCast(Instruction::FPToSI, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001804}
1805
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001806Constant *ConstantExpr::getPtrToInt(Constant *C, Type *DstTy,
1807 bool OnlyIfReduced) {
Nadav Rotem3924cb02011-12-05 06:29:09 +00001808 assert(C->getType()->getScalarType()->isPointerTy() &&
1809 "PtrToInt source must be pointer or pointer vector");
1810 assert(DstTy->getScalarType()->isIntegerTy() &&
1811 "PtrToInt destination must be integer or integer vector");
Chris Lattner8a3df542012-01-25 01:32:59 +00001812 assert(isa<VectorType>(C->getType()) == isa<VectorType>(DstTy));
Nick Lewyckyff509622012-01-25 03:20:12 +00001813 if (isa<VectorType>(C->getType()))
Chris Lattner8326bd82012-01-26 00:42:34 +00001814 assert(C->getType()->getVectorNumElements()==DstTy->getVectorNumElements()&&
Chris Lattner8a3df542012-01-25 01:32:59 +00001815 "Invalid cast between a different number of vector elements");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001816 return getFoldedCast(Instruction::PtrToInt, C, DstTy, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001817}
1818
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001819Constant *ConstantExpr::getIntToPtr(Constant *C, Type *DstTy,
1820 bool OnlyIfReduced) {
Nadav Rotem3924cb02011-12-05 06:29:09 +00001821 assert(C->getType()->getScalarType()->isIntegerTy() &&
1822 "IntToPtr source must be integer or integer vector");
1823 assert(DstTy->getScalarType()->isPointerTy() &&
1824 "IntToPtr destination must be a pointer or pointer vector");
Chris Lattner8a3df542012-01-25 01:32:59 +00001825 assert(isa<VectorType>(C->getType()) == isa<VectorType>(DstTy));
Nick Lewyckyff509622012-01-25 03:20:12 +00001826 if (isa<VectorType>(C->getType()))
Chris Lattner8326bd82012-01-26 00:42:34 +00001827 assert(C->getType()->getVectorNumElements()==DstTy->getVectorNumElements()&&
Chris Lattner8a3df542012-01-25 01:32:59 +00001828 "Invalid cast between a different number of vector elements");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001829 return getFoldedCast(Instruction::IntToPtr, C, DstTy, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001830}
1831
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001832Constant *ConstantExpr::getBitCast(Constant *C, Type *DstTy,
1833 bool OnlyIfReduced) {
Chris Lattner37bc78a2010-01-26 21:51:43 +00001834 assert(CastInst::castIsValid(Instruction::BitCast, C, DstTy) &&
1835 "Invalid constantexpr bitcast!");
Galina Kistanovafc259902012-07-13 01:25:27 +00001836
Chris Lattnercbeda872009-03-21 06:55:54 +00001837 // It is common to ask for a bitcast of a value to its own type, handle this
1838 // speedily.
1839 if (C->getType() == DstTy) return C;
Galina Kistanovafc259902012-07-13 01:25:27 +00001840
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001841 return getFoldedCast(Instruction::BitCast, C, DstTy, OnlyIfReduced);
Chris Lattnerdd284742004-04-04 23:20:30 +00001842}
1843
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001844Constant *ConstantExpr::getAddrSpaceCast(Constant *C, Type *DstTy,
1845 bool OnlyIfReduced) {
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001846 assert(CastInst::castIsValid(Instruction::AddrSpaceCast, C, DstTy) &&
1847 "Invalid constantexpr addrspacecast!");
1848
Jingyue Wubaabe502014-06-15 21:40:57 +00001849 // Canonicalize addrspacecasts between different pointer types by first
1850 // bitcasting the pointer type and then converting the address space.
1851 PointerType *SrcScalarTy = cast<PointerType>(C->getType()->getScalarType());
1852 PointerType *DstScalarTy = cast<PointerType>(DstTy->getScalarType());
1853 Type *DstElemTy = DstScalarTy->getElementType();
1854 if (SrcScalarTy->getElementType() != DstElemTy) {
1855 Type *MidTy = PointerType::get(DstElemTy, SrcScalarTy->getAddressSpace());
1856 if (VectorType *VT = dyn_cast<VectorType>(DstTy)) {
1857 // Handle vectors of pointers.
1858 MidTy = VectorType::get(MidTy, VT->getNumElements());
1859 }
1860 C = getBitCast(C, MidTy);
1861 }
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001862 return getFoldedCast(Instruction::AddrSpaceCast, C, DstTy, OnlyIfReduced);
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001863}
1864
Chris Lattner887ecac2011-07-09 18:23:52 +00001865Constant *ConstantExpr::get(unsigned Opcode, Constant *C1, Constant *C2,
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001866 unsigned Flags, Type *OnlyIfReducedTy) {
Chris Lattner887ecac2011-07-09 18:23:52 +00001867 // Check the operands for consistency first.
Reid Spencer7eb55b32006-11-02 01:53:59 +00001868 assert(Opcode >= Instruction::BinaryOpsBegin &&
1869 Opcode < Instruction::BinaryOpsEnd &&
Chris Lattner38a9bcd2003-05-21 17:49:25 +00001870 "Invalid opcode in binary constant expression");
1871 assert(C1->getType() == C2->getType() &&
1872 "Operand types in binary constant expression should match");
Galina Kistanovafc259902012-07-13 01:25:27 +00001873
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001874#ifndef NDEBUG
1875 switch (Opcode) {
Dan Gohmana5b96452009-06-04 22:49:04 +00001876 case Instruction::Add:
Reid Spencer7eb55b32006-11-02 01:53:59 +00001877 case Instruction::Sub:
Dan Gohmana5b96452009-06-04 22:49:04 +00001878 case Instruction::Mul:
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001879 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001880 assert(C1->getType()->isIntOrIntVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001881 "Tried to create an integer operation on a non-integer type!");
1882 break;
1883 case Instruction::FAdd:
1884 case Instruction::FSub:
1885 case Instruction::FMul:
1886 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001887 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001888 "Tried to create a floating-point operation on a "
1889 "non-floating-point type!");
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001890 break;
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001891 case Instruction::UDiv:
1892 case Instruction::SDiv:
1893 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001894 assert(C1->getType()->isIntOrIntVectorTy() &&
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001895 "Tried to create an arithmetic operation on a non-arithmetic type!");
1896 break;
1897 case Instruction::FDiv:
1898 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001899 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001900 "Tried to create an arithmetic operation on a non-arithmetic type!");
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001901 break;
Reid Spencer7eb55b32006-11-02 01:53:59 +00001902 case Instruction::URem:
1903 case Instruction::SRem:
1904 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001905 assert(C1->getType()->isIntOrIntVectorTy() &&
Reid Spencer7eb55b32006-11-02 01:53:59 +00001906 "Tried to create an arithmetic operation on a non-arithmetic type!");
1907 break;
1908 case Instruction::FRem:
1909 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001910 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001911 "Tried to create an arithmetic operation on a non-arithmetic type!");
Reid Spencer7eb55b32006-11-02 01:53:59 +00001912 break;
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001913 case Instruction::And:
1914 case Instruction::Or:
1915 case Instruction::Xor:
1916 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001917 assert(C1->getType()->isIntOrIntVectorTy() &&
Misha Brukman3852f652005-01-27 06:46:38 +00001918 "Tried to create a logical operation on a non-integral type!");
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001919 break;
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001920 case Instruction::Shl:
Reid Spencerfdff9382006-11-08 06:47:33 +00001921 case Instruction::LShr:
1922 case Instruction::AShr:
Reid Spencer2341c222007-02-02 02:16:23 +00001923 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001924 assert(C1->getType()->isIntOrIntVectorTy() &&
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001925 "Tried to create a shift operation on a non-integer type!");
1926 break;
1927 default:
1928 break;
1929 }
1930#endif
1931
Chris Lattner887ecac2011-07-09 18:23:52 +00001932 if (Constant *FC = ConstantFoldBinaryInstruction(Opcode, C1, C2))
1933 return FC; // Fold a few common cases.
Galina Kistanovafc259902012-07-13 01:25:27 +00001934
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001935 if (OnlyIfReducedTy == C1->getType())
1936 return nullptr;
1937
Benjamin Kramer324322b2013-03-07 20:53:34 +00001938 Constant *ArgVec[] = { C1, C2 };
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00001939 ConstantExprKeyType Key(Opcode, ArgVec, 0, Flags);
Galina Kistanovafc259902012-07-13 01:25:27 +00001940
Chris Lattner887ecac2011-07-09 18:23:52 +00001941 LLVMContextImpl *pImpl = C1->getContext().pImpl;
1942 return pImpl->ExprConstants.getOrCreate(C1->getType(), Key);
Reid Spencera009d0d2006-12-04 21:35:24 +00001943}
1944
Chris Lattner229907c2011-07-18 04:54:35 +00001945Constant *ConstantExpr::getSizeOf(Type* Ty) {
Owen Anderson487375e2009-07-29 18:55:55 +00001946 // sizeof is implemented as: (i64) gep (Ty*)null, 1
1947 // Note that a non-inbounds gep is used, as null isn't within any object.
Owen Anderson55f1c092009-08-13 21:58:54 +00001948 Constant *GEPIdx = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
Owen Anderson487375e2009-07-29 18:55:55 +00001949 Constant *GEP = getGetElementPtr(
David Blaikie4a2e73b2015-04-02 18:55:32 +00001950 Ty, Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx);
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001951 return getPtrToInt(GEP,
1952 Type::getInt64Ty(Ty->getContext()));
Owen Anderson487375e2009-07-29 18:55:55 +00001953}
1954
Chris Lattner229907c2011-07-18 04:54:35 +00001955Constant *ConstantExpr::getAlignOf(Type* Ty) {
Dan Gohmancf913832010-01-28 02:15:55 +00001956 // alignof is implemented as: (i64) gep ({i1,Ty}*)null, 0, 1
Dan Gohman50c09d02009-08-11 17:57:01 +00001957 // Note that a non-inbounds gep is used, as null isn't within any object.
Chris Lattner229907c2011-07-18 04:54:35 +00001958 Type *AligningTy =
Reid Kleckner971c3ea2014-11-13 22:55:19 +00001959 StructType::get(Type::getInt1Ty(Ty->getContext()), Ty, nullptr);
Matt Arsenaultbe558882014-04-23 20:58:57 +00001960 Constant *NullPtr = Constant::getNullValue(AligningTy->getPointerTo(0));
Dan Gohmana9be7392010-01-28 02:43:22 +00001961 Constant *Zero = ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0);
Owen Anderson55f1c092009-08-13 21:58:54 +00001962 Constant *One = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
Owen Anderson487375e2009-07-29 18:55:55 +00001963 Constant *Indices[2] = { Zero, One };
David Blaikie4a2e73b2015-04-02 18:55:32 +00001964 Constant *GEP = getGetElementPtr(AligningTy, NullPtr, Indices);
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001965 return getPtrToInt(GEP,
1966 Type::getInt64Ty(Ty->getContext()));
Owen Anderson487375e2009-07-29 18:55:55 +00001967}
1968
Chris Lattner229907c2011-07-18 04:54:35 +00001969Constant *ConstantExpr::getOffsetOf(StructType* STy, unsigned FieldNo) {
Dan Gohmanede94e62010-02-01 16:37:38 +00001970 return getOffsetOf(STy, ConstantInt::get(Type::getInt32Ty(STy->getContext()),
1971 FieldNo));
1972}
1973
Chris Lattner229907c2011-07-18 04:54:35 +00001974Constant *ConstantExpr::getOffsetOf(Type* Ty, Constant *FieldNo) {
Dan Gohmanff3af7252009-08-16 21:26:11 +00001975 // offsetof is implemented as: (i64) gep (Ty*)null, 0, FieldNo
1976 // Note that a non-inbounds gep is used, as null isn't within any object.
1977 Constant *GEPIdx[] = {
Dan Gohmanede94e62010-02-01 16:37:38 +00001978 ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0),
1979 FieldNo
Dan Gohmanff3af7252009-08-16 21:26:11 +00001980 };
1981 Constant *GEP = getGetElementPtr(
David Blaikie4a2e73b2015-04-02 18:55:32 +00001982 Ty, Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx);
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001983 return getPtrToInt(GEP,
1984 Type::getInt64Ty(Ty->getContext()));
Dan Gohmanff3af7252009-08-16 21:26:11 +00001985}
Owen Anderson487375e2009-07-29 18:55:55 +00001986
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001987Constant *ConstantExpr::getCompare(unsigned short Predicate, Constant *C1,
1988 Constant *C2, bool OnlyIfReduced) {
Reid Spencera009d0d2006-12-04 21:35:24 +00001989 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Galina Kistanovafc259902012-07-13 01:25:27 +00001990
Chris Lattner887ecac2011-07-09 18:23:52 +00001991 switch (Predicate) {
1992 default: llvm_unreachable("Invalid CmpInst predicate");
1993 case CmpInst::FCMP_FALSE: case CmpInst::FCMP_OEQ: case CmpInst::FCMP_OGT:
1994 case CmpInst::FCMP_OGE: case CmpInst::FCMP_OLT: case CmpInst::FCMP_OLE:
1995 case CmpInst::FCMP_ONE: case CmpInst::FCMP_ORD: case CmpInst::FCMP_UNO:
1996 case CmpInst::FCMP_UEQ: case CmpInst::FCMP_UGT: case CmpInst::FCMP_UGE:
1997 case CmpInst::FCMP_ULT: case CmpInst::FCMP_ULE: case CmpInst::FCMP_UNE:
1998 case CmpInst::FCMP_TRUE:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001999 return getFCmp(Predicate, C1, C2, OnlyIfReduced);
Galina Kistanovafc259902012-07-13 01:25:27 +00002000
Chris Lattner887ecac2011-07-09 18:23:52 +00002001 case CmpInst::ICMP_EQ: case CmpInst::ICMP_NE: case CmpInst::ICMP_UGT:
2002 case CmpInst::ICMP_UGE: case CmpInst::ICMP_ULT: case CmpInst::ICMP_ULE:
2003 case CmpInst::ICMP_SGT: case CmpInst::ICMP_SGE: case CmpInst::ICMP_SLT:
2004 case CmpInst::ICMP_SLE:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002005 return getICmp(Predicate, C1, C2, OnlyIfReduced);
Chris Lattner887ecac2011-07-09 18:23:52 +00002006 }
Chris Lattner29ca2c62004-08-04 18:50:09 +00002007}
2008
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002009Constant *ConstantExpr::getSelect(Constant *C, Constant *V1, Constant *V2,
2010 Type *OnlyIfReducedTy) {
Chris Lattner41632132008-12-29 00:16:12 +00002011 assert(!SelectInst::areInvalidOperands(C, V1, V2)&&"Invalid select operands");
Chris Lattner6e415c02004-03-12 05:54:04 +00002012
Chris Lattner887ecac2011-07-09 18:23:52 +00002013 if (Constant *SC = ConstantFoldSelectInstruction(C, V1, V2))
2014 return SC; // Fold common cases
Chris Lattner6e415c02004-03-12 05:54:04 +00002015
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002016 if (OnlyIfReducedTy == V1->getType())
2017 return nullptr;
2018
Benjamin Kramer324322b2013-03-07 20:53:34 +00002019 Constant *ArgVec[] = { C, V1, V2 };
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002020 ConstantExprKeyType Key(Instruction::Select, ArgVec);
Galina Kistanovafc259902012-07-13 01:25:27 +00002021
Chris Lattner887ecac2011-07-09 18:23:52 +00002022 LLVMContextImpl *pImpl = C->getContext().pImpl;
2023 return pImpl->ExprConstants.getOrCreate(V1->getType(), Key);
Chris Lattner6e415c02004-03-12 05:54:04 +00002024}
2025
David Blaikie4a2e73b2015-04-02 18:55:32 +00002026Constant *ConstantExpr::getGetElementPtr(Type *Ty, Constant *C,
2027 ArrayRef<Value *> Idxs, bool InBounds,
2028 Type *OnlyIfReducedTy) {
David Blaikie4a2e73b2015-04-02 18:55:32 +00002029 if (!Ty)
2030 Ty = cast<PointerType>(C->getType()->getScalarType())->getElementType();
2031 else
David Blaikied9d900c2015-05-07 17:28:58 +00002032 assert(
2033 Ty ==
2034 cast<PointerType>(C->getType()->getScalarType())->getContainedType(0u));
2035
2036 if (Constant *FC = ConstantFoldGetElementPtr(Ty, C, InBounds, Idxs))
2037 return FC; // Fold a few common cases.
2038
Chris Lattner887ecac2011-07-09 18:23:52 +00002039 // Get the result type of the getelementptr!
David Blaikie4a2e73b2015-04-02 18:55:32 +00002040 Type *DestTy = GetElementPtrInst::getIndexedType(Ty, Idxs);
2041 assert(DestTy && "GEP indices invalid!");
Chris Lattner8326bd82012-01-26 00:42:34 +00002042 unsigned AS = C->getType()->getPointerAddressSpace();
David Blaikie4a2e73b2015-04-02 18:55:32 +00002043 Type *ReqTy = DestTy->getPointerTo(AS);
Duncan Sandse6beec62012-11-13 12:59:33 +00002044 if (VectorType *VecTy = dyn_cast<VectorType>(C->getType()))
2045 ReqTy = VectorType::get(ReqTy, VecTy->getNumElements());
Galina Kistanovafc259902012-07-13 01:25:27 +00002046
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002047 if (OnlyIfReducedTy == ReqTy)
2048 return nullptr;
2049
Dan Gohman1b849082009-09-07 23:54:19 +00002050 // Look up the constant in the table first to ensure uniqueness
2051 std::vector<Constant*> ArgVec;
Jay Foaded8db7d2011-07-21 14:31:17 +00002052 ArgVec.reserve(1 + Idxs.size());
Dan Gohman1b849082009-09-07 23:54:19 +00002053 ArgVec.push_back(C);
Duncan Sandse6beec62012-11-13 12:59:33 +00002054 for (unsigned i = 0, e = Idxs.size(); i != e; ++i) {
2055 assert(Idxs[i]->getType()->isVectorTy() == ReqTy->isVectorTy() &&
2056 "getelementptr index type missmatch");
2057 assert((!Idxs[i]->getType()->isVectorTy() ||
2058 ReqTy->getVectorNumElements() ==
2059 Idxs[i]->getType()->getVectorNumElements()) &&
2060 "getelementptr index type missmatch");
Dan Gohman1b849082009-09-07 23:54:19 +00002061 ArgVec.push_back(cast<Constant>(Idxs[i]));
Duncan Sandse6beec62012-11-13 12:59:33 +00002062 }
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002063 const ConstantExprKeyType Key(Instruction::GetElementPtr, ArgVec, 0,
David Blaikie60310f22015-05-08 00:42:26 +00002064 InBounds ? GEPOperator::IsInBounds : 0, None,
2065 Ty);
Galina Kistanovafc259902012-07-13 01:25:27 +00002066
Chris Lattner887ecac2011-07-09 18:23:52 +00002067 LLVMContextImpl *pImpl = C->getContext().pImpl;
Dan Gohman1b849082009-09-07 23:54:19 +00002068 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
2069}
2070
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002071Constant *ConstantExpr::getICmp(unsigned short pred, Constant *LHS,
2072 Constant *RHS, bool OnlyIfReduced) {
Reid Spenceree3c9912006-12-04 05:19:50 +00002073 assert(LHS->getType() == RHS->getType());
2074 assert(pred >= ICmpInst::FIRST_ICMP_PREDICATE &&
2075 pred <= ICmpInst::LAST_ICMP_PREDICATE && "Invalid ICmp Predicate");
2076
Chris Lattnerf5edeeb2010-02-01 20:48:08 +00002077 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
Reid Spenceree3c9912006-12-04 05:19:50 +00002078 return FC; // Fold a few common cases...
2079
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002080 if (OnlyIfReduced)
2081 return nullptr;
2082
Reid Spenceree3c9912006-12-04 05:19:50 +00002083 // Look up the constant in the table first to ensure uniqueness
Benjamin Kramer324322b2013-03-07 20:53:34 +00002084 Constant *ArgVec[] = { LHS, RHS };
Reid Spencerb1537492006-12-24 18:42:29 +00002085 // Get the key type with both the opcode and predicate
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002086 const ConstantExprKeyType Key(Instruction::ICmp, ArgVec, pred);
Owen Anderson61794042009-06-17 20:10:08 +00002087
Chris Lattner229907c2011-07-18 04:54:35 +00002088 Type *ResultTy = Type::getInt1Ty(LHS->getContext());
2089 if (VectorType *VT = dyn_cast<VectorType>(LHS->getType()))
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00002090 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
2091
Owen Anderson1584a292009-08-04 20:25:11 +00002092 LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl;
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00002093 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
Reid Spenceree3c9912006-12-04 05:19:50 +00002094}
2095
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002096Constant *ConstantExpr::getFCmp(unsigned short pred, Constant *LHS,
2097 Constant *RHS, bool OnlyIfReduced) {
Reid Spenceree3c9912006-12-04 05:19:50 +00002098 assert(LHS->getType() == RHS->getType());
2099 assert(pred <= FCmpInst::LAST_FCMP_PREDICATE && "Invalid FCmp Predicate");
2100
Chris Lattnerf5edeeb2010-02-01 20:48:08 +00002101 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
Reid Spenceree3c9912006-12-04 05:19:50 +00002102 return FC; // Fold a few common cases...
2103
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002104 if (OnlyIfReduced)
2105 return nullptr;
2106
Reid Spenceree3c9912006-12-04 05:19:50 +00002107 // Look up the constant in the table first to ensure uniqueness
Benjamin Kramer324322b2013-03-07 20:53:34 +00002108 Constant *ArgVec[] = { LHS, RHS };
Reid Spencerb1537492006-12-24 18:42:29 +00002109 // Get the key type with both the opcode and predicate
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002110 const ConstantExprKeyType Key(Instruction::FCmp, ArgVec, pred);
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00002111
Chris Lattner229907c2011-07-18 04:54:35 +00002112 Type *ResultTy = Type::getInt1Ty(LHS->getContext());
2113 if (VectorType *VT = dyn_cast<VectorType>(LHS->getType()))
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00002114 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
2115
Owen Anderson1584a292009-08-04 20:25:11 +00002116 LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl;
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00002117 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
Reid Spenceree3c9912006-12-04 05:19:50 +00002118}
2119
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002120Constant *ConstantExpr::getExtractElement(Constant *Val, Constant *Idx,
2121 Type *OnlyIfReducedTy) {
Duncan Sands19d0b472010-02-16 11:11:14 +00002122 assert(Val->getType()->isVectorTy() &&
Reid Spencer09575ba2007-02-15 03:39:18 +00002123 "Tried to create extractelement operation on non-vector type!");
Michael J. Spencer1f10c5ea2014-05-01 22:12:39 +00002124 assert(Idx->getType()->isIntegerTy() &&
2125 "Extractelement index must be an integer type!");
Galina Kistanovafc259902012-07-13 01:25:27 +00002126
Chris Lattner887ecac2011-07-09 18:23:52 +00002127 if (Constant *FC = ConstantFoldExtractElementInstruction(Val, Idx))
Chris Lattner09660c92009-12-30 20:25:09 +00002128 return FC; // Fold a few common cases.
Galina Kistanovafc259902012-07-13 01:25:27 +00002129
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002130 Type *ReqTy = Val->getType()->getVectorElementType();
2131 if (OnlyIfReducedTy == ReqTy)
2132 return nullptr;
2133
Robert Bocchinoca27f032006-01-17 20:07:22 +00002134 // Look up the constant in the table first to ensure uniqueness
Benjamin Kramer324322b2013-03-07 20:53:34 +00002135 Constant *ArgVec[] = { Val, Idx };
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002136 const ConstantExprKeyType Key(Instruction::ExtractElement, ArgVec);
Galina Kistanovafc259902012-07-13 01:25:27 +00002137
Chris Lattner887ecac2011-07-09 18:23:52 +00002138 LLVMContextImpl *pImpl = Val->getContext().pImpl;
Owen Anderson1584a292009-08-04 20:25:11 +00002139 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Robert Bocchinoca27f032006-01-17 20:07:22 +00002140}
2141
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002142Constant *ConstantExpr::getInsertElement(Constant *Val, Constant *Elt,
2143 Constant *Idx, Type *OnlyIfReducedTy) {
Duncan Sands19d0b472010-02-16 11:11:14 +00002144 assert(Val->getType()->isVectorTy() &&
Reid Spencer09575ba2007-02-15 03:39:18 +00002145 "Tried to create insertelement operation on non-vector type!");
Chris Lattner8326bd82012-01-26 00:42:34 +00002146 assert(Elt->getType() == Val->getType()->getVectorElementType() &&
2147 "Insertelement types must match!");
Michael J. Spencer1f10c5ea2014-05-01 22:12:39 +00002148 assert(Idx->getType()->isIntegerTy() &&
Reid Spencer2546b762007-01-26 07:37:34 +00002149 "Insertelement index must be i32 type!");
Robert Bocchinoca27f032006-01-17 20:07:22 +00002150
Chris Lattner887ecac2011-07-09 18:23:52 +00002151 if (Constant *FC = ConstantFoldInsertElementInstruction(Val, Elt, Idx))
2152 return FC; // Fold a few common cases.
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002153
2154 if (OnlyIfReducedTy == Val->getType())
2155 return nullptr;
2156
Chris Lattnerbbe0a422006-04-08 01:18:18 +00002157 // Look up the constant in the table first to ensure uniqueness
Benjamin Kramer324322b2013-03-07 20:53:34 +00002158 Constant *ArgVec[] = { Val, Elt, Idx };
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002159 const ConstantExprKeyType Key(Instruction::InsertElement, ArgVec);
Galina Kistanovafc259902012-07-13 01:25:27 +00002160
Chris Lattner887ecac2011-07-09 18:23:52 +00002161 LLVMContextImpl *pImpl = Val->getContext().pImpl;
2162 return pImpl->ExprConstants.getOrCreate(Val->getType(), Key);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00002163}
2164
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002165Constant *ConstantExpr::getShuffleVector(Constant *V1, Constant *V2,
2166 Constant *Mask, Type *OnlyIfReducedTy) {
Chris Lattnerbbe0a422006-04-08 01:18:18 +00002167 assert(ShuffleVectorInst::isValidOperands(V1, V2, Mask) &&
2168 "Invalid shuffle vector constant expr operands!");
Nate Begeman94aa38d2009-02-12 21:28:33 +00002169
Chris Lattner887ecac2011-07-09 18:23:52 +00002170 if (Constant *FC = ConstantFoldShuffleVectorInstruction(V1, V2, Mask))
2171 return FC; // Fold a few common cases.
2172
Chris Lattner8326bd82012-01-26 00:42:34 +00002173 unsigned NElts = Mask->getType()->getVectorNumElements();
2174 Type *EltTy = V1->getType()->getVectorElementType();
Chris Lattner229907c2011-07-18 04:54:35 +00002175 Type *ShufTy = VectorType::get(EltTy, NElts);
Chris Lattner887ecac2011-07-09 18:23:52 +00002176
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002177 if (OnlyIfReducedTy == ShufTy)
2178 return nullptr;
2179
Chris Lattner887ecac2011-07-09 18:23:52 +00002180 // Look up the constant in the table first to ensure uniqueness
Benjamin Kramer324322b2013-03-07 20:53:34 +00002181 Constant *ArgVec[] = { V1, V2, Mask };
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002182 const ConstantExprKeyType Key(Instruction::ShuffleVector, ArgVec);
Galina Kistanovafc259902012-07-13 01:25:27 +00002183
Chris Lattner887ecac2011-07-09 18:23:52 +00002184 LLVMContextImpl *pImpl = ShufTy->getContext().pImpl;
2185 return pImpl->ExprConstants.getOrCreate(ShufTy, Key);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00002186}
2187
Chris Lattner887ecac2011-07-09 18:23:52 +00002188Constant *ConstantExpr::getInsertValue(Constant *Agg, Constant *Val,
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002189 ArrayRef<unsigned> Idxs,
2190 Type *OnlyIfReducedTy) {
Hal Finkelb31366d2013-07-10 22:51:01 +00002191 assert(Agg->getType()->isFirstClassType() &&
2192 "Non-first-class type for constant insertvalue expression");
2193
Jay Foad57aa6362011-07-13 10:26:04 +00002194 assert(ExtractValueInst::getIndexedType(Agg->getType(),
2195 Idxs) == Val->getType() &&
Dan Gohman12fce772008-05-15 19:50:34 +00002196 "insertvalue indices invalid!");
Hal Finkelb31366d2013-07-10 22:51:01 +00002197 Type *ReqTy = Val->getType();
2198
2199 if (Constant *FC = ConstantFoldInsertValueInstruction(Agg, Val, Idxs))
2200 return FC;
2201
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002202 if (OnlyIfReducedTy == ReqTy)
2203 return nullptr;
2204
Hal Finkelb31366d2013-07-10 22:51:01 +00002205 Constant *ArgVec[] = { Agg, Val };
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002206 const ConstantExprKeyType Key(Instruction::InsertValue, ArgVec, 0, 0, Idxs);
Hal Finkelb31366d2013-07-10 22:51:01 +00002207
2208 LLVMContextImpl *pImpl = Agg->getContext().pImpl;
2209 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Dan Gohman12fce772008-05-15 19:50:34 +00002210}
2211
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002212Constant *ConstantExpr::getExtractValue(Constant *Agg, ArrayRef<unsigned> Idxs,
2213 Type *OnlyIfReducedTy) {
Dan Gohman0752bff2008-05-23 00:36:11 +00002214 assert(Agg->getType()->isFirstClassType() &&
Chris Lattner887ecac2011-07-09 18:23:52 +00002215 "Tried to create extractelement operation on non-first-class type!");
Dan Gohman12fce772008-05-15 19:50:34 +00002216
Chris Lattner229907c2011-07-18 04:54:35 +00002217 Type *ReqTy = ExtractValueInst::getIndexedType(Agg->getType(), Idxs);
Chandler Carruth9db56b82011-07-10 09:45:35 +00002218 (void)ReqTy;
Chris Lattner887ecac2011-07-09 18:23:52 +00002219 assert(ReqTy && "extractvalue indices invalid!");
Galina Kistanovafc259902012-07-13 01:25:27 +00002220
Dan Gohman0752bff2008-05-23 00:36:11 +00002221 assert(Agg->getType()->isFirstClassType() &&
2222 "Non-first-class type for constant extractvalue expression");
Hal Finkelb31366d2013-07-10 22:51:01 +00002223 if (Constant *FC = ConstantFoldExtractValueInstruction(Agg, Idxs))
2224 return FC;
2225
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002226 if (OnlyIfReducedTy == ReqTy)
2227 return nullptr;
2228
Hal Finkelb31366d2013-07-10 22:51:01 +00002229 Constant *ArgVec[] = { Agg };
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002230 const ConstantExprKeyType Key(Instruction::ExtractValue, ArgVec, 0, 0, Idxs);
Hal Finkelb31366d2013-07-10 22:51:01 +00002231
2232 LLVMContextImpl *pImpl = Agg->getContext().pImpl;
2233 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Dan Gohman12fce772008-05-15 19:50:34 +00002234}
2235
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002236Constant *ConstantExpr::getNeg(Constant *C, bool HasNUW, bool HasNSW) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002237 assert(C->getType()->isIntOrIntVectorTy() &&
Owen Anderson487375e2009-07-29 18:55:55 +00002238 "Cannot NEG a nonintegral value!");
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002239 return getSub(ConstantFP::getZeroValueForNegation(C->getType()),
2240 C, HasNUW, HasNSW);
Owen Anderson487375e2009-07-29 18:55:55 +00002241}
2242
Chris Lattnera676c0f2011-02-07 16:40:21 +00002243Constant *ConstantExpr::getFNeg(Constant *C) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002244 assert(C->getType()->isFPOrFPVectorTy() &&
Owen Anderson487375e2009-07-29 18:55:55 +00002245 "Cannot FNEG a non-floating-point value!");
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002246 return getFSub(ConstantFP::getZeroValueForNegation(C->getType()), C);
Owen Anderson487375e2009-07-29 18:55:55 +00002247}
2248
Chris Lattnera676c0f2011-02-07 16:40:21 +00002249Constant *ConstantExpr::getNot(Constant *C) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002250 assert(C->getType()->isIntOrIntVectorTy() &&
Owen Anderson487375e2009-07-29 18:55:55 +00002251 "Cannot NOT a nonintegral value!");
Owen Anderson5a1acd92009-07-31 20:28:14 +00002252 return get(Instruction::Xor, C, Constant::getAllOnesValue(C->getType()));
Owen Anderson487375e2009-07-29 18:55:55 +00002253}
2254
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002255Constant *ConstantExpr::getAdd(Constant *C1, Constant *C2,
2256 bool HasNUW, bool HasNSW) {
2257 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
2258 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
2259 return get(Instruction::Add, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00002260}
2261
Chris Lattnera676c0f2011-02-07 16:40:21 +00002262Constant *ConstantExpr::getFAdd(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002263 return get(Instruction::FAdd, C1, C2);
2264}
2265
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002266Constant *ConstantExpr::getSub(Constant *C1, Constant *C2,
2267 bool HasNUW, bool HasNSW) {
2268 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
2269 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
2270 return get(Instruction::Sub, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00002271}
2272
Chris Lattnera676c0f2011-02-07 16:40:21 +00002273Constant *ConstantExpr::getFSub(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002274 return get(Instruction::FSub, C1, C2);
2275}
2276
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002277Constant *ConstantExpr::getMul(Constant *C1, Constant *C2,
2278 bool HasNUW, bool HasNSW) {
2279 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
2280 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
2281 return get(Instruction::Mul, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00002282}
2283
Chris Lattnera676c0f2011-02-07 16:40:21 +00002284Constant *ConstantExpr::getFMul(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002285 return get(Instruction::FMul, C1, C2);
2286}
2287
Chris Lattner0d75eac2011-02-09 16:43:07 +00002288Constant *ConstantExpr::getUDiv(Constant *C1, Constant *C2, bool isExact) {
2289 return get(Instruction::UDiv, C1, C2,
2290 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00002291}
2292
Chris Lattner0d75eac2011-02-09 16:43:07 +00002293Constant *ConstantExpr::getSDiv(Constant *C1, Constant *C2, bool isExact) {
2294 return get(Instruction::SDiv, C1, C2,
2295 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00002296}
2297
Chris Lattnera676c0f2011-02-07 16:40:21 +00002298Constant *ConstantExpr::getFDiv(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002299 return get(Instruction::FDiv, C1, C2);
2300}
2301
Chris Lattnera676c0f2011-02-07 16:40:21 +00002302Constant *ConstantExpr::getURem(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002303 return get(Instruction::URem, C1, C2);
2304}
2305
Chris Lattnera676c0f2011-02-07 16:40:21 +00002306Constant *ConstantExpr::getSRem(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002307 return get(Instruction::SRem, C1, C2);
2308}
2309
Chris Lattnera676c0f2011-02-07 16:40:21 +00002310Constant *ConstantExpr::getFRem(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002311 return get(Instruction::FRem, C1, C2);
2312}
2313
Chris Lattnera676c0f2011-02-07 16:40:21 +00002314Constant *ConstantExpr::getAnd(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002315 return get(Instruction::And, C1, C2);
2316}
2317
Chris Lattnera676c0f2011-02-07 16:40:21 +00002318Constant *ConstantExpr::getOr(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002319 return get(Instruction::Or, C1, C2);
2320}
2321
Chris Lattnera676c0f2011-02-07 16:40:21 +00002322Constant *ConstantExpr::getXor(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002323 return get(Instruction::Xor, C1, C2);
2324}
2325
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002326Constant *ConstantExpr::getShl(Constant *C1, Constant *C2,
2327 bool HasNUW, bool HasNSW) {
2328 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
2329 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
2330 return get(Instruction::Shl, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00002331}
2332
Chris Lattner0d75eac2011-02-09 16:43:07 +00002333Constant *ConstantExpr::getLShr(Constant *C1, Constant *C2, bool isExact) {
2334 return get(Instruction::LShr, C1, C2,
2335 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00002336}
2337
Chris Lattner0d75eac2011-02-09 16:43:07 +00002338Constant *ConstantExpr::getAShr(Constant *C1, Constant *C2, bool isExact) {
2339 return get(Instruction::AShr, C1, C2,
2340 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00002341}
2342
Duncan Sandsd7aeefe2012-06-12 14:33:56 +00002343/// getBinOpIdentity - Return the identity for the given binary operation,
2344/// 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 +00002345/// returns null if the operator doesn't have an identity.
Duncan Sandsd7aeefe2012-06-12 14:33:56 +00002346Constant *ConstantExpr::getBinOpIdentity(unsigned Opcode, Type *Ty) {
2347 switch (Opcode) {
2348 default:
Duncan Sands318a89d2012-06-13 09:42:13 +00002349 // Doesn't have an identity.
Craig Topperc6207612014-04-09 06:08:46 +00002350 return nullptr;
Duncan Sands318a89d2012-06-13 09:42:13 +00002351
Duncan Sandsd7aeefe2012-06-12 14:33:56 +00002352 case Instruction::Add:
2353 case Instruction::Or:
2354 case Instruction::Xor:
2355 return Constant::getNullValue(Ty);
2356
2357 case Instruction::Mul:
2358 return ConstantInt::get(Ty, 1);
2359
2360 case Instruction::And:
2361 return Constant::getAllOnesValue(Ty);
2362 }
2363}
2364
Duncan Sands318a89d2012-06-13 09:42:13 +00002365/// getBinOpAbsorber - Return the absorbing element for the given binary
2366/// operation, i.e. a constant C such that X op C = C and C op X = C for
2367/// every X. For example, this returns zero for integer multiplication.
2368/// It returns null if the operator doesn't have an absorbing element.
2369Constant *ConstantExpr::getBinOpAbsorber(unsigned Opcode, Type *Ty) {
2370 switch (Opcode) {
2371 default:
2372 // Doesn't have an absorber.
Craig Topperc6207612014-04-09 06:08:46 +00002373 return nullptr;
Duncan Sands318a89d2012-06-13 09:42:13 +00002374
2375 case Instruction::Or:
2376 return Constant::getAllOnesValue(Ty);
2377
2378 case Instruction::And:
2379 case Instruction::Mul:
2380 return Constant::getNullValue(Ty);
2381 }
2382}
2383
Vikram S. Adve4c485332002-07-15 18:19:33 +00002384// destroyConstant - Remove the constant from the constant table...
2385//
Pete Cooper86dd4cf2015-06-23 21:55:11 +00002386void ConstantExpr::destroyConstantImpl() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002387 getType()->getContext().pImpl->ExprConstants.remove(this);
Vikram S. Adve4e537b22002-07-14 23:13:17 +00002388}
2389
Chris Lattner3cd8c562002-07-30 18:54:25 +00002390const char *ConstantExpr::getOpcodeName() const {
2391 return Instruction::getOpcodeName(getOpcode());
Vikram S. Adve4e537b22002-07-14 23:13:17 +00002392}
Reid Spencer1ebe1ab2004-07-17 23:48:33 +00002393
David Blaikie60310f22015-05-08 00:42:26 +00002394GetElementPtrConstantExpr::GetElementPtrConstantExpr(
2395 Type *SrcElementTy, Constant *C, ArrayRef<Constant *> IdxList, Type *DestTy)
2396 : ConstantExpr(DestTy, Instruction::GetElementPtr,
2397 OperandTraits<GetElementPtrConstantExpr>::op_end(this) -
2398 (IdxList.size() + 1),
2399 IdxList.size() + 1),
2400 SrcElementTy(SrcElementTy) {
Pete Coopereb31b682015-05-21 22:48:54 +00002401 Op<0>() = C;
Pete Cooper74510a42015-06-12 17:48:05 +00002402 Use *OperandList = getOperandList();
Chris Lattnera3b94ba2010-03-30 20:48:48 +00002403 for (unsigned i = 0, E = IdxList.size(); i != E; ++i)
2404 OperandList[i+1] = IdxList[i];
2405}
2406
David Blaikie60310f22015-05-08 00:42:26 +00002407Type *GetElementPtrConstantExpr::getSourceElementType() const {
2408 return SrcElementTy;
2409}
2410
Chris Lattner3756b912012-01-23 22:57:10 +00002411//===----------------------------------------------------------------------===//
2412// ConstantData* implementations
2413
2414void ConstantDataArray::anchor() {}
2415void ConstantDataVector::anchor() {}
2416
Chris Lattnere4f3f102012-01-24 04:43:41 +00002417/// getElementType - Return the element type of the array/vector.
2418Type *ConstantDataSequential::getElementType() const {
2419 return getType()->getElementType();
2420}
2421
Chris Lattner5d4497b2012-01-24 09:31:43 +00002422StringRef ConstantDataSequential::getRawDataValues() const {
Chris Lattner00245f42012-01-24 13:41:11 +00002423 return StringRef(DataElements, getNumElements()*getElementByteSize());
Chris Lattner5d4497b2012-01-24 09:31:43 +00002424}
2425
Chris Lattner030af792012-01-24 05:42:11 +00002426/// isElementTypeCompatible - Return true if a ConstantDataSequential can be
2427/// formed with a vector or array of the specified element type.
2428/// ConstantDataArray only works with normal float and int types that are
2429/// stored densely in memory, not with things like i42 or x86_f80.
Craig Toppere3dcce92015-08-01 22:20:21 +00002430bool ConstantDataSequential::isElementTypeCompatible(Type *Ty) {
Chris Lattnere4f3f102012-01-24 04:43:41 +00002431 if (Ty->isFloatTy() || Ty->isDoubleTy()) return true;
Craig Toppere3dcce92015-08-01 22:20:21 +00002432 if (auto *IT = dyn_cast<IntegerType>(Ty)) {
Chris Lattnere4f3f102012-01-24 04:43:41 +00002433 switch (IT->getBitWidth()) {
2434 case 8:
2435 case 16:
2436 case 32:
2437 case 64:
2438 return true;
2439 default: break;
2440 }
2441 }
2442 return false;
2443}
2444
Chris Lattner00245f42012-01-24 13:41:11 +00002445/// getNumElements - Return the number of elements in the array or vector.
2446unsigned ConstantDataSequential::getNumElements() const {
Chris Lattner8a3df542012-01-25 01:32:59 +00002447 if (ArrayType *AT = dyn_cast<ArrayType>(getType()))
2448 return AT->getNumElements();
Chris Lattner8326bd82012-01-26 00:42:34 +00002449 return getType()->getVectorNumElements();
Chris Lattner00245f42012-01-24 13:41:11 +00002450}
2451
2452
Chris Lattnere4f3f102012-01-24 04:43:41 +00002453/// getElementByteSize - Return the size in bytes of the elements in the data.
2454uint64_t ConstantDataSequential::getElementByteSize() const {
2455 return getElementType()->getPrimitiveSizeInBits()/8;
2456}
2457
2458/// getElementPointer - Return the start of the specified element.
2459const char *ConstantDataSequential::getElementPointer(unsigned Elt) const {
Chris Lattner00245f42012-01-24 13:41:11 +00002460 assert(Elt < getNumElements() && "Invalid Elt");
Chris Lattnere4f3f102012-01-24 04:43:41 +00002461 return DataElements+Elt*getElementByteSize();
2462}
2463
2464
Chris Lattner3756b912012-01-23 22:57:10 +00002465/// isAllZeros - return true if the array is empty or all zeros.
2466static bool isAllZeros(StringRef Arr) {
2467 for (StringRef::iterator I = Arr.begin(), E = Arr.end(); I != E; ++I)
2468 if (*I != 0)
2469 return false;
2470 return true;
2471}
Chris Lattner030af792012-01-24 05:42:11 +00002472
Chris Lattner3756b912012-01-23 22:57:10 +00002473/// getImpl - This is the underlying implementation of all of the
2474/// ConstantDataSequential::get methods. They all thunk down to here, providing
Chris Lattnerf06039b2012-01-30 18:19:30 +00002475/// the correct element type. We take the bytes in as a StringRef because
Chris Lattner3756b912012-01-23 22:57:10 +00002476/// we *want* an underlying "char*" to avoid TBAA type punning violations.
2477Constant *ConstantDataSequential::getImpl(StringRef Elements, Type *Ty) {
Chris Lattner8326bd82012-01-26 00:42:34 +00002478 assert(isElementTypeCompatible(Ty->getSequentialElementType()));
Chris Lattner139822f2012-01-24 14:17:05 +00002479 // If the elements are all zero or there are no elements, return a CAZ, which
2480 // is more dense and canonical.
Chris Lattner3756b912012-01-23 22:57:10 +00002481 if (isAllZeros(Elements))
2482 return ConstantAggregateZero::get(Ty);
2483
2484 // Do a lookup to see if we have already formed one of these.
David Blaikie5106ce72014-11-19 05:49:42 +00002485 auto &Slot =
2486 *Ty->getContext()
2487 .pImpl->CDSConstants.insert(std::make_pair(Elements, nullptr))
2488 .first;
Galina Kistanovafc259902012-07-13 01:25:27 +00002489
Chris Lattner3756b912012-01-23 22:57:10 +00002490 // The bucket can point to a linked list of different CDS's that have the same
2491 // body but different types. For example, 0,0,0,1 could be a 4 element array
2492 // of i8, or a 1-element array of i32. They'll both end up in the same
2493 /// StringMap bucket, linked up by their Next pointers. Walk the list.
David Blaikie5106ce72014-11-19 05:49:42 +00002494 ConstantDataSequential **Entry = &Slot.second;
Craig Topperc6207612014-04-09 06:08:46 +00002495 for (ConstantDataSequential *Node = *Entry; Node;
Chris Lattner3756b912012-01-23 22:57:10 +00002496 Entry = &Node->Next, Node = *Entry)
2497 if (Node->getType() == Ty)
2498 return Node;
Galina Kistanovafc259902012-07-13 01:25:27 +00002499
Chris Lattner3756b912012-01-23 22:57:10 +00002500 // Okay, we didn't get a hit. Create a node of the right class, link it in,
2501 // and return it.
2502 if (isa<ArrayType>(Ty))
David Blaikie5106ce72014-11-19 05:49:42 +00002503 return *Entry = new ConstantDataArray(Ty, Slot.first().data());
Chris Lattner3756b912012-01-23 22:57:10 +00002504
2505 assert(isa<VectorType>(Ty));
David Blaikie5106ce72014-11-19 05:49:42 +00002506 return *Entry = new ConstantDataVector(Ty, Slot.first().data());
Chris Lattner3756b912012-01-23 22:57:10 +00002507}
2508
Pete Cooper86dd4cf2015-06-23 21:55:11 +00002509void ConstantDataSequential::destroyConstantImpl() {
Chris Lattner3756b912012-01-23 22:57:10 +00002510 // Remove the constant from the StringMap.
2511 StringMap<ConstantDataSequential*> &CDSConstants =
2512 getType()->getContext().pImpl->CDSConstants;
Galina Kistanovafc259902012-07-13 01:25:27 +00002513
Chris Lattner3756b912012-01-23 22:57:10 +00002514 StringMap<ConstantDataSequential*>::iterator Slot =
Chris Lattner5d4497b2012-01-24 09:31:43 +00002515 CDSConstants.find(getRawDataValues());
Chris Lattner3756b912012-01-23 22:57:10 +00002516
2517 assert(Slot != CDSConstants.end() && "CDS not found in uniquing table");
2518
2519 ConstantDataSequential **Entry = &Slot->getValue();
2520
2521 // Remove the entry from the hash table.
Craig Topperc6207612014-04-09 06:08:46 +00002522 if (!(*Entry)->Next) {
Chris Lattner3756b912012-01-23 22:57:10 +00002523 // If there is only one value in the bucket (common case) it must be this
2524 // entry, and removing the entry should remove the bucket completely.
2525 assert((*Entry) == this && "Hash mismatch in ConstantDataSequential");
2526 getContext().pImpl->CDSConstants.erase(Slot);
2527 } else {
2528 // Otherwise, there are multiple entries linked off the bucket, unlink the
2529 // node we care about but keep the bucket around.
2530 for (ConstantDataSequential *Node = *Entry; ;
2531 Entry = &Node->Next, Node = *Entry) {
2532 assert(Node && "Didn't find entry in its uniquing hash table!");
2533 // If we found our entry, unlink it from the list and we're done.
2534 if (Node == this) {
2535 *Entry = Node->Next;
2536 break;
2537 }
2538 }
2539 }
Galina Kistanovafc259902012-07-13 01:25:27 +00002540
Chris Lattner3756b912012-01-23 22:57:10 +00002541 // If we were part of a list, make sure that we don't delete the list that is
2542 // still owned by the uniquing map.
Craig Topperc6207612014-04-09 06:08:46 +00002543 Next = nullptr;
Chris Lattner3756b912012-01-23 22:57:10 +00002544}
2545
2546/// get() constructors - Return a constant with array type with an element
2547/// count and element type matching the ArrayRef passed in. Note that this
2548/// can return a ConstantAggregateZero object.
Chris Lattner20683932012-01-24 14:04:40 +00002549Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint8_t> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002550 Type *Ty = ArrayType::get(Type::getInt8Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002551 const char *Data = reinterpret_cast<const char *>(Elts.data());
2552 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*1), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002553}
Chris Lattner20683932012-01-24 14:04:40 +00002554Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint16_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002555 Type *Ty = ArrayType::get(Type::getInt16Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002556 const char *Data = reinterpret_cast<const char *>(Elts.data());
2557 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*2), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002558}
Chris Lattner20683932012-01-24 14:04:40 +00002559Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint32_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002560 Type *Ty = ArrayType::get(Type::getInt32Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002561 const char *Data = reinterpret_cast<const char *>(Elts.data());
2562 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*4), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002563}
Chris Lattner20683932012-01-24 14:04:40 +00002564Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint64_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002565 Type *Ty = ArrayType::get(Type::getInt64Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002566 const char *Data = reinterpret_cast<const char *>(Elts.data());
2567 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*8), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002568}
Chris Lattner20683932012-01-24 14:04:40 +00002569Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<float> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002570 Type *Ty = ArrayType::get(Type::getFloatTy(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002571 const char *Data = reinterpret_cast<const char *>(Elts.data());
2572 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*4), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002573}
Chris Lattner20683932012-01-24 14:04:40 +00002574Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<double> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002575 Type *Ty = ArrayType::get(Type::getDoubleTy(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002576 const char *Data = reinterpret_cast<const char *>(Elts.data());
Rafael Espindola8c97e192015-02-19 16:08:20 +00002577 return getImpl(StringRef(const_cast<char *>(Data), Elts.size() * 8), Ty);
2578}
2579
2580/// getFP() constructors - Return a constant with array type with an element
2581/// count and element type of float with precision matching the number of
2582/// bits in the ArrayRef passed in. (i.e. half for 16bits, float for 32bits,
2583/// double for 64bits) Note that this can return a ConstantAggregateZero
2584/// object.
2585Constant *ConstantDataArray::getFP(LLVMContext &Context,
2586 ArrayRef<uint16_t> Elts) {
2587 Type *Ty = VectorType::get(Type::getHalfTy(Context), Elts.size());
2588 const char *Data = reinterpret_cast<const char *>(Elts.data());
2589 return getImpl(StringRef(const_cast<char *>(Data), Elts.size() * 2), Ty);
2590}
2591Constant *ConstantDataArray::getFP(LLVMContext &Context,
2592 ArrayRef<uint32_t> Elts) {
2593 Type *Ty = ArrayType::get(Type::getFloatTy(Context), Elts.size());
2594 const char *Data = reinterpret_cast<const char *>(Elts.data());
2595 return getImpl(StringRef(const_cast<char *>(Data), Elts.size() * 4), Ty);
2596}
2597Constant *ConstantDataArray::getFP(LLVMContext &Context,
2598 ArrayRef<uint64_t> Elts) {
2599 Type *Ty = ArrayType::get(Type::getDoubleTy(Context), Elts.size());
2600 const char *Data = reinterpret_cast<const char *>(Elts.data());
2601 return getImpl(StringRef(const_cast<char *>(Data), Elts.size() * 8), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002602}
2603
Chris Lattner20683932012-01-24 14:04:40 +00002604/// getString - This method constructs a CDS and initializes it with a text
2605/// string. The default behavior (AddNull==true) causes a null terminator to
2606/// be placed at the end of the array (increasing the length of the string by
2607/// one more than the StringRef would normally indicate. Pass AddNull=false
2608/// to disable this behavior.
2609Constant *ConstantDataArray::getString(LLVMContext &Context,
2610 StringRef Str, bool AddNull) {
Galina Kistanovafc259902012-07-13 01:25:27 +00002611 if (!AddNull) {
2612 const uint8_t *Data = reinterpret_cast<const uint8_t *>(Str.data());
Craig Toppere1d12942014-08-27 05:25:25 +00002613 return get(Context, makeArrayRef(const_cast<uint8_t *>(Data),
Galina Kistanovafc259902012-07-13 01:25:27 +00002614 Str.size()));
2615 }
2616
Chris Lattner20683932012-01-24 14:04:40 +00002617 SmallVector<uint8_t, 64> ElementVals;
2618 ElementVals.append(Str.begin(), Str.end());
2619 ElementVals.push_back(0);
2620 return get(Context, ElementVals);
2621}
Chris Lattner3756b912012-01-23 22:57:10 +00002622
2623/// get() constructors - Return a constant with vector type with an element
2624/// count and element type matching the ArrayRef passed in. Note that this
2625/// can return a ConstantAggregateZero object.
Chris Lattner20683932012-01-24 14:04:40 +00002626Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint8_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002627 Type *Ty = VectorType::get(Type::getInt8Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002628 const char *Data = reinterpret_cast<const char *>(Elts.data());
2629 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*1), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002630}
Chris Lattner20683932012-01-24 14:04:40 +00002631Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint16_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002632 Type *Ty = VectorType::get(Type::getInt16Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002633 const char *Data = reinterpret_cast<const char *>(Elts.data());
2634 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*2), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002635}
Chris Lattner20683932012-01-24 14:04:40 +00002636Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint32_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002637 Type *Ty = VectorType::get(Type::getInt32Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002638 const char *Data = reinterpret_cast<const char *>(Elts.data());
2639 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*4), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002640}
Chris Lattner20683932012-01-24 14:04:40 +00002641Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint64_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002642 Type *Ty = VectorType::get(Type::getInt64Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002643 const char *Data = reinterpret_cast<const char *>(Elts.data());
2644 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*8), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002645}
Chris Lattner20683932012-01-24 14:04:40 +00002646Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<float> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002647 Type *Ty = VectorType::get(Type::getFloatTy(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002648 const char *Data = reinterpret_cast<const char *>(Elts.data());
2649 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*4), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002650}
Chris Lattner20683932012-01-24 14:04:40 +00002651Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<double> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002652 Type *Ty = VectorType::get(Type::getDoubleTy(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002653 const char *Data = reinterpret_cast<const char *>(Elts.data());
Rafael Espindola8c97e192015-02-19 16:08:20 +00002654 return getImpl(StringRef(const_cast<char *>(Data), Elts.size() * 8), Ty);
2655}
2656
2657/// getFP() constructors - Return a constant with vector type with an element
2658/// count and element type of float with the precision matching the number of
2659/// bits in the ArrayRef passed in. (i.e. half for 16bits, float for 32bits,
2660/// double for 64bits) Note that this can return a ConstantAggregateZero
2661/// object.
2662Constant *ConstantDataVector::getFP(LLVMContext &Context,
2663 ArrayRef<uint16_t> Elts) {
2664 Type *Ty = VectorType::get(Type::getHalfTy(Context), Elts.size());
2665 const char *Data = reinterpret_cast<const char *>(Elts.data());
2666 return getImpl(StringRef(const_cast<char *>(Data), Elts.size() * 2), Ty);
2667}
2668Constant *ConstantDataVector::getFP(LLVMContext &Context,
2669 ArrayRef<uint32_t> Elts) {
2670 Type *Ty = VectorType::get(Type::getFloatTy(Context), Elts.size());
2671 const char *Data = reinterpret_cast<const char *>(Elts.data());
2672 return getImpl(StringRef(const_cast<char *>(Data), Elts.size() * 4), Ty);
2673}
2674Constant *ConstantDataVector::getFP(LLVMContext &Context,
2675 ArrayRef<uint64_t> Elts) {
2676 Type *Ty = VectorType::get(Type::getDoubleTy(Context), Elts.size());
2677 const char *Data = reinterpret_cast<const char *>(Elts.data());
2678 return getImpl(StringRef(const_cast<char *>(Data), Elts.size() * 8), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002679}
2680
Chris Lattnere9eed292012-01-25 05:19:54 +00002681Constant *ConstantDataVector::getSplat(unsigned NumElts, Constant *V) {
2682 assert(isElementTypeCompatible(V->getType()) &&
2683 "Element type not compatible with ConstantData");
2684 if (ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
2685 if (CI->getType()->isIntegerTy(8)) {
2686 SmallVector<uint8_t, 16> Elts(NumElts, CI->getZExtValue());
2687 return get(V->getContext(), Elts);
2688 }
2689 if (CI->getType()->isIntegerTy(16)) {
2690 SmallVector<uint16_t, 16> Elts(NumElts, CI->getZExtValue());
2691 return get(V->getContext(), Elts);
2692 }
2693 if (CI->getType()->isIntegerTy(32)) {
2694 SmallVector<uint32_t, 16> Elts(NumElts, CI->getZExtValue());
2695 return get(V->getContext(), Elts);
2696 }
2697 assert(CI->getType()->isIntegerTy(64) && "Unsupported ConstantData type");
2698 SmallVector<uint64_t, 16> Elts(NumElts, CI->getZExtValue());
2699 return get(V->getContext(), Elts);
2700 }
2701
Chris Lattner978fe0c2012-01-30 06:21:21 +00002702 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V)) {
2703 if (CFP->getType()->isFloatTy()) {
Rafael Espindola8c97e192015-02-19 16:08:20 +00002704 SmallVector<uint32_t, 16> Elts(
2705 NumElts, CFP->getValueAPF().bitcastToAPInt().getLimitedValue());
2706 return getFP(V->getContext(), Elts);
Chris Lattner978fe0c2012-01-30 06:21:21 +00002707 }
2708 if (CFP->getType()->isDoubleTy()) {
Rafael Espindola8c97e192015-02-19 16:08:20 +00002709 SmallVector<uint64_t, 16> Elts(
2710 NumElts, CFP->getValueAPF().bitcastToAPInt().getLimitedValue());
2711 return getFP(V->getContext(), Elts);
Chris Lattner978fe0c2012-01-30 06:21:21 +00002712 }
Chris Lattnere9eed292012-01-25 05:19:54 +00002713 }
Chris Lattner978fe0c2012-01-30 06:21:21 +00002714 return ConstantVector::getSplat(NumElts, V);
Chris Lattnere9eed292012-01-25 05:19:54 +00002715}
2716
2717
Chris Lattnere4f3f102012-01-24 04:43:41 +00002718/// getElementAsInteger - If this is a sequential container of integers (of
2719/// any size), return the specified element in the low bits of a uint64_t.
2720uint64_t ConstantDataSequential::getElementAsInteger(unsigned Elt) const {
2721 assert(isa<IntegerType>(getElementType()) &&
2722 "Accessor can only be used when element is an integer");
2723 const char *EltPtr = getElementPointer(Elt);
Galina Kistanovafc259902012-07-13 01:25:27 +00002724
Chris Lattnere4f3f102012-01-24 04:43:41 +00002725 // The data is stored in host byte order, make sure to cast back to the right
2726 // type to load with the right endianness.
Chris Lattner8326bd82012-01-26 00:42:34 +00002727 switch (getElementType()->getIntegerBitWidth()) {
Craig Topperc514b542012-02-05 22:14:15 +00002728 default: llvm_unreachable("Invalid bitwidth for CDS");
Galina Kistanovafc259902012-07-13 01:25:27 +00002729 case 8:
2730 return *const_cast<uint8_t *>(reinterpret_cast<const uint8_t *>(EltPtr));
2731 case 16:
2732 return *const_cast<uint16_t *>(reinterpret_cast<const uint16_t *>(EltPtr));
2733 case 32:
2734 return *const_cast<uint32_t *>(reinterpret_cast<const uint32_t *>(EltPtr));
2735 case 64:
2736 return *const_cast<uint64_t *>(reinterpret_cast<const uint64_t *>(EltPtr));
Chris Lattnere4f3f102012-01-24 04:43:41 +00002737 }
2738}
2739
2740/// getElementAsAPFloat - If this is a sequential container of floating point
2741/// type, return the specified element as an APFloat.
2742APFloat ConstantDataSequential::getElementAsAPFloat(unsigned Elt) const {
2743 const char *EltPtr = getElementPointer(Elt);
2744
2745 switch (getElementType()->getTypeID()) {
Nick Lewyckyff509622012-01-25 03:20:12 +00002746 default:
Craig Topperc514b542012-02-05 22:14:15 +00002747 llvm_unreachable("Accessor can only be used when element is float/double!");
Benjamin Kramer7af984b2015-02-20 15:11:55 +00002748 case Type::FloatTyID: {
2749 auto EltVal = *reinterpret_cast<const uint32_t *>(EltPtr);
NAKAMURA Takumie86b9b72015-02-20 14:24:49 +00002750 return APFloat(APFloat::IEEEsingle, APInt(32, EltVal));
Benjamin Kramer7af984b2015-02-20 15:11:55 +00002751 }
2752 case Type::DoubleTyID: {
2753 auto EltVal = *reinterpret_cast<const uint64_t *>(EltPtr);
NAKAMURA Takumie86b9b72015-02-20 14:24:49 +00002754 return APFloat(APFloat::IEEEdouble, APInt(64, EltVal));
Chris Lattnere4f3f102012-01-24 04:43:41 +00002755 }
Benjamin Kramer7af984b2015-02-20 15:11:55 +00002756 }
Chris Lattnere4f3f102012-01-24 04:43:41 +00002757}
2758
2759/// getElementAsFloat - If this is an sequential container of floats, return
2760/// the specified element as a float.
2761float ConstantDataSequential::getElementAsFloat(unsigned Elt) const {
2762 assert(getElementType()->isFloatTy() &&
2763 "Accessor can only be used when element is a 'float'");
Galina Kistanovafc259902012-07-13 01:25:27 +00002764 const float *EltPtr = reinterpret_cast<const float *>(getElementPointer(Elt));
2765 return *const_cast<float *>(EltPtr);
Chris Lattnere4f3f102012-01-24 04:43:41 +00002766}
2767
2768/// getElementAsDouble - If this is an sequential container of doubles, return
2769/// the specified element as a float.
2770double ConstantDataSequential::getElementAsDouble(unsigned Elt) const {
2771 assert(getElementType()->isDoubleTy() &&
2772 "Accessor can only be used when element is a 'float'");
Galina Kistanovafc259902012-07-13 01:25:27 +00002773 const double *EltPtr =
2774 reinterpret_cast<const double *>(getElementPointer(Elt));
2775 return *const_cast<double *>(EltPtr);
Chris Lattnere4f3f102012-01-24 04:43:41 +00002776}
2777
2778/// getElementAsConstant - Return a Constant for a specified index's element.
2779/// Note that this has to compute a new constant to return, so it isn't as
2780/// efficient as getElementAsInteger/Float/Double.
2781Constant *ConstantDataSequential::getElementAsConstant(unsigned Elt) const {
2782 if (getElementType()->isFloatTy() || getElementType()->isDoubleTy())
2783 return ConstantFP::get(getContext(), getElementAsAPFloat(Elt));
Galina Kistanovafc259902012-07-13 01:25:27 +00002784
Chris Lattnere4f3f102012-01-24 04:43:41 +00002785 return ConstantInt::get(getElementType(), getElementAsInteger(Elt));
2786}
2787
Chris Lattner5dd4d872012-01-24 09:01:07 +00002788/// isString - This method returns true if this is an array of i8.
2789bool ConstantDataSequential::isString() const {
2790 return isa<ArrayType>(getType()) && getElementType()->isIntegerTy(8);
2791}
Chris Lattner3756b912012-01-23 22:57:10 +00002792
Chris Lattner5dd4d872012-01-24 09:01:07 +00002793/// isCString - This method returns true if the array "isString", ends with a
2794/// nul byte, and does not contains any other nul bytes.
2795bool ConstantDataSequential::isCString() const {
2796 if (!isString())
2797 return false;
Galina Kistanovafc259902012-07-13 01:25:27 +00002798
Chris Lattner5dd4d872012-01-24 09:01:07 +00002799 StringRef Str = getAsString();
Galina Kistanovafc259902012-07-13 01:25:27 +00002800
Chris Lattner5dd4d872012-01-24 09:01:07 +00002801 // The last value must be nul.
2802 if (Str.back() != 0) return false;
Galina Kistanovafc259902012-07-13 01:25:27 +00002803
Chris Lattner5dd4d872012-01-24 09:01:07 +00002804 // Other elements must be non-nul.
2805 return Str.drop_back().find(0) == StringRef::npos;
2806}
Chris Lattner3756b912012-01-23 22:57:10 +00002807
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002808/// getSplatValue - If this is a splat constant, meaning that all of the
Reid Kleckner971c3ea2014-11-13 22:55:19 +00002809/// elements have the same value, return that value. Otherwise return nullptr.
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002810Constant *ConstantDataVector::getSplatValue() const {
2811 const char *Base = getRawDataValues().data();
Galina Kistanovafc259902012-07-13 01:25:27 +00002812
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002813 // Compare elements 1+ to the 0'th element.
2814 unsigned EltSize = getElementByteSize();
2815 for (unsigned i = 1, e = getNumElements(); i != e; ++i)
2816 if (memcmp(Base, Base+i*EltSize, EltSize))
Craig Topperc6207612014-04-09 06:08:46 +00002817 return nullptr;
Galina Kistanovafc259902012-07-13 01:25:27 +00002818
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002819 // If they're all the same, return the 0th one as a representative.
2820 return getElementAsConstant(0);
2821}
Chris Lattnera3b94ba2010-03-30 20:48:48 +00002822
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002823//===----------------------------------------------------------------------===//
Pete Cooper5815b1f2015-06-24 18:55:24 +00002824// handleOperandChange implementations
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002825
Pete Cooper5815b1f2015-06-24 18:55:24 +00002826/// Update this constant array to change uses of
Chris Lattner913849b2007-08-21 00:55:23 +00002827/// 'From' to be uses of 'To'. This must update the uniquing data structures
2828/// etc.
2829///
2830/// Note that we intentionally replace all uses of From with To here. Consider
2831/// a large array that uses 'From' 1000 times. By handling this case all here,
Pete Cooper5815b1f2015-06-24 18:55:24 +00002832/// ConstantArray::handleOperandChange is only invoked once, and that
Chris Lattner913849b2007-08-21 00:55:23 +00002833/// single invocation handles all 1000 uses. Handling them one at a time would
2834/// work, but would be really slow because it would have to unique each updated
2835/// array instance.
Chris Lattner31b132c2009-10-28 00:01:44 +00002836///
Pete Cooper5815b1f2015-06-24 18:55:24 +00002837void Constant::handleOperandChange(Value *From, Value *To, Use *U) {
2838 Value *Replacement = nullptr;
2839 switch (getValueID()) {
2840 default:
2841 llvm_unreachable("Not a constant!");
2842#define HANDLE_CONSTANT(Name) \
2843 case Value::Name##Val: \
2844 Replacement = cast<Name>(this)->handleOperandChangeImpl(From, To, U); \
2845 break;
2846#include "llvm/IR/Value.def"
2847 }
2848
2849 // If handleOperandChangeImpl returned nullptr, then it handled
2850 // replacing itself and we don't want to delete or replace anything else here.
2851 if (!Replacement)
2852 return;
2853
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002854 // I do need to replace this with an existing value.
2855 assert(Replacement != this && "I didn't contain From!");
2856
2857 // Everyone using this now uses the replacement.
2858 replaceAllUsesWith(Replacement);
2859
2860 // Delete the old constant!
2861 destroyConstant();
2862}
2863
Pete Cooper5815b1f2015-06-24 18:55:24 +00002864Value *ConstantInt::handleOperandChangeImpl(Value *From, Value *To, Use *U) {
2865 llvm_unreachable("Unsupported class for handleOperandChange()!");
2866}
2867
2868Value *ConstantFP::handleOperandChangeImpl(Value *From, Value *To, Use *U) {
2869 llvm_unreachable("Unsupported class for handleOperandChange()!");
2870}
2871
David Majnemerf0f224d2015-11-11 21:57:16 +00002872Value *ConstantTokenNone::handleOperandChangeImpl(Value *From, Value *To,
2873 Use *U) {
2874 llvm_unreachable("Unsupported class for handleOperandChange()!");
2875}
2876
Pete Cooper5815b1f2015-06-24 18:55:24 +00002877Value *UndefValue::handleOperandChangeImpl(Value *From, Value *To, Use *U) {
2878 llvm_unreachable("Unsupported class for handleOperandChange()!");
2879}
2880
2881Value *ConstantPointerNull::handleOperandChangeImpl(Value *From, Value *To,
2882 Use *U) {
2883 llvm_unreachable("Unsupported class for handleOperandChange()!");
2884}
2885
2886Value *ConstantAggregateZero::handleOperandChangeImpl(Value *From, Value *To,
2887 Use *U) {
2888 llvm_unreachable("Unsupported class for handleOperandChange()!");
2889}
2890
2891Value *ConstantDataSequential::handleOperandChangeImpl(Value *From, Value *To,
2892 Use *U) {
2893 llvm_unreachable("Unsupported class for handleOperandChange()!");
2894}
2895
2896Value *ConstantArray::handleOperandChangeImpl(Value *From, Value *To, Use *U) {
Owen Andersonc2c79322009-07-28 18:32:17 +00002897 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2898 Constant *ToC = cast<Constant>(To);
2899
Talin46e9b442012-02-05 20:54:10 +00002900 SmallVector<Constant*, 8> Values;
Owen Andersonc2c79322009-07-28 18:32:17 +00002901 Values.reserve(getNumOperands()); // Build replacement array.
2902
Galina Kistanovafc259902012-07-13 01:25:27 +00002903 // Fill values with the modified operands of the constant array. Also,
Owen Andersonc2c79322009-07-28 18:32:17 +00002904 // compute whether this turns into an all-zeros array.
Owen Andersonc2c79322009-07-28 18:32:17 +00002905 unsigned NumUpdated = 0;
Galina Kistanovafc259902012-07-13 01:25:27 +00002906
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002907 // Keep track of whether all the values in the array are "ToC".
2908 bool AllSame = true;
Pete Cooper74510a42015-06-12 17:48:05 +00002909 Use *OperandList = getOperandList();
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002910 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2911 Constant *Val = cast<Constant>(O->get());
2912 if (Val == From) {
2913 Val = ToC;
2914 ++NumUpdated;
Owen Andersonc2c79322009-07-28 18:32:17 +00002915 }
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002916 Values.push_back(Val);
Talin46e9b442012-02-05 20:54:10 +00002917 AllSame &= Val == ToC;
Owen Andersonc2c79322009-07-28 18:32:17 +00002918 }
Galina Kistanovafc259902012-07-13 01:25:27 +00002919
Pete Cooper5815b1f2015-06-24 18:55:24 +00002920 if (AllSame && ToC->isNullValue())
2921 return ConstantAggregateZero::get(getType());
2922
2923 if (AllSame && isa<UndefValue>(ToC))
2924 return UndefValue::get(getType());
Aaron Ballmane4b91dc2014-08-19 14:59:02 +00002925
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002926 // Check for any other type of constant-folding.
Pete Cooper5815b1f2015-06-24 18:55:24 +00002927 if (Constant *C = getImpl(getType(), Values))
2928 return C;
Aaron Ballmane4b91dc2014-08-19 14:59:02 +00002929
Duncan P. N. Exon Smith909620a2014-08-19 19:13:30 +00002930 // Update to the new value.
Pete Cooper5815b1f2015-06-24 18:55:24 +00002931 return getContext().pImpl->ArrayConstants.replaceOperandsInPlace(
2932 Values, this, From, ToC, NumUpdated, U - OperandList);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002933}
2934
Pete Cooper5815b1f2015-06-24 18:55:24 +00002935Value *ConstantStruct::handleOperandChangeImpl(Value *From, Value *To, Use *U) {
Owen Anderson45308b52009-07-27 22:29:26 +00002936 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2937 Constant *ToC = cast<Constant>(To);
2938
Pete Cooper74510a42015-06-12 17:48:05 +00002939 Use *OperandList = getOperandList();
Owen Anderson45308b52009-07-27 22:29:26 +00002940 unsigned OperandToUpdate = U-OperandList;
2941 assert(getOperand(OperandToUpdate) == From && "ReplaceAllUsesWith broken!");
2942
Talin46e9b442012-02-05 20:54:10 +00002943 SmallVector<Constant*, 8> Values;
Owen Anderson45308b52009-07-27 22:29:26 +00002944 Values.reserve(getNumOperands()); // Build replacement struct.
Galina Kistanovafc259902012-07-13 01:25:27 +00002945
2946 // Fill values with the modified operands of the constant struct. Also,
Owen Anderson45308b52009-07-27 22:29:26 +00002947 // compute whether this turns into an all-zeros struct.
2948 bool isAllZeros = false;
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002949 bool isAllUndef = false;
2950 if (ToC->isNullValue()) {
Owen Anderson45308b52009-07-27 22:29:26 +00002951 isAllZeros = true;
2952 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2953 Constant *Val = cast<Constant>(O->get());
2954 Values.push_back(Val);
2955 if (isAllZeros) isAllZeros = Val->isNullValue();
2956 }
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002957 } else if (isa<UndefValue>(ToC)) {
2958 isAllUndef = true;
2959 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2960 Constant *Val = cast<Constant>(O->get());
2961 Values.push_back(Val);
2962 if (isAllUndef) isAllUndef = isa<UndefValue>(Val);
2963 }
2964 } else {
2965 for (Use *O = OperandList, *E = OperandList + getNumOperands(); O != E; ++O)
2966 Values.push_back(cast<Constant>(O->get()));
Owen Anderson45308b52009-07-27 22:29:26 +00002967 }
2968 Values[OperandToUpdate] = ToC;
Galina Kistanovafc259902012-07-13 01:25:27 +00002969
Pete Cooper5815b1f2015-06-24 18:55:24 +00002970 if (isAllZeros)
2971 return ConstantAggregateZero::get(getType());
2972
2973 if (isAllUndef)
2974 return UndefValue::get(getType());
Galina Kistanovafc259902012-07-13 01:25:27 +00002975
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002976 // Update to the new value.
Pete Cooper5815b1f2015-06-24 18:55:24 +00002977 return getContext().pImpl->StructConstants.replaceOperandsInPlace(
2978 Values, this, From, ToC);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002979}
2980
Pete Cooper5815b1f2015-06-24 18:55:24 +00002981Value *ConstantVector::handleOperandChangeImpl(Value *From, Value *To, Use *U) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002982 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002983 Constant *ToC = cast<Constant>(To);
Galina Kistanovafc259902012-07-13 01:25:27 +00002984
Chris Lattnera474bb22012-01-26 20:40:56 +00002985 SmallVector<Constant*, 8> Values;
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002986 Values.reserve(getNumOperands()); // Build replacement array...
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002987 unsigned NumUpdated = 0;
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002988 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
2989 Constant *Val = getOperand(i);
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002990 if (Val == From) {
2991 ++NumUpdated;
2992 Val = ToC;
2993 }
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002994 Values.push_back(Val);
2995 }
Galina Kistanovafc259902012-07-13 01:25:27 +00002996
Pete Cooper5815b1f2015-06-24 18:55:24 +00002997 if (Constant *C = getImpl(Values))
2998 return C;
Duncan P. N. Exon Smith687744d2014-08-19 02:24:46 +00002999
Duncan P. N. Exon Smith909620a2014-08-19 19:13:30 +00003000 // Update to the new value.
Pete Cooper74510a42015-06-12 17:48:05 +00003001 Use *OperandList = getOperandList();
Pete Cooper5815b1f2015-06-24 18:55:24 +00003002 return getContext().pImpl->VectorConstants.replaceOperandsInPlace(
3003 Values, this, From, ToC, NumUpdated, U - OperandList);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00003004}
3005
Pete Cooper5815b1f2015-06-24 18:55:24 +00003006Value *ConstantExpr::handleOperandChangeImpl(Value *From, Value *ToV, Use *U) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00003007 assert(isa<Constant>(ToV) && "Cannot make Constant refer to non-constant!");
3008 Constant *To = cast<Constant>(ToV);
Galina Kistanovafc259902012-07-13 01:25:27 +00003009
Chris Lattner37e38352012-01-26 20:37:11 +00003010 SmallVector<Constant*, 8> NewOps;
Duncan P. N. Exon Smith33de00c2014-08-19 20:03:35 +00003011 unsigned NumUpdated = 0;
Chris Lattner37e38352012-01-26 20:37:11 +00003012 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
3013 Constant *Op = getOperand(i);
Duncan P. N. Exon Smith33de00c2014-08-19 20:03:35 +00003014 if (Op == From) {
3015 ++NumUpdated;
3016 Op = To;
3017 }
3018 NewOps.push_back(Op);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00003019 }
Duncan P. N. Exon Smith33de00c2014-08-19 20:03:35 +00003020 assert(NumUpdated && "I didn't contain From!");
Galina Kistanovafc259902012-07-13 01:25:27 +00003021
Pete Cooper5815b1f2015-06-24 18:55:24 +00003022 if (Constant *C = getWithOperands(NewOps, getType(), true))
3023 return C;
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00003024
Duncan P. N. Exon Smith33de00c2014-08-19 20:03:35 +00003025 // Update to the new value.
Pete Cooper74510a42015-06-12 17:48:05 +00003026 Use *OperandList = getOperandList();
Pete Cooper5815b1f2015-06-24 18:55:24 +00003027 return getContext().pImpl->ExprConstants.replaceOperandsInPlace(
3028 NewOps, this, From, To, NumUpdated, U - OperandList);
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00003029}
3030
James Molloyce545682012-11-17 17:56:30 +00003031Instruction *ConstantExpr::getAsInstruction() {
Benjamin Kramer5fbfe2f2015-02-28 13:20:15 +00003032 SmallVector<Value *, 4> ValueOperands(op_begin(), op_end());
James Molloyce545682012-11-17 17:56:30 +00003033 ArrayRef<Value*> Ops(ValueOperands);
3034
3035 switch (getOpcode()) {
3036 case Instruction::Trunc:
3037 case Instruction::ZExt:
3038 case Instruction::SExt:
3039 case Instruction::FPTrunc:
3040 case Instruction::FPExt:
3041 case Instruction::UIToFP:
3042 case Instruction::SIToFP:
3043 case Instruction::FPToUI:
3044 case Instruction::FPToSI:
3045 case Instruction::PtrToInt:
3046 case Instruction::IntToPtr:
3047 case Instruction::BitCast:
Eli Bendersky157a97a2014-01-18 22:54:33 +00003048 case Instruction::AddrSpaceCast:
James Molloyce545682012-11-17 17:56:30 +00003049 return CastInst::Create((Instruction::CastOps)getOpcode(),
3050 Ops[0], getType());
3051 case Instruction::Select:
3052 return SelectInst::Create(Ops[0], Ops[1], Ops[2]);
3053 case Instruction::InsertElement:
3054 return InsertElementInst::Create(Ops[0], Ops[1], Ops[2]);
3055 case Instruction::ExtractElement:
3056 return ExtractElementInst::Create(Ops[0], Ops[1]);
3057 case Instruction::InsertValue:
3058 return InsertValueInst::Create(Ops[0], Ops[1], getIndices());
3059 case Instruction::ExtractValue:
3060 return ExtractValueInst::Create(Ops[0], getIndices());
3061 case Instruction::ShuffleVector:
3062 return new ShuffleVectorInst(Ops[0], Ops[1], Ops[2]);
3063
David Blaikie741c8f82015-03-14 01:53:18 +00003064 case Instruction::GetElementPtr: {
3065 const auto *GO = cast<GEPOperator>(this);
3066 if (GO->isInBounds())
3067 return GetElementPtrInst::CreateInBounds(GO->getSourceElementType(),
3068 Ops[0], Ops.slice(1));
3069 return GetElementPtrInst::Create(GO->getSourceElementType(), Ops[0],
3070 Ops.slice(1));
3071 }
James Molloyce545682012-11-17 17:56:30 +00003072 case Instruction::ICmp:
3073 case Instruction::FCmp:
3074 return CmpInst::Create((Instruction::OtherOps)getOpcode(),
3075 getPredicate(), Ops[0], Ops[1]);
3076
3077 default:
3078 assert(getNumOperands() == 2 && "Must be binary operator?");
3079 BinaryOperator *BO =
3080 BinaryOperator::Create((Instruction::BinaryOps)getOpcode(),
3081 Ops[0], Ops[1]);
3082 if (isa<OverflowingBinaryOperator>(BO)) {
3083 BO->setHasNoUnsignedWrap(SubclassOptionalData &
3084 OverflowingBinaryOperator::NoUnsignedWrap);
3085 BO->setHasNoSignedWrap(SubclassOptionalData &
3086 OverflowingBinaryOperator::NoSignedWrap);
3087 }
3088 if (isa<PossiblyExactOperator>(BO))
3089 BO->setIsExact(SubclassOptionalData & PossiblyExactOperator::IsExact);
3090 return BO;
3091 }
3092}