blob: f7884c6862a3e32808950bfa2fd4d001b6d1cc7a [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();
49
50 // 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();
58
59 // +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?
Richard Trieu23946fc2011-09-21 03:09:09 +0000120 assert(0 && "Cannot create a null constant of that type!");
Owen Andersona7235ea2009-07-31 20:28:14 +0000121 return 0;
122 }
123}
124
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000125Constant *Constant::getIntegerValue(Type *Ty, const APInt &V) {
126 Type *ScalarTy = Ty->getScalarType();
Dan Gohman43ee5f72009-08-03 22:07:33 +0000127
128 // Create the base integer constant.
129 Constant *C = ConstantInt::get(Ty->getContext(), V);
130
131 // Convert an integer to a pointer, if necessary.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000132 if (PointerType *PTy = dyn_cast<PointerType>(ScalarTy))
Dan Gohman43ee5f72009-08-03 22:07:33 +0000133 C = ConstantExpr::getIntToPtr(C, PTy);
134
135 // Broadcast a scalar to a vector, if necessary.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000136 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattner3c2c9542012-01-25 05:19:54 +0000137 C = ConstantVector::getSplat(VTy->getNumElements(), C);
Dan Gohman43ee5f72009-08-03 22:07:33 +0000138
139 return C;
140}
141
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000142Constant *Constant::getAllOnesValue(Type *Ty) {
143 if (IntegerType *ITy = dyn_cast<IntegerType>(Ty))
Owen Andersona7235ea2009-07-31 20:28:14 +0000144 return ConstantInt::get(Ty->getContext(),
145 APInt::getAllOnesValue(ITy->getBitWidth()));
Nadav Rotem093399c2011-02-17 21:22:27 +0000146
147 if (Ty->isFloatingPointTy()) {
148 APFloat FL = APFloat::getAllOnesValue(Ty->getPrimitiveSizeInBits(),
149 !Ty->isPPC_FP128Ty());
150 return ConstantFP::get(Ty->getContext(), FL);
151 }
152
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000153 VectorType *VTy = cast<VectorType>(Ty);
Chris Lattner3c2c9542012-01-25 05:19:54 +0000154 return ConstantVector::getSplat(VTy->getNumElements(),
155 getAllOnesValue(VTy->getElementType()));
Owen Andersona7235ea2009-07-31 20:28:14 +0000156}
157
Chris Lattner3d5ed222012-01-25 06:16:32 +0000158/// getAggregateElement - For aggregates (struct/array/vector) return the
159/// constant that corresponds to the specified element if possible, or null if
160/// not. This can return null if the element index is a ConstantExpr, or if
161/// 'this' is a constant expr.
162Constant *Constant::getAggregateElement(unsigned Elt) const {
163 if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(this))
164 return Elt < CS->getNumOperands() ? CS->getOperand(Elt) : 0;
165
166 if (const ConstantArray *CA = dyn_cast<ConstantArray>(this))
167 return Elt < CA->getNumOperands() ? CA->getOperand(Elt) : 0;
168
169 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
170 return Elt < CV->getNumOperands() ? CV->getOperand(Elt) : 0;
171
172 if (const ConstantAggregateZero *CAZ =dyn_cast<ConstantAggregateZero>(this))
173 return CAZ->getElementValue(Elt);
174
175 if (const UndefValue *UV = dyn_cast<UndefValue>(this))
176 return UV->getElementValue(Elt);
177
Chris Lattner230cdab2012-01-26 00:42:34 +0000178 if (const ConstantDataSequential *CDS =dyn_cast<ConstantDataSequential>(this))
Chris Lattner3d5ed222012-01-25 06:16:32 +0000179 return CDS->getElementAsConstant(Elt);
180 return 0;
181}
182
183Constant *Constant::getAggregateElement(Constant *Elt) const {
184 assert(isa<IntegerType>(Elt->getType()) && "Index must be an integer");
185 if (ConstantInt *CI = dyn_cast<ConstantInt>(Elt))
186 return getAggregateElement(CI->getZExtValue());
187 return 0;
188}
189
190
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000191void Constant::destroyConstantImpl() {
192 // When a Constant is destroyed, there may be lingering
Chris Lattnerf5ec48d2001-10-13 06:57:33 +0000193 // references to the constant by other constants in the constant pool. These
Misha Brukmanef6a6a62003-08-21 22:14:26 +0000194 // constants are implicitly dependent on the module that is being deleted,
Chris Lattnerf5ec48d2001-10-13 06:57:33 +0000195 // but they don't know that. Because we only find out when the CPV is
196 // deleted, we must now notify all of our users (that should only be
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000197 // Constants) that they are, in fact, invalid now and should be deleted.
Chris Lattnerf5ec48d2001-10-13 06:57:33 +0000198 //
199 while (!use_empty()) {
200 Value *V = use_back();
201#ifndef NDEBUG // Only in -g mode...
Chris Lattner37f077a2009-08-23 04:02:03 +0000202 if (!isa<Constant>(V)) {
David Greened2e63b72010-01-05 01:29:19 +0000203 dbgs() << "While deleting: " << *this
Chris Lattner37f077a2009-08-23 04:02:03 +0000204 << "\n\nUse still stuck around after Def is destroyed: "
205 << *V << "\n\n";
206 }
Chris Lattnerf5ec48d2001-10-13 06:57:33 +0000207#endif
Vikram S. Adve345e0cf2002-07-14 23:13:17 +0000208 assert(isa<Constant>(V) && "References remain to Constant being destroyed");
Chris Lattner230cdab2012-01-26 00:42:34 +0000209 cast<Constant>(V)->destroyConstant();
Chris Lattnerf5ec48d2001-10-13 06:57:33 +0000210
211 // The constant should remove itself from our use list...
Vikram S. Adve345e0cf2002-07-14 23:13:17 +0000212 assert((use_empty() || use_back() != V) && "Constant not removed!");
Chris Lattnerf5ec48d2001-10-13 06:57:33 +0000213 }
214
215 // Value has no outstanding references it is safe to delete it now...
216 delete this;
Chris Lattner1d87bcf2001-10-01 20:11:19 +0000217}
Chris Lattner00950542001-06-06 20:29:01 +0000218
Chris Lattner35b89fa2006-10-20 00:27:06 +0000219/// canTrap - Return true if evaluation of this constant could trap. This is
220/// true for things like constant expressions that could divide by zero.
221bool Constant::canTrap() const {
222 assert(getType()->isFirstClassType() && "Cannot evaluate aggregate vals!");
223 // The only thing that could possibly trap are constant exprs.
224 const ConstantExpr *CE = dyn_cast<ConstantExpr>(this);
225 if (!CE) return false;
226
227 // ConstantExpr traps if any operands can trap.
228 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Chris Lattner0eeb9132009-10-28 05:14:34 +0000229 if (CE->getOperand(i)->canTrap())
Chris Lattner35b89fa2006-10-20 00:27:06 +0000230 return true;
231
232 // Otherwise, only specific operations can trap.
233 switch (CE->getOpcode()) {
234 default:
235 return false;
Reid Spencer1628cec2006-10-26 06:15:43 +0000236 case Instruction::UDiv:
237 case Instruction::SDiv:
238 case Instruction::FDiv:
Reid Spencer0a783f72006-11-02 01:53:59 +0000239 case Instruction::URem:
240 case Instruction::SRem:
241 case Instruction::FRem:
Chris Lattner35b89fa2006-10-20 00:27:06 +0000242 // Div and rem can trap if the RHS is not known to be non-zero.
Chris Lattner0eeb9132009-10-28 05:14:34 +0000243 if (!isa<ConstantInt>(CE->getOperand(1)) ||CE->getOperand(1)->isNullValue())
Chris Lattner35b89fa2006-10-20 00:27:06 +0000244 return true;
245 return false;
246 }
247}
248
Chris Lattner4a7642e2009-11-01 18:11:50 +0000249/// isConstantUsed - Return true if the constant has users other than constant
250/// exprs and other dangling things.
251bool Constant::isConstantUsed() const {
Gabor Greif60ad7812010-03-25 23:06:16 +0000252 for (const_use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI) {
Chris Lattner4a7642e2009-11-01 18:11:50 +0000253 const Constant *UC = dyn_cast<Constant>(*UI);
254 if (UC == 0 || isa<GlobalValue>(UC))
255 return true;
256
257 if (UC->isConstantUsed())
258 return true;
259 }
260 return false;
261}
262
263
Chris Lattner7cf12c72009-07-22 00:05:44 +0000264
265/// getRelocationInfo - This method classifies the entry according to
266/// whether or not it may generate a relocation entry. This must be
267/// conservative, so if it might codegen to a relocatable entry, it should say
268/// so. The return values are:
269///
Chris Lattner083a1e02009-07-24 03:27:21 +0000270/// NoRelocation: This constant pool entry is guaranteed to never have a
271/// relocation applied to it (because it holds a simple constant like
272/// '4').
273/// LocalRelocation: This entry has relocations, but the entries are
274/// guaranteed to be resolvable by the static linker, so the dynamic
275/// linker will never see them.
276/// GlobalRelocations: This entry may have arbitrary relocations.
Chris Lattner7cf12c72009-07-22 00:05:44 +0000277///
278/// FIXME: This really should not be in VMCore.
Chris Lattner083a1e02009-07-24 03:27:21 +0000279Constant::PossibleRelocationsTy Constant::getRelocationInfo() const {
280 if (const GlobalValue *GV = dyn_cast<GlobalValue>(this)) {
Chris Lattner7cf12c72009-07-22 00:05:44 +0000281 if (GV->hasLocalLinkage() || GV->hasHiddenVisibility())
Chris Lattner083a1e02009-07-24 03:27:21 +0000282 return LocalRelocation; // Local to this file/library.
283 return GlobalRelocations; // Global reference.
Anton Korobeynikovab267a22009-03-29 17:13:18 +0000284 }
Chris Lattner7cf12c72009-07-22 00:05:44 +0000285
Chris Lattner5d81bef2009-10-28 04:12:16 +0000286 if (const BlockAddress *BA = dyn_cast<BlockAddress>(this))
287 return BA->getFunction()->getRelocationInfo();
288
Chris Lattner5099b312010-01-03 18:09:40 +0000289 // While raw uses of blockaddress need to be relocated, differences between
290 // two of them don't when they are for labels in the same function. This is a
291 // common idiom when creating a table for the indirect goto extension, so we
292 // handle it efficiently here.
293 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(this))
294 if (CE->getOpcode() == Instruction::Sub) {
295 ConstantExpr *LHS = dyn_cast<ConstantExpr>(CE->getOperand(0));
296 ConstantExpr *RHS = dyn_cast<ConstantExpr>(CE->getOperand(1));
297 if (LHS && RHS &&
298 LHS->getOpcode() == Instruction::PtrToInt &&
299 RHS->getOpcode() == Instruction::PtrToInt &&
300 isa<BlockAddress>(LHS->getOperand(0)) &&
301 isa<BlockAddress>(RHS->getOperand(0)) &&
302 cast<BlockAddress>(LHS->getOperand(0))->getFunction() ==
303 cast<BlockAddress>(RHS->getOperand(0))->getFunction())
304 return NoRelocation;
305 }
306
Chris Lattner083a1e02009-07-24 03:27:21 +0000307 PossibleRelocationsTy Result = NoRelocation;
Evan Chengafe15812007-03-08 00:59:12 +0000308 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Chris Lattner0eeb9132009-10-28 05:14:34 +0000309 Result = std::max(Result,
310 cast<Constant>(getOperand(i))->getRelocationInfo());
Chris Lattner7cf12c72009-07-22 00:05:44 +0000311
312 return Result;
Evan Chengafe15812007-03-08 00:59:12 +0000313}
314
Chris Lattner13fb0db2011-02-18 04:41:42 +0000315/// removeDeadUsersOfConstant - If the specified constantexpr is dead, remove
316/// it. This involves recursively eliminating any dead users of the
317/// constantexpr.
318static bool removeDeadUsersOfConstant(const Constant *C) {
319 if (isa<GlobalValue>(C)) return false; // Cannot remove this
320
321 while (!C->use_empty()) {
322 const Constant *User = dyn_cast<Constant>(C->use_back());
323 if (!User) return false; // Non-constant usage;
324 if (!removeDeadUsersOfConstant(User))
325 return false; // Constant wasn't dead
326 }
327
328 const_cast<Constant*>(C)->destroyConstant();
329 return true;
330}
331
332
333/// removeDeadConstantUsers - If there are any dead constant users dangling
334/// off of this constant, remove them. This method is useful for clients
335/// that want to check to see if a global is unused, but don't want to deal
336/// with potentially dead constants hanging off of the globals.
337void Constant::removeDeadConstantUsers() const {
338 Value::const_use_iterator I = use_begin(), E = use_end();
339 Value::const_use_iterator LastNonDeadUser = E;
340 while (I != E) {
341 const Constant *User = dyn_cast<Constant>(*I);
342 if (User == 0) {
343 LastNonDeadUser = I;
344 ++I;
345 continue;
346 }
347
348 if (!removeDeadUsersOfConstant(User)) {
349 // If the constant wasn't dead, remember that this was the last live use
350 // and move on to the next constant.
351 LastNonDeadUser = I;
352 ++I;
353 continue;
354 }
355
356 // If the constant was dead, then the iterator is invalidated.
357 if (LastNonDeadUser == E) {
358 I = use_begin();
359 if (I == E) break;
360 } else {
361 I = LastNonDeadUser;
362 ++I;
363 }
364 }
365}
366
367
Chris Lattner86381442008-07-10 00:28:11 +0000368
Chris Lattner00950542001-06-06 20:29:01 +0000369//===----------------------------------------------------------------------===//
Chris Lattner6b6f6ba2007-02-20 06:39:57 +0000370// ConstantInt
Chris Lattner00950542001-06-06 20:29:01 +0000371//===----------------------------------------------------------------------===//
372
David Blaikie2d24e2a2011-12-20 02:50:00 +0000373void ConstantInt::anchor() { }
374
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000375ConstantInt::ConstantInt(IntegerType *Ty, const APInt& V)
Chris Lattnereb41bdd2007-02-20 05:55:46 +0000376 : Constant(Ty, ConstantIntVal, 0, 0), Val(V) {
Reid Spencer532d0ce2007-02-26 23:54:03 +0000377 assert(V.getBitWidth() == Ty->getBitWidth() && "Invalid constant for type");
Chris Lattner00950542001-06-06 20:29:01 +0000378}
379
Nick Lewyckyd01f50f2011-03-06 03:36:19 +0000380ConstantInt *ConstantInt::getTrue(LLVMContext &Context) {
Owen Anderson5defacc2009-07-31 17:39:07 +0000381 LLVMContextImpl *pImpl = Context.pImpl;
Benjamin Kramerf601d6d2010-11-20 18:43:35 +0000382 if (!pImpl->TheTrueVal)
383 pImpl->TheTrueVal = ConstantInt::get(Type::getInt1Ty(Context), 1);
384 return pImpl->TheTrueVal;
Owen Anderson5defacc2009-07-31 17:39:07 +0000385}
386
Nick Lewyckyd01f50f2011-03-06 03:36:19 +0000387ConstantInt *ConstantInt::getFalse(LLVMContext &Context) {
Owen Anderson5defacc2009-07-31 17:39:07 +0000388 LLVMContextImpl *pImpl = Context.pImpl;
Benjamin Kramerf601d6d2010-11-20 18:43:35 +0000389 if (!pImpl->TheFalseVal)
390 pImpl->TheFalseVal = ConstantInt::get(Type::getInt1Ty(Context), 0);
391 return pImpl->TheFalseVal;
Owen Anderson5defacc2009-07-31 17:39:07 +0000392}
393
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000394Constant *ConstantInt::getTrue(Type *Ty) {
395 VectorType *VTy = dyn_cast<VectorType>(Ty);
Nick Lewyckyd01f50f2011-03-06 03:36:19 +0000396 if (!VTy) {
397 assert(Ty->isIntegerTy(1) && "True must be i1 or vector of i1.");
398 return ConstantInt::getTrue(Ty->getContext());
399 }
400 assert(VTy->getElementType()->isIntegerTy(1) &&
401 "True must be vector of i1 or i1.");
Chris Lattner3c2c9542012-01-25 05:19:54 +0000402 return ConstantVector::getSplat(VTy->getNumElements(),
403 ConstantInt::getTrue(Ty->getContext()));
Nick Lewyckyd01f50f2011-03-06 03:36:19 +0000404}
405
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000406Constant *ConstantInt::getFalse(Type *Ty) {
407 VectorType *VTy = dyn_cast<VectorType>(Ty);
Nick Lewyckyd01f50f2011-03-06 03:36:19 +0000408 if (!VTy) {
409 assert(Ty->isIntegerTy(1) && "False must be i1 or vector of i1.");
410 return ConstantInt::getFalse(Ty->getContext());
411 }
412 assert(VTy->getElementType()->isIntegerTy(1) &&
413 "False must be vector of i1 or i1.");
Chris Lattner3c2c9542012-01-25 05:19:54 +0000414 return ConstantVector::getSplat(VTy->getNumElements(),
415 ConstantInt::getFalse(Ty->getContext()));
Nick Lewyckyd01f50f2011-03-06 03:36:19 +0000416}
417
Owen Anderson5defacc2009-07-31 17:39:07 +0000418
Owen Andersoneed707b2009-07-24 23:12:02 +0000419// Get a ConstantInt from an APInt. Note that the value stored in the DenseMap
420// as the key, is a DenseMapAPIntKeyInfo::KeyTy which has provided the
421// operator== and operator!= to ensure that the DenseMap doesn't attempt to
422// compare APInt's of different widths, which would violate an APInt class
423// invariant which generates an assertion.
Nick Lewyckyd01f50f2011-03-06 03:36:19 +0000424ConstantInt *ConstantInt::get(LLVMContext &Context, const APInt &V) {
Owen Andersoneed707b2009-07-24 23:12:02 +0000425 // Get the corresponding integer type for the bit width of the value.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000426 IntegerType *ITy = IntegerType::get(Context, V.getBitWidth());
Owen Andersoneed707b2009-07-24 23:12:02 +0000427 // get an existing value or the insertion position
428 DenseMapAPIntKeyInfo::KeyTy Key(V, ITy);
Owen Andersoneed707b2009-07-24 23:12:02 +0000429 ConstantInt *&Slot = Context.pImpl->IntConstants[Key];
Owen Anderson59d5aac2009-10-19 20:11:52 +0000430 if (!Slot) Slot = new ConstantInt(ITy, V);
431 return Slot;
Owen Andersoneed707b2009-07-24 23:12:02 +0000432}
433
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000434Constant *ConstantInt::get(Type *Ty, uint64_t V, bool isSigned) {
Nick Lewyckyd01f50f2011-03-06 03:36:19 +0000435 Constant *C = get(cast<IntegerType>(Ty->getScalarType()), V, isSigned);
Owen Andersoneed707b2009-07-24 23:12:02 +0000436
437 // For vectors, broadcast the value.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000438 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattner3c2c9542012-01-25 05:19:54 +0000439 return ConstantVector::getSplat(VTy->getNumElements(), C);
Owen Andersoneed707b2009-07-24 23:12:02 +0000440
441 return C;
442}
443
Chris Lattnera78fa8c2012-01-27 03:08:05 +0000444ConstantInt *ConstantInt::get(IntegerType *Ty, uint64_t V,
Owen Andersoneed707b2009-07-24 23:12:02 +0000445 bool isSigned) {
446 return get(Ty->getContext(), APInt(Ty->getBitWidth(), V, isSigned));
447}
448
Chris Lattnera78fa8c2012-01-27 03:08:05 +0000449ConstantInt *ConstantInt::getSigned(IntegerType *Ty, int64_t V) {
Owen Andersoneed707b2009-07-24 23:12:02 +0000450 return get(Ty, V, true);
451}
452
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000453Constant *ConstantInt::getSigned(Type *Ty, int64_t V) {
Owen Andersoneed707b2009-07-24 23:12:02 +0000454 return get(Ty, V, true);
455}
456
Chris Lattnera78fa8c2012-01-27 03:08:05 +0000457Constant *ConstantInt::get(Type *Ty, const APInt& V) {
Owen Andersoneed707b2009-07-24 23:12:02 +0000458 ConstantInt *C = get(Ty->getContext(), V);
459 assert(C->getType() == Ty->getScalarType() &&
460 "ConstantInt type doesn't match the type implied by its value!");
461
462 // For vectors, broadcast the value.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000463 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattner3c2c9542012-01-25 05:19:54 +0000464 return ConstantVector::getSplat(VTy->getNumElements(), C);
Owen Andersoneed707b2009-07-24 23:12:02 +0000465
466 return C;
467}
468
Chris Lattnera78fa8c2012-01-27 03:08:05 +0000469ConstantInt *ConstantInt::get(IntegerType* Ty, StringRef Str,
Erick Tryzelaar0e81f662009-08-16 23:36:33 +0000470 uint8_t radix) {
471 return get(Ty->getContext(), APInt(Ty->getBitWidth(), Str, radix));
472}
473
Chris Lattner6b6f6ba2007-02-20 06:39:57 +0000474//===----------------------------------------------------------------------===//
Chris Lattner9b4ee0c2007-02-20 07:17:17 +0000475// ConstantFP
Chris Lattner6b6f6ba2007-02-20 06:39:57 +0000476//===----------------------------------------------------------------------===//
477
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000478static const fltSemantics *TypeToFloatSemantics(Type *Ty) {
Dan Gohmance163392011-12-17 00:04:22 +0000479 if (Ty->isHalfTy())
480 return &APFloat::IEEEhalf;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000481 if (Ty->isFloatTy())
Rafael Espindola87d1f472009-07-15 17:40:42 +0000482 return &APFloat::IEEEsingle;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000483 if (Ty->isDoubleTy())
Rafael Espindola87d1f472009-07-15 17:40:42 +0000484 return &APFloat::IEEEdouble;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000485 if (Ty->isX86_FP80Ty())
Rafael Espindola87d1f472009-07-15 17:40:42 +0000486 return &APFloat::x87DoubleExtended;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000487 else if (Ty->isFP128Ty())
Rafael Espindola87d1f472009-07-15 17:40:42 +0000488 return &APFloat::IEEEquad;
489
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000490 assert(Ty->isPPC_FP128Ty() && "Unknown FP format");
Rafael Espindola87d1f472009-07-15 17:40:42 +0000491 return &APFloat::PPCDoubleDouble;
492}
493
David Blaikie2d24e2a2011-12-20 02:50:00 +0000494void ConstantFP::anchor() { }
495
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000496/// get() - This returns a constant fp for the specified value in the
497/// specified type. This should only be used for simple constant values like
498/// 2.0/1.0 etc, that are known-valid both as double and as the target format.
Chris Lattnera78fa8c2012-01-27 03:08:05 +0000499Constant *ConstantFP::get(Type *Ty, double V) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000500 LLVMContext &Context = Ty->getContext();
501
502 APFloat FV(V);
503 bool ignored;
504 FV.convert(*TypeToFloatSemantics(Ty->getScalarType()),
505 APFloat::rmNearestTiesToEven, &ignored);
506 Constant *C = get(Context, FV);
507
508 // For vectors, broadcast the value.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000509 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattner3c2c9542012-01-25 05:19:54 +0000510 return ConstantVector::getSplat(VTy->getNumElements(), C);
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000511
512 return C;
513}
514
Erick Tryzelaar0e81f662009-08-16 23:36:33 +0000515
Chris Lattnera78fa8c2012-01-27 03:08:05 +0000516Constant *ConstantFP::get(Type *Ty, StringRef Str) {
Erick Tryzelaar0e81f662009-08-16 23:36:33 +0000517 LLVMContext &Context = Ty->getContext();
518
519 APFloat FV(*TypeToFloatSemantics(Ty->getScalarType()), Str);
520 Constant *C = get(Context, FV);
521
522 // For vectors, broadcast the value.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000523 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattner3c2c9542012-01-25 05:19:54 +0000524 return ConstantVector::getSplat(VTy->getNumElements(), C);
Erick Tryzelaar0e81f662009-08-16 23:36:33 +0000525
526 return C;
527}
528
529
Chris Lattner3c2c9542012-01-25 05:19:54 +0000530ConstantFP *ConstantFP::getNegativeZero(Type *Ty) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000531 LLVMContext &Context = Ty->getContext();
Chris Lattner3c2c9542012-01-25 05:19:54 +0000532 APFloat apf = cast<ConstantFP>(Constant::getNullValue(Ty))->getValueAPF();
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000533 apf.changeSign();
534 return get(Context, apf);
535}
536
537
Chris Lattner3c2c9542012-01-25 05:19:54 +0000538Constant *ConstantFP::getZeroValueForNegation(Type *Ty) {
539 Type *ScalarTy = Ty->getScalarType();
540 if (ScalarTy->isFloatingPointTy()) {
541 Constant *C = getNegativeZero(ScalarTy);
542 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
543 return ConstantVector::getSplat(VTy->getNumElements(), C);
544 return C;
545 }
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000546
Owen Andersona7235ea2009-07-31 20:28:14 +0000547 return Constant::getNullValue(Ty);
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000548}
549
550
551// ConstantFP accessors.
552ConstantFP* ConstantFP::get(LLVMContext &Context, const APFloat& V) {
553 DenseMapAPFloatKeyInfo::KeyTy Key(V);
554
555 LLVMContextImpl* pImpl = Context.pImpl;
556
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000557 ConstantFP *&Slot = pImpl->FPConstants[Key];
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000558
559 if (!Slot) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000560 Type *Ty;
Dan Gohmance163392011-12-17 00:04:22 +0000561 if (&V.getSemantics() == &APFloat::IEEEhalf)
562 Ty = Type::getHalfTy(Context);
563 else if (&V.getSemantics() == &APFloat::IEEEsingle)
Owen Anderson59d5aac2009-10-19 20:11:52 +0000564 Ty = Type::getFloatTy(Context);
565 else if (&V.getSemantics() == &APFloat::IEEEdouble)
566 Ty = Type::getDoubleTy(Context);
567 else if (&V.getSemantics() == &APFloat::x87DoubleExtended)
568 Ty = Type::getX86_FP80Ty(Context);
569 else if (&V.getSemantics() == &APFloat::IEEEquad)
570 Ty = Type::getFP128Ty(Context);
571 else {
572 assert(&V.getSemantics() == &APFloat::PPCDoubleDouble &&
573 "Unknown FP format");
574 Ty = Type::getPPC_FP128Ty(Context);
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000575 }
Owen Anderson59d5aac2009-10-19 20:11:52 +0000576 Slot = new ConstantFP(Ty, V);
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000577 }
578
579 return Slot;
580}
581
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000582ConstantFP *ConstantFP::getInfinity(Type *Ty, bool Negative) {
Dan Gohmanf344f7f2009-09-25 23:00:48 +0000583 const fltSemantics &Semantics = *TypeToFloatSemantics(Ty);
584 return ConstantFP::get(Ty->getContext(),
585 APFloat::getInf(Semantics, Negative));
586}
587
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000588ConstantFP::ConstantFP(Type *Ty, const APFloat& V)
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000589 : Constant(Ty, ConstantFPVal, 0, 0), Val(V) {
Chris Lattner288e78f2008-04-09 06:38:30 +0000590 assert(&V.getSemantics() == TypeToFloatSemantics(Ty) &&
591 "FP type Mismatch");
Chris Lattner00950542001-06-06 20:29:01 +0000592}
593
Chris Lattner032c6eb2011-07-15 06:14:08 +0000594bool ConstantFP::isExactlyValue(const APFloat &V) const {
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000595 return Val.bitwiseIsEqual(V);
Chris Lattner9b4ee0c2007-02-20 07:17:17 +0000596}
597
Chris Lattner9b4ee0c2007-02-20 07:17:17 +0000598//===----------------------------------------------------------------------===//
Chris Lattnerff2b7f32012-01-24 05:42:11 +0000599// ConstantAggregateZero Implementation
600//===----------------------------------------------------------------------===//
601
602/// getSequentialElement - If this CAZ has array or vector type, return a zero
603/// with the right element type.
Chris Lattner3d5ed222012-01-25 06:16:32 +0000604Constant *ConstantAggregateZero::getSequentialElement() const {
Chris Lattner230cdab2012-01-26 00:42:34 +0000605 return Constant::getNullValue(getType()->getSequentialElementType());
Chris Lattnerff2b7f32012-01-24 05:42:11 +0000606}
607
608/// getStructElement - If this CAZ has struct type, return a zero with the
609/// right element type for the specified element.
Chris Lattner3d5ed222012-01-25 06:16:32 +0000610Constant *ConstantAggregateZero::getStructElement(unsigned Elt) const {
Chris Lattner230cdab2012-01-26 00:42:34 +0000611 return Constant::getNullValue(getType()->getStructElementType(Elt));
Chris Lattnerff2b7f32012-01-24 05:42:11 +0000612}
613
614/// getElementValue - Return a zero of the right value for the specified GEP
615/// index if we can, otherwise return null (e.g. if C is a ConstantExpr).
Chris Lattner3d5ed222012-01-25 06:16:32 +0000616Constant *ConstantAggregateZero::getElementValue(Constant *C) const {
Chris Lattnerff2b7f32012-01-24 05:42:11 +0000617 if (isa<SequentialType>(getType()))
618 return getSequentialElement();
619 return getStructElement(cast<ConstantInt>(C)->getZExtValue());
620}
621
Chris Lattnerdf390282012-01-24 07:54:10 +0000622/// getElementValue - Return a zero of the right value for the specified GEP
623/// index.
Chris Lattner3d5ed222012-01-25 06:16:32 +0000624Constant *ConstantAggregateZero::getElementValue(unsigned Idx) const {
Chris Lattnerdf390282012-01-24 07:54:10 +0000625 if (isa<SequentialType>(getType()))
626 return getSequentialElement();
627 return getStructElement(Idx);
628}
629
630
Chris Lattnerff2b7f32012-01-24 05:42:11 +0000631//===----------------------------------------------------------------------===//
632// UndefValue Implementation
633//===----------------------------------------------------------------------===//
634
635/// getSequentialElement - If this undef has array or vector type, return an
636/// undef with the right element type.
Chris Lattner3d5ed222012-01-25 06:16:32 +0000637UndefValue *UndefValue::getSequentialElement() const {
Chris Lattner230cdab2012-01-26 00:42:34 +0000638 return UndefValue::get(getType()->getSequentialElementType());
Chris Lattnerff2b7f32012-01-24 05:42:11 +0000639}
640
641/// getStructElement - If this undef has struct type, return a zero with the
642/// right element type for the specified element.
Chris Lattner3d5ed222012-01-25 06:16:32 +0000643UndefValue *UndefValue::getStructElement(unsigned Elt) const {
Chris Lattner230cdab2012-01-26 00:42:34 +0000644 return UndefValue::get(getType()->getStructElementType(Elt));
Chris Lattnerff2b7f32012-01-24 05:42:11 +0000645}
646
647/// getElementValue - Return an undef of the right value for the specified GEP
648/// index if we can, otherwise return null (e.g. if C is a ConstantExpr).
Chris Lattner3d5ed222012-01-25 06:16:32 +0000649UndefValue *UndefValue::getElementValue(Constant *C) const {
Chris Lattnerff2b7f32012-01-24 05:42:11 +0000650 if (isa<SequentialType>(getType()))
651 return getSequentialElement();
652 return getStructElement(cast<ConstantInt>(C)->getZExtValue());
653}
654
Chris Lattnerdf390282012-01-24 07:54:10 +0000655/// getElementValue - Return an undef of the right value for the specified GEP
656/// index.
Chris Lattner3d5ed222012-01-25 06:16:32 +0000657UndefValue *UndefValue::getElementValue(unsigned Idx) const {
Chris Lattnerdf390282012-01-24 07:54:10 +0000658 if (isa<SequentialType>(getType()))
659 return getSequentialElement();
660 return getStructElement(Idx);
661}
662
663
Chris Lattnerff2b7f32012-01-24 05:42:11 +0000664
665//===----------------------------------------------------------------------===//
Chris Lattner9b4ee0c2007-02-20 07:17:17 +0000666// ConstantXXX Classes
667//===----------------------------------------------------------------------===//
668
669
Jay Foad166579e2011-07-25 10:14:44 +0000670ConstantArray::ConstantArray(ArrayType *T, ArrayRef<Constant *> V)
Gabor Greifefe65362008-05-10 08:32:32 +0000671 : Constant(T, ConstantArrayVal,
672 OperandTraits<ConstantArray>::op_end(this) - V.size(),
673 V.size()) {
Alkis Evlogimenose0de1d62004-09-15 02:32:15 +0000674 assert(V.size() == T->getNumElements() &&
675 "Invalid initializer vector for constant array");
Jay Foad166579e2011-07-25 10:14:44 +0000676 for (unsigned i = 0, e = V.size(); i != e; ++i)
677 assert(V[i]->getType() == T->getElementType() &&
Alkis Evlogimenoscad90ad2004-09-10 04:16:59 +0000678 "Initializer for array element doesn't match array element type!");
Jay Foad166579e2011-07-25 10:14:44 +0000679 std::copy(V.begin(), V.end(), op_begin());
Chris Lattner00950542001-06-06 20:29:01 +0000680}
681
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000682Constant *ConstantArray::get(ArrayType *Ty, ArrayRef<Constant*> V) {
Jeffrey Yasskin1fb613c2009-09-30 21:08:08 +0000683 for (unsigned i = 0, e = V.size(); i != e; ++i) {
684 assert(V[i]->getType() == Ty->getElementType() &&
685 "Wrong type in array element initializer");
686 }
Owen Anderson1fd70962009-07-28 18:32:17 +0000687 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
688 // If this is an all-zero array, return a ConstantAggregateZero object
Chris Lattnere150e2d2012-01-26 02:31:22 +0000689 bool isAllZero = true;
690 bool isUndef = false;
Owen Anderson1fd70962009-07-28 18:32:17 +0000691 if (!V.empty()) {
692 Constant *C = V[0];
Chris Lattnere150e2d2012-01-26 02:31:22 +0000693 isAllZero = C->isNullValue();
694 isUndef = isa<UndefValue>(C);
695
696 if (isAllZero || isUndef)
697 for (unsigned i = 1, e = V.size(); i != e; ++i)
698 if (V[i] != C) {
699 isAllZero = false;
700 isUndef = false;
701 break;
702 }
Owen Anderson1fd70962009-07-28 18:32:17 +0000703 }
Chris Lattnere150e2d2012-01-26 02:31:22 +0000704
705 if (isAllZero)
706 return ConstantAggregateZero::get(Ty);
707 if (isUndef)
708 return UndefValue::get(Ty);
709 return pImpl->ArrayConstants.getOrCreate(Ty, V);
Owen Anderson1fd70962009-07-28 18:32:17 +0000710}
711
Owen Anderson1fd70962009-07-28 18:32:17 +0000712/// ConstantArray::get(const string&) - Return an array that is initialized to
713/// contain the specified string. If length is zero then a null terminator is
714/// added to the specified string so that it may be used in a natural way.
715/// Otherwise, the length parameter specifies how much of the string to use
716/// and it won't be null terminated.
717///
Chris Lattnerf067d582011-02-07 16:40:21 +0000718Constant *ConstantArray::get(LLVMContext &Context, StringRef Str,
Owen Anderson1d0be152009-08-13 21:58:54 +0000719 bool AddNull) {
Chris Lattnera7c69882012-01-26 20:40:56 +0000720 SmallVector<Constant*, 8> ElementVals;
Benjamin Kramerad2b04c2010-08-01 11:43:26 +0000721 ElementVals.reserve(Str.size() + size_t(AddNull));
Owen Anderson1fd70962009-07-28 18:32:17 +0000722 for (unsigned i = 0; i < Str.size(); ++i)
Owen Anderson1d0be152009-08-13 21:58:54 +0000723 ElementVals.push_back(ConstantInt::get(Type::getInt8Ty(Context), Str[i]));
Owen Anderson1fd70962009-07-28 18:32:17 +0000724
725 // Add a null terminator to the string...
Chris Lattner32100602012-01-24 14:04:40 +0000726 if (AddNull)
Owen Anderson1d0be152009-08-13 21:58:54 +0000727 ElementVals.push_back(ConstantInt::get(Type::getInt8Ty(Context), 0));
Owen Anderson1fd70962009-07-28 18:32:17 +0000728
Owen Anderson1d0be152009-08-13 21:58:54 +0000729 ArrayType *ATy = ArrayType::get(Type::getInt8Ty(Context), ElementVals.size());
Owen Anderson1fd70962009-07-28 18:32:17 +0000730 return get(ATy, ElementVals);
731}
732
Chris Lattnerb065b062011-06-20 04:01:31 +0000733/// getTypeForElements - Return an anonymous struct type to use for a constant
734/// with the specified set of elements. The list must not be empty.
735StructType *ConstantStruct::getTypeForElements(LLVMContext &Context,
736 ArrayRef<Constant*> V,
737 bool Packed) {
Jay Foad5fdd6c82011-07-12 14:06:48 +0000738 SmallVector<Type*, 16> EltTypes;
Chris Lattnerb065b062011-06-20 04:01:31 +0000739 for (unsigned i = 0, e = V.size(); i != e; ++i)
740 EltTypes.push_back(V[i]->getType());
741
742 return StructType::get(Context, EltTypes, Packed);
743}
744
745
746StructType *ConstantStruct::getTypeForElements(ArrayRef<Constant*> V,
747 bool Packed) {
748 assert(!V.empty() &&
749 "ConstantStruct::getTypeForElements cannot be called on empty list");
750 return getTypeForElements(V[0]->getContext(), V, Packed);
751}
752
753
Jay Foad166579e2011-07-25 10:14:44 +0000754ConstantStruct::ConstantStruct(StructType *T, ArrayRef<Constant *> V)
Gabor Greifefe65362008-05-10 08:32:32 +0000755 : Constant(T, ConstantStructVal,
756 OperandTraits<ConstantStruct>::op_end(this) - V.size(),
757 V.size()) {
Chris Lattnerf4ef8db2011-08-07 04:18:48 +0000758 assert(V.size() == T->getNumElements() &&
Vikram S. Adve345e0cf2002-07-14 23:13:17 +0000759 "Invalid initializer vector for constant structure");
Jay Foad166579e2011-07-25 10:14:44 +0000760 for (unsigned i = 0, e = V.size(); i != e; ++i)
761 assert((T->isOpaque() || V[i]->getType() == T->getElementType(i)) &&
Chris Lattnerb8438892003-06-02 17:42:47 +0000762 "Initializer for struct element doesn't match struct element type!");
Jay Foad166579e2011-07-25 10:14:44 +0000763 std::copy(V.begin(), V.end(), op_begin());
Chris Lattner00950542001-06-06 20:29:01 +0000764}
765
Owen Anderson8fa33382009-07-27 22:29:26 +0000766// ConstantStruct accessors.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000767Constant *ConstantStruct::get(StructType *ST, ArrayRef<Constant*> V) {
Chris Lattner1afcace2011-07-09 17:41:24 +0000768 assert((ST->isOpaque() || ST->getNumElements() == V.size()) &&
769 "Incorrect # elements specified to ConstantStruct::get");
Chris Lattnere150e2d2012-01-26 02:31:22 +0000770
771 // Create a ConstantAggregateZero value if all elements are zeros.
772 bool isZero = true;
773 bool isUndef = false;
774
775 if (!V.empty()) {
776 isUndef = isa<UndefValue>(V[0]);
777 isZero = V[0]->isNullValue();
778 if (isUndef || isZero) {
779 for (unsigned i = 0, e = V.size(); i != e; ++i) {
780 if (!V[i]->isNullValue())
781 isZero = false;
782 if (!isa<UndefValue>(V[i]))
783 isUndef = false;
784 }
785 }
786 }
787 if (isZero)
788 return ConstantAggregateZero::get(ST);
789 if (isUndef)
790 return UndefValue::get(ST);
791
792 return ST->getContext().pImpl->StructConstants.getOrCreate(ST, V);
Owen Anderson8fa33382009-07-27 22:29:26 +0000793}
794
Chris Lattnerf4ef8db2011-08-07 04:18:48 +0000795Constant *ConstantStruct::get(StructType *T, ...) {
Talin41ee4e52011-02-28 23:53:27 +0000796 va_list ap;
Chris Lattnerb065b062011-06-20 04:01:31 +0000797 SmallVector<Constant*, 8> Values;
798 va_start(ap, T);
799 while (Constant *Val = va_arg(ap, llvm::Constant*))
Talin41ee4e52011-02-28 23:53:27 +0000800 Values.push_back(Val);
Talinbdcd7662011-03-01 18:00:49 +0000801 va_end(ap);
Chris Lattnerb065b062011-06-20 04:01:31 +0000802 return get(T, Values);
Talin41ee4e52011-02-28 23:53:27 +0000803}
804
Jay Foad166579e2011-07-25 10:14:44 +0000805ConstantVector::ConstantVector(VectorType *T, ArrayRef<Constant *> V)
Gabor Greifefe65362008-05-10 08:32:32 +0000806 : Constant(T, ConstantVectorVal,
807 OperandTraits<ConstantVector>::op_end(this) - V.size(),
808 V.size()) {
Jay Foad166579e2011-07-25 10:14:44 +0000809 for (size_t i = 0, e = V.size(); i != e; i++)
810 assert(V[i]->getType() == T->getElementType() &&
Dan Gohmanfa73ea22007-05-24 14:36:04 +0000811 "Initializer for vector element doesn't match vector element type!");
Jay Foad166579e2011-07-25 10:14:44 +0000812 std::copy(V.begin(), V.end(), op_begin());
Brian Gaeke715c90b2004-08-20 06:00:58 +0000813}
814
Owen Andersonaf7ec972009-07-28 21:19:26 +0000815// ConstantVector accessors.
Jay Foada0c13842011-06-22 09:10:19 +0000816Constant *ConstantVector::get(ArrayRef<Constant*> V) {
Jay Foad9afc5272011-01-27 14:44:55 +0000817 assert(!V.empty() && "Vectors can't be empty");
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000818 VectorType *T = VectorType::get(V.front()->getType(), V.size());
Chris Lattner2ca5c862011-02-15 00:14:00 +0000819 LLVMContextImpl *pImpl = T->getContext().pImpl;
Jay Foad9afc5272011-01-27 14:44:55 +0000820
Chris Lattner2ca5c862011-02-15 00:14:00 +0000821 // If this is an all-undef or all-zero vector, return a
Owen Andersonaf7ec972009-07-28 21:19:26 +0000822 // ConstantAggregateZero or UndefValue.
823 Constant *C = V[0];
824 bool isZero = C->isNullValue();
825 bool isUndef = isa<UndefValue>(C);
826
827 if (isZero || isUndef) {
828 for (unsigned i = 1, e = V.size(); i != e; ++i)
829 if (V[i] != C) {
830 isZero = isUndef = false;
831 break;
832 }
833 }
834
835 if (isZero)
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000836 return ConstantAggregateZero::get(T);
Owen Andersonaf7ec972009-07-28 21:19:26 +0000837 if (isUndef)
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000838 return UndefValue::get(T);
Chris Lattner36c744f2012-01-30 06:21:21 +0000839
840 // Check to see if all of the elements are ConstantFP or ConstantInt and if
841 // the element type is compatible with ConstantDataVector. If so, use it.
842 if (ConstantDataSequential::isElementTypeCompatible(C->getType()) &&
843 (isa<ConstantFP>(C) || isa<ConstantInt>(C))) {
844 // We speculatively build the elements here even if it turns out that there
845 // is a constantexpr or something else weird in the array, since it is so
846 // uncommon for that to happen.
847 if (ConstantInt *CI = dyn_cast<ConstantInt>(C)) {
848 if (CI->getType()->isIntegerTy(8)) {
849 SmallVector<uint8_t, 16> Elts;
850 for (unsigned i = 0, e = V.size(); i != e; ++i)
851 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
852 Elts.push_back(CI->getZExtValue());
853 else
854 break;
855 if (Elts.size() == V.size())
856 return ConstantDataVector::get(C->getContext(), Elts);
857 } else if (CI->getType()->isIntegerTy(16)) {
858 SmallVector<uint16_t, 16> Elts;
859 for (unsigned i = 0, e = V.size(); i != e; ++i)
860 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
861 Elts.push_back(CI->getZExtValue());
862 else
863 break;
864 if (Elts.size() == V.size())
865 return ConstantDataVector::get(C->getContext(), Elts);
866 } else if (CI->getType()->isIntegerTy(32)) {
867 SmallVector<uint32_t, 16> Elts;
868 for (unsigned i = 0, e = V.size(); i != e; ++i)
869 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
870 Elts.push_back(CI->getZExtValue());
871 else
872 break;
873 if (Elts.size() == V.size())
874 return ConstantDataVector::get(C->getContext(), Elts);
875 } else if (CI->getType()->isIntegerTy(64)) {
876 SmallVector<uint64_t, 16> Elts;
877 for (unsigned i = 0, e = V.size(); i != e; ++i)
878 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
879 Elts.push_back(CI->getZExtValue());
880 else
881 break;
882 if (Elts.size() == V.size())
883 return ConstantDataVector::get(C->getContext(), Elts);
884 }
885 }
Owen Andersonaf7ec972009-07-28 21:19:26 +0000886
Chris Lattner36c744f2012-01-30 06:21:21 +0000887 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
888 if (CFP->getType()->isFloatTy()) {
889 SmallVector<float, 16> Elts;
890 for (unsigned i = 0, e = V.size(); i != e; ++i)
891 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V[i]))
892 Elts.push_back(CFP->getValueAPF().convertToFloat());
893 else
894 break;
895 if (Elts.size() == V.size())
896 return ConstantDataVector::get(C->getContext(), Elts);
897 } else if (CFP->getType()->isDoubleTy()) {
898 SmallVector<double, 16> Elts;
899 for (unsigned i = 0, e = V.size(); i != e; ++i)
900 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V[i]))
901 Elts.push_back(CFP->getValueAPF().convertToDouble());
902 else
903 break;
904 if (Elts.size() == V.size())
905 return ConstantDataVector::get(C->getContext(), Elts);
906 }
907 }
908 }
909
910 // Otherwise, the element type isn't compatible with ConstantDataVector, or
911 // the operand list constants a ConstantExpr or something else strange.
Owen Andersonaf7ec972009-07-28 21:19:26 +0000912 return pImpl->VectorConstants.getOrCreate(T, V);
913}
914
Chris Lattner3c2c9542012-01-25 05:19:54 +0000915Constant *ConstantVector::getSplat(unsigned NumElts, Constant *V) {
Chris Lattner36c744f2012-01-30 06:21:21 +0000916 // If this splat is compatible with ConstantDataVector, use it instead of
917 // ConstantVector.
918 if ((isa<ConstantFP>(V) || isa<ConstantInt>(V)) &&
919 ConstantDataSequential::isElementTypeCompatible(V->getType()))
920 return ConstantDataVector::getSplat(NumElts, V);
921
Chris Lattner3c2c9542012-01-25 05:19:54 +0000922 SmallVector<Constant*, 32> Elts(NumElts, V);
923 return get(Elts);
924}
925
926
Reid Spencer3da59db2006-11-27 01:05:10 +0000927// Utility function for determining if a ConstantExpr is a CastOp or not. This
928// can't be inline because we don't want to #include Instruction.h into
929// Constant.h
930bool ConstantExpr::isCast() const {
931 return Instruction::isCast(getOpcode());
932}
933
Reid Spencer077d0eb2006-12-04 05:19:50 +0000934bool ConstantExpr::isCompare() const {
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +0000935 return getOpcode() == Instruction::ICmp || getOpcode() == Instruction::FCmp;
Reid Spencer077d0eb2006-12-04 05:19:50 +0000936}
937
Dan Gohmane6992f72009-09-10 23:37:55 +0000938bool ConstantExpr::isGEPWithNoNotionalOverIndexing() const {
939 if (getOpcode() != Instruction::GetElementPtr) return false;
940
941 gep_type_iterator GEPI = gep_type_begin(this), E = gep_type_end(this);
Oscar Fuentesee56c422010-08-02 06:00:15 +0000942 User::const_op_iterator OI = llvm::next(this->op_begin());
Dan Gohmane6992f72009-09-10 23:37:55 +0000943
944 // Skip the first index, as it has no static limit.
945 ++GEPI;
946 ++OI;
947
948 // The remaining indices must be compile-time known integers within the
949 // bounds of the corresponding notional static array types.
950 for (; GEPI != E; ++GEPI, ++OI) {
951 ConstantInt *CI = dyn_cast<ConstantInt>(*OI);
952 if (!CI) return false;
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000953 if (ArrayType *ATy = dyn_cast<ArrayType>(*GEPI))
Dan Gohmane6992f72009-09-10 23:37:55 +0000954 if (CI->getValue().getActiveBits() > 64 ||
955 CI->getZExtValue() >= ATy->getNumElements())
956 return false;
957 }
958
959 // All the indices checked out.
960 return true;
961}
962
Dan Gohman81a0c0b2008-05-31 00:58:22 +0000963bool ConstantExpr::hasIndices() const {
964 return getOpcode() == Instruction::ExtractValue ||
965 getOpcode() == Instruction::InsertValue;
966}
967
Jay Foadd30aa5a2011-04-13 15:22:40 +0000968ArrayRef<unsigned> ConstantExpr::getIndices() const {
Dan Gohman81a0c0b2008-05-31 00:58:22 +0000969 if (const ExtractValueConstantExpr *EVCE =
970 dyn_cast<ExtractValueConstantExpr>(this))
971 return EVCE->Indices;
Dan Gohman1a203572008-06-23 16:39:44 +0000972
973 return cast<InsertValueConstantExpr>(this)->Indices;
Dan Gohman81a0c0b2008-05-31 00:58:22 +0000974}
975
Reid Spencer728b6db2006-12-03 05:48:19 +0000976unsigned ConstantExpr::getPredicate() const {
Chris Lattner3e194732011-07-17 06:01:30 +0000977 assert(isCompare());
Chris Lattnerb7daa842007-10-18 16:26:24 +0000978 return ((const CompareConstantExpr*)this)->predicate;
Reid Spencer728b6db2006-12-03 05:48:19 +0000979}
Chris Lattnerf4ba6c72001-10-03 06:12:09 +0000980
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000981/// getWithOperandReplaced - Return a constant expression identical to this
982/// one, but with the specified operand set to the specified value.
Reid Spencer3da59db2006-11-27 01:05:10 +0000983Constant *
984ConstantExpr::getWithOperandReplaced(unsigned OpNo, Constant *Op) const {
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000985 assert(Op->getType() == getOperand(OpNo)->getType() &&
986 "Replacing operand with value of different type!");
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000987 if (getOperand(OpNo) == Op)
988 return const_cast<ConstantExpr*>(this);
Chris Lattner1a8def62012-01-26 20:37:11 +0000989
990 SmallVector<Constant*, 8> NewOps;
991 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
992 NewOps.push_back(i == OpNo ? Op : getOperand(i));
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000993
Chris Lattner1a8def62012-01-26 20:37:11 +0000994 return getWithOperands(NewOps);
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000995}
996
997/// getWithOperands - This returns the current constant expression with the
Chris Lattner1afcace2011-07-09 17:41:24 +0000998/// operands replaced with the specified values. The specified array must
999/// have the same number of operands as our current one.
Chris Lattnerb88a7fb2006-07-14 22:20:01 +00001000Constant *ConstantExpr::
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001001getWithOperands(ArrayRef<Constant*> Ops, Type *Ty) const {
Jay Foadb81e4572011-04-13 13:46:01 +00001002 assert(Ops.size() == getNumOperands() && "Operand count mismatch!");
Chris Lattner1afcace2011-07-09 17:41:24 +00001003 bool AnyChange = Ty != getType();
1004 for (unsigned i = 0; i != Ops.size(); ++i)
Chris Lattnerb88a7fb2006-07-14 22:20:01 +00001005 AnyChange |= Ops[i] != getOperand(i);
Chris Lattner1afcace2011-07-09 17:41:24 +00001006
Chris Lattnerb88a7fb2006-07-14 22:20:01 +00001007 if (!AnyChange) // No operands changed, return self.
1008 return const_cast<ConstantExpr*>(this);
1009
1010 switch (getOpcode()) {
Reid Spencer3da59db2006-11-27 01:05:10 +00001011 case Instruction::Trunc:
1012 case Instruction::ZExt:
1013 case Instruction::SExt:
1014 case Instruction::FPTrunc:
1015 case Instruction::FPExt:
1016 case Instruction::UIToFP:
1017 case Instruction::SIToFP:
1018 case Instruction::FPToUI:
1019 case Instruction::FPToSI:
1020 case Instruction::PtrToInt:
1021 case Instruction::IntToPtr:
1022 case Instruction::BitCast:
Chris Lattner1afcace2011-07-09 17:41:24 +00001023 return ConstantExpr::getCast(getOpcode(), Ops[0], Ty);
Chris Lattnerb88a7fb2006-07-14 22:20:01 +00001024 case Instruction::Select:
1025 return ConstantExpr::getSelect(Ops[0], Ops[1], Ops[2]);
1026 case Instruction::InsertElement:
1027 return ConstantExpr::getInsertElement(Ops[0], Ops[1], Ops[2]);
1028 case Instruction::ExtractElement:
1029 return ConstantExpr::getExtractElement(Ops[0], Ops[1]);
Chris Lattner1a8def62012-01-26 20:37:11 +00001030 case Instruction::InsertValue:
1031 return ConstantExpr::getInsertValue(Ops[0], Ops[1], getIndices());
1032 case Instruction::ExtractValue:
1033 return ConstantExpr::getExtractValue(Ops[0], getIndices());
Chris Lattnerb88a7fb2006-07-14 22:20:01 +00001034 case Instruction::ShuffleVector:
1035 return ConstantExpr::getShuffleVector(Ops[0], Ops[1], Ops[2]);
Chris Lattnerf9021ff2007-02-19 20:01:23 +00001036 case Instruction::GetElementPtr:
Chris Lattner1a8def62012-01-26 20:37:11 +00001037 return ConstantExpr::getGetElementPtr(Ops[0], Ops.slice(1),
1038 cast<GEPOperator>(this)->isInBounds());
Reid Spencere4d87aa2006-12-23 06:05:41 +00001039 case Instruction::ICmp:
1040 case Instruction::FCmp:
1041 return ConstantExpr::getCompare(getPredicate(), Ops[0], Ops[1]);
Chris Lattnerb88a7fb2006-07-14 22:20:01 +00001042 default:
1043 assert(getNumOperands() == 2 && "Must be binary operator?");
Chris Lattnercafe9bb2009-12-29 02:14:09 +00001044 return ConstantExpr::get(getOpcode(), Ops[0], Ops[1], SubclassOptionalData);
Chris Lattner1fe8f6b2006-07-14 19:37:40 +00001045 }
1046}
1047
Chris Lattner00950542001-06-06 20:29:01 +00001048
1049//===----------------------------------------------------------------------===//
Chris Lattner00950542001-06-06 20:29:01 +00001050// isValueValidForType implementations
1051
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001052bool ConstantInt::isValueValidForType(Type *Ty, uint64_t Val) {
Chris Lattner230cdab2012-01-26 00:42:34 +00001053 unsigned NumBits = Ty->getIntegerBitWidth(); // assert okay
1054 if (Ty->isIntegerTy(1))
Reid Spencera54b7cb2007-01-12 07:05:14 +00001055 return Val == 0 || Val == 1;
Reid Spencer554cec62007-02-05 23:47:56 +00001056 if (NumBits >= 64)
Reid Spencera54b7cb2007-01-12 07:05:14 +00001057 return true; // always true, has to fit in largest type
1058 uint64_t Max = (1ll << NumBits) - 1;
1059 return Val <= Max;
Reid Spencer9b11d512006-12-19 01:28:19 +00001060}
1061
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001062bool ConstantInt::isValueValidForType(Type *Ty, int64_t Val) {
Chris Lattner230cdab2012-01-26 00:42:34 +00001063 unsigned NumBits = Ty->getIntegerBitWidth();
1064 if (Ty->isIntegerTy(1))
Reid Spencerc1030572007-01-19 21:13:56 +00001065 return Val == 0 || Val == 1 || Val == -1;
Reid Spencer554cec62007-02-05 23:47:56 +00001066 if (NumBits >= 64)
Reid Spencera54b7cb2007-01-12 07:05:14 +00001067 return true; // always true, has to fit in largest type
1068 int64_t Min = -(1ll << (NumBits-1));
1069 int64_t Max = (1ll << (NumBits-1)) - 1;
1070 return (Val >= Min && Val <= Max);
Chris Lattner00950542001-06-06 20:29:01 +00001071}
1072
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001073bool ConstantFP::isValueValidForType(Type *Ty, const APFloat& Val) {
Dale Johannesenf04afdb2007-08-30 00:23:21 +00001074 // convert modifies in place, so make a copy.
1075 APFloat Val2 = APFloat(Val);
Dale Johannesen23a98552008-10-09 23:00:39 +00001076 bool losesInfo;
Chris Lattnerf70c22b2004-06-17 18:19:28 +00001077 switch (Ty->getTypeID()) {
Chris Lattner00950542001-06-06 20:29:01 +00001078 default:
1079 return false; // These can't be represented as floating point!
1080
Dale Johannesenf04afdb2007-08-30 00:23:21 +00001081 // FIXME rounding mode needs to be more flexible
Dan Gohmance163392011-12-17 00:04:22 +00001082 case Type::HalfTyID: {
1083 if (&Val2.getSemantics() == &APFloat::IEEEhalf)
1084 return true;
1085 Val2.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven, &losesInfo);
1086 return !losesInfo;
1087 }
Dale Johannesen23a98552008-10-09 23:00:39 +00001088 case Type::FloatTyID: {
1089 if (&Val2.getSemantics() == &APFloat::IEEEsingle)
1090 return true;
1091 Val2.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven, &losesInfo);
1092 return !losesInfo;
1093 }
1094 case Type::DoubleTyID: {
Dan Gohmance163392011-12-17 00:04:22 +00001095 if (&Val2.getSemantics() == &APFloat::IEEEhalf ||
1096 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen23a98552008-10-09 23:00:39 +00001097 &Val2.getSemantics() == &APFloat::IEEEdouble)
1098 return true;
1099 Val2.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, &losesInfo);
1100 return !losesInfo;
1101 }
Dale Johannesenebbc95d2007-08-09 22:51:36 +00001102 case Type::X86_FP80TyID:
Dan Gohmance163392011-12-17 00:04:22 +00001103 return &Val2.getSemantics() == &APFloat::IEEEhalf ||
1104 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen9d5f4562007-09-12 03:30:33 +00001105 &Val2.getSemantics() == &APFloat::IEEEdouble ||
1106 &Val2.getSemantics() == &APFloat::x87DoubleExtended;
Dale Johannesenebbc95d2007-08-09 22:51:36 +00001107 case Type::FP128TyID:
Dan Gohmance163392011-12-17 00:04:22 +00001108 return &Val2.getSemantics() == &APFloat::IEEEhalf ||
1109 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen9d5f4562007-09-12 03:30:33 +00001110 &Val2.getSemantics() == &APFloat::IEEEdouble ||
1111 &Val2.getSemantics() == &APFloat::IEEEquad;
Dale Johannesena471c2e2007-10-11 18:07:22 +00001112 case Type::PPC_FP128TyID:
Dan Gohmance163392011-12-17 00:04:22 +00001113 return &Val2.getSemantics() == &APFloat::IEEEhalf ||
1114 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesena471c2e2007-10-11 18:07:22 +00001115 &Val2.getSemantics() == &APFloat::IEEEdouble ||
1116 &Val2.getSemantics() == &APFloat::PPCDoubleDouble;
Chris Lattner00950542001-06-06 20:29:01 +00001117 }
Chris Lattnerd74ea2b2006-05-24 17:04:05 +00001118}
Chris Lattner37bf6302001-07-20 19:16:02 +00001119
Chris Lattnerff2b7f32012-01-24 05:42:11 +00001120
Chris Lattner531daef2001-09-07 16:46:31 +00001121//===----------------------------------------------------------------------===//
Chris Lattner531daef2001-09-07 16:46:31 +00001122// Factory Function Implementation
1123
Chris Lattner9df0fb42012-01-23 15:20:12 +00001124ConstantAggregateZero *ConstantAggregateZero::get(Type *Ty) {
Chris Lattner61c70e92010-08-28 04:09:24 +00001125 assert((Ty->isStructTy() || Ty->isArrayTy() || Ty->isVectorTy()) &&
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001126 "Cannot create an aggregate zero of non-aggregate type!");
1127
Chris Lattner9df0fb42012-01-23 15:20:12 +00001128 ConstantAggregateZero *&Entry = Ty->getContext().pImpl->CAZConstants[Ty];
1129 if (Entry == 0)
1130 Entry = new ConstantAggregateZero(Ty);
1131
1132 return Entry;
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001133}
1134
Chris Lattnerff2b7f32012-01-24 05:42:11 +00001135/// destroyConstant - Remove the constant from the constant table.
Dan Gohman0f8b53f2009-03-03 02:55:14 +00001136///
Owen Anderson04fb7c32009-06-20 00:24:58 +00001137void ConstantAggregateZero::destroyConstant() {
Chris Lattner9df0fb42012-01-23 15:20:12 +00001138 getContext().pImpl->CAZConstants.erase(getType());
Chris Lattner40bbeb52004-02-15 05:53:04 +00001139 destroyConstantImpl();
1140}
1141
Dan Gohman0f8b53f2009-03-03 02:55:14 +00001142/// destroyConstant - Remove the constant from the constant table...
1143///
Owen Anderson04fb7c32009-06-20 00:24:58 +00001144void ConstantArray::destroyConstant() {
Chris Lattner1afcace2011-07-09 17:41:24 +00001145 getType()->getContext().pImpl->ArrayConstants.remove(this);
Chris Lattner02ec5ed2003-05-23 20:03:32 +00001146 destroyConstantImpl();
1147}
1148
Reid Spencer3d10b0b2007-01-26 07:37:34 +00001149/// isString - This method returns true if the array is an array of i8, and
1150/// if the elements of the array are all ConstantInt's.
Chris Lattner13cfdea2004-01-14 17:06:38 +00001151bool ConstantArray::isString() const {
Reid Spencer3d10b0b2007-01-26 07:37:34 +00001152 // Check the element type for i8...
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001153 if (!getType()->getElementType()->isIntegerTy(8))
Chris Lattner13cfdea2004-01-14 17:06:38 +00001154 return false;
1155 // Check the elements to make sure they are all integers, not constant
1156 // expressions.
1157 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
1158 if (!isa<ConstantInt>(getOperand(i)))
1159 return false;
1160 return true;
1161}
1162
Evan Cheng22c70302006-10-26 19:15:05 +00001163/// isCString - This method returns true if the array is a string (see
Dan Gohman0f8b53f2009-03-03 02:55:14 +00001164/// isString) and it ends in a null byte \\0 and does not contains any other
Evan Cheng22c70302006-10-26 19:15:05 +00001165/// null bytes except its terminator.
Owen Anderson1ca29d32009-07-13 21:27:19 +00001166bool ConstantArray::isCString() const {
Reid Spencer3d10b0b2007-01-26 07:37:34 +00001167 // Check the element type for i8...
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001168 if (!getType()->getElementType()->isIntegerTy(8))
Evan Chengabf63452006-10-26 21:48:03 +00001169 return false;
Owen Anderson1ca29d32009-07-13 21:27:19 +00001170
Evan Chengabf63452006-10-26 21:48:03 +00001171 // Last element must be a null.
Owen Anderson1ca29d32009-07-13 21:27:19 +00001172 if (!getOperand(getNumOperands()-1)->isNullValue())
Evan Chengabf63452006-10-26 21:48:03 +00001173 return false;
1174 // Other elements must be non-null integers.
1175 for (unsigned i = 0, e = getNumOperands()-1; i != e; ++i) {
1176 if (!isa<ConstantInt>(getOperand(i)))
Evan Cheng22c70302006-10-26 19:15:05 +00001177 return false;
Owen Anderson1ca29d32009-07-13 21:27:19 +00001178 if (getOperand(i)->isNullValue())
Evan Chengabf63452006-10-26 21:48:03 +00001179 return false;
1180 }
Evan Cheng22c70302006-10-26 19:15:05 +00001181 return true;
1182}
1183
1184
Jay Foad4f910542011-06-28 08:24:19 +00001185/// convertToString - Helper function for getAsString() and getAsCString().
Chris Lattner3e194732011-07-17 06:01:30 +00001186static std::string convertToString(const User *U, unsigned len) {
Jay Foad4f910542011-06-28 08:24:19 +00001187 std::string Result;
1188 Result.reserve(len);
1189 for (unsigned i = 0; i != len; ++i)
1190 Result.push_back((char)cast<ConstantInt>(U->getOperand(i))->getZExtValue());
1191 return Result;
1192}
1193
1194/// getAsString - If this array is isString(), then this method converts the
1195/// array to an std::string and returns it. Otherwise, it asserts out.
Dan Gohman0f8b53f2009-03-03 02:55:14 +00001196///
Chris Lattner93aeea32002-08-26 17:53:56 +00001197std::string ConstantArray::getAsString() const {
Chris Lattner13cfdea2004-01-14 17:06:38 +00001198 assert(isString() && "Not a string!");
Jay Foad4f910542011-06-28 08:24:19 +00001199 return convertToString(this, getNumOperands());
1200}
1201
1202
1203/// getAsCString - If this array is isCString(), then this method converts the
1204/// array (without the trailing null byte) to an std::string and returns it.
1205/// Otherwise, it asserts out.
1206///
1207std::string ConstantArray::getAsCString() const {
1208 assert(isCString() && "Not a string!");
1209 return convertToString(this, getNumOperands() - 1);
Chris Lattner93aeea32002-08-26 17:53:56 +00001210}
1211
1212
Chris Lattnere9bb2df2001-12-03 22:26:30 +00001213//---- ConstantStruct::get() implementation...
Chris Lattner531daef2001-09-07 16:46:31 +00001214//
Chris Lattnered468e372003-10-05 00:17:43 +00001215
Chris Lattnerf5ec48d2001-10-13 06:57:33 +00001216// destroyConstant - Remove the constant from the constant table...
Chris Lattner6a57baa2001-10-03 15:39:36 +00001217//
Owen Anderson04fb7c32009-06-20 00:24:58 +00001218void ConstantStruct::destroyConstant() {
Chris Lattner1afcace2011-07-09 17:41:24 +00001219 getType()->getContext().pImpl->StructConstants.remove(this);
Chris Lattnerf5ec48d2001-10-13 06:57:33 +00001220 destroyConstantImpl();
1221}
Chris Lattner6a57baa2001-10-03 15:39:36 +00001222
Brian Gaeke715c90b2004-08-20 06:00:58 +00001223// destroyConstant - Remove the constant from the constant table...
1224//
Owen Anderson04fb7c32009-06-20 00:24:58 +00001225void ConstantVector::destroyConstant() {
Chris Lattner1afcace2011-07-09 17:41:24 +00001226 getType()->getContext().pImpl->VectorConstants.remove(this);
Brian Gaeke715c90b2004-08-20 06:00:58 +00001227 destroyConstantImpl();
1228}
1229
Dan Gohman3b7cf0a2007-10-17 17:51:30 +00001230/// getSplatValue - If this is a splat constant, where all of the
1231/// elements have the same value, return that value. Otherwise return null.
Duncan Sands7681c6d2011-02-01 08:39:12 +00001232Constant *ConstantVector::getSplatValue() const {
Dan Gohman3b7cf0a2007-10-17 17:51:30 +00001233 // Check out first element.
1234 Constant *Elt = getOperand(0);
1235 // Then make sure all remaining elements point to the same value.
1236 for (unsigned I = 1, E = getNumOperands(); I < E; ++I)
Chris Lattner3e194732011-07-17 06:01:30 +00001237 if (getOperand(I) != Elt)
1238 return 0;
Dan Gohman3b7cf0a2007-10-17 17:51:30 +00001239 return Elt;
1240}
1241
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001242//---- ConstantPointerNull::get() implementation.
Chris Lattnerf5ec48d2001-10-13 06:57:33 +00001243//
Chris Lattner02ec5ed2003-05-23 20:03:32 +00001244
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001245ConstantPointerNull *ConstantPointerNull::get(PointerType *Ty) {
Chris Lattner9df0fb42012-01-23 15:20:12 +00001246 ConstantPointerNull *&Entry = Ty->getContext().pImpl->CPNConstants[Ty];
1247 if (Entry == 0)
1248 Entry = new ConstantPointerNull(Ty);
1249
1250 return Entry;
Chris Lattner6a57baa2001-10-03 15:39:36 +00001251}
1252
Chris Lattner41661fd2002-08-18 00:40:04 +00001253// destroyConstant - Remove the constant from the constant table...
1254//
Owen Anderson04fb7c32009-06-20 00:24:58 +00001255void ConstantPointerNull::destroyConstant() {
Chris Lattner9df0fb42012-01-23 15:20:12 +00001256 getContext().pImpl->CPNConstants.erase(getType());
1257 // Free the constant and any dangling references to it.
Chris Lattner41661fd2002-08-18 00:40:04 +00001258 destroyConstantImpl();
1259}
1260
1261
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001262//---- UndefValue::get() implementation.
Chris Lattnerb9f18592004-10-16 18:07:16 +00001263//
1264
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001265UndefValue *UndefValue::get(Type *Ty) {
Chris Lattner9df0fb42012-01-23 15:20:12 +00001266 UndefValue *&Entry = Ty->getContext().pImpl->UVConstants[Ty];
1267 if (Entry == 0)
1268 Entry = new UndefValue(Ty);
1269
1270 return Entry;
Chris Lattnerb9f18592004-10-16 18:07:16 +00001271}
1272
1273// destroyConstant - Remove the constant from the constant table.
1274//
Owen Anderson04fb7c32009-06-20 00:24:58 +00001275void UndefValue::destroyConstant() {
Chris Lattner9df0fb42012-01-23 15:20:12 +00001276 // Free the constant and any dangling references to it.
1277 getContext().pImpl->UVConstants.erase(getType());
Chris Lattnerb9f18592004-10-16 18:07:16 +00001278 destroyConstantImpl();
1279}
1280
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001281//---- BlockAddress::get() implementation.
1282//
1283
1284BlockAddress *BlockAddress::get(BasicBlock *BB) {
1285 assert(BB->getParent() != 0 && "Block must have a parent");
1286 return get(BB->getParent(), BB);
1287}
1288
1289BlockAddress *BlockAddress::get(Function *F, BasicBlock *BB) {
1290 BlockAddress *&BA =
1291 F->getContext().pImpl->BlockAddresses[std::make_pair(F, BB)];
1292 if (BA == 0)
1293 BA = new BlockAddress(F, BB);
1294
1295 assert(BA->getFunction() == F && "Basic block moved between functions");
1296 return BA;
1297}
1298
1299BlockAddress::BlockAddress(Function *F, BasicBlock *BB)
1300: Constant(Type::getInt8PtrTy(F->getContext()), Value::BlockAddressVal,
1301 &Op<0>(), 2) {
Chris Lattnerd0ec2352009-11-01 03:03:03 +00001302 setOperand(0, F);
1303 setOperand(1, BB);
Chris Lattnercdfc9402009-11-01 01:27:45 +00001304 BB->AdjustBlockAddressRefCount(1);
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001305}
1306
1307
1308// destroyConstant - Remove the constant from the constant table.
1309//
1310void BlockAddress::destroyConstant() {
Chris Lattner1afcace2011-07-09 17:41:24 +00001311 getFunction()->getType()->getContext().pImpl
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001312 ->BlockAddresses.erase(std::make_pair(getFunction(), getBasicBlock()));
Chris Lattnercdfc9402009-11-01 01:27:45 +00001313 getBasicBlock()->AdjustBlockAddressRefCount(-1);
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001314 destroyConstantImpl();
1315}
1316
1317void BlockAddress::replaceUsesOfWithOnConstant(Value *From, Value *To, Use *U) {
1318 // This could be replacing either the Basic Block or the Function. In either
1319 // case, we have to remove the map entry.
1320 Function *NewF = getFunction();
1321 BasicBlock *NewBB = getBasicBlock();
1322
1323 if (U == &Op<0>())
1324 NewF = cast<Function>(To);
1325 else
1326 NewBB = cast<BasicBlock>(To);
1327
1328 // See if the 'new' entry already exists, if not, just update this in place
1329 // and return early.
1330 BlockAddress *&NewBA =
1331 getContext().pImpl->BlockAddresses[std::make_pair(NewF, NewBB)];
1332 if (NewBA == 0) {
Chris Lattnerd0ec2352009-11-01 03:03:03 +00001333 getBasicBlock()->AdjustBlockAddressRefCount(-1);
1334
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001335 // Remove the old entry, this can't cause the map to rehash (just a
1336 // tombstone will get added).
1337 getContext().pImpl->BlockAddresses.erase(std::make_pair(getFunction(),
1338 getBasicBlock()));
1339 NewBA = this;
Chris Lattnerd0ec2352009-11-01 03:03:03 +00001340 setOperand(0, NewF);
1341 setOperand(1, NewBB);
1342 getBasicBlock()->AdjustBlockAddressRefCount(1);
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001343 return;
1344 }
1345
1346 // Otherwise, I do need to replace this with an existing value.
1347 assert(NewBA != this && "I didn't contain From!");
1348
1349 // Everyone using this now uses the replacement.
Chris Lattner678f9e02011-07-15 06:18:52 +00001350 replaceAllUsesWith(NewBA);
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001351
1352 destroyConstant();
1353}
1354
1355//---- ConstantExpr::get() implementations.
Vikram S. Adve345e0cf2002-07-14 23:13:17 +00001356//
Reid Spencer79e21d32006-12-31 05:26:44 +00001357
Reid Spencer3da59db2006-11-27 01:05:10 +00001358/// This is a utility function to handle folding of casts and lookup of the
Duncan Sands66a1a052008-03-30 19:38:55 +00001359/// cast in the ExprConstants map. It is used by the various get* methods below.
Reid Spencer3da59db2006-11-27 01:05:10 +00001360static inline Constant *getFoldedCast(
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001361 Instruction::CastOps opc, Constant *C, Type *Ty) {
Chris Lattner9eacf8a2003-10-07 22:19:19 +00001362 assert(Ty->isFirstClassType() && "Cannot cast to an aggregate type!");
Reid Spencer3da59db2006-11-27 01:05:10 +00001363 // Fold a few common cases
Chris Lattnerb29d5962010-02-01 20:48:08 +00001364 if (Constant *FC = ConstantFoldCastInstruction(opc, C, Ty))
Reid Spencer3da59db2006-11-27 01:05:10 +00001365 return FC;
Chris Lattnerd628f6a2003-04-17 19:24:48 +00001366
Owen Andersond03eecd2009-08-04 20:25:11 +00001367 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
1368
Vikram S. Adved0b1bb02002-07-15 18:19:33 +00001369 // Look up the constant in the table first to ensure uniqueness
Chris Lattner9bc02a42003-05-13 21:37:02 +00001370 std::vector<Constant*> argVec(1, C);
Reid Spencer077d0eb2006-12-04 05:19:50 +00001371 ExprMapKeyType Key(opc, argVec);
Owen Anderson3e456ab2009-06-17 18:40:29 +00001372
Owen Andersond03eecd2009-08-04 20:25:11 +00001373 return pImpl->ExprConstants.getOrCreate(Ty, Key);
Vikram S. Adve345e0cf2002-07-14 23:13:17 +00001374}
Reid Spencer7858b332006-12-05 19:14:13 +00001375
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001376Constant *ConstantExpr::getCast(unsigned oc, Constant *C, Type *Ty) {
Reid Spencer3da59db2006-11-27 01:05:10 +00001377 Instruction::CastOps opc = Instruction::CastOps(oc);
1378 assert(Instruction::isCast(opc) && "opcode out of range");
1379 assert(C && Ty && "Null arguments to getCast");
Chris Lattner0b68a002010-01-26 21:51:43 +00001380 assert(CastInst::castIsValid(opc, C, Ty) && "Invalid constantexpr cast!");
Reid Spencer3da59db2006-11-27 01:05:10 +00001381
1382 switch (opc) {
Chris Lattner0b68a002010-01-26 21:51:43 +00001383 default:
1384 llvm_unreachable("Invalid cast opcode");
Chris Lattner0b68a002010-01-26 21:51:43 +00001385 case Instruction::Trunc: return getTrunc(C, Ty);
1386 case Instruction::ZExt: return getZExt(C, Ty);
1387 case Instruction::SExt: return getSExt(C, Ty);
1388 case Instruction::FPTrunc: return getFPTrunc(C, Ty);
1389 case Instruction::FPExt: return getFPExtend(C, Ty);
1390 case Instruction::UIToFP: return getUIToFP(C, Ty);
1391 case Instruction::SIToFP: return getSIToFP(C, Ty);
1392 case Instruction::FPToUI: return getFPToUI(C, Ty);
1393 case Instruction::FPToSI: return getFPToSI(C, Ty);
1394 case Instruction::PtrToInt: return getPtrToInt(C, Ty);
1395 case Instruction::IntToPtr: return getIntToPtr(C, Ty);
1396 case Instruction::BitCast: return getBitCast(C, Ty);
Chris Lattnerf5ac6c22005-01-01 15:59:57 +00001397 }
Reid Spencer7858b332006-12-05 19:14:13 +00001398}
1399
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001400Constant *ConstantExpr::getZExtOrBitCast(Constant *C, Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001401 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3b490632010-04-12 22:12:29 +00001402 return getBitCast(C, Ty);
1403 return getZExt(C, Ty);
Reid Spencer848414e2006-12-04 20:17:56 +00001404}
1405
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001406Constant *ConstantExpr::getSExtOrBitCast(Constant *C, Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001407 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3b490632010-04-12 22:12:29 +00001408 return getBitCast(C, Ty);
1409 return getSExt(C, Ty);
Reid Spencer848414e2006-12-04 20:17:56 +00001410}
1411
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001412Constant *ConstantExpr::getTruncOrBitCast(Constant *C, Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001413 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3b490632010-04-12 22:12:29 +00001414 return getBitCast(C, Ty);
1415 return getTrunc(C, Ty);
Reid Spencer848414e2006-12-04 20:17:56 +00001416}
1417
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001418Constant *ConstantExpr::getPointerCast(Constant *S, Type *Ty) {
Duncan Sands1df98592010-02-16 11:11:14 +00001419 assert(S->getType()->isPointerTy() && "Invalid cast");
1420 assert((Ty->isIntegerTy() || Ty->isPointerTy()) && "Invalid cast");
Reid Spencerc0459fb2006-12-05 03:25:26 +00001421
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001422 if (Ty->isIntegerTy())
Dan Gohman3b490632010-04-12 22:12:29 +00001423 return getPtrToInt(S, Ty);
1424 return getBitCast(S, Ty);
Reid Spencerc0459fb2006-12-05 03:25:26 +00001425}
1426
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001427Constant *ConstantExpr::getIntegerCast(Constant *C, Type *Ty,
Reid Spencer84f3eab2006-12-12 00:51:07 +00001428 bool isSigned) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001429 assert(C->getType()->isIntOrIntVectorTy() &&
1430 Ty->isIntOrIntVectorTy() && "Invalid cast");
Dan Gohman6de29f82009-06-15 22:12:54 +00001431 unsigned SrcBits = C->getType()->getScalarSizeInBits();
1432 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer84f3eab2006-12-12 00:51:07 +00001433 Instruction::CastOps opcode =
1434 (SrcBits == DstBits ? Instruction::BitCast :
1435 (SrcBits > DstBits ? Instruction::Trunc :
1436 (isSigned ? Instruction::SExt : Instruction::ZExt)));
1437 return getCast(opcode, C, Ty);
1438}
1439
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001440Constant *ConstantExpr::getFPCast(Constant *C, Type *Ty) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001441 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer84f3eab2006-12-12 00:51:07 +00001442 "Invalid cast");
Dan Gohman6de29f82009-06-15 22:12:54 +00001443 unsigned SrcBits = C->getType()->getScalarSizeInBits();
1444 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencerf25212a2006-12-12 05:38:50 +00001445 if (SrcBits == DstBits)
1446 return C; // Avoid a useless cast
Reid Spencer84f3eab2006-12-12 00:51:07 +00001447 Instruction::CastOps opcode =
Jay Foad9afc5272011-01-27 14:44:55 +00001448 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt);
Reid Spencer84f3eab2006-12-12 00:51:07 +00001449 return getCast(opcode, C, Ty);
1450}
1451
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001452Constant *ConstantExpr::getTrunc(Constant *C, Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001453#ifndef NDEBUG
1454 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1455 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1456#endif
1457 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001458 assert(C->getType()->isIntOrIntVectorTy() && "Trunc operand must be integer");
1459 assert(Ty->isIntOrIntVectorTy() && "Trunc produces only integral");
Dan Gohman6de29f82009-06-15 22:12:54 +00001460 assert(C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
Reid Spencer3da59db2006-11-27 01:05:10 +00001461 "SrcTy must be larger than DestTy for Trunc!");
1462
Owen Anderson04fb7c32009-06-20 00:24:58 +00001463 return getFoldedCast(Instruction::Trunc, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001464}
1465
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001466Constant *ConstantExpr::getSExt(Constant *C, Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001467#ifndef NDEBUG
1468 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1469 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1470#endif
1471 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001472 assert(C->getType()->isIntOrIntVectorTy() && "SExt operand must be integral");
1473 assert(Ty->isIntOrIntVectorTy() && "SExt produces only integer");
Dan Gohman6de29f82009-06-15 22:12:54 +00001474 assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer3da59db2006-11-27 01:05:10 +00001475 "SrcTy must be smaller than DestTy for SExt!");
1476
Owen Anderson04fb7c32009-06-20 00:24:58 +00001477 return getFoldedCast(Instruction::SExt, C, Ty);
Chris Lattnerd144f422004-04-04 23:20:30 +00001478}
1479
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001480Constant *ConstantExpr::getZExt(Constant *C, Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001481#ifndef NDEBUG
1482 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1483 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1484#endif
1485 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001486 assert(C->getType()->isIntOrIntVectorTy() && "ZEXt operand must be integral");
1487 assert(Ty->isIntOrIntVectorTy() && "ZExt produces only integer");
Dan Gohman6de29f82009-06-15 22:12:54 +00001488 assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer3da59db2006-11-27 01:05:10 +00001489 "SrcTy must be smaller than DestTy for ZExt!");
1490
Owen Anderson04fb7c32009-06-20 00:24:58 +00001491 return getFoldedCast(Instruction::ZExt, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001492}
1493
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001494Constant *ConstantExpr::getFPTrunc(Constant *C, Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001495#ifndef NDEBUG
1496 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1497 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1498#endif
1499 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001500 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Dan Gohman6de29f82009-06-15 22:12:54 +00001501 C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
Reid Spencer3da59db2006-11-27 01:05:10 +00001502 "This is an illegal floating point truncation!");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001503 return getFoldedCast(Instruction::FPTrunc, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001504}
1505
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001506Constant *ConstantExpr::getFPExtend(Constant *C, Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001507#ifndef NDEBUG
1508 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1509 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1510#endif
1511 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001512 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Dan Gohman6de29f82009-06-15 22:12:54 +00001513 C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer3da59db2006-11-27 01:05:10 +00001514 "This is an illegal floating point extension!");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001515 return getFoldedCast(Instruction::FPExt, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001516}
1517
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001518Constant *ConstantExpr::getUIToFP(Constant *C, Type *Ty) {
Devang Patelb6dc9352008-11-03 23:20:04 +00001519#ifndef NDEBUG
Nate Begemanb348d182007-11-17 03:58:34 +00001520 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1521 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Patelb6dc9352008-11-03 23:20:04 +00001522#endif
Nate Begemanb348d182007-11-17 03:58:34 +00001523 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001524 assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() &&
Nate Begemanb348d182007-11-17 03:58:34 +00001525 "This is an illegal uint to floating point cast!");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001526 return getFoldedCast(Instruction::UIToFP, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001527}
1528
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001529Constant *ConstantExpr::getSIToFP(Constant *C, Type *Ty) {
Devang Patelb6dc9352008-11-03 23:20:04 +00001530#ifndef NDEBUG
Nate Begemanb348d182007-11-17 03:58:34 +00001531 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1532 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Patelb6dc9352008-11-03 23:20:04 +00001533#endif
Nate Begemanb348d182007-11-17 03:58:34 +00001534 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001535 assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer3da59db2006-11-27 01:05:10 +00001536 "This is an illegal sint to floating point cast!");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001537 return getFoldedCast(Instruction::SIToFP, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001538}
1539
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001540Constant *ConstantExpr::getFPToUI(Constant *C, Type *Ty) {
Devang Patelb6dc9352008-11-03 23:20:04 +00001541#ifndef NDEBUG
Nate Begemanb348d182007-11-17 03:58:34 +00001542 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1543 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Patelb6dc9352008-11-03 23:20:04 +00001544#endif
Nate Begemanb348d182007-11-17 03:58:34 +00001545 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001546 assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() &&
Nate Begemanb348d182007-11-17 03:58:34 +00001547 "This is an illegal floating point to uint cast!");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001548 return getFoldedCast(Instruction::FPToUI, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001549}
1550
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001551Constant *ConstantExpr::getFPToSI(Constant *C, Type *Ty) {
Devang Patelb6dc9352008-11-03 23:20:04 +00001552#ifndef NDEBUG
Nate Begemanb348d182007-11-17 03:58:34 +00001553 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1554 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Patelb6dc9352008-11-03 23:20:04 +00001555#endif
Nate Begemanb348d182007-11-17 03:58:34 +00001556 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001557 assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() &&
Nate Begemanb348d182007-11-17 03:58:34 +00001558 "This is an illegal floating point to sint cast!");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001559 return getFoldedCast(Instruction::FPToSI, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001560}
1561
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001562Constant *ConstantExpr::getPtrToInt(Constant *C, Type *DstTy) {
Nadav Rotem16087692011-12-05 06:29:09 +00001563 assert(C->getType()->getScalarType()->isPointerTy() &&
1564 "PtrToInt source must be pointer or pointer vector");
1565 assert(DstTy->getScalarType()->isIntegerTy() &&
1566 "PtrToInt destination must be integer or integer vector");
Chris Lattneraf7b4fb2012-01-25 01:32:59 +00001567 assert(isa<VectorType>(C->getType()) == isa<VectorType>(DstTy));
Nick Lewycky1486ae62012-01-25 03:20:12 +00001568 if (isa<VectorType>(C->getType()))
Chris Lattner230cdab2012-01-26 00:42:34 +00001569 assert(C->getType()->getVectorNumElements()==DstTy->getVectorNumElements()&&
Chris Lattneraf7b4fb2012-01-25 01:32:59 +00001570 "Invalid cast between a different number of vector elements");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001571 return getFoldedCast(Instruction::PtrToInt, C, DstTy);
Reid Spencer3da59db2006-11-27 01:05:10 +00001572}
1573
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001574Constant *ConstantExpr::getIntToPtr(Constant *C, Type *DstTy) {
Nadav Rotem16087692011-12-05 06:29:09 +00001575 assert(C->getType()->getScalarType()->isIntegerTy() &&
1576 "IntToPtr source must be integer or integer vector");
1577 assert(DstTy->getScalarType()->isPointerTy() &&
1578 "IntToPtr destination must be a pointer or pointer vector");
Chris Lattneraf7b4fb2012-01-25 01:32:59 +00001579 assert(isa<VectorType>(C->getType()) == isa<VectorType>(DstTy));
Nick Lewycky1486ae62012-01-25 03:20:12 +00001580 if (isa<VectorType>(C->getType()))
Chris Lattner230cdab2012-01-26 00:42:34 +00001581 assert(C->getType()->getVectorNumElements()==DstTy->getVectorNumElements()&&
Chris Lattneraf7b4fb2012-01-25 01:32:59 +00001582 "Invalid cast between a different number of vector elements");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001583 return getFoldedCast(Instruction::IntToPtr, C, DstTy);
Reid Spencer3da59db2006-11-27 01:05:10 +00001584}
1585
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001586Constant *ConstantExpr::getBitCast(Constant *C, Type *DstTy) {
Chris Lattner0b68a002010-01-26 21:51:43 +00001587 assert(CastInst::castIsValid(Instruction::BitCast, C, DstTy) &&
1588 "Invalid constantexpr bitcast!");
Chris Lattner8c7f24a2009-03-21 06:55:54 +00001589
1590 // It is common to ask for a bitcast of a value to its own type, handle this
1591 // speedily.
1592 if (C->getType() == DstTy) return C;
1593
Owen Anderson04fb7c32009-06-20 00:24:58 +00001594 return getFoldedCast(Instruction::BitCast, C, DstTy);
Chris Lattnerd144f422004-04-04 23:20:30 +00001595}
1596
Chris Lattnereaf79802011-07-09 18:23:52 +00001597Constant *ConstantExpr::get(unsigned Opcode, Constant *C1, Constant *C2,
1598 unsigned Flags) {
1599 // Check the operands for consistency first.
Reid Spencer0a783f72006-11-02 01:53:59 +00001600 assert(Opcode >= Instruction::BinaryOpsBegin &&
1601 Opcode < Instruction::BinaryOpsEnd &&
Chris Lattnerf31f5832003-05-21 17:49:25 +00001602 "Invalid opcode in binary constant expression");
1603 assert(C1->getType() == C2->getType() &&
1604 "Operand types in binary constant expression should match");
Owen Anderson31c36f02009-06-17 20:10:08 +00001605
Chris Lattner91b362b2004-08-17 17:28:46 +00001606#ifndef NDEBUG
1607 switch (Opcode) {
Dan Gohmanae3a0be2009-06-04 22:49:04 +00001608 case Instruction::Add:
Reid Spencer0a783f72006-11-02 01:53:59 +00001609 case Instruction::Sub:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00001610 case Instruction::Mul:
Chris Lattner91b362b2004-08-17 17:28:46 +00001611 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001612 assert(C1->getType()->isIntOrIntVectorTy() &&
Dan Gohmanae3a0be2009-06-04 22:49:04 +00001613 "Tried to create an integer operation on a non-integer type!");
1614 break;
1615 case Instruction::FAdd:
1616 case Instruction::FSub:
1617 case Instruction::FMul:
1618 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001619 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohmanae3a0be2009-06-04 22:49:04 +00001620 "Tried to create a floating-point operation on a "
1621 "non-floating-point type!");
Chris Lattner91b362b2004-08-17 17:28:46 +00001622 break;
Reid Spencer1628cec2006-10-26 06:15:43 +00001623 case Instruction::UDiv:
1624 case Instruction::SDiv:
1625 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001626 assert(C1->getType()->isIntOrIntVectorTy() &&
Reid Spencer1628cec2006-10-26 06:15:43 +00001627 "Tried to create an arithmetic operation on a non-arithmetic type!");
1628 break;
1629 case Instruction::FDiv:
1630 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001631 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohmanf57478f2009-06-15 22:25:12 +00001632 "Tried to create an arithmetic operation on a non-arithmetic type!");
Reid Spencer1628cec2006-10-26 06:15:43 +00001633 break;
Reid Spencer0a783f72006-11-02 01:53:59 +00001634 case Instruction::URem:
1635 case Instruction::SRem:
1636 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001637 assert(C1->getType()->isIntOrIntVectorTy() &&
Reid Spencer0a783f72006-11-02 01:53:59 +00001638 "Tried to create an arithmetic operation on a non-arithmetic type!");
1639 break;
1640 case Instruction::FRem:
1641 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001642 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohmanf57478f2009-06-15 22:25:12 +00001643 "Tried to create an arithmetic operation on a non-arithmetic type!");
Reid Spencer0a783f72006-11-02 01:53:59 +00001644 break;
Chris Lattner91b362b2004-08-17 17:28:46 +00001645 case Instruction::And:
1646 case Instruction::Or:
1647 case Instruction::Xor:
1648 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001649 assert(C1->getType()->isIntOrIntVectorTy() &&
Misha Brukman1bae2912005-01-27 06:46:38 +00001650 "Tried to create a logical operation on a non-integral type!");
Chris Lattner91b362b2004-08-17 17:28:46 +00001651 break;
Chris Lattner91b362b2004-08-17 17:28:46 +00001652 case Instruction::Shl:
Reid Spencer3822ff52006-11-08 06:47:33 +00001653 case Instruction::LShr:
1654 case Instruction::AShr:
Reid Spencer832254e2007-02-02 02:16:23 +00001655 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001656 assert(C1->getType()->isIntOrIntVectorTy() &&
Chris Lattner91b362b2004-08-17 17:28:46 +00001657 "Tried to create a shift operation on a non-integer type!");
1658 break;
1659 default:
1660 break;
1661 }
1662#endif
1663
Chris Lattnereaf79802011-07-09 18:23:52 +00001664 if (Constant *FC = ConstantFoldBinaryInstruction(Opcode, C1, C2))
1665 return FC; // Fold a few common cases.
1666
1667 std::vector<Constant*> argVec(1, C1);
1668 argVec.push_back(C2);
1669 ExprMapKeyType Key(Opcode, argVec, 0, Flags);
1670
1671 LLVMContextImpl *pImpl = C1->getContext().pImpl;
1672 return pImpl->ExprConstants.getOrCreate(C1->getType(), Key);
Reid Spencer67263fe2006-12-04 21:35:24 +00001673}
1674
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001675Constant *ConstantExpr::getSizeOf(Type* Ty) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00001676 // sizeof is implemented as: (i64) gep (Ty*)null, 1
1677 // Note that a non-inbounds gep is used, as null isn't within any object.
Owen Anderson1d0be152009-08-13 21:58:54 +00001678 Constant *GEPIdx = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
Owen Andersonbaf3c402009-07-29 18:55:55 +00001679 Constant *GEP = getGetElementPtr(
Jay Foaddab3d292011-07-21 14:31:17 +00001680 Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx);
Dan Gohman3b490632010-04-12 22:12:29 +00001681 return getPtrToInt(GEP,
1682 Type::getInt64Ty(Ty->getContext()));
Owen Andersonbaf3c402009-07-29 18:55:55 +00001683}
1684
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001685Constant *ConstantExpr::getAlignOf(Type* Ty) {
Dan Gohman0f5efe52010-01-28 02:15:55 +00001686 // alignof is implemented as: (i64) gep ({i1,Ty}*)null, 0, 1
Dan Gohmane2574d32009-08-11 17:57:01 +00001687 // Note that a non-inbounds gep is used, as null isn't within any object.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001688 Type *AligningTy =
Chris Lattnerb2318662011-06-18 22:48:56 +00001689 StructType::get(Type::getInt1Ty(Ty->getContext()), Ty, NULL);
Owen Andersona7235ea2009-07-31 20:28:14 +00001690 Constant *NullPtr = Constant::getNullValue(AligningTy->getPointerTo());
Dan Gohman06ed3e72010-01-28 02:43:22 +00001691 Constant *Zero = ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0);
Owen Anderson1d0be152009-08-13 21:58:54 +00001692 Constant *One = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
Owen Andersonbaf3c402009-07-29 18:55:55 +00001693 Constant *Indices[2] = { Zero, One };
Jay Foaddab3d292011-07-21 14:31:17 +00001694 Constant *GEP = getGetElementPtr(NullPtr, Indices);
Dan Gohman3b490632010-04-12 22:12:29 +00001695 return getPtrToInt(GEP,
1696 Type::getInt64Ty(Ty->getContext()));
Owen Andersonbaf3c402009-07-29 18:55:55 +00001697}
1698
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001699Constant *ConstantExpr::getOffsetOf(StructType* STy, unsigned FieldNo) {
Dan Gohman2544a1d2010-02-01 16:37:38 +00001700 return getOffsetOf(STy, ConstantInt::get(Type::getInt32Ty(STy->getContext()),
1701 FieldNo));
1702}
1703
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001704Constant *ConstantExpr::getOffsetOf(Type* Ty, Constant *FieldNo) {
Dan Gohman3778f212009-08-16 21:26:11 +00001705 // offsetof is implemented as: (i64) gep (Ty*)null, 0, FieldNo
1706 // Note that a non-inbounds gep is used, as null isn't within any object.
1707 Constant *GEPIdx[] = {
Dan Gohman2544a1d2010-02-01 16:37:38 +00001708 ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0),
1709 FieldNo
Dan Gohman3778f212009-08-16 21:26:11 +00001710 };
1711 Constant *GEP = getGetElementPtr(
Jay Foaddab3d292011-07-21 14:31:17 +00001712 Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx);
Dan Gohman3b490632010-04-12 22:12:29 +00001713 return getPtrToInt(GEP,
1714 Type::getInt64Ty(Ty->getContext()));
Dan Gohman3778f212009-08-16 21:26:11 +00001715}
Owen Andersonbaf3c402009-07-29 18:55:55 +00001716
Chris Lattnereaf79802011-07-09 18:23:52 +00001717Constant *ConstantExpr::getCompare(unsigned short Predicate,
1718 Constant *C1, Constant *C2) {
Reid Spencer67263fe2006-12-04 21:35:24 +00001719 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Chris Lattnereaf79802011-07-09 18:23:52 +00001720
1721 switch (Predicate) {
1722 default: llvm_unreachable("Invalid CmpInst predicate");
1723 case CmpInst::FCMP_FALSE: case CmpInst::FCMP_OEQ: case CmpInst::FCMP_OGT:
1724 case CmpInst::FCMP_OGE: case CmpInst::FCMP_OLT: case CmpInst::FCMP_OLE:
1725 case CmpInst::FCMP_ONE: case CmpInst::FCMP_ORD: case CmpInst::FCMP_UNO:
1726 case CmpInst::FCMP_UEQ: case CmpInst::FCMP_UGT: case CmpInst::FCMP_UGE:
1727 case CmpInst::FCMP_ULT: case CmpInst::FCMP_ULE: case CmpInst::FCMP_UNE:
1728 case CmpInst::FCMP_TRUE:
1729 return getFCmp(Predicate, C1, C2);
1730
1731 case CmpInst::ICMP_EQ: case CmpInst::ICMP_NE: case CmpInst::ICMP_UGT:
1732 case CmpInst::ICMP_UGE: case CmpInst::ICMP_ULT: case CmpInst::ICMP_ULE:
1733 case CmpInst::ICMP_SGT: case CmpInst::ICMP_SGE: case CmpInst::ICMP_SLT:
1734 case CmpInst::ICMP_SLE:
1735 return getICmp(Predicate, C1, C2);
1736 }
Chris Lattnerc3d12f02004-08-04 18:50:09 +00001737}
1738
Chris Lattnereaf79802011-07-09 18:23:52 +00001739Constant *ConstantExpr::getSelect(Constant *C, Constant *V1, Constant *V2) {
Chris Lattner9ace0cd2008-12-29 00:16:12 +00001740 assert(!SelectInst::areInvalidOperands(C, V1, V2)&&"Invalid select operands");
Chris Lattner08a45cc2004-03-12 05:54:04 +00001741
Chris Lattnereaf79802011-07-09 18:23:52 +00001742 if (Constant *SC = ConstantFoldSelectInstruction(C, V1, V2))
1743 return SC; // Fold common cases
Chris Lattner08a45cc2004-03-12 05:54:04 +00001744
1745 std::vector<Constant*> argVec(3, C);
1746 argVec[1] = V1;
1747 argVec[2] = V2;
Reid Spencer077d0eb2006-12-04 05:19:50 +00001748 ExprMapKeyType Key(Instruction::Select, argVec);
Owen Anderson31c36f02009-06-17 20:10:08 +00001749
Chris Lattnereaf79802011-07-09 18:23:52 +00001750 LLVMContextImpl *pImpl = C->getContext().pImpl;
1751 return pImpl->ExprConstants.getOrCreate(V1->getType(), Key);
Chris Lattner08a45cc2004-03-12 05:54:04 +00001752}
1753
Jay Foaddab3d292011-07-21 14:31:17 +00001754Constant *ConstantExpr::getGetElementPtr(Constant *C, ArrayRef<Value *> Idxs,
1755 bool InBounds) {
1756 if (Constant *FC = ConstantFoldGetElementPtr(C, InBounds, Idxs))
Chris Lattner1f78d512011-02-11 05:34:33 +00001757 return FC; // Fold a few common cases.
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001758
Chris Lattnereaf79802011-07-09 18:23:52 +00001759 // Get the result type of the getelementptr!
Jay Foada9203102011-07-25 09:48:08 +00001760 Type *Ty = GetElementPtrInst::getIndexedType(C->getType(), Idxs);
Chris Lattnereaf79802011-07-09 18:23:52 +00001761 assert(Ty && "GEP indices invalid!");
Chris Lattner230cdab2012-01-26 00:42:34 +00001762 unsigned AS = C->getType()->getPointerAddressSpace();
Chris Lattnereaf79802011-07-09 18:23:52 +00001763 Type *ReqTy = Ty->getPointerTo(AS);
1764
Duncan Sands1df98592010-02-16 11:11:14 +00001765 assert(C->getType()->isPointerTy() &&
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001766 "Non-pointer type for constant GetElementPtr expression");
1767 // Look up the constant in the table first to ensure uniqueness
1768 std::vector<Constant*> ArgVec;
Jay Foaddab3d292011-07-21 14:31:17 +00001769 ArgVec.reserve(1 + Idxs.size());
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001770 ArgVec.push_back(C);
Jay Foaddab3d292011-07-21 14:31:17 +00001771 for (unsigned i = 0, e = Idxs.size(); i != e; ++i)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001772 ArgVec.push_back(cast<Constant>(Idxs[i]));
1773 const ExprMapKeyType Key(Instruction::GetElementPtr, ArgVec, 0,
Chris Lattner1f78d512011-02-11 05:34:33 +00001774 InBounds ? GEPOperator::IsInBounds : 0);
Chris Lattnereaf79802011-07-09 18:23:52 +00001775
1776 LLVMContextImpl *pImpl = C->getContext().pImpl;
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001777 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
1778}
1779
Reid Spencer077d0eb2006-12-04 05:19:50 +00001780Constant *
Nick Lewycky401f3252010-01-21 07:03:21 +00001781ConstantExpr::getICmp(unsigned short pred, Constant *LHS, Constant *RHS) {
Reid Spencer077d0eb2006-12-04 05:19:50 +00001782 assert(LHS->getType() == RHS->getType());
1783 assert(pred >= ICmpInst::FIRST_ICMP_PREDICATE &&
1784 pred <= ICmpInst::LAST_ICMP_PREDICATE && "Invalid ICmp Predicate");
1785
Chris Lattnerb29d5962010-02-01 20:48:08 +00001786 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
Reid Spencer077d0eb2006-12-04 05:19:50 +00001787 return FC; // Fold a few common cases...
1788
1789 // Look up the constant in the table first to ensure uniqueness
1790 std::vector<Constant*> ArgVec;
1791 ArgVec.push_back(LHS);
1792 ArgVec.push_back(RHS);
Reid Spencer4fa021a2006-12-24 18:42:29 +00001793 // Get the key type with both the opcode and predicate
Reid Spencer077d0eb2006-12-04 05:19:50 +00001794 const ExprMapKeyType Key(Instruction::ICmp, ArgVec, pred);
Owen Anderson31c36f02009-06-17 20:10:08 +00001795
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001796 Type *ResultTy = Type::getInt1Ty(LHS->getContext());
1797 if (VectorType *VT = dyn_cast<VectorType>(LHS->getType()))
Nick Lewycky401f3252010-01-21 07:03:21 +00001798 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
1799
Owen Andersond03eecd2009-08-04 20:25:11 +00001800 LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl;
Nick Lewycky401f3252010-01-21 07:03:21 +00001801 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
Reid Spencer077d0eb2006-12-04 05:19:50 +00001802}
1803
1804Constant *
Nick Lewycky401f3252010-01-21 07:03:21 +00001805ConstantExpr::getFCmp(unsigned short pred, Constant *LHS, Constant *RHS) {
Reid Spencer077d0eb2006-12-04 05:19:50 +00001806 assert(LHS->getType() == RHS->getType());
1807 assert(pred <= FCmpInst::LAST_FCMP_PREDICATE && "Invalid FCmp Predicate");
1808
Chris Lattnerb29d5962010-02-01 20:48:08 +00001809 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
Reid Spencer077d0eb2006-12-04 05:19:50 +00001810 return FC; // Fold a few common cases...
1811
1812 // Look up the constant in the table first to ensure uniqueness
1813 std::vector<Constant*> ArgVec;
1814 ArgVec.push_back(LHS);
1815 ArgVec.push_back(RHS);
Reid Spencer4fa021a2006-12-24 18:42:29 +00001816 // Get the key type with both the opcode and predicate
Reid Spencer077d0eb2006-12-04 05:19:50 +00001817 const ExprMapKeyType Key(Instruction::FCmp, ArgVec, pred);
Nick Lewycky401f3252010-01-21 07:03:21 +00001818
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001819 Type *ResultTy = Type::getInt1Ty(LHS->getContext());
1820 if (VectorType *VT = dyn_cast<VectorType>(LHS->getType()))
Nick Lewycky401f3252010-01-21 07:03:21 +00001821 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
1822
Owen Andersond03eecd2009-08-04 20:25:11 +00001823 LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl;
Nick Lewycky401f3252010-01-21 07:03:21 +00001824 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
Reid Spencer077d0eb2006-12-04 05:19:50 +00001825}
1826
Robert Bocchinob52ee7f2006-01-10 19:05:34 +00001827Constant *ConstantExpr::getExtractElement(Constant *Val, Constant *Idx) {
Duncan Sands1df98592010-02-16 11:11:14 +00001828 assert(Val->getType()->isVectorTy() &&
Reid Spencerac9dcb92007-02-15 03:39:18 +00001829 "Tried to create extractelement operation on non-vector type!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001830 assert(Idx->getType()->isIntegerTy(32) &&
Reid Spencer3d10b0b2007-01-26 07:37:34 +00001831 "Extractelement index must be i32 type!");
Chris Lattnereaf79802011-07-09 18:23:52 +00001832
1833 if (Constant *FC = ConstantFoldExtractElementInstruction(Val, Idx))
Chris Lattner83738a22009-12-30 20:25:09 +00001834 return FC; // Fold a few common cases.
Chris Lattnereaf79802011-07-09 18:23:52 +00001835
Robert Bocchinoc152f9c2006-01-17 20:07:22 +00001836 // Look up the constant in the table first to ensure uniqueness
1837 std::vector<Constant*> ArgVec(1, Val);
Robert Bocchinoc152f9c2006-01-17 20:07:22 +00001838 ArgVec.push_back(Idx);
Chris Lattnereaf79802011-07-09 18:23:52 +00001839 const ExprMapKeyType Key(Instruction::ExtractElement,ArgVec);
Owen Anderson31c36f02009-06-17 20:10:08 +00001840
Chris Lattnereaf79802011-07-09 18:23:52 +00001841 LLVMContextImpl *pImpl = Val->getContext().pImpl;
Chris Lattner230cdab2012-01-26 00:42:34 +00001842 Type *ReqTy = Val->getType()->getVectorElementType();
Owen Andersond03eecd2009-08-04 20:25:11 +00001843 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Robert Bocchinoc152f9c2006-01-17 20:07:22 +00001844}
1845
1846Constant *ConstantExpr::getInsertElement(Constant *Val, Constant *Elt,
1847 Constant *Idx) {
Duncan Sands1df98592010-02-16 11:11:14 +00001848 assert(Val->getType()->isVectorTy() &&
Reid Spencerac9dcb92007-02-15 03:39:18 +00001849 "Tried to create insertelement operation on non-vector type!");
Chris Lattner230cdab2012-01-26 00:42:34 +00001850 assert(Elt->getType() == Val->getType()->getVectorElementType() &&
1851 "Insertelement types must match!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001852 assert(Idx->getType()->isIntegerTy(32) &&
Reid Spencer3d10b0b2007-01-26 07:37:34 +00001853 "Insertelement index must be i32 type!");
Robert Bocchinoc152f9c2006-01-17 20:07:22 +00001854
Chris Lattnereaf79802011-07-09 18:23:52 +00001855 if (Constant *FC = ConstantFoldInsertElementInstruction(Val, Elt, Idx))
1856 return FC; // Fold a few common cases.
Chris Lattner00f10232006-04-08 01:18:18 +00001857 // Look up the constant in the table first to ensure uniqueness
Chris Lattnereaf79802011-07-09 18:23:52 +00001858 std::vector<Constant*> ArgVec(1, Val);
1859 ArgVec.push_back(Elt);
1860 ArgVec.push_back(Idx);
1861 const ExprMapKeyType Key(Instruction::InsertElement,ArgVec);
Owen Anderson31c36f02009-06-17 20:10:08 +00001862
Chris Lattnereaf79802011-07-09 18:23:52 +00001863 LLVMContextImpl *pImpl = Val->getContext().pImpl;
1864 return pImpl->ExprConstants.getOrCreate(Val->getType(), Key);
Chris Lattner00f10232006-04-08 01:18:18 +00001865}
1866
1867Constant *ConstantExpr::getShuffleVector(Constant *V1, Constant *V2,
1868 Constant *Mask) {
1869 assert(ShuffleVectorInst::isValidOperands(V1, V2, Mask) &&
1870 "Invalid shuffle vector constant expr operands!");
Nate Begeman0f123cf2009-02-12 21:28:33 +00001871
Chris Lattnereaf79802011-07-09 18:23:52 +00001872 if (Constant *FC = ConstantFoldShuffleVectorInstruction(V1, V2, Mask))
1873 return FC; // Fold a few common cases.
1874
Chris Lattner230cdab2012-01-26 00:42:34 +00001875 unsigned NElts = Mask->getType()->getVectorNumElements();
1876 Type *EltTy = V1->getType()->getVectorElementType();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001877 Type *ShufTy = VectorType::get(EltTy, NElts);
Chris Lattnereaf79802011-07-09 18:23:52 +00001878
1879 // Look up the constant in the table first to ensure uniqueness
1880 std::vector<Constant*> ArgVec(1, V1);
1881 ArgVec.push_back(V2);
1882 ArgVec.push_back(Mask);
1883 const ExprMapKeyType Key(Instruction::ShuffleVector,ArgVec);
1884
1885 LLVMContextImpl *pImpl = ShufTy->getContext().pImpl;
1886 return pImpl->ExprConstants.getOrCreate(ShufTy, Key);
Chris Lattner00f10232006-04-08 01:18:18 +00001887}
1888
Chris Lattnereaf79802011-07-09 18:23:52 +00001889Constant *ConstantExpr::getInsertValue(Constant *Agg, Constant *Val,
Jay Foadfc6d3a42011-07-13 10:26:04 +00001890 ArrayRef<unsigned> Idxs) {
1891 assert(ExtractValueInst::getIndexedType(Agg->getType(),
1892 Idxs) == Val->getType() &&
Dan Gohman041e2eb2008-05-15 19:50:34 +00001893 "insertvalue indices invalid!");
Dan Gohmane4569942008-05-23 00:36:11 +00001894 assert(Agg->getType()->isFirstClassType() &&
Chris Lattner4e47aad2011-07-12 05:26:21 +00001895 "Non-first-class type for constant insertvalue expression");
Jay Foadfc6d3a42011-07-13 10:26:04 +00001896 Constant *FC = ConstantFoldInsertValueInstruction(Agg, Val, Idxs);
Chris Lattner4e47aad2011-07-12 05:26:21 +00001897 assert(FC && "insertvalue constant expr couldn't be folded!");
Dan Gohmane0891602008-07-21 23:30:30 +00001898 return FC;
Dan Gohman041e2eb2008-05-15 19:50:34 +00001899}
1900
Chris Lattnereaf79802011-07-09 18:23:52 +00001901Constant *ConstantExpr::getExtractValue(Constant *Agg,
Jay Foadfc6d3a42011-07-13 10:26:04 +00001902 ArrayRef<unsigned> Idxs) {
Dan Gohmane4569942008-05-23 00:36:11 +00001903 assert(Agg->getType()->isFirstClassType() &&
Chris Lattnereaf79802011-07-09 18:23:52 +00001904 "Tried to create extractelement operation on non-first-class type!");
Dan Gohman041e2eb2008-05-15 19:50:34 +00001905
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001906 Type *ReqTy = ExtractValueInst::getIndexedType(Agg->getType(), Idxs);
Chandler Carruthdc770fc2011-07-10 09:45:35 +00001907 (void)ReqTy;
Chris Lattnereaf79802011-07-09 18:23:52 +00001908 assert(ReqTy && "extractvalue indices invalid!");
1909
Dan Gohmane4569942008-05-23 00:36:11 +00001910 assert(Agg->getType()->isFirstClassType() &&
1911 "Non-first-class type for constant extractvalue expression");
Jay Foadfc6d3a42011-07-13 10:26:04 +00001912 Constant *FC = ConstantFoldExtractValueInstruction(Agg, Idxs);
Dan Gohmane0891602008-07-21 23:30:30 +00001913 assert(FC && "ExtractValue constant expr couldn't be folded!");
1914 return FC;
Dan Gohman041e2eb2008-05-15 19:50:34 +00001915}
1916
Chris Lattner81baf142011-02-10 07:01:55 +00001917Constant *ConstantExpr::getNeg(Constant *C, bool HasNUW, bool HasNSW) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001918 assert(C->getType()->isIntOrIntVectorTy() &&
Owen Andersonbaf3c402009-07-29 18:55:55 +00001919 "Cannot NEG a nonintegral value!");
Chris Lattner81baf142011-02-10 07:01:55 +00001920 return getSub(ConstantFP::getZeroValueForNegation(C->getType()),
1921 C, HasNUW, HasNSW);
Owen Andersonbaf3c402009-07-29 18:55:55 +00001922}
1923
Chris Lattnerf067d582011-02-07 16:40:21 +00001924Constant *ConstantExpr::getFNeg(Constant *C) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001925 assert(C->getType()->isFPOrFPVectorTy() &&
Owen Andersonbaf3c402009-07-29 18:55:55 +00001926 "Cannot FNEG a non-floating-point value!");
Chris Lattner81baf142011-02-10 07:01:55 +00001927 return getFSub(ConstantFP::getZeroValueForNegation(C->getType()), C);
Owen Andersonbaf3c402009-07-29 18:55:55 +00001928}
1929
Chris Lattnerf067d582011-02-07 16:40:21 +00001930Constant *ConstantExpr::getNot(Constant *C) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001931 assert(C->getType()->isIntOrIntVectorTy() &&
Owen Andersonbaf3c402009-07-29 18:55:55 +00001932 "Cannot NOT a nonintegral value!");
Owen Andersona7235ea2009-07-31 20:28:14 +00001933 return get(Instruction::Xor, C, Constant::getAllOnesValue(C->getType()));
Owen Andersonbaf3c402009-07-29 18:55:55 +00001934}
1935
Chris Lattner81baf142011-02-10 07:01:55 +00001936Constant *ConstantExpr::getAdd(Constant *C1, Constant *C2,
1937 bool HasNUW, bool HasNSW) {
1938 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
1939 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
1940 return get(Instruction::Add, C1, C2, Flags);
Owen Andersonbaf3c402009-07-29 18:55:55 +00001941}
1942
Chris Lattnerf067d582011-02-07 16:40:21 +00001943Constant *ConstantExpr::getFAdd(Constant *C1, Constant *C2) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00001944 return get(Instruction::FAdd, C1, C2);
1945}
1946
Chris Lattner81baf142011-02-10 07:01:55 +00001947Constant *ConstantExpr::getSub(Constant *C1, Constant *C2,
1948 bool HasNUW, bool HasNSW) {
1949 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
1950 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
1951 return get(Instruction::Sub, C1, C2, Flags);
Owen Andersonbaf3c402009-07-29 18:55:55 +00001952}
1953
Chris Lattnerf067d582011-02-07 16:40:21 +00001954Constant *ConstantExpr::getFSub(Constant *C1, Constant *C2) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00001955 return get(Instruction::FSub, C1, C2);
1956}
1957
Chris Lattner81baf142011-02-10 07:01:55 +00001958Constant *ConstantExpr::getMul(Constant *C1, Constant *C2,
1959 bool HasNUW, bool HasNSW) {
1960 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
1961 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
1962 return get(Instruction::Mul, C1, C2, Flags);
Owen Andersonbaf3c402009-07-29 18:55:55 +00001963}
1964
Chris Lattnerf067d582011-02-07 16:40:21 +00001965Constant *ConstantExpr::getFMul(Constant *C1, Constant *C2) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00001966 return get(Instruction::FMul, C1, C2);
1967}
1968
Chris Lattner74f5c5a2011-02-09 16:43:07 +00001969Constant *ConstantExpr::getUDiv(Constant *C1, Constant *C2, bool isExact) {
1970 return get(Instruction::UDiv, C1, C2,
1971 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Andersonbaf3c402009-07-29 18:55:55 +00001972}
1973
Chris Lattner74f5c5a2011-02-09 16:43:07 +00001974Constant *ConstantExpr::getSDiv(Constant *C1, Constant *C2, bool isExact) {
1975 return get(Instruction::SDiv, C1, C2,
1976 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Andersonbaf3c402009-07-29 18:55:55 +00001977}
1978
Chris Lattnerf067d582011-02-07 16:40:21 +00001979Constant *ConstantExpr::getFDiv(Constant *C1, Constant *C2) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00001980 return get(Instruction::FDiv, C1, C2);
1981}
1982
Chris Lattnerf067d582011-02-07 16:40:21 +00001983Constant *ConstantExpr::getURem(Constant *C1, Constant *C2) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00001984 return get(Instruction::URem, C1, C2);
1985}
1986
Chris Lattnerf067d582011-02-07 16:40:21 +00001987Constant *ConstantExpr::getSRem(Constant *C1, Constant *C2) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00001988 return get(Instruction::SRem, C1, C2);
1989}
1990
Chris Lattnerf067d582011-02-07 16:40:21 +00001991Constant *ConstantExpr::getFRem(Constant *C1, Constant *C2) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00001992 return get(Instruction::FRem, C1, C2);
1993}
1994
Chris Lattnerf067d582011-02-07 16:40:21 +00001995Constant *ConstantExpr::getAnd(Constant *C1, Constant *C2) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00001996 return get(Instruction::And, C1, C2);
1997}
1998
Chris Lattnerf067d582011-02-07 16:40:21 +00001999Constant *ConstantExpr::getOr(Constant *C1, Constant *C2) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00002000 return get(Instruction::Or, C1, C2);
2001}
2002
Chris Lattnerf067d582011-02-07 16:40:21 +00002003Constant *ConstantExpr::getXor(Constant *C1, Constant *C2) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00002004 return get(Instruction::Xor, C1, C2);
2005}
2006
Chris Lattner81baf142011-02-10 07:01:55 +00002007Constant *ConstantExpr::getShl(Constant *C1, Constant *C2,
2008 bool HasNUW, bool HasNSW) {
2009 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
2010 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
2011 return get(Instruction::Shl, C1, C2, Flags);
Owen Andersonbaf3c402009-07-29 18:55:55 +00002012}
2013
Chris Lattner74f5c5a2011-02-09 16:43:07 +00002014Constant *ConstantExpr::getLShr(Constant *C1, Constant *C2, bool isExact) {
2015 return get(Instruction::LShr, C1, C2,
2016 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Andersonbaf3c402009-07-29 18:55:55 +00002017}
2018
Chris Lattner74f5c5a2011-02-09 16:43:07 +00002019Constant *ConstantExpr::getAShr(Constant *C1, Constant *C2, bool isExact) {
2020 return get(Instruction::AShr, C1, C2,
2021 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Andersonbaf3c402009-07-29 18:55:55 +00002022}
2023
Vikram S. Adved0b1bb02002-07-15 18:19:33 +00002024// destroyConstant - Remove the constant from the constant table...
2025//
Owen Anderson04fb7c32009-06-20 00:24:58 +00002026void ConstantExpr::destroyConstant() {
Chris Lattner1afcace2011-07-09 17:41:24 +00002027 getType()->getContext().pImpl->ExprConstants.remove(this);
Vikram S. Adved0b1bb02002-07-15 18:19:33 +00002028 destroyConstantImpl();
Vikram S. Adve345e0cf2002-07-14 23:13:17 +00002029}
2030
Chris Lattnerc188eeb2002-07-30 18:54:25 +00002031const char *ConstantExpr::getOpcodeName() const {
2032 return Instruction::getOpcodeName(getOpcode());
Vikram S. Adve345e0cf2002-07-14 23:13:17 +00002033}
Reid Spencer1c9c8e62004-07-17 23:48:33 +00002034
Chris Lattner04e3b1e2010-03-30 20:48:48 +00002035
2036
2037GetElementPtrConstantExpr::
Chris Lattnera7c69882012-01-26 20:40:56 +00002038GetElementPtrConstantExpr(Constant *C, ArrayRef<Constant*> IdxList,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002039 Type *DestTy)
Chris Lattner04e3b1e2010-03-30 20:48:48 +00002040 : ConstantExpr(DestTy, Instruction::GetElementPtr,
2041 OperandTraits<GetElementPtrConstantExpr>::op_end(this)
2042 - (IdxList.size()+1), IdxList.size()+1) {
2043 OperandList[0] = C;
2044 for (unsigned i = 0, E = IdxList.size(); i != E; ++i)
2045 OperandList[i+1] = IdxList[i];
2046}
2047
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002048//===----------------------------------------------------------------------===//
2049// ConstantData* implementations
2050
2051void ConstantDataArray::anchor() {}
2052void ConstantDataVector::anchor() {}
2053
Chris Lattner45bb5c52012-01-24 04:43:41 +00002054/// getElementType - Return the element type of the array/vector.
2055Type *ConstantDataSequential::getElementType() const {
2056 return getType()->getElementType();
2057}
2058
Chris Lattner9e631da2012-01-24 09:31:43 +00002059StringRef ConstantDataSequential::getRawDataValues() const {
Chris Lattner1ee0ecf2012-01-24 13:41:11 +00002060 return StringRef(DataElements, getNumElements()*getElementByteSize());
Chris Lattner9e631da2012-01-24 09:31:43 +00002061}
2062
Chris Lattnerff2b7f32012-01-24 05:42:11 +00002063/// isElementTypeCompatible - Return true if a ConstantDataSequential can be
2064/// formed with a vector or array of the specified element type.
2065/// ConstantDataArray only works with normal float and int types that are
2066/// stored densely in memory, not with things like i42 or x86_f80.
2067bool ConstantDataSequential::isElementTypeCompatible(const Type *Ty) {
Chris Lattner45bb5c52012-01-24 04:43:41 +00002068 if (Ty->isFloatTy() || Ty->isDoubleTy()) return true;
2069 if (const IntegerType *IT = dyn_cast<IntegerType>(Ty)) {
2070 switch (IT->getBitWidth()) {
2071 case 8:
2072 case 16:
2073 case 32:
2074 case 64:
2075 return true;
2076 default: break;
2077 }
2078 }
2079 return false;
2080}
2081
Chris Lattner1ee0ecf2012-01-24 13:41:11 +00002082/// getNumElements - Return the number of elements in the array or vector.
2083unsigned ConstantDataSequential::getNumElements() const {
Chris Lattneraf7b4fb2012-01-25 01:32:59 +00002084 if (ArrayType *AT = dyn_cast<ArrayType>(getType()))
2085 return AT->getNumElements();
Chris Lattner230cdab2012-01-26 00:42:34 +00002086 return getType()->getVectorNumElements();
Chris Lattner1ee0ecf2012-01-24 13:41:11 +00002087}
2088
2089
Chris Lattner45bb5c52012-01-24 04:43:41 +00002090/// getElementByteSize - Return the size in bytes of the elements in the data.
2091uint64_t ConstantDataSequential::getElementByteSize() const {
2092 return getElementType()->getPrimitiveSizeInBits()/8;
2093}
2094
2095/// getElementPointer - Return the start of the specified element.
2096const char *ConstantDataSequential::getElementPointer(unsigned Elt) const {
Chris Lattner1ee0ecf2012-01-24 13:41:11 +00002097 assert(Elt < getNumElements() && "Invalid Elt");
Chris Lattner45bb5c52012-01-24 04:43:41 +00002098 return DataElements+Elt*getElementByteSize();
2099}
2100
2101
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002102/// isAllZeros - return true if the array is empty or all zeros.
2103static bool isAllZeros(StringRef Arr) {
2104 for (StringRef::iterator I = Arr.begin(), E = Arr.end(); I != E; ++I)
2105 if (*I != 0)
2106 return false;
2107 return true;
2108}
Chris Lattnerff2b7f32012-01-24 05:42:11 +00002109
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002110/// getImpl - This is the underlying implementation of all of the
2111/// ConstantDataSequential::get methods. They all thunk down to here, providing
Chris Lattner8cf27ef2012-01-30 18:19:30 +00002112/// the correct element type. We take the bytes in as a StringRef because
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002113/// we *want* an underlying "char*" to avoid TBAA type punning violations.
2114Constant *ConstantDataSequential::getImpl(StringRef Elements, Type *Ty) {
Chris Lattner230cdab2012-01-26 00:42:34 +00002115 assert(isElementTypeCompatible(Ty->getSequentialElementType()));
Chris Lattner29cc6cb2012-01-24 14:17:05 +00002116 // If the elements are all zero or there are no elements, return a CAZ, which
2117 // is more dense and canonical.
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002118 if (isAllZeros(Elements))
2119 return ConstantAggregateZero::get(Ty);
2120
2121 // Do a lookup to see if we have already formed one of these.
2122 StringMap<ConstantDataSequential*>::MapEntryTy &Slot =
2123 Ty->getContext().pImpl->CDSConstants.GetOrCreateValue(Elements);
2124
2125 // The bucket can point to a linked list of different CDS's that have the same
2126 // body but different types. For example, 0,0,0,1 could be a 4 element array
2127 // of i8, or a 1-element array of i32. They'll both end up in the same
2128 /// StringMap bucket, linked up by their Next pointers. Walk the list.
2129 ConstantDataSequential **Entry = &Slot.getValue();
2130 for (ConstantDataSequential *Node = *Entry; Node != 0;
2131 Entry = &Node->Next, Node = *Entry)
2132 if (Node->getType() == Ty)
2133 return Node;
2134
2135 // Okay, we didn't get a hit. Create a node of the right class, link it in,
2136 // and return it.
2137 if (isa<ArrayType>(Ty))
2138 return *Entry = new ConstantDataArray(Ty, Slot.getKeyData());
2139
2140 assert(isa<VectorType>(Ty));
2141 return *Entry = new ConstantDataVector(Ty, Slot.getKeyData());
2142}
2143
2144void ConstantDataSequential::destroyConstant() {
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002145 // Remove the constant from the StringMap.
2146 StringMap<ConstantDataSequential*> &CDSConstants =
2147 getType()->getContext().pImpl->CDSConstants;
2148
2149 StringMap<ConstantDataSequential*>::iterator Slot =
Chris Lattner9e631da2012-01-24 09:31:43 +00002150 CDSConstants.find(getRawDataValues());
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002151
2152 assert(Slot != CDSConstants.end() && "CDS not found in uniquing table");
2153
2154 ConstantDataSequential **Entry = &Slot->getValue();
2155
2156 // Remove the entry from the hash table.
2157 if ((*Entry)->Next == 0) {
2158 // If there is only one value in the bucket (common case) it must be this
2159 // entry, and removing the entry should remove the bucket completely.
2160 assert((*Entry) == this && "Hash mismatch in ConstantDataSequential");
2161 getContext().pImpl->CDSConstants.erase(Slot);
2162 } else {
2163 // Otherwise, there are multiple entries linked off the bucket, unlink the
2164 // node we care about but keep the bucket around.
2165 for (ConstantDataSequential *Node = *Entry; ;
2166 Entry = &Node->Next, Node = *Entry) {
2167 assert(Node && "Didn't find entry in its uniquing hash table!");
2168 // If we found our entry, unlink it from the list and we're done.
2169 if (Node == this) {
2170 *Entry = Node->Next;
2171 break;
2172 }
2173 }
2174 }
2175
2176 // If we were part of a list, make sure that we don't delete the list that is
2177 // still owned by the uniquing map.
2178 Next = 0;
2179
2180 // Finally, actually delete it.
2181 destroyConstantImpl();
2182}
2183
2184/// get() constructors - Return a constant with array type with an element
2185/// count and element type matching the ArrayRef passed in. Note that this
2186/// can return a ConstantAggregateZero object.
Chris Lattner32100602012-01-24 14:04:40 +00002187Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint8_t> Elts) {
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002188 Type *Ty = ArrayType::get(Type::getInt8Ty(Context), Elts.size());
2189 return getImpl(StringRef((char*)Elts.data(), Elts.size()*1), Ty);
2190}
Chris Lattner32100602012-01-24 14:04:40 +00002191Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint16_t> Elts){
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002192 Type *Ty = ArrayType::get(Type::getInt16Ty(Context), Elts.size());
2193 return getImpl(StringRef((char*)Elts.data(), Elts.size()*2), Ty);
2194}
Chris Lattner32100602012-01-24 14:04:40 +00002195Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint32_t> Elts){
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002196 Type *Ty = ArrayType::get(Type::getInt32Ty(Context), Elts.size());
2197 return getImpl(StringRef((char*)Elts.data(), Elts.size()*4), Ty);
2198}
Chris Lattner32100602012-01-24 14:04:40 +00002199Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint64_t> Elts){
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002200 Type *Ty = ArrayType::get(Type::getInt64Ty(Context), Elts.size());
2201 return getImpl(StringRef((char*)Elts.data(), Elts.size()*8), Ty);
2202}
Chris Lattner32100602012-01-24 14:04:40 +00002203Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<float> Elts) {
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002204 Type *Ty = ArrayType::get(Type::getFloatTy(Context), Elts.size());
2205 return getImpl(StringRef((char*)Elts.data(), Elts.size()*4), Ty);
2206}
Chris Lattner32100602012-01-24 14:04:40 +00002207Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<double> Elts) {
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002208 Type *Ty = ArrayType::get(Type::getDoubleTy(Context), Elts.size());
2209 return getImpl(StringRef((char*)Elts.data(), Elts.size()*8), Ty);
2210}
2211
Chris Lattner32100602012-01-24 14:04:40 +00002212/// getString - This method constructs a CDS and initializes it with a text
2213/// string. The default behavior (AddNull==true) causes a null terminator to
2214/// be placed at the end of the array (increasing the length of the string by
2215/// one more than the StringRef would normally indicate. Pass AddNull=false
2216/// to disable this behavior.
2217Constant *ConstantDataArray::getString(LLVMContext &Context,
2218 StringRef Str, bool AddNull) {
2219 if (!AddNull)
2220 return get(Context, ArrayRef<uint8_t>((uint8_t*)Str.data(), Str.size()));
2221
2222 SmallVector<uint8_t, 64> ElementVals;
2223 ElementVals.append(Str.begin(), Str.end());
2224 ElementVals.push_back(0);
2225 return get(Context, ElementVals);
2226}
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002227
2228/// get() constructors - Return a constant with vector type with an element
2229/// count and element type matching the ArrayRef passed in. Note that this
2230/// can return a ConstantAggregateZero object.
Chris Lattner32100602012-01-24 14:04:40 +00002231Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint8_t> Elts){
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002232 Type *Ty = VectorType::get(Type::getInt8Ty(Context), Elts.size());
2233 return getImpl(StringRef((char*)Elts.data(), Elts.size()*1), Ty);
2234}
Chris Lattner32100602012-01-24 14:04:40 +00002235Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint16_t> Elts){
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002236 Type *Ty = VectorType::get(Type::getInt16Ty(Context), Elts.size());
2237 return getImpl(StringRef((char*)Elts.data(), Elts.size()*2), Ty);
2238}
Chris Lattner32100602012-01-24 14:04:40 +00002239Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint32_t> Elts){
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002240 Type *Ty = VectorType::get(Type::getInt32Ty(Context), Elts.size());
2241 return getImpl(StringRef((char*)Elts.data(), Elts.size()*4), Ty);
2242}
Chris Lattner32100602012-01-24 14:04:40 +00002243Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint64_t> Elts){
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002244 Type *Ty = VectorType::get(Type::getInt64Ty(Context), Elts.size());
2245 return getImpl(StringRef((char*)Elts.data(), Elts.size()*8), Ty);
2246}
Chris Lattner32100602012-01-24 14:04:40 +00002247Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<float> Elts) {
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002248 Type *Ty = VectorType::get(Type::getFloatTy(Context), Elts.size());
2249 return getImpl(StringRef((char*)Elts.data(), Elts.size()*4), Ty);
2250}
Chris Lattner32100602012-01-24 14:04:40 +00002251Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<double> Elts) {
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002252 Type *Ty = VectorType::get(Type::getDoubleTy(Context), Elts.size());
2253 return getImpl(StringRef((char*)Elts.data(), Elts.size()*8), Ty);
2254}
2255
Chris Lattner3c2c9542012-01-25 05:19:54 +00002256Constant *ConstantDataVector::getSplat(unsigned NumElts, Constant *V) {
2257 assert(isElementTypeCompatible(V->getType()) &&
2258 "Element type not compatible with ConstantData");
2259 if (ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
2260 if (CI->getType()->isIntegerTy(8)) {
2261 SmallVector<uint8_t, 16> Elts(NumElts, CI->getZExtValue());
2262 return get(V->getContext(), Elts);
2263 }
2264 if (CI->getType()->isIntegerTy(16)) {
2265 SmallVector<uint16_t, 16> Elts(NumElts, CI->getZExtValue());
2266 return get(V->getContext(), Elts);
2267 }
2268 if (CI->getType()->isIntegerTy(32)) {
2269 SmallVector<uint32_t, 16> Elts(NumElts, CI->getZExtValue());
2270 return get(V->getContext(), Elts);
2271 }
2272 assert(CI->getType()->isIntegerTy(64) && "Unsupported ConstantData type");
2273 SmallVector<uint64_t, 16> Elts(NumElts, CI->getZExtValue());
2274 return get(V->getContext(), Elts);
2275 }
2276
Chris Lattner36c744f2012-01-30 06:21:21 +00002277 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V)) {
2278 if (CFP->getType()->isFloatTy()) {
2279 SmallVector<float, 16> Elts(NumElts, CFP->getValueAPF().convertToFloat());
2280 return get(V->getContext(), Elts);
2281 }
2282 if (CFP->getType()->isDoubleTy()) {
2283 SmallVector<double, 16> Elts(NumElts,
2284 CFP->getValueAPF().convertToDouble());
2285 return get(V->getContext(), Elts);
2286 }
Chris Lattner3c2c9542012-01-25 05:19:54 +00002287 }
Chris Lattner36c744f2012-01-30 06:21:21 +00002288 return ConstantVector::getSplat(NumElts, V);
Chris Lattner3c2c9542012-01-25 05:19:54 +00002289}
2290
2291
Chris Lattner45bb5c52012-01-24 04:43:41 +00002292/// getElementAsInteger - If this is a sequential container of integers (of
2293/// any size), return the specified element in the low bits of a uint64_t.
2294uint64_t ConstantDataSequential::getElementAsInteger(unsigned Elt) const {
2295 assert(isa<IntegerType>(getElementType()) &&
2296 "Accessor can only be used when element is an integer");
2297 const char *EltPtr = getElementPointer(Elt);
2298
2299 // The data is stored in host byte order, make sure to cast back to the right
2300 // type to load with the right endianness.
Chris Lattner230cdab2012-01-26 00:42:34 +00002301 switch (getElementType()->getIntegerBitWidth()) {
Chris Lattner45bb5c52012-01-24 04:43:41 +00002302 default: assert(0 && "Invalid bitwidth for CDS");
2303 case 8: return *(uint8_t*)EltPtr;
2304 case 16: return *(uint16_t*)EltPtr;
2305 case 32: return *(uint32_t*)EltPtr;
2306 case 64: return *(uint64_t*)EltPtr;
2307 }
2308}
2309
2310/// getElementAsAPFloat - If this is a sequential container of floating point
2311/// type, return the specified element as an APFloat.
2312APFloat ConstantDataSequential::getElementAsAPFloat(unsigned Elt) const {
2313 const char *EltPtr = getElementPointer(Elt);
2314
2315 switch (getElementType()->getTypeID()) {
Nick Lewycky1486ae62012-01-25 03:20:12 +00002316 default:
2317 assert(0 && "Accessor can only be used when element is float/double!");
Chris Lattner45bb5c52012-01-24 04:43:41 +00002318 case Type::FloatTyID: return APFloat(*(float*)EltPtr);
2319 case Type::DoubleTyID: return APFloat(*(double*)EltPtr);
2320 }
2321}
2322
2323/// getElementAsFloat - If this is an sequential container of floats, return
2324/// the specified element as a float.
2325float ConstantDataSequential::getElementAsFloat(unsigned Elt) const {
2326 assert(getElementType()->isFloatTy() &&
2327 "Accessor can only be used when element is a 'float'");
2328 return *(float*)getElementPointer(Elt);
2329}
2330
2331/// getElementAsDouble - If this is an sequential container of doubles, return
2332/// the specified element as a float.
2333double ConstantDataSequential::getElementAsDouble(unsigned Elt) const {
2334 assert(getElementType()->isDoubleTy() &&
2335 "Accessor can only be used when element is a 'float'");
2336 return *(double*)getElementPointer(Elt);
2337}
2338
2339/// getElementAsConstant - Return a Constant for a specified index's element.
2340/// Note that this has to compute a new constant to return, so it isn't as
2341/// efficient as getElementAsInteger/Float/Double.
2342Constant *ConstantDataSequential::getElementAsConstant(unsigned Elt) const {
2343 if (getElementType()->isFloatTy() || getElementType()->isDoubleTy())
2344 return ConstantFP::get(getContext(), getElementAsAPFloat(Elt));
2345
2346 return ConstantInt::get(getElementType(), getElementAsInteger(Elt));
2347}
2348
Chris Lattner62339072012-01-24 09:01:07 +00002349/// isString - This method returns true if this is an array of i8.
2350bool ConstantDataSequential::isString() const {
2351 return isa<ArrayType>(getType()) && getElementType()->isIntegerTy(8);
2352}
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002353
Chris Lattner62339072012-01-24 09:01:07 +00002354/// isCString - This method returns true if the array "isString", ends with a
2355/// nul byte, and does not contains any other nul bytes.
2356bool ConstantDataSequential::isCString() const {
2357 if (!isString())
2358 return false;
2359
2360 StringRef Str = getAsString();
2361
2362 // The last value must be nul.
2363 if (Str.back() != 0) return false;
2364
2365 // Other elements must be non-nul.
2366 return Str.drop_back().find(0) == StringRef::npos;
2367}
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002368
Chris Lattnere150e2d2012-01-26 02:31:22 +00002369/// getSplatValue - If this is a splat constant, meaning that all of the
2370/// elements have the same value, return that value. Otherwise return NULL.
2371Constant *ConstantDataVector::getSplatValue() const {
2372 const char *Base = getRawDataValues().data();
2373
2374 // Compare elements 1+ to the 0'th element.
2375 unsigned EltSize = getElementByteSize();
2376 for (unsigned i = 1, e = getNumElements(); i != e; ++i)
2377 if (memcmp(Base, Base+i*EltSize, EltSize))
2378 return 0;
2379
2380 // If they're all the same, return the 0th one as a representative.
2381 return getElementAsConstant(0);
2382}
Chris Lattner04e3b1e2010-03-30 20:48:48 +00002383
Chris Lattner5cbade92005-10-03 21:58:36 +00002384//===----------------------------------------------------------------------===//
2385// replaceUsesOfWithOnConstant implementations
2386
Chris Lattner54984052007-08-21 00:55:23 +00002387/// replaceUsesOfWithOnConstant - Update this constant array to change uses of
2388/// 'From' to be uses of 'To'. This must update the uniquing data structures
2389/// etc.
2390///
2391/// Note that we intentionally replace all uses of From with To here. Consider
2392/// a large array that uses 'From' 1000 times. By handling this case all here,
2393/// ConstantArray::replaceUsesOfWithOnConstant is only invoked once, and that
2394/// single invocation handles all 1000 uses. Handling them one at a time would
2395/// work, but would be really slow because it would have to unique each updated
2396/// array instance.
Chris Lattner2ee11ec2009-10-28 00:01:44 +00002397///
Chris Lattner5cbade92005-10-03 21:58:36 +00002398void ConstantArray::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002399 Use *U) {
Owen Anderson1fd70962009-07-28 18:32:17 +00002400 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2401 Constant *ToC = cast<Constant>(To);
2402
Chris Lattner1afcace2011-07-09 17:41:24 +00002403 LLVMContextImpl *pImpl = getType()->getContext().pImpl;
Owen Anderson1fd70962009-07-28 18:32:17 +00002404
Dan Gohmane3394d42009-09-15 15:58:07 +00002405 std::pair<LLVMContextImpl::ArrayConstantsTy::MapKey, ConstantArray*> Lookup;
Chris Lattner1afcace2011-07-09 17:41:24 +00002406 Lookup.first.first = cast<ArrayType>(getType());
Owen Anderson1fd70962009-07-28 18:32:17 +00002407 Lookup.second = this;
2408
2409 std::vector<Constant*> &Values = Lookup.first.second;
2410 Values.reserve(getNumOperands()); // Build replacement array.
2411
2412 // Fill values with the modified operands of the constant array. Also,
2413 // compute whether this turns into an all-zeros array.
Owen Anderson1fd70962009-07-28 18:32:17 +00002414 unsigned NumUpdated = 0;
Chris Lattnere150e2d2012-01-26 02:31:22 +00002415
2416 // Keep track of whether all the values in the array are "ToC".
2417 bool AllSame = true;
2418 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2419 Constant *Val = cast<Constant>(O->get());
2420 if (Val == From) {
2421 Val = ToC;
2422 ++NumUpdated;
Owen Anderson1fd70962009-07-28 18:32:17 +00002423 }
Chris Lattnere150e2d2012-01-26 02:31:22 +00002424 Values.push_back(Val);
2425 AllSame = Val == ToC;
Owen Anderson1fd70962009-07-28 18:32:17 +00002426 }
2427
2428 Constant *Replacement = 0;
Chris Lattnere150e2d2012-01-26 02:31:22 +00002429 if (AllSame && ToC->isNullValue()) {
Chris Lattner1afcace2011-07-09 17:41:24 +00002430 Replacement = ConstantAggregateZero::get(getType());
Chris Lattnere150e2d2012-01-26 02:31:22 +00002431 } else if (AllSame && isa<UndefValue>(ToC)) {
2432 Replacement = UndefValue::get(getType());
Owen Anderson1fd70962009-07-28 18:32:17 +00002433 } else {
2434 // Check to see if we have this array type already.
Owen Anderson1fd70962009-07-28 18:32:17 +00002435 bool Exists;
2436 LLVMContextImpl::ArrayConstantsTy::MapTy::iterator I =
2437 pImpl->ArrayConstants.InsertOrGetItem(Lookup, Exists);
2438
2439 if (Exists) {
Devang Patel5f4ac842009-09-03 01:39:20 +00002440 Replacement = I->second;
Owen Anderson1fd70962009-07-28 18:32:17 +00002441 } else {
2442 // Okay, the new shape doesn't exist in the system yet. Instead of
2443 // creating a new constant array, inserting it, replaceallusesof'ing the
2444 // old with the new, then deleting the old... just update the current one
2445 // in place!
2446 pImpl->ArrayConstants.MoveConstantToNewSlot(this, I);
2447
2448 // Update to the new value. Optimize for the case when we have a single
2449 // operand that we're changing, but handle bulk updates efficiently.
2450 if (NumUpdated == 1) {
2451 unsigned OperandToUpdate = U - OperandList;
2452 assert(getOperand(OperandToUpdate) == From &&
2453 "ReplaceAllUsesWith broken!");
2454 setOperand(OperandToUpdate, ToC);
2455 } else {
2456 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
2457 if (getOperand(i) == From)
2458 setOperand(i, ToC);
2459 }
2460 return;
2461 }
2462 }
Chris Lattnercea141f2005-10-03 22:51:37 +00002463
2464 // Otherwise, I do need to replace this with an existing value.
Chris Lattner5cbade92005-10-03 21:58:36 +00002465 assert(Replacement != this && "I didn't contain From!");
2466
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002467 // Everyone using this now uses the replacement.
Chris Lattner678f9e02011-07-15 06:18:52 +00002468 replaceAllUsesWith(Replacement);
Chris Lattner5cbade92005-10-03 21:58:36 +00002469
2470 // Delete the old constant!
2471 destroyConstant();
2472}
2473
2474void ConstantStruct::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002475 Use *U) {
Owen Anderson8fa33382009-07-27 22:29:26 +00002476 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2477 Constant *ToC = cast<Constant>(To);
2478
2479 unsigned OperandToUpdate = U-OperandList;
2480 assert(getOperand(OperandToUpdate) == From && "ReplaceAllUsesWith broken!");
2481
Dan Gohmane3394d42009-09-15 15:58:07 +00002482 std::pair<LLVMContextImpl::StructConstantsTy::MapKey, ConstantStruct*> Lookup;
Chris Lattner1afcace2011-07-09 17:41:24 +00002483 Lookup.first.first = cast<StructType>(getType());
Owen Anderson8fa33382009-07-27 22:29:26 +00002484 Lookup.second = this;
2485 std::vector<Constant*> &Values = Lookup.first.second;
2486 Values.reserve(getNumOperands()); // Build replacement struct.
2487
2488
2489 // Fill values with the modified operands of the constant struct. Also,
2490 // compute whether this turns into an all-zeros struct.
2491 bool isAllZeros = false;
Chris Lattnere150e2d2012-01-26 02:31:22 +00002492 bool isAllUndef = false;
2493 if (ToC->isNullValue()) {
Owen Anderson8fa33382009-07-27 22:29:26 +00002494 isAllZeros = true;
2495 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2496 Constant *Val = cast<Constant>(O->get());
2497 Values.push_back(Val);
2498 if (isAllZeros) isAllZeros = Val->isNullValue();
2499 }
Chris Lattnere150e2d2012-01-26 02:31:22 +00002500 } else if (isa<UndefValue>(ToC)) {
2501 isAllUndef = true;
2502 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2503 Constant *Val = cast<Constant>(O->get());
2504 Values.push_back(Val);
2505 if (isAllUndef) isAllUndef = isa<UndefValue>(Val);
2506 }
2507 } else {
2508 for (Use *O = OperandList, *E = OperandList + getNumOperands(); O != E; ++O)
2509 Values.push_back(cast<Constant>(O->get()));
Owen Anderson8fa33382009-07-27 22:29:26 +00002510 }
2511 Values[OperandToUpdate] = ToC;
2512
Chris Lattner1afcace2011-07-09 17:41:24 +00002513 LLVMContextImpl *pImpl = getContext().pImpl;
Owen Anderson8fa33382009-07-27 22:29:26 +00002514
2515 Constant *Replacement = 0;
2516 if (isAllZeros) {
Chris Lattner1afcace2011-07-09 17:41:24 +00002517 Replacement = ConstantAggregateZero::get(getType());
Chris Lattnere150e2d2012-01-26 02:31:22 +00002518 } else if (isAllUndef) {
2519 Replacement = UndefValue::get(getType());
Owen Anderson8fa33382009-07-27 22:29:26 +00002520 } else {
Chris Lattner93604b62010-07-17 06:13:52 +00002521 // Check to see if we have this struct type already.
Owen Anderson8fa33382009-07-27 22:29:26 +00002522 bool Exists;
2523 LLVMContextImpl::StructConstantsTy::MapTy::iterator I =
2524 pImpl->StructConstants.InsertOrGetItem(Lookup, Exists);
2525
2526 if (Exists) {
Devang Patel5f4ac842009-09-03 01:39:20 +00002527 Replacement = I->second;
Owen Anderson8fa33382009-07-27 22:29:26 +00002528 } else {
2529 // Okay, the new shape doesn't exist in the system yet. Instead of
2530 // creating a new constant struct, inserting it, replaceallusesof'ing the
2531 // old with the new, then deleting the old... just update the current one
2532 // in place!
2533 pImpl->StructConstants.MoveConstantToNewSlot(this, I);
2534
2535 // Update to the new value.
2536 setOperand(OperandToUpdate, ToC);
2537 return;
2538 }
2539 }
2540
2541 assert(Replacement != this && "I didn't contain From!");
Chris Lattner5cbade92005-10-03 21:58:36 +00002542
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002543 // Everyone using this now uses the replacement.
Chris Lattner678f9e02011-07-15 06:18:52 +00002544 replaceAllUsesWith(Replacement);
Chris Lattner5cbade92005-10-03 21:58:36 +00002545
2546 // Delete the old constant!
2547 destroyConstant();
2548}
2549
Reid Spencer9d6565a2007-02-15 02:26:10 +00002550void ConstantVector::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002551 Use *U) {
Chris Lattner5cbade92005-10-03 21:58:36 +00002552 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2553
Chris Lattnera7c69882012-01-26 20:40:56 +00002554 SmallVector<Constant*, 8> Values;
Chris Lattner5cbade92005-10-03 21:58:36 +00002555 Values.reserve(getNumOperands()); // Build replacement array...
2556 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
2557 Constant *Val = getOperand(i);
2558 if (Val == From) Val = cast<Constant>(To);
2559 Values.push_back(Val);
2560 }
2561
Jay Foada0c13842011-06-22 09:10:19 +00002562 Constant *Replacement = get(Values);
Chris Lattner5cbade92005-10-03 21:58:36 +00002563 assert(Replacement != this && "I didn't contain From!");
2564
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002565 // Everyone using this now uses the replacement.
Chris Lattner678f9e02011-07-15 06:18:52 +00002566 replaceAllUsesWith(Replacement);
Chris Lattner5cbade92005-10-03 21:58:36 +00002567
2568 // Delete the old constant!
2569 destroyConstant();
2570}
2571
2572void ConstantExpr::replaceUsesOfWithOnConstant(Value *From, Value *ToV,
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002573 Use *U) {
Chris Lattner5cbade92005-10-03 21:58:36 +00002574 assert(isa<Constant>(ToV) && "Cannot make Constant refer to non-constant!");
2575 Constant *To = cast<Constant>(ToV);
2576
Chris Lattner1a8def62012-01-26 20:37:11 +00002577 SmallVector<Constant*, 8> NewOps;
2578 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
2579 Constant *Op = getOperand(i);
2580 NewOps.push_back(Op == From ? To : Op);
Chris Lattner5cbade92005-10-03 21:58:36 +00002581 }
2582
Chris Lattner1a8def62012-01-26 20:37:11 +00002583 Constant *Replacement = getWithOperands(NewOps);
Chris Lattner5cbade92005-10-03 21:58:36 +00002584 assert(Replacement != this && "I didn't contain From!");
2585
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002586 // Everyone using this now uses the replacement.
Chris Lattner678f9e02011-07-15 06:18:52 +00002587 replaceAllUsesWith(Replacement);
Chris Lattner5cbade92005-10-03 21:58:36 +00002588
2589 // Delete the old constant!
2590 destroyConstant();
Matthijs Kooijman10b9de62008-07-03 07:46:41 +00002591}