blob: 935f6b2bc168849de379d525a7a7560c723f089a [file] [log] [blame]
Chris Lattner9bc02a42003-05-13 21:37:02 +00001//===-- Constants.cpp - Implement Constant nodes --------------------------===//
Misha Brukmanfd939082005-04-21 23:48:37 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-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 Brukmanfd939082005-04-21 23:48:37 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner00950542001-06-06 20:29:01 +00009//
Chris Lattnereb59ca92011-02-07 20:03:14 +000010// This file implements the Constant* classes.
Chris Lattner00950542001-06-06 20:29:01 +000011//
12//===----------------------------------------------------------------------===//
13
Chris Lattner31bcdb82002-04-28 19:55:58 +000014#include "llvm/Constants.h"
Chris Lattner37f077a2009-08-23 04:02:03 +000015#include "LLVMContextImpl.h"
Chris Lattner92f6fea2007-02-27 03:05:06 +000016#include "ConstantFold.h"
Chris Lattner00950542001-06-06 20:29:01 +000017#include "llvm/DerivedTypes.h"
Reid Spencer1c9c8e62004-07-17 23:48:33 +000018#include "llvm/GlobalValue.h"
Misha Brukman47b14a42004-07-29 17:30:56 +000019#include "llvm/Instructions.h"
Chris Lattnerf5ec48d2001-10-13 06:57:33 +000020#include "llvm/Module.h"
Dan Gohman5a206ee2009-07-18 01:49:22 +000021#include "llvm/Operator.h"
Nick Lewycky21cc4462009-04-04 07:22:01 +000022#include "llvm/ADT/FoldingSet.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000023#include "llvm/ADT/StringExtras.h"
Nick Lewycky21cc4462009-04-04 07:22:01 +000024#include "llvm/ADT/StringMap.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000025#include "llvm/Support/Compiler.h"
Bill Wendling2e3def12006-11-17 08:03:48 +000026#include "llvm/Support/Debug.h"
Torok Edwin7d696d82009-07-11 13:10:19 +000027#include "llvm/Support/ErrorHandling.h"
Chris Lattner8a94bf12006-09-28 00:35:06 +000028#include "llvm/Support/ManagedStatic.h"
Bill Wendling2e3def12006-11-17 08:03:48 +000029#include "llvm/Support/MathExtras.h"
Chris Lattner37f077a2009-08-23 04:02:03 +000030#include "llvm/Support/raw_ostream.h"
Dan Gohmane6992f72009-09-10 23:37:55 +000031#include "llvm/Support/GetElementPtrTypeIterator.h"
Chris Lattner6b6f6ba2007-02-20 06:39:57 +000032#include "llvm/ADT/DenseMap.h"
Chris Lattnerf9021ff2007-02-19 20:01:23 +000033#include "llvm/ADT/SmallVector.h"
Chris Lattner1afcace2011-07-09 17:41:24 +000034#include "llvm/ADT/STLExtras.h"
Chris Lattner00950542001-06-06 20:29:01 +000035#include <algorithm>
Talin41ee4e52011-02-28 23:53:27 +000036#include <cstdarg>
Chris Lattner31f84992003-11-21 20:23:48 +000037using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000038
Chris Lattner00950542001-06-06 20:29:01 +000039//===----------------------------------------------------------------------===//
Chris Lattnere9bb2df2001-12-03 22:26:30 +000040// Constant Class
Chris Lattner00950542001-06-06 20:29:01 +000041//===----------------------------------------------------------------------===//
42
David Blaikie2d24e2a2011-12-20 02:50:00 +000043void Constant::anchor() { }
44
Chris Lattnerb4473872011-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 Kistanovaa46517e2012-07-13 01:25:27 +000049
Chris Lattnerb4473872011-07-15 05:58:04 +000050 // Otherwise, just use +0.0.
51 return isNullValue();
52}
53
Chris Lattner032c6eb2011-07-15 06:14:08 +000054bool Constant::isNullValue() const {
55 // 0 is null.
56 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
57 return CI->isZero();
Galina Kistanovaa46517e2012-07-13 01:25:27 +000058
Chris Lattner032c6eb2011-07-15 06:14:08 +000059 // +0.0 is null.
60 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
61 return CFP->isZero() && !CFP->isNegative();
62
63 // constant zero is zero for aggregates and cpnull is null for pointers.
64 return isa<ConstantAggregateZero>(this) || isa<ConstantPointerNull>(this);
65}
66
Nadav Rotem4c7c0f22011-08-24 20:18:38 +000067bool Constant::isAllOnesValue() const {
68 // Check for -1 integers
69 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
70 return CI->isMinusOne();
71
72 // Check for FP which are bitcasted from -1 integers
73 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
74 return CFP->getValueAPF().bitcastToAPInt().isAllOnesValue();
75
Benjamin Kramerb518cae2011-11-14 19:12:20 +000076 // Check for constant vectors which are splats of -1 values.
Nadav Rotem4c7c0f22011-08-24 20:18:38 +000077 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
Benjamin Kramerb518cae2011-11-14 19:12:20 +000078 if (Constant *Splat = CV->getSplatValue())
79 return Splat->isAllOnesValue();
Nadav Rotem4c7c0f22011-08-24 20:18:38 +000080
Chris Lattnere150e2d2012-01-26 02:31:22 +000081 // Check for constant vectors which are splats of -1 values.
82 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this))
83 if (Constant *Splat = CV->getSplatValue())
84 return Splat->isAllOnesValue();
85
Nadav Rotem4c7c0f22011-08-24 20:18:38 +000086 return false;
87}
Benjamin Kramerb518cae2011-11-14 19:12:20 +000088
Owen Andersona7235ea2009-07-31 20:28:14 +000089// Constructor to create a '0' constant of arbitrary type...
Chris Lattnerdb125cf2011-07-18 04:54:35 +000090Constant *Constant::getNullValue(Type *Ty) {
Owen Andersona7235ea2009-07-31 20:28:14 +000091 switch (Ty->getTypeID()) {
92 case Type::IntegerTyID:
93 return ConstantInt::get(Ty, 0);
Dan Gohmance163392011-12-17 00:04:22 +000094 case Type::HalfTyID:
95 return ConstantFP::get(Ty->getContext(),
96 APFloat::getZero(APFloat::IEEEhalf));
Owen Andersona7235ea2009-07-31 20:28:14 +000097 case Type::FloatTyID:
Benjamin Kramer98383962010-12-04 14:22:24 +000098 return ConstantFP::get(Ty->getContext(),
99 APFloat::getZero(APFloat::IEEEsingle));
Owen Andersona7235ea2009-07-31 20:28:14 +0000100 case Type::DoubleTyID:
Benjamin Kramer98383962010-12-04 14:22:24 +0000101 return ConstantFP::get(Ty->getContext(),
102 APFloat::getZero(APFloat::IEEEdouble));
Owen Andersona7235ea2009-07-31 20:28:14 +0000103 case Type::X86_FP80TyID:
Benjamin Kramer98383962010-12-04 14:22:24 +0000104 return ConstantFP::get(Ty->getContext(),
105 APFloat::getZero(APFloat::x87DoubleExtended));
Owen Andersona7235ea2009-07-31 20:28:14 +0000106 case Type::FP128TyID:
107 return ConstantFP::get(Ty->getContext(),
Benjamin Kramer98383962010-12-04 14:22:24 +0000108 APFloat::getZero(APFloat::IEEEquad));
Owen Andersona7235ea2009-07-31 20:28:14 +0000109 case Type::PPC_FP128TyID:
Benjamin Kramer98383962010-12-04 14:22:24 +0000110 return ConstantFP::get(Ty->getContext(),
Benjamin Kramer299ee182010-12-04 14:43:08 +0000111 APFloat(APInt::getNullValue(128)));
Owen Andersona7235ea2009-07-31 20:28:14 +0000112 case Type::PointerTyID:
113 return ConstantPointerNull::get(cast<PointerType>(Ty));
114 case Type::StructTyID:
115 case Type::ArrayTyID:
116 case Type::VectorTyID:
117 return ConstantAggregateZero::get(Ty);
118 default:
119 // Function, Label, or Opaque type?
Craig Topper50bee422012-02-05 22:14:15 +0000120 llvm_unreachable("Cannot create a null constant of that type!");
Owen Andersona7235ea2009-07-31 20:28:14 +0000121 }
122}
123
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000124Constant *Constant::getIntegerValue(Type *Ty, const APInt &V) {
125 Type *ScalarTy = Ty->getScalarType();
Dan Gohman43ee5f72009-08-03 22:07:33 +0000126
127 // Create the base integer constant.
128 Constant *C = ConstantInt::get(Ty->getContext(), V);
129
130 // Convert an integer to a pointer, if necessary.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000131 if (PointerType *PTy = dyn_cast<PointerType>(ScalarTy))
Dan Gohman43ee5f72009-08-03 22:07:33 +0000132 C = ConstantExpr::getIntToPtr(C, PTy);
133
134 // Broadcast a scalar to a vector, if necessary.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000135 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattner3c2c9542012-01-25 05:19:54 +0000136 C = ConstantVector::getSplat(VTy->getNumElements(), C);
Dan Gohman43ee5f72009-08-03 22:07:33 +0000137
138 return C;
139}
140
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000141Constant *Constant::getAllOnesValue(Type *Ty) {
142 if (IntegerType *ITy = dyn_cast<IntegerType>(Ty))
Owen Andersona7235ea2009-07-31 20:28:14 +0000143 return ConstantInt::get(Ty->getContext(),
144 APInt::getAllOnesValue(ITy->getBitWidth()));
Nadav Rotem093399c2011-02-17 21:22:27 +0000145
146 if (Ty->isFloatingPointTy()) {
147 APFloat FL = APFloat::getAllOnesValue(Ty->getPrimitiveSizeInBits(),
148 !Ty->isPPC_FP128Ty());
149 return ConstantFP::get(Ty->getContext(), FL);
150 }
151
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000152 VectorType *VTy = cast<VectorType>(Ty);
Chris Lattner3c2c9542012-01-25 05:19:54 +0000153 return ConstantVector::getSplat(VTy->getNumElements(),
154 getAllOnesValue(VTy->getElementType()));
Owen Andersona7235ea2009-07-31 20:28:14 +0000155}
156
Chris Lattner3d5ed222012-01-25 06:16:32 +0000157/// getAggregateElement - For aggregates (struct/array/vector) return the
158/// constant that corresponds to the specified element if possible, or null if
159/// not. This can return null if the element index is a ConstantExpr, or if
160/// 'this' is a constant expr.
161Constant *Constant::getAggregateElement(unsigned Elt) const {
162 if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(this))
163 return Elt < CS->getNumOperands() ? CS->getOperand(Elt) : 0;
Galina Kistanovaa46517e2012-07-13 01:25:27 +0000164
Chris Lattner3d5ed222012-01-25 06:16:32 +0000165 if (const ConstantArray *CA = dyn_cast<ConstantArray>(this))
166 return Elt < CA->getNumOperands() ? CA->getOperand(Elt) : 0;
Galina Kistanovaa46517e2012-07-13 01:25:27 +0000167
Chris Lattner3d5ed222012-01-25 06:16:32 +0000168 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
169 return Elt < CV->getNumOperands() ? CV->getOperand(Elt) : 0;
Galina Kistanovaa46517e2012-07-13 01:25:27 +0000170
Chris Lattner3d5ed222012-01-25 06:16:32 +0000171 if (const ConstantAggregateZero *CAZ =dyn_cast<ConstantAggregateZero>(this))
172 return CAZ->getElementValue(Elt);
Galina Kistanovaa46517e2012-07-13 01:25:27 +0000173
Chris Lattner3d5ed222012-01-25 06:16:32 +0000174 if (const UndefValue *UV = dyn_cast<UndefValue>(this))
175 return UV->getElementValue(Elt);
Galina Kistanovaa46517e2012-07-13 01:25:27 +0000176
Chris Lattner230cdab2012-01-26 00:42:34 +0000177 if (const ConstantDataSequential *CDS =dyn_cast<ConstantDataSequential>(this))
Chris Lattner18c7f802012-02-05 02:29:43 +0000178 return Elt < CDS->getNumElements() ? CDS->getElementAsConstant(Elt) : 0;
Chris Lattner3d5ed222012-01-25 06:16:32 +0000179 return 0;
180}
181
182Constant *Constant::getAggregateElement(Constant *Elt) const {
183 assert(isa<IntegerType>(Elt->getType()) && "Index must be an integer");
184 if (ConstantInt *CI = dyn_cast<ConstantInt>(Elt))
185 return getAggregateElement(CI->getZExtValue());
186 return 0;
187}
188
189
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000190void Constant::destroyConstantImpl() {
191 // When a Constant is destroyed, there may be lingering
Chris Lattnerf5ec48d2001-10-13 06:57:33 +0000192 // references to the constant by other constants in the constant pool. These
Misha Brukmanef6a6a62003-08-21 22:14:26 +0000193 // constants are implicitly dependent on the module that is being deleted,
Chris Lattnerf5ec48d2001-10-13 06:57:33 +0000194 // but they don't know that. Because we only find out when the CPV is
195 // deleted, we must now notify all of our users (that should only be
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000196 // Constants) that they are, in fact, invalid now and should be deleted.
Chris Lattnerf5ec48d2001-10-13 06:57:33 +0000197 //
198 while (!use_empty()) {
199 Value *V = use_back();
200#ifndef NDEBUG // Only in -g mode...
Chris Lattner37f077a2009-08-23 04:02:03 +0000201 if (!isa<Constant>(V)) {
David Greened2e63b72010-01-05 01:29:19 +0000202 dbgs() << "While deleting: " << *this
Chris Lattner37f077a2009-08-23 04:02:03 +0000203 << "\n\nUse still stuck around after Def is destroyed: "
204 << *V << "\n\n";
205 }
Chris Lattnerf5ec48d2001-10-13 06:57:33 +0000206#endif
Vikram S. Adve345e0cf2002-07-14 23:13:17 +0000207 assert(isa<Constant>(V) && "References remain to Constant being destroyed");
Chris Lattner230cdab2012-01-26 00:42:34 +0000208 cast<Constant>(V)->destroyConstant();
Chris Lattnerf5ec48d2001-10-13 06:57:33 +0000209
210 // The constant should remove itself from our use list...
Vikram S. Adve345e0cf2002-07-14 23:13:17 +0000211 assert((use_empty() || use_back() != V) && "Constant not removed!");
Chris Lattnerf5ec48d2001-10-13 06:57:33 +0000212 }
213
214 // Value has no outstanding references it is safe to delete it now...
215 delete this;
Chris Lattner1d87bcf2001-10-01 20:11:19 +0000216}
Chris Lattner00950542001-06-06 20:29:01 +0000217
Chris Lattner35b89fa2006-10-20 00:27:06 +0000218/// canTrap - Return true if evaluation of this constant could trap. This is
219/// true for things like constant expressions that could divide by zero.
220bool Constant::canTrap() const {
221 assert(getType()->isFirstClassType() && "Cannot evaluate aggregate vals!");
222 // The only thing that could possibly trap are constant exprs.
223 const ConstantExpr *CE = dyn_cast<ConstantExpr>(this);
224 if (!CE) return false;
Galina Kistanovaa46517e2012-07-13 01:25:27 +0000225
226 // ConstantExpr traps if any operands can trap.
Chris Lattner35b89fa2006-10-20 00:27:06 +0000227 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Galina Kistanovaa46517e2012-07-13 01:25:27 +0000228 if (CE->getOperand(i)->canTrap())
Chris Lattner35b89fa2006-10-20 00:27:06 +0000229 return true;
230
231 // Otherwise, only specific operations can trap.
232 switch (CE->getOpcode()) {
233 default:
234 return false;
Reid Spencer1628cec2006-10-26 06:15:43 +0000235 case Instruction::UDiv:
236 case Instruction::SDiv:
237 case Instruction::FDiv:
Reid Spencer0a783f72006-11-02 01:53:59 +0000238 case Instruction::URem:
239 case Instruction::SRem:
240 case Instruction::FRem:
Chris Lattner35b89fa2006-10-20 00:27:06 +0000241 // Div and rem can trap if the RHS is not known to be non-zero.
Chris Lattner0eeb9132009-10-28 05:14:34 +0000242 if (!isa<ConstantInt>(CE->getOperand(1)) ||CE->getOperand(1)->isNullValue())
Chris Lattner35b89fa2006-10-20 00:27:06 +0000243 return true;
244 return false;
245 }
246}
247
Hans Wennborg18398582012-11-15 11:40:00 +0000248/// isThreadDependent - Return true if the value can vary between threads.
249bool Constant::isThreadDependent() const {
250 SmallPtrSet<const Constant*, 64> Visited;
251 SmallVector<const Constant*, 64> WorkList;
252 WorkList.push_back(this);
253 Visited.insert(this);
254
255 while (!WorkList.empty()) {
256 const Constant *C = WorkList.pop_back_val();
257
258 if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(C)) {
259 if (GV->isThreadLocal())
260 return true;
261 }
262
263 for (unsigned I = 0, E = C->getNumOperands(); I != E; ++I) {
Hans Wennborgfbeb9562012-11-16 10:33:25 +0000264 const Constant *D = dyn_cast<Constant>(C->getOperand(I));
265 if (!D)
266 continue;
Hans Wennborg18398582012-11-15 11:40:00 +0000267 if (Visited.insert(D))
268 WorkList.push_back(D);
269 }
270 }
271
272 return false;
273}
274
Chris Lattner4a7642e2009-11-01 18:11:50 +0000275/// isConstantUsed - Return true if the constant has users other than constant
276/// exprs and other dangling things.
277bool Constant::isConstantUsed() const {
Gabor Greif60ad7812010-03-25 23:06:16 +0000278 for (const_use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI) {
Chris Lattner4a7642e2009-11-01 18:11:50 +0000279 const Constant *UC = dyn_cast<Constant>(*UI);
280 if (UC == 0 || isa<GlobalValue>(UC))
281 return true;
Galina Kistanovaa46517e2012-07-13 01:25:27 +0000282
Chris Lattner4a7642e2009-11-01 18:11:50 +0000283 if (UC->isConstantUsed())
284 return true;
285 }
286 return false;
287}
288
289
Chris Lattner7cf12c72009-07-22 00:05:44 +0000290
291/// getRelocationInfo - This method classifies the entry according to
292/// whether or not it may generate a relocation entry. This must be
293/// conservative, so if it might codegen to a relocatable entry, it should say
294/// so. The return values are:
295///
Chris Lattner083a1e02009-07-24 03:27:21 +0000296/// NoRelocation: This constant pool entry is guaranteed to never have a
297/// relocation applied to it (because it holds a simple constant like
298/// '4').
299/// LocalRelocation: This entry has relocations, but the entries are
300/// guaranteed to be resolvable by the static linker, so the dynamic
301/// linker will never see them.
302/// GlobalRelocations: This entry may have arbitrary relocations.
Chris Lattner7cf12c72009-07-22 00:05:44 +0000303///
304/// FIXME: This really should not be in VMCore.
Chris Lattner083a1e02009-07-24 03:27:21 +0000305Constant::PossibleRelocationsTy Constant::getRelocationInfo() const {
306 if (const GlobalValue *GV = dyn_cast<GlobalValue>(this)) {
Chris Lattner7cf12c72009-07-22 00:05:44 +0000307 if (GV->hasLocalLinkage() || GV->hasHiddenVisibility())
Chris Lattner083a1e02009-07-24 03:27:21 +0000308 return LocalRelocation; // Local to this file/library.
309 return GlobalRelocations; // Global reference.
Anton Korobeynikovab267a22009-03-29 17:13:18 +0000310 }
Chris Lattner7cf12c72009-07-22 00:05:44 +0000311
Chris Lattner5d81bef2009-10-28 04:12:16 +0000312 if (const BlockAddress *BA = dyn_cast<BlockAddress>(this))
313 return BA->getFunction()->getRelocationInfo();
314
Chris Lattner5099b312010-01-03 18:09:40 +0000315 // While raw uses of blockaddress need to be relocated, differences between
316 // two of them don't when they are for labels in the same function. This is a
317 // common idiom when creating a table for the indirect goto extension, so we
318 // handle it efficiently here.
319 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(this))
320 if (CE->getOpcode() == Instruction::Sub) {
321 ConstantExpr *LHS = dyn_cast<ConstantExpr>(CE->getOperand(0));
322 ConstantExpr *RHS = dyn_cast<ConstantExpr>(CE->getOperand(1));
323 if (LHS && RHS &&
324 LHS->getOpcode() == Instruction::PtrToInt &&
325 RHS->getOpcode() == Instruction::PtrToInt &&
326 isa<BlockAddress>(LHS->getOperand(0)) &&
327 isa<BlockAddress>(RHS->getOperand(0)) &&
328 cast<BlockAddress>(LHS->getOperand(0))->getFunction() ==
329 cast<BlockAddress>(RHS->getOperand(0))->getFunction())
330 return NoRelocation;
331 }
Galina Kistanovaa46517e2012-07-13 01:25:27 +0000332
Chris Lattner083a1e02009-07-24 03:27:21 +0000333 PossibleRelocationsTy Result = NoRelocation;
Evan Chengafe15812007-03-08 00:59:12 +0000334 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Chris Lattner0eeb9132009-10-28 05:14:34 +0000335 Result = std::max(Result,
336 cast<Constant>(getOperand(i))->getRelocationInfo());
Galina Kistanovaa46517e2012-07-13 01:25:27 +0000337
Chris Lattner7cf12c72009-07-22 00:05:44 +0000338 return Result;
Evan Chengafe15812007-03-08 00:59:12 +0000339}
340
Chris Lattner13fb0db2011-02-18 04:41:42 +0000341/// removeDeadUsersOfConstant - If the specified constantexpr is dead, remove
342/// it. This involves recursively eliminating any dead users of the
343/// constantexpr.
344static bool removeDeadUsersOfConstant(const Constant *C) {
345 if (isa<GlobalValue>(C)) return false; // Cannot remove this
Galina Kistanovaa46517e2012-07-13 01:25:27 +0000346
Chris Lattner13fb0db2011-02-18 04:41:42 +0000347 while (!C->use_empty()) {
348 const Constant *User = dyn_cast<Constant>(C->use_back());
349 if (!User) return false; // Non-constant usage;
350 if (!removeDeadUsersOfConstant(User))
351 return false; // Constant wasn't dead
352 }
Galina Kistanovaa46517e2012-07-13 01:25:27 +0000353
Chris Lattner13fb0db2011-02-18 04:41:42 +0000354 const_cast<Constant*>(C)->destroyConstant();
355 return true;
356}
357
358
359/// removeDeadConstantUsers - If there are any dead constant users dangling
360/// off of this constant, remove them. This method is useful for clients
361/// that want to check to see if a global is unused, but don't want to deal
362/// with potentially dead constants hanging off of the globals.
363void Constant::removeDeadConstantUsers() const {
364 Value::const_use_iterator I = use_begin(), E = use_end();
365 Value::const_use_iterator LastNonDeadUser = E;
366 while (I != E) {
367 const Constant *User = dyn_cast<Constant>(*I);
368 if (User == 0) {
369 LastNonDeadUser = I;
370 ++I;
371 continue;
372 }
Galina Kistanovaa46517e2012-07-13 01:25:27 +0000373
Chris Lattner13fb0db2011-02-18 04:41:42 +0000374 if (!removeDeadUsersOfConstant(User)) {
375 // If the constant wasn't dead, remember that this was the last live use
376 // and move on to the next constant.
377 LastNonDeadUser = I;
378 ++I;
379 continue;
380 }
Galina Kistanovaa46517e2012-07-13 01:25:27 +0000381
Chris Lattner13fb0db2011-02-18 04:41:42 +0000382 // If the constant was dead, then the iterator is invalidated.
383 if (LastNonDeadUser == E) {
384 I = use_begin();
385 if (I == E) break;
386 } else {
387 I = LastNonDeadUser;
388 ++I;
389 }
390 }
391}
392
393
Chris Lattner86381442008-07-10 00:28:11 +0000394
Chris Lattner00950542001-06-06 20:29:01 +0000395//===----------------------------------------------------------------------===//
Chris Lattner6b6f6ba2007-02-20 06:39:57 +0000396// ConstantInt
Chris Lattner00950542001-06-06 20:29:01 +0000397//===----------------------------------------------------------------------===//
398
David Blaikie2d24e2a2011-12-20 02:50:00 +0000399void ConstantInt::anchor() { }
400
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000401ConstantInt::ConstantInt(IntegerType *Ty, const APInt& V)
Chris Lattnereb41bdd2007-02-20 05:55:46 +0000402 : Constant(Ty, ConstantIntVal, 0, 0), Val(V) {
Reid Spencer532d0ce2007-02-26 23:54:03 +0000403 assert(V.getBitWidth() == Ty->getBitWidth() && "Invalid constant for type");
Chris Lattner00950542001-06-06 20:29:01 +0000404}
405
Nick Lewyckyd01f50f2011-03-06 03:36:19 +0000406ConstantInt *ConstantInt::getTrue(LLVMContext &Context) {
Owen Anderson5defacc2009-07-31 17:39:07 +0000407 LLVMContextImpl *pImpl = Context.pImpl;
Benjamin Kramerf601d6d2010-11-20 18:43:35 +0000408 if (!pImpl->TheTrueVal)
409 pImpl->TheTrueVal = ConstantInt::get(Type::getInt1Ty(Context), 1);
410 return pImpl->TheTrueVal;
Owen Anderson5defacc2009-07-31 17:39:07 +0000411}
412
Nick Lewyckyd01f50f2011-03-06 03:36:19 +0000413ConstantInt *ConstantInt::getFalse(LLVMContext &Context) {
Owen Anderson5defacc2009-07-31 17:39:07 +0000414 LLVMContextImpl *pImpl = Context.pImpl;
Benjamin Kramerf601d6d2010-11-20 18:43:35 +0000415 if (!pImpl->TheFalseVal)
416 pImpl->TheFalseVal = ConstantInt::get(Type::getInt1Ty(Context), 0);
417 return pImpl->TheFalseVal;
Owen Anderson5defacc2009-07-31 17:39:07 +0000418}
419
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000420Constant *ConstantInt::getTrue(Type *Ty) {
421 VectorType *VTy = dyn_cast<VectorType>(Ty);
Nick Lewyckyd01f50f2011-03-06 03:36:19 +0000422 if (!VTy) {
423 assert(Ty->isIntegerTy(1) && "True must be i1 or vector of i1.");
424 return ConstantInt::getTrue(Ty->getContext());
425 }
426 assert(VTy->getElementType()->isIntegerTy(1) &&
427 "True must be vector of i1 or i1.");
Chris Lattner3c2c9542012-01-25 05:19:54 +0000428 return ConstantVector::getSplat(VTy->getNumElements(),
429 ConstantInt::getTrue(Ty->getContext()));
Nick Lewyckyd01f50f2011-03-06 03:36:19 +0000430}
431
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000432Constant *ConstantInt::getFalse(Type *Ty) {
433 VectorType *VTy = dyn_cast<VectorType>(Ty);
Nick Lewyckyd01f50f2011-03-06 03:36:19 +0000434 if (!VTy) {
435 assert(Ty->isIntegerTy(1) && "False must be i1 or vector of i1.");
436 return ConstantInt::getFalse(Ty->getContext());
437 }
438 assert(VTy->getElementType()->isIntegerTy(1) &&
439 "False must be vector of i1 or i1.");
Chris Lattner3c2c9542012-01-25 05:19:54 +0000440 return ConstantVector::getSplat(VTy->getNumElements(),
441 ConstantInt::getFalse(Ty->getContext()));
Nick Lewyckyd01f50f2011-03-06 03:36:19 +0000442}
443
Owen Anderson5defacc2009-07-31 17:39:07 +0000444
Owen Andersoneed707b2009-07-24 23:12:02 +0000445// Get a ConstantInt from an APInt. Note that the value stored in the DenseMap
446// as the key, is a DenseMapAPIntKeyInfo::KeyTy which has provided the
447// operator== and operator!= to ensure that the DenseMap doesn't attempt to
448// compare APInt's of different widths, which would violate an APInt class
449// invariant which generates an assertion.
Nick Lewyckyd01f50f2011-03-06 03:36:19 +0000450ConstantInt *ConstantInt::get(LLVMContext &Context, const APInt &V) {
Owen Andersoneed707b2009-07-24 23:12:02 +0000451 // Get the corresponding integer type for the bit width of the value.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000452 IntegerType *ITy = IntegerType::get(Context, V.getBitWidth());
Owen Andersoneed707b2009-07-24 23:12:02 +0000453 // get an existing value or the insertion position
454 DenseMapAPIntKeyInfo::KeyTy Key(V, ITy);
Owen Andersoneed707b2009-07-24 23:12:02 +0000455 ConstantInt *&Slot = Context.pImpl->IntConstants[Key];
Owen Anderson59d5aac2009-10-19 20:11:52 +0000456 if (!Slot) Slot = new ConstantInt(ITy, V);
457 return Slot;
Owen Andersoneed707b2009-07-24 23:12:02 +0000458}
459
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000460Constant *ConstantInt::get(Type *Ty, uint64_t V, bool isSigned) {
Nick Lewyckyd01f50f2011-03-06 03:36:19 +0000461 Constant *C = get(cast<IntegerType>(Ty->getScalarType()), V, isSigned);
Owen Andersoneed707b2009-07-24 23:12:02 +0000462
463 // For vectors, broadcast the value.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000464 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattner3c2c9542012-01-25 05:19:54 +0000465 return ConstantVector::getSplat(VTy->getNumElements(), C);
Owen Andersoneed707b2009-07-24 23:12:02 +0000466
467 return C;
468}
469
Chris Lattnera78fa8c2012-01-27 03:08:05 +0000470ConstantInt *ConstantInt::get(IntegerType *Ty, uint64_t V,
Owen Andersoneed707b2009-07-24 23:12:02 +0000471 bool isSigned) {
472 return get(Ty->getContext(), APInt(Ty->getBitWidth(), V, isSigned));
473}
474
Chris Lattnera78fa8c2012-01-27 03:08:05 +0000475ConstantInt *ConstantInt::getSigned(IntegerType *Ty, int64_t V) {
Owen Andersoneed707b2009-07-24 23:12:02 +0000476 return get(Ty, V, true);
477}
478
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000479Constant *ConstantInt::getSigned(Type *Ty, int64_t V) {
Owen Andersoneed707b2009-07-24 23:12:02 +0000480 return get(Ty, V, true);
481}
482
Chris Lattnera78fa8c2012-01-27 03:08:05 +0000483Constant *ConstantInt::get(Type *Ty, const APInt& V) {
Owen Andersoneed707b2009-07-24 23:12:02 +0000484 ConstantInt *C = get(Ty->getContext(), V);
485 assert(C->getType() == Ty->getScalarType() &&
486 "ConstantInt type doesn't match the type implied by its value!");
487
488 // For vectors, broadcast the value.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000489 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattner3c2c9542012-01-25 05:19:54 +0000490 return ConstantVector::getSplat(VTy->getNumElements(), C);
Owen Andersoneed707b2009-07-24 23:12:02 +0000491
492 return C;
493}
494
Chris Lattnera78fa8c2012-01-27 03:08:05 +0000495ConstantInt *ConstantInt::get(IntegerType* Ty, StringRef Str,
Erick Tryzelaar0e81f662009-08-16 23:36:33 +0000496 uint8_t radix) {
497 return get(Ty->getContext(), APInt(Ty->getBitWidth(), Str, radix));
498}
499
Chris Lattner6b6f6ba2007-02-20 06:39:57 +0000500//===----------------------------------------------------------------------===//
Chris Lattner9b4ee0c2007-02-20 07:17:17 +0000501// ConstantFP
Chris Lattner6b6f6ba2007-02-20 06:39:57 +0000502//===----------------------------------------------------------------------===//
503
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000504static const fltSemantics *TypeToFloatSemantics(Type *Ty) {
Dan Gohmance163392011-12-17 00:04:22 +0000505 if (Ty->isHalfTy())
506 return &APFloat::IEEEhalf;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000507 if (Ty->isFloatTy())
Rafael Espindola87d1f472009-07-15 17:40:42 +0000508 return &APFloat::IEEEsingle;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000509 if (Ty->isDoubleTy())
Rafael Espindola87d1f472009-07-15 17:40:42 +0000510 return &APFloat::IEEEdouble;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000511 if (Ty->isX86_FP80Ty())
Rafael Espindola87d1f472009-07-15 17:40:42 +0000512 return &APFloat::x87DoubleExtended;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000513 else if (Ty->isFP128Ty())
Rafael Espindola87d1f472009-07-15 17:40:42 +0000514 return &APFloat::IEEEquad;
Galina Kistanovaa46517e2012-07-13 01:25:27 +0000515
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000516 assert(Ty->isPPC_FP128Ty() && "Unknown FP format");
Rafael Espindola87d1f472009-07-15 17:40:42 +0000517 return &APFloat::PPCDoubleDouble;
518}
519
David Blaikie2d24e2a2011-12-20 02:50:00 +0000520void ConstantFP::anchor() { }
521
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000522/// get() - This returns a constant fp for the specified value in the
523/// specified type. This should only be used for simple constant values like
524/// 2.0/1.0 etc, that are known-valid both as double and as the target format.
Chris Lattnera78fa8c2012-01-27 03:08:05 +0000525Constant *ConstantFP::get(Type *Ty, double V) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000526 LLVMContext &Context = Ty->getContext();
Galina Kistanovaa46517e2012-07-13 01:25:27 +0000527
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000528 APFloat FV(V);
529 bool ignored;
530 FV.convert(*TypeToFloatSemantics(Ty->getScalarType()),
531 APFloat::rmNearestTiesToEven, &ignored);
532 Constant *C = get(Context, FV);
533
534 // For vectors, broadcast the value.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000535 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattner3c2c9542012-01-25 05:19:54 +0000536 return ConstantVector::getSplat(VTy->getNumElements(), C);
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000537
538 return C;
539}
540
Erick Tryzelaar0e81f662009-08-16 23:36:33 +0000541
Chris Lattnera78fa8c2012-01-27 03:08:05 +0000542Constant *ConstantFP::get(Type *Ty, StringRef Str) {
Erick Tryzelaar0e81f662009-08-16 23:36:33 +0000543 LLVMContext &Context = Ty->getContext();
544
545 APFloat FV(*TypeToFloatSemantics(Ty->getScalarType()), Str);
546 Constant *C = get(Context, FV);
547
548 // For vectors, broadcast the value.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000549 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattner3c2c9542012-01-25 05:19:54 +0000550 return ConstantVector::getSplat(VTy->getNumElements(), C);
Erick Tryzelaar0e81f662009-08-16 23:36:33 +0000551
552 return C;
553}
554
555
Chris Lattner3c2c9542012-01-25 05:19:54 +0000556ConstantFP *ConstantFP::getNegativeZero(Type *Ty) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000557 LLVMContext &Context = Ty->getContext();
Chris Lattner3c2c9542012-01-25 05:19:54 +0000558 APFloat apf = cast<ConstantFP>(Constant::getNullValue(Ty))->getValueAPF();
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000559 apf.changeSign();
560 return get(Context, apf);
561}
562
563
Chris Lattner3c2c9542012-01-25 05:19:54 +0000564Constant *ConstantFP::getZeroValueForNegation(Type *Ty) {
565 Type *ScalarTy = Ty->getScalarType();
566 if (ScalarTy->isFloatingPointTy()) {
567 Constant *C = getNegativeZero(ScalarTy);
568 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
569 return ConstantVector::getSplat(VTy->getNumElements(), C);
570 return C;
571 }
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000572
Owen Andersona7235ea2009-07-31 20:28:14 +0000573 return Constant::getNullValue(Ty);
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000574}
575
576
577// ConstantFP accessors.
578ConstantFP* ConstantFP::get(LLVMContext &Context, const APFloat& V) {
579 DenseMapAPFloatKeyInfo::KeyTy Key(V);
Galina Kistanovaa46517e2012-07-13 01:25:27 +0000580
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000581 LLVMContextImpl* pImpl = Context.pImpl;
Galina Kistanovaa46517e2012-07-13 01:25:27 +0000582
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000583 ConstantFP *&Slot = pImpl->FPConstants[Key];
Galina Kistanovaa46517e2012-07-13 01:25:27 +0000584
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000585 if (!Slot) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000586 Type *Ty;
Dan Gohmance163392011-12-17 00:04:22 +0000587 if (&V.getSemantics() == &APFloat::IEEEhalf)
588 Ty = Type::getHalfTy(Context);
589 else if (&V.getSemantics() == &APFloat::IEEEsingle)
Owen Anderson59d5aac2009-10-19 20:11:52 +0000590 Ty = Type::getFloatTy(Context);
591 else if (&V.getSemantics() == &APFloat::IEEEdouble)
592 Ty = Type::getDoubleTy(Context);
593 else if (&V.getSemantics() == &APFloat::x87DoubleExtended)
594 Ty = Type::getX86_FP80Ty(Context);
595 else if (&V.getSemantics() == &APFloat::IEEEquad)
596 Ty = Type::getFP128Ty(Context);
597 else {
598 assert(&V.getSemantics() == &APFloat::PPCDoubleDouble &&
599 "Unknown FP format");
600 Ty = Type::getPPC_FP128Ty(Context);
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000601 }
Owen Anderson59d5aac2009-10-19 20:11:52 +0000602 Slot = new ConstantFP(Ty, V);
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000603 }
Galina Kistanovaa46517e2012-07-13 01:25:27 +0000604
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000605 return Slot;
606}
607
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000608ConstantFP *ConstantFP::getInfinity(Type *Ty, bool Negative) {
Dan Gohmanf344f7f2009-09-25 23:00:48 +0000609 const fltSemantics &Semantics = *TypeToFloatSemantics(Ty);
610 return ConstantFP::get(Ty->getContext(),
611 APFloat::getInf(Semantics, Negative));
612}
613
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000614ConstantFP::ConstantFP(Type *Ty, const APFloat& V)
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000615 : Constant(Ty, ConstantFPVal, 0, 0), Val(V) {
Chris Lattner288e78f2008-04-09 06:38:30 +0000616 assert(&V.getSemantics() == TypeToFloatSemantics(Ty) &&
617 "FP type Mismatch");
Chris Lattner00950542001-06-06 20:29:01 +0000618}
619
Chris Lattner032c6eb2011-07-15 06:14:08 +0000620bool ConstantFP::isExactlyValue(const APFloat &V) const {
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000621 return Val.bitwiseIsEqual(V);
Chris Lattner9b4ee0c2007-02-20 07:17:17 +0000622}
623
Chris Lattner9b4ee0c2007-02-20 07:17:17 +0000624//===----------------------------------------------------------------------===//
Chris Lattnerff2b7f32012-01-24 05:42:11 +0000625// ConstantAggregateZero Implementation
626//===----------------------------------------------------------------------===//
627
628/// getSequentialElement - If this CAZ has array or vector type, return a zero
629/// with the right element type.
Chris Lattner3d5ed222012-01-25 06:16:32 +0000630Constant *ConstantAggregateZero::getSequentialElement() const {
Chris Lattner230cdab2012-01-26 00:42:34 +0000631 return Constant::getNullValue(getType()->getSequentialElementType());
Chris Lattnerff2b7f32012-01-24 05:42:11 +0000632}
633
634/// getStructElement - If this CAZ has struct type, return a zero with the
635/// right element type for the specified element.
Chris Lattner3d5ed222012-01-25 06:16:32 +0000636Constant *ConstantAggregateZero::getStructElement(unsigned Elt) const {
Chris Lattner230cdab2012-01-26 00:42:34 +0000637 return Constant::getNullValue(getType()->getStructElementType(Elt));
Chris Lattnerff2b7f32012-01-24 05:42:11 +0000638}
639
640/// getElementValue - Return a zero of the right value for the specified GEP
641/// index if we can, otherwise return null (e.g. if C is a ConstantExpr).
Chris Lattner3d5ed222012-01-25 06:16:32 +0000642Constant *ConstantAggregateZero::getElementValue(Constant *C) const {
Chris Lattnerff2b7f32012-01-24 05:42:11 +0000643 if (isa<SequentialType>(getType()))
644 return getSequentialElement();
645 return getStructElement(cast<ConstantInt>(C)->getZExtValue());
646}
647
Chris Lattnerdf390282012-01-24 07:54:10 +0000648/// getElementValue - Return a zero of the right value for the specified GEP
649/// index.
Chris Lattner3d5ed222012-01-25 06:16:32 +0000650Constant *ConstantAggregateZero::getElementValue(unsigned Idx) const {
Chris Lattnerdf390282012-01-24 07:54:10 +0000651 if (isa<SequentialType>(getType()))
652 return getSequentialElement();
653 return getStructElement(Idx);
654}
655
656
Chris Lattnerff2b7f32012-01-24 05:42:11 +0000657//===----------------------------------------------------------------------===//
658// UndefValue Implementation
659//===----------------------------------------------------------------------===//
660
661/// getSequentialElement - If this undef has array or vector type, return an
662/// undef with the right element type.
Chris Lattner3d5ed222012-01-25 06:16:32 +0000663UndefValue *UndefValue::getSequentialElement() const {
Chris Lattner230cdab2012-01-26 00:42:34 +0000664 return UndefValue::get(getType()->getSequentialElementType());
Chris Lattnerff2b7f32012-01-24 05:42:11 +0000665}
666
667/// getStructElement - If this undef has struct type, return a zero with the
668/// right element type for the specified element.
Chris Lattner3d5ed222012-01-25 06:16:32 +0000669UndefValue *UndefValue::getStructElement(unsigned Elt) const {
Chris Lattner230cdab2012-01-26 00:42:34 +0000670 return UndefValue::get(getType()->getStructElementType(Elt));
Chris Lattnerff2b7f32012-01-24 05:42:11 +0000671}
672
673/// getElementValue - Return an undef of the right value for the specified GEP
674/// index if we can, otherwise return null (e.g. if C is a ConstantExpr).
Chris Lattner3d5ed222012-01-25 06:16:32 +0000675UndefValue *UndefValue::getElementValue(Constant *C) const {
Chris Lattnerff2b7f32012-01-24 05:42:11 +0000676 if (isa<SequentialType>(getType()))
677 return getSequentialElement();
678 return getStructElement(cast<ConstantInt>(C)->getZExtValue());
679}
680
Chris Lattnerdf390282012-01-24 07:54:10 +0000681/// getElementValue - Return an undef of the right value for the specified GEP
682/// index.
Chris Lattner3d5ed222012-01-25 06:16:32 +0000683UndefValue *UndefValue::getElementValue(unsigned Idx) const {
Chris Lattnerdf390282012-01-24 07:54:10 +0000684 if (isa<SequentialType>(getType()))
685 return getSequentialElement();
686 return getStructElement(Idx);
687}
688
689
Chris Lattnerff2b7f32012-01-24 05:42:11 +0000690
691//===----------------------------------------------------------------------===//
Chris Lattner9b4ee0c2007-02-20 07:17:17 +0000692// ConstantXXX Classes
693//===----------------------------------------------------------------------===//
694
Chris Lattner18c7f802012-02-05 02:29:43 +0000695template <typename ItTy, typename EltTy>
696static bool rangeOnlyContains(ItTy Start, ItTy End, EltTy Elt) {
697 for (; Start != End; ++Start)
698 if (*Start != Elt)
699 return false;
700 return true;
701}
Chris Lattner9b4ee0c2007-02-20 07:17:17 +0000702
Jay Foad166579e2011-07-25 10:14:44 +0000703ConstantArray::ConstantArray(ArrayType *T, ArrayRef<Constant *> V)
Gabor Greifefe65362008-05-10 08:32:32 +0000704 : Constant(T, ConstantArrayVal,
705 OperandTraits<ConstantArray>::op_end(this) - V.size(),
706 V.size()) {
Alkis Evlogimenose0de1d62004-09-15 02:32:15 +0000707 assert(V.size() == T->getNumElements() &&
708 "Invalid initializer vector for constant array");
Jay Foad166579e2011-07-25 10:14:44 +0000709 for (unsigned i = 0, e = V.size(); i != e; ++i)
710 assert(V[i]->getType() == T->getElementType() &&
Alkis Evlogimenoscad90ad2004-09-10 04:16:59 +0000711 "Initializer for array element doesn't match array element type!");
Jay Foad166579e2011-07-25 10:14:44 +0000712 std::copy(V.begin(), V.end(), op_begin());
Chris Lattner00950542001-06-06 20:29:01 +0000713}
714
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000715Constant *ConstantArray::get(ArrayType *Ty, ArrayRef<Constant*> V) {
Chris Lattner18c7f802012-02-05 02:29:43 +0000716 // Empty arrays are canonicalized to ConstantAggregateZero.
717 if (V.empty())
718 return ConstantAggregateZero::get(Ty);
719
Jeffrey Yasskin1fb613c2009-09-30 21:08:08 +0000720 for (unsigned i = 0, e = V.size(); i != e; ++i) {
721 assert(V[i]->getType() == Ty->getElementType() &&
722 "Wrong type in array element initializer");
723 }
Owen Anderson1fd70962009-07-28 18:32:17 +0000724 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
Galina Kistanovaa46517e2012-07-13 01:25:27 +0000725
Chris Lattner18c7f802012-02-05 02:29:43 +0000726 // If this is an all-zero array, return a ConstantAggregateZero object. If
727 // all undef, return an UndefValue, if "all simple", then return a
728 // ConstantDataArray.
729 Constant *C = V[0];
730 if (isa<UndefValue>(C) && rangeOnlyContains(V.begin(), V.end(), C))
731 return UndefValue::get(Ty);
Chris Lattnere150e2d2012-01-26 02:31:22 +0000732
Chris Lattner18c7f802012-02-05 02:29:43 +0000733 if (C->isNullValue() && rangeOnlyContains(V.begin(), V.end(), C))
734 return ConstantAggregateZero::get(Ty);
735
736 // Check to see if all of the elements are ConstantFP or ConstantInt and if
737 // the element type is compatible with ConstantDataVector. If so, use it.
738 if (ConstantDataSequential::isElementTypeCompatible(C->getType())) {
739 // We speculatively build the elements here even if it turns out that there
740 // is a constantexpr or something else weird in the array, since it is so
741 // uncommon for that to happen.
742 if (ConstantInt *CI = dyn_cast<ConstantInt>(C)) {
743 if (CI->getType()->isIntegerTy(8)) {
744 SmallVector<uint8_t, 16> Elts;
745 for (unsigned i = 0, e = V.size(); i != e; ++i)
746 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
747 Elts.push_back(CI->getZExtValue());
748 else
749 break;
750 if (Elts.size() == V.size())
751 return ConstantDataArray::get(C->getContext(), Elts);
752 } else if (CI->getType()->isIntegerTy(16)) {
753 SmallVector<uint16_t, 16> Elts;
754 for (unsigned i = 0, e = V.size(); i != e; ++i)
755 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
756 Elts.push_back(CI->getZExtValue());
757 else
758 break;
759 if (Elts.size() == V.size())
760 return ConstantDataArray::get(C->getContext(), Elts);
761 } else if (CI->getType()->isIntegerTy(32)) {
762 SmallVector<uint32_t, 16> Elts;
763 for (unsigned i = 0, e = V.size(); i != e; ++i)
764 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
765 Elts.push_back(CI->getZExtValue());
766 else
767 break;
768 if (Elts.size() == V.size())
769 return ConstantDataArray::get(C->getContext(), Elts);
770 } else if (CI->getType()->isIntegerTy(64)) {
771 SmallVector<uint64_t, 16> Elts;
772 for (unsigned i = 0, e = V.size(); i != e; ++i)
773 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
774 Elts.push_back(CI->getZExtValue());
775 else
776 break;
777 if (Elts.size() == V.size())
778 return ConstantDataArray::get(C->getContext(), Elts);
779 }
780 }
Galina Kistanovaa46517e2012-07-13 01:25:27 +0000781
Chris Lattner18c7f802012-02-05 02:29:43 +0000782 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
783 if (CFP->getType()->isFloatTy()) {
784 SmallVector<float, 16> Elts;
785 for (unsigned i = 0, e = V.size(); i != e; ++i)
786 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V[i]))
787 Elts.push_back(CFP->getValueAPF().convertToFloat());
788 else
789 break;
790 if (Elts.size() == V.size())
791 return ConstantDataArray::get(C->getContext(), Elts);
792 } else if (CFP->getType()->isDoubleTy()) {
793 SmallVector<double, 16> Elts;
794 for (unsigned i = 0, e = V.size(); i != e; ++i)
795 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V[i]))
796 Elts.push_back(CFP->getValueAPF().convertToDouble());
797 else
798 break;
799 if (Elts.size() == V.size())
800 return ConstantDataArray::get(C->getContext(), Elts);
801 }
802 }
Owen Anderson1fd70962009-07-28 18:32:17 +0000803 }
Chris Lattnere150e2d2012-01-26 02:31:22 +0000804
Chris Lattner18c7f802012-02-05 02:29:43 +0000805 // Otherwise, we really do want to create a ConstantArray.
Chris Lattnere150e2d2012-01-26 02:31:22 +0000806 return pImpl->ArrayConstants.getOrCreate(Ty, V);
Owen Anderson1fd70962009-07-28 18:32:17 +0000807}
808
Chris Lattnerb065b062011-06-20 04:01:31 +0000809/// getTypeForElements - Return an anonymous struct type to use for a constant
810/// with the specified set of elements. The list must not be empty.
811StructType *ConstantStruct::getTypeForElements(LLVMContext &Context,
812 ArrayRef<Constant*> V,
813 bool Packed) {
Bill Wendlinga7a3f042012-02-07 01:27:51 +0000814 unsigned VecSize = V.size();
815 SmallVector<Type*, 16> EltTypes(VecSize);
816 for (unsigned i = 0; i != VecSize; ++i)
817 EltTypes[i] = V[i]->getType();
Galina Kistanovaa46517e2012-07-13 01:25:27 +0000818
Chris Lattnerb065b062011-06-20 04:01:31 +0000819 return StructType::get(Context, EltTypes, Packed);
820}
821
822
823StructType *ConstantStruct::getTypeForElements(ArrayRef<Constant*> V,
824 bool Packed) {
825 assert(!V.empty() &&
826 "ConstantStruct::getTypeForElements cannot be called on empty list");
827 return getTypeForElements(V[0]->getContext(), V, Packed);
828}
829
830
Jay Foad166579e2011-07-25 10:14:44 +0000831ConstantStruct::ConstantStruct(StructType *T, ArrayRef<Constant *> V)
Gabor Greifefe65362008-05-10 08:32:32 +0000832 : Constant(T, ConstantStructVal,
833 OperandTraits<ConstantStruct>::op_end(this) - V.size(),
834 V.size()) {
Chris Lattnerf4ef8db2011-08-07 04:18:48 +0000835 assert(V.size() == T->getNumElements() &&
Vikram S. Adve345e0cf2002-07-14 23:13:17 +0000836 "Invalid initializer vector for constant structure");
Jay Foad166579e2011-07-25 10:14:44 +0000837 for (unsigned i = 0, e = V.size(); i != e; ++i)
838 assert((T->isOpaque() || V[i]->getType() == T->getElementType(i)) &&
Chris Lattnerb8438892003-06-02 17:42:47 +0000839 "Initializer for struct element doesn't match struct element type!");
Jay Foad166579e2011-07-25 10:14:44 +0000840 std::copy(V.begin(), V.end(), op_begin());
Chris Lattner00950542001-06-06 20:29:01 +0000841}
842
Owen Anderson8fa33382009-07-27 22:29:26 +0000843// ConstantStruct accessors.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000844Constant *ConstantStruct::get(StructType *ST, ArrayRef<Constant*> V) {
Chris Lattner1afcace2011-07-09 17:41:24 +0000845 assert((ST->isOpaque() || ST->getNumElements() == V.size()) &&
846 "Incorrect # elements specified to ConstantStruct::get");
Chris Lattnere150e2d2012-01-26 02:31:22 +0000847
848 // Create a ConstantAggregateZero value if all elements are zeros.
849 bool isZero = true;
850 bool isUndef = false;
851
852 if (!V.empty()) {
853 isUndef = isa<UndefValue>(V[0]);
854 isZero = V[0]->isNullValue();
855 if (isUndef || isZero) {
856 for (unsigned i = 0, e = V.size(); i != e; ++i) {
857 if (!V[i]->isNullValue())
858 isZero = false;
859 if (!isa<UndefValue>(V[i]))
860 isUndef = false;
861 }
862 }
Galina Kistanovaa46517e2012-07-13 01:25:27 +0000863 }
Chris Lattnere150e2d2012-01-26 02:31:22 +0000864 if (isZero)
865 return ConstantAggregateZero::get(ST);
866 if (isUndef)
867 return UndefValue::get(ST);
Galina Kistanovaa46517e2012-07-13 01:25:27 +0000868
Chris Lattnere150e2d2012-01-26 02:31:22 +0000869 return ST->getContext().pImpl->StructConstants.getOrCreate(ST, V);
Owen Anderson8fa33382009-07-27 22:29:26 +0000870}
871
Chris Lattnerf4ef8db2011-08-07 04:18:48 +0000872Constant *ConstantStruct::get(StructType *T, ...) {
Talin41ee4e52011-02-28 23:53:27 +0000873 va_list ap;
Chris Lattnerb065b062011-06-20 04:01:31 +0000874 SmallVector<Constant*, 8> Values;
875 va_start(ap, T);
876 while (Constant *Val = va_arg(ap, llvm::Constant*))
Talin41ee4e52011-02-28 23:53:27 +0000877 Values.push_back(Val);
Talinbdcd7662011-03-01 18:00:49 +0000878 va_end(ap);
Chris Lattnerb065b062011-06-20 04:01:31 +0000879 return get(T, Values);
Talin41ee4e52011-02-28 23:53:27 +0000880}
881
Jay Foad166579e2011-07-25 10:14:44 +0000882ConstantVector::ConstantVector(VectorType *T, ArrayRef<Constant *> V)
Gabor Greifefe65362008-05-10 08:32:32 +0000883 : Constant(T, ConstantVectorVal,
884 OperandTraits<ConstantVector>::op_end(this) - V.size(),
885 V.size()) {
Jay Foad166579e2011-07-25 10:14:44 +0000886 for (size_t i = 0, e = V.size(); i != e; i++)
887 assert(V[i]->getType() == T->getElementType() &&
Dan Gohmanfa73ea22007-05-24 14:36:04 +0000888 "Initializer for vector element doesn't match vector element type!");
Jay Foad166579e2011-07-25 10:14:44 +0000889 std::copy(V.begin(), V.end(), op_begin());
Brian Gaeke715c90b2004-08-20 06:00:58 +0000890}
891
Owen Andersonaf7ec972009-07-28 21:19:26 +0000892// ConstantVector accessors.
Jay Foada0c13842011-06-22 09:10:19 +0000893Constant *ConstantVector::get(ArrayRef<Constant*> V) {
Jay Foad9afc5272011-01-27 14:44:55 +0000894 assert(!V.empty() && "Vectors can't be empty");
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000895 VectorType *T = VectorType::get(V.front()->getType(), V.size());
Chris Lattner2ca5c862011-02-15 00:14:00 +0000896 LLVMContextImpl *pImpl = T->getContext().pImpl;
Jay Foad9afc5272011-01-27 14:44:55 +0000897
Chris Lattner2ca5c862011-02-15 00:14:00 +0000898 // If this is an all-undef or all-zero vector, return a
Owen Andersonaf7ec972009-07-28 21:19:26 +0000899 // ConstantAggregateZero or UndefValue.
900 Constant *C = V[0];
901 bool isZero = C->isNullValue();
902 bool isUndef = isa<UndefValue>(C);
903
904 if (isZero || isUndef) {
905 for (unsigned i = 1, e = V.size(); i != e; ++i)
906 if (V[i] != C) {
907 isZero = isUndef = false;
908 break;
909 }
910 }
Galina Kistanovaa46517e2012-07-13 01:25:27 +0000911
Owen Andersonaf7ec972009-07-28 21:19:26 +0000912 if (isZero)
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000913 return ConstantAggregateZero::get(T);
Owen Andersonaf7ec972009-07-28 21:19:26 +0000914 if (isUndef)
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000915 return UndefValue::get(T);
Galina Kistanovaa46517e2012-07-13 01:25:27 +0000916
Chris Lattner36c744f2012-01-30 06:21:21 +0000917 // Check to see if all of the elements are ConstantFP or ConstantInt and if
918 // the element type is compatible with ConstantDataVector. If so, use it.
Chris Lattner18c7f802012-02-05 02:29:43 +0000919 if (ConstantDataSequential::isElementTypeCompatible(C->getType())) {
Chris Lattner36c744f2012-01-30 06:21:21 +0000920 // We speculatively build the elements here even if it turns out that there
921 // is a constantexpr or something else weird in the array, since it is so
922 // uncommon for that to happen.
923 if (ConstantInt *CI = dyn_cast<ConstantInt>(C)) {
924 if (CI->getType()->isIntegerTy(8)) {
925 SmallVector<uint8_t, 16> Elts;
926 for (unsigned i = 0, e = V.size(); i != e; ++i)
927 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
928 Elts.push_back(CI->getZExtValue());
929 else
930 break;
931 if (Elts.size() == V.size())
932 return ConstantDataVector::get(C->getContext(), Elts);
933 } else if (CI->getType()->isIntegerTy(16)) {
934 SmallVector<uint16_t, 16> Elts;
935 for (unsigned i = 0, e = V.size(); i != e; ++i)
936 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
937 Elts.push_back(CI->getZExtValue());
938 else
939 break;
940 if (Elts.size() == V.size())
941 return ConstantDataVector::get(C->getContext(), Elts);
942 } else if (CI->getType()->isIntegerTy(32)) {
943 SmallVector<uint32_t, 16> Elts;
944 for (unsigned i = 0, e = V.size(); i != e; ++i)
945 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
946 Elts.push_back(CI->getZExtValue());
947 else
948 break;
949 if (Elts.size() == V.size())
950 return ConstantDataVector::get(C->getContext(), Elts);
951 } else if (CI->getType()->isIntegerTy(64)) {
952 SmallVector<uint64_t, 16> Elts;
953 for (unsigned i = 0, e = V.size(); i != e; ++i)
954 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
955 Elts.push_back(CI->getZExtValue());
956 else
957 break;
958 if (Elts.size() == V.size())
959 return ConstantDataVector::get(C->getContext(), Elts);
960 }
961 }
Galina Kistanovaa46517e2012-07-13 01:25:27 +0000962
Chris Lattner36c744f2012-01-30 06:21:21 +0000963 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
964 if (CFP->getType()->isFloatTy()) {
965 SmallVector<float, 16> Elts;
966 for (unsigned i = 0, e = V.size(); i != e; ++i)
967 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V[i]))
968 Elts.push_back(CFP->getValueAPF().convertToFloat());
969 else
970 break;
971 if (Elts.size() == V.size())
972 return ConstantDataVector::get(C->getContext(), Elts);
973 } else if (CFP->getType()->isDoubleTy()) {
974 SmallVector<double, 16> Elts;
975 for (unsigned i = 0, e = V.size(); i != e; ++i)
976 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V[i]))
977 Elts.push_back(CFP->getValueAPF().convertToDouble());
978 else
979 break;
980 if (Elts.size() == V.size())
981 return ConstantDataVector::get(C->getContext(), Elts);
982 }
983 }
984 }
Galina Kistanovaa46517e2012-07-13 01:25:27 +0000985
Chris Lattner36c744f2012-01-30 06:21:21 +0000986 // Otherwise, the element type isn't compatible with ConstantDataVector, or
987 // the operand list constants a ConstantExpr or something else strange.
Owen Andersonaf7ec972009-07-28 21:19:26 +0000988 return pImpl->VectorConstants.getOrCreate(T, V);
989}
990
Chris Lattner3c2c9542012-01-25 05:19:54 +0000991Constant *ConstantVector::getSplat(unsigned NumElts, Constant *V) {
Chris Lattner36c744f2012-01-30 06:21:21 +0000992 // If this splat is compatible with ConstantDataVector, use it instead of
993 // ConstantVector.
994 if ((isa<ConstantFP>(V) || isa<ConstantInt>(V)) &&
995 ConstantDataSequential::isElementTypeCompatible(V->getType()))
996 return ConstantDataVector::getSplat(NumElts, V);
Galina Kistanovaa46517e2012-07-13 01:25:27 +0000997
Chris Lattner3c2c9542012-01-25 05:19:54 +0000998 SmallVector<Constant*, 32> Elts(NumElts, V);
999 return get(Elts);
1000}
1001
1002
Reid Spencer3da59db2006-11-27 01:05:10 +00001003// Utility function for determining if a ConstantExpr is a CastOp or not. This
1004// can't be inline because we don't want to #include Instruction.h into
1005// Constant.h
1006bool ConstantExpr::isCast() const {
1007 return Instruction::isCast(getOpcode());
1008}
1009
Reid Spencer077d0eb2006-12-04 05:19:50 +00001010bool ConstantExpr::isCompare() const {
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00001011 return getOpcode() == Instruction::ICmp || getOpcode() == Instruction::FCmp;
Reid Spencer077d0eb2006-12-04 05:19:50 +00001012}
1013
Dan Gohmane6992f72009-09-10 23:37:55 +00001014bool ConstantExpr::isGEPWithNoNotionalOverIndexing() const {
1015 if (getOpcode() != Instruction::GetElementPtr) return false;
1016
1017 gep_type_iterator GEPI = gep_type_begin(this), E = gep_type_end(this);
Oscar Fuentesee56c422010-08-02 06:00:15 +00001018 User::const_op_iterator OI = llvm::next(this->op_begin());
Dan Gohmane6992f72009-09-10 23:37:55 +00001019
1020 // Skip the first index, as it has no static limit.
1021 ++GEPI;
1022 ++OI;
1023
1024 // The remaining indices must be compile-time known integers within the
1025 // bounds of the corresponding notional static array types.
1026 for (; GEPI != E; ++GEPI, ++OI) {
1027 ConstantInt *CI = dyn_cast<ConstantInt>(*OI);
1028 if (!CI) return false;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001029 if (ArrayType *ATy = dyn_cast<ArrayType>(*GEPI))
Dan Gohmane6992f72009-09-10 23:37:55 +00001030 if (CI->getValue().getActiveBits() > 64 ||
1031 CI->getZExtValue() >= ATy->getNumElements())
1032 return false;
1033 }
1034
1035 // All the indices checked out.
1036 return true;
1037}
1038
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001039bool ConstantExpr::hasIndices() const {
1040 return getOpcode() == Instruction::ExtractValue ||
1041 getOpcode() == Instruction::InsertValue;
1042}
1043
Jay Foadd30aa5a2011-04-13 15:22:40 +00001044ArrayRef<unsigned> ConstantExpr::getIndices() const {
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001045 if (const ExtractValueConstantExpr *EVCE =
1046 dyn_cast<ExtractValueConstantExpr>(this))
1047 return EVCE->Indices;
Dan Gohman1a203572008-06-23 16:39:44 +00001048
1049 return cast<InsertValueConstantExpr>(this)->Indices;
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001050}
1051
Reid Spencer728b6db2006-12-03 05:48:19 +00001052unsigned ConstantExpr::getPredicate() const {
Chris Lattner3e194732011-07-17 06:01:30 +00001053 assert(isCompare());
Chris Lattnerb7daa842007-10-18 16:26:24 +00001054 return ((const CompareConstantExpr*)this)->predicate;
Reid Spencer728b6db2006-12-03 05:48:19 +00001055}
Chris Lattnerf4ba6c72001-10-03 06:12:09 +00001056
Chris Lattner1fe8f6b2006-07-14 19:37:40 +00001057/// getWithOperandReplaced - Return a constant expression identical to this
1058/// one, but with the specified operand set to the specified value.
Reid Spencer3da59db2006-11-27 01:05:10 +00001059Constant *
1060ConstantExpr::getWithOperandReplaced(unsigned OpNo, Constant *Op) const {
Chris Lattner1fe8f6b2006-07-14 19:37:40 +00001061 assert(Op->getType() == getOperand(OpNo)->getType() &&
1062 "Replacing operand with value of different type!");
Chris Lattnerb88a7fb2006-07-14 22:20:01 +00001063 if (getOperand(OpNo) == Op)
1064 return const_cast<ConstantExpr*>(this);
Chris Lattner1a8def62012-01-26 20:37:11 +00001065
1066 SmallVector<Constant*, 8> NewOps;
1067 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
1068 NewOps.push_back(i == OpNo ? Op : getOperand(i));
Galina Kistanovaa46517e2012-07-13 01:25:27 +00001069
Chris Lattner1a8def62012-01-26 20:37:11 +00001070 return getWithOperands(NewOps);
Chris Lattnerb88a7fb2006-07-14 22:20:01 +00001071}
1072
1073/// getWithOperands - This returns the current constant expression with the
Chris Lattner1afcace2011-07-09 17:41:24 +00001074/// operands replaced with the specified values. The specified array must
1075/// have the same number of operands as our current one.
Chris Lattnerb88a7fb2006-07-14 22:20:01 +00001076Constant *ConstantExpr::
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001077getWithOperands(ArrayRef<Constant*> Ops, Type *Ty) const {
Jay Foadb81e4572011-04-13 13:46:01 +00001078 assert(Ops.size() == getNumOperands() && "Operand count mismatch!");
Chris Lattner1afcace2011-07-09 17:41:24 +00001079 bool AnyChange = Ty != getType();
1080 for (unsigned i = 0; i != Ops.size(); ++i)
Chris Lattnerb88a7fb2006-07-14 22:20:01 +00001081 AnyChange |= Ops[i] != getOperand(i);
Galina Kistanovaa46517e2012-07-13 01:25:27 +00001082
Chris Lattnerb88a7fb2006-07-14 22:20:01 +00001083 if (!AnyChange) // No operands changed, return self.
1084 return const_cast<ConstantExpr*>(this);
1085
1086 switch (getOpcode()) {
Reid Spencer3da59db2006-11-27 01:05:10 +00001087 case Instruction::Trunc:
1088 case Instruction::ZExt:
1089 case Instruction::SExt:
1090 case Instruction::FPTrunc:
1091 case Instruction::FPExt:
1092 case Instruction::UIToFP:
1093 case Instruction::SIToFP:
1094 case Instruction::FPToUI:
1095 case Instruction::FPToSI:
1096 case Instruction::PtrToInt:
1097 case Instruction::IntToPtr:
1098 case Instruction::BitCast:
Chris Lattner1afcace2011-07-09 17:41:24 +00001099 return ConstantExpr::getCast(getOpcode(), Ops[0], Ty);
Chris Lattnerb88a7fb2006-07-14 22:20:01 +00001100 case Instruction::Select:
1101 return ConstantExpr::getSelect(Ops[0], Ops[1], Ops[2]);
1102 case Instruction::InsertElement:
1103 return ConstantExpr::getInsertElement(Ops[0], Ops[1], Ops[2]);
1104 case Instruction::ExtractElement:
1105 return ConstantExpr::getExtractElement(Ops[0], Ops[1]);
Chris Lattner1a8def62012-01-26 20:37:11 +00001106 case Instruction::InsertValue:
1107 return ConstantExpr::getInsertValue(Ops[0], Ops[1], getIndices());
1108 case Instruction::ExtractValue:
1109 return ConstantExpr::getExtractValue(Ops[0], getIndices());
Chris Lattnerb88a7fb2006-07-14 22:20:01 +00001110 case Instruction::ShuffleVector:
1111 return ConstantExpr::getShuffleVector(Ops[0], Ops[1], Ops[2]);
Chris Lattnerf9021ff2007-02-19 20:01:23 +00001112 case Instruction::GetElementPtr:
Chris Lattner1a8def62012-01-26 20:37:11 +00001113 return ConstantExpr::getGetElementPtr(Ops[0], Ops.slice(1),
1114 cast<GEPOperator>(this)->isInBounds());
Reid Spencere4d87aa2006-12-23 06:05:41 +00001115 case Instruction::ICmp:
1116 case Instruction::FCmp:
1117 return ConstantExpr::getCompare(getPredicate(), Ops[0], Ops[1]);
Chris Lattnerb88a7fb2006-07-14 22:20:01 +00001118 default:
1119 assert(getNumOperands() == 2 && "Must be binary operator?");
Chris Lattnercafe9bb2009-12-29 02:14:09 +00001120 return ConstantExpr::get(getOpcode(), Ops[0], Ops[1], SubclassOptionalData);
Chris Lattner1fe8f6b2006-07-14 19:37:40 +00001121 }
1122}
1123
Chris Lattner00950542001-06-06 20:29:01 +00001124
1125//===----------------------------------------------------------------------===//
Chris Lattner00950542001-06-06 20:29:01 +00001126// isValueValidForType implementations
1127
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001128bool ConstantInt::isValueValidForType(Type *Ty, uint64_t Val) {
Chris Lattner230cdab2012-01-26 00:42:34 +00001129 unsigned NumBits = Ty->getIntegerBitWidth(); // assert okay
1130 if (Ty->isIntegerTy(1))
Reid Spencera54b7cb2007-01-12 07:05:14 +00001131 return Val == 0 || Val == 1;
Reid Spencer554cec62007-02-05 23:47:56 +00001132 if (NumBits >= 64)
Reid Spencera54b7cb2007-01-12 07:05:14 +00001133 return true; // always true, has to fit in largest type
1134 uint64_t Max = (1ll << NumBits) - 1;
1135 return Val <= Max;
Reid Spencer9b11d512006-12-19 01:28:19 +00001136}
1137
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001138bool ConstantInt::isValueValidForType(Type *Ty, int64_t Val) {
Chris Lattner230cdab2012-01-26 00:42:34 +00001139 unsigned NumBits = Ty->getIntegerBitWidth();
1140 if (Ty->isIntegerTy(1))
Reid Spencerc1030572007-01-19 21:13:56 +00001141 return Val == 0 || Val == 1 || Val == -1;
Reid Spencer554cec62007-02-05 23:47:56 +00001142 if (NumBits >= 64)
Reid Spencera54b7cb2007-01-12 07:05:14 +00001143 return true; // always true, has to fit in largest type
1144 int64_t Min = -(1ll << (NumBits-1));
1145 int64_t Max = (1ll << (NumBits-1)) - 1;
1146 return (Val >= Min && Val <= Max);
Chris Lattner00950542001-06-06 20:29:01 +00001147}
1148
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001149bool ConstantFP::isValueValidForType(Type *Ty, const APFloat& Val) {
Dale Johannesenf04afdb2007-08-30 00:23:21 +00001150 // convert modifies in place, so make a copy.
1151 APFloat Val2 = APFloat(Val);
Dale Johannesen23a98552008-10-09 23:00:39 +00001152 bool losesInfo;
Chris Lattnerf70c22b2004-06-17 18:19:28 +00001153 switch (Ty->getTypeID()) {
Chris Lattner00950542001-06-06 20:29:01 +00001154 default:
1155 return false; // These can't be represented as floating point!
1156
Dale Johannesenf04afdb2007-08-30 00:23:21 +00001157 // FIXME rounding mode needs to be more flexible
Dan Gohmance163392011-12-17 00:04:22 +00001158 case Type::HalfTyID: {
1159 if (&Val2.getSemantics() == &APFloat::IEEEhalf)
1160 return true;
1161 Val2.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven, &losesInfo);
1162 return !losesInfo;
1163 }
Dale Johannesen23a98552008-10-09 23:00:39 +00001164 case Type::FloatTyID: {
1165 if (&Val2.getSemantics() == &APFloat::IEEEsingle)
1166 return true;
1167 Val2.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven, &losesInfo);
1168 return !losesInfo;
1169 }
1170 case Type::DoubleTyID: {
Dan Gohmance163392011-12-17 00:04:22 +00001171 if (&Val2.getSemantics() == &APFloat::IEEEhalf ||
1172 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen23a98552008-10-09 23:00:39 +00001173 &Val2.getSemantics() == &APFloat::IEEEdouble)
1174 return true;
1175 Val2.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, &losesInfo);
1176 return !losesInfo;
1177 }
Dale Johannesenebbc95d2007-08-09 22:51:36 +00001178 case Type::X86_FP80TyID:
Dan Gohmance163392011-12-17 00:04:22 +00001179 return &Val2.getSemantics() == &APFloat::IEEEhalf ||
1180 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen9d5f4562007-09-12 03:30:33 +00001181 &Val2.getSemantics() == &APFloat::IEEEdouble ||
1182 &Val2.getSemantics() == &APFloat::x87DoubleExtended;
Dale Johannesenebbc95d2007-08-09 22:51:36 +00001183 case Type::FP128TyID:
Dan Gohmance163392011-12-17 00:04:22 +00001184 return &Val2.getSemantics() == &APFloat::IEEEhalf ||
1185 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen9d5f4562007-09-12 03:30:33 +00001186 &Val2.getSemantics() == &APFloat::IEEEdouble ||
1187 &Val2.getSemantics() == &APFloat::IEEEquad;
Dale Johannesena471c2e2007-10-11 18:07:22 +00001188 case Type::PPC_FP128TyID:
Dan Gohmance163392011-12-17 00:04:22 +00001189 return &Val2.getSemantics() == &APFloat::IEEEhalf ||
1190 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesena471c2e2007-10-11 18:07:22 +00001191 &Val2.getSemantics() == &APFloat::IEEEdouble ||
1192 &Val2.getSemantics() == &APFloat::PPCDoubleDouble;
Chris Lattner00950542001-06-06 20:29:01 +00001193 }
Chris Lattnerd74ea2b2006-05-24 17:04:05 +00001194}
Chris Lattner37bf6302001-07-20 19:16:02 +00001195
Chris Lattnerff2b7f32012-01-24 05:42:11 +00001196
Chris Lattner531daef2001-09-07 16:46:31 +00001197//===----------------------------------------------------------------------===//
Chris Lattner531daef2001-09-07 16:46:31 +00001198// Factory Function Implementation
1199
Chris Lattner9df0fb42012-01-23 15:20:12 +00001200ConstantAggregateZero *ConstantAggregateZero::get(Type *Ty) {
Chris Lattner61c70e92010-08-28 04:09:24 +00001201 assert((Ty->isStructTy() || Ty->isArrayTy() || Ty->isVectorTy()) &&
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001202 "Cannot create an aggregate zero of non-aggregate type!");
1203
Chris Lattner9df0fb42012-01-23 15:20:12 +00001204 ConstantAggregateZero *&Entry = Ty->getContext().pImpl->CAZConstants[Ty];
1205 if (Entry == 0)
1206 Entry = new ConstantAggregateZero(Ty);
Galina Kistanovaa46517e2012-07-13 01:25:27 +00001207
Chris Lattner9df0fb42012-01-23 15:20:12 +00001208 return Entry;
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001209}
1210
Chris Lattnerff2b7f32012-01-24 05:42:11 +00001211/// destroyConstant - Remove the constant from the constant table.
Dan Gohman0f8b53f2009-03-03 02:55:14 +00001212///
Owen Anderson04fb7c32009-06-20 00:24:58 +00001213void ConstantAggregateZero::destroyConstant() {
Chris Lattner9df0fb42012-01-23 15:20:12 +00001214 getContext().pImpl->CAZConstants.erase(getType());
Chris Lattner40bbeb52004-02-15 05:53:04 +00001215 destroyConstantImpl();
1216}
1217
Dan Gohman0f8b53f2009-03-03 02:55:14 +00001218/// destroyConstant - Remove the constant from the constant table...
1219///
Owen Anderson04fb7c32009-06-20 00:24:58 +00001220void ConstantArray::destroyConstant() {
Chris Lattner1afcace2011-07-09 17:41:24 +00001221 getType()->getContext().pImpl->ArrayConstants.remove(this);
Chris Lattner02ec5ed2003-05-23 20:03:32 +00001222 destroyConstantImpl();
1223}
1224
Chris Lattner93aeea32002-08-26 17:53:56 +00001225
Chris Lattnere9bb2df2001-12-03 22:26:30 +00001226//---- ConstantStruct::get() implementation...
Chris Lattner531daef2001-09-07 16:46:31 +00001227//
Chris Lattnered468e372003-10-05 00:17:43 +00001228
Chris Lattnerf5ec48d2001-10-13 06:57:33 +00001229// destroyConstant - Remove the constant from the constant table...
Chris Lattner6a57baa2001-10-03 15:39:36 +00001230//
Owen Anderson04fb7c32009-06-20 00:24:58 +00001231void ConstantStruct::destroyConstant() {
Chris Lattner1afcace2011-07-09 17:41:24 +00001232 getType()->getContext().pImpl->StructConstants.remove(this);
Chris Lattnerf5ec48d2001-10-13 06:57:33 +00001233 destroyConstantImpl();
1234}
Chris Lattner6a57baa2001-10-03 15:39:36 +00001235
Brian Gaeke715c90b2004-08-20 06:00:58 +00001236// destroyConstant - Remove the constant from the constant table...
1237//
Owen Anderson04fb7c32009-06-20 00:24:58 +00001238void ConstantVector::destroyConstant() {
Chris Lattner1afcace2011-07-09 17:41:24 +00001239 getType()->getContext().pImpl->VectorConstants.remove(this);
Brian Gaeke715c90b2004-08-20 06:00:58 +00001240 destroyConstantImpl();
1241}
1242
Duncan Sands2333e292012-11-13 12:59:33 +00001243/// getSplatValue - If this is a splat vector constant, meaning that all of
1244/// the elements have the same value, return that value. Otherwise return 0.
1245Constant *Constant::getSplatValue() const {
1246 assert(this->getType()->isVectorTy() && "Only valid for vectors!");
1247 if (isa<ConstantAggregateZero>(this))
1248 return getNullValue(this->getType()->getVectorElementType());
1249 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this))
1250 return CV->getSplatValue();
1251 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
1252 return CV->getSplatValue();
1253 return 0;
1254}
1255
Dan Gohman3b7cf0a2007-10-17 17:51:30 +00001256/// getSplatValue - If this is a splat constant, where all of the
1257/// elements have the same value, return that value. Otherwise return null.
Duncan Sands7681c6d2011-02-01 08:39:12 +00001258Constant *ConstantVector::getSplatValue() const {
Dan Gohman3b7cf0a2007-10-17 17:51:30 +00001259 // Check out first element.
1260 Constant *Elt = getOperand(0);
1261 // Then make sure all remaining elements point to the same value.
1262 for (unsigned I = 1, E = getNumOperands(); I < E; ++I)
Chris Lattner3e194732011-07-17 06:01:30 +00001263 if (getOperand(I) != Elt)
1264 return 0;
Dan Gohman3b7cf0a2007-10-17 17:51:30 +00001265 return Elt;
1266}
1267
Duncan Sands2333e292012-11-13 12:59:33 +00001268/// If C is a constant integer then return its value, otherwise C must be a
1269/// vector of constant integers, all equal, and the common value is returned.
1270const APInt &Constant::getUniqueInteger() const {
1271 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
1272 return CI->getValue();
1273 assert(this->getSplatValue() && "Doesn't contain a unique integer!");
1274 const Constant *C = this->getAggregateElement(0U);
1275 assert(C && isa<ConstantInt>(C) && "Not a vector of numbers!");
1276 return cast<ConstantInt>(C)->getValue();
1277}
1278
1279
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001280//---- ConstantPointerNull::get() implementation.
Chris Lattnerf5ec48d2001-10-13 06:57:33 +00001281//
Chris Lattner02ec5ed2003-05-23 20:03:32 +00001282
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001283ConstantPointerNull *ConstantPointerNull::get(PointerType *Ty) {
Chris Lattner9df0fb42012-01-23 15:20:12 +00001284 ConstantPointerNull *&Entry = Ty->getContext().pImpl->CPNConstants[Ty];
1285 if (Entry == 0)
1286 Entry = new ConstantPointerNull(Ty);
Galina Kistanovaa46517e2012-07-13 01:25:27 +00001287
Chris Lattner9df0fb42012-01-23 15:20:12 +00001288 return Entry;
Chris Lattner6a57baa2001-10-03 15:39:36 +00001289}
1290
Chris Lattner41661fd2002-08-18 00:40:04 +00001291// destroyConstant - Remove the constant from the constant table...
1292//
Owen Anderson04fb7c32009-06-20 00:24:58 +00001293void ConstantPointerNull::destroyConstant() {
Chris Lattner9df0fb42012-01-23 15:20:12 +00001294 getContext().pImpl->CPNConstants.erase(getType());
1295 // Free the constant and any dangling references to it.
Chris Lattner41661fd2002-08-18 00:40:04 +00001296 destroyConstantImpl();
1297}
1298
1299
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001300//---- UndefValue::get() implementation.
Chris Lattnerb9f18592004-10-16 18:07:16 +00001301//
1302
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001303UndefValue *UndefValue::get(Type *Ty) {
Chris Lattner9df0fb42012-01-23 15:20:12 +00001304 UndefValue *&Entry = Ty->getContext().pImpl->UVConstants[Ty];
1305 if (Entry == 0)
1306 Entry = new UndefValue(Ty);
Galina Kistanovaa46517e2012-07-13 01:25:27 +00001307
Chris Lattner9df0fb42012-01-23 15:20:12 +00001308 return Entry;
Chris Lattnerb9f18592004-10-16 18:07:16 +00001309}
1310
1311// destroyConstant - Remove the constant from the constant table.
1312//
Owen Anderson04fb7c32009-06-20 00:24:58 +00001313void UndefValue::destroyConstant() {
Chris Lattner9df0fb42012-01-23 15:20:12 +00001314 // Free the constant and any dangling references to it.
1315 getContext().pImpl->UVConstants.erase(getType());
Chris Lattnerb9f18592004-10-16 18:07:16 +00001316 destroyConstantImpl();
1317}
1318
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001319//---- BlockAddress::get() implementation.
1320//
1321
1322BlockAddress *BlockAddress::get(BasicBlock *BB) {
1323 assert(BB->getParent() != 0 && "Block must have a parent");
1324 return get(BB->getParent(), BB);
1325}
1326
1327BlockAddress *BlockAddress::get(Function *F, BasicBlock *BB) {
1328 BlockAddress *&BA =
1329 F->getContext().pImpl->BlockAddresses[std::make_pair(F, BB)];
1330 if (BA == 0)
1331 BA = new BlockAddress(F, BB);
Galina Kistanovaa46517e2012-07-13 01:25:27 +00001332
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001333 assert(BA->getFunction() == F && "Basic block moved between functions");
1334 return BA;
1335}
1336
1337BlockAddress::BlockAddress(Function *F, BasicBlock *BB)
1338: Constant(Type::getInt8PtrTy(F->getContext()), Value::BlockAddressVal,
1339 &Op<0>(), 2) {
Chris Lattnerd0ec2352009-11-01 03:03:03 +00001340 setOperand(0, F);
1341 setOperand(1, BB);
Chris Lattnercdfc9402009-11-01 01:27:45 +00001342 BB->AdjustBlockAddressRefCount(1);
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001343}
1344
1345
1346// destroyConstant - Remove the constant from the constant table.
1347//
1348void BlockAddress::destroyConstant() {
Chris Lattner1afcace2011-07-09 17:41:24 +00001349 getFunction()->getType()->getContext().pImpl
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001350 ->BlockAddresses.erase(std::make_pair(getFunction(), getBasicBlock()));
Chris Lattnercdfc9402009-11-01 01:27:45 +00001351 getBasicBlock()->AdjustBlockAddressRefCount(-1);
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001352 destroyConstantImpl();
1353}
1354
1355void BlockAddress::replaceUsesOfWithOnConstant(Value *From, Value *To, Use *U) {
1356 // This could be replacing either the Basic Block or the Function. In either
1357 // case, we have to remove the map entry.
1358 Function *NewF = getFunction();
1359 BasicBlock *NewBB = getBasicBlock();
Galina Kistanovaa46517e2012-07-13 01:25:27 +00001360
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001361 if (U == &Op<0>())
1362 NewF = cast<Function>(To);
1363 else
1364 NewBB = cast<BasicBlock>(To);
Galina Kistanovaa46517e2012-07-13 01:25:27 +00001365
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001366 // See if the 'new' entry already exists, if not, just update this in place
1367 // and return early.
1368 BlockAddress *&NewBA =
1369 getContext().pImpl->BlockAddresses[std::make_pair(NewF, NewBB)];
1370 if (NewBA == 0) {
Chris Lattnerd0ec2352009-11-01 03:03:03 +00001371 getBasicBlock()->AdjustBlockAddressRefCount(-1);
Galina Kistanovaa46517e2012-07-13 01:25:27 +00001372
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001373 // Remove the old entry, this can't cause the map to rehash (just a
1374 // tombstone will get added).
1375 getContext().pImpl->BlockAddresses.erase(std::make_pair(getFunction(),
1376 getBasicBlock()));
1377 NewBA = this;
Chris Lattnerd0ec2352009-11-01 03:03:03 +00001378 setOperand(0, NewF);
1379 setOperand(1, NewBB);
1380 getBasicBlock()->AdjustBlockAddressRefCount(1);
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001381 return;
1382 }
1383
1384 // Otherwise, I do need to replace this with an existing value.
1385 assert(NewBA != this && "I didn't contain From!");
Galina Kistanovaa46517e2012-07-13 01:25:27 +00001386
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001387 // Everyone using this now uses the replacement.
Chris Lattner678f9e02011-07-15 06:18:52 +00001388 replaceAllUsesWith(NewBA);
Galina Kistanovaa46517e2012-07-13 01:25:27 +00001389
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001390 destroyConstant();
1391}
1392
1393//---- ConstantExpr::get() implementations.
Vikram S. Adve345e0cf2002-07-14 23:13:17 +00001394//
Reid Spencer79e21d32006-12-31 05:26:44 +00001395
Reid Spencer3da59db2006-11-27 01:05:10 +00001396/// This is a utility function to handle folding of casts and lookup of the
Duncan Sands66a1a052008-03-30 19:38:55 +00001397/// cast in the ExprConstants map. It is used by the various get* methods below.
Reid Spencer3da59db2006-11-27 01:05:10 +00001398static inline Constant *getFoldedCast(
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001399 Instruction::CastOps opc, Constant *C, Type *Ty) {
Chris Lattner9eacf8a2003-10-07 22:19:19 +00001400 assert(Ty->isFirstClassType() && "Cannot cast to an aggregate type!");
Reid Spencer3da59db2006-11-27 01:05:10 +00001401 // Fold a few common cases
Chris Lattnerb29d5962010-02-01 20:48:08 +00001402 if (Constant *FC = ConstantFoldCastInstruction(opc, C, Ty))
Reid Spencer3da59db2006-11-27 01:05:10 +00001403 return FC;
Chris Lattnerd628f6a2003-04-17 19:24:48 +00001404
Owen Andersond03eecd2009-08-04 20:25:11 +00001405 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
1406
Vikram S. Adved0b1bb02002-07-15 18:19:33 +00001407 // Look up the constant in the table first to ensure uniqueness
Chris Lattner9bc02a42003-05-13 21:37:02 +00001408 std::vector<Constant*> argVec(1, C);
Reid Spencer077d0eb2006-12-04 05:19:50 +00001409 ExprMapKeyType Key(opc, argVec);
Galina Kistanovaa46517e2012-07-13 01:25:27 +00001410
Owen Andersond03eecd2009-08-04 20:25:11 +00001411 return pImpl->ExprConstants.getOrCreate(Ty, Key);
Vikram S. Adve345e0cf2002-07-14 23:13:17 +00001412}
Galina Kistanovaa46517e2012-07-13 01:25:27 +00001413
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001414Constant *ConstantExpr::getCast(unsigned oc, Constant *C, Type *Ty) {
Reid Spencer3da59db2006-11-27 01:05:10 +00001415 Instruction::CastOps opc = Instruction::CastOps(oc);
1416 assert(Instruction::isCast(opc) && "opcode out of range");
1417 assert(C && Ty && "Null arguments to getCast");
Chris Lattner0b68a002010-01-26 21:51:43 +00001418 assert(CastInst::castIsValid(opc, C, Ty) && "Invalid constantexpr cast!");
Reid Spencer3da59db2006-11-27 01:05:10 +00001419
1420 switch (opc) {
Chris Lattner0b68a002010-01-26 21:51:43 +00001421 default:
1422 llvm_unreachable("Invalid cast opcode");
Chris Lattner0b68a002010-01-26 21:51:43 +00001423 case Instruction::Trunc: return getTrunc(C, Ty);
1424 case Instruction::ZExt: return getZExt(C, Ty);
1425 case Instruction::SExt: return getSExt(C, Ty);
1426 case Instruction::FPTrunc: return getFPTrunc(C, Ty);
1427 case Instruction::FPExt: return getFPExtend(C, Ty);
1428 case Instruction::UIToFP: return getUIToFP(C, Ty);
1429 case Instruction::SIToFP: return getSIToFP(C, Ty);
1430 case Instruction::FPToUI: return getFPToUI(C, Ty);
1431 case Instruction::FPToSI: return getFPToSI(C, Ty);
1432 case Instruction::PtrToInt: return getPtrToInt(C, Ty);
1433 case Instruction::IntToPtr: return getIntToPtr(C, Ty);
1434 case Instruction::BitCast: return getBitCast(C, Ty);
Chris Lattnerf5ac6c22005-01-01 15:59:57 +00001435 }
Galina Kistanovaa46517e2012-07-13 01:25:27 +00001436}
Reid Spencer7858b332006-12-05 19:14:13 +00001437
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001438Constant *ConstantExpr::getZExtOrBitCast(Constant *C, Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001439 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3b490632010-04-12 22:12:29 +00001440 return getBitCast(C, Ty);
1441 return getZExt(C, Ty);
Reid Spencer848414e2006-12-04 20:17:56 +00001442}
1443
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001444Constant *ConstantExpr::getSExtOrBitCast(Constant *C, Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001445 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3b490632010-04-12 22:12:29 +00001446 return getBitCast(C, Ty);
1447 return getSExt(C, Ty);
Reid Spencer848414e2006-12-04 20:17:56 +00001448}
1449
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001450Constant *ConstantExpr::getTruncOrBitCast(Constant *C, Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001451 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3b490632010-04-12 22:12:29 +00001452 return getBitCast(C, Ty);
1453 return getTrunc(C, Ty);
Reid Spencer848414e2006-12-04 20:17:56 +00001454}
1455
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001456Constant *ConstantExpr::getPointerCast(Constant *S, Type *Ty) {
Duncan Sands1df98592010-02-16 11:11:14 +00001457 assert(S->getType()->isPointerTy() && "Invalid cast");
1458 assert((Ty->isIntegerTy() || Ty->isPointerTy()) && "Invalid cast");
Reid Spencerc0459fb2006-12-05 03:25:26 +00001459
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001460 if (Ty->isIntegerTy())
Dan Gohman3b490632010-04-12 22:12:29 +00001461 return getPtrToInt(S, Ty);
1462 return getBitCast(S, Ty);
Reid Spencerc0459fb2006-12-05 03:25:26 +00001463}
1464
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001465Constant *ConstantExpr::getIntegerCast(Constant *C, Type *Ty,
Reid Spencer84f3eab2006-12-12 00:51:07 +00001466 bool isSigned) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001467 assert(C->getType()->isIntOrIntVectorTy() &&
1468 Ty->isIntOrIntVectorTy() && "Invalid cast");
Dan Gohman6de29f82009-06-15 22:12:54 +00001469 unsigned SrcBits = C->getType()->getScalarSizeInBits();
1470 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer84f3eab2006-12-12 00:51:07 +00001471 Instruction::CastOps opcode =
1472 (SrcBits == DstBits ? Instruction::BitCast :
1473 (SrcBits > DstBits ? Instruction::Trunc :
1474 (isSigned ? Instruction::SExt : Instruction::ZExt)));
1475 return getCast(opcode, C, Ty);
1476}
1477
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001478Constant *ConstantExpr::getFPCast(Constant *C, Type *Ty) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001479 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer84f3eab2006-12-12 00:51:07 +00001480 "Invalid cast");
Dan Gohman6de29f82009-06-15 22:12:54 +00001481 unsigned SrcBits = C->getType()->getScalarSizeInBits();
1482 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencerf25212a2006-12-12 05:38:50 +00001483 if (SrcBits == DstBits)
1484 return C; // Avoid a useless cast
Reid Spencer84f3eab2006-12-12 00:51:07 +00001485 Instruction::CastOps opcode =
Jay Foad9afc5272011-01-27 14:44:55 +00001486 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt);
Reid Spencer84f3eab2006-12-12 00:51:07 +00001487 return getCast(opcode, C, Ty);
1488}
1489
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001490Constant *ConstantExpr::getTrunc(Constant *C, Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001491#ifndef NDEBUG
1492 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1493 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1494#endif
1495 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001496 assert(C->getType()->isIntOrIntVectorTy() && "Trunc operand must be integer");
1497 assert(Ty->isIntOrIntVectorTy() && "Trunc produces only integral");
Dan Gohman6de29f82009-06-15 22:12:54 +00001498 assert(C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
Reid Spencer3da59db2006-11-27 01:05:10 +00001499 "SrcTy must be larger than DestTy for Trunc!");
1500
Owen Anderson04fb7c32009-06-20 00:24:58 +00001501 return getFoldedCast(Instruction::Trunc, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001502}
1503
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001504Constant *ConstantExpr::getSExt(Constant *C, Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001505#ifndef NDEBUG
1506 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1507 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1508#endif
1509 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001510 assert(C->getType()->isIntOrIntVectorTy() && "SExt operand must be integral");
1511 assert(Ty->isIntOrIntVectorTy() && "SExt produces only integer");
Dan Gohman6de29f82009-06-15 22:12:54 +00001512 assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer3da59db2006-11-27 01:05:10 +00001513 "SrcTy must be smaller than DestTy for SExt!");
1514
Owen Anderson04fb7c32009-06-20 00:24:58 +00001515 return getFoldedCast(Instruction::SExt, C, Ty);
Chris Lattnerd144f422004-04-04 23:20:30 +00001516}
1517
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001518Constant *ConstantExpr::getZExt(Constant *C, Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001519#ifndef NDEBUG
1520 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1521 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1522#endif
1523 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001524 assert(C->getType()->isIntOrIntVectorTy() && "ZEXt operand must be integral");
1525 assert(Ty->isIntOrIntVectorTy() && "ZExt produces only integer");
Dan Gohman6de29f82009-06-15 22:12:54 +00001526 assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer3da59db2006-11-27 01:05:10 +00001527 "SrcTy must be smaller than DestTy for ZExt!");
1528
Owen Anderson04fb7c32009-06-20 00:24:58 +00001529 return getFoldedCast(Instruction::ZExt, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001530}
1531
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001532Constant *ConstantExpr::getFPTrunc(Constant *C, Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001533#ifndef NDEBUG
1534 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1535 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1536#endif
1537 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001538 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Dan Gohman6de29f82009-06-15 22:12:54 +00001539 C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
Reid Spencer3da59db2006-11-27 01:05:10 +00001540 "This is an illegal floating point truncation!");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001541 return getFoldedCast(Instruction::FPTrunc, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001542}
1543
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001544Constant *ConstantExpr::getFPExtend(Constant *C, Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001545#ifndef NDEBUG
1546 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1547 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1548#endif
1549 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001550 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Dan Gohman6de29f82009-06-15 22:12:54 +00001551 C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer3da59db2006-11-27 01:05:10 +00001552 "This is an illegal floating point extension!");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001553 return getFoldedCast(Instruction::FPExt, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001554}
1555
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001556Constant *ConstantExpr::getUIToFP(Constant *C, Type *Ty) {
Devang Patelb6dc9352008-11-03 23:20:04 +00001557#ifndef NDEBUG
Nate Begemanb348d182007-11-17 03:58:34 +00001558 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1559 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Patelb6dc9352008-11-03 23:20:04 +00001560#endif
Nate Begemanb348d182007-11-17 03:58:34 +00001561 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001562 assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() &&
Nate Begemanb348d182007-11-17 03:58:34 +00001563 "This is an illegal uint to floating point cast!");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001564 return getFoldedCast(Instruction::UIToFP, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001565}
1566
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001567Constant *ConstantExpr::getSIToFP(Constant *C, Type *Ty) {
Devang Patelb6dc9352008-11-03 23:20:04 +00001568#ifndef NDEBUG
Nate Begemanb348d182007-11-17 03:58:34 +00001569 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1570 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Patelb6dc9352008-11-03 23:20:04 +00001571#endif
Nate Begemanb348d182007-11-17 03:58:34 +00001572 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001573 assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer3da59db2006-11-27 01:05:10 +00001574 "This is an illegal sint to floating point cast!");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001575 return getFoldedCast(Instruction::SIToFP, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001576}
1577
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001578Constant *ConstantExpr::getFPToUI(Constant *C, Type *Ty) {
Devang Patelb6dc9352008-11-03 23:20:04 +00001579#ifndef NDEBUG
Nate Begemanb348d182007-11-17 03:58:34 +00001580 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1581 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Patelb6dc9352008-11-03 23:20:04 +00001582#endif
Nate Begemanb348d182007-11-17 03:58:34 +00001583 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001584 assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() &&
Nate Begemanb348d182007-11-17 03:58:34 +00001585 "This is an illegal floating point to uint cast!");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001586 return getFoldedCast(Instruction::FPToUI, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001587}
1588
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001589Constant *ConstantExpr::getFPToSI(Constant *C, Type *Ty) {
Devang Patelb6dc9352008-11-03 23:20:04 +00001590#ifndef NDEBUG
Nate Begemanb348d182007-11-17 03:58:34 +00001591 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1592 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Patelb6dc9352008-11-03 23:20:04 +00001593#endif
Nate Begemanb348d182007-11-17 03:58:34 +00001594 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001595 assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() &&
Nate Begemanb348d182007-11-17 03:58:34 +00001596 "This is an illegal floating point to sint cast!");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001597 return getFoldedCast(Instruction::FPToSI, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001598}
1599
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001600Constant *ConstantExpr::getPtrToInt(Constant *C, Type *DstTy) {
Nadav Rotem16087692011-12-05 06:29:09 +00001601 assert(C->getType()->getScalarType()->isPointerTy() &&
1602 "PtrToInt source must be pointer or pointer vector");
1603 assert(DstTy->getScalarType()->isIntegerTy() &&
1604 "PtrToInt destination must be integer or integer vector");
Chris Lattneraf7b4fb2012-01-25 01:32:59 +00001605 assert(isa<VectorType>(C->getType()) == isa<VectorType>(DstTy));
Nick Lewycky1486ae62012-01-25 03:20:12 +00001606 if (isa<VectorType>(C->getType()))
Chris Lattner230cdab2012-01-26 00:42:34 +00001607 assert(C->getType()->getVectorNumElements()==DstTy->getVectorNumElements()&&
Chris Lattneraf7b4fb2012-01-25 01:32:59 +00001608 "Invalid cast between a different number of vector elements");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001609 return getFoldedCast(Instruction::PtrToInt, C, DstTy);
Reid Spencer3da59db2006-11-27 01:05:10 +00001610}
1611
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001612Constant *ConstantExpr::getIntToPtr(Constant *C, Type *DstTy) {
Nadav Rotem16087692011-12-05 06:29:09 +00001613 assert(C->getType()->getScalarType()->isIntegerTy() &&
1614 "IntToPtr source must be integer or integer vector");
1615 assert(DstTy->getScalarType()->isPointerTy() &&
1616 "IntToPtr destination must be a pointer or pointer vector");
Chris Lattneraf7b4fb2012-01-25 01:32:59 +00001617 assert(isa<VectorType>(C->getType()) == isa<VectorType>(DstTy));
Nick Lewycky1486ae62012-01-25 03:20:12 +00001618 if (isa<VectorType>(C->getType()))
Chris Lattner230cdab2012-01-26 00:42:34 +00001619 assert(C->getType()->getVectorNumElements()==DstTy->getVectorNumElements()&&
Chris Lattneraf7b4fb2012-01-25 01:32:59 +00001620 "Invalid cast between a different number of vector elements");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001621 return getFoldedCast(Instruction::IntToPtr, C, DstTy);
Reid Spencer3da59db2006-11-27 01:05:10 +00001622}
1623
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001624Constant *ConstantExpr::getBitCast(Constant *C, Type *DstTy) {
Chris Lattner0b68a002010-01-26 21:51:43 +00001625 assert(CastInst::castIsValid(Instruction::BitCast, C, DstTy) &&
1626 "Invalid constantexpr bitcast!");
Galina Kistanovaa46517e2012-07-13 01:25:27 +00001627
Chris Lattner8c7f24a2009-03-21 06:55:54 +00001628 // It is common to ask for a bitcast of a value to its own type, handle this
1629 // speedily.
1630 if (C->getType() == DstTy) return C;
Galina Kistanovaa46517e2012-07-13 01:25:27 +00001631
Owen Anderson04fb7c32009-06-20 00:24:58 +00001632 return getFoldedCast(Instruction::BitCast, C, DstTy);
Chris Lattnerd144f422004-04-04 23:20:30 +00001633}
1634
Chris Lattnereaf79802011-07-09 18:23:52 +00001635Constant *ConstantExpr::get(unsigned Opcode, Constant *C1, Constant *C2,
1636 unsigned Flags) {
1637 // Check the operands for consistency first.
Reid Spencer0a783f72006-11-02 01:53:59 +00001638 assert(Opcode >= Instruction::BinaryOpsBegin &&
1639 Opcode < Instruction::BinaryOpsEnd &&
Chris Lattnerf31f5832003-05-21 17:49:25 +00001640 "Invalid opcode in binary constant expression");
1641 assert(C1->getType() == C2->getType() &&
1642 "Operand types in binary constant expression should match");
Galina Kistanovaa46517e2012-07-13 01:25:27 +00001643
Chris Lattner91b362b2004-08-17 17:28:46 +00001644#ifndef NDEBUG
1645 switch (Opcode) {
Dan Gohmanae3a0be2009-06-04 22:49:04 +00001646 case Instruction::Add:
Reid Spencer0a783f72006-11-02 01:53:59 +00001647 case Instruction::Sub:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00001648 case Instruction::Mul:
Chris Lattner91b362b2004-08-17 17:28:46 +00001649 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001650 assert(C1->getType()->isIntOrIntVectorTy() &&
Dan Gohmanae3a0be2009-06-04 22:49:04 +00001651 "Tried to create an integer operation on a non-integer type!");
1652 break;
1653 case Instruction::FAdd:
1654 case Instruction::FSub:
1655 case Instruction::FMul:
1656 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001657 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohmanae3a0be2009-06-04 22:49:04 +00001658 "Tried to create a floating-point operation on a "
1659 "non-floating-point type!");
Chris Lattner91b362b2004-08-17 17:28:46 +00001660 break;
Reid Spencer1628cec2006-10-26 06:15:43 +00001661 case Instruction::UDiv:
1662 case Instruction::SDiv:
1663 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001664 assert(C1->getType()->isIntOrIntVectorTy() &&
Reid Spencer1628cec2006-10-26 06:15:43 +00001665 "Tried to create an arithmetic operation on a non-arithmetic type!");
1666 break;
1667 case Instruction::FDiv:
1668 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001669 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohmanf57478f2009-06-15 22:25:12 +00001670 "Tried to create an arithmetic operation on a non-arithmetic type!");
Reid Spencer1628cec2006-10-26 06:15:43 +00001671 break;
Reid Spencer0a783f72006-11-02 01:53:59 +00001672 case Instruction::URem:
1673 case Instruction::SRem:
1674 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001675 assert(C1->getType()->isIntOrIntVectorTy() &&
Reid Spencer0a783f72006-11-02 01:53:59 +00001676 "Tried to create an arithmetic operation on a non-arithmetic type!");
1677 break;
1678 case Instruction::FRem:
1679 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001680 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohmanf57478f2009-06-15 22:25:12 +00001681 "Tried to create an arithmetic operation on a non-arithmetic type!");
Reid Spencer0a783f72006-11-02 01:53:59 +00001682 break;
Chris Lattner91b362b2004-08-17 17:28:46 +00001683 case Instruction::And:
1684 case Instruction::Or:
1685 case Instruction::Xor:
1686 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001687 assert(C1->getType()->isIntOrIntVectorTy() &&
Misha Brukman1bae2912005-01-27 06:46:38 +00001688 "Tried to create a logical operation on a non-integral type!");
Chris Lattner91b362b2004-08-17 17:28:46 +00001689 break;
Chris Lattner91b362b2004-08-17 17:28:46 +00001690 case Instruction::Shl:
Reid Spencer3822ff52006-11-08 06:47:33 +00001691 case Instruction::LShr:
1692 case Instruction::AShr:
Reid Spencer832254e2007-02-02 02:16:23 +00001693 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001694 assert(C1->getType()->isIntOrIntVectorTy() &&
Chris Lattner91b362b2004-08-17 17:28:46 +00001695 "Tried to create a shift operation on a non-integer type!");
1696 break;
1697 default:
1698 break;
1699 }
1700#endif
1701
Chris Lattnereaf79802011-07-09 18:23:52 +00001702 if (Constant *FC = ConstantFoldBinaryInstruction(Opcode, C1, C2))
1703 return FC; // Fold a few common cases.
Galina Kistanovaa46517e2012-07-13 01:25:27 +00001704
Chris Lattnereaf79802011-07-09 18:23:52 +00001705 std::vector<Constant*> argVec(1, C1);
1706 argVec.push_back(C2);
1707 ExprMapKeyType Key(Opcode, argVec, 0, Flags);
Galina Kistanovaa46517e2012-07-13 01:25:27 +00001708
Chris Lattnereaf79802011-07-09 18:23:52 +00001709 LLVMContextImpl *pImpl = C1->getContext().pImpl;
1710 return pImpl->ExprConstants.getOrCreate(C1->getType(), Key);
Reid Spencer67263fe2006-12-04 21:35:24 +00001711}
1712
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001713Constant *ConstantExpr::getSizeOf(Type* Ty) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00001714 // sizeof is implemented as: (i64) gep (Ty*)null, 1
1715 // Note that a non-inbounds gep is used, as null isn't within any object.
Owen Anderson1d0be152009-08-13 21:58:54 +00001716 Constant *GEPIdx = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
Owen Andersonbaf3c402009-07-29 18:55:55 +00001717 Constant *GEP = getGetElementPtr(
Jay Foaddab3d292011-07-21 14:31:17 +00001718 Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx);
Dan Gohman3b490632010-04-12 22:12:29 +00001719 return getPtrToInt(GEP,
1720 Type::getInt64Ty(Ty->getContext()));
Owen Andersonbaf3c402009-07-29 18:55:55 +00001721}
1722
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001723Constant *ConstantExpr::getAlignOf(Type* Ty) {
Dan Gohman0f5efe52010-01-28 02:15:55 +00001724 // alignof is implemented as: (i64) gep ({i1,Ty}*)null, 0, 1
Dan Gohmane2574d32009-08-11 17:57:01 +00001725 // Note that a non-inbounds gep is used, as null isn't within any object.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001726 Type *AligningTy =
Chris Lattnerb2318662011-06-18 22:48:56 +00001727 StructType::get(Type::getInt1Ty(Ty->getContext()), Ty, NULL);
Micah Villmowb8bce922012-10-24 17:25:11 +00001728 Constant *NullPtr = Constant::getNullValue(AligningTy->getPointerTo());
Dan Gohman06ed3e72010-01-28 02:43:22 +00001729 Constant *Zero = ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0);
Owen Anderson1d0be152009-08-13 21:58:54 +00001730 Constant *One = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
Owen Andersonbaf3c402009-07-29 18:55:55 +00001731 Constant *Indices[2] = { Zero, One };
Jay Foaddab3d292011-07-21 14:31:17 +00001732 Constant *GEP = getGetElementPtr(NullPtr, Indices);
Dan Gohman3b490632010-04-12 22:12:29 +00001733 return getPtrToInt(GEP,
1734 Type::getInt64Ty(Ty->getContext()));
Owen Andersonbaf3c402009-07-29 18:55:55 +00001735}
1736
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001737Constant *ConstantExpr::getOffsetOf(StructType* STy, unsigned FieldNo) {
Dan Gohman2544a1d2010-02-01 16:37:38 +00001738 return getOffsetOf(STy, ConstantInt::get(Type::getInt32Ty(STy->getContext()),
1739 FieldNo));
1740}
1741
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001742Constant *ConstantExpr::getOffsetOf(Type* Ty, Constant *FieldNo) {
Dan Gohman3778f212009-08-16 21:26:11 +00001743 // offsetof is implemented as: (i64) gep (Ty*)null, 0, FieldNo
1744 // Note that a non-inbounds gep is used, as null isn't within any object.
1745 Constant *GEPIdx[] = {
Dan Gohman2544a1d2010-02-01 16:37:38 +00001746 ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0),
1747 FieldNo
Dan Gohman3778f212009-08-16 21:26:11 +00001748 };
1749 Constant *GEP = getGetElementPtr(
Jay Foaddab3d292011-07-21 14:31:17 +00001750 Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx);
Dan Gohman3b490632010-04-12 22:12:29 +00001751 return getPtrToInt(GEP,
1752 Type::getInt64Ty(Ty->getContext()));
Dan Gohman3778f212009-08-16 21:26:11 +00001753}
Owen Andersonbaf3c402009-07-29 18:55:55 +00001754
Chris Lattnereaf79802011-07-09 18:23:52 +00001755Constant *ConstantExpr::getCompare(unsigned short Predicate,
1756 Constant *C1, Constant *C2) {
Reid Spencer67263fe2006-12-04 21:35:24 +00001757 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Galina Kistanovaa46517e2012-07-13 01:25:27 +00001758
Chris Lattnereaf79802011-07-09 18:23:52 +00001759 switch (Predicate) {
1760 default: llvm_unreachable("Invalid CmpInst predicate");
1761 case CmpInst::FCMP_FALSE: case CmpInst::FCMP_OEQ: case CmpInst::FCMP_OGT:
1762 case CmpInst::FCMP_OGE: case CmpInst::FCMP_OLT: case CmpInst::FCMP_OLE:
1763 case CmpInst::FCMP_ONE: case CmpInst::FCMP_ORD: case CmpInst::FCMP_UNO:
1764 case CmpInst::FCMP_UEQ: case CmpInst::FCMP_UGT: case CmpInst::FCMP_UGE:
1765 case CmpInst::FCMP_ULT: case CmpInst::FCMP_ULE: case CmpInst::FCMP_UNE:
1766 case CmpInst::FCMP_TRUE:
1767 return getFCmp(Predicate, C1, C2);
Galina Kistanovaa46517e2012-07-13 01:25:27 +00001768
Chris Lattnereaf79802011-07-09 18:23:52 +00001769 case CmpInst::ICMP_EQ: case CmpInst::ICMP_NE: case CmpInst::ICMP_UGT:
1770 case CmpInst::ICMP_UGE: case CmpInst::ICMP_ULT: case CmpInst::ICMP_ULE:
1771 case CmpInst::ICMP_SGT: case CmpInst::ICMP_SGE: case CmpInst::ICMP_SLT:
1772 case CmpInst::ICMP_SLE:
1773 return getICmp(Predicate, C1, C2);
1774 }
Chris Lattnerc3d12f02004-08-04 18:50:09 +00001775}
1776
Chris Lattnereaf79802011-07-09 18:23:52 +00001777Constant *ConstantExpr::getSelect(Constant *C, Constant *V1, Constant *V2) {
Chris Lattner9ace0cd2008-12-29 00:16:12 +00001778 assert(!SelectInst::areInvalidOperands(C, V1, V2)&&"Invalid select operands");
Chris Lattner08a45cc2004-03-12 05:54:04 +00001779
Chris Lattnereaf79802011-07-09 18:23:52 +00001780 if (Constant *SC = ConstantFoldSelectInstruction(C, V1, V2))
1781 return SC; // Fold common cases
Chris Lattner08a45cc2004-03-12 05:54:04 +00001782
1783 std::vector<Constant*> argVec(3, C);
1784 argVec[1] = V1;
1785 argVec[2] = V2;
Reid Spencer077d0eb2006-12-04 05:19:50 +00001786 ExprMapKeyType Key(Instruction::Select, argVec);
Galina Kistanovaa46517e2012-07-13 01:25:27 +00001787
Chris Lattnereaf79802011-07-09 18:23:52 +00001788 LLVMContextImpl *pImpl = C->getContext().pImpl;
1789 return pImpl->ExprConstants.getOrCreate(V1->getType(), Key);
Chris Lattner08a45cc2004-03-12 05:54:04 +00001790}
1791
Jay Foaddab3d292011-07-21 14:31:17 +00001792Constant *ConstantExpr::getGetElementPtr(Constant *C, ArrayRef<Value *> Idxs,
1793 bool InBounds) {
Duncan Sands2333e292012-11-13 12:59:33 +00001794 assert(C->getType()->isPtrOrPtrVectorTy() &&
1795 "Non-pointer type for constant GetElementPtr expression");
1796
Jay Foaddab3d292011-07-21 14:31:17 +00001797 if (Constant *FC = ConstantFoldGetElementPtr(C, InBounds, Idxs))
Chris Lattner1f78d512011-02-11 05:34:33 +00001798 return FC; // Fold a few common cases.
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001799
Chris Lattnereaf79802011-07-09 18:23:52 +00001800 // Get the result type of the getelementptr!
Jay Foada9203102011-07-25 09:48:08 +00001801 Type *Ty = GetElementPtrInst::getIndexedType(C->getType(), Idxs);
Chris Lattnereaf79802011-07-09 18:23:52 +00001802 assert(Ty && "GEP indices invalid!");
Chris Lattner230cdab2012-01-26 00:42:34 +00001803 unsigned AS = C->getType()->getPointerAddressSpace();
Chris Lattnereaf79802011-07-09 18:23:52 +00001804 Type *ReqTy = Ty->getPointerTo(AS);
Duncan Sands2333e292012-11-13 12:59:33 +00001805 if (VectorType *VecTy = dyn_cast<VectorType>(C->getType()))
1806 ReqTy = VectorType::get(ReqTy, VecTy->getNumElements());
Galina Kistanovaa46517e2012-07-13 01:25:27 +00001807
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001808 // Look up the constant in the table first to ensure uniqueness
1809 std::vector<Constant*> ArgVec;
Jay Foaddab3d292011-07-21 14:31:17 +00001810 ArgVec.reserve(1 + Idxs.size());
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001811 ArgVec.push_back(C);
Duncan Sands2333e292012-11-13 12:59:33 +00001812 for (unsigned i = 0, e = Idxs.size(); i != e; ++i) {
1813 assert(Idxs[i]->getType()->isVectorTy() == ReqTy->isVectorTy() &&
1814 "getelementptr index type missmatch");
1815 assert((!Idxs[i]->getType()->isVectorTy() ||
1816 ReqTy->getVectorNumElements() ==
1817 Idxs[i]->getType()->getVectorNumElements()) &&
1818 "getelementptr index type missmatch");
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001819 ArgVec.push_back(cast<Constant>(Idxs[i]));
Duncan Sands2333e292012-11-13 12:59:33 +00001820 }
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001821 const ExprMapKeyType Key(Instruction::GetElementPtr, ArgVec, 0,
Chris Lattner1f78d512011-02-11 05:34:33 +00001822 InBounds ? GEPOperator::IsInBounds : 0);
Galina Kistanovaa46517e2012-07-13 01:25:27 +00001823
Chris Lattnereaf79802011-07-09 18:23:52 +00001824 LLVMContextImpl *pImpl = C->getContext().pImpl;
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001825 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
1826}
1827
Reid Spencer077d0eb2006-12-04 05:19:50 +00001828Constant *
Nick Lewycky401f3252010-01-21 07:03:21 +00001829ConstantExpr::getICmp(unsigned short pred, Constant *LHS, Constant *RHS) {
Reid Spencer077d0eb2006-12-04 05:19:50 +00001830 assert(LHS->getType() == RHS->getType());
1831 assert(pred >= ICmpInst::FIRST_ICMP_PREDICATE &&
1832 pred <= ICmpInst::LAST_ICMP_PREDICATE && "Invalid ICmp Predicate");
1833
Chris Lattnerb29d5962010-02-01 20:48:08 +00001834 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
Reid Spencer077d0eb2006-12-04 05:19:50 +00001835 return FC; // Fold a few common cases...
1836
1837 // Look up the constant in the table first to ensure uniqueness
1838 std::vector<Constant*> ArgVec;
1839 ArgVec.push_back(LHS);
1840 ArgVec.push_back(RHS);
Reid Spencer4fa021a2006-12-24 18:42:29 +00001841 // Get the key type with both the opcode and predicate
Reid Spencer077d0eb2006-12-04 05:19:50 +00001842 const ExprMapKeyType Key(Instruction::ICmp, ArgVec, pred);
Owen Anderson31c36f02009-06-17 20:10:08 +00001843
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001844 Type *ResultTy = Type::getInt1Ty(LHS->getContext());
1845 if (VectorType *VT = dyn_cast<VectorType>(LHS->getType()))
Nick Lewycky401f3252010-01-21 07:03:21 +00001846 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
1847
Owen Andersond03eecd2009-08-04 20:25:11 +00001848 LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl;
Nick Lewycky401f3252010-01-21 07:03:21 +00001849 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
Reid Spencer077d0eb2006-12-04 05:19:50 +00001850}
1851
1852Constant *
Nick Lewycky401f3252010-01-21 07:03:21 +00001853ConstantExpr::getFCmp(unsigned short pred, Constant *LHS, Constant *RHS) {
Reid Spencer077d0eb2006-12-04 05:19:50 +00001854 assert(LHS->getType() == RHS->getType());
1855 assert(pred <= FCmpInst::LAST_FCMP_PREDICATE && "Invalid FCmp Predicate");
1856
Chris Lattnerb29d5962010-02-01 20:48:08 +00001857 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
Reid Spencer077d0eb2006-12-04 05:19:50 +00001858 return FC; // Fold a few common cases...
1859
1860 // Look up the constant in the table first to ensure uniqueness
1861 std::vector<Constant*> ArgVec;
1862 ArgVec.push_back(LHS);
1863 ArgVec.push_back(RHS);
Reid Spencer4fa021a2006-12-24 18:42:29 +00001864 // Get the key type with both the opcode and predicate
Reid Spencer077d0eb2006-12-04 05:19:50 +00001865 const ExprMapKeyType Key(Instruction::FCmp, ArgVec, pred);
Nick Lewycky401f3252010-01-21 07:03:21 +00001866
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001867 Type *ResultTy = Type::getInt1Ty(LHS->getContext());
1868 if (VectorType *VT = dyn_cast<VectorType>(LHS->getType()))
Nick Lewycky401f3252010-01-21 07:03:21 +00001869 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
1870
Owen Andersond03eecd2009-08-04 20:25:11 +00001871 LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl;
Nick Lewycky401f3252010-01-21 07:03:21 +00001872 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
Reid Spencer077d0eb2006-12-04 05:19:50 +00001873}
1874
Robert Bocchinob52ee7f2006-01-10 19:05:34 +00001875Constant *ConstantExpr::getExtractElement(Constant *Val, Constant *Idx) {
Duncan Sands1df98592010-02-16 11:11:14 +00001876 assert(Val->getType()->isVectorTy() &&
Reid Spencerac9dcb92007-02-15 03:39:18 +00001877 "Tried to create extractelement operation on non-vector type!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001878 assert(Idx->getType()->isIntegerTy(32) &&
Reid Spencer3d10b0b2007-01-26 07:37:34 +00001879 "Extractelement index must be i32 type!");
Galina Kistanovaa46517e2012-07-13 01:25:27 +00001880
Chris Lattnereaf79802011-07-09 18:23:52 +00001881 if (Constant *FC = ConstantFoldExtractElementInstruction(Val, Idx))
Chris Lattner83738a22009-12-30 20:25:09 +00001882 return FC; // Fold a few common cases.
Galina Kistanovaa46517e2012-07-13 01:25:27 +00001883
Robert Bocchinoc152f9c2006-01-17 20:07:22 +00001884 // Look up the constant in the table first to ensure uniqueness
1885 std::vector<Constant*> ArgVec(1, Val);
Robert Bocchinoc152f9c2006-01-17 20:07:22 +00001886 ArgVec.push_back(Idx);
Chris Lattnereaf79802011-07-09 18:23:52 +00001887 const ExprMapKeyType Key(Instruction::ExtractElement,ArgVec);
Galina Kistanovaa46517e2012-07-13 01:25:27 +00001888
Chris Lattnereaf79802011-07-09 18:23:52 +00001889 LLVMContextImpl *pImpl = Val->getContext().pImpl;
Chris Lattner230cdab2012-01-26 00:42:34 +00001890 Type *ReqTy = Val->getType()->getVectorElementType();
Owen Andersond03eecd2009-08-04 20:25:11 +00001891 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Robert Bocchinoc152f9c2006-01-17 20:07:22 +00001892}
1893
1894Constant *ConstantExpr::getInsertElement(Constant *Val, Constant *Elt,
1895 Constant *Idx) {
Duncan Sands1df98592010-02-16 11:11:14 +00001896 assert(Val->getType()->isVectorTy() &&
Reid Spencerac9dcb92007-02-15 03:39:18 +00001897 "Tried to create insertelement operation on non-vector type!");
Chris Lattner230cdab2012-01-26 00:42:34 +00001898 assert(Elt->getType() == Val->getType()->getVectorElementType() &&
1899 "Insertelement types must match!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001900 assert(Idx->getType()->isIntegerTy(32) &&
Reid Spencer3d10b0b2007-01-26 07:37:34 +00001901 "Insertelement index must be i32 type!");
Robert Bocchinoc152f9c2006-01-17 20:07:22 +00001902
Chris Lattnereaf79802011-07-09 18:23:52 +00001903 if (Constant *FC = ConstantFoldInsertElementInstruction(Val, Elt, Idx))
1904 return FC; // Fold a few common cases.
Chris Lattner00f10232006-04-08 01:18:18 +00001905 // Look up the constant in the table first to ensure uniqueness
Chris Lattnereaf79802011-07-09 18:23:52 +00001906 std::vector<Constant*> ArgVec(1, Val);
1907 ArgVec.push_back(Elt);
1908 ArgVec.push_back(Idx);
1909 const ExprMapKeyType Key(Instruction::InsertElement,ArgVec);
Galina Kistanovaa46517e2012-07-13 01:25:27 +00001910
Chris Lattnereaf79802011-07-09 18:23:52 +00001911 LLVMContextImpl *pImpl = Val->getContext().pImpl;
1912 return pImpl->ExprConstants.getOrCreate(Val->getType(), Key);
Chris Lattner00f10232006-04-08 01:18:18 +00001913}
1914
1915Constant *ConstantExpr::getShuffleVector(Constant *V1, Constant *V2,
1916 Constant *Mask) {
1917 assert(ShuffleVectorInst::isValidOperands(V1, V2, Mask) &&
1918 "Invalid shuffle vector constant expr operands!");
Nate Begeman0f123cf2009-02-12 21:28:33 +00001919
Chris Lattnereaf79802011-07-09 18:23:52 +00001920 if (Constant *FC = ConstantFoldShuffleVectorInstruction(V1, V2, Mask))
1921 return FC; // Fold a few common cases.
1922
Chris Lattner230cdab2012-01-26 00:42:34 +00001923 unsigned NElts = Mask->getType()->getVectorNumElements();
1924 Type *EltTy = V1->getType()->getVectorElementType();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001925 Type *ShufTy = VectorType::get(EltTy, NElts);
Chris Lattnereaf79802011-07-09 18:23:52 +00001926
1927 // Look up the constant in the table first to ensure uniqueness
1928 std::vector<Constant*> ArgVec(1, V1);
1929 ArgVec.push_back(V2);
1930 ArgVec.push_back(Mask);
1931 const ExprMapKeyType Key(Instruction::ShuffleVector,ArgVec);
Galina Kistanovaa46517e2012-07-13 01:25:27 +00001932
Chris Lattnereaf79802011-07-09 18:23:52 +00001933 LLVMContextImpl *pImpl = ShufTy->getContext().pImpl;
1934 return pImpl->ExprConstants.getOrCreate(ShufTy, Key);
Chris Lattner00f10232006-04-08 01:18:18 +00001935}
1936
Chris Lattnereaf79802011-07-09 18:23:52 +00001937Constant *ConstantExpr::getInsertValue(Constant *Agg, Constant *Val,
Jay Foadfc6d3a42011-07-13 10:26:04 +00001938 ArrayRef<unsigned> Idxs) {
1939 assert(ExtractValueInst::getIndexedType(Agg->getType(),
1940 Idxs) == Val->getType() &&
Dan Gohman041e2eb2008-05-15 19:50:34 +00001941 "insertvalue indices invalid!");
Dan Gohmane4569942008-05-23 00:36:11 +00001942 assert(Agg->getType()->isFirstClassType() &&
Chris Lattner4e47aad2011-07-12 05:26:21 +00001943 "Non-first-class type for constant insertvalue expression");
Jay Foadfc6d3a42011-07-13 10:26:04 +00001944 Constant *FC = ConstantFoldInsertValueInstruction(Agg, Val, Idxs);
Chris Lattner4e47aad2011-07-12 05:26:21 +00001945 assert(FC && "insertvalue constant expr couldn't be folded!");
Dan Gohmane0891602008-07-21 23:30:30 +00001946 return FC;
Dan Gohman041e2eb2008-05-15 19:50:34 +00001947}
1948
Chris Lattnereaf79802011-07-09 18:23:52 +00001949Constant *ConstantExpr::getExtractValue(Constant *Agg,
Jay Foadfc6d3a42011-07-13 10:26:04 +00001950 ArrayRef<unsigned> Idxs) {
Dan Gohmane4569942008-05-23 00:36:11 +00001951 assert(Agg->getType()->isFirstClassType() &&
Chris Lattnereaf79802011-07-09 18:23:52 +00001952 "Tried to create extractelement operation on non-first-class type!");
Dan Gohman041e2eb2008-05-15 19:50:34 +00001953
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001954 Type *ReqTy = ExtractValueInst::getIndexedType(Agg->getType(), Idxs);
Chandler Carruthdc770fc2011-07-10 09:45:35 +00001955 (void)ReqTy;
Chris Lattnereaf79802011-07-09 18:23:52 +00001956 assert(ReqTy && "extractvalue indices invalid!");
Galina Kistanovaa46517e2012-07-13 01:25:27 +00001957
Dan Gohmane4569942008-05-23 00:36:11 +00001958 assert(Agg->getType()->isFirstClassType() &&
1959 "Non-first-class type for constant extractvalue expression");
Jay Foadfc6d3a42011-07-13 10:26:04 +00001960 Constant *FC = ConstantFoldExtractValueInstruction(Agg, Idxs);
Dan Gohmane0891602008-07-21 23:30:30 +00001961 assert(FC && "ExtractValue constant expr couldn't be folded!");
1962 return FC;
Dan Gohman041e2eb2008-05-15 19:50:34 +00001963}
1964
Chris Lattner81baf142011-02-10 07:01:55 +00001965Constant *ConstantExpr::getNeg(Constant *C, bool HasNUW, bool HasNSW) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001966 assert(C->getType()->isIntOrIntVectorTy() &&
Owen Andersonbaf3c402009-07-29 18:55:55 +00001967 "Cannot NEG a nonintegral value!");
Chris Lattner81baf142011-02-10 07:01:55 +00001968 return getSub(ConstantFP::getZeroValueForNegation(C->getType()),
1969 C, HasNUW, HasNSW);
Owen Andersonbaf3c402009-07-29 18:55:55 +00001970}
1971
Chris Lattnerf067d582011-02-07 16:40:21 +00001972Constant *ConstantExpr::getFNeg(Constant *C) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001973 assert(C->getType()->isFPOrFPVectorTy() &&
Owen Andersonbaf3c402009-07-29 18:55:55 +00001974 "Cannot FNEG a non-floating-point value!");
Chris Lattner81baf142011-02-10 07:01:55 +00001975 return getFSub(ConstantFP::getZeroValueForNegation(C->getType()), C);
Owen Andersonbaf3c402009-07-29 18:55:55 +00001976}
1977
Chris Lattnerf067d582011-02-07 16:40:21 +00001978Constant *ConstantExpr::getNot(Constant *C) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001979 assert(C->getType()->isIntOrIntVectorTy() &&
Owen Andersonbaf3c402009-07-29 18:55:55 +00001980 "Cannot NOT a nonintegral value!");
Owen Andersona7235ea2009-07-31 20:28:14 +00001981 return get(Instruction::Xor, C, Constant::getAllOnesValue(C->getType()));
Owen Andersonbaf3c402009-07-29 18:55:55 +00001982}
1983
Chris Lattner81baf142011-02-10 07:01:55 +00001984Constant *ConstantExpr::getAdd(Constant *C1, Constant *C2,
1985 bool HasNUW, bool HasNSW) {
1986 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
1987 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
1988 return get(Instruction::Add, C1, C2, Flags);
Owen Andersonbaf3c402009-07-29 18:55:55 +00001989}
1990
Chris Lattnerf067d582011-02-07 16:40:21 +00001991Constant *ConstantExpr::getFAdd(Constant *C1, Constant *C2) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00001992 return get(Instruction::FAdd, C1, C2);
1993}
1994
Chris Lattner81baf142011-02-10 07:01:55 +00001995Constant *ConstantExpr::getSub(Constant *C1, Constant *C2,
1996 bool HasNUW, bool HasNSW) {
1997 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
1998 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
1999 return get(Instruction::Sub, C1, C2, Flags);
Owen Andersonbaf3c402009-07-29 18:55:55 +00002000}
2001
Chris Lattnerf067d582011-02-07 16:40:21 +00002002Constant *ConstantExpr::getFSub(Constant *C1, Constant *C2) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00002003 return get(Instruction::FSub, C1, C2);
2004}
2005
Chris Lattner81baf142011-02-10 07:01:55 +00002006Constant *ConstantExpr::getMul(Constant *C1, Constant *C2,
2007 bool HasNUW, bool HasNSW) {
2008 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
2009 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
2010 return get(Instruction::Mul, C1, C2, Flags);
Owen Andersonbaf3c402009-07-29 18:55:55 +00002011}
2012
Chris Lattnerf067d582011-02-07 16:40:21 +00002013Constant *ConstantExpr::getFMul(Constant *C1, Constant *C2) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00002014 return get(Instruction::FMul, C1, C2);
2015}
2016
Chris Lattner74f5c5a2011-02-09 16:43:07 +00002017Constant *ConstantExpr::getUDiv(Constant *C1, Constant *C2, bool isExact) {
2018 return get(Instruction::UDiv, C1, C2,
2019 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Andersonbaf3c402009-07-29 18:55:55 +00002020}
2021
Chris Lattner74f5c5a2011-02-09 16:43:07 +00002022Constant *ConstantExpr::getSDiv(Constant *C1, Constant *C2, bool isExact) {
2023 return get(Instruction::SDiv, C1, C2,
2024 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Andersonbaf3c402009-07-29 18:55:55 +00002025}
2026
Chris Lattnerf067d582011-02-07 16:40:21 +00002027Constant *ConstantExpr::getFDiv(Constant *C1, Constant *C2) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00002028 return get(Instruction::FDiv, C1, C2);
2029}
2030
Chris Lattnerf067d582011-02-07 16:40:21 +00002031Constant *ConstantExpr::getURem(Constant *C1, Constant *C2) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00002032 return get(Instruction::URem, C1, C2);
2033}
2034
Chris Lattnerf067d582011-02-07 16:40:21 +00002035Constant *ConstantExpr::getSRem(Constant *C1, Constant *C2) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00002036 return get(Instruction::SRem, C1, C2);
2037}
2038
Chris Lattnerf067d582011-02-07 16:40:21 +00002039Constant *ConstantExpr::getFRem(Constant *C1, Constant *C2) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00002040 return get(Instruction::FRem, C1, C2);
2041}
2042
Chris Lattnerf067d582011-02-07 16:40:21 +00002043Constant *ConstantExpr::getAnd(Constant *C1, Constant *C2) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00002044 return get(Instruction::And, C1, C2);
2045}
2046
Chris Lattnerf067d582011-02-07 16:40:21 +00002047Constant *ConstantExpr::getOr(Constant *C1, Constant *C2) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00002048 return get(Instruction::Or, C1, C2);
2049}
2050
Chris Lattnerf067d582011-02-07 16:40:21 +00002051Constant *ConstantExpr::getXor(Constant *C1, Constant *C2) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00002052 return get(Instruction::Xor, C1, C2);
2053}
2054
Chris Lattner81baf142011-02-10 07:01:55 +00002055Constant *ConstantExpr::getShl(Constant *C1, Constant *C2,
2056 bool HasNUW, bool HasNSW) {
2057 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
2058 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
2059 return get(Instruction::Shl, C1, C2, Flags);
Owen Andersonbaf3c402009-07-29 18:55:55 +00002060}
2061
Chris Lattner74f5c5a2011-02-09 16:43:07 +00002062Constant *ConstantExpr::getLShr(Constant *C1, Constant *C2, bool isExact) {
2063 return get(Instruction::LShr, C1, C2,
2064 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Andersonbaf3c402009-07-29 18:55:55 +00002065}
2066
Chris Lattner74f5c5a2011-02-09 16:43:07 +00002067Constant *ConstantExpr::getAShr(Constant *C1, Constant *C2, bool isExact) {
2068 return get(Instruction::AShr, C1, C2,
2069 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Andersonbaf3c402009-07-29 18:55:55 +00002070}
2071
Duncan Sandsc038a782012-06-12 14:33:56 +00002072/// getBinOpIdentity - Return the identity for the given binary operation,
2073/// i.e. a constant C such that X op C = X and C op X = X for every X. It
Duncan Sandsee5a0942012-06-13 09:42:13 +00002074/// returns null if the operator doesn't have an identity.
Duncan Sandsc038a782012-06-12 14:33:56 +00002075Constant *ConstantExpr::getBinOpIdentity(unsigned Opcode, Type *Ty) {
2076 switch (Opcode) {
2077 default:
Duncan Sandsee5a0942012-06-13 09:42:13 +00002078 // Doesn't have an identity.
2079 return 0;
2080
Duncan Sandsc038a782012-06-12 14:33:56 +00002081 case Instruction::Add:
2082 case Instruction::Or:
2083 case Instruction::Xor:
2084 return Constant::getNullValue(Ty);
2085
2086 case Instruction::Mul:
2087 return ConstantInt::get(Ty, 1);
2088
2089 case Instruction::And:
2090 return Constant::getAllOnesValue(Ty);
2091 }
2092}
2093
Duncan Sandsee5a0942012-06-13 09:42:13 +00002094/// getBinOpAbsorber - Return the absorbing element for the given binary
2095/// operation, i.e. a constant C such that X op C = C and C op X = C for
2096/// every X. For example, this returns zero for integer multiplication.
2097/// It returns null if the operator doesn't have an absorbing element.
2098Constant *ConstantExpr::getBinOpAbsorber(unsigned Opcode, Type *Ty) {
2099 switch (Opcode) {
2100 default:
2101 // Doesn't have an absorber.
2102 return 0;
2103
2104 case Instruction::Or:
2105 return Constant::getAllOnesValue(Ty);
2106
2107 case Instruction::And:
2108 case Instruction::Mul:
2109 return Constant::getNullValue(Ty);
2110 }
2111}
2112
Vikram S. Adved0b1bb02002-07-15 18:19:33 +00002113// destroyConstant - Remove the constant from the constant table...
2114//
Owen Anderson04fb7c32009-06-20 00:24:58 +00002115void ConstantExpr::destroyConstant() {
Chris Lattner1afcace2011-07-09 17:41:24 +00002116 getType()->getContext().pImpl->ExprConstants.remove(this);
Vikram S. Adved0b1bb02002-07-15 18:19:33 +00002117 destroyConstantImpl();
Vikram S. Adve345e0cf2002-07-14 23:13:17 +00002118}
2119
Chris Lattnerc188eeb2002-07-30 18:54:25 +00002120const char *ConstantExpr::getOpcodeName() const {
2121 return Instruction::getOpcodeName(getOpcode());
Vikram S. Adve345e0cf2002-07-14 23:13:17 +00002122}
Reid Spencer1c9c8e62004-07-17 23:48:33 +00002123
Chris Lattner04e3b1e2010-03-30 20:48:48 +00002124
2125
2126GetElementPtrConstantExpr::
Chris Lattnera7c69882012-01-26 20:40:56 +00002127GetElementPtrConstantExpr(Constant *C, ArrayRef<Constant*> IdxList,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002128 Type *DestTy)
Chris Lattner04e3b1e2010-03-30 20:48:48 +00002129 : ConstantExpr(DestTy, Instruction::GetElementPtr,
2130 OperandTraits<GetElementPtrConstantExpr>::op_end(this)
2131 - (IdxList.size()+1), IdxList.size()+1) {
2132 OperandList[0] = C;
2133 for (unsigned i = 0, E = IdxList.size(); i != E; ++i)
2134 OperandList[i+1] = IdxList[i];
2135}
2136
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002137//===----------------------------------------------------------------------===//
2138// ConstantData* implementations
2139
2140void ConstantDataArray::anchor() {}
2141void ConstantDataVector::anchor() {}
2142
Chris Lattner45bb5c52012-01-24 04:43:41 +00002143/// getElementType - Return the element type of the array/vector.
2144Type *ConstantDataSequential::getElementType() const {
2145 return getType()->getElementType();
2146}
2147
Chris Lattner9e631da2012-01-24 09:31:43 +00002148StringRef ConstantDataSequential::getRawDataValues() const {
Chris Lattner1ee0ecf2012-01-24 13:41:11 +00002149 return StringRef(DataElements, getNumElements()*getElementByteSize());
Chris Lattner9e631da2012-01-24 09:31:43 +00002150}
2151
Chris Lattnerff2b7f32012-01-24 05:42:11 +00002152/// isElementTypeCompatible - Return true if a ConstantDataSequential can be
2153/// formed with a vector or array of the specified element type.
2154/// ConstantDataArray only works with normal float and int types that are
2155/// stored densely in memory, not with things like i42 or x86_f80.
2156bool ConstantDataSequential::isElementTypeCompatible(const Type *Ty) {
Chris Lattner45bb5c52012-01-24 04:43:41 +00002157 if (Ty->isFloatTy() || Ty->isDoubleTy()) return true;
2158 if (const IntegerType *IT = dyn_cast<IntegerType>(Ty)) {
2159 switch (IT->getBitWidth()) {
2160 case 8:
2161 case 16:
2162 case 32:
2163 case 64:
2164 return true;
2165 default: break;
2166 }
2167 }
2168 return false;
2169}
2170
Chris Lattner1ee0ecf2012-01-24 13:41:11 +00002171/// getNumElements - Return the number of elements in the array or vector.
2172unsigned ConstantDataSequential::getNumElements() const {
Chris Lattneraf7b4fb2012-01-25 01:32:59 +00002173 if (ArrayType *AT = dyn_cast<ArrayType>(getType()))
2174 return AT->getNumElements();
Chris Lattner230cdab2012-01-26 00:42:34 +00002175 return getType()->getVectorNumElements();
Chris Lattner1ee0ecf2012-01-24 13:41:11 +00002176}
2177
2178
Chris Lattner45bb5c52012-01-24 04:43:41 +00002179/// getElementByteSize - Return the size in bytes of the elements in the data.
2180uint64_t ConstantDataSequential::getElementByteSize() const {
2181 return getElementType()->getPrimitiveSizeInBits()/8;
2182}
2183
2184/// getElementPointer - Return the start of the specified element.
2185const char *ConstantDataSequential::getElementPointer(unsigned Elt) const {
Chris Lattner1ee0ecf2012-01-24 13:41:11 +00002186 assert(Elt < getNumElements() && "Invalid Elt");
Chris Lattner45bb5c52012-01-24 04:43:41 +00002187 return DataElements+Elt*getElementByteSize();
2188}
2189
2190
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002191/// isAllZeros - return true if the array is empty or all zeros.
2192static bool isAllZeros(StringRef Arr) {
2193 for (StringRef::iterator I = Arr.begin(), E = Arr.end(); I != E; ++I)
2194 if (*I != 0)
2195 return false;
2196 return true;
2197}
Chris Lattnerff2b7f32012-01-24 05:42:11 +00002198
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002199/// getImpl - This is the underlying implementation of all of the
2200/// ConstantDataSequential::get methods. They all thunk down to here, providing
Chris Lattner8cf27ef2012-01-30 18:19:30 +00002201/// the correct element type. We take the bytes in as a StringRef because
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002202/// we *want* an underlying "char*" to avoid TBAA type punning violations.
2203Constant *ConstantDataSequential::getImpl(StringRef Elements, Type *Ty) {
Chris Lattner230cdab2012-01-26 00:42:34 +00002204 assert(isElementTypeCompatible(Ty->getSequentialElementType()));
Chris Lattner29cc6cb2012-01-24 14:17:05 +00002205 // If the elements are all zero or there are no elements, return a CAZ, which
2206 // is more dense and canonical.
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002207 if (isAllZeros(Elements))
2208 return ConstantAggregateZero::get(Ty);
2209
2210 // Do a lookup to see if we have already formed one of these.
2211 StringMap<ConstantDataSequential*>::MapEntryTy &Slot =
2212 Ty->getContext().pImpl->CDSConstants.GetOrCreateValue(Elements);
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002213
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002214 // The bucket can point to a linked list of different CDS's that have the same
2215 // body but different types. For example, 0,0,0,1 could be a 4 element array
2216 // of i8, or a 1-element array of i32. They'll both end up in the same
2217 /// StringMap bucket, linked up by their Next pointers. Walk the list.
2218 ConstantDataSequential **Entry = &Slot.getValue();
2219 for (ConstantDataSequential *Node = *Entry; Node != 0;
2220 Entry = &Node->Next, Node = *Entry)
2221 if (Node->getType() == Ty)
2222 return Node;
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002223
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002224 // Okay, we didn't get a hit. Create a node of the right class, link it in,
2225 // and return it.
2226 if (isa<ArrayType>(Ty))
2227 return *Entry = new ConstantDataArray(Ty, Slot.getKeyData());
2228
2229 assert(isa<VectorType>(Ty));
2230 return *Entry = new ConstantDataVector(Ty, Slot.getKeyData());
2231}
2232
2233void ConstantDataSequential::destroyConstant() {
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002234 // Remove the constant from the StringMap.
2235 StringMap<ConstantDataSequential*> &CDSConstants =
2236 getType()->getContext().pImpl->CDSConstants;
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002237
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002238 StringMap<ConstantDataSequential*>::iterator Slot =
Chris Lattner9e631da2012-01-24 09:31:43 +00002239 CDSConstants.find(getRawDataValues());
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002240
2241 assert(Slot != CDSConstants.end() && "CDS not found in uniquing table");
2242
2243 ConstantDataSequential **Entry = &Slot->getValue();
2244
2245 // Remove the entry from the hash table.
2246 if ((*Entry)->Next == 0) {
2247 // If there is only one value in the bucket (common case) it must be this
2248 // entry, and removing the entry should remove the bucket completely.
2249 assert((*Entry) == this && "Hash mismatch in ConstantDataSequential");
2250 getContext().pImpl->CDSConstants.erase(Slot);
2251 } else {
2252 // Otherwise, there are multiple entries linked off the bucket, unlink the
2253 // node we care about but keep the bucket around.
2254 for (ConstantDataSequential *Node = *Entry; ;
2255 Entry = &Node->Next, Node = *Entry) {
2256 assert(Node && "Didn't find entry in its uniquing hash table!");
2257 // If we found our entry, unlink it from the list and we're done.
2258 if (Node == this) {
2259 *Entry = Node->Next;
2260 break;
2261 }
2262 }
2263 }
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002264
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002265 // If we were part of a list, make sure that we don't delete the list that is
2266 // still owned by the uniquing map.
2267 Next = 0;
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002268
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002269 // Finally, actually delete it.
2270 destroyConstantImpl();
2271}
2272
2273/// get() constructors - Return a constant with array type with an element
2274/// count and element type matching the ArrayRef passed in. Note that this
2275/// can return a ConstantAggregateZero object.
Chris Lattner32100602012-01-24 14:04:40 +00002276Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint8_t> Elts) {
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002277 Type *Ty = ArrayType::get(Type::getInt8Ty(Context), Elts.size());
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002278 const char *Data = reinterpret_cast<const char *>(Elts.data());
2279 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*1), Ty);
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002280}
Chris Lattner32100602012-01-24 14:04:40 +00002281Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint16_t> Elts){
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002282 Type *Ty = ArrayType::get(Type::getInt16Ty(Context), Elts.size());
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002283 const char *Data = reinterpret_cast<const char *>(Elts.data());
2284 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*2), Ty);
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002285}
Chris Lattner32100602012-01-24 14:04:40 +00002286Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint32_t> Elts){
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002287 Type *Ty = ArrayType::get(Type::getInt32Ty(Context), Elts.size());
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002288 const char *Data = reinterpret_cast<const char *>(Elts.data());
2289 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*4), Ty);
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002290}
Chris Lattner32100602012-01-24 14:04:40 +00002291Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint64_t> Elts){
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002292 Type *Ty = ArrayType::get(Type::getInt64Ty(Context), Elts.size());
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002293 const char *Data = reinterpret_cast<const char *>(Elts.data());
2294 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*8), Ty);
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002295}
Chris Lattner32100602012-01-24 14:04:40 +00002296Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<float> Elts) {
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002297 Type *Ty = ArrayType::get(Type::getFloatTy(Context), Elts.size());
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002298 const char *Data = reinterpret_cast<const char *>(Elts.data());
2299 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*4), Ty);
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002300}
Chris Lattner32100602012-01-24 14:04:40 +00002301Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<double> Elts) {
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002302 Type *Ty = ArrayType::get(Type::getDoubleTy(Context), Elts.size());
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002303 const char *Data = reinterpret_cast<const char *>(Elts.data());
2304 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*8), Ty);
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002305}
2306
Chris Lattner32100602012-01-24 14:04:40 +00002307/// getString - This method constructs a CDS and initializes it with a text
2308/// string. The default behavior (AddNull==true) causes a null terminator to
2309/// be placed at the end of the array (increasing the length of the string by
2310/// one more than the StringRef would normally indicate. Pass AddNull=false
2311/// to disable this behavior.
2312Constant *ConstantDataArray::getString(LLVMContext &Context,
2313 StringRef Str, bool AddNull) {
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002314 if (!AddNull) {
2315 const uint8_t *Data = reinterpret_cast<const uint8_t *>(Str.data());
2316 return get(Context, ArrayRef<uint8_t>(const_cast<uint8_t *>(Data),
2317 Str.size()));
2318 }
2319
Chris Lattner32100602012-01-24 14:04:40 +00002320 SmallVector<uint8_t, 64> ElementVals;
2321 ElementVals.append(Str.begin(), Str.end());
2322 ElementVals.push_back(0);
2323 return get(Context, ElementVals);
2324}
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002325
2326/// get() constructors - Return a constant with vector type with an element
2327/// count and element type matching the ArrayRef passed in. Note that this
2328/// can return a ConstantAggregateZero object.
Chris Lattner32100602012-01-24 14:04:40 +00002329Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint8_t> Elts){
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002330 Type *Ty = VectorType::get(Type::getInt8Ty(Context), Elts.size());
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002331 const char *Data = reinterpret_cast<const char *>(Elts.data());
2332 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*1), Ty);
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002333}
Chris Lattner32100602012-01-24 14:04:40 +00002334Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint16_t> Elts){
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002335 Type *Ty = VectorType::get(Type::getInt16Ty(Context), Elts.size());
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002336 const char *Data = reinterpret_cast<const char *>(Elts.data());
2337 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*2), Ty);
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002338}
Chris Lattner32100602012-01-24 14:04:40 +00002339Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint32_t> Elts){
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002340 Type *Ty = VectorType::get(Type::getInt32Ty(Context), Elts.size());
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002341 const char *Data = reinterpret_cast<const char *>(Elts.data());
2342 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*4), Ty);
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002343}
Chris Lattner32100602012-01-24 14:04:40 +00002344Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint64_t> Elts){
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002345 Type *Ty = VectorType::get(Type::getInt64Ty(Context), Elts.size());
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002346 const char *Data = reinterpret_cast<const char *>(Elts.data());
2347 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*8), Ty);
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002348}
Chris Lattner32100602012-01-24 14:04:40 +00002349Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<float> Elts) {
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002350 Type *Ty = VectorType::get(Type::getFloatTy(Context), Elts.size());
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002351 const char *Data = reinterpret_cast<const char *>(Elts.data());
2352 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*4), Ty);
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002353}
Chris Lattner32100602012-01-24 14:04:40 +00002354Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<double> Elts) {
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002355 Type *Ty = VectorType::get(Type::getDoubleTy(Context), Elts.size());
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002356 const char *Data = reinterpret_cast<const char *>(Elts.data());
2357 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*8), Ty);
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002358}
2359
Chris Lattner3c2c9542012-01-25 05:19:54 +00002360Constant *ConstantDataVector::getSplat(unsigned NumElts, Constant *V) {
2361 assert(isElementTypeCompatible(V->getType()) &&
2362 "Element type not compatible with ConstantData");
2363 if (ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
2364 if (CI->getType()->isIntegerTy(8)) {
2365 SmallVector<uint8_t, 16> Elts(NumElts, CI->getZExtValue());
2366 return get(V->getContext(), Elts);
2367 }
2368 if (CI->getType()->isIntegerTy(16)) {
2369 SmallVector<uint16_t, 16> Elts(NumElts, CI->getZExtValue());
2370 return get(V->getContext(), Elts);
2371 }
2372 if (CI->getType()->isIntegerTy(32)) {
2373 SmallVector<uint32_t, 16> Elts(NumElts, CI->getZExtValue());
2374 return get(V->getContext(), Elts);
2375 }
2376 assert(CI->getType()->isIntegerTy(64) && "Unsupported ConstantData type");
2377 SmallVector<uint64_t, 16> Elts(NumElts, CI->getZExtValue());
2378 return get(V->getContext(), Elts);
2379 }
2380
Chris Lattner36c744f2012-01-30 06:21:21 +00002381 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V)) {
2382 if (CFP->getType()->isFloatTy()) {
2383 SmallVector<float, 16> Elts(NumElts, CFP->getValueAPF().convertToFloat());
2384 return get(V->getContext(), Elts);
2385 }
2386 if (CFP->getType()->isDoubleTy()) {
2387 SmallVector<double, 16> Elts(NumElts,
2388 CFP->getValueAPF().convertToDouble());
2389 return get(V->getContext(), Elts);
2390 }
Chris Lattner3c2c9542012-01-25 05:19:54 +00002391 }
Chris Lattner36c744f2012-01-30 06:21:21 +00002392 return ConstantVector::getSplat(NumElts, V);
Chris Lattner3c2c9542012-01-25 05:19:54 +00002393}
2394
2395
Chris Lattner45bb5c52012-01-24 04:43:41 +00002396/// getElementAsInteger - If this is a sequential container of integers (of
2397/// any size), return the specified element in the low bits of a uint64_t.
2398uint64_t ConstantDataSequential::getElementAsInteger(unsigned Elt) const {
2399 assert(isa<IntegerType>(getElementType()) &&
2400 "Accessor can only be used when element is an integer");
2401 const char *EltPtr = getElementPointer(Elt);
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002402
Chris Lattner45bb5c52012-01-24 04:43:41 +00002403 // The data is stored in host byte order, make sure to cast back to the right
2404 // type to load with the right endianness.
Chris Lattner230cdab2012-01-26 00:42:34 +00002405 switch (getElementType()->getIntegerBitWidth()) {
Craig Topper50bee422012-02-05 22:14:15 +00002406 default: llvm_unreachable("Invalid bitwidth for CDS");
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002407 case 8:
2408 return *const_cast<uint8_t *>(reinterpret_cast<const uint8_t *>(EltPtr));
2409 case 16:
2410 return *const_cast<uint16_t *>(reinterpret_cast<const uint16_t *>(EltPtr));
2411 case 32:
2412 return *const_cast<uint32_t *>(reinterpret_cast<const uint32_t *>(EltPtr));
2413 case 64:
2414 return *const_cast<uint64_t *>(reinterpret_cast<const uint64_t *>(EltPtr));
Chris Lattner45bb5c52012-01-24 04:43:41 +00002415 }
2416}
2417
2418/// getElementAsAPFloat - If this is a sequential container of floating point
2419/// type, return the specified element as an APFloat.
2420APFloat ConstantDataSequential::getElementAsAPFloat(unsigned Elt) const {
2421 const char *EltPtr = getElementPointer(Elt);
2422
2423 switch (getElementType()->getTypeID()) {
Nick Lewycky1486ae62012-01-25 03:20:12 +00002424 default:
Craig Topper50bee422012-02-05 22:14:15 +00002425 llvm_unreachable("Accessor can only be used when element is float/double!");
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002426 case Type::FloatTyID: {
2427 const float *FloatPrt = reinterpret_cast<const float *>(EltPtr);
2428 return APFloat(*const_cast<float *>(FloatPrt));
2429 }
2430 case Type::DoubleTyID: {
2431 const double *DoublePtr = reinterpret_cast<const double *>(EltPtr);
2432 return APFloat(*const_cast<double *>(DoublePtr));
2433 }
Chris Lattner45bb5c52012-01-24 04:43:41 +00002434 }
2435}
2436
2437/// getElementAsFloat - If this is an sequential container of floats, return
2438/// the specified element as a float.
2439float ConstantDataSequential::getElementAsFloat(unsigned Elt) const {
2440 assert(getElementType()->isFloatTy() &&
2441 "Accessor can only be used when element is a 'float'");
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002442 const float *EltPtr = reinterpret_cast<const float *>(getElementPointer(Elt));
2443 return *const_cast<float *>(EltPtr);
Chris Lattner45bb5c52012-01-24 04:43:41 +00002444}
2445
2446/// getElementAsDouble - If this is an sequential container of doubles, return
2447/// the specified element as a float.
2448double ConstantDataSequential::getElementAsDouble(unsigned Elt) const {
2449 assert(getElementType()->isDoubleTy() &&
2450 "Accessor can only be used when element is a 'float'");
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002451 const double *EltPtr =
2452 reinterpret_cast<const double *>(getElementPointer(Elt));
2453 return *const_cast<double *>(EltPtr);
Chris Lattner45bb5c52012-01-24 04:43:41 +00002454}
2455
2456/// getElementAsConstant - Return a Constant for a specified index's element.
2457/// Note that this has to compute a new constant to return, so it isn't as
2458/// efficient as getElementAsInteger/Float/Double.
2459Constant *ConstantDataSequential::getElementAsConstant(unsigned Elt) const {
2460 if (getElementType()->isFloatTy() || getElementType()->isDoubleTy())
2461 return ConstantFP::get(getContext(), getElementAsAPFloat(Elt));
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002462
Chris Lattner45bb5c52012-01-24 04:43:41 +00002463 return ConstantInt::get(getElementType(), getElementAsInteger(Elt));
2464}
2465
Chris Lattner62339072012-01-24 09:01:07 +00002466/// isString - This method returns true if this is an array of i8.
2467bool ConstantDataSequential::isString() const {
2468 return isa<ArrayType>(getType()) && getElementType()->isIntegerTy(8);
2469}
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002470
Chris Lattner62339072012-01-24 09:01:07 +00002471/// isCString - This method returns true if the array "isString", ends with a
2472/// nul byte, and does not contains any other nul bytes.
2473bool ConstantDataSequential::isCString() const {
2474 if (!isString())
2475 return false;
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002476
Chris Lattner62339072012-01-24 09:01:07 +00002477 StringRef Str = getAsString();
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002478
Chris Lattner62339072012-01-24 09:01:07 +00002479 // The last value must be nul.
2480 if (Str.back() != 0) return false;
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002481
Chris Lattner62339072012-01-24 09:01:07 +00002482 // Other elements must be non-nul.
2483 return Str.drop_back().find(0) == StringRef::npos;
2484}
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002485
Chris Lattnere150e2d2012-01-26 02:31:22 +00002486/// getSplatValue - If this is a splat constant, meaning that all of the
2487/// elements have the same value, return that value. Otherwise return NULL.
2488Constant *ConstantDataVector::getSplatValue() const {
2489 const char *Base = getRawDataValues().data();
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002490
Chris Lattnere150e2d2012-01-26 02:31:22 +00002491 // Compare elements 1+ to the 0'th element.
2492 unsigned EltSize = getElementByteSize();
2493 for (unsigned i = 1, e = getNumElements(); i != e; ++i)
2494 if (memcmp(Base, Base+i*EltSize, EltSize))
2495 return 0;
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002496
Chris Lattnere150e2d2012-01-26 02:31:22 +00002497 // If they're all the same, return the 0th one as a representative.
2498 return getElementAsConstant(0);
2499}
Chris Lattner04e3b1e2010-03-30 20:48:48 +00002500
Chris Lattner5cbade92005-10-03 21:58:36 +00002501//===----------------------------------------------------------------------===//
2502// replaceUsesOfWithOnConstant implementations
2503
Chris Lattner54984052007-08-21 00:55:23 +00002504/// replaceUsesOfWithOnConstant - Update this constant array to change uses of
2505/// 'From' to be uses of 'To'. This must update the uniquing data structures
2506/// etc.
2507///
2508/// Note that we intentionally replace all uses of From with To here. Consider
2509/// a large array that uses 'From' 1000 times. By handling this case all here,
2510/// ConstantArray::replaceUsesOfWithOnConstant is only invoked once, and that
2511/// single invocation handles all 1000 uses. Handling them one at a time would
2512/// work, but would be really slow because it would have to unique each updated
2513/// array instance.
Chris Lattner2ee11ec2009-10-28 00:01:44 +00002514///
Chris Lattner5cbade92005-10-03 21:58:36 +00002515void ConstantArray::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002516 Use *U) {
Owen Anderson1fd70962009-07-28 18:32:17 +00002517 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2518 Constant *ToC = cast<Constant>(To);
2519
Chris Lattner1afcace2011-07-09 17:41:24 +00002520 LLVMContextImpl *pImpl = getType()->getContext().pImpl;
Owen Anderson1fd70962009-07-28 18:32:17 +00002521
Talin2cb395e2012-02-05 20:54:10 +00002522 SmallVector<Constant*, 8> Values;
2523 LLVMContextImpl::ArrayConstantsTy::LookupKey Lookup;
2524 Lookup.first = cast<ArrayType>(getType());
Owen Anderson1fd70962009-07-28 18:32:17 +00002525 Values.reserve(getNumOperands()); // Build replacement array.
2526
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002527 // Fill values with the modified operands of the constant array. Also,
Owen Anderson1fd70962009-07-28 18:32:17 +00002528 // compute whether this turns into an all-zeros array.
Owen Anderson1fd70962009-07-28 18:32:17 +00002529 unsigned NumUpdated = 0;
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002530
Chris Lattnere150e2d2012-01-26 02:31:22 +00002531 // Keep track of whether all the values in the array are "ToC".
2532 bool AllSame = true;
2533 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2534 Constant *Val = cast<Constant>(O->get());
2535 if (Val == From) {
2536 Val = ToC;
2537 ++NumUpdated;
Owen Anderson1fd70962009-07-28 18:32:17 +00002538 }
Chris Lattnere150e2d2012-01-26 02:31:22 +00002539 Values.push_back(Val);
Talin2cb395e2012-02-05 20:54:10 +00002540 AllSame &= Val == ToC;
Owen Anderson1fd70962009-07-28 18:32:17 +00002541 }
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002542
Owen Anderson1fd70962009-07-28 18:32:17 +00002543 Constant *Replacement = 0;
Chris Lattnere150e2d2012-01-26 02:31:22 +00002544 if (AllSame && ToC->isNullValue()) {
Chris Lattner1afcace2011-07-09 17:41:24 +00002545 Replacement = ConstantAggregateZero::get(getType());
Chris Lattnere150e2d2012-01-26 02:31:22 +00002546 } else if (AllSame && isa<UndefValue>(ToC)) {
2547 Replacement = UndefValue::get(getType());
Owen Anderson1fd70962009-07-28 18:32:17 +00002548 } else {
2549 // Check to see if we have this array type already.
Talin2cb395e2012-02-05 20:54:10 +00002550 Lookup.second = makeArrayRef(Values);
Owen Anderson1fd70962009-07-28 18:32:17 +00002551 LLVMContextImpl::ArrayConstantsTy::MapTy::iterator I =
Talin2cb395e2012-02-05 20:54:10 +00002552 pImpl->ArrayConstants.find(Lookup);
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002553
Talin2cb395e2012-02-05 20:54:10 +00002554 if (I != pImpl->ArrayConstants.map_end()) {
2555 Replacement = I->first;
Owen Anderson1fd70962009-07-28 18:32:17 +00002556 } else {
2557 // Okay, the new shape doesn't exist in the system yet. Instead of
2558 // creating a new constant array, inserting it, replaceallusesof'ing the
2559 // old with the new, then deleting the old... just update the current one
2560 // in place!
Talin2cb395e2012-02-05 20:54:10 +00002561 pImpl->ArrayConstants.remove(this);
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002562
Owen Anderson1fd70962009-07-28 18:32:17 +00002563 // Update to the new value. Optimize for the case when we have a single
2564 // operand that we're changing, but handle bulk updates efficiently.
2565 if (NumUpdated == 1) {
2566 unsigned OperandToUpdate = U - OperandList;
2567 assert(getOperand(OperandToUpdate) == From &&
2568 "ReplaceAllUsesWith broken!");
2569 setOperand(OperandToUpdate, ToC);
2570 } else {
2571 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
2572 if (getOperand(i) == From)
2573 setOperand(i, ToC);
2574 }
Talin2cb395e2012-02-05 20:54:10 +00002575 pImpl->ArrayConstants.insert(this);
Owen Anderson1fd70962009-07-28 18:32:17 +00002576 return;
2577 }
2578 }
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002579
Chris Lattnercea141f2005-10-03 22:51:37 +00002580 // Otherwise, I do need to replace this with an existing value.
Chris Lattner5cbade92005-10-03 21:58:36 +00002581 assert(Replacement != this && "I didn't contain From!");
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002582
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002583 // Everyone using this now uses the replacement.
Chris Lattner678f9e02011-07-15 06:18:52 +00002584 replaceAllUsesWith(Replacement);
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002585
Chris Lattner5cbade92005-10-03 21:58:36 +00002586 // Delete the old constant!
2587 destroyConstant();
2588}
2589
2590void ConstantStruct::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002591 Use *U) {
Owen Anderson8fa33382009-07-27 22:29:26 +00002592 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2593 Constant *ToC = cast<Constant>(To);
2594
2595 unsigned OperandToUpdate = U-OperandList;
2596 assert(getOperand(OperandToUpdate) == From && "ReplaceAllUsesWith broken!");
2597
Talin2cb395e2012-02-05 20:54:10 +00002598 SmallVector<Constant*, 8> Values;
2599 LLVMContextImpl::StructConstantsTy::LookupKey Lookup;
2600 Lookup.first = cast<StructType>(getType());
Owen Anderson8fa33382009-07-27 22:29:26 +00002601 Values.reserve(getNumOperands()); // Build replacement struct.
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002602
2603 // Fill values with the modified operands of the constant struct. Also,
Owen Anderson8fa33382009-07-27 22:29:26 +00002604 // compute whether this turns into an all-zeros struct.
2605 bool isAllZeros = false;
Chris Lattnere150e2d2012-01-26 02:31:22 +00002606 bool isAllUndef = false;
2607 if (ToC->isNullValue()) {
Owen Anderson8fa33382009-07-27 22:29:26 +00002608 isAllZeros = true;
2609 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2610 Constant *Val = cast<Constant>(O->get());
2611 Values.push_back(Val);
2612 if (isAllZeros) isAllZeros = Val->isNullValue();
2613 }
Chris Lattnere150e2d2012-01-26 02:31:22 +00002614 } else if (isa<UndefValue>(ToC)) {
2615 isAllUndef = true;
2616 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2617 Constant *Val = cast<Constant>(O->get());
2618 Values.push_back(Val);
2619 if (isAllUndef) isAllUndef = isa<UndefValue>(Val);
2620 }
2621 } else {
2622 for (Use *O = OperandList, *E = OperandList + getNumOperands(); O != E; ++O)
2623 Values.push_back(cast<Constant>(O->get()));
Owen Anderson8fa33382009-07-27 22:29:26 +00002624 }
2625 Values[OperandToUpdate] = ToC;
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002626
Chris Lattner1afcace2011-07-09 17:41:24 +00002627 LLVMContextImpl *pImpl = getContext().pImpl;
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002628
Owen Anderson8fa33382009-07-27 22:29:26 +00002629 Constant *Replacement = 0;
2630 if (isAllZeros) {
Chris Lattner1afcace2011-07-09 17:41:24 +00002631 Replacement = ConstantAggregateZero::get(getType());
Chris Lattnere150e2d2012-01-26 02:31:22 +00002632 } else if (isAllUndef) {
2633 Replacement = UndefValue::get(getType());
Owen Anderson8fa33382009-07-27 22:29:26 +00002634 } else {
Chris Lattner93604b62010-07-17 06:13:52 +00002635 // Check to see if we have this struct type already.
Talin2cb395e2012-02-05 20:54:10 +00002636 Lookup.second = makeArrayRef(Values);
Owen Anderson8fa33382009-07-27 22:29:26 +00002637 LLVMContextImpl::StructConstantsTy::MapTy::iterator I =
Talin2cb395e2012-02-05 20:54:10 +00002638 pImpl->StructConstants.find(Lookup);
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002639
Talin2cb395e2012-02-05 20:54:10 +00002640 if (I != pImpl->StructConstants.map_end()) {
2641 Replacement = I->first;
Owen Anderson8fa33382009-07-27 22:29:26 +00002642 } else {
2643 // Okay, the new shape doesn't exist in the system yet. Instead of
2644 // creating a new constant struct, inserting it, replaceallusesof'ing the
2645 // old with the new, then deleting the old... just update the current one
2646 // in place!
Talin2cb395e2012-02-05 20:54:10 +00002647 pImpl->StructConstants.remove(this);
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002648
Owen Anderson8fa33382009-07-27 22:29:26 +00002649 // Update to the new value.
2650 setOperand(OperandToUpdate, ToC);
Talin2cb395e2012-02-05 20:54:10 +00002651 pImpl->StructConstants.insert(this);
Owen Anderson8fa33382009-07-27 22:29:26 +00002652 return;
2653 }
2654 }
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002655
Owen Anderson8fa33382009-07-27 22:29:26 +00002656 assert(Replacement != this && "I didn't contain From!");
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002657
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002658 // Everyone using this now uses the replacement.
Chris Lattner678f9e02011-07-15 06:18:52 +00002659 replaceAllUsesWith(Replacement);
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002660
Chris Lattner5cbade92005-10-03 21:58:36 +00002661 // Delete the old constant!
2662 destroyConstant();
2663}
2664
Reid Spencer9d6565a2007-02-15 02:26:10 +00002665void ConstantVector::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002666 Use *U) {
Chris Lattner5cbade92005-10-03 21:58:36 +00002667 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002668
Chris Lattnera7c69882012-01-26 20:40:56 +00002669 SmallVector<Constant*, 8> Values;
Chris Lattner5cbade92005-10-03 21:58:36 +00002670 Values.reserve(getNumOperands()); // Build replacement array...
2671 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
2672 Constant *Val = getOperand(i);
2673 if (Val == From) Val = cast<Constant>(To);
2674 Values.push_back(Val);
2675 }
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002676
Jay Foada0c13842011-06-22 09:10:19 +00002677 Constant *Replacement = get(Values);
Chris Lattner5cbade92005-10-03 21:58:36 +00002678 assert(Replacement != this && "I didn't contain From!");
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002679
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002680 // Everyone using this now uses the replacement.
Chris Lattner678f9e02011-07-15 06:18:52 +00002681 replaceAllUsesWith(Replacement);
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002682
Chris Lattner5cbade92005-10-03 21:58:36 +00002683 // Delete the old constant!
2684 destroyConstant();
2685}
2686
2687void ConstantExpr::replaceUsesOfWithOnConstant(Value *From, Value *ToV,
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002688 Use *U) {
Chris Lattner5cbade92005-10-03 21:58:36 +00002689 assert(isa<Constant>(ToV) && "Cannot make Constant refer to non-constant!");
2690 Constant *To = cast<Constant>(ToV);
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002691
Chris Lattner1a8def62012-01-26 20:37:11 +00002692 SmallVector<Constant*, 8> NewOps;
2693 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
2694 Constant *Op = getOperand(i);
2695 NewOps.push_back(Op == From ? To : Op);
Chris Lattner5cbade92005-10-03 21:58:36 +00002696 }
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002697
Chris Lattner1a8def62012-01-26 20:37:11 +00002698 Constant *Replacement = getWithOperands(NewOps);
Chris Lattner5cbade92005-10-03 21:58:36 +00002699 assert(Replacement != this && "I didn't contain From!");
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002700
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002701 // Everyone using this now uses the replacement.
Chris Lattner678f9e02011-07-15 06:18:52 +00002702 replaceAllUsesWith(Replacement);
Galina Kistanovaa46517e2012-07-13 01:25:27 +00002703
Chris Lattner5cbade92005-10-03 21:58:36 +00002704 // Delete the old constant!
2705 destroyConstant();
Matthijs Kooijman10b9de62008-07-03 07:46:41 +00002706}