blob: df98d7586441d4a1d77b4b4812d0b164350f598e [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
81 return false;
82}
Benjamin Kramerb518cae2011-11-14 19:12:20 +000083
Owen Andersona7235ea2009-07-31 20:28:14 +000084// Constructor to create a '0' constant of arbitrary type...
Chris Lattnerdb125cf2011-07-18 04:54:35 +000085Constant *Constant::getNullValue(Type *Ty) {
Owen Andersona7235ea2009-07-31 20:28:14 +000086 switch (Ty->getTypeID()) {
87 case Type::IntegerTyID:
88 return ConstantInt::get(Ty, 0);
Dan Gohmance163392011-12-17 00:04:22 +000089 case Type::HalfTyID:
90 return ConstantFP::get(Ty->getContext(),
91 APFloat::getZero(APFloat::IEEEhalf));
Owen Andersona7235ea2009-07-31 20:28:14 +000092 case Type::FloatTyID:
Benjamin Kramer98383962010-12-04 14:22:24 +000093 return ConstantFP::get(Ty->getContext(),
94 APFloat::getZero(APFloat::IEEEsingle));
Owen Andersona7235ea2009-07-31 20:28:14 +000095 case Type::DoubleTyID:
Benjamin Kramer98383962010-12-04 14:22:24 +000096 return ConstantFP::get(Ty->getContext(),
97 APFloat::getZero(APFloat::IEEEdouble));
Owen Andersona7235ea2009-07-31 20:28:14 +000098 case Type::X86_FP80TyID:
Benjamin Kramer98383962010-12-04 14:22:24 +000099 return ConstantFP::get(Ty->getContext(),
100 APFloat::getZero(APFloat::x87DoubleExtended));
Owen Andersona7235ea2009-07-31 20:28:14 +0000101 case Type::FP128TyID:
102 return ConstantFP::get(Ty->getContext(),
Benjamin Kramer98383962010-12-04 14:22:24 +0000103 APFloat::getZero(APFloat::IEEEquad));
Owen Andersona7235ea2009-07-31 20:28:14 +0000104 case Type::PPC_FP128TyID:
Benjamin Kramer98383962010-12-04 14:22:24 +0000105 return ConstantFP::get(Ty->getContext(),
Benjamin Kramer299ee182010-12-04 14:43:08 +0000106 APFloat(APInt::getNullValue(128)));
Owen Andersona7235ea2009-07-31 20:28:14 +0000107 case Type::PointerTyID:
108 return ConstantPointerNull::get(cast<PointerType>(Ty));
109 case Type::StructTyID:
110 case Type::ArrayTyID:
111 case Type::VectorTyID:
112 return ConstantAggregateZero::get(Ty);
113 default:
114 // Function, Label, or Opaque type?
Richard Trieu23946fc2011-09-21 03:09:09 +0000115 assert(0 && "Cannot create a null constant of that type!");
Owen Andersona7235ea2009-07-31 20:28:14 +0000116 return 0;
117 }
118}
119
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000120Constant *Constant::getIntegerValue(Type *Ty, const APInt &V) {
121 Type *ScalarTy = Ty->getScalarType();
Dan Gohman43ee5f72009-08-03 22:07:33 +0000122
123 // Create the base integer constant.
124 Constant *C = ConstantInt::get(Ty->getContext(), V);
125
126 // Convert an integer to a pointer, if necessary.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000127 if (PointerType *PTy = dyn_cast<PointerType>(ScalarTy))
Dan Gohman43ee5f72009-08-03 22:07:33 +0000128 C = ConstantExpr::getIntToPtr(C, PTy);
129
130 // Broadcast a scalar to a vector, if necessary.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000131 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Dan Gohman43ee5f72009-08-03 22:07:33 +0000132 C = ConstantVector::get(std::vector<Constant *>(VTy->getNumElements(), C));
133
134 return C;
135}
136
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000137Constant *Constant::getAllOnesValue(Type *Ty) {
138 if (IntegerType *ITy = dyn_cast<IntegerType>(Ty))
Owen Andersona7235ea2009-07-31 20:28:14 +0000139 return ConstantInt::get(Ty->getContext(),
140 APInt::getAllOnesValue(ITy->getBitWidth()));
Nadav Rotem093399c2011-02-17 21:22:27 +0000141
142 if (Ty->isFloatingPointTy()) {
143 APFloat FL = APFloat::getAllOnesValue(Ty->getPrimitiveSizeInBits(),
144 !Ty->isPPC_FP128Ty());
145 return ConstantFP::get(Ty->getContext(), FL);
146 }
147
Chris Lattner2ca5c862011-02-15 00:14:00 +0000148 SmallVector<Constant*, 16> Elts;
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000149 VectorType *VTy = cast<VectorType>(Ty);
Owen Andersona7235ea2009-07-31 20:28:14 +0000150 Elts.resize(VTy->getNumElements(), getAllOnesValue(VTy->getElementType()));
Nadav Rotem4c7c0f22011-08-24 20:18:38 +0000151 assert(Elts[0] && "Invalid AllOnes value!");
Owen Andersona7235ea2009-07-31 20:28:14 +0000152 return cast<ConstantVector>(ConstantVector::get(Elts));
153}
154
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000155void Constant::destroyConstantImpl() {
156 // When a Constant is destroyed, there may be lingering
Chris Lattnerf5ec48d2001-10-13 06:57:33 +0000157 // references to the constant by other constants in the constant pool. These
Misha Brukmanef6a6a62003-08-21 22:14:26 +0000158 // constants are implicitly dependent on the module that is being deleted,
Chris Lattnerf5ec48d2001-10-13 06:57:33 +0000159 // but they don't know that. Because we only find out when the CPV is
160 // deleted, we must now notify all of our users (that should only be
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000161 // Constants) that they are, in fact, invalid now and should be deleted.
Chris Lattnerf5ec48d2001-10-13 06:57:33 +0000162 //
163 while (!use_empty()) {
164 Value *V = use_back();
165#ifndef NDEBUG // Only in -g mode...
Chris Lattner37f077a2009-08-23 04:02:03 +0000166 if (!isa<Constant>(V)) {
David Greened2e63b72010-01-05 01:29:19 +0000167 dbgs() << "While deleting: " << *this
Chris Lattner37f077a2009-08-23 04:02:03 +0000168 << "\n\nUse still stuck around after Def is destroyed: "
169 << *V << "\n\n";
170 }
Chris Lattnerf5ec48d2001-10-13 06:57:33 +0000171#endif
Vikram S. Adve345e0cf2002-07-14 23:13:17 +0000172 assert(isa<Constant>(V) && "References remain to Constant being destroyed");
Reid Spencer1c9c8e62004-07-17 23:48:33 +0000173 Constant *CV = cast<Constant>(V);
174 CV->destroyConstant();
Chris Lattnerf5ec48d2001-10-13 06:57:33 +0000175
176 // The constant should remove itself from our use list...
Vikram S. Adve345e0cf2002-07-14 23:13:17 +0000177 assert((use_empty() || use_back() != V) && "Constant not removed!");
Chris Lattnerf5ec48d2001-10-13 06:57:33 +0000178 }
179
180 // Value has no outstanding references it is safe to delete it now...
181 delete this;
Chris Lattner1d87bcf2001-10-01 20:11:19 +0000182}
Chris Lattner00950542001-06-06 20:29:01 +0000183
Chris Lattner35b89fa2006-10-20 00:27:06 +0000184/// canTrap - Return true if evaluation of this constant could trap. This is
185/// true for things like constant expressions that could divide by zero.
186bool Constant::canTrap() const {
187 assert(getType()->isFirstClassType() && "Cannot evaluate aggregate vals!");
188 // The only thing that could possibly trap are constant exprs.
189 const ConstantExpr *CE = dyn_cast<ConstantExpr>(this);
190 if (!CE) return false;
191
192 // ConstantExpr traps if any operands can trap.
193 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Chris Lattner0eeb9132009-10-28 05:14:34 +0000194 if (CE->getOperand(i)->canTrap())
Chris Lattner35b89fa2006-10-20 00:27:06 +0000195 return true;
196
197 // Otherwise, only specific operations can trap.
198 switch (CE->getOpcode()) {
199 default:
200 return false;
Reid Spencer1628cec2006-10-26 06:15:43 +0000201 case Instruction::UDiv:
202 case Instruction::SDiv:
203 case Instruction::FDiv:
Reid Spencer0a783f72006-11-02 01:53:59 +0000204 case Instruction::URem:
205 case Instruction::SRem:
206 case Instruction::FRem:
Chris Lattner35b89fa2006-10-20 00:27:06 +0000207 // Div and rem can trap if the RHS is not known to be non-zero.
Chris Lattner0eeb9132009-10-28 05:14:34 +0000208 if (!isa<ConstantInt>(CE->getOperand(1)) ||CE->getOperand(1)->isNullValue())
Chris Lattner35b89fa2006-10-20 00:27:06 +0000209 return true;
210 return false;
211 }
212}
213
Chris Lattner4a7642e2009-11-01 18:11:50 +0000214/// isConstantUsed - Return true if the constant has users other than constant
215/// exprs and other dangling things.
216bool Constant::isConstantUsed() const {
Gabor Greif60ad7812010-03-25 23:06:16 +0000217 for (const_use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI) {
Chris Lattner4a7642e2009-11-01 18:11:50 +0000218 const Constant *UC = dyn_cast<Constant>(*UI);
219 if (UC == 0 || isa<GlobalValue>(UC))
220 return true;
221
222 if (UC->isConstantUsed())
223 return true;
224 }
225 return false;
226}
227
228
Chris Lattner7cf12c72009-07-22 00:05:44 +0000229
230/// getRelocationInfo - This method classifies the entry according to
231/// whether or not it may generate a relocation entry. This must be
232/// conservative, so if it might codegen to a relocatable entry, it should say
233/// so. The return values are:
234///
Chris Lattner083a1e02009-07-24 03:27:21 +0000235/// NoRelocation: This constant pool entry is guaranteed to never have a
236/// relocation applied to it (because it holds a simple constant like
237/// '4').
238/// LocalRelocation: This entry has relocations, but the entries are
239/// guaranteed to be resolvable by the static linker, so the dynamic
240/// linker will never see them.
241/// GlobalRelocations: This entry may have arbitrary relocations.
Chris Lattner7cf12c72009-07-22 00:05:44 +0000242///
243/// FIXME: This really should not be in VMCore.
Chris Lattner083a1e02009-07-24 03:27:21 +0000244Constant::PossibleRelocationsTy Constant::getRelocationInfo() const {
245 if (const GlobalValue *GV = dyn_cast<GlobalValue>(this)) {
Chris Lattner7cf12c72009-07-22 00:05:44 +0000246 if (GV->hasLocalLinkage() || GV->hasHiddenVisibility())
Chris Lattner083a1e02009-07-24 03:27:21 +0000247 return LocalRelocation; // Local to this file/library.
248 return GlobalRelocations; // Global reference.
Anton Korobeynikovab267a22009-03-29 17:13:18 +0000249 }
Chris Lattner7cf12c72009-07-22 00:05:44 +0000250
Chris Lattner5d81bef2009-10-28 04:12:16 +0000251 if (const BlockAddress *BA = dyn_cast<BlockAddress>(this))
252 return BA->getFunction()->getRelocationInfo();
253
Chris Lattner5099b312010-01-03 18:09:40 +0000254 // While raw uses of blockaddress need to be relocated, differences between
255 // two of them don't when they are for labels in the same function. This is a
256 // common idiom when creating a table for the indirect goto extension, so we
257 // handle it efficiently here.
258 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(this))
259 if (CE->getOpcode() == Instruction::Sub) {
260 ConstantExpr *LHS = dyn_cast<ConstantExpr>(CE->getOperand(0));
261 ConstantExpr *RHS = dyn_cast<ConstantExpr>(CE->getOperand(1));
262 if (LHS && RHS &&
263 LHS->getOpcode() == Instruction::PtrToInt &&
264 RHS->getOpcode() == Instruction::PtrToInt &&
265 isa<BlockAddress>(LHS->getOperand(0)) &&
266 isa<BlockAddress>(RHS->getOperand(0)) &&
267 cast<BlockAddress>(LHS->getOperand(0))->getFunction() ==
268 cast<BlockAddress>(RHS->getOperand(0))->getFunction())
269 return NoRelocation;
270 }
271
Chris Lattner083a1e02009-07-24 03:27:21 +0000272 PossibleRelocationsTy Result = NoRelocation;
Evan Chengafe15812007-03-08 00:59:12 +0000273 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Chris Lattner0eeb9132009-10-28 05:14:34 +0000274 Result = std::max(Result,
275 cast<Constant>(getOperand(i))->getRelocationInfo());
Chris Lattner7cf12c72009-07-22 00:05:44 +0000276
277 return Result;
Evan Chengafe15812007-03-08 00:59:12 +0000278}
279
Chris Lattner7cf12c72009-07-22 00:05:44 +0000280
Chris Lattner86381442008-07-10 00:28:11 +0000281/// getVectorElements - This method, which is only valid on constant of vector
282/// type, returns the elements of the vector in the specified smallvector.
Chris Lattner071aade2008-07-14 05:10:41 +0000283/// This handles breaking down a vector undef into undef elements, etc. For
284/// constant exprs and other cases we can't handle, we return an empty vector.
Chris Lattnerb29d5962010-02-01 20:48:08 +0000285void Constant::getVectorElements(SmallVectorImpl<Constant*> &Elts) const {
Duncan Sands1df98592010-02-16 11:11:14 +0000286 assert(getType()->isVectorTy() && "Not a vector constant!");
Chris Lattner86381442008-07-10 00:28:11 +0000287
288 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this)) {
289 for (unsigned i = 0, e = CV->getNumOperands(); i != e; ++i)
290 Elts.push_back(CV->getOperand(i));
291 return;
292 }
293
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000294 VectorType *VT = cast<VectorType>(getType());
Chris Lattner86381442008-07-10 00:28:11 +0000295 if (isa<ConstantAggregateZero>(this)) {
296 Elts.assign(VT->getNumElements(),
Owen Andersona7235ea2009-07-31 20:28:14 +0000297 Constant::getNullValue(VT->getElementType()));
Chris Lattner86381442008-07-10 00:28:11 +0000298 return;
299 }
300
Chris Lattner071aade2008-07-14 05:10:41 +0000301 if (isa<UndefValue>(this)) {
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000302 Elts.assign(VT->getNumElements(), UndefValue::get(VT->getElementType()));
Chris Lattner071aade2008-07-14 05:10:41 +0000303 return;
304 }
305
306 // Unknown type, must be constant expr etc.
Chris Lattner86381442008-07-10 00:28:11 +0000307}
308
309
Chris Lattner13fb0db2011-02-18 04:41:42 +0000310/// removeDeadUsersOfConstant - If the specified constantexpr is dead, remove
311/// it. This involves recursively eliminating any dead users of the
312/// constantexpr.
313static bool removeDeadUsersOfConstant(const Constant *C) {
314 if (isa<GlobalValue>(C)) return false; // Cannot remove this
315
316 while (!C->use_empty()) {
317 const Constant *User = dyn_cast<Constant>(C->use_back());
318 if (!User) return false; // Non-constant usage;
319 if (!removeDeadUsersOfConstant(User))
320 return false; // Constant wasn't dead
321 }
322
323 const_cast<Constant*>(C)->destroyConstant();
324 return true;
325}
326
327
328/// removeDeadConstantUsers - If there are any dead constant users dangling
329/// off of this constant, remove them. This method is useful for clients
330/// that want to check to see if a global is unused, but don't want to deal
331/// with potentially dead constants hanging off of the globals.
332void Constant::removeDeadConstantUsers() const {
333 Value::const_use_iterator I = use_begin(), E = use_end();
334 Value::const_use_iterator LastNonDeadUser = E;
335 while (I != E) {
336 const Constant *User = dyn_cast<Constant>(*I);
337 if (User == 0) {
338 LastNonDeadUser = I;
339 ++I;
340 continue;
341 }
342
343 if (!removeDeadUsersOfConstant(User)) {
344 // If the constant wasn't dead, remember that this was the last live use
345 // and move on to the next constant.
346 LastNonDeadUser = I;
347 ++I;
348 continue;
349 }
350
351 // If the constant was dead, then the iterator is invalidated.
352 if (LastNonDeadUser == E) {
353 I = use_begin();
354 if (I == E) break;
355 } else {
356 I = LastNonDeadUser;
357 ++I;
358 }
359 }
360}
361
362
Chris Lattner86381442008-07-10 00:28:11 +0000363
Chris Lattner00950542001-06-06 20:29:01 +0000364//===----------------------------------------------------------------------===//
Chris Lattner6b6f6ba2007-02-20 06:39:57 +0000365// ConstantInt
Chris Lattner00950542001-06-06 20:29:01 +0000366//===----------------------------------------------------------------------===//
367
David Blaikie2d24e2a2011-12-20 02:50:00 +0000368void ConstantInt::anchor() { }
369
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000370ConstantInt::ConstantInt(IntegerType *Ty, const APInt& V)
Chris Lattnereb41bdd2007-02-20 05:55:46 +0000371 : Constant(Ty, ConstantIntVal, 0, 0), Val(V) {
Reid Spencer532d0ce2007-02-26 23:54:03 +0000372 assert(V.getBitWidth() == Ty->getBitWidth() && "Invalid constant for type");
Chris Lattner00950542001-06-06 20:29:01 +0000373}
374
Nick Lewyckyd01f50f2011-03-06 03:36:19 +0000375ConstantInt *ConstantInt::getTrue(LLVMContext &Context) {
Owen Anderson5defacc2009-07-31 17:39:07 +0000376 LLVMContextImpl *pImpl = Context.pImpl;
Benjamin Kramerf601d6d2010-11-20 18:43:35 +0000377 if (!pImpl->TheTrueVal)
378 pImpl->TheTrueVal = ConstantInt::get(Type::getInt1Ty(Context), 1);
379 return pImpl->TheTrueVal;
Owen Anderson5defacc2009-07-31 17:39:07 +0000380}
381
Nick Lewyckyd01f50f2011-03-06 03:36:19 +0000382ConstantInt *ConstantInt::getFalse(LLVMContext &Context) {
Owen Anderson5defacc2009-07-31 17:39:07 +0000383 LLVMContextImpl *pImpl = Context.pImpl;
Benjamin Kramerf601d6d2010-11-20 18:43:35 +0000384 if (!pImpl->TheFalseVal)
385 pImpl->TheFalseVal = ConstantInt::get(Type::getInt1Ty(Context), 0);
386 return pImpl->TheFalseVal;
Owen Anderson5defacc2009-07-31 17:39:07 +0000387}
388
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000389Constant *ConstantInt::getTrue(Type *Ty) {
390 VectorType *VTy = dyn_cast<VectorType>(Ty);
Nick Lewyckyd01f50f2011-03-06 03:36:19 +0000391 if (!VTy) {
392 assert(Ty->isIntegerTy(1) && "True must be i1 or vector of i1.");
393 return ConstantInt::getTrue(Ty->getContext());
394 }
395 assert(VTy->getElementType()->isIntegerTy(1) &&
396 "True must be vector of i1 or i1.");
397 SmallVector<Constant*, 16> Splat(VTy->getNumElements(),
398 ConstantInt::getTrue(Ty->getContext()));
399 return ConstantVector::get(Splat);
400}
401
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000402Constant *ConstantInt::getFalse(Type *Ty) {
403 VectorType *VTy = dyn_cast<VectorType>(Ty);
Nick Lewyckyd01f50f2011-03-06 03:36:19 +0000404 if (!VTy) {
405 assert(Ty->isIntegerTy(1) && "False must be i1 or vector of i1.");
406 return ConstantInt::getFalse(Ty->getContext());
407 }
408 assert(VTy->getElementType()->isIntegerTy(1) &&
409 "False must be vector of i1 or i1.");
410 SmallVector<Constant*, 16> Splat(VTy->getNumElements(),
411 ConstantInt::getFalse(Ty->getContext()));
412 return ConstantVector::get(Splat);
413}
414
Owen Anderson5defacc2009-07-31 17:39:07 +0000415
Owen Andersoneed707b2009-07-24 23:12:02 +0000416// Get a ConstantInt from an APInt. Note that the value stored in the DenseMap
417// as the key, is a DenseMapAPIntKeyInfo::KeyTy which has provided the
418// operator== and operator!= to ensure that the DenseMap doesn't attempt to
419// compare APInt's of different widths, which would violate an APInt class
420// invariant which generates an assertion.
Nick Lewyckyd01f50f2011-03-06 03:36:19 +0000421ConstantInt *ConstantInt::get(LLVMContext &Context, const APInt &V) {
Owen Andersoneed707b2009-07-24 23:12:02 +0000422 // Get the corresponding integer type for the bit width of the value.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000423 IntegerType *ITy = IntegerType::get(Context, V.getBitWidth());
Owen Andersoneed707b2009-07-24 23:12:02 +0000424 // get an existing value or the insertion position
425 DenseMapAPIntKeyInfo::KeyTy Key(V, ITy);
Owen Andersoneed707b2009-07-24 23:12:02 +0000426 ConstantInt *&Slot = Context.pImpl->IntConstants[Key];
Owen Anderson59d5aac2009-10-19 20:11:52 +0000427 if (!Slot) Slot = new ConstantInt(ITy, V);
428 return Slot;
Owen Andersoneed707b2009-07-24 23:12:02 +0000429}
430
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000431Constant *ConstantInt::get(Type *Ty, uint64_t V, bool isSigned) {
Nick Lewyckyd01f50f2011-03-06 03:36:19 +0000432 Constant *C = get(cast<IntegerType>(Ty->getScalarType()), V, isSigned);
Owen Andersoneed707b2009-07-24 23:12:02 +0000433
434 // For vectors, broadcast the value.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000435 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattner2ca5c862011-02-15 00:14:00 +0000436 return ConstantVector::get(SmallVector<Constant*,
437 16>(VTy->getNumElements(), C));
Owen Andersoneed707b2009-07-24 23:12:02 +0000438
439 return C;
440}
441
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000442ConstantInt* ConstantInt::get(IntegerType* Ty, uint64_t V,
Owen Andersoneed707b2009-07-24 23:12:02 +0000443 bool isSigned) {
444 return get(Ty->getContext(), APInt(Ty->getBitWidth(), V, isSigned));
445}
446
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000447ConstantInt* ConstantInt::getSigned(IntegerType* Ty, int64_t V) {
Owen Andersoneed707b2009-07-24 23:12:02 +0000448 return get(Ty, V, true);
449}
450
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000451Constant *ConstantInt::getSigned(Type *Ty, int64_t V) {
Owen Andersoneed707b2009-07-24 23:12:02 +0000452 return get(Ty, V, true);
453}
454
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000455Constant *ConstantInt::get(Type* Ty, const APInt& V) {
Owen Andersoneed707b2009-07-24 23:12:02 +0000456 ConstantInt *C = get(Ty->getContext(), V);
457 assert(C->getType() == Ty->getScalarType() &&
458 "ConstantInt type doesn't match the type implied by its value!");
459
460 // For vectors, broadcast the value.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000461 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Owen Andersonaf7ec972009-07-28 21:19:26 +0000462 return ConstantVector::get(
Chris Lattner2ca5c862011-02-15 00:14:00 +0000463 SmallVector<Constant *, 16>(VTy->getNumElements(), C));
Owen Andersoneed707b2009-07-24 23:12:02 +0000464
465 return C;
466}
467
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000468ConstantInt* ConstantInt::get(IntegerType* Ty, StringRef Str,
Erick Tryzelaar0e81f662009-08-16 23:36:33 +0000469 uint8_t radix) {
470 return get(Ty->getContext(), APInt(Ty->getBitWidth(), Str, radix));
471}
472
Chris Lattner6b6f6ba2007-02-20 06:39:57 +0000473//===----------------------------------------------------------------------===//
Chris Lattner9b4ee0c2007-02-20 07:17:17 +0000474// ConstantFP
Chris Lattner6b6f6ba2007-02-20 06:39:57 +0000475//===----------------------------------------------------------------------===//
476
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000477static const fltSemantics *TypeToFloatSemantics(Type *Ty) {
Dan Gohmance163392011-12-17 00:04:22 +0000478 if (Ty->isHalfTy())
479 return &APFloat::IEEEhalf;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000480 if (Ty->isFloatTy())
Rafael Espindola87d1f472009-07-15 17:40:42 +0000481 return &APFloat::IEEEsingle;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000482 if (Ty->isDoubleTy())
Rafael Espindola87d1f472009-07-15 17:40:42 +0000483 return &APFloat::IEEEdouble;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000484 if (Ty->isX86_FP80Ty())
Rafael Espindola87d1f472009-07-15 17:40:42 +0000485 return &APFloat::x87DoubleExtended;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000486 else if (Ty->isFP128Ty())
Rafael Espindola87d1f472009-07-15 17:40:42 +0000487 return &APFloat::IEEEquad;
488
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000489 assert(Ty->isPPC_FP128Ty() && "Unknown FP format");
Rafael Espindola87d1f472009-07-15 17:40:42 +0000490 return &APFloat::PPCDoubleDouble;
491}
492
David Blaikie2d24e2a2011-12-20 02:50:00 +0000493void ConstantFP::anchor() { }
494
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000495/// get() - This returns a constant fp for the specified value in the
496/// specified type. This should only be used for simple constant values like
497/// 2.0/1.0 etc, that are known-valid both as double and as the target format.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000498Constant *ConstantFP::get(Type* Ty, double V) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000499 LLVMContext &Context = Ty->getContext();
500
501 APFloat FV(V);
502 bool ignored;
503 FV.convert(*TypeToFloatSemantics(Ty->getScalarType()),
504 APFloat::rmNearestTiesToEven, &ignored);
505 Constant *C = get(Context, FV);
506
507 // For vectors, broadcast the value.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000508 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Owen Andersonaf7ec972009-07-28 21:19:26 +0000509 return ConstantVector::get(
Chris Lattner2ca5c862011-02-15 00:14:00 +0000510 SmallVector<Constant *, 16>(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 Lattnerdb125cf2011-07-18 04:54:35 +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))
Erick Tryzelaar0e81f662009-08-16 23:36:33 +0000524 return ConstantVector::get(
Chris Lattner2ca5c862011-02-15 00:14:00 +0000525 SmallVector<Constant *, 16>(VTy->getNumElements(), C));
Erick Tryzelaar0e81f662009-08-16 23:36:33 +0000526
527 return C;
528}
529
530
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000531ConstantFP* ConstantFP::getNegativeZero(Type* Ty) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000532 LLVMContext &Context = Ty->getContext();
Owen Andersona7235ea2009-07-31 20:28:14 +0000533 APFloat apf = cast <ConstantFP>(Constant::getNullValue(Ty))->getValueAPF();
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000534 apf.changeSign();
535 return get(Context, apf);
536}
537
538
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000539Constant *ConstantFP::getZeroValueForNegation(Type* Ty) {
540 if (VectorType *PTy = dyn_cast<VectorType>(Ty))
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000541 if (PTy->getElementType()->isFloatingPointTy()) {
Chris Lattner2ca5c862011-02-15 00:14:00 +0000542 SmallVector<Constant*, 16> zeros(PTy->getNumElements(),
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000543 getNegativeZero(PTy->getElementType()));
Chris Lattner2ca5c862011-02-15 00:14:00 +0000544 return ConstantVector::get(zeros);
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000545 }
546
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000547 if (Ty->isFloatingPointTy())
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000548 return getNegativeZero(Ty);
549
Owen Andersona7235ea2009-07-31 20:28:14 +0000550 return Constant::getNullValue(Ty);
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000551}
552
553
554// ConstantFP accessors.
555ConstantFP* ConstantFP::get(LLVMContext &Context, const APFloat& V) {
556 DenseMapAPFloatKeyInfo::KeyTy Key(V);
557
558 LLVMContextImpl* pImpl = Context.pImpl;
559
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000560 ConstantFP *&Slot = pImpl->FPConstants[Key];
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000561
562 if (!Slot) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000563 Type *Ty;
Dan Gohmance163392011-12-17 00:04:22 +0000564 if (&V.getSemantics() == &APFloat::IEEEhalf)
565 Ty = Type::getHalfTy(Context);
566 else if (&V.getSemantics() == &APFloat::IEEEsingle)
Owen Anderson59d5aac2009-10-19 20:11:52 +0000567 Ty = Type::getFloatTy(Context);
568 else if (&V.getSemantics() == &APFloat::IEEEdouble)
569 Ty = Type::getDoubleTy(Context);
570 else if (&V.getSemantics() == &APFloat::x87DoubleExtended)
571 Ty = Type::getX86_FP80Ty(Context);
572 else if (&V.getSemantics() == &APFloat::IEEEquad)
573 Ty = Type::getFP128Ty(Context);
574 else {
575 assert(&V.getSemantics() == &APFloat::PPCDoubleDouble &&
576 "Unknown FP format");
577 Ty = Type::getPPC_FP128Ty(Context);
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000578 }
Owen Anderson59d5aac2009-10-19 20:11:52 +0000579 Slot = new ConstantFP(Ty, V);
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000580 }
581
582 return Slot;
583}
584
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000585ConstantFP *ConstantFP::getInfinity(Type *Ty, bool Negative) {
Dan Gohmanf344f7f2009-09-25 23:00:48 +0000586 const fltSemantics &Semantics = *TypeToFloatSemantics(Ty);
587 return ConstantFP::get(Ty->getContext(),
588 APFloat::getInf(Semantics, Negative));
589}
590
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000591ConstantFP::ConstantFP(Type *Ty, const APFloat& V)
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000592 : Constant(Ty, ConstantFPVal, 0, 0), Val(V) {
Chris Lattner288e78f2008-04-09 06:38:30 +0000593 assert(&V.getSemantics() == TypeToFloatSemantics(Ty) &&
594 "FP type Mismatch");
Chris Lattner00950542001-06-06 20:29:01 +0000595}
596
Chris Lattner032c6eb2011-07-15 06:14:08 +0000597bool ConstantFP::isExactlyValue(const APFloat &V) const {
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000598 return Val.bitwiseIsEqual(V);
Chris Lattner9b4ee0c2007-02-20 07:17:17 +0000599}
600
Chris Lattner9b4ee0c2007-02-20 07:17:17 +0000601//===----------------------------------------------------------------------===//
Chris Lattnerff2b7f32012-01-24 05:42:11 +0000602// ConstantAggregateZero Implementation
603//===----------------------------------------------------------------------===//
604
605/// getSequentialElement - If this CAZ has array or vector type, return a zero
606/// with the right element type.
607Constant *ConstantAggregateZero::getSequentialElement() {
608 return Constant::getNullValue(
609 cast<SequentialType>(getType())->getElementType());
610}
611
612/// getStructElement - If this CAZ has struct type, return a zero with the
613/// right element type for the specified element.
614Constant *ConstantAggregateZero::getStructElement(unsigned Elt) {
615 return Constant::getNullValue(
616 cast<StructType>(getType())->getElementType(Elt));
617}
618
619/// getElementValue - Return a zero of the right value for the specified GEP
620/// index if we can, otherwise return null (e.g. if C is a ConstantExpr).
621Constant *ConstantAggregateZero::getElementValue(Constant *C) {
622 if (isa<SequentialType>(getType()))
623 return getSequentialElement();
624 return getStructElement(cast<ConstantInt>(C)->getZExtValue());
625}
626
627//===----------------------------------------------------------------------===//
628// UndefValue Implementation
629//===----------------------------------------------------------------------===//
630
631/// getSequentialElement - If this undef has array or vector type, return an
632/// undef with the right element type.
633UndefValue *UndefValue::getSequentialElement() {
634 return UndefValue::get(cast<SequentialType>(getType())->getElementType());
635}
636
637/// getStructElement - If this undef has struct type, return a zero with the
638/// right element type for the specified element.
639UndefValue *UndefValue::getStructElement(unsigned Elt) {
640 return UndefValue::get(cast<StructType>(getType())->getElementType(Elt));
641}
642
643/// getElementValue - Return an undef of the right value for the specified GEP
644/// index if we can, otherwise return null (e.g. if C is a ConstantExpr).
645UndefValue *UndefValue::getElementValue(Constant *C) {
646 if (isa<SequentialType>(getType()))
647 return getSequentialElement();
648 return getStructElement(cast<ConstantInt>(C)->getZExtValue());
649}
650
651
652//===----------------------------------------------------------------------===//
Chris Lattner9b4ee0c2007-02-20 07:17:17 +0000653// ConstantXXX Classes
654//===----------------------------------------------------------------------===//
655
656
Jay Foad166579e2011-07-25 10:14:44 +0000657ConstantArray::ConstantArray(ArrayType *T, ArrayRef<Constant *> V)
Gabor Greifefe65362008-05-10 08:32:32 +0000658 : Constant(T, ConstantArrayVal,
659 OperandTraits<ConstantArray>::op_end(this) - V.size(),
660 V.size()) {
Alkis Evlogimenose0de1d62004-09-15 02:32:15 +0000661 assert(V.size() == T->getNumElements() &&
662 "Invalid initializer vector for constant array");
Jay Foad166579e2011-07-25 10:14:44 +0000663 for (unsigned i = 0, e = V.size(); i != e; ++i)
664 assert(V[i]->getType() == T->getElementType() &&
Alkis Evlogimenoscad90ad2004-09-10 04:16:59 +0000665 "Initializer for array element doesn't match array element type!");
Jay Foad166579e2011-07-25 10:14:44 +0000666 std::copy(V.begin(), V.end(), op_begin());
Chris Lattner00950542001-06-06 20:29:01 +0000667}
668
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000669Constant *ConstantArray::get(ArrayType *Ty, ArrayRef<Constant*> V) {
Jeffrey Yasskin1fb613c2009-09-30 21:08:08 +0000670 for (unsigned i = 0, e = V.size(); i != e; ++i) {
671 assert(V[i]->getType() == Ty->getElementType() &&
672 "Wrong type in array element initializer");
673 }
Owen Anderson1fd70962009-07-28 18:32:17 +0000674 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
675 // If this is an all-zero array, return a ConstantAggregateZero object
676 if (!V.empty()) {
677 Constant *C = V[0];
Chris Lattner83738a22009-12-30 20:25:09 +0000678 if (!C->isNullValue())
Owen Anderson1fd70962009-07-28 18:32:17 +0000679 return pImpl->ArrayConstants.getOrCreate(Ty, V);
Chris Lattner83738a22009-12-30 20:25:09 +0000680
Owen Anderson1fd70962009-07-28 18:32:17 +0000681 for (unsigned i = 1, e = V.size(); i != e; ++i)
Chris Lattner83738a22009-12-30 20:25:09 +0000682 if (V[i] != C)
Owen Anderson1fd70962009-07-28 18:32:17 +0000683 return pImpl->ArrayConstants.getOrCreate(Ty, V);
Owen Anderson1fd70962009-07-28 18:32:17 +0000684 }
685
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000686 return ConstantAggregateZero::get(Ty);
Owen Anderson1fd70962009-07-28 18:32:17 +0000687}
688
Owen Anderson1fd70962009-07-28 18:32:17 +0000689/// ConstantArray::get(const string&) - Return an array that is initialized to
690/// contain the specified string. If length is zero then a null terminator is
691/// added to the specified string so that it may be used in a natural way.
692/// Otherwise, the length parameter specifies how much of the string to use
693/// and it won't be null terminated.
694///
Chris Lattnerf067d582011-02-07 16:40:21 +0000695Constant *ConstantArray::get(LLVMContext &Context, StringRef Str,
Owen Anderson1d0be152009-08-13 21:58:54 +0000696 bool AddNull) {
Owen Anderson1fd70962009-07-28 18:32:17 +0000697 std::vector<Constant*> ElementVals;
Benjamin Kramerad2b04c2010-08-01 11:43:26 +0000698 ElementVals.reserve(Str.size() + size_t(AddNull));
Owen Anderson1fd70962009-07-28 18:32:17 +0000699 for (unsigned i = 0; i < Str.size(); ++i)
Owen Anderson1d0be152009-08-13 21:58:54 +0000700 ElementVals.push_back(ConstantInt::get(Type::getInt8Ty(Context), Str[i]));
Owen Anderson1fd70962009-07-28 18:32:17 +0000701
702 // Add a null terminator to the string...
703 if (AddNull) {
Owen Anderson1d0be152009-08-13 21:58:54 +0000704 ElementVals.push_back(ConstantInt::get(Type::getInt8Ty(Context), 0));
Owen Anderson1fd70962009-07-28 18:32:17 +0000705 }
706
Owen Anderson1d0be152009-08-13 21:58:54 +0000707 ArrayType *ATy = ArrayType::get(Type::getInt8Ty(Context), ElementVals.size());
Owen Anderson1fd70962009-07-28 18:32:17 +0000708 return get(ATy, ElementVals);
709}
710
Chris Lattnerb065b062011-06-20 04:01:31 +0000711/// getTypeForElements - Return an anonymous struct type to use for a constant
712/// with the specified set of elements. The list must not be empty.
713StructType *ConstantStruct::getTypeForElements(LLVMContext &Context,
714 ArrayRef<Constant*> V,
715 bool Packed) {
Jay Foad5fdd6c82011-07-12 14:06:48 +0000716 SmallVector<Type*, 16> EltTypes;
Chris Lattnerb065b062011-06-20 04:01:31 +0000717 for (unsigned i = 0, e = V.size(); i != e; ++i)
718 EltTypes.push_back(V[i]->getType());
719
720 return StructType::get(Context, EltTypes, Packed);
721}
722
723
724StructType *ConstantStruct::getTypeForElements(ArrayRef<Constant*> V,
725 bool Packed) {
726 assert(!V.empty() &&
727 "ConstantStruct::getTypeForElements cannot be called on empty list");
728 return getTypeForElements(V[0]->getContext(), V, Packed);
729}
730
731
Jay Foad166579e2011-07-25 10:14:44 +0000732ConstantStruct::ConstantStruct(StructType *T, ArrayRef<Constant *> V)
Gabor Greifefe65362008-05-10 08:32:32 +0000733 : Constant(T, ConstantStructVal,
734 OperandTraits<ConstantStruct>::op_end(this) - V.size(),
735 V.size()) {
Chris Lattnerf4ef8db2011-08-07 04:18:48 +0000736 assert(V.size() == T->getNumElements() &&
Vikram S. Adve345e0cf2002-07-14 23:13:17 +0000737 "Invalid initializer vector for constant structure");
Jay Foad166579e2011-07-25 10:14:44 +0000738 for (unsigned i = 0, e = V.size(); i != e; ++i)
739 assert((T->isOpaque() || V[i]->getType() == T->getElementType(i)) &&
Chris Lattnerb8438892003-06-02 17:42:47 +0000740 "Initializer for struct element doesn't match struct element type!");
Jay Foad166579e2011-07-25 10:14:44 +0000741 std::copy(V.begin(), V.end(), op_begin());
Chris Lattner00950542001-06-06 20:29:01 +0000742}
743
Owen Anderson8fa33382009-07-27 22:29:26 +0000744// ConstantStruct accessors.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000745Constant *ConstantStruct::get(StructType *ST, ArrayRef<Constant*> V) {
Chris Lattnerb065b062011-06-20 04:01:31 +0000746 // Create a ConstantAggregateZero value if all elements are zeros.
Owen Anderson8fa33382009-07-27 22:29:26 +0000747 for (unsigned i = 0, e = V.size(); i != e; ++i)
Jay Foad0df445b2011-06-22 08:55:11 +0000748 if (!V[i]->isNullValue())
749 return ST->getContext().pImpl->StructConstants.getOrCreate(ST, V);
Owen Anderson8fa33382009-07-27 22:29:26 +0000750
Chris Lattner1afcace2011-07-09 17:41:24 +0000751 assert((ST->isOpaque() || ST->getNumElements() == V.size()) &&
752 "Incorrect # elements specified to ConstantStruct::get");
Chris Lattnerb065b062011-06-20 04:01:31 +0000753 return ConstantAggregateZero::get(ST);
Owen Anderson8fa33382009-07-27 22:29:26 +0000754}
755
Chris Lattnerf4ef8db2011-08-07 04:18:48 +0000756Constant *ConstantStruct::get(StructType *T, ...) {
Talin41ee4e52011-02-28 23:53:27 +0000757 va_list ap;
Chris Lattnerb065b062011-06-20 04:01:31 +0000758 SmallVector<Constant*, 8> Values;
759 va_start(ap, T);
760 while (Constant *Val = va_arg(ap, llvm::Constant*))
Talin41ee4e52011-02-28 23:53:27 +0000761 Values.push_back(Val);
Talinbdcd7662011-03-01 18:00:49 +0000762 va_end(ap);
Chris Lattnerb065b062011-06-20 04:01:31 +0000763 return get(T, Values);
Talin41ee4e52011-02-28 23:53:27 +0000764}
765
Jay Foad166579e2011-07-25 10:14:44 +0000766ConstantVector::ConstantVector(VectorType *T, ArrayRef<Constant *> V)
Gabor Greifefe65362008-05-10 08:32:32 +0000767 : Constant(T, ConstantVectorVal,
768 OperandTraits<ConstantVector>::op_end(this) - V.size(),
769 V.size()) {
Jay Foad166579e2011-07-25 10:14:44 +0000770 for (size_t i = 0, e = V.size(); i != e; i++)
771 assert(V[i]->getType() == T->getElementType() &&
Dan Gohmanfa73ea22007-05-24 14:36:04 +0000772 "Initializer for vector element doesn't match vector element type!");
Jay Foad166579e2011-07-25 10:14:44 +0000773 std::copy(V.begin(), V.end(), op_begin());
Brian Gaeke715c90b2004-08-20 06:00:58 +0000774}
775
Owen Andersonaf7ec972009-07-28 21:19:26 +0000776// ConstantVector accessors.
Jay Foada0c13842011-06-22 09:10:19 +0000777Constant *ConstantVector::get(ArrayRef<Constant*> V) {
Jay Foad9afc5272011-01-27 14:44:55 +0000778 assert(!V.empty() && "Vectors can't be empty");
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000779 VectorType *T = VectorType::get(V.front()->getType(), V.size());
Chris Lattner2ca5c862011-02-15 00:14:00 +0000780 LLVMContextImpl *pImpl = T->getContext().pImpl;
Jay Foad9afc5272011-01-27 14:44:55 +0000781
Chris Lattner2ca5c862011-02-15 00:14:00 +0000782 // If this is an all-undef or all-zero vector, return a
Owen Andersonaf7ec972009-07-28 21:19:26 +0000783 // ConstantAggregateZero or UndefValue.
784 Constant *C = V[0];
785 bool isZero = C->isNullValue();
786 bool isUndef = isa<UndefValue>(C);
787
788 if (isZero || isUndef) {
789 for (unsigned i = 1, e = V.size(); i != e; ++i)
790 if (V[i] != C) {
791 isZero = isUndef = false;
792 break;
793 }
794 }
795
796 if (isZero)
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000797 return ConstantAggregateZero::get(T);
Owen Andersonaf7ec972009-07-28 21:19:26 +0000798 if (isUndef)
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000799 return UndefValue::get(T);
Owen Andersonaf7ec972009-07-28 21:19:26 +0000800
Owen Andersonaf7ec972009-07-28 21:19:26 +0000801 return pImpl->VectorConstants.getOrCreate(T, V);
802}
803
Reid Spencer3da59db2006-11-27 01:05:10 +0000804// Utility function for determining if a ConstantExpr is a CastOp or not. This
805// can't be inline because we don't want to #include Instruction.h into
806// Constant.h
807bool ConstantExpr::isCast() const {
808 return Instruction::isCast(getOpcode());
809}
810
Reid Spencer077d0eb2006-12-04 05:19:50 +0000811bool ConstantExpr::isCompare() const {
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +0000812 return getOpcode() == Instruction::ICmp || getOpcode() == Instruction::FCmp;
Reid Spencer077d0eb2006-12-04 05:19:50 +0000813}
814
Dan Gohmane6992f72009-09-10 23:37:55 +0000815bool ConstantExpr::isGEPWithNoNotionalOverIndexing() const {
816 if (getOpcode() != Instruction::GetElementPtr) return false;
817
818 gep_type_iterator GEPI = gep_type_begin(this), E = gep_type_end(this);
Oscar Fuentesee56c422010-08-02 06:00:15 +0000819 User::const_op_iterator OI = llvm::next(this->op_begin());
Dan Gohmane6992f72009-09-10 23:37:55 +0000820
821 // Skip the first index, as it has no static limit.
822 ++GEPI;
823 ++OI;
824
825 // The remaining indices must be compile-time known integers within the
826 // bounds of the corresponding notional static array types.
827 for (; GEPI != E; ++GEPI, ++OI) {
828 ConstantInt *CI = dyn_cast<ConstantInt>(*OI);
829 if (!CI) return false;
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000830 if (ArrayType *ATy = dyn_cast<ArrayType>(*GEPI))
Dan Gohmane6992f72009-09-10 23:37:55 +0000831 if (CI->getValue().getActiveBits() > 64 ||
832 CI->getZExtValue() >= ATy->getNumElements())
833 return false;
834 }
835
836 // All the indices checked out.
837 return true;
838}
839
Dan Gohman81a0c0b2008-05-31 00:58:22 +0000840bool ConstantExpr::hasIndices() const {
841 return getOpcode() == Instruction::ExtractValue ||
842 getOpcode() == Instruction::InsertValue;
843}
844
Jay Foadd30aa5a2011-04-13 15:22:40 +0000845ArrayRef<unsigned> ConstantExpr::getIndices() const {
Dan Gohman81a0c0b2008-05-31 00:58:22 +0000846 if (const ExtractValueConstantExpr *EVCE =
847 dyn_cast<ExtractValueConstantExpr>(this))
848 return EVCE->Indices;
Dan Gohman1a203572008-06-23 16:39:44 +0000849
850 return cast<InsertValueConstantExpr>(this)->Indices;
Dan Gohman81a0c0b2008-05-31 00:58:22 +0000851}
852
Reid Spencer728b6db2006-12-03 05:48:19 +0000853unsigned ConstantExpr::getPredicate() const {
Chris Lattner3e194732011-07-17 06:01:30 +0000854 assert(isCompare());
Chris Lattnerb7daa842007-10-18 16:26:24 +0000855 return ((const CompareConstantExpr*)this)->predicate;
Reid Spencer728b6db2006-12-03 05:48:19 +0000856}
Chris Lattnerf4ba6c72001-10-03 06:12:09 +0000857
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000858/// getWithOperandReplaced - Return a constant expression identical to this
859/// one, but with the specified operand set to the specified value.
Reid Spencer3da59db2006-11-27 01:05:10 +0000860Constant *
861ConstantExpr::getWithOperandReplaced(unsigned OpNo, Constant *Op) const {
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000862 assert(OpNo < getNumOperands() && "Operand num is out of range!");
863 assert(Op->getType() == getOperand(OpNo)->getType() &&
864 "Replacing operand with value of different type!");
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000865 if (getOperand(OpNo) == Op)
866 return const_cast<ConstantExpr*>(this);
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000867
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000868 Constant *Op0, *Op1, *Op2;
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000869 switch (getOpcode()) {
Reid Spencer3da59db2006-11-27 01:05:10 +0000870 case Instruction::Trunc:
871 case Instruction::ZExt:
872 case Instruction::SExt:
873 case Instruction::FPTrunc:
874 case Instruction::FPExt:
875 case Instruction::UIToFP:
876 case Instruction::SIToFP:
877 case Instruction::FPToUI:
878 case Instruction::FPToSI:
879 case Instruction::PtrToInt:
880 case Instruction::IntToPtr:
881 case Instruction::BitCast:
882 return ConstantExpr::getCast(getOpcode(), Op, getType());
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000883 case Instruction::Select:
884 Op0 = (OpNo == 0) ? Op : getOperand(0);
885 Op1 = (OpNo == 1) ? Op : getOperand(1);
886 Op2 = (OpNo == 2) ? Op : getOperand(2);
887 return ConstantExpr::getSelect(Op0, Op1, Op2);
888 case Instruction::InsertElement:
889 Op0 = (OpNo == 0) ? Op : getOperand(0);
890 Op1 = (OpNo == 1) ? Op : getOperand(1);
891 Op2 = (OpNo == 2) ? Op : getOperand(2);
892 return ConstantExpr::getInsertElement(Op0, Op1, Op2);
893 case Instruction::ExtractElement:
894 Op0 = (OpNo == 0) ? Op : getOperand(0);
895 Op1 = (OpNo == 1) ? Op : getOperand(1);
896 return ConstantExpr::getExtractElement(Op0, Op1);
897 case Instruction::ShuffleVector:
898 Op0 = (OpNo == 0) ? Op : getOperand(0);
899 Op1 = (OpNo == 1) ? Op : getOperand(1);
900 Op2 = (OpNo == 2) ? Op : getOperand(2);
901 return ConstantExpr::getShuffleVector(Op0, Op1, Op2);
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000902 case Instruction::GetElementPtr: {
Chris Lattnerf9021ff2007-02-19 20:01:23 +0000903 SmallVector<Constant*, 8> Ops;
Dan Gohman041e2eb2008-05-15 19:50:34 +0000904 Ops.resize(getNumOperands()-1);
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000905 for (unsigned i = 1, e = getNumOperands(); i != e; ++i)
Dan Gohman041e2eb2008-05-15 19:50:34 +0000906 Ops[i-1] = getOperand(i);
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000907 if (OpNo == 0)
Jay Foad4b5e2072011-07-21 15:15:37 +0000908 return
909 ConstantExpr::getGetElementPtr(Op, Ops,
910 cast<GEPOperator>(this)->isInBounds());
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000911 Ops[OpNo-1] = Op;
Jay Foad4b5e2072011-07-21 15:15:37 +0000912 return
913 ConstantExpr::getGetElementPtr(getOperand(0), Ops,
914 cast<GEPOperator>(this)->isInBounds());
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000915 }
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000916 default:
917 assert(getNumOperands() == 2 && "Must be binary operator?");
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000918 Op0 = (OpNo == 0) ? Op : getOperand(0);
919 Op1 = (OpNo == 1) ? Op : getOperand(1);
Chris Lattnercafe9bb2009-12-29 02:14:09 +0000920 return ConstantExpr::get(getOpcode(), Op0, Op1, SubclassOptionalData);
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000921 }
922}
923
924/// getWithOperands - This returns the current constant expression with the
Chris Lattner1afcace2011-07-09 17:41:24 +0000925/// operands replaced with the specified values. The specified array must
926/// have the same number of operands as our current one.
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000927Constant *ConstantExpr::
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000928getWithOperands(ArrayRef<Constant*> Ops, Type *Ty) const {
Jay Foadb81e4572011-04-13 13:46:01 +0000929 assert(Ops.size() == getNumOperands() && "Operand count mismatch!");
Chris Lattner1afcace2011-07-09 17:41:24 +0000930 bool AnyChange = Ty != getType();
931 for (unsigned i = 0; i != Ops.size(); ++i)
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000932 AnyChange |= Ops[i] != getOperand(i);
Chris Lattner1afcace2011-07-09 17:41:24 +0000933
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000934 if (!AnyChange) // No operands changed, return self.
935 return const_cast<ConstantExpr*>(this);
936
937 switch (getOpcode()) {
Reid Spencer3da59db2006-11-27 01:05:10 +0000938 case Instruction::Trunc:
939 case Instruction::ZExt:
940 case Instruction::SExt:
941 case Instruction::FPTrunc:
942 case Instruction::FPExt:
943 case Instruction::UIToFP:
944 case Instruction::SIToFP:
945 case Instruction::FPToUI:
946 case Instruction::FPToSI:
947 case Instruction::PtrToInt:
948 case Instruction::IntToPtr:
949 case Instruction::BitCast:
Chris Lattner1afcace2011-07-09 17:41:24 +0000950 return ConstantExpr::getCast(getOpcode(), Ops[0], Ty);
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000951 case Instruction::Select:
952 return ConstantExpr::getSelect(Ops[0], Ops[1], Ops[2]);
953 case Instruction::InsertElement:
954 return ConstantExpr::getInsertElement(Ops[0], Ops[1], Ops[2]);
955 case Instruction::ExtractElement:
956 return ConstantExpr::getExtractElement(Ops[0], Ops[1]);
957 case Instruction::ShuffleVector:
958 return ConstantExpr::getShuffleVector(Ops[0], Ops[1], Ops[2]);
Chris Lattnerf9021ff2007-02-19 20:01:23 +0000959 case Instruction::GetElementPtr:
Jay Foad4b5e2072011-07-21 15:15:37 +0000960 return
961 ConstantExpr::getGetElementPtr(Ops[0], Ops.slice(1),
962 cast<GEPOperator>(this)->isInBounds());
Reid Spencere4d87aa2006-12-23 06:05:41 +0000963 case Instruction::ICmp:
964 case Instruction::FCmp:
965 return ConstantExpr::getCompare(getPredicate(), Ops[0], Ops[1]);
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000966 default:
967 assert(getNumOperands() == 2 && "Must be binary operator?");
Chris Lattnercafe9bb2009-12-29 02:14:09 +0000968 return ConstantExpr::get(getOpcode(), Ops[0], Ops[1], SubclassOptionalData);
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000969 }
970}
971
Chris Lattner00950542001-06-06 20:29:01 +0000972
973//===----------------------------------------------------------------------===//
Chris Lattner00950542001-06-06 20:29:01 +0000974// isValueValidForType implementations
975
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000976bool ConstantInt::isValueValidForType(Type *Ty, uint64_t Val) {
Reid Spencera54b7cb2007-01-12 07:05:14 +0000977 unsigned NumBits = cast<IntegerType>(Ty)->getBitWidth(); // assert okay
Owen Anderson1d0be152009-08-13 21:58:54 +0000978 if (Ty == Type::getInt1Ty(Ty->getContext()))
Reid Spencera54b7cb2007-01-12 07:05:14 +0000979 return Val == 0 || Val == 1;
Reid Spencer554cec62007-02-05 23:47:56 +0000980 if (NumBits >= 64)
Reid Spencera54b7cb2007-01-12 07:05:14 +0000981 return true; // always true, has to fit in largest type
982 uint64_t Max = (1ll << NumBits) - 1;
983 return Val <= Max;
Reid Spencer9b11d512006-12-19 01:28:19 +0000984}
985
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000986bool ConstantInt::isValueValidForType(Type *Ty, int64_t Val) {
Reid Spencera54b7cb2007-01-12 07:05:14 +0000987 unsigned NumBits = cast<IntegerType>(Ty)->getBitWidth(); // assert okay
Owen Anderson1d0be152009-08-13 21:58:54 +0000988 if (Ty == Type::getInt1Ty(Ty->getContext()))
Reid Spencerc1030572007-01-19 21:13:56 +0000989 return Val == 0 || Val == 1 || Val == -1;
Reid Spencer554cec62007-02-05 23:47:56 +0000990 if (NumBits >= 64)
Reid Spencera54b7cb2007-01-12 07:05:14 +0000991 return true; // always true, has to fit in largest type
992 int64_t Min = -(1ll << (NumBits-1));
993 int64_t Max = (1ll << (NumBits-1)) - 1;
994 return (Val >= Min && Val <= Max);
Chris Lattner00950542001-06-06 20:29:01 +0000995}
996
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000997bool ConstantFP::isValueValidForType(Type *Ty, const APFloat& Val) {
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000998 // convert modifies in place, so make a copy.
999 APFloat Val2 = APFloat(Val);
Dale Johannesen23a98552008-10-09 23:00:39 +00001000 bool losesInfo;
Chris Lattnerf70c22b2004-06-17 18:19:28 +00001001 switch (Ty->getTypeID()) {
Chris Lattner00950542001-06-06 20:29:01 +00001002 default:
1003 return false; // These can't be represented as floating point!
1004
Dale Johannesenf04afdb2007-08-30 00:23:21 +00001005 // FIXME rounding mode needs to be more flexible
Dan Gohmance163392011-12-17 00:04:22 +00001006 case Type::HalfTyID: {
1007 if (&Val2.getSemantics() == &APFloat::IEEEhalf)
1008 return true;
1009 Val2.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven, &losesInfo);
1010 return !losesInfo;
1011 }
Dale Johannesen23a98552008-10-09 23:00:39 +00001012 case Type::FloatTyID: {
1013 if (&Val2.getSemantics() == &APFloat::IEEEsingle)
1014 return true;
1015 Val2.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven, &losesInfo);
1016 return !losesInfo;
1017 }
1018 case Type::DoubleTyID: {
Dan Gohmance163392011-12-17 00:04:22 +00001019 if (&Val2.getSemantics() == &APFloat::IEEEhalf ||
1020 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen23a98552008-10-09 23:00:39 +00001021 &Val2.getSemantics() == &APFloat::IEEEdouble)
1022 return true;
1023 Val2.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, &losesInfo);
1024 return !losesInfo;
1025 }
Dale Johannesenebbc95d2007-08-09 22:51:36 +00001026 case Type::X86_FP80TyID:
Dan Gohmance163392011-12-17 00:04:22 +00001027 return &Val2.getSemantics() == &APFloat::IEEEhalf ||
1028 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen9d5f4562007-09-12 03:30:33 +00001029 &Val2.getSemantics() == &APFloat::IEEEdouble ||
1030 &Val2.getSemantics() == &APFloat::x87DoubleExtended;
Dale Johannesenebbc95d2007-08-09 22:51:36 +00001031 case Type::FP128TyID:
Dan Gohmance163392011-12-17 00:04:22 +00001032 return &Val2.getSemantics() == &APFloat::IEEEhalf ||
1033 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen9d5f4562007-09-12 03:30:33 +00001034 &Val2.getSemantics() == &APFloat::IEEEdouble ||
1035 &Val2.getSemantics() == &APFloat::IEEEquad;
Dale Johannesena471c2e2007-10-11 18:07:22 +00001036 case Type::PPC_FP128TyID:
Dan Gohmance163392011-12-17 00:04:22 +00001037 return &Val2.getSemantics() == &APFloat::IEEEhalf ||
1038 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesena471c2e2007-10-11 18:07:22 +00001039 &Val2.getSemantics() == &APFloat::IEEEdouble ||
1040 &Val2.getSemantics() == &APFloat::PPCDoubleDouble;
Chris Lattner00950542001-06-06 20:29:01 +00001041 }
Chris Lattnerd74ea2b2006-05-24 17:04:05 +00001042}
Chris Lattner37bf6302001-07-20 19:16:02 +00001043
Chris Lattnerff2b7f32012-01-24 05:42:11 +00001044
Chris Lattner531daef2001-09-07 16:46:31 +00001045//===----------------------------------------------------------------------===//
Chris Lattner531daef2001-09-07 16:46:31 +00001046// Factory Function Implementation
1047
Chris Lattner9df0fb42012-01-23 15:20:12 +00001048ConstantAggregateZero *ConstantAggregateZero::get(Type *Ty) {
Chris Lattner61c70e92010-08-28 04:09:24 +00001049 assert((Ty->isStructTy() || Ty->isArrayTy() || Ty->isVectorTy()) &&
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001050 "Cannot create an aggregate zero of non-aggregate type!");
1051
Chris Lattner9df0fb42012-01-23 15:20:12 +00001052 ConstantAggregateZero *&Entry = Ty->getContext().pImpl->CAZConstants[Ty];
1053 if (Entry == 0)
1054 Entry = new ConstantAggregateZero(Ty);
1055
1056 return Entry;
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001057}
1058
Chris Lattnerff2b7f32012-01-24 05:42:11 +00001059/// destroyConstant - Remove the constant from the constant table.
Dan Gohman0f8b53f2009-03-03 02:55:14 +00001060///
Owen Anderson04fb7c32009-06-20 00:24:58 +00001061void ConstantAggregateZero::destroyConstant() {
Chris Lattner9df0fb42012-01-23 15:20:12 +00001062 getContext().pImpl->CAZConstants.erase(getType());
Chris Lattner40bbeb52004-02-15 05:53:04 +00001063 destroyConstantImpl();
1064}
1065
Dan Gohman0f8b53f2009-03-03 02:55:14 +00001066/// destroyConstant - Remove the constant from the constant table...
1067///
Owen Anderson04fb7c32009-06-20 00:24:58 +00001068void ConstantArray::destroyConstant() {
Chris Lattner1afcace2011-07-09 17:41:24 +00001069 getType()->getContext().pImpl->ArrayConstants.remove(this);
Chris Lattner02ec5ed2003-05-23 20:03:32 +00001070 destroyConstantImpl();
1071}
1072
Reid Spencer3d10b0b2007-01-26 07:37:34 +00001073/// isString - This method returns true if the array is an array of i8, and
1074/// if the elements of the array are all ConstantInt's.
Chris Lattner13cfdea2004-01-14 17:06:38 +00001075bool ConstantArray::isString() const {
Reid Spencer3d10b0b2007-01-26 07:37:34 +00001076 // Check the element type for i8...
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001077 if (!getType()->getElementType()->isIntegerTy(8))
Chris Lattner13cfdea2004-01-14 17:06:38 +00001078 return false;
1079 // Check the elements to make sure they are all integers, not constant
1080 // expressions.
1081 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
1082 if (!isa<ConstantInt>(getOperand(i)))
1083 return false;
1084 return true;
1085}
1086
Evan Cheng22c70302006-10-26 19:15:05 +00001087/// isCString - This method returns true if the array is a string (see
Dan Gohman0f8b53f2009-03-03 02:55:14 +00001088/// isString) and it ends in a null byte \\0 and does not contains any other
Evan Cheng22c70302006-10-26 19:15:05 +00001089/// null bytes except its terminator.
Owen Anderson1ca29d32009-07-13 21:27:19 +00001090bool ConstantArray::isCString() const {
Reid Spencer3d10b0b2007-01-26 07:37:34 +00001091 // Check the element type for i8...
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001092 if (!getType()->getElementType()->isIntegerTy(8))
Evan Chengabf63452006-10-26 21:48:03 +00001093 return false;
Owen Anderson1ca29d32009-07-13 21:27:19 +00001094
Evan Chengabf63452006-10-26 21:48:03 +00001095 // Last element must be a null.
Owen Anderson1ca29d32009-07-13 21:27:19 +00001096 if (!getOperand(getNumOperands()-1)->isNullValue())
Evan Chengabf63452006-10-26 21:48:03 +00001097 return false;
1098 // Other elements must be non-null integers.
1099 for (unsigned i = 0, e = getNumOperands()-1; i != e; ++i) {
1100 if (!isa<ConstantInt>(getOperand(i)))
Evan Cheng22c70302006-10-26 19:15:05 +00001101 return false;
Owen Anderson1ca29d32009-07-13 21:27:19 +00001102 if (getOperand(i)->isNullValue())
Evan Chengabf63452006-10-26 21:48:03 +00001103 return false;
1104 }
Evan Cheng22c70302006-10-26 19:15:05 +00001105 return true;
1106}
1107
1108
Jay Foad4f910542011-06-28 08:24:19 +00001109/// convertToString - Helper function for getAsString() and getAsCString().
Chris Lattner3e194732011-07-17 06:01:30 +00001110static std::string convertToString(const User *U, unsigned len) {
Jay Foad4f910542011-06-28 08:24:19 +00001111 std::string Result;
1112 Result.reserve(len);
1113 for (unsigned i = 0; i != len; ++i)
1114 Result.push_back((char)cast<ConstantInt>(U->getOperand(i))->getZExtValue());
1115 return Result;
1116}
1117
1118/// getAsString - If this array is isString(), then this method converts the
1119/// array to an std::string and returns it. Otherwise, it asserts out.
Dan Gohman0f8b53f2009-03-03 02:55:14 +00001120///
Chris Lattner93aeea32002-08-26 17:53:56 +00001121std::string ConstantArray::getAsString() const {
Chris Lattner13cfdea2004-01-14 17:06:38 +00001122 assert(isString() && "Not a string!");
Jay Foad4f910542011-06-28 08:24:19 +00001123 return convertToString(this, getNumOperands());
1124}
1125
1126
1127/// getAsCString - If this array is isCString(), then this method converts the
1128/// array (without the trailing null byte) to an std::string and returns it.
1129/// Otherwise, it asserts out.
1130///
1131std::string ConstantArray::getAsCString() const {
1132 assert(isCString() && "Not a string!");
1133 return convertToString(this, getNumOperands() - 1);
Chris Lattner93aeea32002-08-26 17:53:56 +00001134}
1135
1136
Chris Lattnere9bb2df2001-12-03 22:26:30 +00001137//---- ConstantStruct::get() implementation...
Chris Lattner531daef2001-09-07 16:46:31 +00001138//
Chris Lattnered468e372003-10-05 00:17:43 +00001139
Chris Lattnerf5ec48d2001-10-13 06:57:33 +00001140// destroyConstant - Remove the constant from the constant table...
Chris Lattner6a57baa2001-10-03 15:39:36 +00001141//
Owen Anderson04fb7c32009-06-20 00:24:58 +00001142void ConstantStruct::destroyConstant() {
Chris Lattner1afcace2011-07-09 17:41:24 +00001143 getType()->getContext().pImpl->StructConstants.remove(this);
Chris Lattnerf5ec48d2001-10-13 06:57:33 +00001144 destroyConstantImpl();
1145}
Chris Lattner6a57baa2001-10-03 15:39:36 +00001146
Brian Gaeke715c90b2004-08-20 06:00:58 +00001147// destroyConstant - Remove the constant from the constant table...
1148//
Owen Anderson04fb7c32009-06-20 00:24:58 +00001149void ConstantVector::destroyConstant() {
Chris Lattner1afcace2011-07-09 17:41:24 +00001150 getType()->getContext().pImpl->VectorConstants.remove(this);
Brian Gaeke715c90b2004-08-20 06:00:58 +00001151 destroyConstantImpl();
1152}
1153
Dan Gohman3b7cf0a2007-10-17 17:51:30 +00001154/// getSplatValue - If this is a splat constant, where all of the
1155/// elements have the same value, return that value. Otherwise return null.
Duncan Sands7681c6d2011-02-01 08:39:12 +00001156Constant *ConstantVector::getSplatValue() const {
Dan Gohman3b7cf0a2007-10-17 17:51:30 +00001157 // Check out first element.
1158 Constant *Elt = getOperand(0);
1159 // Then make sure all remaining elements point to the same value.
1160 for (unsigned I = 1, E = getNumOperands(); I < E; ++I)
Chris Lattner3e194732011-07-17 06:01:30 +00001161 if (getOperand(I) != Elt)
1162 return 0;
Dan Gohman3b7cf0a2007-10-17 17:51:30 +00001163 return Elt;
1164}
1165
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001166//---- ConstantPointerNull::get() implementation.
Chris Lattnerf5ec48d2001-10-13 06:57:33 +00001167//
Chris Lattner02ec5ed2003-05-23 20:03:32 +00001168
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001169ConstantPointerNull *ConstantPointerNull::get(PointerType *Ty) {
Chris Lattner9df0fb42012-01-23 15:20:12 +00001170 ConstantPointerNull *&Entry = Ty->getContext().pImpl->CPNConstants[Ty];
1171 if (Entry == 0)
1172 Entry = new ConstantPointerNull(Ty);
1173
1174 return Entry;
Chris Lattner6a57baa2001-10-03 15:39:36 +00001175}
1176
Chris Lattner41661fd2002-08-18 00:40:04 +00001177// destroyConstant - Remove the constant from the constant table...
1178//
Owen Anderson04fb7c32009-06-20 00:24:58 +00001179void ConstantPointerNull::destroyConstant() {
Chris Lattner9df0fb42012-01-23 15:20:12 +00001180 getContext().pImpl->CPNConstants.erase(getType());
1181 // Free the constant and any dangling references to it.
Chris Lattner41661fd2002-08-18 00:40:04 +00001182 destroyConstantImpl();
1183}
1184
1185
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001186//---- UndefValue::get() implementation.
Chris Lattnerb9f18592004-10-16 18:07:16 +00001187//
1188
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001189UndefValue *UndefValue::get(Type *Ty) {
Chris Lattner9df0fb42012-01-23 15:20:12 +00001190 UndefValue *&Entry = Ty->getContext().pImpl->UVConstants[Ty];
1191 if (Entry == 0)
1192 Entry = new UndefValue(Ty);
1193
1194 return Entry;
Chris Lattnerb9f18592004-10-16 18:07:16 +00001195}
1196
1197// destroyConstant - Remove the constant from the constant table.
1198//
Owen Anderson04fb7c32009-06-20 00:24:58 +00001199void UndefValue::destroyConstant() {
Chris Lattner9df0fb42012-01-23 15:20:12 +00001200 // Free the constant and any dangling references to it.
1201 getContext().pImpl->UVConstants.erase(getType());
Chris Lattnerb9f18592004-10-16 18:07:16 +00001202 destroyConstantImpl();
1203}
1204
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001205//---- BlockAddress::get() implementation.
1206//
1207
1208BlockAddress *BlockAddress::get(BasicBlock *BB) {
1209 assert(BB->getParent() != 0 && "Block must have a parent");
1210 return get(BB->getParent(), BB);
1211}
1212
1213BlockAddress *BlockAddress::get(Function *F, BasicBlock *BB) {
1214 BlockAddress *&BA =
1215 F->getContext().pImpl->BlockAddresses[std::make_pair(F, BB)];
1216 if (BA == 0)
1217 BA = new BlockAddress(F, BB);
1218
1219 assert(BA->getFunction() == F && "Basic block moved between functions");
1220 return BA;
1221}
1222
1223BlockAddress::BlockAddress(Function *F, BasicBlock *BB)
1224: Constant(Type::getInt8PtrTy(F->getContext()), Value::BlockAddressVal,
1225 &Op<0>(), 2) {
Chris Lattnerd0ec2352009-11-01 03:03:03 +00001226 setOperand(0, F);
1227 setOperand(1, BB);
Chris Lattnercdfc9402009-11-01 01:27:45 +00001228 BB->AdjustBlockAddressRefCount(1);
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001229}
1230
1231
1232// destroyConstant - Remove the constant from the constant table.
1233//
1234void BlockAddress::destroyConstant() {
Chris Lattner1afcace2011-07-09 17:41:24 +00001235 getFunction()->getType()->getContext().pImpl
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001236 ->BlockAddresses.erase(std::make_pair(getFunction(), getBasicBlock()));
Chris Lattnercdfc9402009-11-01 01:27:45 +00001237 getBasicBlock()->AdjustBlockAddressRefCount(-1);
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001238 destroyConstantImpl();
1239}
1240
1241void BlockAddress::replaceUsesOfWithOnConstant(Value *From, Value *To, Use *U) {
1242 // This could be replacing either the Basic Block or the Function. In either
1243 // case, we have to remove the map entry.
1244 Function *NewF = getFunction();
1245 BasicBlock *NewBB = getBasicBlock();
1246
1247 if (U == &Op<0>())
1248 NewF = cast<Function>(To);
1249 else
1250 NewBB = cast<BasicBlock>(To);
1251
1252 // See if the 'new' entry already exists, if not, just update this in place
1253 // and return early.
1254 BlockAddress *&NewBA =
1255 getContext().pImpl->BlockAddresses[std::make_pair(NewF, NewBB)];
1256 if (NewBA == 0) {
Chris Lattnerd0ec2352009-11-01 03:03:03 +00001257 getBasicBlock()->AdjustBlockAddressRefCount(-1);
1258
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001259 // Remove the old entry, this can't cause the map to rehash (just a
1260 // tombstone will get added).
1261 getContext().pImpl->BlockAddresses.erase(std::make_pair(getFunction(),
1262 getBasicBlock()));
1263 NewBA = this;
Chris Lattnerd0ec2352009-11-01 03:03:03 +00001264 setOperand(0, NewF);
1265 setOperand(1, NewBB);
1266 getBasicBlock()->AdjustBlockAddressRefCount(1);
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001267 return;
1268 }
1269
1270 // Otherwise, I do need to replace this with an existing value.
1271 assert(NewBA != this && "I didn't contain From!");
1272
1273 // Everyone using this now uses the replacement.
Chris Lattner678f9e02011-07-15 06:18:52 +00001274 replaceAllUsesWith(NewBA);
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001275
1276 destroyConstant();
1277}
1278
1279//---- ConstantExpr::get() implementations.
Vikram S. Adve345e0cf2002-07-14 23:13:17 +00001280//
Reid Spencer79e21d32006-12-31 05:26:44 +00001281
Reid Spencer3da59db2006-11-27 01:05:10 +00001282/// This is a utility function to handle folding of casts and lookup of the
Duncan Sands66a1a052008-03-30 19:38:55 +00001283/// cast in the ExprConstants map. It is used by the various get* methods below.
Reid Spencer3da59db2006-11-27 01:05:10 +00001284static inline Constant *getFoldedCast(
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001285 Instruction::CastOps opc, Constant *C, Type *Ty) {
Chris Lattner9eacf8a2003-10-07 22:19:19 +00001286 assert(Ty->isFirstClassType() && "Cannot cast to an aggregate type!");
Reid Spencer3da59db2006-11-27 01:05:10 +00001287 // Fold a few common cases
Chris Lattnerb29d5962010-02-01 20:48:08 +00001288 if (Constant *FC = ConstantFoldCastInstruction(opc, C, Ty))
Reid Spencer3da59db2006-11-27 01:05:10 +00001289 return FC;
Chris Lattnerd628f6a2003-04-17 19:24:48 +00001290
Owen Andersond03eecd2009-08-04 20:25:11 +00001291 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
1292
Vikram S. Adved0b1bb02002-07-15 18:19:33 +00001293 // Look up the constant in the table first to ensure uniqueness
Chris Lattner9bc02a42003-05-13 21:37:02 +00001294 std::vector<Constant*> argVec(1, C);
Reid Spencer077d0eb2006-12-04 05:19:50 +00001295 ExprMapKeyType Key(opc, argVec);
Owen Anderson3e456ab2009-06-17 18:40:29 +00001296
Owen Andersond03eecd2009-08-04 20:25:11 +00001297 return pImpl->ExprConstants.getOrCreate(Ty, Key);
Vikram S. Adve345e0cf2002-07-14 23:13:17 +00001298}
Reid Spencer7858b332006-12-05 19:14:13 +00001299
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001300Constant *ConstantExpr::getCast(unsigned oc, Constant *C, Type *Ty) {
Reid Spencer3da59db2006-11-27 01:05:10 +00001301 Instruction::CastOps opc = Instruction::CastOps(oc);
1302 assert(Instruction::isCast(opc) && "opcode out of range");
1303 assert(C && Ty && "Null arguments to getCast");
Chris Lattner0b68a002010-01-26 21:51:43 +00001304 assert(CastInst::castIsValid(opc, C, Ty) && "Invalid constantexpr cast!");
Reid Spencer3da59db2006-11-27 01:05:10 +00001305
1306 switch (opc) {
Chris Lattner0b68a002010-01-26 21:51:43 +00001307 default:
1308 llvm_unreachable("Invalid cast opcode");
Chris Lattner0b68a002010-01-26 21:51:43 +00001309 case Instruction::Trunc: return getTrunc(C, Ty);
1310 case Instruction::ZExt: return getZExt(C, Ty);
1311 case Instruction::SExt: return getSExt(C, Ty);
1312 case Instruction::FPTrunc: return getFPTrunc(C, Ty);
1313 case Instruction::FPExt: return getFPExtend(C, Ty);
1314 case Instruction::UIToFP: return getUIToFP(C, Ty);
1315 case Instruction::SIToFP: return getSIToFP(C, Ty);
1316 case Instruction::FPToUI: return getFPToUI(C, Ty);
1317 case Instruction::FPToSI: return getFPToSI(C, Ty);
1318 case Instruction::PtrToInt: return getPtrToInt(C, Ty);
1319 case Instruction::IntToPtr: return getIntToPtr(C, Ty);
1320 case Instruction::BitCast: return getBitCast(C, Ty);
Chris Lattnerf5ac6c22005-01-01 15:59:57 +00001321 }
Reid Spencer7858b332006-12-05 19:14:13 +00001322}
1323
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001324Constant *ConstantExpr::getZExtOrBitCast(Constant *C, Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001325 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3b490632010-04-12 22:12:29 +00001326 return getBitCast(C, Ty);
1327 return getZExt(C, Ty);
Reid Spencer848414e2006-12-04 20:17:56 +00001328}
1329
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001330Constant *ConstantExpr::getSExtOrBitCast(Constant *C, Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001331 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3b490632010-04-12 22:12:29 +00001332 return getBitCast(C, Ty);
1333 return getSExt(C, Ty);
Reid Spencer848414e2006-12-04 20:17:56 +00001334}
1335
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001336Constant *ConstantExpr::getTruncOrBitCast(Constant *C, Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001337 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3b490632010-04-12 22:12:29 +00001338 return getBitCast(C, Ty);
1339 return getTrunc(C, Ty);
Reid Spencer848414e2006-12-04 20:17:56 +00001340}
1341
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001342Constant *ConstantExpr::getPointerCast(Constant *S, Type *Ty) {
Duncan Sands1df98592010-02-16 11:11:14 +00001343 assert(S->getType()->isPointerTy() && "Invalid cast");
1344 assert((Ty->isIntegerTy() || Ty->isPointerTy()) && "Invalid cast");
Reid Spencerc0459fb2006-12-05 03:25:26 +00001345
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001346 if (Ty->isIntegerTy())
Dan Gohman3b490632010-04-12 22:12:29 +00001347 return getPtrToInt(S, Ty);
1348 return getBitCast(S, Ty);
Reid Spencerc0459fb2006-12-05 03:25:26 +00001349}
1350
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001351Constant *ConstantExpr::getIntegerCast(Constant *C, Type *Ty,
Reid Spencer84f3eab2006-12-12 00:51:07 +00001352 bool isSigned) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001353 assert(C->getType()->isIntOrIntVectorTy() &&
1354 Ty->isIntOrIntVectorTy() && "Invalid cast");
Dan Gohman6de29f82009-06-15 22:12:54 +00001355 unsigned SrcBits = C->getType()->getScalarSizeInBits();
1356 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer84f3eab2006-12-12 00:51:07 +00001357 Instruction::CastOps opcode =
1358 (SrcBits == DstBits ? Instruction::BitCast :
1359 (SrcBits > DstBits ? Instruction::Trunc :
1360 (isSigned ? Instruction::SExt : Instruction::ZExt)));
1361 return getCast(opcode, C, Ty);
1362}
1363
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001364Constant *ConstantExpr::getFPCast(Constant *C, Type *Ty) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001365 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer84f3eab2006-12-12 00:51:07 +00001366 "Invalid cast");
Dan Gohman6de29f82009-06-15 22:12:54 +00001367 unsigned SrcBits = C->getType()->getScalarSizeInBits();
1368 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencerf25212a2006-12-12 05:38:50 +00001369 if (SrcBits == DstBits)
1370 return C; // Avoid a useless cast
Reid Spencer84f3eab2006-12-12 00:51:07 +00001371 Instruction::CastOps opcode =
Jay Foad9afc5272011-01-27 14:44:55 +00001372 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt);
Reid Spencer84f3eab2006-12-12 00:51:07 +00001373 return getCast(opcode, C, Ty);
1374}
1375
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001376Constant *ConstantExpr::getTrunc(Constant *C, Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001377#ifndef NDEBUG
1378 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1379 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1380#endif
1381 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001382 assert(C->getType()->isIntOrIntVectorTy() && "Trunc operand must be integer");
1383 assert(Ty->isIntOrIntVectorTy() && "Trunc produces only integral");
Dan Gohman6de29f82009-06-15 22:12:54 +00001384 assert(C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
Reid Spencer3da59db2006-11-27 01:05:10 +00001385 "SrcTy must be larger than DestTy for Trunc!");
1386
Owen Anderson04fb7c32009-06-20 00:24:58 +00001387 return getFoldedCast(Instruction::Trunc, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001388}
1389
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001390Constant *ConstantExpr::getSExt(Constant *C, Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001391#ifndef NDEBUG
1392 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1393 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1394#endif
1395 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001396 assert(C->getType()->isIntOrIntVectorTy() && "SExt operand must be integral");
1397 assert(Ty->isIntOrIntVectorTy() && "SExt produces only integer");
Dan Gohman6de29f82009-06-15 22:12:54 +00001398 assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer3da59db2006-11-27 01:05:10 +00001399 "SrcTy must be smaller than DestTy for SExt!");
1400
Owen Anderson04fb7c32009-06-20 00:24:58 +00001401 return getFoldedCast(Instruction::SExt, C, Ty);
Chris Lattnerd144f422004-04-04 23:20:30 +00001402}
1403
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001404Constant *ConstantExpr::getZExt(Constant *C, Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001405#ifndef NDEBUG
1406 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1407 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1408#endif
1409 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001410 assert(C->getType()->isIntOrIntVectorTy() && "ZEXt operand must be integral");
1411 assert(Ty->isIntOrIntVectorTy() && "ZExt produces only integer");
Dan Gohman6de29f82009-06-15 22:12:54 +00001412 assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer3da59db2006-11-27 01:05:10 +00001413 "SrcTy must be smaller than DestTy for ZExt!");
1414
Owen Anderson04fb7c32009-06-20 00:24:58 +00001415 return getFoldedCast(Instruction::ZExt, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001416}
1417
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001418Constant *ConstantExpr::getFPTrunc(Constant *C, Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001419#ifndef NDEBUG
1420 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1421 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1422#endif
1423 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001424 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Dan Gohman6de29f82009-06-15 22:12:54 +00001425 C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
Reid Spencer3da59db2006-11-27 01:05:10 +00001426 "This is an illegal floating point truncation!");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001427 return getFoldedCast(Instruction::FPTrunc, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001428}
1429
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001430Constant *ConstantExpr::getFPExtend(Constant *C, Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001431#ifndef NDEBUG
1432 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1433 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1434#endif
1435 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001436 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Dan Gohman6de29f82009-06-15 22:12:54 +00001437 C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer3da59db2006-11-27 01:05:10 +00001438 "This is an illegal floating point extension!");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001439 return getFoldedCast(Instruction::FPExt, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001440}
1441
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001442Constant *ConstantExpr::getUIToFP(Constant *C, Type *Ty) {
Devang Patelb6dc9352008-11-03 23:20:04 +00001443#ifndef NDEBUG
Nate Begemanb348d182007-11-17 03:58:34 +00001444 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1445 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Patelb6dc9352008-11-03 23:20:04 +00001446#endif
Nate Begemanb348d182007-11-17 03:58:34 +00001447 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001448 assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() &&
Nate Begemanb348d182007-11-17 03:58:34 +00001449 "This is an illegal uint to floating point cast!");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001450 return getFoldedCast(Instruction::UIToFP, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001451}
1452
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001453Constant *ConstantExpr::getSIToFP(Constant *C, Type *Ty) {
Devang Patelb6dc9352008-11-03 23:20:04 +00001454#ifndef NDEBUG
Nate Begemanb348d182007-11-17 03:58:34 +00001455 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1456 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Patelb6dc9352008-11-03 23:20:04 +00001457#endif
Nate Begemanb348d182007-11-17 03:58:34 +00001458 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001459 assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer3da59db2006-11-27 01:05:10 +00001460 "This is an illegal sint to floating point cast!");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001461 return getFoldedCast(Instruction::SIToFP, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001462}
1463
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001464Constant *ConstantExpr::getFPToUI(Constant *C, Type *Ty) {
Devang Patelb6dc9352008-11-03 23:20:04 +00001465#ifndef NDEBUG
Nate Begemanb348d182007-11-17 03:58:34 +00001466 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1467 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Patelb6dc9352008-11-03 23:20:04 +00001468#endif
Nate Begemanb348d182007-11-17 03:58:34 +00001469 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001470 assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() &&
Nate Begemanb348d182007-11-17 03:58:34 +00001471 "This is an illegal floating point to uint cast!");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001472 return getFoldedCast(Instruction::FPToUI, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001473}
1474
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001475Constant *ConstantExpr::getFPToSI(Constant *C, Type *Ty) {
Devang Patelb6dc9352008-11-03 23:20:04 +00001476#ifndef NDEBUG
Nate Begemanb348d182007-11-17 03:58:34 +00001477 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1478 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Patelb6dc9352008-11-03 23:20:04 +00001479#endif
Nate Begemanb348d182007-11-17 03:58:34 +00001480 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001481 assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() &&
Nate Begemanb348d182007-11-17 03:58:34 +00001482 "This is an illegal floating point to sint cast!");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001483 return getFoldedCast(Instruction::FPToSI, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001484}
1485
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001486Constant *ConstantExpr::getPtrToInt(Constant *C, Type *DstTy) {
Nadav Rotem16087692011-12-05 06:29:09 +00001487 assert(C->getType()->getScalarType()->isPointerTy() &&
1488 "PtrToInt source must be pointer or pointer vector");
1489 assert(DstTy->getScalarType()->isIntegerTy() &&
1490 "PtrToInt destination must be integer or integer vector");
1491 assert(C->getType()->getNumElements() == DstTy->getNumElements() &&
1492 "Invalid cast between a different number of vector elements");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001493 return getFoldedCast(Instruction::PtrToInt, C, DstTy);
Reid Spencer3da59db2006-11-27 01:05:10 +00001494}
1495
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001496Constant *ConstantExpr::getIntToPtr(Constant *C, Type *DstTy) {
Nadav Rotem16087692011-12-05 06:29:09 +00001497 assert(C->getType()->getScalarType()->isIntegerTy() &&
1498 "IntToPtr source must be integer or integer vector");
1499 assert(DstTy->getScalarType()->isPointerTy() &&
1500 "IntToPtr destination must be a pointer or pointer vector");
1501 assert(C->getType()->getNumElements() == DstTy->getNumElements() &&
1502 "Invalid cast between a different number of vector elements");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001503 return getFoldedCast(Instruction::IntToPtr, C, DstTy);
Reid Spencer3da59db2006-11-27 01:05:10 +00001504}
1505
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001506Constant *ConstantExpr::getBitCast(Constant *C, Type *DstTy) {
Chris Lattner0b68a002010-01-26 21:51:43 +00001507 assert(CastInst::castIsValid(Instruction::BitCast, C, DstTy) &&
1508 "Invalid constantexpr bitcast!");
Chris Lattner8c7f24a2009-03-21 06:55:54 +00001509
1510 // It is common to ask for a bitcast of a value to its own type, handle this
1511 // speedily.
1512 if (C->getType() == DstTy) return C;
1513
Owen Anderson04fb7c32009-06-20 00:24:58 +00001514 return getFoldedCast(Instruction::BitCast, C, DstTy);
Chris Lattnerd144f422004-04-04 23:20:30 +00001515}
1516
Chris Lattnereaf79802011-07-09 18:23:52 +00001517Constant *ConstantExpr::get(unsigned Opcode, Constant *C1, Constant *C2,
1518 unsigned Flags) {
1519 // Check the operands for consistency first.
Reid Spencer0a783f72006-11-02 01:53:59 +00001520 assert(Opcode >= Instruction::BinaryOpsBegin &&
1521 Opcode < Instruction::BinaryOpsEnd &&
Chris Lattnerf31f5832003-05-21 17:49:25 +00001522 "Invalid opcode in binary constant expression");
1523 assert(C1->getType() == C2->getType() &&
1524 "Operand types in binary constant expression should match");
Owen Anderson31c36f02009-06-17 20:10:08 +00001525
Chris Lattner91b362b2004-08-17 17:28:46 +00001526#ifndef NDEBUG
1527 switch (Opcode) {
Dan Gohmanae3a0be2009-06-04 22:49:04 +00001528 case Instruction::Add:
Reid Spencer0a783f72006-11-02 01:53:59 +00001529 case Instruction::Sub:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00001530 case Instruction::Mul:
Chris Lattner91b362b2004-08-17 17:28:46 +00001531 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001532 assert(C1->getType()->isIntOrIntVectorTy() &&
Dan Gohmanae3a0be2009-06-04 22:49:04 +00001533 "Tried to create an integer operation on a non-integer type!");
1534 break;
1535 case Instruction::FAdd:
1536 case Instruction::FSub:
1537 case Instruction::FMul:
1538 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001539 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohmanae3a0be2009-06-04 22:49:04 +00001540 "Tried to create a floating-point operation on a "
1541 "non-floating-point type!");
Chris Lattner91b362b2004-08-17 17:28:46 +00001542 break;
Reid Spencer1628cec2006-10-26 06:15:43 +00001543 case Instruction::UDiv:
1544 case Instruction::SDiv:
1545 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001546 assert(C1->getType()->isIntOrIntVectorTy() &&
Reid Spencer1628cec2006-10-26 06:15:43 +00001547 "Tried to create an arithmetic operation on a non-arithmetic type!");
1548 break;
1549 case Instruction::FDiv:
1550 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001551 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohmanf57478f2009-06-15 22:25:12 +00001552 "Tried to create an arithmetic operation on a non-arithmetic type!");
Reid Spencer1628cec2006-10-26 06:15:43 +00001553 break;
Reid Spencer0a783f72006-11-02 01:53:59 +00001554 case Instruction::URem:
1555 case Instruction::SRem:
1556 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001557 assert(C1->getType()->isIntOrIntVectorTy() &&
Reid Spencer0a783f72006-11-02 01:53:59 +00001558 "Tried to create an arithmetic operation on a non-arithmetic type!");
1559 break;
1560 case Instruction::FRem:
1561 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001562 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohmanf57478f2009-06-15 22:25:12 +00001563 "Tried to create an arithmetic operation on a non-arithmetic type!");
Reid Spencer0a783f72006-11-02 01:53:59 +00001564 break;
Chris Lattner91b362b2004-08-17 17:28:46 +00001565 case Instruction::And:
1566 case Instruction::Or:
1567 case Instruction::Xor:
1568 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001569 assert(C1->getType()->isIntOrIntVectorTy() &&
Misha Brukman1bae2912005-01-27 06:46:38 +00001570 "Tried to create a logical operation on a non-integral type!");
Chris Lattner91b362b2004-08-17 17:28:46 +00001571 break;
Chris Lattner91b362b2004-08-17 17:28:46 +00001572 case Instruction::Shl:
Reid Spencer3822ff52006-11-08 06:47:33 +00001573 case Instruction::LShr:
1574 case Instruction::AShr:
Reid Spencer832254e2007-02-02 02:16:23 +00001575 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001576 assert(C1->getType()->isIntOrIntVectorTy() &&
Chris Lattner91b362b2004-08-17 17:28:46 +00001577 "Tried to create a shift operation on a non-integer type!");
1578 break;
1579 default:
1580 break;
1581 }
1582#endif
1583
Chris Lattnereaf79802011-07-09 18:23:52 +00001584 if (Constant *FC = ConstantFoldBinaryInstruction(Opcode, C1, C2))
1585 return FC; // Fold a few common cases.
1586
1587 std::vector<Constant*> argVec(1, C1);
1588 argVec.push_back(C2);
1589 ExprMapKeyType Key(Opcode, argVec, 0, Flags);
1590
1591 LLVMContextImpl *pImpl = C1->getContext().pImpl;
1592 return pImpl->ExprConstants.getOrCreate(C1->getType(), Key);
Reid Spencer67263fe2006-12-04 21:35:24 +00001593}
1594
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001595Constant *ConstantExpr::getSizeOf(Type* Ty) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00001596 // sizeof is implemented as: (i64) gep (Ty*)null, 1
1597 // Note that a non-inbounds gep is used, as null isn't within any object.
Owen Anderson1d0be152009-08-13 21:58:54 +00001598 Constant *GEPIdx = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
Owen Andersonbaf3c402009-07-29 18:55:55 +00001599 Constant *GEP = getGetElementPtr(
Jay Foaddab3d292011-07-21 14:31:17 +00001600 Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx);
Dan Gohman3b490632010-04-12 22:12:29 +00001601 return getPtrToInt(GEP,
1602 Type::getInt64Ty(Ty->getContext()));
Owen Andersonbaf3c402009-07-29 18:55:55 +00001603}
1604
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001605Constant *ConstantExpr::getAlignOf(Type* Ty) {
Dan Gohman0f5efe52010-01-28 02:15:55 +00001606 // alignof is implemented as: (i64) gep ({i1,Ty}*)null, 0, 1
Dan Gohmane2574d32009-08-11 17:57:01 +00001607 // Note that a non-inbounds gep is used, as null isn't within any object.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001608 Type *AligningTy =
Chris Lattnerb2318662011-06-18 22:48:56 +00001609 StructType::get(Type::getInt1Ty(Ty->getContext()), Ty, NULL);
Owen Andersona7235ea2009-07-31 20:28:14 +00001610 Constant *NullPtr = Constant::getNullValue(AligningTy->getPointerTo());
Dan Gohman06ed3e72010-01-28 02:43:22 +00001611 Constant *Zero = ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0);
Owen Anderson1d0be152009-08-13 21:58:54 +00001612 Constant *One = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
Owen Andersonbaf3c402009-07-29 18:55:55 +00001613 Constant *Indices[2] = { Zero, One };
Jay Foaddab3d292011-07-21 14:31:17 +00001614 Constant *GEP = getGetElementPtr(NullPtr, Indices);
Dan Gohman3b490632010-04-12 22:12:29 +00001615 return getPtrToInt(GEP,
1616 Type::getInt64Ty(Ty->getContext()));
Owen Andersonbaf3c402009-07-29 18:55:55 +00001617}
1618
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001619Constant *ConstantExpr::getOffsetOf(StructType* STy, unsigned FieldNo) {
Dan Gohman2544a1d2010-02-01 16:37:38 +00001620 return getOffsetOf(STy, ConstantInt::get(Type::getInt32Ty(STy->getContext()),
1621 FieldNo));
1622}
1623
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001624Constant *ConstantExpr::getOffsetOf(Type* Ty, Constant *FieldNo) {
Dan Gohman3778f212009-08-16 21:26:11 +00001625 // offsetof is implemented as: (i64) gep (Ty*)null, 0, FieldNo
1626 // Note that a non-inbounds gep is used, as null isn't within any object.
1627 Constant *GEPIdx[] = {
Dan Gohman2544a1d2010-02-01 16:37:38 +00001628 ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0),
1629 FieldNo
Dan Gohman3778f212009-08-16 21:26:11 +00001630 };
1631 Constant *GEP = getGetElementPtr(
Jay Foaddab3d292011-07-21 14:31:17 +00001632 Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx);
Dan Gohman3b490632010-04-12 22:12:29 +00001633 return getPtrToInt(GEP,
1634 Type::getInt64Ty(Ty->getContext()));
Dan Gohman3778f212009-08-16 21:26:11 +00001635}
Owen Andersonbaf3c402009-07-29 18:55:55 +00001636
Chris Lattnereaf79802011-07-09 18:23:52 +00001637Constant *ConstantExpr::getCompare(unsigned short Predicate,
1638 Constant *C1, Constant *C2) {
Reid Spencer67263fe2006-12-04 21:35:24 +00001639 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Chris Lattnereaf79802011-07-09 18:23:52 +00001640
1641 switch (Predicate) {
1642 default: llvm_unreachable("Invalid CmpInst predicate");
1643 case CmpInst::FCMP_FALSE: case CmpInst::FCMP_OEQ: case CmpInst::FCMP_OGT:
1644 case CmpInst::FCMP_OGE: case CmpInst::FCMP_OLT: case CmpInst::FCMP_OLE:
1645 case CmpInst::FCMP_ONE: case CmpInst::FCMP_ORD: case CmpInst::FCMP_UNO:
1646 case CmpInst::FCMP_UEQ: case CmpInst::FCMP_UGT: case CmpInst::FCMP_UGE:
1647 case CmpInst::FCMP_ULT: case CmpInst::FCMP_ULE: case CmpInst::FCMP_UNE:
1648 case CmpInst::FCMP_TRUE:
1649 return getFCmp(Predicate, C1, C2);
1650
1651 case CmpInst::ICMP_EQ: case CmpInst::ICMP_NE: case CmpInst::ICMP_UGT:
1652 case CmpInst::ICMP_UGE: case CmpInst::ICMP_ULT: case CmpInst::ICMP_ULE:
1653 case CmpInst::ICMP_SGT: case CmpInst::ICMP_SGE: case CmpInst::ICMP_SLT:
1654 case CmpInst::ICMP_SLE:
1655 return getICmp(Predicate, C1, C2);
1656 }
Chris Lattnerc3d12f02004-08-04 18:50:09 +00001657}
1658
Chris Lattnereaf79802011-07-09 18:23:52 +00001659Constant *ConstantExpr::getSelect(Constant *C, Constant *V1, Constant *V2) {
Chris Lattner9ace0cd2008-12-29 00:16:12 +00001660 assert(!SelectInst::areInvalidOperands(C, V1, V2)&&"Invalid select operands");
Chris Lattner08a45cc2004-03-12 05:54:04 +00001661
Chris Lattnereaf79802011-07-09 18:23:52 +00001662 if (Constant *SC = ConstantFoldSelectInstruction(C, V1, V2))
1663 return SC; // Fold common cases
Chris Lattner08a45cc2004-03-12 05:54:04 +00001664
1665 std::vector<Constant*> argVec(3, C);
1666 argVec[1] = V1;
1667 argVec[2] = V2;
Reid Spencer077d0eb2006-12-04 05:19:50 +00001668 ExprMapKeyType Key(Instruction::Select, argVec);
Owen Anderson31c36f02009-06-17 20:10:08 +00001669
Chris Lattnereaf79802011-07-09 18:23:52 +00001670 LLVMContextImpl *pImpl = C->getContext().pImpl;
1671 return pImpl->ExprConstants.getOrCreate(V1->getType(), Key);
Chris Lattner08a45cc2004-03-12 05:54:04 +00001672}
1673
Jay Foaddab3d292011-07-21 14:31:17 +00001674Constant *ConstantExpr::getGetElementPtr(Constant *C, ArrayRef<Value *> Idxs,
1675 bool InBounds) {
1676 if (Constant *FC = ConstantFoldGetElementPtr(C, InBounds, Idxs))
Chris Lattner1f78d512011-02-11 05:34:33 +00001677 return FC; // Fold a few common cases.
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001678
Chris Lattnereaf79802011-07-09 18:23:52 +00001679 // Get the result type of the getelementptr!
Jay Foada9203102011-07-25 09:48:08 +00001680 Type *Ty = GetElementPtrInst::getIndexedType(C->getType(), Idxs);
Chris Lattnereaf79802011-07-09 18:23:52 +00001681 assert(Ty && "GEP indices invalid!");
1682 unsigned AS = cast<PointerType>(C->getType())->getAddressSpace();
1683 Type *ReqTy = Ty->getPointerTo(AS);
1684
Duncan Sands1df98592010-02-16 11:11:14 +00001685 assert(C->getType()->isPointerTy() &&
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001686 "Non-pointer type for constant GetElementPtr expression");
1687 // Look up the constant in the table first to ensure uniqueness
1688 std::vector<Constant*> ArgVec;
Jay Foaddab3d292011-07-21 14:31:17 +00001689 ArgVec.reserve(1 + Idxs.size());
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001690 ArgVec.push_back(C);
Jay Foaddab3d292011-07-21 14:31:17 +00001691 for (unsigned i = 0, e = Idxs.size(); i != e; ++i)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001692 ArgVec.push_back(cast<Constant>(Idxs[i]));
1693 const ExprMapKeyType Key(Instruction::GetElementPtr, ArgVec, 0,
Chris Lattner1f78d512011-02-11 05:34:33 +00001694 InBounds ? GEPOperator::IsInBounds : 0);
Chris Lattnereaf79802011-07-09 18:23:52 +00001695
1696 LLVMContextImpl *pImpl = C->getContext().pImpl;
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001697 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
1698}
1699
Reid Spencer077d0eb2006-12-04 05:19:50 +00001700Constant *
Nick Lewycky401f3252010-01-21 07:03:21 +00001701ConstantExpr::getICmp(unsigned short pred, Constant *LHS, Constant *RHS) {
Reid Spencer077d0eb2006-12-04 05:19:50 +00001702 assert(LHS->getType() == RHS->getType());
1703 assert(pred >= ICmpInst::FIRST_ICMP_PREDICATE &&
1704 pred <= ICmpInst::LAST_ICMP_PREDICATE && "Invalid ICmp Predicate");
1705
Chris Lattnerb29d5962010-02-01 20:48:08 +00001706 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
Reid Spencer077d0eb2006-12-04 05:19:50 +00001707 return FC; // Fold a few common cases...
1708
1709 // Look up the constant in the table first to ensure uniqueness
1710 std::vector<Constant*> ArgVec;
1711 ArgVec.push_back(LHS);
1712 ArgVec.push_back(RHS);
Reid Spencer4fa021a2006-12-24 18:42:29 +00001713 // Get the key type with both the opcode and predicate
Reid Spencer077d0eb2006-12-04 05:19:50 +00001714 const ExprMapKeyType Key(Instruction::ICmp, ArgVec, pred);
Owen Anderson31c36f02009-06-17 20:10:08 +00001715
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001716 Type *ResultTy = Type::getInt1Ty(LHS->getContext());
1717 if (VectorType *VT = dyn_cast<VectorType>(LHS->getType()))
Nick Lewycky401f3252010-01-21 07:03:21 +00001718 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
1719
Owen Andersond03eecd2009-08-04 20:25:11 +00001720 LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl;
Nick Lewycky401f3252010-01-21 07:03:21 +00001721 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
Reid Spencer077d0eb2006-12-04 05:19:50 +00001722}
1723
1724Constant *
Nick Lewycky401f3252010-01-21 07:03:21 +00001725ConstantExpr::getFCmp(unsigned short pred, Constant *LHS, Constant *RHS) {
Reid Spencer077d0eb2006-12-04 05:19:50 +00001726 assert(LHS->getType() == RHS->getType());
1727 assert(pred <= FCmpInst::LAST_FCMP_PREDICATE && "Invalid FCmp Predicate");
1728
Chris Lattnerb29d5962010-02-01 20:48:08 +00001729 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
Reid Spencer077d0eb2006-12-04 05:19:50 +00001730 return FC; // Fold a few common cases...
1731
1732 // Look up the constant in the table first to ensure uniqueness
1733 std::vector<Constant*> ArgVec;
1734 ArgVec.push_back(LHS);
1735 ArgVec.push_back(RHS);
Reid Spencer4fa021a2006-12-24 18:42:29 +00001736 // Get the key type with both the opcode and predicate
Reid Spencer077d0eb2006-12-04 05:19:50 +00001737 const ExprMapKeyType Key(Instruction::FCmp, ArgVec, pred);
Nick Lewycky401f3252010-01-21 07:03:21 +00001738
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001739 Type *ResultTy = Type::getInt1Ty(LHS->getContext());
1740 if (VectorType *VT = dyn_cast<VectorType>(LHS->getType()))
Nick Lewycky401f3252010-01-21 07:03:21 +00001741 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
1742
Owen Andersond03eecd2009-08-04 20:25:11 +00001743 LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl;
Nick Lewycky401f3252010-01-21 07:03:21 +00001744 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
Reid Spencer077d0eb2006-12-04 05:19:50 +00001745}
1746
Robert Bocchinob52ee7f2006-01-10 19:05:34 +00001747Constant *ConstantExpr::getExtractElement(Constant *Val, Constant *Idx) {
Duncan Sands1df98592010-02-16 11:11:14 +00001748 assert(Val->getType()->isVectorTy() &&
Reid Spencerac9dcb92007-02-15 03:39:18 +00001749 "Tried to create extractelement operation on non-vector type!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001750 assert(Idx->getType()->isIntegerTy(32) &&
Reid Spencer3d10b0b2007-01-26 07:37:34 +00001751 "Extractelement index must be i32 type!");
Chris Lattnereaf79802011-07-09 18:23:52 +00001752
1753 if (Constant *FC = ConstantFoldExtractElementInstruction(Val, Idx))
Chris Lattner83738a22009-12-30 20:25:09 +00001754 return FC; // Fold a few common cases.
Chris Lattnereaf79802011-07-09 18:23:52 +00001755
Robert Bocchinoc152f9c2006-01-17 20:07:22 +00001756 // Look up the constant in the table first to ensure uniqueness
1757 std::vector<Constant*> ArgVec(1, Val);
Robert Bocchinoc152f9c2006-01-17 20:07:22 +00001758 ArgVec.push_back(Idx);
Chris Lattnereaf79802011-07-09 18:23:52 +00001759 const ExprMapKeyType Key(Instruction::ExtractElement,ArgVec);
Owen Anderson31c36f02009-06-17 20:10:08 +00001760
Chris Lattnereaf79802011-07-09 18:23:52 +00001761 LLVMContextImpl *pImpl = Val->getContext().pImpl;
1762 Type *ReqTy = cast<VectorType>(Val->getType())->getElementType();
Owen Andersond03eecd2009-08-04 20:25:11 +00001763 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Robert Bocchinoc152f9c2006-01-17 20:07:22 +00001764}
1765
1766Constant *ConstantExpr::getInsertElement(Constant *Val, Constant *Elt,
1767 Constant *Idx) {
Duncan Sands1df98592010-02-16 11:11:14 +00001768 assert(Val->getType()->isVectorTy() &&
Reid Spencerac9dcb92007-02-15 03:39:18 +00001769 "Tried to create insertelement operation on non-vector type!");
Reid Spencer9d6565a2007-02-15 02:26:10 +00001770 assert(Elt->getType() == cast<VectorType>(Val->getType())->getElementType()
Robert Bocchinoc152f9c2006-01-17 20:07:22 +00001771 && "Insertelement types must match!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001772 assert(Idx->getType()->isIntegerTy(32) &&
Reid Spencer3d10b0b2007-01-26 07:37:34 +00001773 "Insertelement index must be i32 type!");
Robert Bocchinoc152f9c2006-01-17 20:07:22 +00001774
Chris Lattnereaf79802011-07-09 18:23:52 +00001775 if (Constant *FC = ConstantFoldInsertElementInstruction(Val, Elt, Idx))
1776 return FC; // Fold a few common cases.
Chris Lattner00f10232006-04-08 01:18:18 +00001777 // Look up the constant in the table first to ensure uniqueness
Chris Lattnereaf79802011-07-09 18:23:52 +00001778 std::vector<Constant*> ArgVec(1, Val);
1779 ArgVec.push_back(Elt);
1780 ArgVec.push_back(Idx);
1781 const ExprMapKeyType Key(Instruction::InsertElement,ArgVec);
Owen Anderson31c36f02009-06-17 20:10:08 +00001782
Chris Lattnereaf79802011-07-09 18:23:52 +00001783 LLVMContextImpl *pImpl = Val->getContext().pImpl;
1784 return pImpl->ExprConstants.getOrCreate(Val->getType(), Key);
Chris Lattner00f10232006-04-08 01:18:18 +00001785}
1786
1787Constant *ConstantExpr::getShuffleVector(Constant *V1, Constant *V2,
1788 Constant *Mask) {
1789 assert(ShuffleVectorInst::isValidOperands(V1, V2, Mask) &&
1790 "Invalid shuffle vector constant expr operands!");
Nate Begeman0f123cf2009-02-12 21:28:33 +00001791
Chris Lattnereaf79802011-07-09 18:23:52 +00001792 if (Constant *FC = ConstantFoldShuffleVectorInstruction(V1, V2, Mask))
1793 return FC; // Fold a few common cases.
1794
Nate Begeman0f123cf2009-02-12 21:28:33 +00001795 unsigned NElts = cast<VectorType>(Mask->getType())->getNumElements();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001796 Type *EltTy = cast<VectorType>(V1->getType())->getElementType();
1797 Type *ShufTy = VectorType::get(EltTy, NElts);
Chris Lattnereaf79802011-07-09 18:23:52 +00001798
1799 // Look up the constant in the table first to ensure uniqueness
1800 std::vector<Constant*> ArgVec(1, V1);
1801 ArgVec.push_back(V2);
1802 ArgVec.push_back(Mask);
1803 const ExprMapKeyType Key(Instruction::ShuffleVector,ArgVec);
1804
1805 LLVMContextImpl *pImpl = ShufTy->getContext().pImpl;
1806 return pImpl->ExprConstants.getOrCreate(ShufTy, Key);
Chris Lattner00f10232006-04-08 01:18:18 +00001807}
1808
Chris Lattnereaf79802011-07-09 18:23:52 +00001809Constant *ConstantExpr::getInsertValue(Constant *Agg, Constant *Val,
Jay Foadfc6d3a42011-07-13 10:26:04 +00001810 ArrayRef<unsigned> Idxs) {
1811 assert(ExtractValueInst::getIndexedType(Agg->getType(),
1812 Idxs) == Val->getType() &&
Dan Gohman041e2eb2008-05-15 19:50:34 +00001813 "insertvalue indices invalid!");
Dan Gohmane4569942008-05-23 00:36:11 +00001814 assert(Agg->getType()->isFirstClassType() &&
Chris Lattner4e47aad2011-07-12 05:26:21 +00001815 "Non-first-class type for constant insertvalue expression");
Jay Foadfc6d3a42011-07-13 10:26:04 +00001816 Constant *FC = ConstantFoldInsertValueInstruction(Agg, Val, Idxs);
Chris Lattner4e47aad2011-07-12 05:26:21 +00001817 assert(FC && "insertvalue constant expr couldn't be folded!");
Dan Gohmane0891602008-07-21 23:30:30 +00001818 return FC;
Dan Gohman041e2eb2008-05-15 19:50:34 +00001819}
1820
Chris Lattnereaf79802011-07-09 18:23:52 +00001821Constant *ConstantExpr::getExtractValue(Constant *Agg,
Jay Foadfc6d3a42011-07-13 10:26:04 +00001822 ArrayRef<unsigned> Idxs) {
Dan Gohmane4569942008-05-23 00:36:11 +00001823 assert(Agg->getType()->isFirstClassType() &&
Chris Lattnereaf79802011-07-09 18:23:52 +00001824 "Tried to create extractelement operation on non-first-class type!");
Dan Gohman041e2eb2008-05-15 19:50:34 +00001825
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001826 Type *ReqTy = ExtractValueInst::getIndexedType(Agg->getType(), Idxs);
Chandler Carruthdc770fc2011-07-10 09:45:35 +00001827 (void)ReqTy;
Chris Lattnereaf79802011-07-09 18:23:52 +00001828 assert(ReqTy && "extractvalue indices invalid!");
1829
Dan Gohmane4569942008-05-23 00:36:11 +00001830 assert(Agg->getType()->isFirstClassType() &&
1831 "Non-first-class type for constant extractvalue expression");
Jay Foadfc6d3a42011-07-13 10:26:04 +00001832 Constant *FC = ConstantFoldExtractValueInstruction(Agg, Idxs);
Dan Gohmane0891602008-07-21 23:30:30 +00001833 assert(FC && "ExtractValue constant expr couldn't be folded!");
1834 return FC;
Dan Gohman041e2eb2008-05-15 19:50:34 +00001835}
1836
Chris Lattner81baf142011-02-10 07:01:55 +00001837Constant *ConstantExpr::getNeg(Constant *C, bool HasNUW, bool HasNSW) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001838 assert(C->getType()->isIntOrIntVectorTy() &&
Owen Andersonbaf3c402009-07-29 18:55:55 +00001839 "Cannot NEG a nonintegral value!");
Chris Lattner81baf142011-02-10 07:01:55 +00001840 return getSub(ConstantFP::getZeroValueForNegation(C->getType()),
1841 C, HasNUW, HasNSW);
Owen Andersonbaf3c402009-07-29 18:55:55 +00001842}
1843
Chris Lattnerf067d582011-02-07 16:40:21 +00001844Constant *ConstantExpr::getFNeg(Constant *C) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001845 assert(C->getType()->isFPOrFPVectorTy() &&
Owen Andersonbaf3c402009-07-29 18:55:55 +00001846 "Cannot FNEG a non-floating-point value!");
Chris Lattner81baf142011-02-10 07:01:55 +00001847 return getFSub(ConstantFP::getZeroValueForNegation(C->getType()), C);
Owen Andersonbaf3c402009-07-29 18:55:55 +00001848}
1849
Chris Lattnerf067d582011-02-07 16:40:21 +00001850Constant *ConstantExpr::getNot(Constant *C) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001851 assert(C->getType()->isIntOrIntVectorTy() &&
Owen Andersonbaf3c402009-07-29 18:55:55 +00001852 "Cannot NOT a nonintegral value!");
Owen Andersona7235ea2009-07-31 20:28:14 +00001853 return get(Instruction::Xor, C, Constant::getAllOnesValue(C->getType()));
Owen Andersonbaf3c402009-07-29 18:55:55 +00001854}
1855
Chris Lattner81baf142011-02-10 07:01:55 +00001856Constant *ConstantExpr::getAdd(Constant *C1, Constant *C2,
1857 bool HasNUW, bool HasNSW) {
1858 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
1859 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
1860 return get(Instruction::Add, C1, C2, Flags);
Owen Andersonbaf3c402009-07-29 18:55:55 +00001861}
1862
Chris Lattnerf067d582011-02-07 16:40:21 +00001863Constant *ConstantExpr::getFAdd(Constant *C1, Constant *C2) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00001864 return get(Instruction::FAdd, C1, C2);
1865}
1866
Chris Lattner81baf142011-02-10 07:01:55 +00001867Constant *ConstantExpr::getSub(Constant *C1, Constant *C2,
1868 bool HasNUW, bool HasNSW) {
1869 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
1870 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
1871 return get(Instruction::Sub, C1, C2, Flags);
Owen Andersonbaf3c402009-07-29 18:55:55 +00001872}
1873
Chris Lattnerf067d582011-02-07 16:40:21 +00001874Constant *ConstantExpr::getFSub(Constant *C1, Constant *C2) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00001875 return get(Instruction::FSub, C1, C2);
1876}
1877
Chris Lattner81baf142011-02-10 07:01:55 +00001878Constant *ConstantExpr::getMul(Constant *C1, Constant *C2,
1879 bool HasNUW, bool HasNSW) {
1880 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
1881 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
1882 return get(Instruction::Mul, C1, C2, Flags);
Owen Andersonbaf3c402009-07-29 18:55:55 +00001883}
1884
Chris Lattnerf067d582011-02-07 16:40:21 +00001885Constant *ConstantExpr::getFMul(Constant *C1, Constant *C2) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00001886 return get(Instruction::FMul, C1, C2);
1887}
1888
Chris Lattner74f5c5a2011-02-09 16:43:07 +00001889Constant *ConstantExpr::getUDiv(Constant *C1, Constant *C2, bool isExact) {
1890 return get(Instruction::UDiv, C1, C2,
1891 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Andersonbaf3c402009-07-29 18:55:55 +00001892}
1893
Chris Lattner74f5c5a2011-02-09 16:43:07 +00001894Constant *ConstantExpr::getSDiv(Constant *C1, Constant *C2, bool isExact) {
1895 return get(Instruction::SDiv, C1, C2,
1896 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Andersonbaf3c402009-07-29 18:55:55 +00001897}
1898
Chris Lattnerf067d582011-02-07 16:40:21 +00001899Constant *ConstantExpr::getFDiv(Constant *C1, Constant *C2) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00001900 return get(Instruction::FDiv, C1, C2);
1901}
1902
Chris Lattnerf067d582011-02-07 16:40:21 +00001903Constant *ConstantExpr::getURem(Constant *C1, Constant *C2) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00001904 return get(Instruction::URem, C1, C2);
1905}
1906
Chris Lattnerf067d582011-02-07 16:40:21 +00001907Constant *ConstantExpr::getSRem(Constant *C1, Constant *C2) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00001908 return get(Instruction::SRem, C1, C2);
1909}
1910
Chris Lattnerf067d582011-02-07 16:40:21 +00001911Constant *ConstantExpr::getFRem(Constant *C1, Constant *C2) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00001912 return get(Instruction::FRem, C1, C2);
1913}
1914
Chris Lattnerf067d582011-02-07 16:40:21 +00001915Constant *ConstantExpr::getAnd(Constant *C1, Constant *C2) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00001916 return get(Instruction::And, C1, C2);
1917}
1918
Chris Lattnerf067d582011-02-07 16:40:21 +00001919Constant *ConstantExpr::getOr(Constant *C1, Constant *C2) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00001920 return get(Instruction::Or, C1, C2);
1921}
1922
Chris Lattnerf067d582011-02-07 16:40:21 +00001923Constant *ConstantExpr::getXor(Constant *C1, Constant *C2) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00001924 return get(Instruction::Xor, C1, C2);
1925}
1926
Chris Lattner81baf142011-02-10 07:01:55 +00001927Constant *ConstantExpr::getShl(Constant *C1, Constant *C2,
1928 bool HasNUW, bool HasNSW) {
1929 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
1930 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
1931 return get(Instruction::Shl, C1, C2, Flags);
Owen Andersonbaf3c402009-07-29 18:55:55 +00001932}
1933
Chris Lattner74f5c5a2011-02-09 16:43:07 +00001934Constant *ConstantExpr::getLShr(Constant *C1, Constant *C2, bool isExact) {
1935 return get(Instruction::LShr, C1, C2,
1936 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Andersonbaf3c402009-07-29 18:55:55 +00001937}
1938
Chris Lattner74f5c5a2011-02-09 16:43:07 +00001939Constant *ConstantExpr::getAShr(Constant *C1, Constant *C2, bool isExact) {
1940 return get(Instruction::AShr, C1, C2,
1941 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Andersonbaf3c402009-07-29 18:55:55 +00001942}
1943
Vikram S. Adved0b1bb02002-07-15 18:19:33 +00001944// destroyConstant - Remove the constant from the constant table...
1945//
Owen Anderson04fb7c32009-06-20 00:24:58 +00001946void ConstantExpr::destroyConstant() {
Chris Lattner1afcace2011-07-09 17:41:24 +00001947 getType()->getContext().pImpl->ExprConstants.remove(this);
Vikram S. Adved0b1bb02002-07-15 18:19:33 +00001948 destroyConstantImpl();
Vikram S. Adve345e0cf2002-07-14 23:13:17 +00001949}
1950
Chris Lattnerc188eeb2002-07-30 18:54:25 +00001951const char *ConstantExpr::getOpcodeName() const {
1952 return Instruction::getOpcodeName(getOpcode());
Vikram S. Adve345e0cf2002-07-14 23:13:17 +00001953}
Reid Spencer1c9c8e62004-07-17 23:48:33 +00001954
Chris Lattner04e3b1e2010-03-30 20:48:48 +00001955
1956
1957GetElementPtrConstantExpr::
1958GetElementPtrConstantExpr(Constant *C, const std::vector<Constant*> &IdxList,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001959 Type *DestTy)
Chris Lattner04e3b1e2010-03-30 20:48:48 +00001960 : ConstantExpr(DestTy, Instruction::GetElementPtr,
1961 OperandTraits<GetElementPtrConstantExpr>::op_end(this)
1962 - (IdxList.size()+1), IdxList.size()+1) {
1963 OperandList[0] = C;
1964 for (unsigned i = 0, E = IdxList.size(); i != E; ++i)
1965 OperandList[i+1] = IdxList[i];
1966}
1967
Chris Lattner27dd9cf2012-01-23 22:57:10 +00001968//===----------------------------------------------------------------------===//
1969// ConstantData* implementations
1970
1971void ConstantDataArray::anchor() {}
1972void ConstantDataVector::anchor() {}
1973
Chris Lattner45bb5c52012-01-24 04:43:41 +00001974/// getElementType - Return the element type of the array/vector.
1975Type *ConstantDataSequential::getElementType() const {
1976 return getType()->getElementType();
1977}
1978
Chris Lattnerff2b7f32012-01-24 05:42:11 +00001979/// isElementTypeCompatible - Return true if a ConstantDataSequential can be
1980/// formed with a vector or array of the specified element type.
1981/// ConstantDataArray only works with normal float and int types that are
1982/// stored densely in memory, not with things like i42 or x86_f80.
1983bool ConstantDataSequential::isElementTypeCompatible(const Type *Ty) {
Chris Lattner45bb5c52012-01-24 04:43:41 +00001984 if (Ty->isFloatTy() || Ty->isDoubleTy()) return true;
1985 if (const IntegerType *IT = dyn_cast<IntegerType>(Ty)) {
1986 switch (IT->getBitWidth()) {
1987 case 8:
1988 case 16:
1989 case 32:
1990 case 64:
1991 return true;
1992 default: break;
1993 }
1994 }
1995 return false;
1996}
1997
1998/// getElementByteSize - Return the size in bytes of the elements in the data.
1999uint64_t ConstantDataSequential::getElementByteSize() const {
2000 return getElementType()->getPrimitiveSizeInBits()/8;
2001}
2002
2003/// getElementPointer - Return the start of the specified element.
2004const char *ConstantDataSequential::getElementPointer(unsigned Elt) const {
2005 assert(Elt < getElementType()->getNumElements() && "Invalid Elt");
2006 return DataElements+Elt*getElementByteSize();
2007}
2008
2009
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002010/// isAllZeros - return true if the array is empty or all zeros.
2011static bool isAllZeros(StringRef Arr) {
2012 for (StringRef::iterator I = Arr.begin(), E = Arr.end(); I != E; ++I)
2013 if (*I != 0)
2014 return false;
2015 return true;
2016}
Chris Lattnerff2b7f32012-01-24 05:42:11 +00002017
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002018/// getImpl - This is the underlying implementation of all of the
2019/// ConstantDataSequential::get methods. They all thunk down to here, providing
2020/// the correct element type. We take the bytes in as an StringRef because
2021/// we *want* an underlying "char*" to avoid TBAA type punning violations.
2022Constant *ConstantDataSequential::getImpl(StringRef Elements, Type *Ty) {
Chris Lattnerff2b7f32012-01-24 05:42:11 +00002023 assert(isElementTypeCompatible(cast<SequentialType>(Ty)->getElementType()));
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002024 // If the elements are all zero, return a CAZ, which is more dense.
2025 if (isAllZeros(Elements))
2026 return ConstantAggregateZero::get(Ty);
2027
2028 // Do a lookup to see if we have already formed one of these.
2029 StringMap<ConstantDataSequential*>::MapEntryTy &Slot =
2030 Ty->getContext().pImpl->CDSConstants.GetOrCreateValue(Elements);
2031
2032 // The bucket can point to a linked list of different CDS's that have the same
2033 // body but different types. For example, 0,0,0,1 could be a 4 element array
2034 // of i8, or a 1-element array of i32. They'll both end up in the same
2035 /// StringMap bucket, linked up by their Next pointers. Walk the list.
2036 ConstantDataSequential **Entry = &Slot.getValue();
2037 for (ConstantDataSequential *Node = *Entry; Node != 0;
2038 Entry = &Node->Next, Node = *Entry)
2039 if (Node->getType() == Ty)
2040 return Node;
2041
2042 // Okay, we didn't get a hit. Create a node of the right class, link it in,
2043 // and return it.
2044 if (isa<ArrayType>(Ty))
2045 return *Entry = new ConstantDataArray(Ty, Slot.getKeyData());
2046
2047 assert(isa<VectorType>(Ty));
2048 return *Entry = new ConstantDataVector(Ty, Slot.getKeyData());
2049}
2050
2051void ConstantDataSequential::destroyConstant() {
Chris Lattner45bb5c52012-01-24 04:43:41 +00002052 uint64_t ByteSize = getElementByteSize() * getElementType()->getNumElements();
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002053
2054 // Remove the constant from the StringMap.
2055 StringMap<ConstantDataSequential*> &CDSConstants =
2056 getType()->getContext().pImpl->CDSConstants;
2057
2058 StringMap<ConstantDataSequential*>::iterator Slot =
2059 CDSConstants.find(StringRef(DataElements, ByteSize));
2060
2061 assert(Slot != CDSConstants.end() && "CDS not found in uniquing table");
2062
2063 ConstantDataSequential **Entry = &Slot->getValue();
2064
2065 // Remove the entry from the hash table.
2066 if ((*Entry)->Next == 0) {
2067 // If there is only one value in the bucket (common case) it must be this
2068 // entry, and removing the entry should remove the bucket completely.
2069 assert((*Entry) == this && "Hash mismatch in ConstantDataSequential");
2070 getContext().pImpl->CDSConstants.erase(Slot);
2071 } else {
2072 // Otherwise, there are multiple entries linked off the bucket, unlink the
2073 // node we care about but keep the bucket around.
2074 for (ConstantDataSequential *Node = *Entry; ;
2075 Entry = &Node->Next, Node = *Entry) {
2076 assert(Node && "Didn't find entry in its uniquing hash table!");
2077 // If we found our entry, unlink it from the list and we're done.
2078 if (Node == this) {
2079 *Entry = Node->Next;
2080 break;
2081 }
2082 }
2083 }
2084
2085 // If we were part of a list, make sure that we don't delete the list that is
2086 // still owned by the uniquing map.
2087 Next = 0;
2088
2089 // Finally, actually delete it.
2090 destroyConstantImpl();
2091}
2092
2093/// get() constructors - Return a constant with array type with an element
2094/// count and element type matching the ArrayRef passed in. Note that this
2095/// can return a ConstantAggregateZero object.
2096Constant *ConstantDataArray::get(ArrayRef<uint8_t> Elts, LLVMContext &Context) {
2097 Type *Ty = ArrayType::get(Type::getInt8Ty(Context), Elts.size());
2098 return getImpl(StringRef((char*)Elts.data(), Elts.size()*1), Ty);
2099}
2100Constant *ConstantDataArray::get(ArrayRef<uint16_t> Elts, LLVMContext &Context){
2101 Type *Ty = ArrayType::get(Type::getInt16Ty(Context), Elts.size());
2102 return getImpl(StringRef((char*)Elts.data(), Elts.size()*2), Ty);
2103}
2104Constant *ConstantDataArray::get(ArrayRef<uint32_t> Elts, LLVMContext &Context){
2105 Type *Ty = ArrayType::get(Type::getInt32Ty(Context), Elts.size());
2106 return getImpl(StringRef((char*)Elts.data(), Elts.size()*4), Ty);
2107}
2108Constant *ConstantDataArray::get(ArrayRef<uint64_t> Elts, LLVMContext &Context){
2109 Type *Ty = ArrayType::get(Type::getInt64Ty(Context), Elts.size());
2110 return getImpl(StringRef((char*)Elts.data(), Elts.size()*8), Ty);
2111}
2112Constant *ConstantDataArray::get(ArrayRef<float> Elts, LLVMContext &Context) {
2113 Type *Ty = ArrayType::get(Type::getFloatTy(Context), Elts.size());
2114 return getImpl(StringRef((char*)Elts.data(), Elts.size()*4), Ty);
2115}
2116Constant *ConstantDataArray::get(ArrayRef<double> Elts, LLVMContext &Context) {
2117 Type *Ty = ArrayType::get(Type::getDoubleTy(Context), Elts.size());
2118 return getImpl(StringRef((char*)Elts.data(), Elts.size()*8), Ty);
2119}
2120
2121
2122/// get() constructors - Return a constant with vector type with an element
2123/// count and element type matching the ArrayRef passed in. Note that this
2124/// can return a ConstantAggregateZero object.
2125Constant *ConstantDataVector::get(ArrayRef<uint8_t> Elts, LLVMContext &Context) {
2126 Type *Ty = VectorType::get(Type::getInt8Ty(Context), Elts.size());
2127 return getImpl(StringRef((char*)Elts.data(), Elts.size()*1), Ty);
2128}
2129Constant *ConstantDataVector::get(ArrayRef<uint16_t> Elts, LLVMContext &Context){
2130 Type *Ty = VectorType::get(Type::getInt16Ty(Context), Elts.size());
2131 return getImpl(StringRef((char*)Elts.data(), Elts.size()*2), Ty);
2132}
2133Constant *ConstantDataVector::get(ArrayRef<uint32_t> Elts, LLVMContext &Context){
2134 Type *Ty = VectorType::get(Type::getInt32Ty(Context), Elts.size());
2135 return getImpl(StringRef((char*)Elts.data(), Elts.size()*4), Ty);
2136}
2137Constant *ConstantDataVector::get(ArrayRef<uint64_t> Elts, LLVMContext &Context){
2138 Type *Ty = VectorType::get(Type::getInt64Ty(Context), Elts.size());
2139 return getImpl(StringRef((char*)Elts.data(), Elts.size()*8), Ty);
2140}
2141Constant *ConstantDataVector::get(ArrayRef<float> Elts, LLVMContext &Context) {
2142 Type *Ty = VectorType::get(Type::getFloatTy(Context), Elts.size());
2143 return getImpl(StringRef((char*)Elts.data(), Elts.size()*4), Ty);
2144}
2145Constant *ConstantDataVector::get(ArrayRef<double> Elts, LLVMContext &Context) {
2146 Type *Ty = VectorType::get(Type::getDoubleTy(Context), Elts.size());
2147 return getImpl(StringRef((char*)Elts.data(), Elts.size()*8), Ty);
2148}
2149
Chris Lattner45bb5c52012-01-24 04:43:41 +00002150/// getElementAsInteger - If this is a sequential container of integers (of
2151/// any size), return the specified element in the low bits of a uint64_t.
2152uint64_t ConstantDataSequential::getElementAsInteger(unsigned Elt) const {
2153 assert(isa<IntegerType>(getElementType()) &&
2154 "Accessor can only be used when element is an integer");
2155 const char *EltPtr = getElementPointer(Elt);
2156
2157 // The data is stored in host byte order, make sure to cast back to the right
2158 // type to load with the right endianness.
2159 switch (cast<IntegerType>(getElementType())->getBitWidth()) {
2160 default: assert(0 && "Invalid bitwidth for CDS");
2161 case 8: return *(uint8_t*)EltPtr;
2162 case 16: return *(uint16_t*)EltPtr;
2163 case 32: return *(uint32_t*)EltPtr;
2164 case 64: return *(uint64_t*)EltPtr;
2165 }
2166}
2167
2168/// getElementAsAPFloat - If this is a sequential container of floating point
2169/// type, return the specified element as an APFloat.
2170APFloat ConstantDataSequential::getElementAsAPFloat(unsigned Elt) const {
2171 const char *EltPtr = getElementPointer(Elt);
2172
2173 switch (getElementType()->getTypeID()) {
2174 default: assert("Accessor can only be used when element is float/double!");
2175 case Type::FloatTyID: return APFloat(*(float*)EltPtr);
2176 case Type::DoubleTyID: return APFloat(*(double*)EltPtr);
2177 }
2178}
2179
2180/// getElementAsFloat - If this is an sequential container of floats, return
2181/// the specified element as a float.
2182float ConstantDataSequential::getElementAsFloat(unsigned Elt) const {
2183 assert(getElementType()->isFloatTy() &&
2184 "Accessor can only be used when element is a 'float'");
2185 return *(float*)getElementPointer(Elt);
2186}
2187
2188/// getElementAsDouble - If this is an sequential container of doubles, return
2189/// the specified element as a float.
2190double ConstantDataSequential::getElementAsDouble(unsigned Elt) const {
2191 assert(getElementType()->isDoubleTy() &&
2192 "Accessor can only be used when element is a 'float'");
2193 return *(double*)getElementPointer(Elt);
2194}
2195
2196/// getElementAsConstant - Return a Constant for a specified index's element.
2197/// Note that this has to compute a new constant to return, so it isn't as
2198/// efficient as getElementAsInteger/Float/Double.
2199Constant *ConstantDataSequential::getElementAsConstant(unsigned Elt) const {
2200 if (getElementType()->isFloatTy() || getElementType()->isDoubleTy())
2201 return ConstantFP::get(getContext(), getElementAsAPFloat(Elt));
2202
2203 return ConstantInt::get(getElementType(), getElementAsInteger(Elt));
2204}
2205
Chris Lattner27dd9cf2012-01-23 22:57:10 +00002206
2207
Chris Lattner04e3b1e2010-03-30 20:48:48 +00002208
Chris Lattner5cbade92005-10-03 21:58:36 +00002209//===----------------------------------------------------------------------===//
2210// replaceUsesOfWithOnConstant implementations
2211
Chris Lattner54984052007-08-21 00:55:23 +00002212/// replaceUsesOfWithOnConstant - Update this constant array to change uses of
2213/// 'From' to be uses of 'To'. This must update the uniquing data structures
2214/// etc.
2215///
2216/// Note that we intentionally replace all uses of From with To here. Consider
2217/// a large array that uses 'From' 1000 times. By handling this case all here,
2218/// ConstantArray::replaceUsesOfWithOnConstant is only invoked once, and that
2219/// single invocation handles all 1000 uses. Handling them one at a time would
2220/// work, but would be really slow because it would have to unique each updated
2221/// array instance.
Chris Lattner2ee11ec2009-10-28 00:01:44 +00002222///
Chris Lattner5cbade92005-10-03 21:58:36 +00002223void ConstantArray::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002224 Use *U) {
Owen Anderson1fd70962009-07-28 18:32:17 +00002225 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2226 Constant *ToC = cast<Constant>(To);
2227
Chris Lattner1afcace2011-07-09 17:41:24 +00002228 LLVMContextImpl *pImpl = getType()->getContext().pImpl;
Owen Anderson1fd70962009-07-28 18:32:17 +00002229
Dan Gohmane3394d42009-09-15 15:58:07 +00002230 std::pair<LLVMContextImpl::ArrayConstantsTy::MapKey, ConstantArray*> Lookup;
Chris Lattner1afcace2011-07-09 17:41:24 +00002231 Lookup.first.first = cast<ArrayType>(getType());
Owen Anderson1fd70962009-07-28 18:32:17 +00002232 Lookup.second = this;
2233
2234 std::vector<Constant*> &Values = Lookup.first.second;
2235 Values.reserve(getNumOperands()); // Build replacement array.
2236
2237 // Fill values with the modified operands of the constant array. Also,
2238 // compute whether this turns into an all-zeros array.
2239 bool isAllZeros = false;
2240 unsigned NumUpdated = 0;
2241 if (!ToC->isNullValue()) {
2242 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2243 Constant *Val = cast<Constant>(O->get());
2244 if (Val == From) {
2245 Val = ToC;
2246 ++NumUpdated;
2247 }
2248 Values.push_back(Val);
2249 }
2250 } else {
2251 isAllZeros = true;
2252 for (Use *O = OperandList, *E = OperandList+getNumOperands();O != E; ++O) {
2253 Constant *Val = cast<Constant>(O->get());
2254 if (Val == From) {
2255 Val = ToC;
2256 ++NumUpdated;
2257 }
2258 Values.push_back(Val);
2259 if (isAllZeros) isAllZeros = Val->isNullValue();
2260 }
2261 }
2262
2263 Constant *Replacement = 0;
2264 if (isAllZeros) {
Chris Lattner1afcace2011-07-09 17:41:24 +00002265 Replacement = ConstantAggregateZero::get(getType());
Owen Anderson1fd70962009-07-28 18:32:17 +00002266 } else {
2267 // Check to see if we have this array type already.
Owen Anderson1fd70962009-07-28 18:32:17 +00002268 bool Exists;
2269 LLVMContextImpl::ArrayConstantsTy::MapTy::iterator I =
2270 pImpl->ArrayConstants.InsertOrGetItem(Lookup, Exists);
2271
2272 if (Exists) {
Devang Patel5f4ac842009-09-03 01:39:20 +00002273 Replacement = I->second;
Owen Anderson1fd70962009-07-28 18:32:17 +00002274 } else {
2275 // Okay, the new shape doesn't exist in the system yet. Instead of
2276 // creating a new constant array, inserting it, replaceallusesof'ing the
2277 // old with the new, then deleting the old... just update the current one
2278 // in place!
2279 pImpl->ArrayConstants.MoveConstantToNewSlot(this, I);
2280
2281 // Update to the new value. Optimize for the case when we have a single
2282 // operand that we're changing, but handle bulk updates efficiently.
2283 if (NumUpdated == 1) {
2284 unsigned OperandToUpdate = U - OperandList;
2285 assert(getOperand(OperandToUpdate) == From &&
2286 "ReplaceAllUsesWith broken!");
2287 setOperand(OperandToUpdate, ToC);
2288 } else {
2289 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
2290 if (getOperand(i) == From)
2291 setOperand(i, ToC);
2292 }
2293 return;
2294 }
2295 }
Chris Lattnercea141f2005-10-03 22:51:37 +00002296
2297 // Otherwise, I do need to replace this with an existing value.
Chris Lattner5cbade92005-10-03 21:58:36 +00002298 assert(Replacement != this && "I didn't contain From!");
2299
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002300 // Everyone using this now uses the replacement.
Chris Lattner678f9e02011-07-15 06:18:52 +00002301 replaceAllUsesWith(Replacement);
Chris Lattner5cbade92005-10-03 21:58:36 +00002302
2303 // Delete the old constant!
2304 destroyConstant();
2305}
2306
2307void ConstantStruct::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002308 Use *U) {
Owen Anderson8fa33382009-07-27 22:29:26 +00002309 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2310 Constant *ToC = cast<Constant>(To);
2311
2312 unsigned OperandToUpdate = U-OperandList;
2313 assert(getOperand(OperandToUpdate) == From && "ReplaceAllUsesWith broken!");
2314
Dan Gohmane3394d42009-09-15 15:58:07 +00002315 std::pair<LLVMContextImpl::StructConstantsTy::MapKey, ConstantStruct*> Lookup;
Chris Lattner1afcace2011-07-09 17:41:24 +00002316 Lookup.first.first = cast<StructType>(getType());
Owen Anderson8fa33382009-07-27 22:29:26 +00002317 Lookup.second = this;
2318 std::vector<Constant*> &Values = Lookup.first.second;
2319 Values.reserve(getNumOperands()); // Build replacement struct.
2320
2321
2322 // Fill values with the modified operands of the constant struct. Also,
2323 // compute whether this turns into an all-zeros struct.
2324 bool isAllZeros = false;
2325 if (!ToC->isNullValue()) {
2326 for (Use *O = OperandList, *E = OperandList + getNumOperands(); O != E; ++O)
2327 Values.push_back(cast<Constant>(O->get()));
2328 } else {
2329 isAllZeros = true;
2330 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2331 Constant *Val = cast<Constant>(O->get());
2332 Values.push_back(Val);
2333 if (isAllZeros) isAllZeros = Val->isNullValue();
2334 }
2335 }
2336 Values[OperandToUpdate] = ToC;
2337
Chris Lattner1afcace2011-07-09 17:41:24 +00002338 LLVMContextImpl *pImpl = getContext().pImpl;
Owen Anderson8fa33382009-07-27 22:29:26 +00002339
2340 Constant *Replacement = 0;
2341 if (isAllZeros) {
Chris Lattner1afcace2011-07-09 17:41:24 +00002342 Replacement = ConstantAggregateZero::get(getType());
Owen Anderson8fa33382009-07-27 22:29:26 +00002343 } else {
Chris Lattner93604b62010-07-17 06:13:52 +00002344 // Check to see if we have this struct type already.
Owen Anderson8fa33382009-07-27 22:29:26 +00002345 bool Exists;
2346 LLVMContextImpl::StructConstantsTy::MapTy::iterator I =
2347 pImpl->StructConstants.InsertOrGetItem(Lookup, Exists);
2348
2349 if (Exists) {
Devang Patel5f4ac842009-09-03 01:39:20 +00002350 Replacement = I->second;
Owen Anderson8fa33382009-07-27 22:29:26 +00002351 } else {
2352 // Okay, the new shape doesn't exist in the system yet. Instead of
2353 // creating a new constant struct, inserting it, replaceallusesof'ing the
2354 // old with the new, then deleting the old... just update the current one
2355 // in place!
2356 pImpl->StructConstants.MoveConstantToNewSlot(this, I);
2357
2358 // Update to the new value.
2359 setOperand(OperandToUpdate, ToC);
2360 return;
2361 }
2362 }
2363
2364 assert(Replacement != this && "I didn't contain From!");
Chris Lattner5cbade92005-10-03 21:58:36 +00002365
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002366 // Everyone using this now uses the replacement.
Chris Lattner678f9e02011-07-15 06:18:52 +00002367 replaceAllUsesWith(Replacement);
Chris Lattner5cbade92005-10-03 21:58:36 +00002368
2369 // Delete the old constant!
2370 destroyConstant();
2371}
2372
Reid Spencer9d6565a2007-02-15 02:26:10 +00002373void ConstantVector::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002374 Use *U) {
Chris Lattner5cbade92005-10-03 21:58:36 +00002375 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2376
2377 std::vector<Constant*> Values;
2378 Values.reserve(getNumOperands()); // Build replacement array...
2379 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
2380 Constant *Val = getOperand(i);
2381 if (Val == From) Val = cast<Constant>(To);
2382 Values.push_back(Val);
2383 }
2384
Jay Foada0c13842011-06-22 09:10:19 +00002385 Constant *Replacement = get(Values);
Chris Lattner5cbade92005-10-03 21:58:36 +00002386 assert(Replacement != this && "I didn't contain From!");
2387
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002388 // Everyone using this now uses the replacement.
Chris Lattner678f9e02011-07-15 06:18:52 +00002389 replaceAllUsesWith(Replacement);
Chris Lattner5cbade92005-10-03 21:58:36 +00002390
2391 // Delete the old constant!
2392 destroyConstant();
2393}
2394
2395void ConstantExpr::replaceUsesOfWithOnConstant(Value *From, Value *ToV,
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002396 Use *U) {
Chris Lattner5cbade92005-10-03 21:58:36 +00002397 assert(isa<Constant>(ToV) && "Cannot make Constant refer to non-constant!");
2398 Constant *To = cast<Constant>(ToV);
2399
2400 Constant *Replacement = 0;
2401 if (getOpcode() == Instruction::GetElementPtr) {
Chris Lattnerf9021ff2007-02-19 20:01:23 +00002402 SmallVector<Constant*, 8> Indices;
Chris Lattner5cbade92005-10-03 21:58:36 +00002403 Constant *Pointer = getOperand(0);
2404 Indices.reserve(getNumOperands()-1);
2405 if (Pointer == From) Pointer = To;
2406
2407 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
2408 Constant *Val = getOperand(i);
2409 if (Val == From) Val = To;
2410 Indices.push_back(Val);
2411 }
Jay Foaddab3d292011-07-21 14:31:17 +00002412 Replacement = ConstantExpr::getGetElementPtr(Pointer, Indices,
Chris Lattner33a8f332011-02-11 05:37:21 +00002413 cast<GEPOperator>(this)->isInBounds());
Dan Gohman041e2eb2008-05-15 19:50:34 +00002414 } else if (getOpcode() == Instruction::ExtractValue) {
Dan Gohman041e2eb2008-05-15 19:50:34 +00002415 Constant *Agg = getOperand(0);
Dan Gohman041e2eb2008-05-15 19:50:34 +00002416 if (Agg == From) Agg = To;
2417
Jay Foadd30aa5a2011-04-13 15:22:40 +00002418 ArrayRef<unsigned> Indices = getIndices();
Jay Foadfc6d3a42011-07-13 10:26:04 +00002419 Replacement = ConstantExpr::getExtractValue(Agg, Indices);
Dan Gohman041e2eb2008-05-15 19:50:34 +00002420 } else if (getOpcode() == Instruction::InsertValue) {
Dan Gohman041e2eb2008-05-15 19:50:34 +00002421 Constant *Agg = getOperand(0);
2422 Constant *Val = getOperand(1);
Dan Gohman041e2eb2008-05-15 19:50:34 +00002423 if (Agg == From) Agg = To;
2424 if (Val == From) Val = To;
2425
Jay Foadd30aa5a2011-04-13 15:22:40 +00002426 ArrayRef<unsigned> Indices = getIndices();
Jay Foadfc6d3a42011-07-13 10:26:04 +00002427 Replacement = ConstantExpr::getInsertValue(Agg, Val, Indices);
Reid Spencer3da59db2006-11-27 01:05:10 +00002428 } else if (isCast()) {
Chris Lattner5cbade92005-10-03 21:58:36 +00002429 assert(getOperand(0) == From && "Cast only has one use!");
Chris Lattner1afcace2011-07-09 17:41:24 +00002430 Replacement = ConstantExpr::getCast(getOpcode(), To, getType());
Chris Lattner5cbade92005-10-03 21:58:36 +00002431 } else if (getOpcode() == Instruction::Select) {
2432 Constant *C1 = getOperand(0);
2433 Constant *C2 = getOperand(1);
2434 Constant *C3 = getOperand(2);
2435 if (C1 == From) C1 = To;
2436 if (C2 == From) C2 = To;
2437 if (C3 == From) C3 = To;
2438 Replacement = ConstantExpr::getSelect(C1, C2, C3);
Robert Bocchinob52ee7f2006-01-10 19:05:34 +00002439 } else if (getOpcode() == Instruction::ExtractElement) {
2440 Constant *C1 = getOperand(0);
2441 Constant *C2 = getOperand(1);
2442 if (C1 == From) C1 = To;
2443 if (C2 == From) C2 = To;
2444 Replacement = ConstantExpr::getExtractElement(C1, C2);
Chris Lattner42b55802006-04-08 05:09:48 +00002445 } else if (getOpcode() == Instruction::InsertElement) {
2446 Constant *C1 = getOperand(0);
2447 Constant *C2 = getOperand(1);
2448 Constant *C3 = getOperand(1);
2449 if (C1 == From) C1 = To;
2450 if (C2 == From) C2 = To;
2451 if (C3 == From) C3 = To;
2452 Replacement = ConstantExpr::getInsertElement(C1, C2, C3);
2453 } else if (getOpcode() == Instruction::ShuffleVector) {
2454 Constant *C1 = getOperand(0);
2455 Constant *C2 = getOperand(1);
2456 Constant *C3 = getOperand(2);
2457 if (C1 == From) C1 = To;
2458 if (C2 == From) C2 = To;
2459 if (C3 == From) C3 = To;
2460 Replacement = ConstantExpr::getShuffleVector(C1, C2, C3);
Reid Spencer077d0eb2006-12-04 05:19:50 +00002461 } else if (isCompare()) {
2462 Constant *C1 = getOperand(0);
2463 Constant *C2 = getOperand(1);
2464 if (C1 == From) C1 = To;
2465 if (C2 == From) C2 = To;
2466 if (getOpcode() == Instruction::ICmp)
2467 Replacement = ConstantExpr::getICmp(getPredicate(), C1, C2);
Chris Lattnerbbedb0e2008-07-14 05:17:31 +00002468 else {
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002469 assert(getOpcode() == Instruction::FCmp);
2470 Replacement = ConstantExpr::getFCmp(getPredicate(), C1, C2);
Chris Lattnerbbedb0e2008-07-14 05:17:31 +00002471 }
Chris Lattner5cbade92005-10-03 21:58:36 +00002472 } else if (getNumOperands() == 2) {
2473 Constant *C1 = getOperand(0);
2474 Constant *C2 = getOperand(1);
2475 if (C1 == From) C1 = To;
2476 if (C2 == From) C2 = To;
Chris Lattnercafe9bb2009-12-29 02:14:09 +00002477 Replacement = ConstantExpr::get(getOpcode(), C1, C2, SubclassOptionalData);
Chris Lattner5cbade92005-10-03 21:58:36 +00002478 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +00002479 llvm_unreachable("Unknown ConstantExpr type!");
Chris Lattner5cbade92005-10-03 21:58:36 +00002480 }
2481
2482 assert(Replacement != this && "I didn't contain From!");
2483
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002484 // Everyone using this now uses the replacement.
Chris Lattner678f9e02011-07-15 06:18:52 +00002485 replaceAllUsesWith(Replacement);
Chris Lattner5cbade92005-10-03 21:58:36 +00002486
2487 // Delete the old constant!
2488 destroyConstant();
Matthijs Kooijman10b9de62008-07-03 07:46:41 +00002489}