blob: e88069a34435a1b493c1540a010c8eb0e550ef94 [file] [log] [blame]
Chris Lattner2b383d2e2003-05-13 21:37:02 +00001//===-- Constants.cpp - Implement Constant nodes --------------------------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
John Criswell482202a2003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanb1c93172005-04-21 23:48:37 +00007//
John Criswell482202a2003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +00009//
Chris Lattnere17322b2011-02-07 20:03:14 +000010// This file implements the Constant* classes.
Chris Lattner2f7c9632001-06-06 20:29:01 +000011//
12//===----------------------------------------------------------------------===//
13
Chandler Carruth9fb823b2013-01-02 11:36:10 +000014#include "llvm/IR/Constants.h"
Chris Lattner33e93b82007-02-27 03:05:06 +000015#include "ConstantFold.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000016#include "LLVMContextImpl.h"
17#include "llvm/ADT/DenseMap.h"
18#include "llvm/ADT/FoldingSet.h"
19#include "llvm/ADT/STLExtras.h"
20#include "llvm/ADT/SmallVector.h"
21#include "llvm/ADT/StringExtras.h"
22#include "llvm/ADT/StringMap.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000023#include "llvm/IR/DerivedTypes.h"
Chandler Carruth03eb0de2014-03-04 10:40:04 +000024#include "llvm/IR/GetElementPtrTypeIterator.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000025#include "llvm/IR/GlobalValue.h"
26#include "llvm/IR/Instructions.h"
27#include "llvm/IR/Module.h"
28#include "llvm/IR/Operator.h"
Chris Lattner3d27be12006-08-27 12:54:02 +000029#include "llvm/Support/Compiler.h"
Bill Wendling6a462f12006-11-17 08:03:48 +000030#include "llvm/Support/Debug.h"
Torok Edwinccb29cd2009-07-11 13:10:19 +000031#include "llvm/Support/ErrorHandling.h"
Chris Lattner69edc982006-09-28 00:35:06 +000032#include "llvm/Support/ManagedStatic.h"
Bill Wendling6a462f12006-11-17 08:03:48 +000033#include "llvm/Support/MathExtras.h"
Chris Lattner78683a72009-08-23 04:02:03 +000034#include "llvm/Support/raw_ostream.h"
Chris Lattner2f7c9632001-06-06 20:29:01 +000035#include <algorithm>
Talin3a0a30d2011-02-28 23:53:27 +000036#include <cstdarg>
Chris Lattner189d19f2003-11-21 20:23:48 +000037using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000038
Chris Lattner2f7c9632001-06-06 20:29:01 +000039//===----------------------------------------------------------------------===//
Chris Lattner3462ae32001-12-03 22:26:30 +000040// Constant Class
Chris Lattner2f7c9632001-06-06 20:29:01 +000041//===----------------------------------------------------------------------===//
42
David Blaikiea379b1812011-12-20 02:50:00 +000043void Constant::anchor() { }
44
Chris Lattnerac5fb562011-07-15 05:58:04 +000045bool Constant::isNegativeZeroValue() const {
46 // Floating point values have an explicit -0.0 value.
47 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
48 return CFP->isZero() && CFP->isNegative();
Galina Kistanovafc259902012-07-13 01:25:27 +000049
David Tweed5493fee2013-03-18 11:54:44 +000050 // Equivalent for a vector of -0.0's.
51 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this))
52 if (ConstantFP *SplatCFP = dyn_cast_or_null<ConstantFP>(CV->getSplatValue()))
53 if (SplatCFP && SplatCFP->isZero() && SplatCFP->isNegative())
54 return true;
55
David Tweed298e4192013-03-19 10:16:40 +000056 // We've already handled true FP case; any other FP vectors can't represent -0.0.
57 if (getType()->isFPOrFPVectorTy())
58 return false;
David Tweed5493fee2013-03-18 11:54:44 +000059
Chris Lattnerac5fb562011-07-15 05:58:04 +000060 // Otherwise, just use +0.0.
61 return isNullValue();
62}
63
Shuxin Yang9ca562e2013-01-09 00:53:25 +000064// Return true iff this constant is positive zero (floating point), negative
65// zero (floating point), or a null value.
Shuxin Yangf0537ab2013-01-09 00:13:41 +000066bool Constant::isZeroValue() const {
67 // Floating point values have an explicit -0.0 value.
68 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
69 return CFP->isZero();
70
71 // Otherwise, just use +0.0.
72 return isNullValue();
73}
74
Chris Lattnerbe6610c2011-07-15 06:14:08 +000075bool Constant::isNullValue() const {
76 // 0 is null.
77 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
78 return CI->isZero();
Galina Kistanovafc259902012-07-13 01:25:27 +000079
Chris Lattnerbe6610c2011-07-15 06:14:08 +000080 // +0.0 is null.
81 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
82 return CFP->isZero() && !CFP->isNegative();
83
84 // constant zero is zero for aggregates and cpnull is null for pointers.
85 return isa<ConstantAggregateZero>(this) || isa<ConstantPointerNull>(this);
86}
87
Nadav Rotem365af6f2011-08-24 20:18:38 +000088bool Constant::isAllOnesValue() const {
89 // Check for -1 integers
90 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
91 return CI->isMinusOne();
92
93 // Check for FP which are bitcasted from -1 integers
94 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
95 return CFP->getValueAPF().bitcastToAPInt().isAllOnesValue();
96
Benjamin Kramer42d098e2011-11-14 19:12:20 +000097 // Check for constant vectors which are splats of -1 values.
Nadav Rotem365af6f2011-08-24 20:18:38 +000098 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
Benjamin Kramer42d098e2011-11-14 19:12:20 +000099 if (Constant *Splat = CV->getSplatValue())
100 return Splat->isAllOnesValue();
Nadav Rotem365af6f2011-08-24 20:18:38 +0000101
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000102 // Check for constant vectors which are splats of -1 values.
103 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this))
104 if (Constant *Splat = CV->getSplatValue())
105 return Splat->isAllOnesValue();
106
Nadav Rotem365af6f2011-08-24 20:18:38 +0000107 return false;
108}
Benjamin Kramer42d098e2011-11-14 19:12:20 +0000109
David Majnemer1a0bbc82014-08-16 09:23:42 +0000110bool Constant::isOneValue() const {
111 // Check for 1 integers
112 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
113 return CI->isOne();
114
115 // Check for FP which are bitcasted from 1 integers
116 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
117 return CFP->getValueAPF().bitcastToAPInt() == 1;
118
119 // Check for constant vectors which are splats of 1 values.
120 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
121 if (Constant *Splat = CV->getSplatValue())
122 return Splat->isOneValue();
123
124 // Check for constant vectors which are splats of 1 values.
125 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this))
126 if (Constant *Splat = CV->getSplatValue())
127 return Splat->isOneValue();
128
129 return false;
130}
131
David Majnemerbdeef602014-07-02 06:07:09 +0000132bool Constant::isMinSignedValue() const {
133 // Check for INT_MIN integers
134 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
135 return CI->isMinValue(/*isSigned=*/true);
136
137 // Check for FP which are bitcasted from INT_MIN integers
138 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
139 return CFP->getValueAPF().bitcastToAPInt().isMinSignedValue();
140
141 // Check for constant vectors which are splats of INT_MIN values.
142 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
143 if (Constant *Splat = CV->getSplatValue())
144 return Splat->isMinSignedValue();
145
146 // Check for constant vectors which are splats of INT_MIN values.
147 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this))
148 if (Constant *Splat = CV->getSplatValue())
149 return Splat->isMinSignedValue();
150
151 return false;
152}
153
Owen Anderson5a1acd92009-07-31 20:28:14 +0000154// Constructor to create a '0' constant of arbitrary type...
Chris Lattner229907c2011-07-18 04:54:35 +0000155Constant *Constant::getNullValue(Type *Ty) {
Owen Anderson5a1acd92009-07-31 20:28:14 +0000156 switch (Ty->getTypeID()) {
157 case Type::IntegerTyID:
158 return ConstantInt::get(Ty, 0);
Dan Gohman518cda42011-12-17 00:04:22 +0000159 case Type::HalfTyID:
160 return ConstantFP::get(Ty->getContext(),
161 APFloat::getZero(APFloat::IEEEhalf));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000162 case Type::FloatTyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000163 return ConstantFP::get(Ty->getContext(),
164 APFloat::getZero(APFloat::IEEEsingle));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000165 case Type::DoubleTyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000166 return ConstantFP::get(Ty->getContext(),
167 APFloat::getZero(APFloat::IEEEdouble));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000168 case Type::X86_FP80TyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000169 return ConstantFP::get(Ty->getContext(),
170 APFloat::getZero(APFloat::x87DoubleExtended));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000171 case Type::FP128TyID:
172 return ConstantFP::get(Ty->getContext(),
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000173 APFloat::getZero(APFloat::IEEEquad));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000174 case Type::PPC_FP128TyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000175 return ConstantFP::get(Ty->getContext(),
Tim Northover29178a32013-01-22 09:46:31 +0000176 APFloat(APFloat::PPCDoubleDouble,
177 APInt::getNullValue(128)));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000178 case Type::PointerTyID:
179 return ConstantPointerNull::get(cast<PointerType>(Ty));
180 case Type::StructTyID:
181 case Type::ArrayTyID:
182 case Type::VectorTyID:
183 return ConstantAggregateZero::get(Ty);
184 default:
185 // Function, Label, or Opaque type?
Craig Topperc514b542012-02-05 22:14:15 +0000186 llvm_unreachable("Cannot create a null constant of that type!");
Owen Anderson5a1acd92009-07-31 20:28:14 +0000187 }
188}
189
Chris Lattner229907c2011-07-18 04:54:35 +0000190Constant *Constant::getIntegerValue(Type *Ty, const APInt &V) {
191 Type *ScalarTy = Ty->getScalarType();
Dan Gohmanf011f5a2009-08-03 22:07:33 +0000192
193 // Create the base integer constant.
194 Constant *C = ConstantInt::get(Ty->getContext(), V);
195
196 // Convert an integer to a pointer, if necessary.
Chris Lattner229907c2011-07-18 04:54:35 +0000197 if (PointerType *PTy = dyn_cast<PointerType>(ScalarTy))
Dan Gohmanf011f5a2009-08-03 22:07:33 +0000198 C = ConstantExpr::getIntToPtr(C, PTy);
199
200 // Broadcast a scalar to a vector, if necessary.
Chris Lattner229907c2011-07-18 04:54:35 +0000201 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000202 C = ConstantVector::getSplat(VTy->getNumElements(), C);
Dan Gohmanf011f5a2009-08-03 22:07:33 +0000203
204 return C;
205}
206
Chris Lattner229907c2011-07-18 04:54:35 +0000207Constant *Constant::getAllOnesValue(Type *Ty) {
208 if (IntegerType *ITy = dyn_cast<IntegerType>(Ty))
Owen Anderson5a1acd92009-07-31 20:28:14 +0000209 return ConstantInt::get(Ty->getContext(),
210 APInt::getAllOnesValue(ITy->getBitWidth()));
Nadav Rotem7cc6d122011-02-17 21:22:27 +0000211
212 if (Ty->isFloatingPointTy()) {
213 APFloat FL = APFloat::getAllOnesValue(Ty->getPrimitiveSizeInBits(),
214 !Ty->isPPC_FP128Ty());
215 return ConstantFP::get(Ty->getContext(), FL);
216 }
217
Chris Lattner229907c2011-07-18 04:54:35 +0000218 VectorType *VTy = cast<VectorType>(Ty);
Chris Lattnere9eed292012-01-25 05:19:54 +0000219 return ConstantVector::getSplat(VTy->getNumElements(),
220 getAllOnesValue(VTy->getElementType()));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000221}
222
Chris Lattner7e683d12012-01-25 06:16:32 +0000223/// getAggregateElement - For aggregates (struct/array/vector) return the
224/// constant that corresponds to the specified element if possible, or null if
225/// not. This can return null if the element index is a ConstantExpr, or if
226/// 'this' is a constant expr.
227Constant *Constant::getAggregateElement(unsigned Elt) const {
228 if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(this))
Craig Topperc6207612014-04-09 06:08:46 +0000229 return Elt < CS->getNumOperands() ? CS->getOperand(Elt) : nullptr;
Galina Kistanovafc259902012-07-13 01:25:27 +0000230
Chris Lattner7e683d12012-01-25 06:16:32 +0000231 if (const ConstantArray *CA = dyn_cast<ConstantArray>(this))
Craig Topperc6207612014-04-09 06:08:46 +0000232 return Elt < CA->getNumOperands() ? CA->getOperand(Elt) : nullptr;
Galina Kistanovafc259902012-07-13 01:25:27 +0000233
Chris Lattner7e683d12012-01-25 06:16:32 +0000234 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
Craig Topperc6207612014-04-09 06:08:46 +0000235 return Elt < CV->getNumOperands() ? CV->getOperand(Elt) : nullptr;
Galina Kistanovafc259902012-07-13 01:25:27 +0000236
Chris Lattner7e683d12012-01-25 06:16:32 +0000237 if (const ConstantAggregateZero *CAZ =dyn_cast<ConstantAggregateZero>(this))
238 return CAZ->getElementValue(Elt);
Galina Kistanovafc259902012-07-13 01:25:27 +0000239
Chris Lattner7e683d12012-01-25 06:16:32 +0000240 if (const UndefValue *UV = dyn_cast<UndefValue>(this))
241 return UV->getElementValue(Elt);
Galina Kistanovafc259902012-07-13 01:25:27 +0000242
Chris Lattner8326bd82012-01-26 00:42:34 +0000243 if (const ConstantDataSequential *CDS =dyn_cast<ConstantDataSequential>(this))
Craig Topperc6207612014-04-09 06:08:46 +0000244 return Elt < CDS->getNumElements() ? CDS->getElementAsConstant(Elt)
245 : nullptr;
246 return nullptr;
Chris Lattner7e683d12012-01-25 06:16:32 +0000247}
248
249Constant *Constant::getAggregateElement(Constant *Elt) const {
250 assert(isa<IntegerType>(Elt->getType()) && "Index must be an integer");
251 if (ConstantInt *CI = dyn_cast<ConstantInt>(Elt))
252 return getAggregateElement(CI->getZExtValue());
Craig Topperc6207612014-04-09 06:08:46 +0000253 return nullptr;
Chris Lattner7e683d12012-01-25 06:16:32 +0000254}
255
256
Chris Lattner3462ae32001-12-03 22:26:30 +0000257void Constant::destroyConstantImpl() {
258 // When a Constant is destroyed, there may be lingering
Chris Lattnerd7a73302001-10-13 06:57:33 +0000259 // references to the constant by other constants in the constant pool. These
Misha Brukmanbe372b92003-08-21 22:14:26 +0000260 // constants are implicitly dependent on the module that is being deleted,
Chris Lattnerd7a73302001-10-13 06:57:33 +0000261 // but they don't know that. Because we only find out when the CPV is
262 // deleted, we must now notify all of our users (that should only be
Chris Lattner3462ae32001-12-03 22:26:30 +0000263 // Constants) that they are, in fact, invalid now and should be deleted.
Chris Lattnerd7a73302001-10-13 06:57:33 +0000264 //
265 while (!use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000266 Value *V = user_back();
Chris Lattnerd7a73302001-10-13 06:57:33 +0000267#ifndef NDEBUG // Only in -g mode...
Chris Lattner78683a72009-08-23 04:02:03 +0000268 if (!isa<Constant>(V)) {
David Greene1e27a132010-01-05 01:29:19 +0000269 dbgs() << "While deleting: " << *this
Chris Lattner78683a72009-08-23 04:02:03 +0000270 << "\n\nUse still stuck around after Def is destroyed: "
271 << *V << "\n\n";
272 }
Chris Lattnerd7a73302001-10-13 06:57:33 +0000273#endif
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000274 assert(isa<Constant>(V) && "References remain to Constant being destroyed");
Chris Lattner8326bd82012-01-26 00:42:34 +0000275 cast<Constant>(V)->destroyConstant();
Chris Lattnerd7a73302001-10-13 06:57:33 +0000276
277 // The constant should remove itself from our use list...
Chandler Carruthcdf47882014-03-09 03:16:01 +0000278 assert((use_empty() || user_back() != V) && "Constant not removed!");
Chris Lattnerd7a73302001-10-13 06:57:33 +0000279 }
280
281 // Value has no outstanding references it is safe to delete it now...
282 delete this;
Chris Lattner38569342001-10-01 20:11:19 +0000283}
Chris Lattner2f7c9632001-06-06 20:29:01 +0000284
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +0000285static bool canTrapImpl(const Constant *C,
Craig Topper62306912014-08-18 00:24:38 +0000286 SmallPtrSet<const ConstantExpr *, 4> &NonTrappingOps) {
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +0000287 assert(C->getType()->isFirstClassType() && "Cannot evaluate aggregate vals!");
Chris Lattner23dd1f62006-10-20 00:27:06 +0000288 // The only thing that could possibly trap are constant exprs.
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +0000289 const ConstantExpr *CE = dyn_cast<ConstantExpr>(C);
290 if (!CE)
291 return false;
Galina Kistanovafc259902012-07-13 01:25:27 +0000292
293 // ConstantExpr traps if any operands can trap.
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +0000294 for (unsigned i = 0, e = C->getNumOperands(); i != e; ++i) {
295 if (ConstantExpr *Op = dyn_cast<ConstantExpr>(CE->getOperand(i))) {
296 if (NonTrappingOps.insert(Op) && canTrapImpl(Op, NonTrappingOps))
297 return true;
298 }
299 }
Chris Lattner23dd1f62006-10-20 00:27:06 +0000300
301 // Otherwise, only specific operations can trap.
302 switch (CE->getOpcode()) {
303 default:
304 return false;
Reid Spencer7e80b0b2006-10-26 06:15:43 +0000305 case Instruction::UDiv:
306 case Instruction::SDiv:
307 case Instruction::FDiv:
Reid Spencer7eb55b32006-11-02 01:53:59 +0000308 case Instruction::URem:
309 case Instruction::SRem:
310 case Instruction::FRem:
Chris Lattner23dd1f62006-10-20 00:27:06 +0000311 // Div and rem can trap if the RHS is not known to be non-zero.
Chris Lattnera91a5632009-10-28 05:14:34 +0000312 if (!isa<ConstantInt>(CE->getOperand(1)) ||CE->getOperand(1)->isNullValue())
Chris Lattner23dd1f62006-10-20 00:27:06 +0000313 return true;
314 return false;
315 }
316}
317
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +0000318/// canTrap - Return true if evaluation of this constant could trap. This is
319/// true for things like constant expressions that could divide by zero.
320bool Constant::canTrap() const {
321 SmallPtrSet<const ConstantExpr *, 4> NonTrappingOps;
322 return canTrapImpl(this, NonTrappingOps);
323}
324
Hans Wennborg4dc89512014-06-20 00:38:12 +0000325/// Check if C contains a GlobalValue for which Predicate is true.
326static bool
327ConstHasGlobalValuePredicate(const Constant *C,
328 bool (*Predicate)(const GlobalValue *)) {
329 SmallPtrSet<const Constant *, 8> Visited;
330 SmallVector<const Constant *, 8> WorkList;
331 WorkList.push_back(C);
332 Visited.insert(C);
Hans Wennborg709e0152012-11-15 11:40:00 +0000333
334 while (!WorkList.empty()) {
Hans Wennborg4dc89512014-06-20 00:38:12 +0000335 const Constant *WorkItem = WorkList.pop_back_val();
336 if (const auto *GV = dyn_cast<GlobalValue>(WorkItem))
337 if (Predicate(GV))
Hans Wennborg709e0152012-11-15 11:40:00 +0000338 return true;
Hans Wennborg4dc89512014-06-20 00:38:12 +0000339 for (const Value *Op : WorkItem->operands()) {
340 const Constant *ConstOp = dyn_cast<Constant>(Op);
341 if (!ConstOp)
Hans Wennborg18aa12402012-11-16 10:33:25 +0000342 continue;
Hans Wennborg4dc89512014-06-20 00:38:12 +0000343 if (Visited.insert(ConstOp))
344 WorkList.push_back(ConstOp);
Hans Wennborg709e0152012-11-15 11:40:00 +0000345 }
346 }
Hans Wennborg709e0152012-11-15 11:40:00 +0000347 return false;
348}
349
Hans Wennborg4dc89512014-06-20 00:38:12 +0000350/// Return true if the value can vary between threads.
351bool Constant::isThreadDependent() const {
352 auto DLLImportPredicate = [](const GlobalValue *GV) {
353 return GV->isThreadLocal();
354 };
355 return ConstHasGlobalValuePredicate(this, DLLImportPredicate);
356}
357
358bool Constant::isDLLImportDependent() const {
359 auto DLLImportPredicate = [](const GlobalValue *GV) {
360 return GV->hasDLLImportStorageClass();
361 };
362 return ConstHasGlobalValuePredicate(this, DLLImportPredicate);
363}
364
365/// Return true if the constant has users other than constant exprs and other
366/// dangling things.
Chris Lattner253bc772009-11-01 18:11:50 +0000367bool Constant::isConstantUsed() const {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000368 for (const User *U : users()) {
369 const Constant *UC = dyn_cast<Constant>(U);
Craig Topperc6207612014-04-09 06:08:46 +0000370 if (!UC || isa<GlobalValue>(UC))
Chris Lattner253bc772009-11-01 18:11:50 +0000371 return true;
Galina Kistanovafc259902012-07-13 01:25:27 +0000372
Chris Lattner253bc772009-11-01 18:11:50 +0000373 if (UC->isConstantUsed())
374 return true;
375 }
376 return false;
377}
378
379
Chris Lattner4565ef52009-07-22 00:05:44 +0000380
381/// getRelocationInfo - This method classifies the entry according to
382/// whether or not it may generate a relocation entry. This must be
383/// conservative, so if it might codegen to a relocatable entry, it should say
384/// so. The return values are:
385///
Chris Lattner5cd4dd32009-07-24 03:27:21 +0000386/// NoRelocation: This constant pool entry is guaranteed to never have a
387/// relocation applied to it (because it holds a simple constant like
388/// '4').
389/// LocalRelocation: This entry has relocations, but the entries are
390/// guaranteed to be resolvable by the static linker, so the dynamic
391/// linker will never see them.
392/// GlobalRelocations: This entry may have arbitrary relocations.
Chris Lattner4565ef52009-07-22 00:05:44 +0000393///
Chandler Carruthef860a22013-01-02 09:10:48 +0000394/// FIXME: This really should not be in IR.
Chris Lattner5cd4dd32009-07-24 03:27:21 +0000395Constant::PossibleRelocationsTy Constant::getRelocationInfo() const {
396 if (const GlobalValue *GV = dyn_cast<GlobalValue>(this)) {
Chris Lattner4565ef52009-07-22 00:05:44 +0000397 if (GV->hasLocalLinkage() || GV->hasHiddenVisibility())
Chris Lattner5cd4dd32009-07-24 03:27:21 +0000398 return LocalRelocation; // Local to this file/library.
399 return GlobalRelocations; // Global reference.
Anton Korobeynikov7437b592009-03-29 17:13:18 +0000400 }
Chris Lattner4565ef52009-07-22 00:05:44 +0000401
Chris Lattner2cb85b42009-10-28 04:12:16 +0000402 if (const BlockAddress *BA = dyn_cast<BlockAddress>(this))
403 return BA->getFunction()->getRelocationInfo();
404
Chris Lattnera7cfc432010-01-03 18:09:40 +0000405 // While raw uses of blockaddress need to be relocated, differences between
406 // two of them don't when they are for labels in the same function. This is a
407 // common idiom when creating a table for the indirect goto extension, so we
408 // handle it efficiently here.
409 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(this))
410 if (CE->getOpcode() == Instruction::Sub) {
411 ConstantExpr *LHS = dyn_cast<ConstantExpr>(CE->getOperand(0));
412 ConstantExpr *RHS = dyn_cast<ConstantExpr>(CE->getOperand(1));
413 if (LHS && RHS &&
414 LHS->getOpcode() == Instruction::PtrToInt &&
415 RHS->getOpcode() == Instruction::PtrToInt &&
416 isa<BlockAddress>(LHS->getOperand(0)) &&
417 isa<BlockAddress>(RHS->getOperand(0)) &&
418 cast<BlockAddress>(LHS->getOperand(0))->getFunction() ==
419 cast<BlockAddress>(RHS->getOperand(0))->getFunction())
420 return NoRelocation;
421 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000422
Chris Lattner5cd4dd32009-07-24 03:27:21 +0000423 PossibleRelocationsTy Result = NoRelocation;
Evan Chengf9e003b2007-03-08 00:59:12 +0000424 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Chris Lattnera91a5632009-10-28 05:14:34 +0000425 Result = std::max(Result,
426 cast<Constant>(getOperand(i))->getRelocationInfo());
Galina Kistanovafc259902012-07-13 01:25:27 +0000427
Chris Lattner4565ef52009-07-22 00:05:44 +0000428 return Result;
Evan Chengf9e003b2007-03-08 00:59:12 +0000429}
430
Chris Lattner84886402011-02-18 04:41:42 +0000431/// removeDeadUsersOfConstant - If the specified constantexpr is dead, remove
432/// it. This involves recursively eliminating any dead users of the
433/// constantexpr.
434static bool removeDeadUsersOfConstant(const Constant *C) {
435 if (isa<GlobalValue>(C)) return false; // Cannot remove this
Galina Kistanovafc259902012-07-13 01:25:27 +0000436
Chris Lattner84886402011-02-18 04:41:42 +0000437 while (!C->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000438 const Constant *User = dyn_cast<Constant>(C->user_back());
Chris Lattner84886402011-02-18 04:41:42 +0000439 if (!User) return false; // Non-constant usage;
440 if (!removeDeadUsersOfConstant(User))
441 return false; // Constant wasn't dead
442 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000443
Chris Lattner84886402011-02-18 04:41:42 +0000444 const_cast<Constant*>(C)->destroyConstant();
445 return true;
446}
447
448
449/// removeDeadConstantUsers - If there are any dead constant users dangling
450/// off of this constant, remove them. This method is useful for clients
451/// that want to check to see if a global is unused, but don't want to deal
452/// with potentially dead constants hanging off of the globals.
453void Constant::removeDeadConstantUsers() const {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000454 Value::const_user_iterator I = user_begin(), E = user_end();
455 Value::const_user_iterator LastNonDeadUser = E;
Chris Lattner84886402011-02-18 04:41:42 +0000456 while (I != E) {
457 const Constant *User = dyn_cast<Constant>(*I);
Craig Topperc6207612014-04-09 06:08:46 +0000458 if (!User) {
Chris Lattner84886402011-02-18 04:41:42 +0000459 LastNonDeadUser = I;
460 ++I;
461 continue;
462 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000463
Chris Lattner84886402011-02-18 04:41:42 +0000464 if (!removeDeadUsersOfConstant(User)) {
465 // If the constant wasn't dead, remember that this was the last live use
466 // and move on to the next constant.
467 LastNonDeadUser = I;
468 ++I;
469 continue;
470 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000471
Chris Lattner84886402011-02-18 04:41:42 +0000472 // If the constant was dead, then the iterator is invalidated.
473 if (LastNonDeadUser == E) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000474 I = user_begin();
Chris Lattner84886402011-02-18 04:41:42 +0000475 if (I == E) break;
476 } else {
477 I = LastNonDeadUser;
478 ++I;
479 }
480 }
481}
482
483
Chris Lattner2105d662008-07-10 00:28:11 +0000484
Chris Lattner2f7c9632001-06-06 20:29:01 +0000485//===----------------------------------------------------------------------===//
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000486// ConstantInt
Chris Lattner2f7c9632001-06-06 20:29:01 +0000487//===----------------------------------------------------------------------===//
488
David Blaikiea379b1812011-12-20 02:50:00 +0000489void ConstantInt::anchor() { }
490
Chris Lattner229907c2011-07-18 04:54:35 +0000491ConstantInt::ConstantInt(IntegerType *Ty, const APInt& V)
Craig Topperc6207612014-04-09 06:08:46 +0000492 : Constant(Ty, ConstantIntVal, nullptr, 0), Val(V) {
Reid Spencerb31bffe2007-02-26 23:54:03 +0000493 assert(V.getBitWidth() == Ty->getBitWidth() && "Invalid constant for type");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000494}
495
Nick Lewycky92db8e82011-03-06 03:36:19 +0000496ConstantInt *ConstantInt::getTrue(LLVMContext &Context) {
Owen Anderson23a204d2009-07-31 17:39:07 +0000497 LLVMContextImpl *pImpl = Context.pImpl;
Benjamin Kramerddd1b7b2010-11-20 18:43:35 +0000498 if (!pImpl->TheTrueVal)
499 pImpl->TheTrueVal = ConstantInt::get(Type::getInt1Ty(Context), 1);
500 return pImpl->TheTrueVal;
Owen Anderson23a204d2009-07-31 17:39:07 +0000501}
502
Nick Lewycky92db8e82011-03-06 03:36:19 +0000503ConstantInt *ConstantInt::getFalse(LLVMContext &Context) {
Owen Anderson23a204d2009-07-31 17:39:07 +0000504 LLVMContextImpl *pImpl = Context.pImpl;
Benjamin Kramerddd1b7b2010-11-20 18:43:35 +0000505 if (!pImpl->TheFalseVal)
506 pImpl->TheFalseVal = ConstantInt::get(Type::getInt1Ty(Context), 0);
507 return pImpl->TheFalseVal;
Owen Anderson23a204d2009-07-31 17:39:07 +0000508}
509
Chris Lattner229907c2011-07-18 04:54:35 +0000510Constant *ConstantInt::getTrue(Type *Ty) {
511 VectorType *VTy = dyn_cast<VectorType>(Ty);
Nick Lewycky92db8e82011-03-06 03:36:19 +0000512 if (!VTy) {
513 assert(Ty->isIntegerTy(1) && "True must be i1 or vector of i1.");
514 return ConstantInt::getTrue(Ty->getContext());
515 }
516 assert(VTy->getElementType()->isIntegerTy(1) &&
517 "True must be vector of i1 or i1.");
Chris Lattnere9eed292012-01-25 05:19:54 +0000518 return ConstantVector::getSplat(VTy->getNumElements(),
519 ConstantInt::getTrue(Ty->getContext()));
Nick Lewycky92db8e82011-03-06 03:36:19 +0000520}
521
Chris Lattner229907c2011-07-18 04:54:35 +0000522Constant *ConstantInt::getFalse(Type *Ty) {
523 VectorType *VTy = dyn_cast<VectorType>(Ty);
Nick Lewycky92db8e82011-03-06 03:36:19 +0000524 if (!VTy) {
525 assert(Ty->isIntegerTy(1) && "False must be i1 or vector of i1.");
526 return ConstantInt::getFalse(Ty->getContext());
527 }
528 assert(VTy->getElementType()->isIntegerTy(1) &&
529 "False must be vector of i1 or i1.");
Chris Lattnere9eed292012-01-25 05:19:54 +0000530 return ConstantVector::getSplat(VTy->getNumElements(),
531 ConstantInt::getFalse(Ty->getContext()));
Nick Lewycky92db8e82011-03-06 03:36:19 +0000532}
533
Owen Anderson23a204d2009-07-31 17:39:07 +0000534
Owen Andersonedb4a702009-07-24 23:12:02 +0000535// Get a ConstantInt from an APInt. Note that the value stored in the DenseMap
536// as the key, is a DenseMapAPIntKeyInfo::KeyTy which has provided the
537// operator== and operator!= to ensure that the DenseMap doesn't attempt to
538// compare APInt's of different widths, which would violate an APInt class
539// invariant which generates an assertion.
Nick Lewycky92db8e82011-03-06 03:36:19 +0000540ConstantInt *ConstantInt::get(LLVMContext &Context, const APInt &V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000541 // Get the corresponding integer type for the bit width of the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000542 IntegerType *ITy = IntegerType::get(Context, V.getBitWidth());
Owen Andersonedb4a702009-07-24 23:12:02 +0000543 // get an existing value or the insertion position
Benjamin Kramer320682f2013-06-01 17:51:03 +0000544 LLVMContextImpl *pImpl = Context.pImpl;
545 ConstantInt *&Slot = pImpl->IntConstants[DenseMapAPIntKeyInfo::KeyTy(V, ITy)];
Owen Anderson5dab84c2009-10-19 20:11:52 +0000546 if (!Slot) Slot = new ConstantInt(ITy, V);
547 return Slot;
Owen Andersonedb4a702009-07-24 23:12:02 +0000548}
549
Chris Lattner229907c2011-07-18 04:54:35 +0000550Constant *ConstantInt::get(Type *Ty, uint64_t V, bool isSigned) {
Nick Lewycky92db8e82011-03-06 03:36:19 +0000551 Constant *C = get(cast<IntegerType>(Ty->getScalarType()), V, isSigned);
Owen Andersonedb4a702009-07-24 23:12:02 +0000552
553 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000554 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000555 return ConstantVector::getSplat(VTy->getNumElements(), C);
Owen Andersonedb4a702009-07-24 23:12:02 +0000556
557 return C;
558}
559
Chris Lattner0256be92012-01-27 03:08:05 +0000560ConstantInt *ConstantInt::get(IntegerType *Ty, uint64_t V,
Owen Andersonedb4a702009-07-24 23:12:02 +0000561 bool isSigned) {
562 return get(Ty->getContext(), APInt(Ty->getBitWidth(), V, isSigned));
563}
564
Chris Lattner0256be92012-01-27 03:08:05 +0000565ConstantInt *ConstantInt::getSigned(IntegerType *Ty, int64_t V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000566 return get(Ty, V, true);
567}
568
Chris Lattner229907c2011-07-18 04:54:35 +0000569Constant *ConstantInt::getSigned(Type *Ty, int64_t V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000570 return get(Ty, V, true);
571}
572
Chris Lattner0256be92012-01-27 03:08:05 +0000573Constant *ConstantInt::get(Type *Ty, const APInt& V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000574 ConstantInt *C = get(Ty->getContext(), V);
575 assert(C->getType() == Ty->getScalarType() &&
576 "ConstantInt type doesn't match the type implied by its value!");
577
578 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000579 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000580 return ConstantVector::getSplat(VTy->getNumElements(), C);
Owen Andersonedb4a702009-07-24 23:12:02 +0000581
582 return C;
583}
584
Chris Lattner0256be92012-01-27 03:08:05 +0000585ConstantInt *ConstantInt::get(IntegerType* Ty, StringRef Str,
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000586 uint8_t radix) {
587 return get(Ty->getContext(), APInt(Ty->getBitWidth(), Str, radix));
588}
589
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000590//===----------------------------------------------------------------------===//
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000591// ConstantFP
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000592//===----------------------------------------------------------------------===//
593
Chris Lattner229907c2011-07-18 04:54:35 +0000594static const fltSemantics *TypeToFloatSemantics(Type *Ty) {
Dan Gohman518cda42011-12-17 00:04:22 +0000595 if (Ty->isHalfTy())
596 return &APFloat::IEEEhalf;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000597 if (Ty->isFloatTy())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000598 return &APFloat::IEEEsingle;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000599 if (Ty->isDoubleTy())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000600 return &APFloat::IEEEdouble;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000601 if (Ty->isX86_FP80Ty())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000602 return &APFloat::x87DoubleExtended;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000603 else if (Ty->isFP128Ty())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000604 return &APFloat::IEEEquad;
Galina Kistanovafc259902012-07-13 01:25:27 +0000605
Chris Lattnerfdd87902009-10-05 05:54:46 +0000606 assert(Ty->isPPC_FP128Ty() && "Unknown FP format");
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000607 return &APFloat::PPCDoubleDouble;
608}
609
David Blaikiea379b1812011-12-20 02:50:00 +0000610void ConstantFP::anchor() { }
611
Owen Anderson69c464d2009-07-27 20:59:43 +0000612/// get() - This returns a constant fp for the specified value in the
613/// specified type. This should only be used for simple constant values like
614/// 2.0/1.0 etc, that are known-valid both as double and as the target format.
Chris Lattner0256be92012-01-27 03:08:05 +0000615Constant *ConstantFP::get(Type *Ty, double V) {
Owen Anderson69c464d2009-07-27 20:59:43 +0000616 LLVMContext &Context = Ty->getContext();
Galina Kistanovafc259902012-07-13 01:25:27 +0000617
Owen Anderson69c464d2009-07-27 20:59:43 +0000618 APFloat FV(V);
619 bool ignored;
620 FV.convert(*TypeToFloatSemantics(Ty->getScalarType()),
621 APFloat::rmNearestTiesToEven, &ignored);
622 Constant *C = get(Context, FV);
623
624 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000625 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000626 return ConstantVector::getSplat(VTy->getNumElements(), C);
Owen Anderson69c464d2009-07-27 20:59:43 +0000627
628 return C;
629}
630
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000631
Chris Lattner0256be92012-01-27 03:08:05 +0000632Constant *ConstantFP::get(Type *Ty, StringRef Str) {
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000633 LLVMContext &Context = Ty->getContext();
634
635 APFloat FV(*TypeToFloatSemantics(Ty->getScalarType()), Str);
636 Constant *C = get(Context, FV);
637
638 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000639 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000640 return ConstantVector::getSplat(VTy->getNumElements(), C);
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000641
642 return C;
643}
644
Benjamin Kramer5d2ff222014-01-18 16:43:06 +0000645Constant *ConstantFP::getNegativeZero(Type *Ty) {
646 const fltSemantics &Semantics = *TypeToFloatSemantics(Ty->getScalarType());
647 APFloat NegZero = APFloat::getZero(Semantics, /*Negative=*/true);
648 Constant *C = get(Ty->getContext(), NegZero);
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000649
Benjamin Kramer5d2ff222014-01-18 16:43:06 +0000650 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
651 return ConstantVector::getSplat(VTy->getNumElements(), C);
652
653 return C;
Owen Anderson69c464d2009-07-27 20:59:43 +0000654}
655
656
Chris Lattnere9eed292012-01-25 05:19:54 +0000657Constant *ConstantFP::getZeroValueForNegation(Type *Ty) {
Benjamin Kramer5d2ff222014-01-18 16:43:06 +0000658 if (Ty->isFPOrFPVectorTy())
659 return getNegativeZero(Ty);
Owen Anderson69c464d2009-07-27 20:59:43 +0000660
Owen Anderson5a1acd92009-07-31 20:28:14 +0000661 return Constant::getNullValue(Ty);
Owen Anderson69c464d2009-07-27 20:59:43 +0000662}
663
664
665// ConstantFP accessors.
666ConstantFP* ConstantFP::get(LLVMContext &Context, const APFloat& V) {
Owen Anderson69c464d2009-07-27 20:59:43 +0000667 LLVMContextImpl* pImpl = Context.pImpl;
Galina Kistanovafc259902012-07-13 01:25:27 +0000668
Benjamin Kramer320682f2013-06-01 17:51:03 +0000669 ConstantFP *&Slot = pImpl->FPConstants[DenseMapAPFloatKeyInfo::KeyTy(V)];
Galina Kistanovafc259902012-07-13 01:25:27 +0000670
Owen Anderson69c464d2009-07-27 20:59:43 +0000671 if (!Slot) {
Chris Lattner229907c2011-07-18 04:54:35 +0000672 Type *Ty;
Dan Gohman518cda42011-12-17 00:04:22 +0000673 if (&V.getSemantics() == &APFloat::IEEEhalf)
674 Ty = Type::getHalfTy(Context);
675 else if (&V.getSemantics() == &APFloat::IEEEsingle)
Owen Anderson5dab84c2009-10-19 20:11:52 +0000676 Ty = Type::getFloatTy(Context);
677 else if (&V.getSemantics() == &APFloat::IEEEdouble)
678 Ty = Type::getDoubleTy(Context);
679 else if (&V.getSemantics() == &APFloat::x87DoubleExtended)
680 Ty = Type::getX86_FP80Ty(Context);
681 else if (&V.getSemantics() == &APFloat::IEEEquad)
682 Ty = Type::getFP128Ty(Context);
683 else {
684 assert(&V.getSemantics() == &APFloat::PPCDoubleDouble &&
685 "Unknown FP format");
686 Ty = Type::getPPC_FP128Ty(Context);
Owen Anderson69c464d2009-07-27 20:59:43 +0000687 }
Owen Anderson5dab84c2009-10-19 20:11:52 +0000688 Slot = new ConstantFP(Ty, V);
Owen Anderson69c464d2009-07-27 20:59:43 +0000689 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000690
Owen Anderson69c464d2009-07-27 20:59:43 +0000691 return Slot;
692}
693
Benjamin Kramer5d2ff222014-01-18 16:43:06 +0000694Constant *ConstantFP::getInfinity(Type *Ty, bool Negative) {
695 const fltSemantics &Semantics = *TypeToFloatSemantics(Ty->getScalarType());
696 Constant *C = get(Ty->getContext(), APFloat::getInf(Semantics, Negative));
697
698 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
699 return ConstantVector::getSplat(VTy->getNumElements(), C);
700
701 return C;
Dan Gohmanfeb50212009-09-25 23:00:48 +0000702}
703
Chris Lattner229907c2011-07-18 04:54:35 +0000704ConstantFP::ConstantFP(Type *Ty, const APFloat& V)
Craig Topperc6207612014-04-09 06:08:46 +0000705 : Constant(Ty, ConstantFPVal, nullptr, 0), Val(V) {
Chris Lattner98bd9392008-04-09 06:38:30 +0000706 assert(&V.getSemantics() == TypeToFloatSemantics(Ty) &&
707 "FP type Mismatch");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000708}
709
Chris Lattnerbe6610c2011-07-15 06:14:08 +0000710bool ConstantFP::isExactlyValue(const APFloat &V) const {
Dale Johannesend246b2c2007-08-30 00:23:21 +0000711 return Val.bitwiseIsEqual(V);
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000712}
713
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000714//===----------------------------------------------------------------------===//
Chris Lattner030af792012-01-24 05:42:11 +0000715// ConstantAggregateZero Implementation
716//===----------------------------------------------------------------------===//
717
718/// getSequentialElement - If this CAZ has array or vector type, return a zero
719/// with the right element type.
Chris Lattner7e683d12012-01-25 06:16:32 +0000720Constant *ConstantAggregateZero::getSequentialElement() const {
Chris Lattner8326bd82012-01-26 00:42:34 +0000721 return Constant::getNullValue(getType()->getSequentialElementType());
Chris Lattner030af792012-01-24 05:42:11 +0000722}
723
724/// getStructElement - If this CAZ has struct type, return a zero with the
725/// right element type for the specified element.
Chris Lattner7e683d12012-01-25 06:16:32 +0000726Constant *ConstantAggregateZero::getStructElement(unsigned Elt) const {
Chris Lattner8326bd82012-01-26 00:42:34 +0000727 return Constant::getNullValue(getType()->getStructElementType(Elt));
Chris Lattner030af792012-01-24 05:42:11 +0000728}
729
730/// getElementValue - Return a zero of the right value for the specified GEP
731/// index if we can, otherwise return null (e.g. if C is a ConstantExpr).
Chris Lattner7e683d12012-01-25 06:16:32 +0000732Constant *ConstantAggregateZero::getElementValue(Constant *C) const {
Chris Lattner030af792012-01-24 05:42:11 +0000733 if (isa<SequentialType>(getType()))
734 return getSequentialElement();
735 return getStructElement(cast<ConstantInt>(C)->getZExtValue());
736}
737
Chris Lattnerf7eb5432012-01-24 07:54:10 +0000738/// getElementValue - Return a zero of the right value for the specified GEP
739/// index.
Chris Lattner7e683d12012-01-25 06:16:32 +0000740Constant *ConstantAggregateZero::getElementValue(unsigned Idx) const {
Chris Lattnerf7eb5432012-01-24 07:54:10 +0000741 if (isa<SequentialType>(getType()))
742 return getSequentialElement();
743 return getStructElement(Idx);
744}
745
746
Chris Lattner030af792012-01-24 05:42:11 +0000747//===----------------------------------------------------------------------===//
748// UndefValue Implementation
749//===----------------------------------------------------------------------===//
750
751/// getSequentialElement - If this undef has array or vector type, return an
752/// undef with the right element type.
Chris Lattner7e683d12012-01-25 06:16:32 +0000753UndefValue *UndefValue::getSequentialElement() const {
Chris Lattner8326bd82012-01-26 00:42:34 +0000754 return UndefValue::get(getType()->getSequentialElementType());
Chris Lattner030af792012-01-24 05:42:11 +0000755}
756
757/// getStructElement - If this undef has struct type, return a zero with the
758/// right element type for the specified element.
Chris Lattner7e683d12012-01-25 06:16:32 +0000759UndefValue *UndefValue::getStructElement(unsigned Elt) const {
Chris Lattner8326bd82012-01-26 00:42:34 +0000760 return UndefValue::get(getType()->getStructElementType(Elt));
Chris Lattner030af792012-01-24 05:42:11 +0000761}
762
763/// getElementValue - Return an undef of the right value for the specified GEP
764/// index if we can, otherwise return null (e.g. if C is a ConstantExpr).
Chris Lattner7e683d12012-01-25 06:16:32 +0000765UndefValue *UndefValue::getElementValue(Constant *C) const {
Chris Lattner030af792012-01-24 05:42:11 +0000766 if (isa<SequentialType>(getType()))
767 return getSequentialElement();
768 return getStructElement(cast<ConstantInt>(C)->getZExtValue());
769}
770
Chris Lattnerf7eb5432012-01-24 07:54:10 +0000771/// getElementValue - Return an undef of the right value for the specified GEP
772/// index.
Chris Lattner7e683d12012-01-25 06:16:32 +0000773UndefValue *UndefValue::getElementValue(unsigned Idx) const {
Chris Lattnerf7eb5432012-01-24 07:54:10 +0000774 if (isa<SequentialType>(getType()))
775 return getSequentialElement();
776 return getStructElement(Idx);
777}
778
779
Chris Lattner030af792012-01-24 05:42:11 +0000780
781//===----------------------------------------------------------------------===//
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000782// ConstantXXX Classes
783//===----------------------------------------------------------------------===//
784
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000785template <typename ItTy, typename EltTy>
786static bool rangeOnlyContains(ItTy Start, ItTy End, EltTy Elt) {
787 for (; Start != End; ++Start)
788 if (*Start != Elt)
789 return false;
790 return true;
791}
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000792
Jay Foad89d9b812011-07-25 10:14:44 +0000793ConstantArray::ConstantArray(ArrayType *T, ArrayRef<Constant *> V)
Gabor Greiff6caff662008-05-10 08:32:32 +0000794 : Constant(T, ConstantArrayVal,
795 OperandTraits<ConstantArray>::op_end(this) - V.size(),
796 V.size()) {
Alkis Evlogimenos0507ffe2004-09-15 02:32:15 +0000797 assert(V.size() == T->getNumElements() &&
798 "Invalid initializer vector for constant array");
Jay Foad89d9b812011-07-25 10:14:44 +0000799 for (unsigned i = 0, e = V.size(); i != e; ++i)
800 assert(V[i]->getType() == T->getElementType() &&
Alkis Evlogimenoscb031d92004-09-10 04:16:59 +0000801 "Initializer for array element doesn't match array element type!");
Jay Foad89d9b812011-07-25 10:14:44 +0000802 std::copy(V.begin(), V.end(), op_begin());
Chris Lattner2f7c9632001-06-06 20:29:01 +0000803}
804
Chris Lattner229907c2011-07-18 04:54:35 +0000805Constant *ConstantArray::get(ArrayType *Ty, ArrayRef<Constant*> V) {
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +0000806 if (Constant *C = getImpl(Ty, V))
807 return C;
808 return Ty->getContext().pImpl->ArrayConstants.getOrCreate(Ty, V);
809}
810Constant *ConstantArray::getImpl(ArrayType *Ty, ArrayRef<Constant*> V) {
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000811 // Empty arrays are canonicalized to ConstantAggregateZero.
812 if (V.empty())
813 return ConstantAggregateZero::get(Ty);
814
Jeffrey Yasskin8ce67f82009-09-30 21:08:08 +0000815 for (unsigned i = 0, e = V.size(); i != e; ++i) {
816 assert(V[i]->getType() == Ty->getElementType() &&
817 "Wrong type in array element initializer");
818 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000819
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000820 // If this is an all-zero array, return a ConstantAggregateZero object. If
821 // all undef, return an UndefValue, if "all simple", then return a
822 // ConstantDataArray.
823 Constant *C = V[0];
824 if (isa<UndefValue>(C) && rangeOnlyContains(V.begin(), V.end(), C))
825 return UndefValue::get(Ty);
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000826
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000827 if (C->isNullValue() && rangeOnlyContains(V.begin(), V.end(), C))
828 return ConstantAggregateZero::get(Ty);
829
830 // Check to see if all of the elements are ConstantFP or ConstantInt and if
831 // the element type is compatible with ConstantDataVector. If so, use it.
832 if (ConstantDataSequential::isElementTypeCompatible(C->getType())) {
833 // We speculatively build the elements here even if it turns out that there
834 // is a constantexpr or something else weird in the array, since it is so
835 // uncommon for that to happen.
836 if (ConstantInt *CI = dyn_cast<ConstantInt>(C)) {
837 if (CI->getType()->isIntegerTy(8)) {
838 SmallVector<uint8_t, 16> Elts;
839 for (unsigned i = 0, e = V.size(); i != e; ++i)
840 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
841 Elts.push_back(CI->getZExtValue());
842 else
843 break;
844 if (Elts.size() == V.size())
845 return ConstantDataArray::get(C->getContext(), Elts);
846 } else if (CI->getType()->isIntegerTy(16)) {
847 SmallVector<uint16_t, 16> Elts;
848 for (unsigned i = 0, e = V.size(); i != e; ++i)
849 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
850 Elts.push_back(CI->getZExtValue());
851 else
852 break;
853 if (Elts.size() == V.size())
854 return ConstantDataArray::get(C->getContext(), Elts);
855 } else if (CI->getType()->isIntegerTy(32)) {
856 SmallVector<uint32_t, 16> Elts;
857 for (unsigned i = 0, e = V.size(); i != e; ++i)
858 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
859 Elts.push_back(CI->getZExtValue());
860 else
861 break;
862 if (Elts.size() == V.size())
863 return ConstantDataArray::get(C->getContext(), Elts);
864 } else if (CI->getType()->isIntegerTy(64)) {
865 SmallVector<uint64_t, 16> Elts;
866 for (unsigned i = 0, e = V.size(); i != e; ++i)
867 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
868 Elts.push_back(CI->getZExtValue());
869 else
870 break;
871 if (Elts.size() == V.size())
872 return ConstantDataArray::get(C->getContext(), Elts);
873 }
874 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000875
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000876 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
877 if (CFP->getType()->isFloatTy()) {
878 SmallVector<float, 16> Elts;
879 for (unsigned i = 0, e = V.size(); i != e; ++i)
880 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V[i]))
881 Elts.push_back(CFP->getValueAPF().convertToFloat());
882 else
883 break;
884 if (Elts.size() == V.size())
885 return ConstantDataArray::get(C->getContext(), Elts);
886 } else if (CFP->getType()->isDoubleTy()) {
887 SmallVector<double, 16> Elts;
888 for (unsigned i = 0, e = V.size(); i != e; ++i)
889 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V[i]))
890 Elts.push_back(CFP->getValueAPF().convertToDouble());
891 else
892 break;
893 if (Elts.size() == V.size())
894 return ConstantDataArray::get(C->getContext(), Elts);
895 }
896 }
Owen Andersonc2c79322009-07-28 18:32:17 +0000897 }
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000898
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000899 // Otherwise, we really do want to create a ConstantArray.
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +0000900 return nullptr;
Owen Andersonc2c79322009-07-28 18:32:17 +0000901}
902
Chris Lattnercc19efa2011-06-20 04:01:31 +0000903/// getTypeForElements - Return an anonymous struct type to use for a constant
904/// with the specified set of elements. The list must not be empty.
905StructType *ConstantStruct::getTypeForElements(LLVMContext &Context,
906 ArrayRef<Constant*> V,
907 bool Packed) {
Bill Wendling3ae7dd32012-02-07 01:27:51 +0000908 unsigned VecSize = V.size();
909 SmallVector<Type*, 16> EltTypes(VecSize);
910 for (unsigned i = 0; i != VecSize; ++i)
911 EltTypes[i] = V[i]->getType();
Galina Kistanovafc259902012-07-13 01:25:27 +0000912
Chris Lattnercc19efa2011-06-20 04:01:31 +0000913 return StructType::get(Context, EltTypes, Packed);
914}
915
916
917StructType *ConstantStruct::getTypeForElements(ArrayRef<Constant*> V,
918 bool Packed) {
919 assert(!V.empty() &&
920 "ConstantStruct::getTypeForElements cannot be called on empty list");
921 return getTypeForElements(V[0]->getContext(), V, Packed);
922}
923
924
Jay Foad89d9b812011-07-25 10:14:44 +0000925ConstantStruct::ConstantStruct(StructType *T, ArrayRef<Constant *> V)
Gabor Greiff6caff662008-05-10 08:32:32 +0000926 : Constant(T, ConstantStructVal,
927 OperandTraits<ConstantStruct>::op_end(this) - V.size(),
928 V.size()) {
Chris Lattnerc3e74cd2011-08-07 04:18:48 +0000929 assert(V.size() == T->getNumElements() &&
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000930 "Invalid initializer vector for constant structure");
Jay Foad89d9b812011-07-25 10:14:44 +0000931 for (unsigned i = 0, e = V.size(); i != e; ++i)
932 assert((T->isOpaque() || V[i]->getType() == T->getElementType(i)) &&
Chris Lattner93c8f142003-06-02 17:42:47 +0000933 "Initializer for struct element doesn't match struct element type!");
Jay Foad89d9b812011-07-25 10:14:44 +0000934 std::copy(V.begin(), V.end(), op_begin());
Chris Lattner2f7c9632001-06-06 20:29:01 +0000935}
936
Owen Anderson45308b52009-07-27 22:29:26 +0000937// ConstantStruct accessors.
Chris Lattner229907c2011-07-18 04:54:35 +0000938Constant *ConstantStruct::get(StructType *ST, ArrayRef<Constant*> V) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000939 assert((ST->isOpaque() || ST->getNumElements() == V.size()) &&
940 "Incorrect # elements specified to ConstantStruct::get");
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000941
942 // Create a ConstantAggregateZero value if all elements are zeros.
943 bool isZero = true;
944 bool isUndef = false;
945
946 if (!V.empty()) {
947 isUndef = isa<UndefValue>(V[0]);
948 isZero = V[0]->isNullValue();
949 if (isUndef || isZero) {
950 for (unsigned i = 0, e = V.size(); i != e; ++i) {
951 if (!V[i]->isNullValue())
952 isZero = false;
953 if (!isa<UndefValue>(V[i]))
954 isUndef = false;
955 }
956 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000957 }
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000958 if (isZero)
959 return ConstantAggregateZero::get(ST);
960 if (isUndef)
961 return UndefValue::get(ST);
Galina Kistanovafc259902012-07-13 01:25:27 +0000962
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000963 return ST->getContext().pImpl->StructConstants.getOrCreate(ST, V);
Owen Anderson45308b52009-07-27 22:29:26 +0000964}
965
Chris Lattnerc3e74cd2011-08-07 04:18:48 +0000966Constant *ConstantStruct::get(StructType *T, ...) {
Talin3a0a30d2011-02-28 23:53:27 +0000967 va_list ap;
Chris Lattnercc19efa2011-06-20 04:01:31 +0000968 SmallVector<Constant*, 8> Values;
969 va_start(ap, T);
970 while (Constant *Val = va_arg(ap, llvm::Constant*))
Talin3a0a30d2011-02-28 23:53:27 +0000971 Values.push_back(Val);
Talinde422be2011-03-01 18:00:49 +0000972 va_end(ap);
Chris Lattnercc19efa2011-06-20 04:01:31 +0000973 return get(T, Values);
Talin3a0a30d2011-02-28 23:53:27 +0000974}
975
Jay Foad89d9b812011-07-25 10:14:44 +0000976ConstantVector::ConstantVector(VectorType *T, ArrayRef<Constant *> V)
Gabor Greiff6caff662008-05-10 08:32:32 +0000977 : Constant(T, ConstantVectorVal,
978 OperandTraits<ConstantVector>::op_end(this) - V.size(),
979 V.size()) {
Jay Foad89d9b812011-07-25 10:14:44 +0000980 for (size_t i = 0, e = V.size(); i != e; i++)
981 assert(V[i]->getType() == T->getElementType() &&
Dan Gohman30978072007-05-24 14:36:04 +0000982 "Initializer for vector element doesn't match vector element type!");
Jay Foad89d9b812011-07-25 10:14:44 +0000983 std::copy(V.begin(), V.end(), op_begin());
Brian Gaeke02209042004-08-20 06:00:58 +0000984}
985
Owen Anderson4aa32952009-07-28 21:19:26 +0000986// ConstantVector accessors.
Jay Foadb8a8bed32011-06-22 09:10:19 +0000987Constant *ConstantVector::get(ArrayRef<Constant*> V) {
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +0000988 if (Constant *C = getImpl(V))
989 return C;
990 VectorType *Ty = VectorType::get(V.front()->getType(), V.size());
991 return Ty->getContext().pImpl->VectorConstants.getOrCreate(Ty, V);
992}
993Constant *ConstantVector::getImpl(ArrayRef<Constant*> V) {
Jay Foad9f32cfd2011-01-27 14:44:55 +0000994 assert(!V.empty() && "Vectors can't be empty");
Chris Lattner229907c2011-07-18 04:54:35 +0000995 VectorType *T = VectorType::get(V.front()->getType(), V.size());
Jay Foad9f32cfd2011-01-27 14:44:55 +0000996
Chris Lattner69229312011-02-15 00:14:00 +0000997 // If this is an all-undef or all-zero vector, return a
Owen Anderson4aa32952009-07-28 21:19:26 +0000998 // ConstantAggregateZero or UndefValue.
999 Constant *C = V[0];
1000 bool isZero = C->isNullValue();
1001 bool isUndef = isa<UndefValue>(C);
1002
1003 if (isZero || isUndef) {
1004 for (unsigned i = 1, e = V.size(); i != e; ++i)
1005 if (V[i] != C) {
1006 isZero = isUndef = false;
1007 break;
1008 }
1009 }
Galina Kistanovafc259902012-07-13 01:25:27 +00001010
Owen Anderson4aa32952009-07-28 21:19:26 +00001011 if (isZero)
Owen Andersonb292b8c2009-07-30 23:03:37 +00001012 return ConstantAggregateZero::get(T);
Owen Anderson4aa32952009-07-28 21:19:26 +00001013 if (isUndef)
Owen Andersonb292b8c2009-07-30 23:03:37 +00001014 return UndefValue::get(T);
Galina Kistanovafc259902012-07-13 01:25:27 +00001015
Chris Lattner978fe0c2012-01-30 06:21:21 +00001016 // Check to see if all of the elements are ConstantFP or ConstantInt and if
1017 // the element type is compatible with ConstantDataVector. If so, use it.
Chris Lattnercf9e8f62012-02-05 02:29:43 +00001018 if (ConstantDataSequential::isElementTypeCompatible(C->getType())) {
Chris Lattner978fe0c2012-01-30 06:21:21 +00001019 // We speculatively build the elements here even if it turns out that there
1020 // is a constantexpr or something else weird in the array, since it is so
1021 // uncommon for that to happen.
1022 if (ConstantInt *CI = dyn_cast<ConstantInt>(C)) {
1023 if (CI->getType()->isIntegerTy(8)) {
1024 SmallVector<uint8_t, 16> Elts;
1025 for (unsigned i = 0, e = V.size(); i != e; ++i)
1026 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
1027 Elts.push_back(CI->getZExtValue());
1028 else
1029 break;
1030 if (Elts.size() == V.size())
1031 return ConstantDataVector::get(C->getContext(), Elts);
1032 } else if (CI->getType()->isIntegerTy(16)) {
1033 SmallVector<uint16_t, 16> Elts;
1034 for (unsigned i = 0, e = V.size(); i != e; ++i)
1035 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
1036 Elts.push_back(CI->getZExtValue());
1037 else
1038 break;
1039 if (Elts.size() == V.size())
1040 return ConstantDataVector::get(C->getContext(), Elts);
1041 } else if (CI->getType()->isIntegerTy(32)) {
1042 SmallVector<uint32_t, 16> Elts;
1043 for (unsigned i = 0, e = V.size(); i != e; ++i)
1044 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
1045 Elts.push_back(CI->getZExtValue());
1046 else
1047 break;
1048 if (Elts.size() == V.size())
1049 return ConstantDataVector::get(C->getContext(), Elts);
1050 } else if (CI->getType()->isIntegerTy(64)) {
1051 SmallVector<uint64_t, 16> Elts;
1052 for (unsigned i = 0, e = V.size(); i != e; ++i)
1053 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
1054 Elts.push_back(CI->getZExtValue());
1055 else
1056 break;
1057 if (Elts.size() == V.size())
1058 return ConstantDataVector::get(C->getContext(), Elts);
1059 }
1060 }
Galina Kistanovafc259902012-07-13 01:25:27 +00001061
Chris Lattner978fe0c2012-01-30 06:21:21 +00001062 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
1063 if (CFP->getType()->isFloatTy()) {
1064 SmallVector<float, 16> Elts;
1065 for (unsigned i = 0, e = V.size(); i != e; ++i)
1066 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V[i]))
1067 Elts.push_back(CFP->getValueAPF().convertToFloat());
1068 else
1069 break;
1070 if (Elts.size() == V.size())
1071 return ConstantDataVector::get(C->getContext(), Elts);
1072 } else if (CFP->getType()->isDoubleTy()) {
1073 SmallVector<double, 16> Elts;
1074 for (unsigned i = 0, e = V.size(); i != e; ++i)
1075 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V[i]))
1076 Elts.push_back(CFP->getValueAPF().convertToDouble());
1077 else
1078 break;
1079 if (Elts.size() == V.size())
1080 return ConstantDataVector::get(C->getContext(), Elts);
1081 }
1082 }
1083 }
Galina Kistanovafc259902012-07-13 01:25:27 +00001084
Chris Lattner978fe0c2012-01-30 06:21:21 +00001085 // Otherwise, the element type isn't compatible with ConstantDataVector, or
1086 // the operand list constants a ConstantExpr or something else strange.
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00001087 return nullptr;
Owen Anderson4aa32952009-07-28 21:19:26 +00001088}
1089
Chris Lattnere9eed292012-01-25 05:19:54 +00001090Constant *ConstantVector::getSplat(unsigned NumElts, Constant *V) {
Chris Lattner978fe0c2012-01-30 06:21:21 +00001091 // If this splat is compatible with ConstantDataVector, use it instead of
1092 // ConstantVector.
1093 if ((isa<ConstantFP>(V) || isa<ConstantInt>(V)) &&
1094 ConstantDataSequential::isElementTypeCompatible(V->getType()))
1095 return ConstantDataVector::getSplat(NumElts, V);
Galina Kistanovafc259902012-07-13 01:25:27 +00001096
Chris Lattnere9eed292012-01-25 05:19:54 +00001097 SmallVector<Constant*, 32> Elts(NumElts, V);
1098 return get(Elts);
1099}
1100
1101
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001102// Utility function for determining if a ConstantExpr is a CastOp or not. This
1103// can't be inline because we don't want to #include Instruction.h into
1104// Constant.h
1105bool ConstantExpr::isCast() const {
1106 return Instruction::isCast(getOpcode());
1107}
1108
Reid Spenceree3c9912006-12-04 05:19:50 +00001109bool ConstantExpr::isCompare() const {
Nick Lewyckya21d3da2009-07-08 03:04:38 +00001110 return getOpcode() == Instruction::ICmp || getOpcode() == Instruction::FCmp;
Reid Spenceree3c9912006-12-04 05:19:50 +00001111}
1112
Dan Gohman7190d482009-09-10 23:37:55 +00001113bool ConstantExpr::isGEPWithNoNotionalOverIndexing() const {
1114 if (getOpcode() != Instruction::GetElementPtr) return false;
1115
1116 gep_type_iterator GEPI = gep_type_begin(this), E = gep_type_end(this);
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001117 User::const_op_iterator OI = std::next(this->op_begin());
Dan Gohman7190d482009-09-10 23:37:55 +00001118
1119 // Skip the first index, as it has no static limit.
1120 ++GEPI;
1121 ++OI;
1122
1123 // The remaining indices must be compile-time known integers within the
1124 // bounds of the corresponding notional static array types.
1125 for (; GEPI != E; ++GEPI, ++OI) {
1126 ConstantInt *CI = dyn_cast<ConstantInt>(*OI);
1127 if (!CI) return false;
Chris Lattner229907c2011-07-18 04:54:35 +00001128 if (ArrayType *ATy = dyn_cast<ArrayType>(*GEPI))
Dan Gohman7190d482009-09-10 23:37:55 +00001129 if (CI->getValue().getActiveBits() > 64 ||
1130 CI->getZExtValue() >= ATy->getNumElements())
1131 return false;
1132 }
1133
1134 // All the indices checked out.
1135 return true;
1136}
1137
Dan Gohman1ecaf452008-05-31 00:58:22 +00001138bool ConstantExpr::hasIndices() const {
1139 return getOpcode() == Instruction::ExtractValue ||
1140 getOpcode() == Instruction::InsertValue;
1141}
1142
Jay Foad0091fe82011-04-13 15:22:40 +00001143ArrayRef<unsigned> ConstantExpr::getIndices() const {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001144 if (const ExtractValueConstantExpr *EVCE =
1145 dyn_cast<ExtractValueConstantExpr>(this))
1146 return EVCE->Indices;
Dan Gohmana469bdb2008-06-23 16:39:44 +00001147
1148 return cast<InsertValueConstantExpr>(this)->Indices;
Dan Gohman1ecaf452008-05-31 00:58:22 +00001149}
1150
Reid Spencer10fbf0e2006-12-03 05:48:19 +00001151unsigned ConstantExpr::getPredicate() const {
Chris Lattnerd04e32d2011-07-17 06:01:30 +00001152 assert(isCompare());
Chris Lattneref650092007-10-18 16:26:24 +00001153 return ((const CompareConstantExpr*)this)->predicate;
Reid Spencer10fbf0e2006-12-03 05:48:19 +00001154}
Chris Lattner60e0dd72001-10-03 06:12:09 +00001155
Chris Lattner7c1018a2006-07-14 19:37:40 +00001156/// getWithOperandReplaced - Return a constant expression identical to this
1157/// one, but with the specified operand set to the specified value.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001158Constant *
1159ConstantExpr::getWithOperandReplaced(unsigned OpNo, Constant *Op) const {
Chris Lattner7c1018a2006-07-14 19:37:40 +00001160 assert(Op->getType() == getOperand(OpNo)->getType() &&
1161 "Replacing operand with value of different type!");
Chris Lattner227816342006-07-14 22:20:01 +00001162 if (getOperand(OpNo) == Op)
1163 return const_cast<ConstantExpr*>(this);
Chris Lattner37e38352012-01-26 20:37:11 +00001164
1165 SmallVector<Constant*, 8> NewOps;
1166 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
1167 NewOps.push_back(i == OpNo ? Op : getOperand(i));
Galina Kistanovafc259902012-07-13 01:25:27 +00001168
Chris Lattner37e38352012-01-26 20:37:11 +00001169 return getWithOperands(NewOps);
Chris Lattner227816342006-07-14 22:20:01 +00001170}
1171
1172/// getWithOperands - This returns the current constant expression with the
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001173/// operands replaced with the specified values. The specified array must
1174/// have the same number of operands as our current one.
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001175Constant *ConstantExpr::getWithOperands(ArrayRef<Constant *> Ops, Type *Ty,
1176 bool OnlyIfReduced) const {
Jay Foad5c984e562011-04-13 13:46:01 +00001177 assert(Ops.size() == getNumOperands() && "Operand count mismatch!");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001178 bool AnyChange = Ty != getType();
1179 for (unsigned i = 0; i != Ops.size(); ++i)
Chris Lattner227816342006-07-14 22:20:01 +00001180 AnyChange |= Ops[i] != getOperand(i);
Galina Kistanovafc259902012-07-13 01:25:27 +00001181
Chris Lattner227816342006-07-14 22:20:01 +00001182 if (!AnyChange) // No operands changed, return self.
1183 return const_cast<ConstantExpr*>(this);
1184
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001185 Type *OnlyIfReducedTy = OnlyIfReduced ? Ty : nullptr;
Chris Lattner227816342006-07-14 22:20:01 +00001186 switch (getOpcode()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001187 case Instruction::Trunc:
1188 case Instruction::ZExt:
1189 case Instruction::SExt:
1190 case Instruction::FPTrunc:
1191 case Instruction::FPExt:
1192 case Instruction::UIToFP:
1193 case Instruction::SIToFP:
1194 case Instruction::FPToUI:
1195 case Instruction::FPToSI:
1196 case Instruction::PtrToInt:
1197 case Instruction::IntToPtr:
1198 case Instruction::BitCast:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001199 case Instruction::AddrSpaceCast:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001200 return ConstantExpr::getCast(getOpcode(), Ops[0], Ty, OnlyIfReduced);
Chris Lattner227816342006-07-14 22:20:01 +00001201 case Instruction::Select:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001202 return ConstantExpr::getSelect(Ops[0], Ops[1], Ops[2], OnlyIfReducedTy);
Chris Lattner227816342006-07-14 22:20:01 +00001203 case Instruction::InsertElement:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001204 return ConstantExpr::getInsertElement(Ops[0], Ops[1], Ops[2],
1205 OnlyIfReducedTy);
Chris Lattner227816342006-07-14 22:20:01 +00001206 case Instruction::ExtractElement:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001207 return ConstantExpr::getExtractElement(Ops[0], Ops[1], OnlyIfReducedTy);
Chris Lattner37e38352012-01-26 20:37:11 +00001208 case Instruction::InsertValue:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001209 return ConstantExpr::getInsertValue(Ops[0], Ops[1], getIndices(),
1210 OnlyIfReducedTy);
Chris Lattner37e38352012-01-26 20:37:11 +00001211 case Instruction::ExtractValue:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001212 return ConstantExpr::getExtractValue(Ops[0], getIndices(), OnlyIfReducedTy);
Chris Lattner227816342006-07-14 22:20:01 +00001213 case Instruction::ShuffleVector:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001214 return ConstantExpr::getShuffleVector(Ops[0], Ops[1], Ops[2],
1215 OnlyIfReducedTy);
Chris Lattnerb5d70302007-02-19 20:01:23 +00001216 case Instruction::GetElementPtr:
Chris Lattner37e38352012-01-26 20:37:11 +00001217 return ConstantExpr::getGetElementPtr(Ops[0], Ops.slice(1),
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001218 cast<GEPOperator>(this)->isInBounds(),
1219 OnlyIfReducedTy);
Reid Spencer266e42b2006-12-23 06:05:41 +00001220 case Instruction::ICmp:
1221 case Instruction::FCmp:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001222 return ConstantExpr::getCompare(getPredicate(), Ops[0], Ops[1],
1223 OnlyIfReducedTy);
Chris Lattner227816342006-07-14 22:20:01 +00001224 default:
1225 assert(getNumOperands() == 2 && "Must be binary operator?");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001226 return ConstantExpr::get(getOpcode(), Ops[0], Ops[1], SubclassOptionalData,
1227 OnlyIfReducedTy);
Chris Lattner7c1018a2006-07-14 19:37:40 +00001228 }
1229}
1230
Chris Lattner2f7c9632001-06-06 20:29:01 +00001231
1232//===----------------------------------------------------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +00001233// isValueValidForType implementations
1234
Chris Lattner229907c2011-07-18 04:54:35 +00001235bool ConstantInt::isValueValidForType(Type *Ty, uint64_t Val) {
Chris Lattner8326bd82012-01-26 00:42:34 +00001236 unsigned NumBits = Ty->getIntegerBitWidth(); // assert okay
1237 if (Ty->isIntegerTy(1))
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001238 return Val == 0 || Val == 1;
Reid Spencerd7a00d72007-02-05 23:47:56 +00001239 if (NumBits >= 64)
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001240 return true; // always true, has to fit in largest type
1241 uint64_t Max = (1ll << NumBits) - 1;
1242 return Val <= Max;
Reid Spencere7334722006-12-19 01:28:19 +00001243}
1244
Chris Lattner229907c2011-07-18 04:54:35 +00001245bool ConstantInt::isValueValidForType(Type *Ty, int64_t Val) {
Chris Lattner8326bd82012-01-26 00:42:34 +00001246 unsigned NumBits = Ty->getIntegerBitWidth();
1247 if (Ty->isIntegerTy(1))
Reid Spencera94d3942007-01-19 21:13:56 +00001248 return Val == 0 || Val == 1 || Val == -1;
Reid Spencerd7a00d72007-02-05 23:47:56 +00001249 if (NumBits >= 64)
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001250 return true; // always true, has to fit in largest type
1251 int64_t Min = -(1ll << (NumBits-1));
1252 int64_t Max = (1ll << (NumBits-1)) - 1;
1253 return (Val >= Min && Val <= Max);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001254}
1255
Chris Lattner229907c2011-07-18 04:54:35 +00001256bool ConstantFP::isValueValidForType(Type *Ty, const APFloat& Val) {
Dale Johannesend246b2c2007-08-30 00:23:21 +00001257 // convert modifies in place, so make a copy.
1258 APFloat Val2 = APFloat(Val);
Dale Johannesen4f0bd682008-10-09 23:00:39 +00001259 bool losesInfo;
Chris Lattner6b727592004-06-17 18:19:28 +00001260 switch (Ty->getTypeID()) {
Chris Lattner2f7c9632001-06-06 20:29:01 +00001261 default:
1262 return false; // These can't be represented as floating point!
1263
Dale Johannesend246b2c2007-08-30 00:23:21 +00001264 // FIXME rounding mode needs to be more flexible
Dan Gohman518cda42011-12-17 00:04:22 +00001265 case Type::HalfTyID: {
1266 if (&Val2.getSemantics() == &APFloat::IEEEhalf)
1267 return true;
1268 Val2.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven, &losesInfo);
1269 return !losesInfo;
1270 }
Dale Johannesen4f0bd682008-10-09 23:00:39 +00001271 case Type::FloatTyID: {
1272 if (&Val2.getSemantics() == &APFloat::IEEEsingle)
1273 return true;
1274 Val2.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven, &losesInfo);
1275 return !losesInfo;
1276 }
1277 case Type::DoubleTyID: {
Dan Gohman518cda42011-12-17 00:04:22 +00001278 if (&Val2.getSemantics() == &APFloat::IEEEhalf ||
1279 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen4f0bd682008-10-09 23:00:39 +00001280 &Val2.getSemantics() == &APFloat::IEEEdouble)
1281 return true;
1282 Val2.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, &losesInfo);
1283 return !losesInfo;
1284 }
Dale Johannesenbdad8092007-08-09 22:51:36 +00001285 case Type::X86_FP80TyID:
Dan Gohman518cda42011-12-17 00:04:22 +00001286 return &Val2.getSemantics() == &APFloat::IEEEhalf ||
1287 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen028084e2007-09-12 03:30:33 +00001288 &Val2.getSemantics() == &APFloat::IEEEdouble ||
1289 &Val2.getSemantics() == &APFloat::x87DoubleExtended;
Dale Johannesenbdad8092007-08-09 22:51:36 +00001290 case Type::FP128TyID:
Dan Gohman518cda42011-12-17 00:04:22 +00001291 return &Val2.getSemantics() == &APFloat::IEEEhalf ||
1292 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen028084e2007-09-12 03:30:33 +00001293 &Val2.getSemantics() == &APFloat::IEEEdouble ||
1294 &Val2.getSemantics() == &APFloat::IEEEquad;
Dale Johannesen007aa372007-10-11 18:07:22 +00001295 case Type::PPC_FP128TyID:
Dan Gohman518cda42011-12-17 00:04:22 +00001296 return &Val2.getSemantics() == &APFloat::IEEEhalf ||
1297 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen007aa372007-10-11 18:07:22 +00001298 &Val2.getSemantics() == &APFloat::IEEEdouble ||
1299 &Val2.getSemantics() == &APFloat::PPCDoubleDouble;
Chris Lattner2f7c9632001-06-06 20:29:01 +00001300 }
Chris Lattneraa2372562006-05-24 17:04:05 +00001301}
Chris Lattner9655e542001-07-20 19:16:02 +00001302
Chris Lattner030af792012-01-24 05:42:11 +00001303
Chris Lattner49d855c2001-09-07 16:46:31 +00001304//===----------------------------------------------------------------------===//
Chris Lattner49d855c2001-09-07 16:46:31 +00001305// Factory Function Implementation
1306
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001307ConstantAggregateZero *ConstantAggregateZero::get(Type *Ty) {
Chris Lattner13ee7952010-08-28 04:09:24 +00001308 assert((Ty->isStructTy() || Ty->isArrayTy() || Ty->isVectorTy()) &&
Owen Andersonb292b8c2009-07-30 23:03:37 +00001309 "Cannot create an aggregate zero of non-aggregate type!");
1310
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001311 ConstantAggregateZero *&Entry = Ty->getContext().pImpl->CAZConstants[Ty];
Craig Topperc6207612014-04-09 06:08:46 +00001312 if (!Entry)
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001313 Entry = new ConstantAggregateZero(Ty);
Galina Kistanovafc259902012-07-13 01:25:27 +00001314
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001315 return Entry;
Owen Andersonb292b8c2009-07-30 23:03:37 +00001316}
1317
Chris Lattner030af792012-01-24 05:42:11 +00001318/// destroyConstant - Remove the constant from the constant table.
Dan Gohman92b551b2009-03-03 02:55:14 +00001319///
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001320void ConstantAggregateZero::destroyConstant() {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001321 getContext().pImpl->CAZConstants.erase(getType());
Chris Lattner9fba3da2004-02-15 05:53:04 +00001322 destroyConstantImpl();
1323}
1324
Dan Gohman92b551b2009-03-03 02:55:14 +00001325/// destroyConstant - Remove the constant from the constant table...
1326///
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001327void ConstantArray::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001328 getType()->getContext().pImpl->ArrayConstants.remove(this);
Chris Lattner98fa07b2003-05-23 20:03:32 +00001329 destroyConstantImpl();
1330}
1331
Chris Lattner81fabb02002-08-26 17:53:56 +00001332
Chris Lattner3462ae32001-12-03 22:26:30 +00001333//---- ConstantStruct::get() implementation...
Chris Lattner49d855c2001-09-07 16:46:31 +00001334//
Chris Lattnerb50d1352003-10-05 00:17:43 +00001335
Chris Lattnerd7a73302001-10-13 06:57:33 +00001336// destroyConstant - Remove the constant from the constant table...
Chris Lattner883ad0b2001-10-03 15:39:36 +00001337//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001338void ConstantStruct::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001339 getType()->getContext().pImpl->StructConstants.remove(this);
Chris Lattnerd7a73302001-10-13 06:57:33 +00001340 destroyConstantImpl();
1341}
Chris Lattner883ad0b2001-10-03 15:39:36 +00001342
Brian Gaeke02209042004-08-20 06:00:58 +00001343// destroyConstant - Remove the constant from the constant table...
1344//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001345void ConstantVector::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001346 getType()->getContext().pImpl->VectorConstants.remove(this);
Brian Gaeke02209042004-08-20 06:00:58 +00001347 destroyConstantImpl();
1348}
1349
Duncan Sandse6beec62012-11-13 12:59:33 +00001350/// getSplatValue - If this is a splat vector constant, meaning that all of
1351/// the elements have the same value, return that value. Otherwise return 0.
1352Constant *Constant::getSplatValue() const {
1353 assert(this->getType()->isVectorTy() && "Only valid for vectors!");
1354 if (isa<ConstantAggregateZero>(this))
1355 return getNullValue(this->getType()->getVectorElementType());
1356 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this))
1357 return CV->getSplatValue();
1358 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
1359 return CV->getSplatValue();
Craig Topperc6207612014-04-09 06:08:46 +00001360 return nullptr;
Duncan Sandse6beec62012-11-13 12:59:33 +00001361}
1362
Dan Gohman07159202007-10-17 17:51:30 +00001363/// getSplatValue - If this is a splat constant, where all of the
1364/// elements have the same value, return that value. Otherwise return null.
Duncan Sandscf0ff032011-02-01 08:39:12 +00001365Constant *ConstantVector::getSplatValue() const {
Dan Gohman07159202007-10-17 17:51:30 +00001366 // Check out first element.
1367 Constant *Elt = getOperand(0);
1368 // Then make sure all remaining elements point to the same value.
1369 for (unsigned I = 1, E = getNumOperands(); I < E; ++I)
Chris Lattnerd04e32d2011-07-17 06:01:30 +00001370 if (getOperand(I) != Elt)
Craig Topperc6207612014-04-09 06:08:46 +00001371 return nullptr;
Dan Gohman07159202007-10-17 17:51:30 +00001372 return Elt;
1373}
1374
Duncan Sandse6beec62012-11-13 12:59:33 +00001375/// If C is a constant integer then return its value, otherwise C must be a
1376/// vector of constant integers, all equal, and the common value is returned.
1377const APInt &Constant::getUniqueInteger() const {
1378 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
1379 return CI->getValue();
1380 assert(this->getSplatValue() && "Doesn't contain a unique integer!");
1381 const Constant *C = this->getAggregateElement(0U);
1382 assert(C && isa<ConstantInt>(C) && "Not a vector of numbers!");
1383 return cast<ConstantInt>(C)->getValue();
1384}
1385
1386
Chris Lattner31b132c2009-10-28 00:01:44 +00001387//---- ConstantPointerNull::get() implementation.
Chris Lattnerd7a73302001-10-13 06:57:33 +00001388//
Chris Lattner98fa07b2003-05-23 20:03:32 +00001389
Chris Lattner229907c2011-07-18 04:54:35 +00001390ConstantPointerNull *ConstantPointerNull::get(PointerType *Ty) {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001391 ConstantPointerNull *&Entry = Ty->getContext().pImpl->CPNConstants[Ty];
Craig Topperc6207612014-04-09 06:08:46 +00001392 if (!Entry)
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001393 Entry = new ConstantPointerNull(Ty);
Galina Kistanovafc259902012-07-13 01:25:27 +00001394
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001395 return Entry;
Chris Lattner883ad0b2001-10-03 15:39:36 +00001396}
1397
Chris Lattner0c6e0b92002-08-18 00:40:04 +00001398// destroyConstant - Remove the constant from the constant table...
1399//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001400void ConstantPointerNull::destroyConstant() {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001401 getContext().pImpl->CPNConstants.erase(getType());
1402 // Free the constant and any dangling references to it.
Chris Lattner0c6e0b92002-08-18 00:40:04 +00001403 destroyConstantImpl();
1404}
1405
1406
Chris Lattner31b132c2009-10-28 00:01:44 +00001407//---- UndefValue::get() implementation.
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001408//
1409
Chris Lattner229907c2011-07-18 04:54:35 +00001410UndefValue *UndefValue::get(Type *Ty) {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001411 UndefValue *&Entry = Ty->getContext().pImpl->UVConstants[Ty];
Craig Topperc6207612014-04-09 06:08:46 +00001412 if (!Entry)
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001413 Entry = new UndefValue(Ty);
Galina Kistanovafc259902012-07-13 01:25:27 +00001414
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001415 return Entry;
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001416}
1417
1418// destroyConstant - Remove the constant from the constant table.
1419//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001420void UndefValue::destroyConstant() {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001421 // Free the constant and any dangling references to it.
1422 getContext().pImpl->UVConstants.erase(getType());
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001423 destroyConstantImpl();
1424}
1425
Chris Lattner31b132c2009-10-28 00:01:44 +00001426//---- BlockAddress::get() implementation.
1427//
1428
1429BlockAddress *BlockAddress::get(BasicBlock *BB) {
Craig Topper2617dcc2014-04-15 06:32:26 +00001430 assert(BB->getParent() && "Block must have a parent");
Chris Lattner31b132c2009-10-28 00:01:44 +00001431 return get(BB->getParent(), BB);
1432}
1433
1434BlockAddress *BlockAddress::get(Function *F, BasicBlock *BB) {
1435 BlockAddress *&BA =
1436 F->getContext().pImpl->BlockAddresses[std::make_pair(F, BB)];
Craig Topperc6207612014-04-09 06:08:46 +00001437 if (!BA)
Chris Lattner31b132c2009-10-28 00:01:44 +00001438 BA = new BlockAddress(F, BB);
Galina Kistanovafc259902012-07-13 01:25:27 +00001439
Chris Lattner31b132c2009-10-28 00:01:44 +00001440 assert(BA->getFunction() == F && "Basic block moved between functions");
1441 return BA;
1442}
1443
1444BlockAddress::BlockAddress(Function *F, BasicBlock *BB)
1445: Constant(Type::getInt8PtrTy(F->getContext()), Value::BlockAddressVal,
1446 &Op<0>(), 2) {
Chris Lattnerc559a9f2009-11-01 03:03:03 +00001447 setOperand(0, F);
1448 setOperand(1, BB);
Chris Lattneraa99c942009-11-01 01:27:45 +00001449 BB->AdjustBlockAddressRefCount(1);
Chris Lattner31b132c2009-10-28 00:01:44 +00001450}
1451
Chandler Carruth6a936922014-01-19 02:13:50 +00001452BlockAddress *BlockAddress::lookup(const BasicBlock *BB) {
1453 if (!BB->hasAddressTaken())
Craig Topperc6207612014-04-09 06:08:46 +00001454 return nullptr;
Chandler Carruth6a936922014-01-19 02:13:50 +00001455
1456 const Function *F = BB->getParent();
Craig Topper2617dcc2014-04-15 06:32:26 +00001457 assert(F && "Block must have a parent");
Chandler Carruth6a936922014-01-19 02:13:50 +00001458 BlockAddress *BA =
1459 F->getContext().pImpl->BlockAddresses.lookup(std::make_pair(F, BB));
1460 assert(BA && "Refcount and block address map disagree!");
1461 return BA;
1462}
Chris Lattner31b132c2009-10-28 00:01:44 +00001463
1464// destroyConstant - Remove the constant from the constant table.
1465//
1466void BlockAddress::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001467 getFunction()->getType()->getContext().pImpl
Chris Lattner31b132c2009-10-28 00:01:44 +00001468 ->BlockAddresses.erase(std::make_pair(getFunction(), getBasicBlock()));
Chris Lattneraa99c942009-11-01 01:27:45 +00001469 getBasicBlock()->AdjustBlockAddressRefCount(-1);
Chris Lattner31b132c2009-10-28 00:01:44 +00001470 destroyConstantImpl();
1471}
1472
1473void BlockAddress::replaceUsesOfWithOnConstant(Value *From, Value *To, Use *U) {
1474 // This could be replacing either the Basic Block or the Function. In either
1475 // case, we have to remove the map entry.
1476 Function *NewF = getFunction();
1477 BasicBlock *NewBB = getBasicBlock();
Galina Kistanovafc259902012-07-13 01:25:27 +00001478
Chris Lattner31b132c2009-10-28 00:01:44 +00001479 if (U == &Op<0>())
Derek Schuffec9dc012013-06-13 19:51:17 +00001480 NewF = cast<Function>(To->stripPointerCasts());
Chris Lattner31b132c2009-10-28 00:01:44 +00001481 else
1482 NewBB = cast<BasicBlock>(To);
Galina Kistanovafc259902012-07-13 01:25:27 +00001483
Chris Lattner31b132c2009-10-28 00:01:44 +00001484 // See if the 'new' entry already exists, if not, just update this in place
1485 // and return early.
1486 BlockAddress *&NewBA =
1487 getContext().pImpl->BlockAddresses[std::make_pair(NewF, NewBB)];
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00001488 if (NewBA) {
1489 replaceUsesOfWithOnConstantImpl(NewBA);
Chris Lattner31b132c2009-10-28 00:01:44 +00001490 return;
1491 }
1492
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00001493 getBasicBlock()->AdjustBlockAddressRefCount(-1);
Galina Kistanovafc259902012-07-13 01:25:27 +00001494
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00001495 // Remove the old entry, this can't cause the map to rehash (just a
1496 // tombstone will get added).
1497 getContext().pImpl->BlockAddresses.erase(std::make_pair(getFunction(),
1498 getBasicBlock()));
1499 NewBA = this;
1500 setOperand(0, NewF);
1501 setOperand(1, NewBB);
1502 getBasicBlock()->AdjustBlockAddressRefCount(1);
Chris Lattner31b132c2009-10-28 00:01:44 +00001503}
1504
1505//---- ConstantExpr::get() implementations.
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001506//
Reid Spencer8d9336d2006-12-31 05:26:44 +00001507
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001508/// This is a utility function to handle folding of casts and lookup of the
Duncan Sands7d6c8ae2008-03-30 19:38:55 +00001509/// cast in the ExprConstants map. It is used by the various get* methods below.
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001510static Constant *getFoldedCast(Instruction::CastOps opc, Constant *C, Type *Ty,
1511 bool OnlyIfReduced = false) {
Chris Lattner815ae2b2003-10-07 22:19:19 +00001512 assert(Ty->isFirstClassType() && "Cannot cast to an aggregate type!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001513 // Fold a few common cases
Chris Lattnerf5edeeb2010-02-01 20:48:08 +00001514 if (Constant *FC = ConstantFoldCastInstruction(opc, C, Ty))
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001515 return FC;
Chris Lattneracdbe712003-04-17 19:24:48 +00001516
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001517 if (OnlyIfReduced)
1518 return nullptr;
1519
Owen Anderson1584a292009-08-04 20:25:11 +00001520 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
1521
Nadav Rotem88330432013-03-07 01:30:40 +00001522 // Look up the constant in the table first to ensure uniqueness.
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00001523 ConstantExprKeyType Key(opc, C);
Galina Kistanovafc259902012-07-13 01:25:27 +00001524
Owen Anderson1584a292009-08-04 20:25:11 +00001525 return pImpl->ExprConstants.getOrCreate(Ty, Key);
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001526}
Galina Kistanovafc259902012-07-13 01:25:27 +00001527
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001528Constant *ConstantExpr::getCast(unsigned oc, Constant *C, Type *Ty,
1529 bool OnlyIfReduced) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001530 Instruction::CastOps opc = Instruction::CastOps(oc);
1531 assert(Instruction::isCast(opc) && "opcode out of range");
1532 assert(C && Ty && "Null arguments to getCast");
Chris Lattner37bc78a2010-01-26 21:51:43 +00001533 assert(CastInst::castIsValid(opc, C, Ty) && "Invalid constantexpr cast!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001534
1535 switch (opc) {
Chris Lattner37bc78a2010-01-26 21:51:43 +00001536 default:
1537 llvm_unreachable("Invalid cast opcode");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001538 case Instruction::Trunc:
1539 return getTrunc(C, Ty, OnlyIfReduced);
1540 case Instruction::ZExt:
1541 return getZExt(C, Ty, OnlyIfReduced);
1542 case Instruction::SExt:
1543 return getSExt(C, Ty, OnlyIfReduced);
1544 case Instruction::FPTrunc:
1545 return getFPTrunc(C, Ty, OnlyIfReduced);
1546 case Instruction::FPExt:
1547 return getFPExtend(C, Ty, OnlyIfReduced);
1548 case Instruction::UIToFP:
1549 return getUIToFP(C, Ty, OnlyIfReduced);
1550 case Instruction::SIToFP:
1551 return getSIToFP(C, Ty, OnlyIfReduced);
1552 case Instruction::FPToUI:
1553 return getFPToUI(C, Ty, OnlyIfReduced);
1554 case Instruction::FPToSI:
1555 return getFPToSI(C, Ty, OnlyIfReduced);
1556 case Instruction::PtrToInt:
1557 return getPtrToInt(C, Ty, OnlyIfReduced);
1558 case Instruction::IntToPtr:
1559 return getIntToPtr(C, Ty, OnlyIfReduced);
1560 case Instruction::BitCast:
1561 return getBitCast(C, Ty, OnlyIfReduced);
1562 case Instruction::AddrSpaceCast:
1563 return getAddrSpaceCast(C, Ty, OnlyIfReduced);
Chris Lattner1ece6f82005-01-01 15:59:57 +00001564 }
Galina Kistanovafc259902012-07-13 01:25:27 +00001565}
Reid Spencerf37dc652006-12-05 19:14:13 +00001566
Chris Lattner229907c2011-07-18 04:54:35 +00001567Constant *ConstantExpr::getZExtOrBitCast(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001568 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001569 return getBitCast(C, Ty);
1570 return getZExt(C, Ty);
Reid Spencer5c140882006-12-04 20:17:56 +00001571}
1572
Chris Lattner229907c2011-07-18 04:54:35 +00001573Constant *ConstantExpr::getSExtOrBitCast(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001574 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001575 return getBitCast(C, Ty);
1576 return getSExt(C, Ty);
Reid Spencer5c140882006-12-04 20:17:56 +00001577}
1578
Chris Lattner229907c2011-07-18 04:54:35 +00001579Constant *ConstantExpr::getTruncOrBitCast(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001580 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001581 return getBitCast(C, Ty);
1582 return getTrunc(C, Ty);
Reid Spencer5c140882006-12-04 20:17:56 +00001583}
1584
Chris Lattner229907c2011-07-18 04:54:35 +00001585Constant *ConstantExpr::getPointerCast(Constant *S, Type *Ty) {
Evgeniy Stepanov23382642013-01-16 14:41:46 +00001586 assert(S->getType()->isPtrOrPtrVectorTy() && "Invalid cast");
1587 assert((Ty->isIntOrIntVectorTy() || Ty->isPtrOrPtrVectorTy()) &&
1588 "Invalid cast");
Reid Spencerbc245a02006-12-05 03:25:26 +00001589
Evgeniy Stepanov23382642013-01-16 14:41:46 +00001590 if (Ty->isIntOrIntVectorTy())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001591 return getPtrToInt(S, Ty);
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001592
1593 unsigned SrcAS = S->getType()->getPointerAddressSpace();
1594 if (Ty->isPtrOrPtrVectorTy() && SrcAS != Ty->getPointerAddressSpace())
1595 return getAddrSpaceCast(S, Ty);
1596
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001597 return getBitCast(S, Ty);
Reid Spencerbc245a02006-12-05 03:25:26 +00001598}
1599
Matt Arsenault21f38f42013-12-07 02:58:41 +00001600Constant *ConstantExpr::getPointerBitCastOrAddrSpaceCast(Constant *S,
1601 Type *Ty) {
1602 assert(S->getType()->isPtrOrPtrVectorTy() && "Invalid cast");
1603 assert(Ty->isPtrOrPtrVectorTy() && "Invalid cast");
1604
1605 if (S->getType()->getPointerAddressSpace() != Ty->getPointerAddressSpace())
1606 return getAddrSpaceCast(S, Ty);
1607
1608 return getBitCast(S, Ty);
1609}
1610
1611Constant *ConstantExpr::getIntegerCast(Constant *C, Type *Ty,
Reid Spencer56521c42006-12-12 00:51:07 +00001612 bool isSigned) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001613 assert(C->getType()->isIntOrIntVectorTy() &&
1614 Ty->isIntOrIntVectorTy() && "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001615 unsigned SrcBits = C->getType()->getScalarSizeInBits();
1616 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer56521c42006-12-12 00:51:07 +00001617 Instruction::CastOps opcode =
1618 (SrcBits == DstBits ? Instruction::BitCast :
1619 (SrcBits > DstBits ? Instruction::Trunc :
1620 (isSigned ? Instruction::SExt : Instruction::ZExt)));
1621 return getCast(opcode, C, Ty);
1622}
1623
Chris Lattner229907c2011-07-18 04:54:35 +00001624Constant *ConstantExpr::getFPCast(Constant *C, Type *Ty) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001625 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer56521c42006-12-12 00:51:07 +00001626 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001627 unsigned SrcBits = C->getType()->getScalarSizeInBits();
1628 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencerca104e82006-12-12 05:38:50 +00001629 if (SrcBits == DstBits)
1630 return C; // Avoid a useless cast
Reid Spencer56521c42006-12-12 00:51:07 +00001631 Instruction::CastOps opcode =
Jay Foad9f32cfd2011-01-27 14:44:55 +00001632 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt);
Reid Spencer56521c42006-12-12 00:51:07 +00001633 return getCast(opcode, C, Ty);
1634}
1635
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001636Constant *ConstantExpr::getTrunc(Constant *C, Type *Ty, bool OnlyIfReduced) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001637#ifndef NDEBUG
1638 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1639 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1640#endif
1641 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001642 assert(C->getType()->isIntOrIntVectorTy() && "Trunc operand must be integer");
1643 assert(Ty->isIntOrIntVectorTy() && "Trunc produces only integral");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001644 assert(C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001645 "SrcTy must be larger than DestTy for Trunc!");
1646
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001647 return getFoldedCast(Instruction::Trunc, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001648}
1649
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001650Constant *ConstantExpr::getSExt(Constant *C, Type *Ty, bool OnlyIfReduced) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001651#ifndef NDEBUG
1652 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1653 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1654#endif
1655 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001656 assert(C->getType()->isIntOrIntVectorTy() && "SExt operand must be integral");
1657 assert(Ty->isIntOrIntVectorTy() && "SExt produces only integer");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001658 assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001659 "SrcTy must be smaller than DestTy for SExt!");
1660
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001661 return getFoldedCast(Instruction::SExt, C, Ty, OnlyIfReduced);
Chris Lattnerdd284742004-04-04 23:20:30 +00001662}
1663
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001664Constant *ConstantExpr::getZExt(Constant *C, Type *Ty, bool OnlyIfReduced) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001665#ifndef NDEBUG
1666 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1667 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1668#endif
1669 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001670 assert(C->getType()->isIntOrIntVectorTy() && "ZEXt operand must be integral");
1671 assert(Ty->isIntOrIntVectorTy() && "ZExt produces only integer");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001672 assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001673 "SrcTy must be smaller than DestTy for ZExt!");
1674
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001675 return getFoldedCast(Instruction::ZExt, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001676}
1677
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001678Constant *ConstantExpr::getFPTrunc(Constant *C, Type *Ty, bool OnlyIfReduced) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001679#ifndef NDEBUG
1680 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1681 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1682#endif
1683 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001684 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001685 C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001686 "This is an illegal floating point truncation!");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001687 return getFoldedCast(Instruction::FPTrunc, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001688}
1689
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001690Constant *ConstantExpr::getFPExtend(Constant *C, Type *Ty, bool OnlyIfReduced) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001691#ifndef NDEBUG
1692 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1693 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1694#endif
1695 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001696 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001697 C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001698 "This is an illegal floating point extension!");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001699 return getFoldedCast(Instruction::FPExt, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001700}
1701
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001702Constant *ConstantExpr::getUIToFP(Constant *C, Type *Ty, bool OnlyIfReduced) {
Devang Pateld26344d2008-11-03 23:20:04 +00001703#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001704 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1705 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001706#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001707 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001708 assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00001709 "This is an illegal uint to floating point cast!");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001710 return getFoldedCast(Instruction::UIToFP, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001711}
1712
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001713Constant *ConstantExpr::getSIToFP(Constant *C, Type *Ty, bool OnlyIfReduced) {
Devang Pateld26344d2008-11-03 23:20:04 +00001714#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001715 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1716 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001717#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001718 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001719 assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001720 "This is an illegal sint to floating point cast!");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001721 return getFoldedCast(Instruction::SIToFP, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001722}
1723
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001724Constant *ConstantExpr::getFPToUI(Constant *C, Type *Ty, bool OnlyIfReduced) {
Devang Pateld26344d2008-11-03 23:20:04 +00001725#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001726 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1727 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001728#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001729 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001730 assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00001731 "This is an illegal floating point to uint cast!");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001732 return getFoldedCast(Instruction::FPToUI, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001733}
1734
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001735Constant *ConstantExpr::getFPToSI(Constant *C, Type *Ty, bool OnlyIfReduced) {
Devang Pateld26344d2008-11-03 23:20:04 +00001736#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001737 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1738 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001739#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001740 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001741 assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00001742 "This is an illegal floating point to sint cast!");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001743 return getFoldedCast(Instruction::FPToSI, C, Ty, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001744}
1745
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001746Constant *ConstantExpr::getPtrToInt(Constant *C, Type *DstTy,
1747 bool OnlyIfReduced) {
Nadav Rotem3924cb02011-12-05 06:29:09 +00001748 assert(C->getType()->getScalarType()->isPointerTy() &&
1749 "PtrToInt source must be pointer or pointer vector");
1750 assert(DstTy->getScalarType()->isIntegerTy() &&
1751 "PtrToInt destination must be integer or integer vector");
Chris Lattner8a3df542012-01-25 01:32:59 +00001752 assert(isa<VectorType>(C->getType()) == isa<VectorType>(DstTy));
Nick Lewyckyff509622012-01-25 03:20:12 +00001753 if (isa<VectorType>(C->getType()))
Chris Lattner8326bd82012-01-26 00:42:34 +00001754 assert(C->getType()->getVectorNumElements()==DstTy->getVectorNumElements()&&
Chris Lattner8a3df542012-01-25 01:32:59 +00001755 "Invalid cast between a different number of vector elements");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001756 return getFoldedCast(Instruction::PtrToInt, C, DstTy, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001757}
1758
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001759Constant *ConstantExpr::getIntToPtr(Constant *C, Type *DstTy,
1760 bool OnlyIfReduced) {
Nadav Rotem3924cb02011-12-05 06:29:09 +00001761 assert(C->getType()->getScalarType()->isIntegerTy() &&
1762 "IntToPtr source must be integer or integer vector");
1763 assert(DstTy->getScalarType()->isPointerTy() &&
1764 "IntToPtr destination must be a pointer or pointer vector");
Chris Lattner8a3df542012-01-25 01:32:59 +00001765 assert(isa<VectorType>(C->getType()) == isa<VectorType>(DstTy));
Nick Lewyckyff509622012-01-25 03:20:12 +00001766 if (isa<VectorType>(C->getType()))
Chris Lattner8326bd82012-01-26 00:42:34 +00001767 assert(C->getType()->getVectorNumElements()==DstTy->getVectorNumElements()&&
Chris Lattner8a3df542012-01-25 01:32:59 +00001768 "Invalid cast between a different number of vector elements");
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001769 return getFoldedCast(Instruction::IntToPtr, C, DstTy, OnlyIfReduced);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001770}
1771
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001772Constant *ConstantExpr::getBitCast(Constant *C, Type *DstTy,
1773 bool OnlyIfReduced) {
Chris Lattner37bc78a2010-01-26 21:51:43 +00001774 assert(CastInst::castIsValid(Instruction::BitCast, C, DstTy) &&
1775 "Invalid constantexpr bitcast!");
Galina Kistanovafc259902012-07-13 01:25:27 +00001776
Chris Lattnercbeda872009-03-21 06:55:54 +00001777 // It is common to ask for a bitcast of a value to its own type, handle this
1778 // speedily.
1779 if (C->getType() == DstTy) return C;
Galina Kistanovafc259902012-07-13 01:25:27 +00001780
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001781 return getFoldedCast(Instruction::BitCast, C, DstTy, OnlyIfReduced);
Chris Lattnerdd284742004-04-04 23:20:30 +00001782}
1783
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001784Constant *ConstantExpr::getAddrSpaceCast(Constant *C, Type *DstTy,
1785 bool OnlyIfReduced) {
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001786 assert(CastInst::castIsValid(Instruction::AddrSpaceCast, C, DstTy) &&
1787 "Invalid constantexpr addrspacecast!");
1788
Jingyue Wubaabe502014-06-15 21:40:57 +00001789 // Canonicalize addrspacecasts between different pointer types by first
1790 // bitcasting the pointer type and then converting the address space.
1791 PointerType *SrcScalarTy = cast<PointerType>(C->getType()->getScalarType());
1792 PointerType *DstScalarTy = cast<PointerType>(DstTy->getScalarType());
1793 Type *DstElemTy = DstScalarTy->getElementType();
1794 if (SrcScalarTy->getElementType() != DstElemTy) {
1795 Type *MidTy = PointerType::get(DstElemTy, SrcScalarTy->getAddressSpace());
1796 if (VectorType *VT = dyn_cast<VectorType>(DstTy)) {
1797 // Handle vectors of pointers.
1798 MidTy = VectorType::get(MidTy, VT->getNumElements());
1799 }
1800 C = getBitCast(C, MidTy);
1801 }
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001802 return getFoldedCast(Instruction::AddrSpaceCast, C, DstTy, OnlyIfReduced);
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001803}
1804
Chris Lattner887ecac2011-07-09 18:23:52 +00001805Constant *ConstantExpr::get(unsigned Opcode, Constant *C1, Constant *C2,
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001806 unsigned Flags, Type *OnlyIfReducedTy) {
Chris Lattner887ecac2011-07-09 18:23:52 +00001807 // Check the operands for consistency first.
Reid Spencer7eb55b32006-11-02 01:53:59 +00001808 assert(Opcode >= Instruction::BinaryOpsBegin &&
1809 Opcode < Instruction::BinaryOpsEnd &&
Chris Lattner38a9bcd2003-05-21 17:49:25 +00001810 "Invalid opcode in binary constant expression");
1811 assert(C1->getType() == C2->getType() &&
1812 "Operand types in binary constant expression should match");
Galina Kistanovafc259902012-07-13 01:25:27 +00001813
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001814#ifndef NDEBUG
1815 switch (Opcode) {
Dan Gohmana5b96452009-06-04 22:49:04 +00001816 case Instruction::Add:
Reid Spencer7eb55b32006-11-02 01:53:59 +00001817 case Instruction::Sub:
Dan Gohmana5b96452009-06-04 22:49:04 +00001818 case Instruction::Mul:
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001819 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001820 assert(C1->getType()->isIntOrIntVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001821 "Tried to create an integer operation on a non-integer type!");
1822 break;
1823 case Instruction::FAdd:
1824 case Instruction::FSub:
1825 case Instruction::FMul:
1826 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001827 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001828 "Tried to create a floating-point operation on a "
1829 "non-floating-point type!");
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001830 break;
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001831 case Instruction::UDiv:
1832 case Instruction::SDiv:
1833 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001834 assert(C1->getType()->isIntOrIntVectorTy() &&
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001835 "Tried to create an arithmetic operation on a non-arithmetic type!");
1836 break;
1837 case Instruction::FDiv:
1838 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001839 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001840 "Tried to create an arithmetic operation on a non-arithmetic type!");
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001841 break;
Reid Spencer7eb55b32006-11-02 01:53:59 +00001842 case Instruction::URem:
1843 case Instruction::SRem:
1844 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001845 assert(C1->getType()->isIntOrIntVectorTy() &&
Reid Spencer7eb55b32006-11-02 01:53:59 +00001846 "Tried to create an arithmetic operation on a non-arithmetic type!");
1847 break;
1848 case Instruction::FRem:
1849 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001850 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001851 "Tried to create an arithmetic operation on a non-arithmetic type!");
Reid Spencer7eb55b32006-11-02 01:53:59 +00001852 break;
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001853 case Instruction::And:
1854 case Instruction::Or:
1855 case Instruction::Xor:
1856 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001857 assert(C1->getType()->isIntOrIntVectorTy() &&
Misha Brukman3852f652005-01-27 06:46:38 +00001858 "Tried to create a logical operation on a non-integral type!");
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001859 break;
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001860 case Instruction::Shl:
Reid Spencerfdff9382006-11-08 06:47:33 +00001861 case Instruction::LShr:
1862 case Instruction::AShr:
Reid Spencer2341c222007-02-02 02:16:23 +00001863 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001864 assert(C1->getType()->isIntOrIntVectorTy() &&
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001865 "Tried to create a shift operation on a non-integer type!");
1866 break;
1867 default:
1868 break;
1869 }
1870#endif
1871
Chris Lattner887ecac2011-07-09 18:23:52 +00001872 if (Constant *FC = ConstantFoldBinaryInstruction(Opcode, C1, C2))
1873 return FC; // Fold a few common cases.
Galina Kistanovafc259902012-07-13 01:25:27 +00001874
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001875 if (OnlyIfReducedTy == C1->getType())
1876 return nullptr;
1877
Benjamin Kramer324322b2013-03-07 20:53:34 +00001878 Constant *ArgVec[] = { C1, C2 };
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00001879 ConstantExprKeyType Key(Opcode, ArgVec, 0, Flags);
Galina Kistanovafc259902012-07-13 01:25:27 +00001880
Chris Lattner887ecac2011-07-09 18:23:52 +00001881 LLVMContextImpl *pImpl = C1->getContext().pImpl;
1882 return pImpl->ExprConstants.getOrCreate(C1->getType(), Key);
Reid Spencera009d0d2006-12-04 21:35:24 +00001883}
1884
Chris Lattner229907c2011-07-18 04:54:35 +00001885Constant *ConstantExpr::getSizeOf(Type* Ty) {
Owen Anderson487375e2009-07-29 18:55:55 +00001886 // sizeof is implemented as: (i64) gep (Ty*)null, 1
1887 // Note that a non-inbounds gep is used, as null isn't within any object.
Owen Anderson55f1c092009-08-13 21:58:54 +00001888 Constant *GEPIdx = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
Owen Anderson487375e2009-07-29 18:55:55 +00001889 Constant *GEP = getGetElementPtr(
Jay Foaded8db7d2011-07-21 14:31:17 +00001890 Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx);
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001891 return getPtrToInt(GEP,
1892 Type::getInt64Ty(Ty->getContext()));
Owen Anderson487375e2009-07-29 18:55:55 +00001893}
1894
Chris Lattner229907c2011-07-18 04:54:35 +00001895Constant *ConstantExpr::getAlignOf(Type* Ty) {
Dan Gohmancf913832010-01-28 02:15:55 +00001896 // alignof is implemented as: (i64) gep ({i1,Ty}*)null, 0, 1
Dan Gohman50c09d02009-08-11 17:57:01 +00001897 // Note that a non-inbounds gep is used, as null isn't within any object.
Chris Lattner229907c2011-07-18 04:54:35 +00001898 Type *AligningTy =
Chris Lattnerf3f545e2011-06-18 22:48:56 +00001899 StructType::get(Type::getInt1Ty(Ty->getContext()), Ty, NULL);
Matt Arsenaultbe558882014-04-23 20:58:57 +00001900 Constant *NullPtr = Constant::getNullValue(AligningTy->getPointerTo(0));
Dan Gohmana9be7392010-01-28 02:43:22 +00001901 Constant *Zero = ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0);
Owen Anderson55f1c092009-08-13 21:58:54 +00001902 Constant *One = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
Owen Anderson487375e2009-07-29 18:55:55 +00001903 Constant *Indices[2] = { Zero, One };
Jay Foaded8db7d2011-07-21 14:31:17 +00001904 Constant *GEP = getGetElementPtr(NullPtr, Indices);
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001905 return getPtrToInt(GEP,
1906 Type::getInt64Ty(Ty->getContext()));
Owen Anderson487375e2009-07-29 18:55:55 +00001907}
1908
Chris Lattner229907c2011-07-18 04:54:35 +00001909Constant *ConstantExpr::getOffsetOf(StructType* STy, unsigned FieldNo) {
Dan Gohmanede94e62010-02-01 16:37:38 +00001910 return getOffsetOf(STy, ConstantInt::get(Type::getInt32Ty(STy->getContext()),
1911 FieldNo));
1912}
1913
Chris Lattner229907c2011-07-18 04:54:35 +00001914Constant *ConstantExpr::getOffsetOf(Type* Ty, Constant *FieldNo) {
Dan Gohmanff3af7252009-08-16 21:26:11 +00001915 // offsetof is implemented as: (i64) gep (Ty*)null, 0, FieldNo
1916 // Note that a non-inbounds gep is used, as null isn't within any object.
1917 Constant *GEPIdx[] = {
Dan Gohmanede94e62010-02-01 16:37:38 +00001918 ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0),
1919 FieldNo
Dan Gohmanff3af7252009-08-16 21:26:11 +00001920 };
1921 Constant *GEP = getGetElementPtr(
Jay Foaded8db7d2011-07-21 14:31:17 +00001922 Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx);
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001923 return getPtrToInt(GEP,
1924 Type::getInt64Ty(Ty->getContext()));
Dan Gohmanff3af7252009-08-16 21:26:11 +00001925}
Owen Anderson487375e2009-07-29 18:55:55 +00001926
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001927Constant *ConstantExpr::getCompare(unsigned short Predicate, Constant *C1,
1928 Constant *C2, bool OnlyIfReduced) {
Reid Spencera009d0d2006-12-04 21:35:24 +00001929 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Galina Kistanovafc259902012-07-13 01:25:27 +00001930
Chris Lattner887ecac2011-07-09 18:23:52 +00001931 switch (Predicate) {
1932 default: llvm_unreachable("Invalid CmpInst predicate");
1933 case CmpInst::FCMP_FALSE: case CmpInst::FCMP_OEQ: case CmpInst::FCMP_OGT:
1934 case CmpInst::FCMP_OGE: case CmpInst::FCMP_OLT: case CmpInst::FCMP_OLE:
1935 case CmpInst::FCMP_ONE: case CmpInst::FCMP_ORD: case CmpInst::FCMP_UNO:
1936 case CmpInst::FCMP_UEQ: case CmpInst::FCMP_UGT: case CmpInst::FCMP_UGE:
1937 case CmpInst::FCMP_ULT: case CmpInst::FCMP_ULE: case CmpInst::FCMP_UNE:
1938 case CmpInst::FCMP_TRUE:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001939 return getFCmp(Predicate, C1, C2, OnlyIfReduced);
Galina Kistanovafc259902012-07-13 01:25:27 +00001940
Chris Lattner887ecac2011-07-09 18:23:52 +00001941 case CmpInst::ICMP_EQ: case CmpInst::ICMP_NE: case CmpInst::ICMP_UGT:
1942 case CmpInst::ICMP_UGE: case CmpInst::ICMP_ULT: case CmpInst::ICMP_ULE:
1943 case CmpInst::ICMP_SGT: case CmpInst::ICMP_SGE: case CmpInst::ICMP_SLT:
1944 case CmpInst::ICMP_SLE:
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001945 return getICmp(Predicate, C1, C2, OnlyIfReduced);
Chris Lattner887ecac2011-07-09 18:23:52 +00001946 }
Chris Lattner29ca2c62004-08-04 18:50:09 +00001947}
1948
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001949Constant *ConstantExpr::getSelect(Constant *C, Constant *V1, Constant *V2,
1950 Type *OnlyIfReducedTy) {
Chris Lattner41632132008-12-29 00:16:12 +00001951 assert(!SelectInst::areInvalidOperands(C, V1, V2)&&"Invalid select operands");
Chris Lattner6e415c02004-03-12 05:54:04 +00001952
Chris Lattner887ecac2011-07-09 18:23:52 +00001953 if (Constant *SC = ConstantFoldSelectInstruction(C, V1, V2))
1954 return SC; // Fold common cases
Chris Lattner6e415c02004-03-12 05:54:04 +00001955
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001956 if (OnlyIfReducedTy == V1->getType())
1957 return nullptr;
1958
Benjamin Kramer324322b2013-03-07 20:53:34 +00001959 Constant *ArgVec[] = { C, V1, V2 };
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00001960 ConstantExprKeyType Key(Instruction::Select, ArgVec);
Galina Kistanovafc259902012-07-13 01:25:27 +00001961
Chris Lattner887ecac2011-07-09 18:23:52 +00001962 LLVMContextImpl *pImpl = C->getContext().pImpl;
1963 return pImpl->ExprConstants.getOrCreate(V1->getType(), Key);
Chris Lattner6e415c02004-03-12 05:54:04 +00001964}
1965
Jay Foaded8db7d2011-07-21 14:31:17 +00001966Constant *ConstantExpr::getGetElementPtr(Constant *C, ArrayRef<Value *> Idxs,
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001967 bool InBounds, Type *OnlyIfReducedTy) {
Duncan Sandse6beec62012-11-13 12:59:33 +00001968 assert(C->getType()->isPtrOrPtrVectorTy() &&
1969 "Non-pointer type for constant GetElementPtr expression");
1970
Jay Foaded8db7d2011-07-21 14:31:17 +00001971 if (Constant *FC = ConstantFoldGetElementPtr(C, InBounds, Idxs))
Chris Lattner94c8d292011-02-11 05:34:33 +00001972 return FC; // Fold a few common cases.
Dan Gohman1b849082009-09-07 23:54:19 +00001973
Chris Lattner887ecac2011-07-09 18:23:52 +00001974 // Get the result type of the getelementptr!
Jay Foadd1b78492011-07-25 09:48:08 +00001975 Type *Ty = GetElementPtrInst::getIndexedType(C->getType(), Idxs);
Chris Lattner887ecac2011-07-09 18:23:52 +00001976 assert(Ty && "GEP indices invalid!");
Chris Lattner8326bd82012-01-26 00:42:34 +00001977 unsigned AS = C->getType()->getPointerAddressSpace();
Chris Lattner887ecac2011-07-09 18:23:52 +00001978 Type *ReqTy = Ty->getPointerTo(AS);
Duncan Sandse6beec62012-11-13 12:59:33 +00001979 if (VectorType *VecTy = dyn_cast<VectorType>(C->getType()))
1980 ReqTy = VectorType::get(ReqTy, VecTy->getNumElements());
Galina Kistanovafc259902012-07-13 01:25:27 +00001981
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00001982 if (OnlyIfReducedTy == ReqTy)
1983 return nullptr;
1984
Dan Gohman1b849082009-09-07 23:54:19 +00001985 // Look up the constant in the table first to ensure uniqueness
1986 std::vector<Constant*> ArgVec;
Jay Foaded8db7d2011-07-21 14:31:17 +00001987 ArgVec.reserve(1 + Idxs.size());
Dan Gohman1b849082009-09-07 23:54:19 +00001988 ArgVec.push_back(C);
Duncan Sandse6beec62012-11-13 12:59:33 +00001989 for (unsigned i = 0, e = Idxs.size(); i != e; ++i) {
1990 assert(Idxs[i]->getType()->isVectorTy() == ReqTy->isVectorTy() &&
1991 "getelementptr index type missmatch");
1992 assert((!Idxs[i]->getType()->isVectorTy() ||
1993 ReqTy->getVectorNumElements() ==
1994 Idxs[i]->getType()->getVectorNumElements()) &&
1995 "getelementptr index type missmatch");
Dan Gohman1b849082009-09-07 23:54:19 +00001996 ArgVec.push_back(cast<Constant>(Idxs[i]));
Duncan Sandse6beec62012-11-13 12:59:33 +00001997 }
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00001998 const ConstantExprKeyType Key(Instruction::GetElementPtr, ArgVec, 0,
1999 InBounds ? GEPOperator::IsInBounds : 0);
Galina Kistanovafc259902012-07-13 01:25:27 +00002000
Chris Lattner887ecac2011-07-09 18:23:52 +00002001 LLVMContextImpl *pImpl = C->getContext().pImpl;
Dan Gohman1b849082009-09-07 23:54:19 +00002002 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
2003}
2004
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002005Constant *ConstantExpr::getICmp(unsigned short pred, Constant *LHS,
2006 Constant *RHS, bool OnlyIfReduced) {
Reid Spenceree3c9912006-12-04 05:19:50 +00002007 assert(LHS->getType() == RHS->getType());
2008 assert(pred >= ICmpInst::FIRST_ICMP_PREDICATE &&
2009 pred <= ICmpInst::LAST_ICMP_PREDICATE && "Invalid ICmp Predicate");
2010
Chris Lattnerf5edeeb2010-02-01 20:48:08 +00002011 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
Reid Spenceree3c9912006-12-04 05:19:50 +00002012 return FC; // Fold a few common cases...
2013
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002014 if (OnlyIfReduced)
2015 return nullptr;
2016
Reid Spenceree3c9912006-12-04 05:19:50 +00002017 // Look up the constant in the table first to ensure uniqueness
Benjamin Kramer324322b2013-03-07 20:53:34 +00002018 Constant *ArgVec[] = { LHS, RHS };
Reid Spencerb1537492006-12-24 18:42:29 +00002019 // Get the key type with both the opcode and predicate
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002020 const ConstantExprKeyType Key(Instruction::ICmp, ArgVec, pred);
Owen Anderson61794042009-06-17 20:10:08 +00002021
Chris Lattner229907c2011-07-18 04:54:35 +00002022 Type *ResultTy = Type::getInt1Ty(LHS->getContext());
2023 if (VectorType *VT = dyn_cast<VectorType>(LHS->getType()))
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00002024 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
2025
Owen Anderson1584a292009-08-04 20:25:11 +00002026 LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl;
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00002027 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
Reid Spenceree3c9912006-12-04 05:19:50 +00002028}
2029
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002030Constant *ConstantExpr::getFCmp(unsigned short pred, Constant *LHS,
2031 Constant *RHS, bool OnlyIfReduced) {
Reid Spenceree3c9912006-12-04 05:19:50 +00002032 assert(LHS->getType() == RHS->getType());
2033 assert(pred <= FCmpInst::LAST_FCMP_PREDICATE && "Invalid FCmp Predicate");
2034
Chris Lattnerf5edeeb2010-02-01 20:48:08 +00002035 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
Reid Spenceree3c9912006-12-04 05:19:50 +00002036 return FC; // Fold a few common cases...
2037
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002038 if (OnlyIfReduced)
2039 return nullptr;
2040
Reid Spenceree3c9912006-12-04 05:19:50 +00002041 // Look up the constant in the table first to ensure uniqueness
Benjamin Kramer324322b2013-03-07 20:53:34 +00002042 Constant *ArgVec[] = { LHS, RHS };
Reid Spencerb1537492006-12-24 18:42:29 +00002043 // Get the key type with both the opcode and predicate
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002044 const ConstantExprKeyType Key(Instruction::FCmp, ArgVec, pred);
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00002045
Chris Lattner229907c2011-07-18 04:54:35 +00002046 Type *ResultTy = Type::getInt1Ty(LHS->getContext());
2047 if (VectorType *VT = dyn_cast<VectorType>(LHS->getType()))
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00002048 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
2049
Owen Anderson1584a292009-08-04 20:25:11 +00002050 LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl;
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00002051 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
Reid Spenceree3c9912006-12-04 05:19:50 +00002052}
2053
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002054Constant *ConstantExpr::getExtractElement(Constant *Val, Constant *Idx,
2055 Type *OnlyIfReducedTy) {
Duncan Sands19d0b472010-02-16 11:11:14 +00002056 assert(Val->getType()->isVectorTy() &&
Reid Spencer09575ba2007-02-15 03:39:18 +00002057 "Tried to create extractelement operation on non-vector type!");
Michael J. Spencer1f10c5ea2014-05-01 22:12:39 +00002058 assert(Idx->getType()->isIntegerTy() &&
2059 "Extractelement index must be an integer type!");
Galina Kistanovafc259902012-07-13 01:25:27 +00002060
Chris Lattner887ecac2011-07-09 18:23:52 +00002061 if (Constant *FC = ConstantFoldExtractElementInstruction(Val, Idx))
Chris Lattner09660c92009-12-30 20:25:09 +00002062 return FC; // Fold a few common cases.
Galina Kistanovafc259902012-07-13 01:25:27 +00002063
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002064 Type *ReqTy = Val->getType()->getVectorElementType();
2065 if (OnlyIfReducedTy == ReqTy)
2066 return nullptr;
2067
Robert Bocchinoca27f032006-01-17 20:07:22 +00002068 // Look up the constant in the table first to ensure uniqueness
Benjamin Kramer324322b2013-03-07 20:53:34 +00002069 Constant *ArgVec[] = { Val, Idx };
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002070 const ConstantExprKeyType Key(Instruction::ExtractElement, ArgVec);
Galina Kistanovafc259902012-07-13 01:25:27 +00002071
Chris Lattner887ecac2011-07-09 18:23:52 +00002072 LLVMContextImpl *pImpl = Val->getContext().pImpl;
Owen Anderson1584a292009-08-04 20:25:11 +00002073 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Robert Bocchinoca27f032006-01-17 20:07:22 +00002074}
2075
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002076Constant *ConstantExpr::getInsertElement(Constant *Val, Constant *Elt,
2077 Constant *Idx, Type *OnlyIfReducedTy) {
Duncan Sands19d0b472010-02-16 11:11:14 +00002078 assert(Val->getType()->isVectorTy() &&
Reid Spencer09575ba2007-02-15 03:39:18 +00002079 "Tried to create insertelement operation on non-vector type!");
Chris Lattner8326bd82012-01-26 00:42:34 +00002080 assert(Elt->getType() == Val->getType()->getVectorElementType() &&
2081 "Insertelement types must match!");
Michael J. Spencer1f10c5ea2014-05-01 22:12:39 +00002082 assert(Idx->getType()->isIntegerTy() &&
Reid Spencer2546b762007-01-26 07:37:34 +00002083 "Insertelement index must be i32 type!");
Robert Bocchinoca27f032006-01-17 20:07:22 +00002084
Chris Lattner887ecac2011-07-09 18:23:52 +00002085 if (Constant *FC = ConstantFoldInsertElementInstruction(Val, Elt, Idx))
2086 return FC; // Fold a few common cases.
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002087
2088 if (OnlyIfReducedTy == Val->getType())
2089 return nullptr;
2090
Chris Lattnerbbe0a422006-04-08 01:18:18 +00002091 // Look up the constant in the table first to ensure uniqueness
Benjamin Kramer324322b2013-03-07 20:53:34 +00002092 Constant *ArgVec[] = { Val, Elt, Idx };
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002093 const ConstantExprKeyType Key(Instruction::InsertElement, ArgVec);
Galina Kistanovafc259902012-07-13 01:25:27 +00002094
Chris Lattner887ecac2011-07-09 18:23:52 +00002095 LLVMContextImpl *pImpl = Val->getContext().pImpl;
2096 return pImpl->ExprConstants.getOrCreate(Val->getType(), Key);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00002097}
2098
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002099Constant *ConstantExpr::getShuffleVector(Constant *V1, Constant *V2,
2100 Constant *Mask, Type *OnlyIfReducedTy) {
Chris Lattnerbbe0a422006-04-08 01:18:18 +00002101 assert(ShuffleVectorInst::isValidOperands(V1, V2, Mask) &&
2102 "Invalid shuffle vector constant expr operands!");
Nate Begeman94aa38d2009-02-12 21:28:33 +00002103
Chris Lattner887ecac2011-07-09 18:23:52 +00002104 if (Constant *FC = ConstantFoldShuffleVectorInstruction(V1, V2, Mask))
2105 return FC; // Fold a few common cases.
2106
Chris Lattner8326bd82012-01-26 00:42:34 +00002107 unsigned NElts = Mask->getType()->getVectorNumElements();
2108 Type *EltTy = V1->getType()->getVectorElementType();
Chris Lattner229907c2011-07-18 04:54:35 +00002109 Type *ShufTy = VectorType::get(EltTy, NElts);
Chris Lattner887ecac2011-07-09 18:23:52 +00002110
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002111 if (OnlyIfReducedTy == ShufTy)
2112 return nullptr;
2113
Chris Lattner887ecac2011-07-09 18:23:52 +00002114 // Look up the constant in the table first to ensure uniqueness
Benjamin Kramer324322b2013-03-07 20:53:34 +00002115 Constant *ArgVec[] = { V1, V2, Mask };
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002116 const ConstantExprKeyType Key(Instruction::ShuffleVector, ArgVec);
Galina Kistanovafc259902012-07-13 01:25:27 +00002117
Chris Lattner887ecac2011-07-09 18:23:52 +00002118 LLVMContextImpl *pImpl = ShufTy->getContext().pImpl;
2119 return pImpl->ExprConstants.getOrCreate(ShufTy, Key);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00002120}
2121
Chris Lattner887ecac2011-07-09 18:23:52 +00002122Constant *ConstantExpr::getInsertValue(Constant *Agg, Constant *Val,
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002123 ArrayRef<unsigned> Idxs,
2124 Type *OnlyIfReducedTy) {
Hal Finkelb31366d2013-07-10 22:51:01 +00002125 assert(Agg->getType()->isFirstClassType() &&
2126 "Non-first-class type for constant insertvalue expression");
2127
Jay Foad57aa6362011-07-13 10:26:04 +00002128 assert(ExtractValueInst::getIndexedType(Agg->getType(),
2129 Idxs) == Val->getType() &&
Dan Gohman12fce772008-05-15 19:50:34 +00002130 "insertvalue indices invalid!");
Hal Finkelb31366d2013-07-10 22:51:01 +00002131 Type *ReqTy = Val->getType();
2132
2133 if (Constant *FC = ConstantFoldInsertValueInstruction(Agg, Val, Idxs))
2134 return FC;
2135
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002136 if (OnlyIfReducedTy == ReqTy)
2137 return nullptr;
2138
Hal Finkelb31366d2013-07-10 22:51:01 +00002139 Constant *ArgVec[] = { Agg, Val };
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002140 const ConstantExprKeyType Key(Instruction::InsertValue, ArgVec, 0, 0, Idxs);
Hal Finkelb31366d2013-07-10 22:51:01 +00002141
2142 LLVMContextImpl *pImpl = Agg->getContext().pImpl;
2143 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Dan Gohman12fce772008-05-15 19:50:34 +00002144}
2145
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002146Constant *ConstantExpr::getExtractValue(Constant *Agg, ArrayRef<unsigned> Idxs,
2147 Type *OnlyIfReducedTy) {
Dan Gohman0752bff2008-05-23 00:36:11 +00002148 assert(Agg->getType()->isFirstClassType() &&
Chris Lattner887ecac2011-07-09 18:23:52 +00002149 "Tried to create extractelement operation on non-first-class type!");
Dan Gohman12fce772008-05-15 19:50:34 +00002150
Chris Lattner229907c2011-07-18 04:54:35 +00002151 Type *ReqTy = ExtractValueInst::getIndexedType(Agg->getType(), Idxs);
Chandler Carruth9db56b82011-07-10 09:45:35 +00002152 (void)ReqTy;
Chris Lattner887ecac2011-07-09 18:23:52 +00002153 assert(ReqTy && "extractvalue indices invalid!");
Galina Kistanovafc259902012-07-13 01:25:27 +00002154
Dan Gohman0752bff2008-05-23 00:36:11 +00002155 assert(Agg->getType()->isFirstClassType() &&
2156 "Non-first-class type for constant extractvalue expression");
Hal Finkelb31366d2013-07-10 22:51:01 +00002157 if (Constant *FC = ConstantFoldExtractValueInstruction(Agg, Idxs))
2158 return FC;
2159
Duncan P. N. Exon Smith170eb982014-08-19 19:45:37 +00002160 if (OnlyIfReducedTy == ReqTy)
2161 return nullptr;
2162
Hal Finkelb31366d2013-07-10 22:51:01 +00002163 Constant *ArgVec[] = { Agg };
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002164 const ConstantExprKeyType Key(Instruction::ExtractValue, ArgVec, 0, 0, Idxs);
Hal Finkelb31366d2013-07-10 22:51:01 +00002165
2166 LLVMContextImpl *pImpl = Agg->getContext().pImpl;
2167 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Dan Gohman12fce772008-05-15 19:50:34 +00002168}
2169
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002170Constant *ConstantExpr::getNeg(Constant *C, bool HasNUW, bool HasNSW) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002171 assert(C->getType()->isIntOrIntVectorTy() &&
Owen Anderson487375e2009-07-29 18:55:55 +00002172 "Cannot NEG a nonintegral value!");
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002173 return getSub(ConstantFP::getZeroValueForNegation(C->getType()),
2174 C, HasNUW, HasNSW);
Owen Anderson487375e2009-07-29 18:55:55 +00002175}
2176
Chris Lattnera676c0f2011-02-07 16:40:21 +00002177Constant *ConstantExpr::getFNeg(Constant *C) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002178 assert(C->getType()->isFPOrFPVectorTy() &&
Owen Anderson487375e2009-07-29 18:55:55 +00002179 "Cannot FNEG a non-floating-point value!");
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002180 return getFSub(ConstantFP::getZeroValueForNegation(C->getType()), C);
Owen Anderson487375e2009-07-29 18:55:55 +00002181}
2182
Chris Lattnera676c0f2011-02-07 16:40:21 +00002183Constant *ConstantExpr::getNot(Constant *C) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002184 assert(C->getType()->isIntOrIntVectorTy() &&
Owen Anderson487375e2009-07-29 18:55:55 +00002185 "Cannot NOT a nonintegral value!");
Owen Anderson5a1acd92009-07-31 20:28:14 +00002186 return get(Instruction::Xor, C, Constant::getAllOnesValue(C->getType()));
Owen Anderson487375e2009-07-29 18:55:55 +00002187}
2188
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002189Constant *ConstantExpr::getAdd(Constant *C1, Constant *C2,
2190 bool HasNUW, bool HasNSW) {
2191 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
2192 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
2193 return get(Instruction::Add, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00002194}
2195
Chris Lattnera676c0f2011-02-07 16:40:21 +00002196Constant *ConstantExpr::getFAdd(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002197 return get(Instruction::FAdd, C1, C2);
2198}
2199
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002200Constant *ConstantExpr::getSub(Constant *C1, Constant *C2,
2201 bool HasNUW, bool HasNSW) {
2202 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
2203 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
2204 return get(Instruction::Sub, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00002205}
2206
Chris Lattnera676c0f2011-02-07 16:40:21 +00002207Constant *ConstantExpr::getFSub(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002208 return get(Instruction::FSub, C1, C2);
2209}
2210
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002211Constant *ConstantExpr::getMul(Constant *C1, Constant *C2,
2212 bool HasNUW, bool HasNSW) {
2213 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
2214 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
2215 return get(Instruction::Mul, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00002216}
2217
Chris Lattnera676c0f2011-02-07 16:40:21 +00002218Constant *ConstantExpr::getFMul(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002219 return get(Instruction::FMul, C1, C2);
2220}
2221
Chris Lattner0d75eac2011-02-09 16:43:07 +00002222Constant *ConstantExpr::getUDiv(Constant *C1, Constant *C2, bool isExact) {
2223 return get(Instruction::UDiv, C1, C2,
2224 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00002225}
2226
Chris Lattner0d75eac2011-02-09 16:43:07 +00002227Constant *ConstantExpr::getSDiv(Constant *C1, Constant *C2, bool isExact) {
2228 return get(Instruction::SDiv, C1, C2,
2229 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00002230}
2231
Chris Lattnera676c0f2011-02-07 16:40:21 +00002232Constant *ConstantExpr::getFDiv(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002233 return get(Instruction::FDiv, C1, C2);
2234}
2235
Chris Lattnera676c0f2011-02-07 16:40:21 +00002236Constant *ConstantExpr::getURem(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002237 return get(Instruction::URem, C1, C2);
2238}
2239
Chris Lattnera676c0f2011-02-07 16:40:21 +00002240Constant *ConstantExpr::getSRem(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002241 return get(Instruction::SRem, C1, C2);
2242}
2243
Chris Lattnera676c0f2011-02-07 16:40:21 +00002244Constant *ConstantExpr::getFRem(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002245 return get(Instruction::FRem, C1, C2);
2246}
2247
Chris Lattnera676c0f2011-02-07 16:40:21 +00002248Constant *ConstantExpr::getAnd(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002249 return get(Instruction::And, C1, C2);
2250}
2251
Chris Lattnera676c0f2011-02-07 16:40:21 +00002252Constant *ConstantExpr::getOr(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002253 return get(Instruction::Or, C1, C2);
2254}
2255
Chris Lattnera676c0f2011-02-07 16:40:21 +00002256Constant *ConstantExpr::getXor(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002257 return get(Instruction::Xor, C1, C2);
2258}
2259
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002260Constant *ConstantExpr::getShl(Constant *C1, Constant *C2,
2261 bool HasNUW, bool HasNSW) {
2262 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
2263 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
2264 return get(Instruction::Shl, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00002265}
2266
Chris Lattner0d75eac2011-02-09 16:43:07 +00002267Constant *ConstantExpr::getLShr(Constant *C1, Constant *C2, bool isExact) {
2268 return get(Instruction::LShr, C1, C2,
2269 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00002270}
2271
Chris Lattner0d75eac2011-02-09 16:43:07 +00002272Constant *ConstantExpr::getAShr(Constant *C1, Constant *C2, bool isExact) {
2273 return get(Instruction::AShr, C1, C2,
2274 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00002275}
2276
Duncan Sandsd7aeefe2012-06-12 14:33:56 +00002277/// getBinOpIdentity - Return the identity for the given binary operation,
2278/// 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 +00002279/// returns null if the operator doesn't have an identity.
Duncan Sandsd7aeefe2012-06-12 14:33:56 +00002280Constant *ConstantExpr::getBinOpIdentity(unsigned Opcode, Type *Ty) {
2281 switch (Opcode) {
2282 default:
Duncan Sands318a89d2012-06-13 09:42:13 +00002283 // Doesn't have an identity.
Craig Topperc6207612014-04-09 06:08:46 +00002284 return nullptr;
Duncan Sands318a89d2012-06-13 09:42:13 +00002285
Duncan Sandsd7aeefe2012-06-12 14:33:56 +00002286 case Instruction::Add:
2287 case Instruction::Or:
2288 case Instruction::Xor:
2289 return Constant::getNullValue(Ty);
2290
2291 case Instruction::Mul:
2292 return ConstantInt::get(Ty, 1);
2293
2294 case Instruction::And:
2295 return Constant::getAllOnesValue(Ty);
2296 }
2297}
2298
Duncan Sands318a89d2012-06-13 09:42:13 +00002299/// getBinOpAbsorber - Return the absorbing element for the given binary
2300/// operation, i.e. a constant C such that X op C = C and C op X = C for
2301/// every X. For example, this returns zero for integer multiplication.
2302/// It returns null if the operator doesn't have an absorbing element.
2303Constant *ConstantExpr::getBinOpAbsorber(unsigned Opcode, Type *Ty) {
2304 switch (Opcode) {
2305 default:
2306 // Doesn't have an absorber.
Craig Topperc6207612014-04-09 06:08:46 +00002307 return nullptr;
Duncan Sands318a89d2012-06-13 09:42:13 +00002308
2309 case Instruction::Or:
2310 return Constant::getAllOnesValue(Ty);
2311
2312 case Instruction::And:
2313 case Instruction::Mul:
2314 return Constant::getNullValue(Ty);
2315 }
2316}
2317
Vikram S. Adve4c485332002-07-15 18:19:33 +00002318// destroyConstant - Remove the constant from the constant table...
2319//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00002320void ConstantExpr::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002321 getType()->getContext().pImpl->ExprConstants.remove(this);
Vikram S. Adve4c485332002-07-15 18:19:33 +00002322 destroyConstantImpl();
Vikram S. Adve4e537b22002-07-14 23:13:17 +00002323}
2324
Chris Lattner3cd8c562002-07-30 18:54:25 +00002325const char *ConstantExpr::getOpcodeName() const {
2326 return Instruction::getOpcodeName(getOpcode());
Vikram S. Adve4e537b22002-07-14 23:13:17 +00002327}
Reid Spencer1ebe1ab2004-07-17 23:48:33 +00002328
Chris Lattnera3b94ba2010-03-30 20:48:48 +00002329
2330
2331GetElementPtrConstantExpr::
Chris Lattnera474bb22012-01-26 20:40:56 +00002332GetElementPtrConstantExpr(Constant *C, ArrayRef<Constant*> IdxList,
Chris Lattner229907c2011-07-18 04:54:35 +00002333 Type *DestTy)
Chris Lattnera3b94ba2010-03-30 20:48:48 +00002334 : ConstantExpr(DestTy, Instruction::GetElementPtr,
2335 OperandTraits<GetElementPtrConstantExpr>::op_end(this)
2336 - (IdxList.size()+1), IdxList.size()+1) {
2337 OperandList[0] = C;
2338 for (unsigned i = 0, E = IdxList.size(); i != E; ++i)
2339 OperandList[i+1] = IdxList[i];
2340}
2341
Chris Lattner3756b912012-01-23 22:57:10 +00002342//===----------------------------------------------------------------------===//
2343// ConstantData* implementations
2344
2345void ConstantDataArray::anchor() {}
2346void ConstantDataVector::anchor() {}
2347
Chris Lattnere4f3f102012-01-24 04:43:41 +00002348/// getElementType - Return the element type of the array/vector.
2349Type *ConstantDataSequential::getElementType() const {
2350 return getType()->getElementType();
2351}
2352
Chris Lattner5d4497b2012-01-24 09:31:43 +00002353StringRef ConstantDataSequential::getRawDataValues() const {
Chris Lattner00245f42012-01-24 13:41:11 +00002354 return StringRef(DataElements, getNumElements()*getElementByteSize());
Chris Lattner5d4497b2012-01-24 09:31:43 +00002355}
2356
Chris Lattner030af792012-01-24 05:42:11 +00002357/// isElementTypeCompatible - Return true if a ConstantDataSequential can be
2358/// formed with a vector or array of the specified element type.
2359/// ConstantDataArray only works with normal float and int types that are
2360/// stored densely in memory, not with things like i42 or x86_f80.
2361bool ConstantDataSequential::isElementTypeCompatible(const Type *Ty) {
Chris Lattnere4f3f102012-01-24 04:43:41 +00002362 if (Ty->isFloatTy() || Ty->isDoubleTy()) return true;
2363 if (const IntegerType *IT = dyn_cast<IntegerType>(Ty)) {
2364 switch (IT->getBitWidth()) {
2365 case 8:
2366 case 16:
2367 case 32:
2368 case 64:
2369 return true;
2370 default: break;
2371 }
2372 }
2373 return false;
2374}
2375
Chris Lattner00245f42012-01-24 13:41:11 +00002376/// getNumElements - Return the number of elements in the array or vector.
2377unsigned ConstantDataSequential::getNumElements() const {
Chris Lattner8a3df542012-01-25 01:32:59 +00002378 if (ArrayType *AT = dyn_cast<ArrayType>(getType()))
2379 return AT->getNumElements();
Chris Lattner8326bd82012-01-26 00:42:34 +00002380 return getType()->getVectorNumElements();
Chris Lattner00245f42012-01-24 13:41:11 +00002381}
2382
2383
Chris Lattnere4f3f102012-01-24 04:43:41 +00002384/// getElementByteSize - Return the size in bytes of the elements in the data.
2385uint64_t ConstantDataSequential::getElementByteSize() const {
2386 return getElementType()->getPrimitiveSizeInBits()/8;
2387}
2388
2389/// getElementPointer - Return the start of the specified element.
2390const char *ConstantDataSequential::getElementPointer(unsigned Elt) const {
Chris Lattner00245f42012-01-24 13:41:11 +00002391 assert(Elt < getNumElements() && "Invalid Elt");
Chris Lattnere4f3f102012-01-24 04:43:41 +00002392 return DataElements+Elt*getElementByteSize();
2393}
2394
2395
Chris Lattner3756b912012-01-23 22:57:10 +00002396/// isAllZeros - return true if the array is empty or all zeros.
2397static bool isAllZeros(StringRef Arr) {
2398 for (StringRef::iterator I = Arr.begin(), E = Arr.end(); I != E; ++I)
2399 if (*I != 0)
2400 return false;
2401 return true;
2402}
Chris Lattner030af792012-01-24 05:42:11 +00002403
Chris Lattner3756b912012-01-23 22:57:10 +00002404/// getImpl - This is the underlying implementation of all of the
2405/// ConstantDataSequential::get methods. They all thunk down to here, providing
Chris Lattnerf06039b2012-01-30 18:19:30 +00002406/// the correct element type. We take the bytes in as a StringRef because
Chris Lattner3756b912012-01-23 22:57:10 +00002407/// we *want* an underlying "char*" to avoid TBAA type punning violations.
2408Constant *ConstantDataSequential::getImpl(StringRef Elements, Type *Ty) {
Chris Lattner8326bd82012-01-26 00:42:34 +00002409 assert(isElementTypeCompatible(Ty->getSequentialElementType()));
Chris Lattner139822f2012-01-24 14:17:05 +00002410 // If the elements are all zero or there are no elements, return a CAZ, which
2411 // is more dense and canonical.
Chris Lattner3756b912012-01-23 22:57:10 +00002412 if (isAllZeros(Elements))
2413 return ConstantAggregateZero::get(Ty);
2414
2415 // Do a lookup to see if we have already formed one of these.
2416 StringMap<ConstantDataSequential*>::MapEntryTy &Slot =
2417 Ty->getContext().pImpl->CDSConstants.GetOrCreateValue(Elements);
Galina Kistanovafc259902012-07-13 01:25:27 +00002418
Chris Lattner3756b912012-01-23 22:57:10 +00002419 // The bucket can point to a linked list of different CDS's that have the same
2420 // body but different types. For example, 0,0,0,1 could be a 4 element array
2421 // of i8, or a 1-element array of i32. They'll both end up in the same
2422 /// StringMap bucket, linked up by their Next pointers. Walk the list.
2423 ConstantDataSequential **Entry = &Slot.getValue();
Craig Topperc6207612014-04-09 06:08:46 +00002424 for (ConstantDataSequential *Node = *Entry; Node;
Chris Lattner3756b912012-01-23 22:57:10 +00002425 Entry = &Node->Next, Node = *Entry)
2426 if (Node->getType() == Ty)
2427 return Node;
Galina Kistanovafc259902012-07-13 01:25:27 +00002428
Chris Lattner3756b912012-01-23 22:57:10 +00002429 // Okay, we didn't get a hit. Create a node of the right class, link it in,
2430 // and return it.
2431 if (isa<ArrayType>(Ty))
2432 return *Entry = new ConstantDataArray(Ty, Slot.getKeyData());
2433
2434 assert(isa<VectorType>(Ty));
2435 return *Entry = new ConstantDataVector(Ty, Slot.getKeyData());
2436}
2437
2438void ConstantDataSequential::destroyConstant() {
Chris Lattner3756b912012-01-23 22:57:10 +00002439 // Remove the constant from the StringMap.
2440 StringMap<ConstantDataSequential*> &CDSConstants =
2441 getType()->getContext().pImpl->CDSConstants;
Galina Kistanovafc259902012-07-13 01:25:27 +00002442
Chris Lattner3756b912012-01-23 22:57:10 +00002443 StringMap<ConstantDataSequential*>::iterator Slot =
Chris Lattner5d4497b2012-01-24 09:31:43 +00002444 CDSConstants.find(getRawDataValues());
Chris Lattner3756b912012-01-23 22:57:10 +00002445
2446 assert(Slot != CDSConstants.end() && "CDS not found in uniquing table");
2447
2448 ConstantDataSequential **Entry = &Slot->getValue();
2449
2450 // Remove the entry from the hash table.
Craig Topperc6207612014-04-09 06:08:46 +00002451 if (!(*Entry)->Next) {
Chris Lattner3756b912012-01-23 22:57:10 +00002452 // If there is only one value in the bucket (common case) it must be this
2453 // entry, and removing the entry should remove the bucket completely.
2454 assert((*Entry) == this && "Hash mismatch in ConstantDataSequential");
2455 getContext().pImpl->CDSConstants.erase(Slot);
2456 } else {
2457 // Otherwise, there are multiple entries linked off the bucket, unlink the
2458 // node we care about but keep the bucket around.
2459 for (ConstantDataSequential *Node = *Entry; ;
2460 Entry = &Node->Next, Node = *Entry) {
2461 assert(Node && "Didn't find entry in its uniquing hash table!");
2462 // If we found our entry, unlink it from the list and we're done.
2463 if (Node == this) {
2464 *Entry = Node->Next;
2465 break;
2466 }
2467 }
2468 }
Galina Kistanovafc259902012-07-13 01:25:27 +00002469
Chris Lattner3756b912012-01-23 22:57:10 +00002470 // If we were part of a list, make sure that we don't delete the list that is
2471 // still owned by the uniquing map.
Craig Topperc6207612014-04-09 06:08:46 +00002472 Next = nullptr;
Galina Kistanovafc259902012-07-13 01:25:27 +00002473
Chris Lattner3756b912012-01-23 22:57:10 +00002474 // Finally, actually delete it.
2475 destroyConstantImpl();
2476}
2477
2478/// get() constructors - Return a constant with array type with an element
2479/// count and element type matching the ArrayRef passed in. Note that this
2480/// can return a ConstantAggregateZero object.
Chris Lattner20683932012-01-24 14:04:40 +00002481Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint8_t> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002482 Type *Ty = ArrayType::get(Type::getInt8Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002483 const char *Data = reinterpret_cast<const char *>(Elts.data());
2484 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*1), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002485}
Chris Lattner20683932012-01-24 14:04:40 +00002486Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint16_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002487 Type *Ty = ArrayType::get(Type::getInt16Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002488 const char *Data = reinterpret_cast<const char *>(Elts.data());
2489 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*2), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002490}
Chris Lattner20683932012-01-24 14:04:40 +00002491Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint32_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002492 Type *Ty = ArrayType::get(Type::getInt32Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002493 const char *Data = reinterpret_cast<const char *>(Elts.data());
2494 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*4), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002495}
Chris Lattner20683932012-01-24 14:04:40 +00002496Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint64_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002497 Type *Ty = ArrayType::get(Type::getInt64Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002498 const char *Data = reinterpret_cast<const char *>(Elts.data());
2499 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*8), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002500}
Chris Lattner20683932012-01-24 14:04:40 +00002501Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<float> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002502 Type *Ty = ArrayType::get(Type::getFloatTy(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002503 const char *Data = reinterpret_cast<const char *>(Elts.data());
2504 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*4), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002505}
Chris Lattner20683932012-01-24 14:04:40 +00002506Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<double> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002507 Type *Ty = ArrayType::get(Type::getDoubleTy(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002508 const char *Data = reinterpret_cast<const char *>(Elts.data());
2509 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*8), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002510}
2511
Chris Lattner20683932012-01-24 14:04:40 +00002512/// getString - This method constructs a CDS and initializes it with a text
2513/// string. The default behavior (AddNull==true) causes a null terminator to
2514/// be placed at the end of the array (increasing the length of the string by
2515/// one more than the StringRef would normally indicate. Pass AddNull=false
2516/// to disable this behavior.
2517Constant *ConstantDataArray::getString(LLVMContext &Context,
2518 StringRef Str, bool AddNull) {
Galina Kistanovafc259902012-07-13 01:25:27 +00002519 if (!AddNull) {
2520 const uint8_t *Data = reinterpret_cast<const uint8_t *>(Str.data());
2521 return get(Context, ArrayRef<uint8_t>(const_cast<uint8_t *>(Data),
2522 Str.size()));
2523 }
2524
Chris Lattner20683932012-01-24 14:04:40 +00002525 SmallVector<uint8_t, 64> ElementVals;
2526 ElementVals.append(Str.begin(), Str.end());
2527 ElementVals.push_back(0);
2528 return get(Context, ElementVals);
2529}
Chris Lattner3756b912012-01-23 22:57:10 +00002530
2531/// get() constructors - Return a constant with vector type with an element
2532/// count and element type matching the ArrayRef passed in. Note that this
2533/// can return a ConstantAggregateZero object.
Chris Lattner20683932012-01-24 14:04:40 +00002534Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint8_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002535 Type *Ty = VectorType::get(Type::getInt8Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002536 const char *Data = reinterpret_cast<const char *>(Elts.data());
2537 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*1), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002538}
Chris Lattner20683932012-01-24 14:04:40 +00002539Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint16_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002540 Type *Ty = VectorType::get(Type::getInt16Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002541 const char *Data = reinterpret_cast<const char *>(Elts.data());
2542 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*2), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002543}
Chris Lattner20683932012-01-24 14:04:40 +00002544Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint32_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002545 Type *Ty = VectorType::get(Type::getInt32Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002546 const char *Data = reinterpret_cast<const char *>(Elts.data());
2547 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*4), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002548}
Chris Lattner20683932012-01-24 14:04:40 +00002549Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint64_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002550 Type *Ty = VectorType::get(Type::getInt64Ty(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()*8), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002553}
Chris Lattner20683932012-01-24 14:04:40 +00002554Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<float> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002555 Type *Ty = VectorType::get(Type::getFloatTy(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()*4), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002558}
Chris Lattner20683932012-01-24 14:04:40 +00002559Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<double> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002560 Type *Ty = VectorType::get(Type::getDoubleTy(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()*8), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002563}
2564
Chris Lattnere9eed292012-01-25 05:19:54 +00002565Constant *ConstantDataVector::getSplat(unsigned NumElts, Constant *V) {
2566 assert(isElementTypeCompatible(V->getType()) &&
2567 "Element type not compatible with ConstantData");
2568 if (ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
2569 if (CI->getType()->isIntegerTy(8)) {
2570 SmallVector<uint8_t, 16> Elts(NumElts, CI->getZExtValue());
2571 return get(V->getContext(), Elts);
2572 }
2573 if (CI->getType()->isIntegerTy(16)) {
2574 SmallVector<uint16_t, 16> Elts(NumElts, CI->getZExtValue());
2575 return get(V->getContext(), Elts);
2576 }
2577 if (CI->getType()->isIntegerTy(32)) {
2578 SmallVector<uint32_t, 16> Elts(NumElts, CI->getZExtValue());
2579 return get(V->getContext(), Elts);
2580 }
2581 assert(CI->getType()->isIntegerTy(64) && "Unsupported ConstantData type");
2582 SmallVector<uint64_t, 16> Elts(NumElts, CI->getZExtValue());
2583 return get(V->getContext(), Elts);
2584 }
2585
Chris Lattner978fe0c2012-01-30 06:21:21 +00002586 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V)) {
2587 if (CFP->getType()->isFloatTy()) {
2588 SmallVector<float, 16> Elts(NumElts, CFP->getValueAPF().convertToFloat());
2589 return get(V->getContext(), Elts);
2590 }
2591 if (CFP->getType()->isDoubleTy()) {
2592 SmallVector<double, 16> Elts(NumElts,
2593 CFP->getValueAPF().convertToDouble());
2594 return get(V->getContext(), Elts);
2595 }
Chris Lattnere9eed292012-01-25 05:19:54 +00002596 }
Chris Lattner978fe0c2012-01-30 06:21:21 +00002597 return ConstantVector::getSplat(NumElts, V);
Chris Lattnere9eed292012-01-25 05:19:54 +00002598}
2599
2600
Chris Lattnere4f3f102012-01-24 04:43:41 +00002601/// getElementAsInteger - If this is a sequential container of integers (of
2602/// any size), return the specified element in the low bits of a uint64_t.
2603uint64_t ConstantDataSequential::getElementAsInteger(unsigned Elt) const {
2604 assert(isa<IntegerType>(getElementType()) &&
2605 "Accessor can only be used when element is an integer");
2606 const char *EltPtr = getElementPointer(Elt);
Galina Kistanovafc259902012-07-13 01:25:27 +00002607
Chris Lattnere4f3f102012-01-24 04:43:41 +00002608 // The data is stored in host byte order, make sure to cast back to the right
2609 // type to load with the right endianness.
Chris Lattner8326bd82012-01-26 00:42:34 +00002610 switch (getElementType()->getIntegerBitWidth()) {
Craig Topperc514b542012-02-05 22:14:15 +00002611 default: llvm_unreachable("Invalid bitwidth for CDS");
Galina Kistanovafc259902012-07-13 01:25:27 +00002612 case 8:
2613 return *const_cast<uint8_t *>(reinterpret_cast<const uint8_t *>(EltPtr));
2614 case 16:
2615 return *const_cast<uint16_t *>(reinterpret_cast<const uint16_t *>(EltPtr));
2616 case 32:
2617 return *const_cast<uint32_t *>(reinterpret_cast<const uint32_t *>(EltPtr));
2618 case 64:
2619 return *const_cast<uint64_t *>(reinterpret_cast<const uint64_t *>(EltPtr));
Chris Lattnere4f3f102012-01-24 04:43:41 +00002620 }
2621}
2622
2623/// getElementAsAPFloat - If this is a sequential container of floating point
2624/// type, return the specified element as an APFloat.
2625APFloat ConstantDataSequential::getElementAsAPFloat(unsigned Elt) const {
2626 const char *EltPtr = getElementPointer(Elt);
2627
2628 switch (getElementType()->getTypeID()) {
Nick Lewyckyff509622012-01-25 03:20:12 +00002629 default:
Craig Topperc514b542012-02-05 22:14:15 +00002630 llvm_unreachable("Accessor can only be used when element is float/double!");
Galina Kistanovafc259902012-07-13 01:25:27 +00002631 case Type::FloatTyID: {
2632 const float *FloatPrt = reinterpret_cast<const float *>(EltPtr);
2633 return APFloat(*const_cast<float *>(FloatPrt));
2634 }
2635 case Type::DoubleTyID: {
2636 const double *DoublePtr = reinterpret_cast<const double *>(EltPtr);
2637 return APFloat(*const_cast<double *>(DoublePtr));
2638 }
Chris Lattnere4f3f102012-01-24 04:43:41 +00002639 }
2640}
2641
2642/// getElementAsFloat - If this is an sequential container of floats, return
2643/// the specified element as a float.
2644float ConstantDataSequential::getElementAsFloat(unsigned Elt) const {
2645 assert(getElementType()->isFloatTy() &&
2646 "Accessor can only be used when element is a 'float'");
Galina Kistanovafc259902012-07-13 01:25:27 +00002647 const float *EltPtr = reinterpret_cast<const float *>(getElementPointer(Elt));
2648 return *const_cast<float *>(EltPtr);
Chris Lattnere4f3f102012-01-24 04:43:41 +00002649}
2650
2651/// getElementAsDouble - If this is an sequential container of doubles, return
2652/// the specified element as a float.
2653double ConstantDataSequential::getElementAsDouble(unsigned Elt) const {
2654 assert(getElementType()->isDoubleTy() &&
2655 "Accessor can only be used when element is a 'float'");
Galina Kistanovafc259902012-07-13 01:25:27 +00002656 const double *EltPtr =
2657 reinterpret_cast<const double *>(getElementPointer(Elt));
2658 return *const_cast<double *>(EltPtr);
Chris Lattnere4f3f102012-01-24 04:43:41 +00002659}
2660
2661/// getElementAsConstant - Return a Constant for a specified index's element.
2662/// Note that this has to compute a new constant to return, so it isn't as
2663/// efficient as getElementAsInteger/Float/Double.
2664Constant *ConstantDataSequential::getElementAsConstant(unsigned Elt) const {
2665 if (getElementType()->isFloatTy() || getElementType()->isDoubleTy())
2666 return ConstantFP::get(getContext(), getElementAsAPFloat(Elt));
Galina Kistanovafc259902012-07-13 01:25:27 +00002667
Chris Lattnere4f3f102012-01-24 04:43:41 +00002668 return ConstantInt::get(getElementType(), getElementAsInteger(Elt));
2669}
2670
Chris Lattner5dd4d872012-01-24 09:01:07 +00002671/// isString - This method returns true if this is an array of i8.
2672bool ConstantDataSequential::isString() const {
2673 return isa<ArrayType>(getType()) && getElementType()->isIntegerTy(8);
2674}
Chris Lattner3756b912012-01-23 22:57:10 +00002675
Chris Lattner5dd4d872012-01-24 09:01:07 +00002676/// isCString - This method returns true if the array "isString", ends with a
2677/// nul byte, and does not contains any other nul bytes.
2678bool ConstantDataSequential::isCString() const {
2679 if (!isString())
2680 return false;
Galina Kistanovafc259902012-07-13 01:25:27 +00002681
Chris Lattner5dd4d872012-01-24 09:01:07 +00002682 StringRef Str = getAsString();
Galina Kistanovafc259902012-07-13 01:25:27 +00002683
Chris Lattner5dd4d872012-01-24 09:01:07 +00002684 // The last value must be nul.
2685 if (Str.back() != 0) return false;
Galina Kistanovafc259902012-07-13 01:25:27 +00002686
Chris Lattner5dd4d872012-01-24 09:01:07 +00002687 // Other elements must be non-nul.
2688 return Str.drop_back().find(0) == StringRef::npos;
2689}
Chris Lattner3756b912012-01-23 22:57:10 +00002690
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002691/// getSplatValue - If this is a splat constant, meaning that all of the
2692/// elements have the same value, return that value. Otherwise return NULL.
2693Constant *ConstantDataVector::getSplatValue() const {
2694 const char *Base = getRawDataValues().data();
Galina Kistanovafc259902012-07-13 01:25:27 +00002695
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002696 // Compare elements 1+ to the 0'th element.
2697 unsigned EltSize = getElementByteSize();
2698 for (unsigned i = 1, e = getNumElements(); i != e; ++i)
2699 if (memcmp(Base, Base+i*EltSize, EltSize))
Craig Topperc6207612014-04-09 06:08:46 +00002700 return nullptr;
Galina Kistanovafc259902012-07-13 01:25:27 +00002701
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002702 // If they're all the same, return the 0th one as a representative.
2703 return getElementAsConstant(0);
2704}
Chris Lattnera3b94ba2010-03-30 20:48:48 +00002705
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002706//===----------------------------------------------------------------------===//
2707// replaceUsesOfWithOnConstant implementations
2708
Chris Lattner913849b2007-08-21 00:55:23 +00002709/// replaceUsesOfWithOnConstant - Update this constant array to change uses of
2710/// 'From' to be uses of 'To'. This must update the uniquing data structures
2711/// etc.
2712///
2713/// Note that we intentionally replace all uses of From with To here. Consider
2714/// a large array that uses 'From' 1000 times. By handling this case all here,
2715/// ConstantArray::replaceUsesOfWithOnConstant is only invoked once, and that
2716/// single invocation handles all 1000 uses. Handling them one at a time would
2717/// work, but would be really slow because it would have to unique each updated
2718/// array instance.
Chris Lattner31b132c2009-10-28 00:01:44 +00002719///
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002720void Constant::replaceUsesOfWithOnConstantImpl(Constant *Replacement) {
2721 // I do need to replace this with an existing value.
2722 assert(Replacement != this && "I didn't contain From!");
2723
2724 // Everyone using this now uses the replacement.
2725 replaceAllUsesWith(Replacement);
2726
2727 // Delete the old constant!
2728 destroyConstant();
2729}
2730
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002731void ConstantArray::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattner7a1450d2005-10-04 18:13:04 +00002732 Use *U) {
Owen Andersonc2c79322009-07-28 18:32:17 +00002733 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2734 Constant *ToC = cast<Constant>(To);
2735
Talin46e9b442012-02-05 20:54:10 +00002736 SmallVector<Constant*, 8> Values;
Owen Andersonc2c79322009-07-28 18:32:17 +00002737 Values.reserve(getNumOperands()); // Build replacement array.
2738
Galina Kistanovafc259902012-07-13 01:25:27 +00002739 // Fill values with the modified operands of the constant array. Also,
Owen Andersonc2c79322009-07-28 18:32:17 +00002740 // compute whether this turns into an all-zeros array.
Owen Andersonc2c79322009-07-28 18:32:17 +00002741 unsigned NumUpdated = 0;
Galina Kistanovafc259902012-07-13 01:25:27 +00002742
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002743 // Keep track of whether all the values in the array are "ToC".
2744 bool AllSame = true;
2745 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2746 Constant *Val = cast<Constant>(O->get());
2747 if (Val == From) {
2748 Val = ToC;
2749 ++NumUpdated;
Owen Andersonc2c79322009-07-28 18:32:17 +00002750 }
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002751 Values.push_back(Val);
Talin46e9b442012-02-05 20:54:10 +00002752 AllSame &= Val == ToC;
Owen Andersonc2c79322009-07-28 18:32:17 +00002753 }
Galina Kistanovafc259902012-07-13 01:25:27 +00002754
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002755 if (AllSame && ToC->isNullValue()) {
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002756 replaceUsesOfWithOnConstantImpl(ConstantAggregateZero::get(getType()));
2757 return;
2758 }
2759 if (AllSame && isa<UndefValue>(ToC)) {
2760 replaceUsesOfWithOnConstantImpl(UndefValue::get(getType()));
2761 return;
Duncan P. N. Exon Smithd8c60542014-08-19 02:16:51 +00002762 }
Aaron Ballmane4b91dc2014-08-19 14:59:02 +00002763
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002764 // Check for any other type of constant-folding.
2765 if (Constant *C = getImpl(getType(), Values)) {
2766 replaceUsesOfWithOnConstantImpl(C);
2767 return;
2768 }
Aaron Ballmane4b91dc2014-08-19 14:59:02 +00002769
Duncan P. N. Exon Smith909620a2014-08-19 19:13:30 +00002770 // Update to the new value.
2771 if (Constant *C = getContext().pImpl->ArrayConstants.replaceOperandsInPlace(
2772 Values, this, From, ToC, NumUpdated, U - OperandList))
2773 replaceUsesOfWithOnConstantImpl(C);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002774}
2775
2776void ConstantStruct::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattner7a1450d2005-10-04 18:13:04 +00002777 Use *U) {
Owen Anderson45308b52009-07-27 22:29:26 +00002778 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2779 Constant *ToC = cast<Constant>(To);
2780
2781 unsigned OperandToUpdate = U-OperandList;
2782 assert(getOperand(OperandToUpdate) == From && "ReplaceAllUsesWith broken!");
2783
Talin46e9b442012-02-05 20:54:10 +00002784 SmallVector<Constant*, 8> Values;
Owen Anderson45308b52009-07-27 22:29:26 +00002785 Values.reserve(getNumOperands()); // Build replacement struct.
Galina Kistanovafc259902012-07-13 01:25:27 +00002786
2787 // Fill values with the modified operands of the constant struct. Also,
Owen Anderson45308b52009-07-27 22:29:26 +00002788 // compute whether this turns into an all-zeros struct.
2789 bool isAllZeros = false;
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002790 bool isAllUndef = false;
2791 if (ToC->isNullValue()) {
Owen Anderson45308b52009-07-27 22:29:26 +00002792 isAllZeros = true;
2793 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2794 Constant *Val = cast<Constant>(O->get());
2795 Values.push_back(Val);
2796 if (isAllZeros) isAllZeros = Val->isNullValue();
2797 }
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002798 } else if (isa<UndefValue>(ToC)) {
2799 isAllUndef = true;
2800 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2801 Constant *Val = cast<Constant>(O->get());
2802 Values.push_back(Val);
2803 if (isAllUndef) isAllUndef = isa<UndefValue>(Val);
2804 }
2805 } else {
2806 for (Use *O = OperandList, *E = OperandList + getNumOperands(); O != E; ++O)
2807 Values.push_back(cast<Constant>(O->get()));
Owen Anderson45308b52009-07-27 22:29:26 +00002808 }
2809 Values[OperandToUpdate] = ToC;
Galina Kistanovafc259902012-07-13 01:25:27 +00002810
Owen Anderson45308b52009-07-27 22:29:26 +00002811 if (isAllZeros) {
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002812 replaceUsesOfWithOnConstantImpl(ConstantAggregateZero::get(getType()));
2813 return;
2814 }
2815 if (isAllUndef) {
2816 replaceUsesOfWithOnConstantImpl(UndefValue::get(getType()));
2817 return;
Duncan P. N. Exon Smithd8c60542014-08-19 02:16:51 +00002818 }
Galina Kistanovafc259902012-07-13 01:25:27 +00002819
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002820 // Update to the new value.
Duncan P. N. Exon Smith909620a2014-08-19 19:13:30 +00002821 if (Constant *C = getContext().pImpl->StructConstants.replaceOperandsInPlace(
2822 Values, this, From, ToC))
2823 replaceUsesOfWithOnConstantImpl(C);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002824}
2825
Reid Spencerd84d35b2007-02-15 02:26:10 +00002826void ConstantVector::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattner7a1450d2005-10-04 18:13:04 +00002827 Use *U) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002828 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002829 Constant *ToC = cast<Constant>(To);
Galina Kistanovafc259902012-07-13 01:25:27 +00002830
Chris Lattnera474bb22012-01-26 20:40:56 +00002831 SmallVector<Constant*, 8> Values;
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002832 Values.reserve(getNumOperands()); // Build replacement array...
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002833 unsigned NumUpdated = 0;
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002834 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
2835 Constant *Val = getOperand(i);
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002836 if (Val == From) {
2837 ++NumUpdated;
2838 Val = ToC;
2839 }
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002840 Values.push_back(Val);
2841 }
Galina Kistanovafc259902012-07-13 01:25:27 +00002842
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002843 if (Constant *C = getImpl(Values)) {
2844 replaceUsesOfWithOnConstantImpl(C);
2845 return;
2846 }
Duncan P. N. Exon Smith687744d2014-08-19 02:24:46 +00002847
Duncan P. N. Exon Smith909620a2014-08-19 19:13:30 +00002848 // Update to the new value.
2849 if (Constant *C = getContext().pImpl->VectorConstants.replaceOperandsInPlace(
2850 Values, this, From, ToC, NumUpdated, U - OperandList))
2851 replaceUsesOfWithOnConstantImpl(C);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002852}
2853
2854void ConstantExpr::replaceUsesOfWithOnConstant(Value *From, Value *ToV,
Chris Lattner7a1450d2005-10-04 18:13:04 +00002855 Use *U) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002856 assert(isa<Constant>(ToV) && "Cannot make Constant refer to non-constant!");
2857 Constant *To = cast<Constant>(ToV);
Galina Kistanovafc259902012-07-13 01:25:27 +00002858
Chris Lattner37e38352012-01-26 20:37:11 +00002859 SmallVector<Constant*, 8> NewOps;
2860 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
2861 Constant *Op = getOperand(i);
2862 NewOps.push_back(Op == From ? To : Op);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002863 }
Galina Kistanovafc259902012-07-13 01:25:27 +00002864
Chris Lattner37e38352012-01-26 20:37:11 +00002865 Constant *Replacement = getWithOperands(NewOps);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002866 assert(Replacement != this && "I didn't contain From!");
Galina Kistanovafc259902012-07-13 01:25:27 +00002867
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002868 // Check if Replacement has no users (and is the same type). Ideally, this
2869 // check would be done *before* creating Replacement, but threading this
2870 // through constant-folding isn't trivial.
2871 if (canBecomeReplacement(Replacement)) {
2872 // Avoid unnecessary RAUW traffic.
2873 auto &ExprConstants = getType()->getContext().pImpl->ExprConstants;
2874 ExprConstants.remove(this);
2875
2876 auto *CE = cast<ConstantExpr>(Replacement);
2877 for (unsigned I = 0, E = getNumOperands(); I != E; ++I)
2878 // Only set the operands that have actually changed.
2879 if (getOperand(I) != CE->getOperand(I))
2880 setOperand(I, CE->getOperand(I));
2881
2882 CE->destroyConstant();
2883 ExprConstants.insert(this);
2884 return;
2885 }
2886
Chris Lattner7a1450d2005-10-04 18:13:04 +00002887 // Everyone using this now uses the replacement.
Chris Lattneraf1783f2011-07-15 06:18:52 +00002888 replaceAllUsesWith(Replacement);
Galina Kistanovafc259902012-07-13 01:25:27 +00002889
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002890 // Delete the old constant!
2891 destroyConstant();
Matthijs Kooijmanba5d7ef2008-07-03 07:46:41 +00002892}
James Molloyce545682012-11-17 17:56:30 +00002893
Duncan P. N. Exon Smith317c1392014-08-19 16:39:58 +00002894bool ConstantExpr::canBecomeReplacement(const Constant *Replacement) const {
2895 // If Replacement already has users, use it regardless.
2896 if (!Replacement->use_empty())
2897 return false;
2898
2899 // Check for anything that could have changed during constant-folding.
2900 if (getValueID() != Replacement->getValueID())
2901 return false;
2902 const auto *CE = cast<ConstantExpr>(Replacement);
2903 if (getOpcode() != CE->getOpcode())
2904 return false;
2905 if (getNumOperands() != CE->getNumOperands())
2906 return false;
2907 if (getRawSubclassOptionalData() != CE->getRawSubclassOptionalData())
2908 return false;
2909 if (isCompare())
2910 if (getPredicate() != CE->getPredicate())
2911 return false;
2912 if (hasIndices())
2913 if (getIndices() != CE->getIndices())
2914 return false;
2915
2916 return true;
2917}
2918
James Molloyce545682012-11-17 17:56:30 +00002919Instruction *ConstantExpr::getAsInstruction() {
2920 SmallVector<Value*,4> ValueOperands;
2921 for (op_iterator I = op_begin(), E = op_end(); I != E; ++I)
2922 ValueOperands.push_back(cast<Value>(I));
2923
2924 ArrayRef<Value*> Ops(ValueOperands);
2925
2926 switch (getOpcode()) {
2927 case Instruction::Trunc:
2928 case Instruction::ZExt:
2929 case Instruction::SExt:
2930 case Instruction::FPTrunc:
2931 case Instruction::FPExt:
2932 case Instruction::UIToFP:
2933 case Instruction::SIToFP:
2934 case Instruction::FPToUI:
2935 case Instruction::FPToSI:
2936 case Instruction::PtrToInt:
2937 case Instruction::IntToPtr:
2938 case Instruction::BitCast:
Eli Bendersky157a97a2014-01-18 22:54:33 +00002939 case Instruction::AddrSpaceCast:
James Molloyce545682012-11-17 17:56:30 +00002940 return CastInst::Create((Instruction::CastOps)getOpcode(),
2941 Ops[0], getType());
2942 case Instruction::Select:
2943 return SelectInst::Create(Ops[0], Ops[1], Ops[2]);
2944 case Instruction::InsertElement:
2945 return InsertElementInst::Create(Ops[0], Ops[1], Ops[2]);
2946 case Instruction::ExtractElement:
2947 return ExtractElementInst::Create(Ops[0], Ops[1]);
2948 case Instruction::InsertValue:
2949 return InsertValueInst::Create(Ops[0], Ops[1], getIndices());
2950 case Instruction::ExtractValue:
2951 return ExtractValueInst::Create(Ops[0], getIndices());
2952 case Instruction::ShuffleVector:
2953 return new ShuffleVectorInst(Ops[0], Ops[1], Ops[2]);
2954
2955 case Instruction::GetElementPtr:
2956 if (cast<GEPOperator>(this)->isInBounds())
2957 return GetElementPtrInst::CreateInBounds(Ops[0], Ops.slice(1));
2958 else
2959 return GetElementPtrInst::Create(Ops[0], Ops.slice(1));
2960
2961 case Instruction::ICmp:
2962 case Instruction::FCmp:
2963 return CmpInst::Create((Instruction::OtherOps)getOpcode(),
2964 getPredicate(), Ops[0], Ops[1]);
2965
2966 default:
2967 assert(getNumOperands() == 2 && "Must be binary operator?");
2968 BinaryOperator *BO =
2969 BinaryOperator::Create((Instruction::BinaryOps)getOpcode(),
2970 Ops[0], Ops[1]);
2971 if (isa<OverflowingBinaryOperator>(BO)) {
2972 BO->setHasNoUnsignedWrap(SubclassOptionalData &
2973 OverflowingBinaryOperator::NoUnsignedWrap);
2974 BO->setHasNoSignedWrap(SubclassOptionalData &
2975 OverflowingBinaryOperator::NoSignedWrap);
2976 }
2977 if (isa<PossiblyExactOperator>(BO))
2978 BO->setIsExact(SubclassOptionalData & PossiblyExactOperator::IsExact);
2979 return BO;
2980 }
2981}