blob: 54be9802920dee35c83e796f42aa3c980762c47e [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
Owen Anderson5a1acd92009-07-31 20:28:14 +0000110// Constructor to create a '0' constant of arbitrary type...
Chris Lattner229907c2011-07-18 04:54:35 +0000111Constant *Constant::getNullValue(Type *Ty) {
Owen Anderson5a1acd92009-07-31 20:28:14 +0000112 switch (Ty->getTypeID()) {
113 case Type::IntegerTyID:
114 return ConstantInt::get(Ty, 0);
Dan Gohman518cda42011-12-17 00:04:22 +0000115 case Type::HalfTyID:
116 return ConstantFP::get(Ty->getContext(),
117 APFloat::getZero(APFloat::IEEEhalf));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000118 case Type::FloatTyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000119 return ConstantFP::get(Ty->getContext(),
120 APFloat::getZero(APFloat::IEEEsingle));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000121 case Type::DoubleTyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000122 return ConstantFP::get(Ty->getContext(),
123 APFloat::getZero(APFloat::IEEEdouble));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000124 case Type::X86_FP80TyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000125 return ConstantFP::get(Ty->getContext(),
126 APFloat::getZero(APFloat::x87DoubleExtended));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000127 case Type::FP128TyID:
128 return ConstantFP::get(Ty->getContext(),
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000129 APFloat::getZero(APFloat::IEEEquad));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000130 case Type::PPC_FP128TyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000131 return ConstantFP::get(Ty->getContext(),
Tim Northover29178a32013-01-22 09:46:31 +0000132 APFloat(APFloat::PPCDoubleDouble,
133 APInt::getNullValue(128)));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000134 case Type::PointerTyID:
135 return ConstantPointerNull::get(cast<PointerType>(Ty));
136 case Type::StructTyID:
137 case Type::ArrayTyID:
138 case Type::VectorTyID:
139 return ConstantAggregateZero::get(Ty);
140 default:
141 // Function, Label, or Opaque type?
Craig Topperc514b542012-02-05 22:14:15 +0000142 llvm_unreachable("Cannot create a null constant of that type!");
Owen Anderson5a1acd92009-07-31 20:28:14 +0000143 }
144}
145
Chris Lattner229907c2011-07-18 04:54:35 +0000146Constant *Constant::getIntegerValue(Type *Ty, const APInt &V) {
147 Type *ScalarTy = Ty->getScalarType();
Dan Gohmanf011f5a2009-08-03 22:07:33 +0000148
149 // Create the base integer constant.
150 Constant *C = ConstantInt::get(Ty->getContext(), V);
151
152 // Convert an integer to a pointer, if necessary.
Chris Lattner229907c2011-07-18 04:54:35 +0000153 if (PointerType *PTy = dyn_cast<PointerType>(ScalarTy))
Dan Gohmanf011f5a2009-08-03 22:07:33 +0000154 C = ConstantExpr::getIntToPtr(C, PTy);
155
156 // Broadcast a scalar to a vector, if necessary.
Chris Lattner229907c2011-07-18 04:54:35 +0000157 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000158 C = ConstantVector::getSplat(VTy->getNumElements(), C);
Dan Gohmanf011f5a2009-08-03 22:07:33 +0000159
160 return C;
161}
162
Chris Lattner229907c2011-07-18 04:54:35 +0000163Constant *Constant::getAllOnesValue(Type *Ty) {
164 if (IntegerType *ITy = dyn_cast<IntegerType>(Ty))
Owen Anderson5a1acd92009-07-31 20:28:14 +0000165 return ConstantInt::get(Ty->getContext(),
166 APInt::getAllOnesValue(ITy->getBitWidth()));
Nadav Rotem7cc6d122011-02-17 21:22:27 +0000167
168 if (Ty->isFloatingPointTy()) {
169 APFloat FL = APFloat::getAllOnesValue(Ty->getPrimitiveSizeInBits(),
170 !Ty->isPPC_FP128Ty());
171 return ConstantFP::get(Ty->getContext(), FL);
172 }
173
Chris Lattner229907c2011-07-18 04:54:35 +0000174 VectorType *VTy = cast<VectorType>(Ty);
Chris Lattnere9eed292012-01-25 05:19:54 +0000175 return ConstantVector::getSplat(VTy->getNumElements(),
176 getAllOnesValue(VTy->getElementType()));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000177}
178
Chris Lattner7e683d12012-01-25 06:16:32 +0000179/// getAggregateElement - For aggregates (struct/array/vector) return the
180/// constant that corresponds to the specified element if possible, or null if
181/// not. This can return null if the element index is a ConstantExpr, or if
182/// 'this' is a constant expr.
183Constant *Constant::getAggregateElement(unsigned Elt) const {
184 if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(this))
Craig Topperc6207612014-04-09 06:08:46 +0000185 return Elt < CS->getNumOperands() ? CS->getOperand(Elt) : nullptr;
Galina Kistanovafc259902012-07-13 01:25:27 +0000186
Chris Lattner7e683d12012-01-25 06:16:32 +0000187 if (const ConstantArray *CA = dyn_cast<ConstantArray>(this))
Craig Topperc6207612014-04-09 06:08:46 +0000188 return Elt < CA->getNumOperands() ? CA->getOperand(Elt) : nullptr;
Galina Kistanovafc259902012-07-13 01:25:27 +0000189
Chris Lattner7e683d12012-01-25 06:16:32 +0000190 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
Craig Topperc6207612014-04-09 06:08:46 +0000191 return Elt < CV->getNumOperands() ? CV->getOperand(Elt) : nullptr;
Galina Kistanovafc259902012-07-13 01:25:27 +0000192
Chris Lattner7e683d12012-01-25 06:16:32 +0000193 if (const ConstantAggregateZero *CAZ =dyn_cast<ConstantAggregateZero>(this))
194 return CAZ->getElementValue(Elt);
Galina Kistanovafc259902012-07-13 01:25:27 +0000195
Chris Lattner7e683d12012-01-25 06:16:32 +0000196 if (const UndefValue *UV = dyn_cast<UndefValue>(this))
197 return UV->getElementValue(Elt);
Galina Kistanovafc259902012-07-13 01:25:27 +0000198
Chris Lattner8326bd82012-01-26 00:42:34 +0000199 if (const ConstantDataSequential *CDS =dyn_cast<ConstantDataSequential>(this))
Craig Topperc6207612014-04-09 06:08:46 +0000200 return Elt < CDS->getNumElements() ? CDS->getElementAsConstant(Elt)
201 : nullptr;
202 return nullptr;
Chris Lattner7e683d12012-01-25 06:16:32 +0000203}
204
205Constant *Constant::getAggregateElement(Constant *Elt) const {
206 assert(isa<IntegerType>(Elt->getType()) && "Index must be an integer");
207 if (ConstantInt *CI = dyn_cast<ConstantInt>(Elt))
208 return getAggregateElement(CI->getZExtValue());
Craig Topperc6207612014-04-09 06:08:46 +0000209 return nullptr;
Chris Lattner7e683d12012-01-25 06:16:32 +0000210}
211
212
Chris Lattner3462ae32001-12-03 22:26:30 +0000213void Constant::destroyConstantImpl() {
214 // When a Constant is destroyed, there may be lingering
Chris Lattnerd7a73302001-10-13 06:57:33 +0000215 // references to the constant by other constants in the constant pool. These
Misha Brukmanbe372b92003-08-21 22:14:26 +0000216 // constants are implicitly dependent on the module that is being deleted,
Chris Lattnerd7a73302001-10-13 06:57:33 +0000217 // but they don't know that. Because we only find out when the CPV is
218 // deleted, we must now notify all of our users (that should only be
Chris Lattner3462ae32001-12-03 22:26:30 +0000219 // Constants) that they are, in fact, invalid now and should be deleted.
Chris Lattnerd7a73302001-10-13 06:57:33 +0000220 //
221 while (!use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000222 Value *V = user_back();
Chris Lattnerd7a73302001-10-13 06:57:33 +0000223#ifndef NDEBUG // Only in -g mode...
Chris Lattner78683a72009-08-23 04:02:03 +0000224 if (!isa<Constant>(V)) {
David Greene1e27a132010-01-05 01:29:19 +0000225 dbgs() << "While deleting: " << *this
Chris Lattner78683a72009-08-23 04:02:03 +0000226 << "\n\nUse still stuck around after Def is destroyed: "
227 << *V << "\n\n";
228 }
Chris Lattnerd7a73302001-10-13 06:57:33 +0000229#endif
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000230 assert(isa<Constant>(V) && "References remain to Constant being destroyed");
Chris Lattner8326bd82012-01-26 00:42:34 +0000231 cast<Constant>(V)->destroyConstant();
Chris Lattnerd7a73302001-10-13 06:57:33 +0000232
233 // The constant should remove itself from our use list...
Chandler Carruthcdf47882014-03-09 03:16:01 +0000234 assert((use_empty() || user_back() != V) && "Constant not removed!");
Chris Lattnerd7a73302001-10-13 06:57:33 +0000235 }
236
237 // Value has no outstanding references it is safe to delete it now...
238 delete this;
Chris Lattner38569342001-10-01 20:11:19 +0000239}
Chris Lattner2f7c9632001-06-06 20:29:01 +0000240
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +0000241static bool canTrapImpl(const Constant *C,
242 SmallPtrSet<const ConstantExpr *, 4> &NonTrappingOps) {
243 assert(C->getType()->isFirstClassType() && "Cannot evaluate aggregate vals!");
Chris Lattner23dd1f62006-10-20 00:27:06 +0000244 // The only thing that could possibly trap are constant exprs.
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +0000245 const ConstantExpr *CE = dyn_cast<ConstantExpr>(C);
246 if (!CE)
247 return false;
Galina Kistanovafc259902012-07-13 01:25:27 +0000248
249 // ConstantExpr traps if any operands can trap.
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +0000250 for (unsigned i = 0, e = C->getNumOperands(); i != e; ++i) {
251 if (ConstantExpr *Op = dyn_cast<ConstantExpr>(CE->getOperand(i))) {
252 if (NonTrappingOps.insert(Op) && canTrapImpl(Op, NonTrappingOps))
253 return true;
254 }
255 }
Chris Lattner23dd1f62006-10-20 00:27:06 +0000256
257 // Otherwise, only specific operations can trap.
258 switch (CE->getOpcode()) {
259 default:
260 return false;
Reid Spencer7e80b0b2006-10-26 06:15:43 +0000261 case Instruction::UDiv:
262 case Instruction::SDiv:
263 case Instruction::FDiv:
Reid Spencer7eb55b32006-11-02 01:53:59 +0000264 case Instruction::URem:
265 case Instruction::SRem:
266 case Instruction::FRem:
Chris Lattner23dd1f62006-10-20 00:27:06 +0000267 // Div and rem can trap if the RHS is not known to be non-zero.
Chris Lattnera91a5632009-10-28 05:14:34 +0000268 if (!isa<ConstantInt>(CE->getOperand(1)) ||CE->getOperand(1)->isNullValue())
Chris Lattner23dd1f62006-10-20 00:27:06 +0000269 return true;
270 return false;
271 }
272}
273
Benjamin Kramer89ca4bc2013-04-13 12:53:18 +0000274/// canTrap - Return true if evaluation of this constant could trap. This is
275/// true for things like constant expressions that could divide by zero.
276bool Constant::canTrap() const {
277 SmallPtrSet<const ConstantExpr *, 4> NonTrappingOps;
278 return canTrapImpl(this, NonTrappingOps);
279}
280
Hans Wennborg709e0152012-11-15 11:40:00 +0000281/// isThreadDependent - Return true if the value can vary between threads.
282bool Constant::isThreadDependent() const {
283 SmallPtrSet<const Constant*, 64> Visited;
284 SmallVector<const Constant*, 64> WorkList;
285 WorkList.push_back(this);
286 Visited.insert(this);
287
288 while (!WorkList.empty()) {
289 const Constant *C = WorkList.pop_back_val();
290
291 if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(C)) {
292 if (GV->isThreadLocal())
293 return true;
294 }
295
296 for (unsigned I = 0, E = C->getNumOperands(); I != E; ++I) {
Hans Wennborg18aa12402012-11-16 10:33:25 +0000297 const Constant *D = dyn_cast<Constant>(C->getOperand(I));
298 if (!D)
299 continue;
Hans Wennborg709e0152012-11-15 11:40:00 +0000300 if (Visited.insert(D))
301 WorkList.push_back(D);
302 }
303 }
304
305 return false;
306}
307
Chris Lattner253bc772009-11-01 18:11:50 +0000308/// isConstantUsed - Return true if the constant has users other than constant
309/// exprs and other dangling things.
310bool Constant::isConstantUsed() const {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000311 for (const User *U : users()) {
312 const Constant *UC = dyn_cast<Constant>(U);
Craig Topperc6207612014-04-09 06:08:46 +0000313 if (!UC || isa<GlobalValue>(UC))
Chris Lattner253bc772009-11-01 18:11:50 +0000314 return true;
Galina Kistanovafc259902012-07-13 01:25:27 +0000315
Chris Lattner253bc772009-11-01 18:11:50 +0000316 if (UC->isConstantUsed())
317 return true;
318 }
319 return false;
320}
321
322
Chris Lattner4565ef52009-07-22 00:05:44 +0000323
324/// getRelocationInfo - This method classifies the entry according to
325/// whether or not it may generate a relocation entry. This must be
326/// conservative, so if it might codegen to a relocatable entry, it should say
327/// so. The return values are:
328///
Chris Lattner5cd4dd32009-07-24 03:27:21 +0000329/// NoRelocation: This constant pool entry is guaranteed to never have a
330/// relocation applied to it (because it holds a simple constant like
331/// '4').
332/// LocalRelocation: This entry has relocations, but the entries are
333/// guaranteed to be resolvable by the static linker, so the dynamic
334/// linker will never see them.
335/// GlobalRelocations: This entry may have arbitrary relocations.
Chris Lattner4565ef52009-07-22 00:05:44 +0000336///
Chandler Carruthef860a22013-01-02 09:10:48 +0000337/// FIXME: This really should not be in IR.
Chris Lattner5cd4dd32009-07-24 03:27:21 +0000338Constant::PossibleRelocationsTy Constant::getRelocationInfo() const {
339 if (const GlobalValue *GV = dyn_cast<GlobalValue>(this)) {
Chris Lattner4565ef52009-07-22 00:05:44 +0000340 if (GV->hasLocalLinkage() || GV->hasHiddenVisibility())
Chris Lattner5cd4dd32009-07-24 03:27:21 +0000341 return LocalRelocation; // Local to this file/library.
342 return GlobalRelocations; // Global reference.
Anton Korobeynikov7437b592009-03-29 17:13:18 +0000343 }
Chris Lattner4565ef52009-07-22 00:05:44 +0000344
Chris Lattner2cb85b42009-10-28 04:12:16 +0000345 if (const BlockAddress *BA = dyn_cast<BlockAddress>(this))
346 return BA->getFunction()->getRelocationInfo();
347
Chris Lattnera7cfc432010-01-03 18:09:40 +0000348 // While raw uses of blockaddress need to be relocated, differences between
349 // two of them don't when they are for labels in the same function. This is a
350 // common idiom when creating a table for the indirect goto extension, so we
351 // handle it efficiently here.
352 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(this))
353 if (CE->getOpcode() == Instruction::Sub) {
354 ConstantExpr *LHS = dyn_cast<ConstantExpr>(CE->getOperand(0));
355 ConstantExpr *RHS = dyn_cast<ConstantExpr>(CE->getOperand(1));
356 if (LHS && RHS &&
357 LHS->getOpcode() == Instruction::PtrToInt &&
358 RHS->getOpcode() == Instruction::PtrToInt &&
359 isa<BlockAddress>(LHS->getOperand(0)) &&
360 isa<BlockAddress>(RHS->getOperand(0)) &&
361 cast<BlockAddress>(LHS->getOperand(0))->getFunction() ==
362 cast<BlockAddress>(RHS->getOperand(0))->getFunction())
363 return NoRelocation;
364 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000365
Chris Lattner5cd4dd32009-07-24 03:27:21 +0000366 PossibleRelocationsTy Result = NoRelocation;
Evan Chengf9e003b2007-03-08 00:59:12 +0000367 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Chris Lattnera91a5632009-10-28 05:14:34 +0000368 Result = std::max(Result,
369 cast<Constant>(getOperand(i))->getRelocationInfo());
Galina Kistanovafc259902012-07-13 01:25:27 +0000370
Chris Lattner4565ef52009-07-22 00:05:44 +0000371 return Result;
Evan Chengf9e003b2007-03-08 00:59:12 +0000372}
373
Chris Lattner84886402011-02-18 04:41:42 +0000374/// removeDeadUsersOfConstant - If the specified constantexpr is dead, remove
375/// it. This involves recursively eliminating any dead users of the
376/// constantexpr.
377static bool removeDeadUsersOfConstant(const Constant *C) {
378 if (isa<GlobalValue>(C)) return false; // Cannot remove this
Galina Kistanovafc259902012-07-13 01:25:27 +0000379
Chris Lattner84886402011-02-18 04:41:42 +0000380 while (!C->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000381 const Constant *User = dyn_cast<Constant>(C->user_back());
Chris Lattner84886402011-02-18 04:41:42 +0000382 if (!User) return false; // Non-constant usage;
383 if (!removeDeadUsersOfConstant(User))
384 return false; // Constant wasn't dead
385 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000386
Chris Lattner84886402011-02-18 04:41:42 +0000387 const_cast<Constant*>(C)->destroyConstant();
388 return true;
389}
390
391
392/// removeDeadConstantUsers - If there are any dead constant users dangling
393/// off of this constant, remove them. This method is useful for clients
394/// that want to check to see if a global is unused, but don't want to deal
395/// with potentially dead constants hanging off of the globals.
396void Constant::removeDeadConstantUsers() const {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000397 Value::const_user_iterator I = user_begin(), E = user_end();
398 Value::const_user_iterator LastNonDeadUser = E;
Chris Lattner84886402011-02-18 04:41:42 +0000399 while (I != E) {
400 const Constant *User = dyn_cast<Constant>(*I);
Craig Topperc6207612014-04-09 06:08:46 +0000401 if (!User) {
Chris Lattner84886402011-02-18 04:41:42 +0000402 LastNonDeadUser = I;
403 ++I;
404 continue;
405 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000406
Chris Lattner84886402011-02-18 04:41:42 +0000407 if (!removeDeadUsersOfConstant(User)) {
408 // If the constant wasn't dead, remember that this was the last live use
409 // and move on to the next constant.
410 LastNonDeadUser = I;
411 ++I;
412 continue;
413 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000414
Chris Lattner84886402011-02-18 04:41:42 +0000415 // If the constant was dead, then the iterator is invalidated.
416 if (LastNonDeadUser == E) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000417 I = user_begin();
Chris Lattner84886402011-02-18 04:41:42 +0000418 if (I == E) break;
419 } else {
420 I = LastNonDeadUser;
421 ++I;
422 }
423 }
424}
425
426
Chris Lattner2105d662008-07-10 00:28:11 +0000427
Chris Lattner2f7c9632001-06-06 20:29:01 +0000428//===----------------------------------------------------------------------===//
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000429// ConstantInt
Chris Lattner2f7c9632001-06-06 20:29:01 +0000430//===----------------------------------------------------------------------===//
431
David Blaikiea379b1812011-12-20 02:50:00 +0000432void ConstantInt::anchor() { }
433
Chris Lattner229907c2011-07-18 04:54:35 +0000434ConstantInt::ConstantInt(IntegerType *Ty, const APInt& V)
Craig Topperc6207612014-04-09 06:08:46 +0000435 : Constant(Ty, ConstantIntVal, nullptr, 0), Val(V) {
Reid Spencerb31bffe2007-02-26 23:54:03 +0000436 assert(V.getBitWidth() == Ty->getBitWidth() && "Invalid constant for type");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000437}
438
Nick Lewycky92db8e82011-03-06 03:36:19 +0000439ConstantInt *ConstantInt::getTrue(LLVMContext &Context) {
Owen Anderson23a204d2009-07-31 17:39:07 +0000440 LLVMContextImpl *pImpl = Context.pImpl;
Benjamin Kramerddd1b7b2010-11-20 18:43:35 +0000441 if (!pImpl->TheTrueVal)
442 pImpl->TheTrueVal = ConstantInt::get(Type::getInt1Ty(Context), 1);
443 return pImpl->TheTrueVal;
Owen Anderson23a204d2009-07-31 17:39:07 +0000444}
445
Nick Lewycky92db8e82011-03-06 03:36:19 +0000446ConstantInt *ConstantInt::getFalse(LLVMContext &Context) {
Owen Anderson23a204d2009-07-31 17:39:07 +0000447 LLVMContextImpl *pImpl = Context.pImpl;
Benjamin Kramerddd1b7b2010-11-20 18:43:35 +0000448 if (!pImpl->TheFalseVal)
449 pImpl->TheFalseVal = ConstantInt::get(Type::getInt1Ty(Context), 0);
450 return pImpl->TheFalseVal;
Owen Anderson23a204d2009-07-31 17:39:07 +0000451}
452
Chris Lattner229907c2011-07-18 04:54:35 +0000453Constant *ConstantInt::getTrue(Type *Ty) {
454 VectorType *VTy = dyn_cast<VectorType>(Ty);
Nick Lewycky92db8e82011-03-06 03:36:19 +0000455 if (!VTy) {
456 assert(Ty->isIntegerTy(1) && "True must be i1 or vector of i1.");
457 return ConstantInt::getTrue(Ty->getContext());
458 }
459 assert(VTy->getElementType()->isIntegerTy(1) &&
460 "True must be vector of i1 or i1.");
Chris Lattnere9eed292012-01-25 05:19:54 +0000461 return ConstantVector::getSplat(VTy->getNumElements(),
462 ConstantInt::getTrue(Ty->getContext()));
Nick Lewycky92db8e82011-03-06 03:36:19 +0000463}
464
Chris Lattner229907c2011-07-18 04:54:35 +0000465Constant *ConstantInt::getFalse(Type *Ty) {
466 VectorType *VTy = dyn_cast<VectorType>(Ty);
Nick Lewycky92db8e82011-03-06 03:36:19 +0000467 if (!VTy) {
468 assert(Ty->isIntegerTy(1) && "False must be i1 or vector of i1.");
469 return ConstantInt::getFalse(Ty->getContext());
470 }
471 assert(VTy->getElementType()->isIntegerTy(1) &&
472 "False must be vector of i1 or i1.");
Chris Lattnere9eed292012-01-25 05:19:54 +0000473 return ConstantVector::getSplat(VTy->getNumElements(),
474 ConstantInt::getFalse(Ty->getContext()));
Nick Lewycky92db8e82011-03-06 03:36:19 +0000475}
476
Owen Anderson23a204d2009-07-31 17:39:07 +0000477
Owen Andersonedb4a702009-07-24 23:12:02 +0000478// Get a ConstantInt from an APInt. Note that the value stored in the DenseMap
479// as the key, is a DenseMapAPIntKeyInfo::KeyTy which has provided the
480// operator== and operator!= to ensure that the DenseMap doesn't attempt to
481// compare APInt's of different widths, which would violate an APInt class
482// invariant which generates an assertion.
Nick Lewycky92db8e82011-03-06 03:36:19 +0000483ConstantInt *ConstantInt::get(LLVMContext &Context, const APInt &V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000484 // Get the corresponding integer type for the bit width of the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000485 IntegerType *ITy = IntegerType::get(Context, V.getBitWidth());
Owen Andersonedb4a702009-07-24 23:12:02 +0000486 // get an existing value or the insertion position
Benjamin Kramer320682f2013-06-01 17:51:03 +0000487 LLVMContextImpl *pImpl = Context.pImpl;
488 ConstantInt *&Slot = pImpl->IntConstants[DenseMapAPIntKeyInfo::KeyTy(V, ITy)];
Owen Anderson5dab84c2009-10-19 20:11:52 +0000489 if (!Slot) Slot = new ConstantInt(ITy, V);
490 return Slot;
Owen Andersonedb4a702009-07-24 23:12:02 +0000491}
492
Chris Lattner229907c2011-07-18 04:54:35 +0000493Constant *ConstantInt::get(Type *Ty, uint64_t V, bool isSigned) {
Nick Lewycky92db8e82011-03-06 03:36:19 +0000494 Constant *C = get(cast<IntegerType>(Ty->getScalarType()), V, isSigned);
Owen Andersonedb4a702009-07-24 23:12:02 +0000495
496 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000497 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000498 return ConstantVector::getSplat(VTy->getNumElements(), C);
Owen Andersonedb4a702009-07-24 23:12:02 +0000499
500 return C;
501}
502
Chris Lattner0256be92012-01-27 03:08:05 +0000503ConstantInt *ConstantInt::get(IntegerType *Ty, uint64_t V,
Owen Andersonedb4a702009-07-24 23:12:02 +0000504 bool isSigned) {
505 return get(Ty->getContext(), APInt(Ty->getBitWidth(), V, isSigned));
506}
507
Chris Lattner0256be92012-01-27 03:08:05 +0000508ConstantInt *ConstantInt::getSigned(IntegerType *Ty, int64_t V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000509 return get(Ty, V, true);
510}
511
Chris Lattner229907c2011-07-18 04:54:35 +0000512Constant *ConstantInt::getSigned(Type *Ty, int64_t V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000513 return get(Ty, V, true);
514}
515
Chris Lattner0256be92012-01-27 03:08:05 +0000516Constant *ConstantInt::get(Type *Ty, const APInt& V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000517 ConstantInt *C = get(Ty->getContext(), V);
518 assert(C->getType() == Ty->getScalarType() &&
519 "ConstantInt type doesn't match the type implied by its value!");
520
521 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000522 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000523 return ConstantVector::getSplat(VTy->getNumElements(), C);
Owen Andersonedb4a702009-07-24 23:12:02 +0000524
525 return C;
526}
527
Chris Lattner0256be92012-01-27 03:08:05 +0000528ConstantInt *ConstantInt::get(IntegerType* Ty, StringRef Str,
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000529 uint8_t radix) {
530 return get(Ty->getContext(), APInt(Ty->getBitWidth(), Str, radix));
531}
532
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000533//===----------------------------------------------------------------------===//
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000534// ConstantFP
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000535//===----------------------------------------------------------------------===//
536
Chris Lattner229907c2011-07-18 04:54:35 +0000537static const fltSemantics *TypeToFloatSemantics(Type *Ty) {
Dan Gohman518cda42011-12-17 00:04:22 +0000538 if (Ty->isHalfTy())
539 return &APFloat::IEEEhalf;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000540 if (Ty->isFloatTy())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000541 return &APFloat::IEEEsingle;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000542 if (Ty->isDoubleTy())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000543 return &APFloat::IEEEdouble;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000544 if (Ty->isX86_FP80Ty())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000545 return &APFloat::x87DoubleExtended;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000546 else if (Ty->isFP128Ty())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000547 return &APFloat::IEEEquad;
Galina Kistanovafc259902012-07-13 01:25:27 +0000548
Chris Lattnerfdd87902009-10-05 05:54:46 +0000549 assert(Ty->isPPC_FP128Ty() && "Unknown FP format");
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000550 return &APFloat::PPCDoubleDouble;
551}
552
David Blaikiea379b1812011-12-20 02:50:00 +0000553void ConstantFP::anchor() { }
554
Owen Anderson69c464d2009-07-27 20:59:43 +0000555/// get() - This returns a constant fp for the specified value in the
556/// specified type. This should only be used for simple constant values like
557/// 2.0/1.0 etc, that are known-valid both as double and as the target format.
Chris Lattner0256be92012-01-27 03:08:05 +0000558Constant *ConstantFP::get(Type *Ty, double V) {
Owen Anderson69c464d2009-07-27 20:59:43 +0000559 LLVMContext &Context = Ty->getContext();
Galina Kistanovafc259902012-07-13 01:25:27 +0000560
Owen Anderson69c464d2009-07-27 20:59:43 +0000561 APFloat FV(V);
562 bool ignored;
563 FV.convert(*TypeToFloatSemantics(Ty->getScalarType()),
564 APFloat::rmNearestTiesToEven, &ignored);
565 Constant *C = get(Context, FV);
566
567 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000568 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000569 return ConstantVector::getSplat(VTy->getNumElements(), C);
Owen Anderson69c464d2009-07-27 20:59:43 +0000570
571 return C;
572}
573
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000574
Chris Lattner0256be92012-01-27 03:08:05 +0000575Constant *ConstantFP::get(Type *Ty, StringRef Str) {
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000576 LLVMContext &Context = Ty->getContext();
577
578 APFloat FV(*TypeToFloatSemantics(Ty->getScalarType()), Str);
579 Constant *C = get(Context, FV);
580
581 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000582 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000583 return ConstantVector::getSplat(VTy->getNumElements(), C);
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000584
585 return C;
586}
587
Benjamin Kramer5d2ff222014-01-18 16:43:06 +0000588Constant *ConstantFP::getNegativeZero(Type *Ty) {
589 const fltSemantics &Semantics = *TypeToFloatSemantics(Ty->getScalarType());
590 APFloat NegZero = APFloat::getZero(Semantics, /*Negative=*/true);
591 Constant *C = get(Ty->getContext(), NegZero);
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000592
Benjamin Kramer5d2ff222014-01-18 16:43:06 +0000593 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
594 return ConstantVector::getSplat(VTy->getNumElements(), C);
595
596 return C;
Owen Anderson69c464d2009-07-27 20:59:43 +0000597}
598
599
Chris Lattnere9eed292012-01-25 05:19:54 +0000600Constant *ConstantFP::getZeroValueForNegation(Type *Ty) {
Benjamin Kramer5d2ff222014-01-18 16:43:06 +0000601 if (Ty->isFPOrFPVectorTy())
602 return getNegativeZero(Ty);
Owen Anderson69c464d2009-07-27 20:59:43 +0000603
Owen Anderson5a1acd92009-07-31 20:28:14 +0000604 return Constant::getNullValue(Ty);
Owen Anderson69c464d2009-07-27 20:59:43 +0000605}
606
607
608// ConstantFP accessors.
609ConstantFP* ConstantFP::get(LLVMContext &Context, const APFloat& V) {
Owen Anderson69c464d2009-07-27 20:59:43 +0000610 LLVMContextImpl* pImpl = Context.pImpl;
Galina Kistanovafc259902012-07-13 01:25:27 +0000611
Benjamin Kramer320682f2013-06-01 17:51:03 +0000612 ConstantFP *&Slot = pImpl->FPConstants[DenseMapAPFloatKeyInfo::KeyTy(V)];
Galina Kistanovafc259902012-07-13 01:25:27 +0000613
Owen Anderson69c464d2009-07-27 20:59:43 +0000614 if (!Slot) {
Chris Lattner229907c2011-07-18 04:54:35 +0000615 Type *Ty;
Dan Gohman518cda42011-12-17 00:04:22 +0000616 if (&V.getSemantics() == &APFloat::IEEEhalf)
617 Ty = Type::getHalfTy(Context);
618 else if (&V.getSemantics() == &APFloat::IEEEsingle)
Owen Anderson5dab84c2009-10-19 20:11:52 +0000619 Ty = Type::getFloatTy(Context);
620 else if (&V.getSemantics() == &APFloat::IEEEdouble)
621 Ty = Type::getDoubleTy(Context);
622 else if (&V.getSemantics() == &APFloat::x87DoubleExtended)
623 Ty = Type::getX86_FP80Ty(Context);
624 else if (&V.getSemantics() == &APFloat::IEEEquad)
625 Ty = Type::getFP128Ty(Context);
626 else {
627 assert(&V.getSemantics() == &APFloat::PPCDoubleDouble &&
628 "Unknown FP format");
629 Ty = Type::getPPC_FP128Ty(Context);
Owen Anderson69c464d2009-07-27 20:59:43 +0000630 }
Owen Anderson5dab84c2009-10-19 20:11:52 +0000631 Slot = new ConstantFP(Ty, V);
Owen Anderson69c464d2009-07-27 20:59:43 +0000632 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000633
Owen Anderson69c464d2009-07-27 20:59:43 +0000634 return Slot;
635}
636
Benjamin Kramer5d2ff222014-01-18 16:43:06 +0000637Constant *ConstantFP::getInfinity(Type *Ty, bool Negative) {
638 const fltSemantics &Semantics = *TypeToFloatSemantics(Ty->getScalarType());
639 Constant *C = get(Ty->getContext(), APFloat::getInf(Semantics, Negative));
640
641 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
642 return ConstantVector::getSplat(VTy->getNumElements(), C);
643
644 return C;
Dan Gohmanfeb50212009-09-25 23:00:48 +0000645}
646
Chris Lattner229907c2011-07-18 04:54:35 +0000647ConstantFP::ConstantFP(Type *Ty, const APFloat& V)
Craig Topperc6207612014-04-09 06:08:46 +0000648 : Constant(Ty, ConstantFPVal, nullptr, 0), Val(V) {
Chris Lattner98bd9392008-04-09 06:38:30 +0000649 assert(&V.getSemantics() == TypeToFloatSemantics(Ty) &&
650 "FP type Mismatch");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000651}
652
Chris Lattnerbe6610c2011-07-15 06:14:08 +0000653bool ConstantFP::isExactlyValue(const APFloat &V) const {
Dale Johannesend246b2c2007-08-30 00:23:21 +0000654 return Val.bitwiseIsEqual(V);
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000655}
656
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000657//===----------------------------------------------------------------------===//
Chris Lattner030af792012-01-24 05:42:11 +0000658// ConstantAggregateZero Implementation
659//===----------------------------------------------------------------------===//
660
661/// getSequentialElement - If this CAZ has array or vector type, return a zero
662/// with the right element type.
Chris Lattner7e683d12012-01-25 06:16:32 +0000663Constant *ConstantAggregateZero::getSequentialElement() const {
Chris Lattner8326bd82012-01-26 00:42:34 +0000664 return Constant::getNullValue(getType()->getSequentialElementType());
Chris Lattner030af792012-01-24 05:42:11 +0000665}
666
667/// getStructElement - If this CAZ has struct type, return a zero with the
668/// right element type for the specified element.
Chris Lattner7e683d12012-01-25 06:16:32 +0000669Constant *ConstantAggregateZero::getStructElement(unsigned Elt) const {
Chris Lattner8326bd82012-01-26 00:42:34 +0000670 return Constant::getNullValue(getType()->getStructElementType(Elt));
Chris Lattner030af792012-01-24 05:42:11 +0000671}
672
673/// getElementValue - Return a zero of the right value for the specified GEP
674/// index if we can, otherwise return null (e.g. if C is a ConstantExpr).
Chris Lattner7e683d12012-01-25 06:16:32 +0000675Constant *ConstantAggregateZero::getElementValue(Constant *C) const {
Chris Lattner030af792012-01-24 05:42:11 +0000676 if (isa<SequentialType>(getType()))
677 return getSequentialElement();
678 return getStructElement(cast<ConstantInt>(C)->getZExtValue());
679}
680
Chris Lattnerf7eb5432012-01-24 07:54:10 +0000681/// getElementValue - Return a zero of the right value for the specified GEP
682/// index.
Chris Lattner7e683d12012-01-25 06:16:32 +0000683Constant *ConstantAggregateZero::getElementValue(unsigned Idx) const {
Chris Lattnerf7eb5432012-01-24 07:54:10 +0000684 if (isa<SequentialType>(getType()))
685 return getSequentialElement();
686 return getStructElement(Idx);
687}
688
689
Chris Lattner030af792012-01-24 05:42:11 +0000690//===----------------------------------------------------------------------===//
691// UndefValue Implementation
692//===----------------------------------------------------------------------===//
693
694/// getSequentialElement - If this undef has array or vector type, return an
695/// undef with the right element type.
Chris Lattner7e683d12012-01-25 06:16:32 +0000696UndefValue *UndefValue::getSequentialElement() const {
Chris Lattner8326bd82012-01-26 00:42:34 +0000697 return UndefValue::get(getType()->getSequentialElementType());
Chris Lattner030af792012-01-24 05:42:11 +0000698}
699
700/// getStructElement - If this undef has struct type, return a zero with the
701/// right element type for the specified element.
Chris Lattner7e683d12012-01-25 06:16:32 +0000702UndefValue *UndefValue::getStructElement(unsigned Elt) const {
Chris Lattner8326bd82012-01-26 00:42:34 +0000703 return UndefValue::get(getType()->getStructElementType(Elt));
Chris Lattner030af792012-01-24 05:42:11 +0000704}
705
706/// getElementValue - Return an undef of the right value for the specified GEP
707/// index if we can, otherwise return null (e.g. if C is a ConstantExpr).
Chris Lattner7e683d12012-01-25 06:16:32 +0000708UndefValue *UndefValue::getElementValue(Constant *C) const {
Chris Lattner030af792012-01-24 05:42:11 +0000709 if (isa<SequentialType>(getType()))
710 return getSequentialElement();
711 return getStructElement(cast<ConstantInt>(C)->getZExtValue());
712}
713
Chris Lattnerf7eb5432012-01-24 07:54:10 +0000714/// getElementValue - Return an undef of the right value for the specified GEP
715/// index.
Chris Lattner7e683d12012-01-25 06:16:32 +0000716UndefValue *UndefValue::getElementValue(unsigned Idx) const {
Chris Lattnerf7eb5432012-01-24 07:54:10 +0000717 if (isa<SequentialType>(getType()))
718 return getSequentialElement();
719 return getStructElement(Idx);
720}
721
722
Chris Lattner030af792012-01-24 05:42:11 +0000723
724//===----------------------------------------------------------------------===//
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000725// ConstantXXX Classes
726//===----------------------------------------------------------------------===//
727
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000728template <typename ItTy, typename EltTy>
729static bool rangeOnlyContains(ItTy Start, ItTy End, EltTy Elt) {
730 for (; Start != End; ++Start)
731 if (*Start != Elt)
732 return false;
733 return true;
734}
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000735
Jay Foad89d9b812011-07-25 10:14:44 +0000736ConstantArray::ConstantArray(ArrayType *T, ArrayRef<Constant *> V)
Gabor Greiff6caff662008-05-10 08:32:32 +0000737 : Constant(T, ConstantArrayVal,
738 OperandTraits<ConstantArray>::op_end(this) - V.size(),
739 V.size()) {
Alkis Evlogimenos0507ffe2004-09-15 02:32:15 +0000740 assert(V.size() == T->getNumElements() &&
741 "Invalid initializer vector for constant array");
Jay Foad89d9b812011-07-25 10:14:44 +0000742 for (unsigned i = 0, e = V.size(); i != e; ++i)
743 assert(V[i]->getType() == T->getElementType() &&
Alkis Evlogimenoscb031d92004-09-10 04:16:59 +0000744 "Initializer for array element doesn't match array element type!");
Jay Foad89d9b812011-07-25 10:14:44 +0000745 std::copy(V.begin(), V.end(), op_begin());
Chris Lattner2f7c9632001-06-06 20:29:01 +0000746}
747
Chris Lattner229907c2011-07-18 04:54:35 +0000748Constant *ConstantArray::get(ArrayType *Ty, ArrayRef<Constant*> V) {
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000749 // Empty arrays are canonicalized to ConstantAggregateZero.
750 if (V.empty())
751 return ConstantAggregateZero::get(Ty);
752
Jeffrey Yasskin8ce67f82009-09-30 21:08:08 +0000753 for (unsigned i = 0, e = V.size(); i != e; ++i) {
754 assert(V[i]->getType() == Ty->getElementType() &&
755 "Wrong type in array element initializer");
756 }
Owen Andersonc2c79322009-07-28 18:32:17 +0000757 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
Galina Kistanovafc259902012-07-13 01:25:27 +0000758
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000759 // If this is an all-zero array, return a ConstantAggregateZero object. If
760 // all undef, return an UndefValue, if "all simple", then return a
761 // ConstantDataArray.
762 Constant *C = V[0];
763 if (isa<UndefValue>(C) && rangeOnlyContains(V.begin(), V.end(), C))
764 return UndefValue::get(Ty);
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000765
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000766 if (C->isNullValue() && rangeOnlyContains(V.begin(), V.end(), C))
767 return ConstantAggregateZero::get(Ty);
768
769 // Check to see if all of the elements are ConstantFP or ConstantInt and if
770 // the element type is compatible with ConstantDataVector. If so, use it.
771 if (ConstantDataSequential::isElementTypeCompatible(C->getType())) {
772 // We speculatively build the elements here even if it turns out that there
773 // is a constantexpr or something else weird in the array, since it is so
774 // uncommon for that to happen.
775 if (ConstantInt *CI = dyn_cast<ConstantInt>(C)) {
776 if (CI->getType()->isIntegerTy(8)) {
777 SmallVector<uint8_t, 16> Elts;
778 for (unsigned i = 0, e = V.size(); i != e; ++i)
779 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
780 Elts.push_back(CI->getZExtValue());
781 else
782 break;
783 if (Elts.size() == V.size())
784 return ConstantDataArray::get(C->getContext(), Elts);
785 } else if (CI->getType()->isIntegerTy(16)) {
786 SmallVector<uint16_t, 16> Elts;
787 for (unsigned i = 0, e = V.size(); i != e; ++i)
788 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
789 Elts.push_back(CI->getZExtValue());
790 else
791 break;
792 if (Elts.size() == V.size())
793 return ConstantDataArray::get(C->getContext(), Elts);
794 } else if (CI->getType()->isIntegerTy(32)) {
795 SmallVector<uint32_t, 16> Elts;
796 for (unsigned i = 0, e = V.size(); i != e; ++i)
797 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
798 Elts.push_back(CI->getZExtValue());
799 else
800 break;
801 if (Elts.size() == V.size())
802 return ConstantDataArray::get(C->getContext(), Elts);
803 } else if (CI->getType()->isIntegerTy(64)) {
804 SmallVector<uint64_t, 16> Elts;
805 for (unsigned i = 0, e = V.size(); i != e; ++i)
806 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
807 Elts.push_back(CI->getZExtValue());
808 else
809 break;
810 if (Elts.size() == V.size())
811 return ConstantDataArray::get(C->getContext(), Elts);
812 }
813 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000814
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000815 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
816 if (CFP->getType()->isFloatTy()) {
817 SmallVector<float, 16> Elts;
818 for (unsigned i = 0, e = V.size(); i != e; ++i)
819 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V[i]))
820 Elts.push_back(CFP->getValueAPF().convertToFloat());
821 else
822 break;
823 if (Elts.size() == V.size())
824 return ConstantDataArray::get(C->getContext(), Elts);
825 } else if (CFP->getType()->isDoubleTy()) {
826 SmallVector<double, 16> Elts;
827 for (unsigned i = 0, e = V.size(); i != e; ++i)
828 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V[i]))
829 Elts.push_back(CFP->getValueAPF().convertToDouble());
830 else
831 break;
832 if (Elts.size() == V.size())
833 return ConstantDataArray::get(C->getContext(), Elts);
834 }
835 }
Owen Andersonc2c79322009-07-28 18:32:17 +0000836 }
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000837
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000838 // Otherwise, we really do want to create a ConstantArray.
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000839 return pImpl->ArrayConstants.getOrCreate(Ty, V);
Owen Andersonc2c79322009-07-28 18:32:17 +0000840}
841
Chris Lattnercc19efa2011-06-20 04:01:31 +0000842/// getTypeForElements - Return an anonymous struct type to use for a constant
843/// with the specified set of elements. The list must not be empty.
844StructType *ConstantStruct::getTypeForElements(LLVMContext &Context,
845 ArrayRef<Constant*> V,
846 bool Packed) {
Bill Wendling3ae7dd32012-02-07 01:27:51 +0000847 unsigned VecSize = V.size();
848 SmallVector<Type*, 16> EltTypes(VecSize);
849 for (unsigned i = 0; i != VecSize; ++i)
850 EltTypes[i] = V[i]->getType();
Galina Kistanovafc259902012-07-13 01:25:27 +0000851
Chris Lattnercc19efa2011-06-20 04:01:31 +0000852 return StructType::get(Context, EltTypes, Packed);
853}
854
855
856StructType *ConstantStruct::getTypeForElements(ArrayRef<Constant*> V,
857 bool Packed) {
858 assert(!V.empty() &&
859 "ConstantStruct::getTypeForElements cannot be called on empty list");
860 return getTypeForElements(V[0]->getContext(), V, Packed);
861}
862
863
Jay Foad89d9b812011-07-25 10:14:44 +0000864ConstantStruct::ConstantStruct(StructType *T, ArrayRef<Constant *> V)
Gabor Greiff6caff662008-05-10 08:32:32 +0000865 : Constant(T, ConstantStructVal,
866 OperandTraits<ConstantStruct>::op_end(this) - V.size(),
867 V.size()) {
Chris Lattnerc3e74cd2011-08-07 04:18:48 +0000868 assert(V.size() == T->getNumElements() &&
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000869 "Invalid initializer vector for constant structure");
Jay Foad89d9b812011-07-25 10:14:44 +0000870 for (unsigned i = 0, e = V.size(); i != e; ++i)
871 assert((T->isOpaque() || V[i]->getType() == T->getElementType(i)) &&
Chris Lattner93c8f142003-06-02 17:42:47 +0000872 "Initializer for struct element doesn't match struct element type!");
Jay Foad89d9b812011-07-25 10:14:44 +0000873 std::copy(V.begin(), V.end(), op_begin());
Chris Lattner2f7c9632001-06-06 20:29:01 +0000874}
875
Owen Anderson45308b52009-07-27 22:29:26 +0000876// ConstantStruct accessors.
Chris Lattner229907c2011-07-18 04:54:35 +0000877Constant *ConstantStruct::get(StructType *ST, ArrayRef<Constant*> V) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000878 assert((ST->isOpaque() || ST->getNumElements() == V.size()) &&
879 "Incorrect # elements specified to ConstantStruct::get");
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000880
881 // Create a ConstantAggregateZero value if all elements are zeros.
882 bool isZero = true;
883 bool isUndef = false;
884
885 if (!V.empty()) {
886 isUndef = isa<UndefValue>(V[0]);
887 isZero = V[0]->isNullValue();
888 if (isUndef || isZero) {
889 for (unsigned i = 0, e = V.size(); i != e; ++i) {
890 if (!V[i]->isNullValue())
891 isZero = false;
892 if (!isa<UndefValue>(V[i]))
893 isUndef = false;
894 }
895 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000896 }
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000897 if (isZero)
898 return ConstantAggregateZero::get(ST);
899 if (isUndef)
900 return UndefValue::get(ST);
Galina Kistanovafc259902012-07-13 01:25:27 +0000901
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000902 return ST->getContext().pImpl->StructConstants.getOrCreate(ST, V);
Owen Anderson45308b52009-07-27 22:29:26 +0000903}
904
Chris Lattnerc3e74cd2011-08-07 04:18:48 +0000905Constant *ConstantStruct::get(StructType *T, ...) {
Talin3a0a30d2011-02-28 23:53:27 +0000906 va_list ap;
Chris Lattnercc19efa2011-06-20 04:01:31 +0000907 SmallVector<Constant*, 8> Values;
908 va_start(ap, T);
909 while (Constant *Val = va_arg(ap, llvm::Constant*))
Talin3a0a30d2011-02-28 23:53:27 +0000910 Values.push_back(Val);
Talinde422be2011-03-01 18:00:49 +0000911 va_end(ap);
Chris Lattnercc19efa2011-06-20 04:01:31 +0000912 return get(T, Values);
Talin3a0a30d2011-02-28 23:53:27 +0000913}
914
Jay Foad89d9b812011-07-25 10:14:44 +0000915ConstantVector::ConstantVector(VectorType *T, ArrayRef<Constant *> V)
Gabor Greiff6caff662008-05-10 08:32:32 +0000916 : Constant(T, ConstantVectorVal,
917 OperandTraits<ConstantVector>::op_end(this) - V.size(),
918 V.size()) {
Jay Foad89d9b812011-07-25 10:14:44 +0000919 for (size_t i = 0, e = V.size(); i != e; i++)
920 assert(V[i]->getType() == T->getElementType() &&
Dan Gohman30978072007-05-24 14:36:04 +0000921 "Initializer for vector element doesn't match vector element type!");
Jay Foad89d9b812011-07-25 10:14:44 +0000922 std::copy(V.begin(), V.end(), op_begin());
Brian Gaeke02209042004-08-20 06:00:58 +0000923}
924
Owen Anderson4aa32952009-07-28 21:19:26 +0000925// ConstantVector accessors.
Jay Foadb8a8bed32011-06-22 09:10:19 +0000926Constant *ConstantVector::get(ArrayRef<Constant*> V) {
Jay Foad9f32cfd2011-01-27 14:44:55 +0000927 assert(!V.empty() && "Vectors can't be empty");
Chris Lattner229907c2011-07-18 04:54:35 +0000928 VectorType *T = VectorType::get(V.front()->getType(), V.size());
Chris Lattner69229312011-02-15 00:14:00 +0000929 LLVMContextImpl *pImpl = T->getContext().pImpl;
Jay Foad9f32cfd2011-01-27 14:44:55 +0000930
Chris Lattner69229312011-02-15 00:14:00 +0000931 // If this is an all-undef or all-zero vector, return a
Owen Anderson4aa32952009-07-28 21:19:26 +0000932 // ConstantAggregateZero or UndefValue.
933 Constant *C = V[0];
934 bool isZero = C->isNullValue();
935 bool isUndef = isa<UndefValue>(C);
936
937 if (isZero || isUndef) {
938 for (unsigned i = 1, e = V.size(); i != e; ++i)
939 if (V[i] != C) {
940 isZero = isUndef = false;
941 break;
942 }
943 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000944
Owen Anderson4aa32952009-07-28 21:19:26 +0000945 if (isZero)
Owen Andersonb292b8c2009-07-30 23:03:37 +0000946 return ConstantAggregateZero::get(T);
Owen Anderson4aa32952009-07-28 21:19:26 +0000947 if (isUndef)
Owen Andersonb292b8c2009-07-30 23:03:37 +0000948 return UndefValue::get(T);
Galina Kistanovafc259902012-07-13 01:25:27 +0000949
Chris Lattner978fe0c2012-01-30 06:21:21 +0000950 // Check to see if all of the elements are ConstantFP or ConstantInt and if
951 // the element type is compatible with ConstantDataVector. If so, use it.
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000952 if (ConstantDataSequential::isElementTypeCompatible(C->getType())) {
Chris Lattner978fe0c2012-01-30 06:21:21 +0000953 // We speculatively build the elements here even if it turns out that there
954 // is a constantexpr or something else weird in the array, since it is so
955 // uncommon for that to happen.
956 if (ConstantInt *CI = dyn_cast<ConstantInt>(C)) {
957 if (CI->getType()->isIntegerTy(8)) {
958 SmallVector<uint8_t, 16> Elts;
959 for (unsigned i = 0, e = V.size(); i != e; ++i)
960 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
961 Elts.push_back(CI->getZExtValue());
962 else
963 break;
964 if (Elts.size() == V.size())
965 return ConstantDataVector::get(C->getContext(), Elts);
966 } else if (CI->getType()->isIntegerTy(16)) {
967 SmallVector<uint16_t, 16> Elts;
968 for (unsigned i = 0, e = V.size(); i != e; ++i)
969 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
970 Elts.push_back(CI->getZExtValue());
971 else
972 break;
973 if (Elts.size() == V.size())
974 return ConstantDataVector::get(C->getContext(), Elts);
975 } else if (CI->getType()->isIntegerTy(32)) {
976 SmallVector<uint32_t, 16> Elts;
977 for (unsigned i = 0, e = V.size(); i != e; ++i)
978 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
979 Elts.push_back(CI->getZExtValue());
980 else
981 break;
982 if (Elts.size() == V.size())
983 return ConstantDataVector::get(C->getContext(), Elts);
984 } else if (CI->getType()->isIntegerTy(64)) {
985 SmallVector<uint64_t, 16> Elts;
986 for (unsigned i = 0, e = V.size(); i != e; ++i)
987 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
988 Elts.push_back(CI->getZExtValue());
989 else
990 break;
991 if (Elts.size() == V.size())
992 return ConstantDataVector::get(C->getContext(), Elts);
993 }
994 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000995
Chris Lattner978fe0c2012-01-30 06:21:21 +0000996 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
997 if (CFP->getType()->isFloatTy()) {
998 SmallVector<float, 16> Elts;
999 for (unsigned i = 0, e = V.size(); i != e; ++i)
1000 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V[i]))
1001 Elts.push_back(CFP->getValueAPF().convertToFloat());
1002 else
1003 break;
1004 if (Elts.size() == V.size())
1005 return ConstantDataVector::get(C->getContext(), Elts);
1006 } else if (CFP->getType()->isDoubleTy()) {
1007 SmallVector<double, 16> Elts;
1008 for (unsigned i = 0, e = V.size(); i != e; ++i)
1009 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V[i]))
1010 Elts.push_back(CFP->getValueAPF().convertToDouble());
1011 else
1012 break;
1013 if (Elts.size() == V.size())
1014 return ConstantDataVector::get(C->getContext(), Elts);
1015 }
1016 }
1017 }
Galina Kistanovafc259902012-07-13 01:25:27 +00001018
Chris Lattner978fe0c2012-01-30 06:21:21 +00001019 // Otherwise, the element type isn't compatible with ConstantDataVector, or
1020 // the operand list constants a ConstantExpr or something else strange.
Owen Anderson4aa32952009-07-28 21:19:26 +00001021 return pImpl->VectorConstants.getOrCreate(T, V);
1022}
1023
Chris Lattnere9eed292012-01-25 05:19:54 +00001024Constant *ConstantVector::getSplat(unsigned NumElts, Constant *V) {
Chris Lattner978fe0c2012-01-30 06:21:21 +00001025 // If this splat is compatible with ConstantDataVector, use it instead of
1026 // ConstantVector.
1027 if ((isa<ConstantFP>(V) || isa<ConstantInt>(V)) &&
1028 ConstantDataSequential::isElementTypeCompatible(V->getType()))
1029 return ConstantDataVector::getSplat(NumElts, V);
Galina Kistanovafc259902012-07-13 01:25:27 +00001030
Chris Lattnere9eed292012-01-25 05:19:54 +00001031 SmallVector<Constant*, 32> Elts(NumElts, V);
1032 return get(Elts);
1033}
1034
1035
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001036// Utility function for determining if a ConstantExpr is a CastOp or not. This
1037// can't be inline because we don't want to #include Instruction.h into
1038// Constant.h
1039bool ConstantExpr::isCast() const {
1040 return Instruction::isCast(getOpcode());
1041}
1042
Reid Spenceree3c9912006-12-04 05:19:50 +00001043bool ConstantExpr::isCompare() const {
Nick Lewyckya21d3da2009-07-08 03:04:38 +00001044 return getOpcode() == Instruction::ICmp || getOpcode() == Instruction::FCmp;
Reid Spenceree3c9912006-12-04 05:19:50 +00001045}
1046
Dan Gohman7190d482009-09-10 23:37:55 +00001047bool ConstantExpr::isGEPWithNoNotionalOverIndexing() const {
1048 if (getOpcode() != Instruction::GetElementPtr) return false;
1049
1050 gep_type_iterator GEPI = gep_type_begin(this), E = gep_type_end(this);
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001051 User::const_op_iterator OI = std::next(this->op_begin());
Dan Gohman7190d482009-09-10 23:37:55 +00001052
1053 // Skip the first index, as it has no static limit.
1054 ++GEPI;
1055 ++OI;
1056
1057 // The remaining indices must be compile-time known integers within the
1058 // bounds of the corresponding notional static array types.
1059 for (; GEPI != E; ++GEPI, ++OI) {
1060 ConstantInt *CI = dyn_cast<ConstantInt>(*OI);
1061 if (!CI) return false;
Chris Lattner229907c2011-07-18 04:54:35 +00001062 if (ArrayType *ATy = dyn_cast<ArrayType>(*GEPI))
Dan Gohman7190d482009-09-10 23:37:55 +00001063 if (CI->getValue().getActiveBits() > 64 ||
1064 CI->getZExtValue() >= ATy->getNumElements())
1065 return false;
1066 }
1067
1068 // All the indices checked out.
1069 return true;
1070}
1071
Dan Gohman1ecaf452008-05-31 00:58:22 +00001072bool ConstantExpr::hasIndices() const {
1073 return getOpcode() == Instruction::ExtractValue ||
1074 getOpcode() == Instruction::InsertValue;
1075}
1076
Jay Foad0091fe82011-04-13 15:22:40 +00001077ArrayRef<unsigned> ConstantExpr::getIndices() const {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001078 if (const ExtractValueConstantExpr *EVCE =
1079 dyn_cast<ExtractValueConstantExpr>(this))
1080 return EVCE->Indices;
Dan Gohmana469bdb2008-06-23 16:39:44 +00001081
1082 return cast<InsertValueConstantExpr>(this)->Indices;
Dan Gohman1ecaf452008-05-31 00:58:22 +00001083}
1084
Reid Spencer10fbf0e2006-12-03 05:48:19 +00001085unsigned ConstantExpr::getPredicate() const {
Chris Lattnerd04e32d2011-07-17 06:01:30 +00001086 assert(isCompare());
Chris Lattneref650092007-10-18 16:26:24 +00001087 return ((const CompareConstantExpr*)this)->predicate;
Reid Spencer10fbf0e2006-12-03 05:48:19 +00001088}
Chris Lattner60e0dd72001-10-03 06:12:09 +00001089
Chris Lattner7c1018a2006-07-14 19:37:40 +00001090/// getWithOperandReplaced - Return a constant expression identical to this
1091/// one, but with the specified operand set to the specified value.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001092Constant *
1093ConstantExpr::getWithOperandReplaced(unsigned OpNo, Constant *Op) const {
Chris Lattner7c1018a2006-07-14 19:37:40 +00001094 assert(Op->getType() == getOperand(OpNo)->getType() &&
1095 "Replacing operand with value of different type!");
Chris Lattner227816342006-07-14 22:20:01 +00001096 if (getOperand(OpNo) == Op)
1097 return const_cast<ConstantExpr*>(this);
Chris Lattner37e38352012-01-26 20:37:11 +00001098
1099 SmallVector<Constant*, 8> NewOps;
1100 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
1101 NewOps.push_back(i == OpNo ? Op : getOperand(i));
Galina Kistanovafc259902012-07-13 01:25:27 +00001102
Chris Lattner37e38352012-01-26 20:37:11 +00001103 return getWithOperands(NewOps);
Chris Lattner227816342006-07-14 22:20:01 +00001104}
1105
1106/// getWithOperands - This returns the current constant expression with the
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001107/// operands replaced with the specified values. The specified array must
1108/// have the same number of operands as our current one.
Chris Lattner227816342006-07-14 22:20:01 +00001109Constant *ConstantExpr::
Chris Lattner229907c2011-07-18 04:54:35 +00001110getWithOperands(ArrayRef<Constant*> Ops, Type *Ty) const {
Jay Foad5c984e562011-04-13 13:46:01 +00001111 assert(Ops.size() == getNumOperands() && "Operand count mismatch!");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001112 bool AnyChange = Ty != getType();
1113 for (unsigned i = 0; i != Ops.size(); ++i)
Chris Lattner227816342006-07-14 22:20:01 +00001114 AnyChange |= Ops[i] != getOperand(i);
Galina Kistanovafc259902012-07-13 01:25:27 +00001115
Chris Lattner227816342006-07-14 22:20:01 +00001116 if (!AnyChange) // No operands changed, return self.
1117 return const_cast<ConstantExpr*>(this);
1118
1119 switch (getOpcode()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001120 case Instruction::Trunc:
1121 case Instruction::ZExt:
1122 case Instruction::SExt:
1123 case Instruction::FPTrunc:
1124 case Instruction::FPExt:
1125 case Instruction::UIToFP:
1126 case Instruction::SIToFP:
1127 case Instruction::FPToUI:
1128 case Instruction::FPToSI:
1129 case Instruction::PtrToInt:
1130 case Instruction::IntToPtr:
1131 case Instruction::BitCast:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001132 case Instruction::AddrSpaceCast:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001133 return ConstantExpr::getCast(getOpcode(), Ops[0], Ty);
Chris Lattner227816342006-07-14 22:20:01 +00001134 case Instruction::Select:
1135 return ConstantExpr::getSelect(Ops[0], Ops[1], Ops[2]);
1136 case Instruction::InsertElement:
1137 return ConstantExpr::getInsertElement(Ops[0], Ops[1], Ops[2]);
1138 case Instruction::ExtractElement:
1139 return ConstantExpr::getExtractElement(Ops[0], Ops[1]);
Chris Lattner37e38352012-01-26 20:37:11 +00001140 case Instruction::InsertValue:
1141 return ConstantExpr::getInsertValue(Ops[0], Ops[1], getIndices());
1142 case Instruction::ExtractValue:
1143 return ConstantExpr::getExtractValue(Ops[0], getIndices());
Chris Lattner227816342006-07-14 22:20:01 +00001144 case Instruction::ShuffleVector:
1145 return ConstantExpr::getShuffleVector(Ops[0], Ops[1], Ops[2]);
Chris Lattnerb5d70302007-02-19 20:01:23 +00001146 case Instruction::GetElementPtr:
Chris Lattner37e38352012-01-26 20:37:11 +00001147 return ConstantExpr::getGetElementPtr(Ops[0], Ops.slice(1),
1148 cast<GEPOperator>(this)->isInBounds());
Reid Spencer266e42b2006-12-23 06:05:41 +00001149 case Instruction::ICmp:
1150 case Instruction::FCmp:
1151 return ConstantExpr::getCompare(getPredicate(), Ops[0], Ops[1]);
Chris Lattner227816342006-07-14 22:20:01 +00001152 default:
1153 assert(getNumOperands() == 2 && "Must be binary operator?");
Chris Lattnerb9c86512009-12-29 02:14:09 +00001154 return ConstantExpr::get(getOpcode(), Ops[0], Ops[1], SubclassOptionalData);
Chris Lattner7c1018a2006-07-14 19:37:40 +00001155 }
1156}
1157
Chris Lattner2f7c9632001-06-06 20:29:01 +00001158
1159//===----------------------------------------------------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +00001160// isValueValidForType implementations
1161
Chris Lattner229907c2011-07-18 04:54:35 +00001162bool ConstantInt::isValueValidForType(Type *Ty, uint64_t Val) {
Chris Lattner8326bd82012-01-26 00:42:34 +00001163 unsigned NumBits = Ty->getIntegerBitWidth(); // assert okay
1164 if (Ty->isIntegerTy(1))
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001165 return Val == 0 || Val == 1;
Reid Spencerd7a00d72007-02-05 23:47:56 +00001166 if (NumBits >= 64)
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001167 return true; // always true, has to fit in largest type
1168 uint64_t Max = (1ll << NumBits) - 1;
1169 return Val <= Max;
Reid Spencere7334722006-12-19 01:28:19 +00001170}
1171
Chris Lattner229907c2011-07-18 04:54:35 +00001172bool ConstantInt::isValueValidForType(Type *Ty, int64_t Val) {
Chris Lattner8326bd82012-01-26 00:42:34 +00001173 unsigned NumBits = Ty->getIntegerBitWidth();
1174 if (Ty->isIntegerTy(1))
Reid Spencera94d3942007-01-19 21:13:56 +00001175 return Val == 0 || Val == 1 || Val == -1;
Reid Spencerd7a00d72007-02-05 23:47:56 +00001176 if (NumBits >= 64)
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001177 return true; // always true, has to fit in largest type
1178 int64_t Min = -(1ll << (NumBits-1));
1179 int64_t Max = (1ll << (NumBits-1)) - 1;
1180 return (Val >= Min && Val <= Max);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001181}
1182
Chris Lattner229907c2011-07-18 04:54:35 +00001183bool ConstantFP::isValueValidForType(Type *Ty, const APFloat& Val) {
Dale Johannesend246b2c2007-08-30 00:23:21 +00001184 // convert modifies in place, so make a copy.
1185 APFloat Val2 = APFloat(Val);
Dale Johannesen4f0bd682008-10-09 23:00:39 +00001186 bool losesInfo;
Chris Lattner6b727592004-06-17 18:19:28 +00001187 switch (Ty->getTypeID()) {
Chris Lattner2f7c9632001-06-06 20:29:01 +00001188 default:
1189 return false; // These can't be represented as floating point!
1190
Dale Johannesend246b2c2007-08-30 00:23:21 +00001191 // FIXME rounding mode needs to be more flexible
Dan Gohman518cda42011-12-17 00:04:22 +00001192 case Type::HalfTyID: {
1193 if (&Val2.getSemantics() == &APFloat::IEEEhalf)
1194 return true;
1195 Val2.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven, &losesInfo);
1196 return !losesInfo;
1197 }
Dale Johannesen4f0bd682008-10-09 23:00:39 +00001198 case Type::FloatTyID: {
1199 if (&Val2.getSemantics() == &APFloat::IEEEsingle)
1200 return true;
1201 Val2.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven, &losesInfo);
1202 return !losesInfo;
1203 }
1204 case Type::DoubleTyID: {
Dan Gohman518cda42011-12-17 00:04:22 +00001205 if (&Val2.getSemantics() == &APFloat::IEEEhalf ||
1206 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen4f0bd682008-10-09 23:00:39 +00001207 &Val2.getSemantics() == &APFloat::IEEEdouble)
1208 return true;
1209 Val2.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, &losesInfo);
1210 return !losesInfo;
1211 }
Dale Johannesenbdad8092007-08-09 22:51:36 +00001212 case Type::X86_FP80TyID:
Dan Gohman518cda42011-12-17 00:04:22 +00001213 return &Val2.getSemantics() == &APFloat::IEEEhalf ||
1214 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen028084e2007-09-12 03:30:33 +00001215 &Val2.getSemantics() == &APFloat::IEEEdouble ||
1216 &Val2.getSemantics() == &APFloat::x87DoubleExtended;
Dale Johannesenbdad8092007-08-09 22:51:36 +00001217 case Type::FP128TyID:
Dan Gohman518cda42011-12-17 00:04:22 +00001218 return &Val2.getSemantics() == &APFloat::IEEEhalf ||
1219 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen028084e2007-09-12 03:30:33 +00001220 &Val2.getSemantics() == &APFloat::IEEEdouble ||
1221 &Val2.getSemantics() == &APFloat::IEEEquad;
Dale Johannesen007aa372007-10-11 18:07:22 +00001222 case Type::PPC_FP128TyID:
Dan Gohman518cda42011-12-17 00:04:22 +00001223 return &Val2.getSemantics() == &APFloat::IEEEhalf ||
1224 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen007aa372007-10-11 18:07:22 +00001225 &Val2.getSemantics() == &APFloat::IEEEdouble ||
1226 &Val2.getSemantics() == &APFloat::PPCDoubleDouble;
Chris Lattner2f7c9632001-06-06 20:29:01 +00001227 }
Chris Lattneraa2372562006-05-24 17:04:05 +00001228}
Chris Lattner9655e542001-07-20 19:16:02 +00001229
Chris Lattner030af792012-01-24 05:42:11 +00001230
Chris Lattner49d855c2001-09-07 16:46:31 +00001231//===----------------------------------------------------------------------===//
Chris Lattner49d855c2001-09-07 16:46:31 +00001232// Factory Function Implementation
1233
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001234ConstantAggregateZero *ConstantAggregateZero::get(Type *Ty) {
Chris Lattner13ee7952010-08-28 04:09:24 +00001235 assert((Ty->isStructTy() || Ty->isArrayTy() || Ty->isVectorTy()) &&
Owen Andersonb292b8c2009-07-30 23:03:37 +00001236 "Cannot create an aggregate zero of non-aggregate type!");
1237
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001238 ConstantAggregateZero *&Entry = Ty->getContext().pImpl->CAZConstants[Ty];
Craig Topperc6207612014-04-09 06:08:46 +00001239 if (!Entry)
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001240 Entry = new ConstantAggregateZero(Ty);
Galina Kistanovafc259902012-07-13 01:25:27 +00001241
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001242 return Entry;
Owen Andersonb292b8c2009-07-30 23:03:37 +00001243}
1244
Chris Lattner030af792012-01-24 05:42:11 +00001245/// destroyConstant - Remove the constant from the constant table.
Dan Gohman92b551b2009-03-03 02:55:14 +00001246///
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001247void ConstantAggregateZero::destroyConstant() {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001248 getContext().pImpl->CAZConstants.erase(getType());
Chris Lattner9fba3da2004-02-15 05:53:04 +00001249 destroyConstantImpl();
1250}
1251
Dan Gohman92b551b2009-03-03 02:55:14 +00001252/// destroyConstant - Remove the constant from the constant table...
1253///
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001254void ConstantArray::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001255 getType()->getContext().pImpl->ArrayConstants.remove(this);
Chris Lattner98fa07b2003-05-23 20:03:32 +00001256 destroyConstantImpl();
1257}
1258
Chris Lattner81fabb02002-08-26 17:53:56 +00001259
Chris Lattner3462ae32001-12-03 22:26:30 +00001260//---- ConstantStruct::get() implementation...
Chris Lattner49d855c2001-09-07 16:46:31 +00001261//
Chris Lattnerb50d1352003-10-05 00:17:43 +00001262
Chris Lattnerd7a73302001-10-13 06:57:33 +00001263// destroyConstant - Remove the constant from the constant table...
Chris Lattner883ad0b2001-10-03 15:39:36 +00001264//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001265void ConstantStruct::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001266 getType()->getContext().pImpl->StructConstants.remove(this);
Chris Lattnerd7a73302001-10-13 06:57:33 +00001267 destroyConstantImpl();
1268}
Chris Lattner883ad0b2001-10-03 15:39:36 +00001269
Brian Gaeke02209042004-08-20 06:00:58 +00001270// destroyConstant - Remove the constant from the constant table...
1271//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001272void ConstantVector::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001273 getType()->getContext().pImpl->VectorConstants.remove(this);
Brian Gaeke02209042004-08-20 06:00:58 +00001274 destroyConstantImpl();
1275}
1276
Duncan Sandse6beec62012-11-13 12:59:33 +00001277/// getSplatValue - If this is a splat vector constant, meaning that all of
1278/// the elements have the same value, return that value. Otherwise return 0.
1279Constant *Constant::getSplatValue() const {
1280 assert(this->getType()->isVectorTy() && "Only valid for vectors!");
1281 if (isa<ConstantAggregateZero>(this))
1282 return getNullValue(this->getType()->getVectorElementType());
1283 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this))
1284 return CV->getSplatValue();
1285 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
1286 return CV->getSplatValue();
Craig Topperc6207612014-04-09 06:08:46 +00001287 return nullptr;
Duncan Sandse6beec62012-11-13 12:59:33 +00001288}
1289
Dan Gohman07159202007-10-17 17:51:30 +00001290/// getSplatValue - If this is a splat constant, where all of the
1291/// elements have the same value, return that value. Otherwise return null.
Duncan Sandscf0ff032011-02-01 08:39:12 +00001292Constant *ConstantVector::getSplatValue() const {
Dan Gohman07159202007-10-17 17:51:30 +00001293 // Check out first element.
1294 Constant *Elt = getOperand(0);
1295 // Then make sure all remaining elements point to the same value.
1296 for (unsigned I = 1, E = getNumOperands(); I < E; ++I)
Chris Lattnerd04e32d2011-07-17 06:01:30 +00001297 if (getOperand(I) != Elt)
Craig Topperc6207612014-04-09 06:08:46 +00001298 return nullptr;
Dan Gohman07159202007-10-17 17:51:30 +00001299 return Elt;
1300}
1301
Duncan Sandse6beec62012-11-13 12:59:33 +00001302/// If C is a constant integer then return its value, otherwise C must be a
1303/// vector of constant integers, all equal, and the common value is returned.
1304const APInt &Constant::getUniqueInteger() const {
1305 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
1306 return CI->getValue();
1307 assert(this->getSplatValue() && "Doesn't contain a unique integer!");
1308 const Constant *C = this->getAggregateElement(0U);
1309 assert(C && isa<ConstantInt>(C) && "Not a vector of numbers!");
1310 return cast<ConstantInt>(C)->getValue();
1311}
1312
1313
Chris Lattner31b132c2009-10-28 00:01:44 +00001314//---- ConstantPointerNull::get() implementation.
Chris Lattnerd7a73302001-10-13 06:57:33 +00001315//
Chris Lattner98fa07b2003-05-23 20:03:32 +00001316
Chris Lattner229907c2011-07-18 04:54:35 +00001317ConstantPointerNull *ConstantPointerNull::get(PointerType *Ty) {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001318 ConstantPointerNull *&Entry = Ty->getContext().pImpl->CPNConstants[Ty];
Craig Topperc6207612014-04-09 06:08:46 +00001319 if (!Entry)
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001320 Entry = new ConstantPointerNull(Ty);
Galina Kistanovafc259902012-07-13 01:25:27 +00001321
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001322 return Entry;
Chris Lattner883ad0b2001-10-03 15:39:36 +00001323}
1324
Chris Lattner0c6e0b92002-08-18 00:40:04 +00001325// destroyConstant - Remove the constant from the constant table...
1326//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001327void ConstantPointerNull::destroyConstant() {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001328 getContext().pImpl->CPNConstants.erase(getType());
1329 // Free the constant and any dangling references to it.
Chris Lattner0c6e0b92002-08-18 00:40:04 +00001330 destroyConstantImpl();
1331}
1332
1333
Chris Lattner31b132c2009-10-28 00:01:44 +00001334//---- UndefValue::get() implementation.
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001335//
1336
Chris Lattner229907c2011-07-18 04:54:35 +00001337UndefValue *UndefValue::get(Type *Ty) {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001338 UndefValue *&Entry = Ty->getContext().pImpl->UVConstants[Ty];
Craig Topperc6207612014-04-09 06:08:46 +00001339 if (!Entry)
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001340 Entry = new UndefValue(Ty);
Galina Kistanovafc259902012-07-13 01:25:27 +00001341
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001342 return Entry;
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001343}
1344
1345// destroyConstant - Remove the constant from the constant table.
1346//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001347void UndefValue::destroyConstant() {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001348 // Free the constant and any dangling references to it.
1349 getContext().pImpl->UVConstants.erase(getType());
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001350 destroyConstantImpl();
1351}
1352
Chris Lattner31b132c2009-10-28 00:01:44 +00001353//---- BlockAddress::get() implementation.
1354//
1355
1356BlockAddress *BlockAddress::get(BasicBlock *BB) {
Craig Topper2617dcc2014-04-15 06:32:26 +00001357 assert(BB->getParent() && "Block must have a parent");
Chris Lattner31b132c2009-10-28 00:01:44 +00001358 return get(BB->getParent(), BB);
1359}
1360
1361BlockAddress *BlockAddress::get(Function *F, BasicBlock *BB) {
1362 BlockAddress *&BA =
1363 F->getContext().pImpl->BlockAddresses[std::make_pair(F, BB)];
Craig Topperc6207612014-04-09 06:08:46 +00001364 if (!BA)
Chris Lattner31b132c2009-10-28 00:01:44 +00001365 BA = new BlockAddress(F, BB);
Galina Kistanovafc259902012-07-13 01:25:27 +00001366
Chris Lattner31b132c2009-10-28 00:01:44 +00001367 assert(BA->getFunction() == F && "Basic block moved between functions");
1368 return BA;
1369}
1370
1371BlockAddress::BlockAddress(Function *F, BasicBlock *BB)
1372: Constant(Type::getInt8PtrTy(F->getContext()), Value::BlockAddressVal,
1373 &Op<0>(), 2) {
Chris Lattnerc559a9f2009-11-01 03:03:03 +00001374 setOperand(0, F);
1375 setOperand(1, BB);
Chris Lattneraa99c942009-11-01 01:27:45 +00001376 BB->AdjustBlockAddressRefCount(1);
Chris Lattner31b132c2009-10-28 00:01:44 +00001377}
1378
Chandler Carruth6a936922014-01-19 02:13:50 +00001379BlockAddress *BlockAddress::lookup(const BasicBlock *BB) {
1380 if (!BB->hasAddressTaken())
Craig Topperc6207612014-04-09 06:08:46 +00001381 return nullptr;
Chandler Carruth6a936922014-01-19 02:13:50 +00001382
1383 const Function *F = BB->getParent();
Craig Topper2617dcc2014-04-15 06:32:26 +00001384 assert(F && "Block must have a parent");
Chandler Carruth6a936922014-01-19 02:13:50 +00001385 BlockAddress *BA =
1386 F->getContext().pImpl->BlockAddresses.lookup(std::make_pair(F, BB));
1387 assert(BA && "Refcount and block address map disagree!");
1388 return BA;
1389}
Chris Lattner31b132c2009-10-28 00:01:44 +00001390
1391// destroyConstant - Remove the constant from the constant table.
1392//
1393void BlockAddress::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001394 getFunction()->getType()->getContext().pImpl
Chris Lattner31b132c2009-10-28 00:01:44 +00001395 ->BlockAddresses.erase(std::make_pair(getFunction(), getBasicBlock()));
Chris Lattneraa99c942009-11-01 01:27:45 +00001396 getBasicBlock()->AdjustBlockAddressRefCount(-1);
Chris Lattner31b132c2009-10-28 00:01:44 +00001397 destroyConstantImpl();
1398}
1399
1400void BlockAddress::replaceUsesOfWithOnConstant(Value *From, Value *To, Use *U) {
1401 // This could be replacing either the Basic Block or the Function. In either
1402 // case, we have to remove the map entry.
1403 Function *NewF = getFunction();
1404 BasicBlock *NewBB = getBasicBlock();
Galina Kistanovafc259902012-07-13 01:25:27 +00001405
Chris Lattner31b132c2009-10-28 00:01:44 +00001406 if (U == &Op<0>())
Derek Schuffec9dc012013-06-13 19:51:17 +00001407 NewF = cast<Function>(To->stripPointerCasts());
Chris Lattner31b132c2009-10-28 00:01:44 +00001408 else
1409 NewBB = cast<BasicBlock>(To);
Galina Kistanovafc259902012-07-13 01:25:27 +00001410
Chris Lattner31b132c2009-10-28 00:01:44 +00001411 // See if the 'new' entry already exists, if not, just update this in place
1412 // and return early.
1413 BlockAddress *&NewBA =
1414 getContext().pImpl->BlockAddresses[std::make_pair(NewF, NewBB)];
Craig Topperc6207612014-04-09 06:08:46 +00001415 if (!NewBA) {
Chris Lattnerc559a9f2009-11-01 03:03:03 +00001416 getBasicBlock()->AdjustBlockAddressRefCount(-1);
Galina Kistanovafc259902012-07-13 01:25:27 +00001417
Chris Lattner31b132c2009-10-28 00:01:44 +00001418 // Remove the old entry, this can't cause the map to rehash (just a
1419 // tombstone will get added).
1420 getContext().pImpl->BlockAddresses.erase(std::make_pair(getFunction(),
1421 getBasicBlock()));
1422 NewBA = this;
Chris Lattnerc559a9f2009-11-01 03:03:03 +00001423 setOperand(0, NewF);
1424 setOperand(1, NewBB);
1425 getBasicBlock()->AdjustBlockAddressRefCount(1);
Chris Lattner31b132c2009-10-28 00:01:44 +00001426 return;
1427 }
1428
1429 // Otherwise, I do need to replace this with an existing value.
1430 assert(NewBA != this && "I didn't contain From!");
Galina Kistanovafc259902012-07-13 01:25:27 +00001431
Chris Lattner31b132c2009-10-28 00:01:44 +00001432 // Everyone using this now uses the replacement.
Chris Lattneraf1783f2011-07-15 06:18:52 +00001433 replaceAllUsesWith(NewBA);
Galina Kistanovafc259902012-07-13 01:25:27 +00001434
Chris Lattner31b132c2009-10-28 00:01:44 +00001435 destroyConstant();
1436}
1437
1438//---- ConstantExpr::get() implementations.
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001439//
Reid Spencer8d9336d2006-12-31 05:26:44 +00001440
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001441/// This is a utility function to handle folding of casts and lookup of the
Duncan Sands7d6c8ae2008-03-30 19:38:55 +00001442/// cast in the ExprConstants map. It is used by the various get* methods below.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001443static inline Constant *getFoldedCast(
Chris Lattner229907c2011-07-18 04:54:35 +00001444 Instruction::CastOps opc, Constant *C, Type *Ty) {
Chris Lattner815ae2b2003-10-07 22:19:19 +00001445 assert(Ty->isFirstClassType() && "Cannot cast to an aggregate type!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001446 // Fold a few common cases
Chris Lattnerf5edeeb2010-02-01 20:48:08 +00001447 if (Constant *FC = ConstantFoldCastInstruction(opc, C, Ty))
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001448 return FC;
Chris Lattneracdbe712003-04-17 19:24:48 +00001449
Owen Anderson1584a292009-08-04 20:25:11 +00001450 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
1451
Nadav Rotem88330432013-03-07 01:30:40 +00001452 // Look up the constant in the table first to ensure uniqueness.
Nadav Rotem96a4aa62013-03-07 01:38:04 +00001453 ExprMapKeyType Key(opc, C);
Galina Kistanovafc259902012-07-13 01:25:27 +00001454
Owen Anderson1584a292009-08-04 20:25:11 +00001455 return pImpl->ExprConstants.getOrCreate(Ty, Key);
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001456}
Galina Kistanovafc259902012-07-13 01:25:27 +00001457
Chris Lattner229907c2011-07-18 04:54:35 +00001458Constant *ConstantExpr::getCast(unsigned oc, Constant *C, Type *Ty) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001459 Instruction::CastOps opc = Instruction::CastOps(oc);
1460 assert(Instruction::isCast(opc) && "opcode out of range");
1461 assert(C && Ty && "Null arguments to getCast");
Chris Lattner37bc78a2010-01-26 21:51:43 +00001462 assert(CastInst::castIsValid(opc, C, Ty) && "Invalid constantexpr cast!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001463
1464 switch (opc) {
Chris Lattner37bc78a2010-01-26 21:51:43 +00001465 default:
1466 llvm_unreachable("Invalid cast opcode");
Chris Lattner37bc78a2010-01-26 21:51:43 +00001467 case Instruction::Trunc: return getTrunc(C, Ty);
1468 case Instruction::ZExt: return getZExt(C, Ty);
1469 case Instruction::SExt: return getSExt(C, Ty);
1470 case Instruction::FPTrunc: return getFPTrunc(C, Ty);
1471 case Instruction::FPExt: return getFPExtend(C, Ty);
1472 case Instruction::UIToFP: return getUIToFP(C, Ty);
1473 case Instruction::SIToFP: return getSIToFP(C, Ty);
1474 case Instruction::FPToUI: return getFPToUI(C, Ty);
1475 case Instruction::FPToSI: return getFPToSI(C, Ty);
1476 case Instruction::PtrToInt: return getPtrToInt(C, Ty);
1477 case Instruction::IntToPtr: return getIntToPtr(C, Ty);
1478 case Instruction::BitCast: return getBitCast(C, Ty);
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001479 case Instruction::AddrSpaceCast: return getAddrSpaceCast(C, Ty);
Chris Lattner1ece6f82005-01-01 15:59:57 +00001480 }
Galina Kistanovafc259902012-07-13 01:25:27 +00001481}
Reid Spencerf37dc652006-12-05 19:14:13 +00001482
Chris Lattner229907c2011-07-18 04:54:35 +00001483Constant *ConstantExpr::getZExtOrBitCast(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001484 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001485 return getBitCast(C, Ty);
1486 return getZExt(C, Ty);
Reid Spencer5c140882006-12-04 20:17:56 +00001487}
1488
Chris Lattner229907c2011-07-18 04:54:35 +00001489Constant *ConstantExpr::getSExtOrBitCast(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001490 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001491 return getBitCast(C, Ty);
1492 return getSExt(C, Ty);
Reid Spencer5c140882006-12-04 20:17:56 +00001493}
1494
Chris Lattner229907c2011-07-18 04:54:35 +00001495Constant *ConstantExpr::getTruncOrBitCast(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001496 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001497 return getBitCast(C, Ty);
1498 return getTrunc(C, Ty);
Reid Spencer5c140882006-12-04 20:17:56 +00001499}
1500
Chris Lattner229907c2011-07-18 04:54:35 +00001501Constant *ConstantExpr::getPointerCast(Constant *S, Type *Ty) {
Evgeniy Stepanov23382642013-01-16 14:41:46 +00001502 assert(S->getType()->isPtrOrPtrVectorTy() && "Invalid cast");
1503 assert((Ty->isIntOrIntVectorTy() || Ty->isPtrOrPtrVectorTy()) &&
1504 "Invalid cast");
Reid Spencerbc245a02006-12-05 03:25:26 +00001505
Evgeniy Stepanov23382642013-01-16 14:41:46 +00001506 if (Ty->isIntOrIntVectorTy())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001507 return getPtrToInt(S, Ty);
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001508
1509 unsigned SrcAS = S->getType()->getPointerAddressSpace();
1510 if (Ty->isPtrOrPtrVectorTy() && SrcAS != Ty->getPointerAddressSpace())
1511 return getAddrSpaceCast(S, Ty);
1512
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001513 return getBitCast(S, Ty);
Reid Spencerbc245a02006-12-05 03:25:26 +00001514}
1515
Matt Arsenault21f38f42013-12-07 02:58:41 +00001516Constant *ConstantExpr::getPointerBitCastOrAddrSpaceCast(Constant *S,
1517 Type *Ty) {
1518 assert(S->getType()->isPtrOrPtrVectorTy() && "Invalid cast");
1519 assert(Ty->isPtrOrPtrVectorTy() && "Invalid cast");
1520
1521 if (S->getType()->getPointerAddressSpace() != Ty->getPointerAddressSpace())
1522 return getAddrSpaceCast(S, Ty);
1523
1524 return getBitCast(S, Ty);
1525}
1526
1527Constant *ConstantExpr::getIntegerCast(Constant *C, Type *Ty,
Reid Spencer56521c42006-12-12 00:51:07 +00001528 bool isSigned) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001529 assert(C->getType()->isIntOrIntVectorTy() &&
1530 Ty->isIntOrIntVectorTy() && "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001531 unsigned SrcBits = C->getType()->getScalarSizeInBits();
1532 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer56521c42006-12-12 00:51:07 +00001533 Instruction::CastOps opcode =
1534 (SrcBits == DstBits ? Instruction::BitCast :
1535 (SrcBits > DstBits ? Instruction::Trunc :
1536 (isSigned ? Instruction::SExt : Instruction::ZExt)));
1537 return getCast(opcode, C, Ty);
1538}
1539
Chris Lattner229907c2011-07-18 04:54:35 +00001540Constant *ConstantExpr::getFPCast(Constant *C, Type *Ty) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001541 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer56521c42006-12-12 00:51:07 +00001542 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001543 unsigned SrcBits = C->getType()->getScalarSizeInBits();
1544 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencerca104e82006-12-12 05:38:50 +00001545 if (SrcBits == DstBits)
1546 return C; // Avoid a useless cast
Reid Spencer56521c42006-12-12 00:51:07 +00001547 Instruction::CastOps opcode =
Jay Foad9f32cfd2011-01-27 14:44:55 +00001548 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt);
Reid Spencer56521c42006-12-12 00:51:07 +00001549 return getCast(opcode, C, Ty);
1550}
1551
Chris Lattner229907c2011-07-18 04:54:35 +00001552Constant *ConstantExpr::getTrunc(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001553#ifndef NDEBUG
1554 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1555 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1556#endif
1557 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001558 assert(C->getType()->isIntOrIntVectorTy() && "Trunc operand must be integer");
1559 assert(Ty->isIntOrIntVectorTy() && "Trunc produces only integral");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001560 assert(C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001561 "SrcTy must be larger than DestTy for Trunc!");
1562
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001563 return getFoldedCast(Instruction::Trunc, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001564}
1565
Chris Lattner229907c2011-07-18 04:54:35 +00001566Constant *ConstantExpr::getSExt(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001567#ifndef NDEBUG
1568 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1569 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1570#endif
1571 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001572 assert(C->getType()->isIntOrIntVectorTy() && "SExt operand must be integral");
1573 assert(Ty->isIntOrIntVectorTy() && "SExt produces only integer");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001574 assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001575 "SrcTy must be smaller than DestTy for SExt!");
1576
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001577 return getFoldedCast(Instruction::SExt, C, Ty);
Chris Lattnerdd284742004-04-04 23:20:30 +00001578}
1579
Chris Lattner229907c2011-07-18 04:54:35 +00001580Constant *ConstantExpr::getZExt(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001581#ifndef NDEBUG
1582 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1583 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1584#endif
1585 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001586 assert(C->getType()->isIntOrIntVectorTy() && "ZEXt operand must be integral");
1587 assert(Ty->isIntOrIntVectorTy() && "ZExt produces only integer");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001588 assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001589 "SrcTy must be smaller than DestTy for ZExt!");
1590
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001591 return getFoldedCast(Instruction::ZExt, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001592}
1593
Chris Lattner229907c2011-07-18 04:54:35 +00001594Constant *ConstantExpr::getFPTrunc(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001595#ifndef NDEBUG
1596 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1597 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1598#endif
1599 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001600 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001601 C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001602 "This is an illegal floating point truncation!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001603 return getFoldedCast(Instruction::FPTrunc, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001604}
1605
Chris Lattner229907c2011-07-18 04:54:35 +00001606Constant *ConstantExpr::getFPExtend(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001607#ifndef NDEBUG
1608 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1609 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1610#endif
1611 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001612 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001613 C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001614 "This is an illegal floating point extension!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001615 return getFoldedCast(Instruction::FPExt, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001616}
1617
Chris Lattner229907c2011-07-18 04:54:35 +00001618Constant *ConstantExpr::getUIToFP(Constant *C, Type *Ty) {
Devang Pateld26344d2008-11-03 23:20:04 +00001619#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001620 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1621 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001622#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001623 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001624 assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00001625 "This is an illegal uint to floating point cast!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001626 return getFoldedCast(Instruction::UIToFP, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001627}
1628
Chris Lattner229907c2011-07-18 04:54:35 +00001629Constant *ConstantExpr::getSIToFP(Constant *C, Type *Ty) {
Devang Pateld26344d2008-11-03 23:20:04 +00001630#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001631 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1632 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001633#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001634 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001635 assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001636 "This is an illegal sint to floating point cast!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001637 return getFoldedCast(Instruction::SIToFP, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001638}
1639
Chris Lattner229907c2011-07-18 04:54:35 +00001640Constant *ConstantExpr::getFPToUI(Constant *C, Type *Ty) {
Devang Pateld26344d2008-11-03 23:20:04 +00001641#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001642 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1643 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001644#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001645 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001646 assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00001647 "This is an illegal floating point to uint cast!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001648 return getFoldedCast(Instruction::FPToUI, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001649}
1650
Chris Lattner229907c2011-07-18 04:54:35 +00001651Constant *ConstantExpr::getFPToSI(Constant *C, Type *Ty) {
Devang Pateld26344d2008-11-03 23:20:04 +00001652#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001653 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1654 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001655#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001656 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001657 assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00001658 "This is an illegal floating point to sint cast!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001659 return getFoldedCast(Instruction::FPToSI, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001660}
1661
Chris Lattner229907c2011-07-18 04:54:35 +00001662Constant *ConstantExpr::getPtrToInt(Constant *C, Type *DstTy) {
Nadav Rotem3924cb02011-12-05 06:29:09 +00001663 assert(C->getType()->getScalarType()->isPointerTy() &&
1664 "PtrToInt source must be pointer or pointer vector");
1665 assert(DstTy->getScalarType()->isIntegerTy() &&
1666 "PtrToInt destination must be integer or integer vector");
Chris Lattner8a3df542012-01-25 01:32:59 +00001667 assert(isa<VectorType>(C->getType()) == isa<VectorType>(DstTy));
Nick Lewyckyff509622012-01-25 03:20:12 +00001668 if (isa<VectorType>(C->getType()))
Chris Lattner8326bd82012-01-26 00:42:34 +00001669 assert(C->getType()->getVectorNumElements()==DstTy->getVectorNumElements()&&
Chris Lattner8a3df542012-01-25 01:32:59 +00001670 "Invalid cast between a different number of vector elements");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001671 return getFoldedCast(Instruction::PtrToInt, C, DstTy);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001672}
1673
Chris Lattner229907c2011-07-18 04:54:35 +00001674Constant *ConstantExpr::getIntToPtr(Constant *C, Type *DstTy) {
Nadav Rotem3924cb02011-12-05 06:29:09 +00001675 assert(C->getType()->getScalarType()->isIntegerTy() &&
1676 "IntToPtr source must be integer or integer vector");
1677 assert(DstTy->getScalarType()->isPointerTy() &&
1678 "IntToPtr destination must be a pointer or pointer vector");
Chris Lattner8a3df542012-01-25 01:32:59 +00001679 assert(isa<VectorType>(C->getType()) == isa<VectorType>(DstTy));
Nick Lewyckyff509622012-01-25 03:20:12 +00001680 if (isa<VectorType>(C->getType()))
Chris Lattner8326bd82012-01-26 00:42:34 +00001681 assert(C->getType()->getVectorNumElements()==DstTy->getVectorNumElements()&&
Chris Lattner8a3df542012-01-25 01:32:59 +00001682 "Invalid cast between a different number of vector elements");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001683 return getFoldedCast(Instruction::IntToPtr, C, DstTy);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001684}
1685
Chris Lattner229907c2011-07-18 04:54:35 +00001686Constant *ConstantExpr::getBitCast(Constant *C, Type *DstTy) {
Chris Lattner37bc78a2010-01-26 21:51:43 +00001687 assert(CastInst::castIsValid(Instruction::BitCast, C, DstTy) &&
1688 "Invalid constantexpr bitcast!");
Galina Kistanovafc259902012-07-13 01:25:27 +00001689
Chris Lattnercbeda872009-03-21 06:55:54 +00001690 // It is common to ask for a bitcast of a value to its own type, handle this
1691 // speedily.
1692 if (C->getType() == DstTy) return C;
Galina Kistanovafc259902012-07-13 01:25:27 +00001693
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001694 return getFoldedCast(Instruction::BitCast, C, DstTy);
Chris Lattnerdd284742004-04-04 23:20:30 +00001695}
1696
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001697Constant *ConstantExpr::getAddrSpaceCast(Constant *C, Type *DstTy) {
1698 assert(CastInst::castIsValid(Instruction::AddrSpaceCast, C, DstTy) &&
1699 "Invalid constantexpr addrspacecast!");
1700
1701 return getFoldedCast(Instruction::AddrSpaceCast, C, DstTy);
1702}
1703
Chris Lattner887ecac2011-07-09 18:23:52 +00001704Constant *ConstantExpr::get(unsigned Opcode, Constant *C1, Constant *C2,
1705 unsigned Flags) {
1706 // Check the operands for consistency first.
Reid Spencer7eb55b32006-11-02 01:53:59 +00001707 assert(Opcode >= Instruction::BinaryOpsBegin &&
1708 Opcode < Instruction::BinaryOpsEnd &&
Chris Lattner38a9bcd2003-05-21 17:49:25 +00001709 "Invalid opcode in binary constant expression");
1710 assert(C1->getType() == C2->getType() &&
1711 "Operand types in binary constant expression should match");
Galina Kistanovafc259902012-07-13 01:25:27 +00001712
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001713#ifndef NDEBUG
1714 switch (Opcode) {
Dan Gohmana5b96452009-06-04 22:49:04 +00001715 case Instruction::Add:
Reid Spencer7eb55b32006-11-02 01:53:59 +00001716 case Instruction::Sub:
Dan Gohmana5b96452009-06-04 22:49:04 +00001717 case Instruction::Mul:
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001718 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001719 assert(C1->getType()->isIntOrIntVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001720 "Tried to create an integer operation on a non-integer type!");
1721 break;
1722 case Instruction::FAdd:
1723 case Instruction::FSub:
1724 case Instruction::FMul:
1725 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001726 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001727 "Tried to create a floating-point operation on a "
1728 "non-floating-point type!");
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001729 break;
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001730 case Instruction::UDiv:
1731 case Instruction::SDiv:
1732 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001733 assert(C1->getType()->isIntOrIntVectorTy() &&
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001734 "Tried to create an arithmetic operation on a non-arithmetic type!");
1735 break;
1736 case Instruction::FDiv:
1737 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001738 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001739 "Tried to create an arithmetic operation on a non-arithmetic type!");
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001740 break;
Reid Spencer7eb55b32006-11-02 01:53:59 +00001741 case Instruction::URem:
1742 case Instruction::SRem:
1743 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001744 assert(C1->getType()->isIntOrIntVectorTy() &&
Reid Spencer7eb55b32006-11-02 01:53:59 +00001745 "Tried to create an arithmetic operation on a non-arithmetic type!");
1746 break;
1747 case Instruction::FRem:
1748 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001749 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001750 "Tried to create an arithmetic operation on a non-arithmetic type!");
Reid Spencer7eb55b32006-11-02 01:53:59 +00001751 break;
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001752 case Instruction::And:
1753 case Instruction::Or:
1754 case Instruction::Xor:
1755 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001756 assert(C1->getType()->isIntOrIntVectorTy() &&
Misha Brukman3852f652005-01-27 06:46:38 +00001757 "Tried to create a logical operation on a non-integral type!");
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001758 break;
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001759 case Instruction::Shl:
Reid Spencerfdff9382006-11-08 06:47:33 +00001760 case Instruction::LShr:
1761 case Instruction::AShr:
Reid Spencer2341c222007-02-02 02:16:23 +00001762 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001763 assert(C1->getType()->isIntOrIntVectorTy() &&
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001764 "Tried to create a shift operation on a non-integer type!");
1765 break;
1766 default:
1767 break;
1768 }
1769#endif
1770
Chris Lattner887ecac2011-07-09 18:23:52 +00001771 if (Constant *FC = ConstantFoldBinaryInstruction(Opcode, C1, C2))
1772 return FC; // Fold a few common cases.
Galina Kistanovafc259902012-07-13 01:25:27 +00001773
Benjamin Kramer324322b2013-03-07 20:53:34 +00001774 Constant *ArgVec[] = { C1, C2 };
1775 ExprMapKeyType Key(Opcode, ArgVec, 0, Flags);
Galina Kistanovafc259902012-07-13 01:25:27 +00001776
Chris Lattner887ecac2011-07-09 18:23:52 +00001777 LLVMContextImpl *pImpl = C1->getContext().pImpl;
1778 return pImpl->ExprConstants.getOrCreate(C1->getType(), Key);
Reid Spencera009d0d2006-12-04 21:35:24 +00001779}
1780
Chris Lattner229907c2011-07-18 04:54:35 +00001781Constant *ConstantExpr::getSizeOf(Type* Ty) {
Owen Anderson487375e2009-07-29 18:55:55 +00001782 // sizeof is implemented as: (i64) gep (Ty*)null, 1
1783 // Note that a non-inbounds gep is used, as null isn't within any object.
Owen Anderson55f1c092009-08-13 21:58:54 +00001784 Constant *GEPIdx = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
Owen Anderson487375e2009-07-29 18:55:55 +00001785 Constant *GEP = getGetElementPtr(
Jay Foaded8db7d2011-07-21 14:31:17 +00001786 Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx);
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001787 return getPtrToInt(GEP,
1788 Type::getInt64Ty(Ty->getContext()));
Owen Anderson487375e2009-07-29 18:55:55 +00001789}
1790
Chris Lattner229907c2011-07-18 04:54:35 +00001791Constant *ConstantExpr::getAlignOf(Type* Ty) {
Dan Gohmancf913832010-01-28 02:15:55 +00001792 // alignof is implemented as: (i64) gep ({i1,Ty}*)null, 0, 1
Dan Gohman50c09d02009-08-11 17:57:01 +00001793 // Note that a non-inbounds gep is used, as null isn't within any object.
Chris Lattner229907c2011-07-18 04:54:35 +00001794 Type *AligningTy =
Chris Lattnerf3f545e2011-06-18 22:48:56 +00001795 StructType::get(Type::getInt1Ty(Ty->getContext()), Ty, NULL);
Matt Arsenaultbe558882014-04-23 20:58:57 +00001796 Constant *NullPtr = Constant::getNullValue(AligningTy->getPointerTo(0));
Dan Gohmana9be7392010-01-28 02:43:22 +00001797 Constant *Zero = ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0);
Owen Anderson55f1c092009-08-13 21:58:54 +00001798 Constant *One = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
Owen Anderson487375e2009-07-29 18:55:55 +00001799 Constant *Indices[2] = { Zero, One };
Jay Foaded8db7d2011-07-21 14:31:17 +00001800 Constant *GEP = getGetElementPtr(NullPtr, Indices);
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001801 return getPtrToInt(GEP,
1802 Type::getInt64Ty(Ty->getContext()));
Owen Anderson487375e2009-07-29 18:55:55 +00001803}
1804
Chris Lattner229907c2011-07-18 04:54:35 +00001805Constant *ConstantExpr::getOffsetOf(StructType* STy, unsigned FieldNo) {
Dan Gohmanede94e62010-02-01 16:37:38 +00001806 return getOffsetOf(STy, ConstantInt::get(Type::getInt32Ty(STy->getContext()),
1807 FieldNo));
1808}
1809
Chris Lattner229907c2011-07-18 04:54:35 +00001810Constant *ConstantExpr::getOffsetOf(Type* Ty, Constant *FieldNo) {
Dan Gohmanff3af7252009-08-16 21:26:11 +00001811 // offsetof is implemented as: (i64) gep (Ty*)null, 0, FieldNo
1812 // Note that a non-inbounds gep is used, as null isn't within any object.
1813 Constant *GEPIdx[] = {
Dan Gohmanede94e62010-02-01 16:37:38 +00001814 ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0),
1815 FieldNo
Dan Gohmanff3af7252009-08-16 21:26:11 +00001816 };
1817 Constant *GEP = getGetElementPtr(
Jay Foaded8db7d2011-07-21 14:31:17 +00001818 Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx);
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001819 return getPtrToInt(GEP,
1820 Type::getInt64Ty(Ty->getContext()));
Dan Gohmanff3af7252009-08-16 21:26:11 +00001821}
Owen Anderson487375e2009-07-29 18:55:55 +00001822
Chris Lattner887ecac2011-07-09 18:23:52 +00001823Constant *ConstantExpr::getCompare(unsigned short Predicate,
1824 Constant *C1, Constant *C2) {
Reid Spencera009d0d2006-12-04 21:35:24 +00001825 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Galina Kistanovafc259902012-07-13 01:25:27 +00001826
Chris Lattner887ecac2011-07-09 18:23:52 +00001827 switch (Predicate) {
1828 default: llvm_unreachable("Invalid CmpInst predicate");
1829 case CmpInst::FCMP_FALSE: case CmpInst::FCMP_OEQ: case CmpInst::FCMP_OGT:
1830 case CmpInst::FCMP_OGE: case CmpInst::FCMP_OLT: case CmpInst::FCMP_OLE:
1831 case CmpInst::FCMP_ONE: case CmpInst::FCMP_ORD: case CmpInst::FCMP_UNO:
1832 case CmpInst::FCMP_UEQ: case CmpInst::FCMP_UGT: case CmpInst::FCMP_UGE:
1833 case CmpInst::FCMP_ULT: case CmpInst::FCMP_ULE: case CmpInst::FCMP_UNE:
1834 case CmpInst::FCMP_TRUE:
1835 return getFCmp(Predicate, C1, C2);
Galina Kistanovafc259902012-07-13 01:25:27 +00001836
Chris Lattner887ecac2011-07-09 18:23:52 +00001837 case CmpInst::ICMP_EQ: case CmpInst::ICMP_NE: case CmpInst::ICMP_UGT:
1838 case CmpInst::ICMP_UGE: case CmpInst::ICMP_ULT: case CmpInst::ICMP_ULE:
1839 case CmpInst::ICMP_SGT: case CmpInst::ICMP_SGE: case CmpInst::ICMP_SLT:
1840 case CmpInst::ICMP_SLE:
1841 return getICmp(Predicate, C1, C2);
1842 }
Chris Lattner29ca2c62004-08-04 18:50:09 +00001843}
1844
Chris Lattner887ecac2011-07-09 18:23:52 +00001845Constant *ConstantExpr::getSelect(Constant *C, Constant *V1, Constant *V2) {
Chris Lattner41632132008-12-29 00:16:12 +00001846 assert(!SelectInst::areInvalidOperands(C, V1, V2)&&"Invalid select operands");
Chris Lattner6e415c02004-03-12 05:54:04 +00001847
Chris Lattner887ecac2011-07-09 18:23:52 +00001848 if (Constant *SC = ConstantFoldSelectInstruction(C, V1, V2))
1849 return SC; // Fold common cases
Chris Lattner6e415c02004-03-12 05:54:04 +00001850
Benjamin Kramer324322b2013-03-07 20:53:34 +00001851 Constant *ArgVec[] = { C, V1, V2 };
1852 ExprMapKeyType Key(Instruction::Select, ArgVec);
Galina Kistanovafc259902012-07-13 01:25:27 +00001853
Chris Lattner887ecac2011-07-09 18:23:52 +00001854 LLVMContextImpl *pImpl = C->getContext().pImpl;
1855 return pImpl->ExprConstants.getOrCreate(V1->getType(), Key);
Chris Lattner6e415c02004-03-12 05:54:04 +00001856}
1857
Jay Foaded8db7d2011-07-21 14:31:17 +00001858Constant *ConstantExpr::getGetElementPtr(Constant *C, ArrayRef<Value *> Idxs,
1859 bool InBounds) {
Duncan Sandse6beec62012-11-13 12:59:33 +00001860 assert(C->getType()->isPtrOrPtrVectorTy() &&
1861 "Non-pointer type for constant GetElementPtr expression");
1862
Jay Foaded8db7d2011-07-21 14:31:17 +00001863 if (Constant *FC = ConstantFoldGetElementPtr(C, InBounds, Idxs))
Chris Lattner94c8d292011-02-11 05:34:33 +00001864 return FC; // Fold a few common cases.
Dan Gohman1b849082009-09-07 23:54:19 +00001865
Chris Lattner887ecac2011-07-09 18:23:52 +00001866 // Get the result type of the getelementptr!
Jay Foadd1b78492011-07-25 09:48:08 +00001867 Type *Ty = GetElementPtrInst::getIndexedType(C->getType(), Idxs);
Chris Lattner887ecac2011-07-09 18:23:52 +00001868 assert(Ty && "GEP indices invalid!");
Chris Lattner8326bd82012-01-26 00:42:34 +00001869 unsigned AS = C->getType()->getPointerAddressSpace();
Chris Lattner887ecac2011-07-09 18:23:52 +00001870 Type *ReqTy = Ty->getPointerTo(AS);
Duncan Sandse6beec62012-11-13 12:59:33 +00001871 if (VectorType *VecTy = dyn_cast<VectorType>(C->getType()))
1872 ReqTy = VectorType::get(ReqTy, VecTy->getNumElements());
Galina Kistanovafc259902012-07-13 01:25:27 +00001873
Dan Gohman1b849082009-09-07 23:54:19 +00001874 // Look up the constant in the table first to ensure uniqueness
1875 std::vector<Constant*> ArgVec;
Jay Foaded8db7d2011-07-21 14:31:17 +00001876 ArgVec.reserve(1 + Idxs.size());
Dan Gohman1b849082009-09-07 23:54:19 +00001877 ArgVec.push_back(C);
Duncan Sandse6beec62012-11-13 12:59:33 +00001878 for (unsigned i = 0, e = Idxs.size(); i != e; ++i) {
1879 assert(Idxs[i]->getType()->isVectorTy() == ReqTy->isVectorTy() &&
1880 "getelementptr index type missmatch");
1881 assert((!Idxs[i]->getType()->isVectorTy() ||
1882 ReqTy->getVectorNumElements() ==
1883 Idxs[i]->getType()->getVectorNumElements()) &&
1884 "getelementptr index type missmatch");
Dan Gohman1b849082009-09-07 23:54:19 +00001885 ArgVec.push_back(cast<Constant>(Idxs[i]));
Duncan Sandse6beec62012-11-13 12:59:33 +00001886 }
Dan Gohman1b849082009-09-07 23:54:19 +00001887 const ExprMapKeyType Key(Instruction::GetElementPtr, ArgVec, 0,
Chris Lattner94c8d292011-02-11 05:34:33 +00001888 InBounds ? GEPOperator::IsInBounds : 0);
Galina Kistanovafc259902012-07-13 01:25:27 +00001889
Chris Lattner887ecac2011-07-09 18:23:52 +00001890 LLVMContextImpl *pImpl = C->getContext().pImpl;
Dan Gohman1b849082009-09-07 23:54:19 +00001891 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
1892}
1893
Reid Spenceree3c9912006-12-04 05:19:50 +00001894Constant *
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001895ConstantExpr::getICmp(unsigned short pred, Constant *LHS, Constant *RHS) {
Reid Spenceree3c9912006-12-04 05:19:50 +00001896 assert(LHS->getType() == RHS->getType());
1897 assert(pred >= ICmpInst::FIRST_ICMP_PREDICATE &&
1898 pred <= ICmpInst::LAST_ICMP_PREDICATE && "Invalid ICmp Predicate");
1899
Chris Lattnerf5edeeb2010-02-01 20:48:08 +00001900 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
Reid Spenceree3c9912006-12-04 05:19:50 +00001901 return FC; // Fold a few common cases...
1902
1903 // Look up the constant in the table first to ensure uniqueness
Benjamin Kramer324322b2013-03-07 20:53:34 +00001904 Constant *ArgVec[] = { LHS, RHS };
Reid Spencerb1537492006-12-24 18:42:29 +00001905 // Get the key type with both the opcode and predicate
Reid Spenceree3c9912006-12-04 05:19:50 +00001906 const ExprMapKeyType Key(Instruction::ICmp, ArgVec, pred);
Owen Anderson61794042009-06-17 20:10:08 +00001907
Chris Lattner229907c2011-07-18 04:54:35 +00001908 Type *ResultTy = Type::getInt1Ty(LHS->getContext());
1909 if (VectorType *VT = dyn_cast<VectorType>(LHS->getType()))
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001910 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
1911
Owen Anderson1584a292009-08-04 20:25:11 +00001912 LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl;
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001913 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
Reid Spenceree3c9912006-12-04 05:19:50 +00001914}
1915
1916Constant *
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001917ConstantExpr::getFCmp(unsigned short pred, Constant *LHS, Constant *RHS) {
Reid Spenceree3c9912006-12-04 05:19:50 +00001918 assert(LHS->getType() == RHS->getType());
1919 assert(pred <= FCmpInst::LAST_FCMP_PREDICATE && "Invalid FCmp Predicate");
1920
Chris Lattnerf5edeeb2010-02-01 20:48:08 +00001921 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
Reid Spenceree3c9912006-12-04 05:19:50 +00001922 return FC; // Fold a few common cases...
1923
1924 // Look up the constant in the table first to ensure uniqueness
Benjamin Kramer324322b2013-03-07 20:53:34 +00001925 Constant *ArgVec[] = { LHS, RHS };
Reid Spencerb1537492006-12-24 18:42:29 +00001926 // Get the key type with both the opcode and predicate
Reid Spenceree3c9912006-12-04 05:19:50 +00001927 const ExprMapKeyType Key(Instruction::FCmp, ArgVec, pred);
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001928
Chris Lattner229907c2011-07-18 04:54:35 +00001929 Type *ResultTy = Type::getInt1Ty(LHS->getContext());
1930 if (VectorType *VT = dyn_cast<VectorType>(LHS->getType()))
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001931 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
1932
Owen Anderson1584a292009-08-04 20:25:11 +00001933 LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl;
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001934 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
Reid Spenceree3c9912006-12-04 05:19:50 +00001935}
1936
Robert Bocchino23004482006-01-10 19:05:34 +00001937Constant *ConstantExpr::getExtractElement(Constant *Val, Constant *Idx) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001938 assert(Val->getType()->isVectorTy() &&
Reid Spencer09575ba2007-02-15 03:39:18 +00001939 "Tried to create extractelement operation on non-vector type!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001940 assert(Idx->getType()->isIntegerTy(32) &&
Reid Spencer2546b762007-01-26 07:37:34 +00001941 "Extractelement index must be i32 type!");
Galina Kistanovafc259902012-07-13 01:25:27 +00001942
Chris Lattner887ecac2011-07-09 18:23:52 +00001943 if (Constant *FC = ConstantFoldExtractElementInstruction(Val, Idx))
Chris Lattner09660c92009-12-30 20:25:09 +00001944 return FC; // Fold a few common cases.
Galina Kistanovafc259902012-07-13 01:25:27 +00001945
Robert Bocchinoca27f032006-01-17 20:07:22 +00001946 // Look up the constant in the table first to ensure uniqueness
Benjamin Kramer324322b2013-03-07 20:53:34 +00001947 Constant *ArgVec[] = { Val, Idx };
1948 const ExprMapKeyType Key(Instruction::ExtractElement, ArgVec);
Galina Kistanovafc259902012-07-13 01:25:27 +00001949
Chris Lattner887ecac2011-07-09 18:23:52 +00001950 LLVMContextImpl *pImpl = Val->getContext().pImpl;
Chris Lattner8326bd82012-01-26 00:42:34 +00001951 Type *ReqTy = Val->getType()->getVectorElementType();
Owen Anderson1584a292009-08-04 20:25:11 +00001952 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001953}
1954
1955Constant *ConstantExpr::getInsertElement(Constant *Val, Constant *Elt,
1956 Constant *Idx) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001957 assert(Val->getType()->isVectorTy() &&
Reid Spencer09575ba2007-02-15 03:39:18 +00001958 "Tried to create insertelement operation on non-vector type!");
Chris Lattner8326bd82012-01-26 00:42:34 +00001959 assert(Elt->getType() == Val->getType()->getVectorElementType() &&
1960 "Insertelement types must match!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001961 assert(Idx->getType()->isIntegerTy(32) &&
Reid Spencer2546b762007-01-26 07:37:34 +00001962 "Insertelement index must be i32 type!");
Robert Bocchinoca27f032006-01-17 20:07:22 +00001963
Chris Lattner887ecac2011-07-09 18:23:52 +00001964 if (Constant *FC = ConstantFoldInsertElementInstruction(Val, Elt, Idx))
1965 return FC; // Fold a few common cases.
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001966 // Look up the constant in the table first to ensure uniqueness
Benjamin Kramer324322b2013-03-07 20:53:34 +00001967 Constant *ArgVec[] = { Val, Elt, Idx };
1968 const ExprMapKeyType Key(Instruction::InsertElement, ArgVec);
Galina Kistanovafc259902012-07-13 01:25:27 +00001969
Chris Lattner887ecac2011-07-09 18:23:52 +00001970 LLVMContextImpl *pImpl = Val->getContext().pImpl;
1971 return pImpl->ExprConstants.getOrCreate(Val->getType(), Key);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001972}
1973
1974Constant *ConstantExpr::getShuffleVector(Constant *V1, Constant *V2,
1975 Constant *Mask) {
1976 assert(ShuffleVectorInst::isValidOperands(V1, V2, Mask) &&
1977 "Invalid shuffle vector constant expr operands!");
Nate Begeman94aa38d2009-02-12 21:28:33 +00001978
Chris Lattner887ecac2011-07-09 18:23:52 +00001979 if (Constant *FC = ConstantFoldShuffleVectorInstruction(V1, V2, Mask))
1980 return FC; // Fold a few common cases.
1981
Chris Lattner8326bd82012-01-26 00:42:34 +00001982 unsigned NElts = Mask->getType()->getVectorNumElements();
1983 Type *EltTy = V1->getType()->getVectorElementType();
Chris Lattner229907c2011-07-18 04:54:35 +00001984 Type *ShufTy = VectorType::get(EltTy, NElts);
Chris Lattner887ecac2011-07-09 18:23:52 +00001985
1986 // Look up the constant in the table first to ensure uniqueness
Benjamin Kramer324322b2013-03-07 20:53:34 +00001987 Constant *ArgVec[] = { V1, V2, Mask };
1988 const ExprMapKeyType Key(Instruction::ShuffleVector, ArgVec);
Galina Kistanovafc259902012-07-13 01:25:27 +00001989
Chris Lattner887ecac2011-07-09 18:23:52 +00001990 LLVMContextImpl *pImpl = ShufTy->getContext().pImpl;
1991 return pImpl->ExprConstants.getOrCreate(ShufTy, Key);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001992}
1993
Chris Lattner887ecac2011-07-09 18:23:52 +00001994Constant *ConstantExpr::getInsertValue(Constant *Agg, Constant *Val,
Jay Foad57aa6362011-07-13 10:26:04 +00001995 ArrayRef<unsigned> Idxs) {
Hal Finkelb31366d2013-07-10 22:51:01 +00001996 assert(Agg->getType()->isFirstClassType() &&
1997 "Non-first-class type for constant insertvalue expression");
1998
Jay Foad57aa6362011-07-13 10:26:04 +00001999 assert(ExtractValueInst::getIndexedType(Agg->getType(),
2000 Idxs) == Val->getType() &&
Dan Gohman12fce772008-05-15 19:50:34 +00002001 "insertvalue indices invalid!");
Hal Finkelb31366d2013-07-10 22:51:01 +00002002 Type *ReqTy = Val->getType();
2003
2004 if (Constant *FC = ConstantFoldInsertValueInstruction(Agg, Val, Idxs))
2005 return FC;
2006
2007 Constant *ArgVec[] = { Agg, Val };
2008 const ExprMapKeyType Key(Instruction::InsertValue, ArgVec, 0, 0, Idxs);
2009
2010 LLVMContextImpl *pImpl = Agg->getContext().pImpl;
2011 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Dan Gohman12fce772008-05-15 19:50:34 +00002012}
2013
Chris Lattner887ecac2011-07-09 18:23:52 +00002014Constant *ConstantExpr::getExtractValue(Constant *Agg,
Jay Foad57aa6362011-07-13 10:26:04 +00002015 ArrayRef<unsigned> Idxs) {
Dan Gohman0752bff2008-05-23 00:36:11 +00002016 assert(Agg->getType()->isFirstClassType() &&
Chris Lattner887ecac2011-07-09 18:23:52 +00002017 "Tried to create extractelement operation on non-first-class type!");
Dan Gohman12fce772008-05-15 19:50:34 +00002018
Chris Lattner229907c2011-07-18 04:54:35 +00002019 Type *ReqTy = ExtractValueInst::getIndexedType(Agg->getType(), Idxs);
Chandler Carruth9db56b82011-07-10 09:45:35 +00002020 (void)ReqTy;
Chris Lattner887ecac2011-07-09 18:23:52 +00002021 assert(ReqTy && "extractvalue indices invalid!");
Galina Kistanovafc259902012-07-13 01:25:27 +00002022
Dan Gohman0752bff2008-05-23 00:36:11 +00002023 assert(Agg->getType()->isFirstClassType() &&
2024 "Non-first-class type for constant extractvalue expression");
Hal Finkelb31366d2013-07-10 22:51:01 +00002025 if (Constant *FC = ConstantFoldExtractValueInstruction(Agg, Idxs))
2026 return FC;
2027
2028 Constant *ArgVec[] = { Agg };
2029 const ExprMapKeyType Key(Instruction::ExtractValue, ArgVec, 0, 0, Idxs);
2030
2031 LLVMContextImpl *pImpl = Agg->getContext().pImpl;
2032 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Dan Gohman12fce772008-05-15 19:50:34 +00002033}
2034
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002035Constant *ConstantExpr::getNeg(Constant *C, bool HasNUW, bool HasNSW) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002036 assert(C->getType()->isIntOrIntVectorTy() &&
Owen Anderson487375e2009-07-29 18:55:55 +00002037 "Cannot NEG a nonintegral value!");
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002038 return getSub(ConstantFP::getZeroValueForNegation(C->getType()),
2039 C, HasNUW, HasNSW);
Owen Anderson487375e2009-07-29 18:55:55 +00002040}
2041
Chris Lattnera676c0f2011-02-07 16:40:21 +00002042Constant *ConstantExpr::getFNeg(Constant *C) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002043 assert(C->getType()->isFPOrFPVectorTy() &&
Owen Anderson487375e2009-07-29 18:55:55 +00002044 "Cannot FNEG a non-floating-point value!");
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002045 return getFSub(ConstantFP::getZeroValueForNegation(C->getType()), C);
Owen Anderson487375e2009-07-29 18:55:55 +00002046}
2047
Chris Lattnera676c0f2011-02-07 16:40:21 +00002048Constant *ConstantExpr::getNot(Constant *C) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002049 assert(C->getType()->isIntOrIntVectorTy() &&
Owen Anderson487375e2009-07-29 18:55:55 +00002050 "Cannot NOT a nonintegral value!");
Owen Anderson5a1acd92009-07-31 20:28:14 +00002051 return get(Instruction::Xor, C, Constant::getAllOnesValue(C->getType()));
Owen Anderson487375e2009-07-29 18:55:55 +00002052}
2053
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002054Constant *ConstantExpr::getAdd(Constant *C1, Constant *C2,
2055 bool HasNUW, bool HasNSW) {
2056 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
2057 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
2058 return get(Instruction::Add, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00002059}
2060
Chris Lattnera676c0f2011-02-07 16:40:21 +00002061Constant *ConstantExpr::getFAdd(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002062 return get(Instruction::FAdd, C1, C2);
2063}
2064
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002065Constant *ConstantExpr::getSub(Constant *C1, Constant *C2,
2066 bool HasNUW, bool HasNSW) {
2067 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
2068 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
2069 return get(Instruction::Sub, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00002070}
2071
Chris Lattnera676c0f2011-02-07 16:40:21 +00002072Constant *ConstantExpr::getFSub(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002073 return get(Instruction::FSub, C1, C2);
2074}
2075
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002076Constant *ConstantExpr::getMul(Constant *C1, Constant *C2,
2077 bool HasNUW, bool HasNSW) {
2078 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
2079 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
2080 return get(Instruction::Mul, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00002081}
2082
Chris Lattnera676c0f2011-02-07 16:40:21 +00002083Constant *ConstantExpr::getFMul(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002084 return get(Instruction::FMul, C1, C2);
2085}
2086
Chris Lattner0d75eac2011-02-09 16:43:07 +00002087Constant *ConstantExpr::getUDiv(Constant *C1, Constant *C2, bool isExact) {
2088 return get(Instruction::UDiv, C1, C2,
2089 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00002090}
2091
Chris Lattner0d75eac2011-02-09 16:43:07 +00002092Constant *ConstantExpr::getSDiv(Constant *C1, Constant *C2, bool isExact) {
2093 return get(Instruction::SDiv, C1, C2,
2094 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00002095}
2096
Chris Lattnera676c0f2011-02-07 16:40:21 +00002097Constant *ConstantExpr::getFDiv(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002098 return get(Instruction::FDiv, C1, C2);
2099}
2100
Chris Lattnera676c0f2011-02-07 16:40:21 +00002101Constant *ConstantExpr::getURem(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002102 return get(Instruction::URem, C1, C2);
2103}
2104
Chris Lattnera676c0f2011-02-07 16:40:21 +00002105Constant *ConstantExpr::getSRem(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002106 return get(Instruction::SRem, C1, C2);
2107}
2108
Chris Lattnera676c0f2011-02-07 16:40:21 +00002109Constant *ConstantExpr::getFRem(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002110 return get(Instruction::FRem, C1, C2);
2111}
2112
Chris Lattnera676c0f2011-02-07 16:40:21 +00002113Constant *ConstantExpr::getAnd(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002114 return get(Instruction::And, C1, C2);
2115}
2116
Chris Lattnera676c0f2011-02-07 16:40:21 +00002117Constant *ConstantExpr::getOr(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002118 return get(Instruction::Or, C1, C2);
2119}
2120
Chris Lattnera676c0f2011-02-07 16:40:21 +00002121Constant *ConstantExpr::getXor(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00002122 return get(Instruction::Xor, C1, C2);
2123}
2124
Chris Lattnere9b4ad72011-02-10 07:01:55 +00002125Constant *ConstantExpr::getShl(Constant *C1, Constant *C2,
2126 bool HasNUW, bool HasNSW) {
2127 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
2128 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
2129 return get(Instruction::Shl, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00002130}
2131
Chris Lattner0d75eac2011-02-09 16:43:07 +00002132Constant *ConstantExpr::getLShr(Constant *C1, Constant *C2, bool isExact) {
2133 return get(Instruction::LShr, C1, C2,
2134 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00002135}
2136
Chris Lattner0d75eac2011-02-09 16:43:07 +00002137Constant *ConstantExpr::getAShr(Constant *C1, Constant *C2, bool isExact) {
2138 return get(Instruction::AShr, C1, C2,
2139 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00002140}
2141
Duncan Sandsd7aeefe2012-06-12 14:33:56 +00002142/// getBinOpIdentity - Return the identity for the given binary operation,
2143/// 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 +00002144/// returns null if the operator doesn't have an identity.
Duncan Sandsd7aeefe2012-06-12 14:33:56 +00002145Constant *ConstantExpr::getBinOpIdentity(unsigned Opcode, Type *Ty) {
2146 switch (Opcode) {
2147 default:
Duncan Sands318a89d2012-06-13 09:42:13 +00002148 // Doesn't have an identity.
Craig Topperc6207612014-04-09 06:08:46 +00002149 return nullptr;
Duncan Sands318a89d2012-06-13 09:42:13 +00002150
Duncan Sandsd7aeefe2012-06-12 14:33:56 +00002151 case Instruction::Add:
2152 case Instruction::Or:
2153 case Instruction::Xor:
2154 return Constant::getNullValue(Ty);
2155
2156 case Instruction::Mul:
2157 return ConstantInt::get(Ty, 1);
2158
2159 case Instruction::And:
2160 return Constant::getAllOnesValue(Ty);
2161 }
2162}
2163
Duncan Sands318a89d2012-06-13 09:42:13 +00002164/// getBinOpAbsorber - Return the absorbing element for the given binary
2165/// operation, i.e. a constant C such that X op C = C and C op X = C for
2166/// every X. For example, this returns zero for integer multiplication.
2167/// It returns null if the operator doesn't have an absorbing element.
2168Constant *ConstantExpr::getBinOpAbsorber(unsigned Opcode, Type *Ty) {
2169 switch (Opcode) {
2170 default:
2171 // Doesn't have an absorber.
Craig Topperc6207612014-04-09 06:08:46 +00002172 return nullptr;
Duncan Sands318a89d2012-06-13 09:42:13 +00002173
2174 case Instruction::Or:
2175 return Constant::getAllOnesValue(Ty);
2176
2177 case Instruction::And:
2178 case Instruction::Mul:
2179 return Constant::getNullValue(Ty);
2180 }
2181}
2182
Vikram S. Adve4c485332002-07-15 18:19:33 +00002183// destroyConstant - Remove the constant from the constant table...
2184//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00002185void ConstantExpr::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002186 getType()->getContext().pImpl->ExprConstants.remove(this);
Vikram S. Adve4c485332002-07-15 18:19:33 +00002187 destroyConstantImpl();
Vikram S. Adve4e537b22002-07-14 23:13:17 +00002188}
2189
Chris Lattner3cd8c562002-07-30 18:54:25 +00002190const char *ConstantExpr::getOpcodeName() const {
2191 return Instruction::getOpcodeName(getOpcode());
Vikram S. Adve4e537b22002-07-14 23:13:17 +00002192}
Reid Spencer1ebe1ab2004-07-17 23:48:33 +00002193
Chris Lattnera3b94ba2010-03-30 20:48:48 +00002194
2195
2196GetElementPtrConstantExpr::
Chris Lattnera474bb22012-01-26 20:40:56 +00002197GetElementPtrConstantExpr(Constant *C, ArrayRef<Constant*> IdxList,
Chris Lattner229907c2011-07-18 04:54:35 +00002198 Type *DestTy)
Chris Lattnera3b94ba2010-03-30 20:48:48 +00002199 : ConstantExpr(DestTy, Instruction::GetElementPtr,
2200 OperandTraits<GetElementPtrConstantExpr>::op_end(this)
2201 - (IdxList.size()+1), IdxList.size()+1) {
2202 OperandList[0] = C;
2203 for (unsigned i = 0, E = IdxList.size(); i != E; ++i)
2204 OperandList[i+1] = IdxList[i];
2205}
2206
Chris Lattner3756b912012-01-23 22:57:10 +00002207//===----------------------------------------------------------------------===//
2208// ConstantData* implementations
2209
2210void ConstantDataArray::anchor() {}
2211void ConstantDataVector::anchor() {}
2212
Chris Lattnere4f3f102012-01-24 04:43:41 +00002213/// getElementType - Return the element type of the array/vector.
2214Type *ConstantDataSequential::getElementType() const {
2215 return getType()->getElementType();
2216}
2217
Chris Lattner5d4497b2012-01-24 09:31:43 +00002218StringRef ConstantDataSequential::getRawDataValues() const {
Chris Lattner00245f42012-01-24 13:41:11 +00002219 return StringRef(DataElements, getNumElements()*getElementByteSize());
Chris Lattner5d4497b2012-01-24 09:31:43 +00002220}
2221
Chris Lattner030af792012-01-24 05:42:11 +00002222/// isElementTypeCompatible - Return true if a ConstantDataSequential can be
2223/// formed with a vector or array of the specified element type.
2224/// ConstantDataArray only works with normal float and int types that are
2225/// stored densely in memory, not with things like i42 or x86_f80.
2226bool ConstantDataSequential::isElementTypeCompatible(const Type *Ty) {
Chris Lattnere4f3f102012-01-24 04:43:41 +00002227 if (Ty->isFloatTy() || Ty->isDoubleTy()) return true;
2228 if (const IntegerType *IT = dyn_cast<IntegerType>(Ty)) {
2229 switch (IT->getBitWidth()) {
2230 case 8:
2231 case 16:
2232 case 32:
2233 case 64:
2234 return true;
2235 default: break;
2236 }
2237 }
2238 return false;
2239}
2240
Chris Lattner00245f42012-01-24 13:41:11 +00002241/// getNumElements - Return the number of elements in the array or vector.
2242unsigned ConstantDataSequential::getNumElements() const {
Chris Lattner8a3df542012-01-25 01:32:59 +00002243 if (ArrayType *AT = dyn_cast<ArrayType>(getType()))
2244 return AT->getNumElements();
Chris Lattner8326bd82012-01-26 00:42:34 +00002245 return getType()->getVectorNumElements();
Chris Lattner00245f42012-01-24 13:41:11 +00002246}
2247
2248
Chris Lattnere4f3f102012-01-24 04:43:41 +00002249/// getElementByteSize - Return the size in bytes of the elements in the data.
2250uint64_t ConstantDataSequential::getElementByteSize() const {
2251 return getElementType()->getPrimitiveSizeInBits()/8;
2252}
2253
2254/// getElementPointer - Return the start of the specified element.
2255const char *ConstantDataSequential::getElementPointer(unsigned Elt) const {
Chris Lattner00245f42012-01-24 13:41:11 +00002256 assert(Elt < getNumElements() && "Invalid Elt");
Chris Lattnere4f3f102012-01-24 04:43:41 +00002257 return DataElements+Elt*getElementByteSize();
2258}
2259
2260
Chris Lattner3756b912012-01-23 22:57:10 +00002261/// isAllZeros - return true if the array is empty or all zeros.
2262static bool isAllZeros(StringRef Arr) {
2263 for (StringRef::iterator I = Arr.begin(), E = Arr.end(); I != E; ++I)
2264 if (*I != 0)
2265 return false;
2266 return true;
2267}
Chris Lattner030af792012-01-24 05:42:11 +00002268
Chris Lattner3756b912012-01-23 22:57:10 +00002269/// getImpl - This is the underlying implementation of all of the
2270/// ConstantDataSequential::get methods. They all thunk down to here, providing
Chris Lattnerf06039b2012-01-30 18:19:30 +00002271/// the correct element type. We take the bytes in as a StringRef because
Chris Lattner3756b912012-01-23 22:57:10 +00002272/// we *want* an underlying "char*" to avoid TBAA type punning violations.
2273Constant *ConstantDataSequential::getImpl(StringRef Elements, Type *Ty) {
Chris Lattner8326bd82012-01-26 00:42:34 +00002274 assert(isElementTypeCompatible(Ty->getSequentialElementType()));
Chris Lattner139822f2012-01-24 14:17:05 +00002275 // If the elements are all zero or there are no elements, return a CAZ, which
2276 // is more dense and canonical.
Chris Lattner3756b912012-01-23 22:57:10 +00002277 if (isAllZeros(Elements))
2278 return ConstantAggregateZero::get(Ty);
2279
2280 // Do a lookup to see if we have already formed one of these.
2281 StringMap<ConstantDataSequential*>::MapEntryTy &Slot =
2282 Ty->getContext().pImpl->CDSConstants.GetOrCreateValue(Elements);
Galina Kistanovafc259902012-07-13 01:25:27 +00002283
Chris Lattner3756b912012-01-23 22:57:10 +00002284 // The bucket can point to a linked list of different CDS's that have the same
2285 // body but different types. For example, 0,0,0,1 could be a 4 element array
2286 // of i8, or a 1-element array of i32. They'll both end up in the same
2287 /// StringMap bucket, linked up by their Next pointers. Walk the list.
2288 ConstantDataSequential **Entry = &Slot.getValue();
Craig Topperc6207612014-04-09 06:08:46 +00002289 for (ConstantDataSequential *Node = *Entry; Node;
Chris Lattner3756b912012-01-23 22:57:10 +00002290 Entry = &Node->Next, Node = *Entry)
2291 if (Node->getType() == Ty)
2292 return Node;
Galina Kistanovafc259902012-07-13 01:25:27 +00002293
Chris Lattner3756b912012-01-23 22:57:10 +00002294 // Okay, we didn't get a hit. Create a node of the right class, link it in,
2295 // and return it.
2296 if (isa<ArrayType>(Ty))
2297 return *Entry = new ConstantDataArray(Ty, Slot.getKeyData());
2298
2299 assert(isa<VectorType>(Ty));
2300 return *Entry = new ConstantDataVector(Ty, Slot.getKeyData());
2301}
2302
2303void ConstantDataSequential::destroyConstant() {
Chris Lattner3756b912012-01-23 22:57:10 +00002304 // Remove the constant from the StringMap.
2305 StringMap<ConstantDataSequential*> &CDSConstants =
2306 getType()->getContext().pImpl->CDSConstants;
Galina Kistanovafc259902012-07-13 01:25:27 +00002307
Chris Lattner3756b912012-01-23 22:57:10 +00002308 StringMap<ConstantDataSequential*>::iterator Slot =
Chris Lattner5d4497b2012-01-24 09:31:43 +00002309 CDSConstants.find(getRawDataValues());
Chris Lattner3756b912012-01-23 22:57:10 +00002310
2311 assert(Slot != CDSConstants.end() && "CDS not found in uniquing table");
2312
2313 ConstantDataSequential **Entry = &Slot->getValue();
2314
2315 // Remove the entry from the hash table.
Craig Topperc6207612014-04-09 06:08:46 +00002316 if (!(*Entry)->Next) {
Chris Lattner3756b912012-01-23 22:57:10 +00002317 // If there is only one value in the bucket (common case) it must be this
2318 // entry, and removing the entry should remove the bucket completely.
2319 assert((*Entry) == this && "Hash mismatch in ConstantDataSequential");
2320 getContext().pImpl->CDSConstants.erase(Slot);
2321 } else {
2322 // Otherwise, there are multiple entries linked off the bucket, unlink the
2323 // node we care about but keep the bucket around.
2324 for (ConstantDataSequential *Node = *Entry; ;
2325 Entry = &Node->Next, Node = *Entry) {
2326 assert(Node && "Didn't find entry in its uniquing hash table!");
2327 // If we found our entry, unlink it from the list and we're done.
2328 if (Node == this) {
2329 *Entry = Node->Next;
2330 break;
2331 }
2332 }
2333 }
Galina Kistanovafc259902012-07-13 01:25:27 +00002334
Chris Lattner3756b912012-01-23 22:57:10 +00002335 // If we were part of a list, make sure that we don't delete the list that is
2336 // still owned by the uniquing map.
Craig Topperc6207612014-04-09 06:08:46 +00002337 Next = nullptr;
Galina Kistanovafc259902012-07-13 01:25:27 +00002338
Chris Lattner3756b912012-01-23 22:57:10 +00002339 // Finally, actually delete it.
2340 destroyConstantImpl();
2341}
2342
2343/// get() constructors - Return a constant with array type with an element
2344/// count and element type matching the ArrayRef passed in. Note that this
2345/// can return a ConstantAggregateZero object.
Chris Lattner20683932012-01-24 14:04:40 +00002346Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint8_t> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002347 Type *Ty = ArrayType::get(Type::getInt8Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002348 const char *Data = reinterpret_cast<const char *>(Elts.data());
2349 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*1), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002350}
Chris Lattner20683932012-01-24 14:04:40 +00002351Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint16_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002352 Type *Ty = ArrayType::get(Type::getInt16Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002353 const char *Data = reinterpret_cast<const char *>(Elts.data());
2354 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*2), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002355}
Chris Lattner20683932012-01-24 14:04:40 +00002356Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint32_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002357 Type *Ty = ArrayType::get(Type::getInt32Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002358 const char *Data = reinterpret_cast<const char *>(Elts.data());
2359 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*4), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002360}
Chris Lattner20683932012-01-24 14:04:40 +00002361Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint64_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002362 Type *Ty = ArrayType::get(Type::getInt64Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002363 const char *Data = reinterpret_cast<const char *>(Elts.data());
2364 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*8), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002365}
Chris Lattner20683932012-01-24 14:04:40 +00002366Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<float> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002367 Type *Ty = ArrayType::get(Type::getFloatTy(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002368 const char *Data = reinterpret_cast<const char *>(Elts.data());
2369 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*4), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002370}
Chris Lattner20683932012-01-24 14:04:40 +00002371Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<double> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002372 Type *Ty = ArrayType::get(Type::getDoubleTy(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002373 const char *Data = reinterpret_cast<const char *>(Elts.data());
2374 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*8), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002375}
2376
Chris Lattner20683932012-01-24 14:04:40 +00002377/// getString - This method constructs a CDS and initializes it with a text
2378/// string. The default behavior (AddNull==true) causes a null terminator to
2379/// be placed at the end of the array (increasing the length of the string by
2380/// one more than the StringRef would normally indicate. Pass AddNull=false
2381/// to disable this behavior.
2382Constant *ConstantDataArray::getString(LLVMContext &Context,
2383 StringRef Str, bool AddNull) {
Galina Kistanovafc259902012-07-13 01:25:27 +00002384 if (!AddNull) {
2385 const uint8_t *Data = reinterpret_cast<const uint8_t *>(Str.data());
2386 return get(Context, ArrayRef<uint8_t>(const_cast<uint8_t *>(Data),
2387 Str.size()));
2388 }
2389
Chris Lattner20683932012-01-24 14:04:40 +00002390 SmallVector<uint8_t, 64> ElementVals;
2391 ElementVals.append(Str.begin(), Str.end());
2392 ElementVals.push_back(0);
2393 return get(Context, ElementVals);
2394}
Chris Lattner3756b912012-01-23 22:57:10 +00002395
2396/// get() constructors - Return a constant with vector type with an element
2397/// count and element type matching the ArrayRef passed in. Note that this
2398/// can return a ConstantAggregateZero object.
Chris Lattner20683932012-01-24 14:04:40 +00002399Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint8_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002400 Type *Ty = VectorType::get(Type::getInt8Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002401 const char *Data = reinterpret_cast<const char *>(Elts.data());
2402 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*1), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002403}
Chris Lattner20683932012-01-24 14:04:40 +00002404Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint16_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002405 Type *Ty = VectorType::get(Type::getInt16Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002406 const char *Data = reinterpret_cast<const char *>(Elts.data());
2407 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*2), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002408}
Chris Lattner20683932012-01-24 14:04:40 +00002409Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint32_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002410 Type *Ty = VectorType::get(Type::getInt32Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002411 const char *Data = reinterpret_cast<const char *>(Elts.data());
2412 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*4), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002413}
Chris Lattner20683932012-01-24 14:04:40 +00002414Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint64_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002415 Type *Ty = VectorType::get(Type::getInt64Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002416 const char *Data = reinterpret_cast<const char *>(Elts.data());
2417 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*8), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002418}
Chris Lattner20683932012-01-24 14:04:40 +00002419Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<float> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002420 Type *Ty = VectorType::get(Type::getFloatTy(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002421 const char *Data = reinterpret_cast<const char *>(Elts.data());
2422 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*4), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002423}
Chris Lattner20683932012-01-24 14:04:40 +00002424Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<double> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002425 Type *Ty = VectorType::get(Type::getDoubleTy(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002426 const char *Data = reinterpret_cast<const char *>(Elts.data());
2427 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*8), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002428}
2429
Chris Lattnere9eed292012-01-25 05:19:54 +00002430Constant *ConstantDataVector::getSplat(unsigned NumElts, Constant *V) {
2431 assert(isElementTypeCompatible(V->getType()) &&
2432 "Element type not compatible with ConstantData");
2433 if (ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
2434 if (CI->getType()->isIntegerTy(8)) {
2435 SmallVector<uint8_t, 16> Elts(NumElts, CI->getZExtValue());
2436 return get(V->getContext(), Elts);
2437 }
2438 if (CI->getType()->isIntegerTy(16)) {
2439 SmallVector<uint16_t, 16> Elts(NumElts, CI->getZExtValue());
2440 return get(V->getContext(), Elts);
2441 }
2442 if (CI->getType()->isIntegerTy(32)) {
2443 SmallVector<uint32_t, 16> Elts(NumElts, CI->getZExtValue());
2444 return get(V->getContext(), Elts);
2445 }
2446 assert(CI->getType()->isIntegerTy(64) && "Unsupported ConstantData type");
2447 SmallVector<uint64_t, 16> Elts(NumElts, CI->getZExtValue());
2448 return get(V->getContext(), Elts);
2449 }
2450
Chris Lattner978fe0c2012-01-30 06:21:21 +00002451 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V)) {
2452 if (CFP->getType()->isFloatTy()) {
2453 SmallVector<float, 16> Elts(NumElts, CFP->getValueAPF().convertToFloat());
2454 return get(V->getContext(), Elts);
2455 }
2456 if (CFP->getType()->isDoubleTy()) {
2457 SmallVector<double, 16> Elts(NumElts,
2458 CFP->getValueAPF().convertToDouble());
2459 return get(V->getContext(), Elts);
2460 }
Chris Lattnere9eed292012-01-25 05:19:54 +00002461 }
Chris Lattner978fe0c2012-01-30 06:21:21 +00002462 return ConstantVector::getSplat(NumElts, V);
Chris Lattnere9eed292012-01-25 05:19:54 +00002463}
2464
2465
Chris Lattnere4f3f102012-01-24 04:43:41 +00002466/// getElementAsInteger - If this is a sequential container of integers (of
2467/// any size), return the specified element in the low bits of a uint64_t.
2468uint64_t ConstantDataSequential::getElementAsInteger(unsigned Elt) const {
2469 assert(isa<IntegerType>(getElementType()) &&
2470 "Accessor can only be used when element is an integer");
2471 const char *EltPtr = getElementPointer(Elt);
Galina Kistanovafc259902012-07-13 01:25:27 +00002472
Chris Lattnere4f3f102012-01-24 04:43:41 +00002473 // The data is stored in host byte order, make sure to cast back to the right
2474 // type to load with the right endianness.
Chris Lattner8326bd82012-01-26 00:42:34 +00002475 switch (getElementType()->getIntegerBitWidth()) {
Craig Topperc514b542012-02-05 22:14:15 +00002476 default: llvm_unreachable("Invalid bitwidth for CDS");
Galina Kistanovafc259902012-07-13 01:25:27 +00002477 case 8:
2478 return *const_cast<uint8_t *>(reinterpret_cast<const uint8_t *>(EltPtr));
2479 case 16:
2480 return *const_cast<uint16_t *>(reinterpret_cast<const uint16_t *>(EltPtr));
2481 case 32:
2482 return *const_cast<uint32_t *>(reinterpret_cast<const uint32_t *>(EltPtr));
2483 case 64:
2484 return *const_cast<uint64_t *>(reinterpret_cast<const uint64_t *>(EltPtr));
Chris Lattnere4f3f102012-01-24 04:43:41 +00002485 }
2486}
2487
2488/// getElementAsAPFloat - If this is a sequential container of floating point
2489/// type, return the specified element as an APFloat.
2490APFloat ConstantDataSequential::getElementAsAPFloat(unsigned Elt) const {
2491 const char *EltPtr = getElementPointer(Elt);
2492
2493 switch (getElementType()->getTypeID()) {
Nick Lewyckyff509622012-01-25 03:20:12 +00002494 default:
Craig Topperc514b542012-02-05 22:14:15 +00002495 llvm_unreachable("Accessor can only be used when element is float/double!");
Galina Kistanovafc259902012-07-13 01:25:27 +00002496 case Type::FloatTyID: {
2497 const float *FloatPrt = reinterpret_cast<const float *>(EltPtr);
2498 return APFloat(*const_cast<float *>(FloatPrt));
2499 }
2500 case Type::DoubleTyID: {
2501 const double *DoublePtr = reinterpret_cast<const double *>(EltPtr);
2502 return APFloat(*const_cast<double *>(DoublePtr));
2503 }
Chris Lattnere4f3f102012-01-24 04:43:41 +00002504 }
2505}
2506
2507/// getElementAsFloat - If this is an sequential container of floats, return
2508/// the specified element as a float.
2509float ConstantDataSequential::getElementAsFloat(unsigned Elt) const {
2510 assert(getElementType()->isFloatTy() &&
2511 "Accessor can only be used when element is a 'float'");
Galina Kistanovafc259902012-07-13 01:25:27 +00002512 const float *EltPtr = reinterpret_cast<const float *>(getElementPointer(Elt));
2513 return *const_cast<float *>(EltPtr);
Chris Lattnere4f3f102012-01-24 04:43:41 +00002514}
2515
2516/// getElementAsDouble - If this is an sequential container of doubles, return
2517/// the specified element as a float.
2518double ConstantDataSequential::getElementAsDouble(unsigned Elt) const {
2519 assert(getElementType()->isDoubleTy() &&
2520 "Accessor can only be used when element is a 'float'");
Galina Kistanovafc259902012-07-13 01:25:27 +00002521 const double *EltPtr =
2522 reinterpret_cast<const double *>(getElementPointer(Elt));
2523 return *const_cast<double *>(EltPtr);
Chris Lattnere4f3f102012-01-24 04:43:41 +00002524}
2525
2526/// getElementAsConstant - Return a Constant for a specified index's element.
2527/// Note that this has to compute a new constant to return, so it isn't as
2528/// efficient as getElementAsInteger/Float/Double.
2529Constant *ConstantDataSequential::getElementAsConstant(unsigned Elt) const {
2530 if (getElementType()->isFloatTy() || getElementType()->isDoubleTy())
2531 return ConstantFP::get(getContext(), getElementAsAPFloat(Elt));
Galina Kistanovafc259902012-07-13 01:25:27 +00002532
Chris Lattnere4f3f102012-01-24 04:43:41 +00002533 return ConstantInt::get(getElementType(), getElementAsInteger(Elt));
2534}
2535
Chris Lattner5dd4d872012-01-24 09:01:07 +00002536/// isString - This method returns true if this is an array of i8.
2537bool ConstantDataSequential::isString() const {
2538 return isa<ArrayType>(getType()) && getElementType()->isIntegerTy(8);
2539}
Chris Lattner3756b912012-01-23 22:57:10 +00002540
Chris Lattner5dd4d872012-01-24 09:01:07 +00002541/// isCString - This method returns true if the array "isString", ends with a
2542/// nul byte, and does not contains any other nul bytes.
2543bool ConstantDataSequential::isCString() const {
2544 if (!isString())
2545 return false;
Galina Kistanovafc259902012-07-13 01:25:27 +00002546
Chris Lattner5dd4d872012-01-24 09:01:07 +00002547 StringRef Str = getAsString();
Galina Kistanovafc259902012-07-13 01:25:27 +00002548
Chris Lattner5dd4d872012-01-24 09:01:07 +00002549 // The last value must be nul.
2550 if (Str.back() != 0) return false;
Galina Kistanovafc259902012-07-13 01:25:27 +00002551
Chris Lattner5dd4d872012-01-24 09:01:07 +00002552 // Other elements must be non-nul.
2553 return Str.drop_back().find(0) == StringRef::npos;
2554}
Chris Lattner3756b912012-01-23 22:57:10 +00002555
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002556/// getSplatValue - If this is a splat constant, meaning that all of the
2557/// elements have the same value, return that value. Otherwise return NULL.
2558Constant *ConstantDataVector::getSplatValue() const {
2559 const char *Base = getRawDataValues().data();
Galina Kistanovafc259902012-07-13 01:25:27 +00002560
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002561 // Compare elements 1+ to the 0'th element.
2562 unsigned EltSize = getElementByteSize();
2563 for (unsigned i = 1, e = getNumElements(); i != e; ++i)
2564 if (memcmp(Base, Base+i*EltSize, EltSize))
Craig Topperc6207612014-04-09 06:08:46 +00002565 return nullptr;
Galina Kistanovafc259902012-07-13 01:25:27 +00002566
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002567 // If they're all the same, return the 0th one as a representative.
2568 return getElementAsConstant(0);
2569}
Chris Lattnera3b94ba2010-03-30 20:48:48 +00002570
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002571//===----------------------------------------------------------------------===//
2572// replaceUsesOfWithOnConstant implementations
2573
Chris Lattner913849b2007-08-21 00:55:23 +00002574/// replaceUsesOfWithOnConstant - Update this constant array to change uses of
2575/// 'From' to be uses of 'To'. This must update the uniquing data structures
2576/// etc.
2577///
2578/// Note that we intentionally replace all uses of From with To here. Consider
2579/// a large array that uses 'From' 1000 times. By handling this case all here,
2580/// ConstantArray::replaceUsesOfWithOnConstant is only invoked once, and that
2581/// single invocation handles all 1000 uses. Handling them one at a time would
2582/// work, but would be really slow because it would have to unique each updated
2583/// array instance.
Chris Lattner31b132c2009-10-28 00:01:44 +00002584///
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002585void ConstantArray::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattner7a1450d2005-10-04 18:13:04 +00002586 Use *U) {
Owen Andersonc2c79322009-07-28 18:32:17 +00002587 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2588 Constant *ToC = cast<Constant>(To);
2589
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002590 LLVMContextImpl *pImpl = getType()->getContext().pImpl;
Owen Andersonc2c79322009-07-28 18:32:17 +00002591
Talin46e9b442012-02-05 20:54:10 +00002592 SmallVector<Constant*, 8> Values;
2593 LLVMContextImpl::ArrayConstantsTy::LookupKey Lookup;
2594 Lookup.first = cast<ArrayType>(getType());
Owen Andersonc2c79322009-07-28 18:32:17 +00002595 Values.reserve(getNumOperands()); // Build replacement array.
2596
Galina Kistanovafc259902012-07-13 01:25:27 +00002597 // Fill values with the modified operands of the constant array. Also,
Owen Andersonc2c79322009-07-28 18:32:17 +00002598 // compute whether this turns into an all-zeros array.
Owen Andersonc2c79322009-07-28 18:32:17 +00002599 unsigned NumUpdated = 0;
Galina Kistanovafc259902012-07-13 01:25:27 +00002600
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002601 // Keep track of whether all the values in the array are "ToC".
2602 bool AllSame = true;
2603 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2604 Constant *Val = cast<Constant>(O->get());
2605 if (Val == From) {
2606 Val = ToC;
2607 ++NumUpdated;
Owen Andersonc2c79322009-07-28 18:32:17 +00002608 }
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002609 Values.push_back(Val);
Talin46e9b442012-02-05 20:54:10 +00002610 AllSame &= Val == ToC;
Owen Andersonc2c79322009-07-28 18:32:17 +00002611 }
Galina Kistanovafc259902012-07-13 01:25:27 +00002612
Craig Topperc6207612014-04-09 06:08:46 +00002613 Constant *Replacement = nullptr;
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002614 if (AllSame && ToC->isNullValue()) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002615 Replacement = ConstantAggregateZero::get(getType());
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002616 } else if (AllSame && isa<UndefValue>(ToC)) {
2617 Replacement = UndefValue::get(getType());
Owen Andersonc2c79322009-07-28 18:32:17 +00002618 } else {
2619 // Check to see if we have this array type already.
Talin46e9b442012-02-05 20:54:10 +00002620 Lookup.second = makeArrayRef(Values);
Owen Andersonc2c79322009-07-28 18:32:17 +00002621 LLVMContextImpl::ArrayConstantsTy::MapTy::iterator I =
Talin46e9b442012-02-05 20:54:10 +00002622 pImpl->ArrayConstants.find(Lookup);
Galina Kistanovafc259902012-07-13 01:25:27 +00002623
Talin46e9b442012-02-05 20:54:10 +00002624 if (I != pImpl->ArrayConstants.map_end()) {
2625 Replacement = I->first;
Owen Andersonc2c79322009-07-28 18:32:17 +00002626 } else {
2627 // Okay, the new shape doesn't exist in the system yet. Instead of
2628 // creating a new constant array, inserting it, replaceallusesof'ing the
2629 // old with the new, then deleting the old... just update the current one
2630 // in place!
Talin46e9b442012-02-05 20:54:10 +00002631 pImpl->ArrayConstants.remove(this);
Galina Kistanovafc259902012-07-13 01:25:27 +00002632
Owen Andersonc2c79322009-07-28 18:32:17 +00002633 // Update to the new value. Optimize for the case when we have a single
2634 // operand that we're changing, but handle bulk updates efficiently.
2635 if (NumUpdated == 1) {
2636 unsigned OperandToUpdate = U - OperandList;
2637 assert(getOperand(OperandToUpdate) == From &&
2638 "ReplaceAllUsesWith broken!");
2639 setOperand(OperandToUpdate, ToC);
2640 } else {
2641 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
2642 if (getOperand(i) == From)
2643 setOperand(i, ToC);
2644 }
Talin46e9b442012-02-05 20:54:10 +00002645 pImpl->ArrayConstants.insert(this);
Owen Andersonc2c79322009-07-28 18:32:17 +00002646 return;
2647 }
2648 }
Galina Kistanovafc259902012-07-13 01:25:27 +00002649
Chris Lattnerb64419a2005-10-03 22:51:37 +00002650 // Otherwise, I do need to replace this with an existing value.
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002651 assert(Replacement != this && "I didn't contain From!");
Galina Kistanovafc259902012-07-13 01:25:27 +00002652
Chris Lattner7a1450d2005-10-04 18:13:04 +00002653 // Everyone using this now uses the replacement.
Chris Lattneraf1783f2011-07-15 06:18:52 +00002654 replaceAllUsesWith(Replacement);
Galina Kistanovafc259902012-07-13 01:25:27 +00002655
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002656 // Delete the old constant!
2657 destroyConstant();
2658}
2659
2660void ConstantStruct::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattner7a1450d2005-10-04 18:13:04 +00002661 Use *U) {
Owen Anderson45308b52009-07-27 22:29:26 +00002662 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2663 Constant *ToC = cast<Constant>(To);
2664
2665 unsigned OperandToUpdate = U-OperandList;
2666 assert(getOperand(OperandToUpdate) == From && "ReplaceAllUsesWith broken!");
2667
Talin46e9b442012-02-05 20:54:10 +00002668 SmallVector<Constant*, 8> Values;
2669 LLVMContextImpl::StructConstantsTy::LookupKey Lookup;
2670 Lookup.first = cast<StructType>(getType());
Owen Anderson45308b52009-07-27 22:29:26 +00002671 Values.reserve(getNumOperands()); // Build replacement struct.
Galina Kistanovafc259902012-07-13 01:25:27 +00002672
2673 // Fill values with the modified operands of the constant struct. Also,
Owen Anderson45308b52009-07-27 22:29:26 +00002674 // compute whether this turns into an all-zeros struct.
2675 bool isAllZeros = false;
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002676 bool isAllUndef = false;
2677 if (ToC->isNullValue()) {
Owen Anderson45308b52009-07-27 22:29:26 +00002678 isAllZeros = true;
2679 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2680 Constant *Val = cast<Constant>(O->get());
2681 Values.push_back(Val);
2682 if (isAllZeros) isAllZeros = Val->isNullValue();
2683 }
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002684 } else if (isa<UndefValue>(ToC)) {
2685 isAllUndef = true;
2686 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2687 Constant *Val = cast<Constant>(O->get());
2688 Values.push_back(Val);
2689 if (isAllUndef) isAllUndef = isa<UndefValue>(Val);
2690 }
2691 } else {
2692 for (Use *O = OperandList, *E = OperandList + getNumOperands(); O != E; ++O)
2693 Values.push_back(cast<Constant>(O->get()));
Owen Anderson45308b52009-07-27 22:29:26 +00002694 }
2695 Values[OperandToUpdate] = ToC;
Galina Kistanovafc259902012-07-13 01:25:27 +00002696
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002697 LLVMContextImpl *pImpl = getContext().pImpl;
Galina Kistanovafc259902012-07-13 01:25:27 +00002698
Craig Topperc6207612014-04-09 06:08:46 +00002699 Constant *Replacement = nullptr;
Owen Anderson45308b52009-07-27 22:29:26 +00002700 if (isAllZeros) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002701 Replacement = ConstantAggregateZero::get(getType());
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002702 } else if (isAllUndef) {
2703 Replacement = UndefValue::get(getType());
Owen Anderson45308b52009-07-27 22:29:26 +00002704 } else {
Chris Lattner718da702010-07-17 06:13:52 +00002705 // Check to see if we have this struct type already.
Talin46e9b442012-02-05 20:54:10 +00002706 Lookup.second = makeArrayRef(Values);
Owen Anderson45308b52009-07-27 22:29:26 +00002707 LLVMContextImpl::StructConstantsTy::MapTy::iterator I =
Talin46e9b442012-02-05 20:54:10 +00002708 pImpl->StructConstants.find(Lookup);
Galina Kistanovafc259902012-07-13 01:25:27 +00002709
Talin46e9b442012-02-05 20:54:10 +00002710 if (I != pImpl->StructConstants.map_end()) {
2711 Replacement = I->first;
Owen Anderson45308b52009-07-27 22:29:26 +00002712 } else {
2713 // Okay, the new shape doesn't exist in the system yet. Instead of
2714 // creating a new constant struct, inserting it, replaceallusesof'ing the
2715 // old with the new, then deleting the old... just update the current one
2716 // in place!
Talin46e9b442012-02-05 20:54:10 +00002717 pImpl->StructConstants.remove(this);
Galina Kistanovafc259902012-07-13 01:25:27 +00002718
Owen Anderson45308b52009-07-27 22:29:26 +00002719 // Update to the new value.
2720 setOperand(OperandToUpdate, ToC);
Talin46e9b442012-02-05 20:54:10 +00002721 pImpl->StructConstants.insert(this);
Owen Anderson45308b52009-07-27 22:29:26 +00002722 return;
2723 }
2724 }
Galina Kistanovafc259902012-07-13 01:25:27 +00002725
Owen Anderson45308b52009-07-27 22:29:26 +00002726 assert(Replacement != this && "I didn't contain From!");
Galina Kistanovafc259902012-07-13 01:25:27 +00002727
Chris Lattner7a1450d2005-10-04 18:13:04 +00002728 // Everyone using this now uses the replacement.
Chris Lattneraf1783f2011-07-15 06:18:52 +00002729 replaceAllUsesWith(Replacement);
Galina Kistanovafc259902012-07-13 01:25:27 +00002730
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002731 // Delete the old constant!
2732 destroyConstant();
2733}
2734
Reid Spencerd84d35b2007-02-15 02:26:10 +00002735void ConstantVector::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattner7a1450d2005-10-04 18:13:04 +00002736 Use *U) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002737 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
Galina Kistanovafc259902012-07-13 01:25:27 +00002738
Chris Lattnera474bb22012-01-26 20:40:56 +00002739 SmallVector<Constant*, 8> Values;
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002740 Values.reserve(getNumOperands()); // Build replacement array...
2741 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
2742 Constant *Val = getOperand(i);
2743 if (Val == From) Val = cast<Constant>(To);
2744 Values.push_back(Val);
2745 }
Galina Kistanovafc259902012-07-13 01:25:27 +00002746
Jay Foadb8a8bed32011-06-22 09:10:19 +00002747 Constant *Replacement = get(Values);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002748 assert(Replacement != this && "I didn't contain From!");
Galina Kistanovafc259902012-07-13 01:25:27 +00002749
Chris Lattner7a1450d2005-10-04 18:13:04 +00002750 // Everyone using this now uses the replacement.
Chris Lattneraf1783f2011-07-15 06:18:52 +00002751 replaceAllUsesWith(Replacement);
Galina Kistanovafc259902012-07-13 01:25:27 +00002752
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002753 // Delete the old constant!
2754 destroyConstant();
2755}
2756
2757void ConstantExpr::replaceUsesOfWithOnConstant(Value *From, Value *ToV,
Chris Lattner7a1450d2005-10-04 18:13:04 +00002758 Use *U) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002759 assert(isa<Constant>(ToV) && "Cannot make Constant refer to non-constant!");
2760 Constant *To = cast<Constant>(ToV);
Galina Kistanovafc259902012-07-13 01:25:27 +00002761
Chris Lattner37e38352012-01-26 20:37:11 +00002762 SmallVector<Constant*, 8> NewOps;
2763 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
2764 Constant *Op = getOperand(i);
2765 NewOps.push_back(Op == From ? To : Op);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002766 }
Galina Kistanovafc259902012-07-13 01:25:27 +00002767
Chris Lattner37e38352012-01-26 20:37:11 +00002768 Constant *Replacement = getWithOperands(NewOps);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002769 assert(Replacement != this && "I didn't contain From!");
Galina Kistanovafc259902012-07-13 01:25:27 +00002770
Chris Lattner7a1450d2005-10-04 18:13:04 +00002771 // Everyone using this now uses the replacement.
Chris Lattneraf1783f2011-07-15 06:18:52 +00002772 replaceAllUsesWith(Replacement);
Galina Kistanovafc259902012-07-13 01:25:27 +00002773
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002774 // Delete the old constant!
2775 destroyConstant();
Matthijs Kooijmanba5d7ef2008-07-03 07:46:41 +00002776}
James Molloyce545682012-11-17 17:56:30 +00002777
2778Instruction *ConstantExpr::getAsInstruction() {
2779 SmallVector<Value*,4> ValueOperands;
2780 for (op_iterator I = op_begin(), E = op_end(); I != E; ++I)
2781 ValueOperands.push_back(cast<Value>(I));
2782
2783 ArrayRef<Value*> Ops(ValueOperands);
2784
2785 switch (getOpcode()) {
2786 case Instruction::Trunc:
2787 case Instruction::ZExt:
2788 case Instruction::SExt:
2789 case Instruction::FPTrunc:
2790 case Instruction::FPExt:
2791 case Instruction::UIToFP:
2792 case Instruction::SIToFP:
2793 case Instruction::FPToUI:
2794 case Instruction::FPToSI:
2795 case Instruction::PtrToInt:
2796 case Instruction::IntToPtr:
2797 case Instruction::BitCast:
Eli Bendersky157a97a2014-01-18 22:54:33 +00002798 case Instruction::AddrSpaceCast:
James Molloyce545682012-11-17 17:56:30 +00002799 return CastInst::Create((Instruction::CastOps)getOpcode(),
2800 Ops[0], getType());
2801 case Instruction::Select:
2802 return SelectInst::Create(Ops[0], Ops[1], Ops[2]);
2803 case Instruction::InsertElement:
2804 return InsertElementInst::Create(Ops[0], Ops[1], Ops[2]);
2805 case Instruction::ExtractElement:
2806 return ExtractElementInst::Create(Ops[0], Ops[1]);
2807 case Instruction::InsertValue:
2808 return InsertValueInst::Create(Ops[0], Ops[1], getIndices());
2809 case Instruction::ExtractValue:
2810 return ExtractValueInst::Create(Ops[0], getIndices());
2811 case Instruction::ShuffleVector:
2812 return new ShuffleVectorInst(Ops[0], Ops[1], Ops[2]);
2813
2814 case Instruction::GetElementPtr:
2815 if (cast<GEPOperator>(this)->isInBounds())
2816 return GetElementPtrInst::CreateInBounds(Ops[0], Ops.slice(1));
2817 else
2818 return GetElementPtrInst::Create(Ops[0], Ops.slice(1));
2819
2820 case Instruction::ICmp:
2821 case Instruction::FCmp:
2822 return CmpInst::Create((Instruction::OtherOps)getOpcode(),
2823 getPredicate(), Ops[0], Ops[1]);
2824
2825 default:
2826 assert(getNumOperands() == 2 && "Must be binary operator?");
2827 BinaryOperator *BO =
2828 BinaryOperator::Create((Instruction::BinaryOps)getOpcode(),
2829 Ops[0], Ops[1]);
2830 if (isa<OverflowingBinaryOperator>(BO)) {
2831 BO->setHasNoUnsignedWrap(SubclassOptionalData &
2832 OverflowingBinaryOperator::NoUnsignedWrap);
2833 BO->setHasNoSignedWrap(SubclassOptionalData &
2834 OverflowingBinaryOperator::NoSignedWrap);
2835 }
2836 if (isa<PossiblyExactOperator>(BO))
2837 BO->setIsExact(SubclassOptionalData & PossiblyExactOperator::IsExact);
2838 return BO;
2839 }
2840}