blob: 5151105e05d6811d83e31ee0446561628afc9055 [file] [log] [blame]
Chris Lattner2b383d2e2003-05-13 21:37:02 +00001//===-- Constants.cpp - Implement Constant nodes --------------------------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
John Criswell482202a2003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanb1c93172005-04-21 23:48:37 +00007//
John Criswell482202a2003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +00009//
Chris Lattnere17322b2011-02-07 20:03:14 +000010// This file implements the Constant* classes.
Chris Lattner2f7c9632001-06-06 20:29:01 +000011//
12//===----------------------------------------------------------------------===//
13
Chris Lattnerca142372002-04-28 19:55:58 +000014#include "llvm/Constants.h"
Chris Lattner78683a72009-08-23 04:02:03 +000015#include "LLVMContextImpl.h"
Chris Lattner33e93b82007-02-27 03:05:06 +000016#include "ConstantFold.h"
Chris Lattner2f7c9632001-06-06 20:29:01 +000017#include "llvm/DerivedTypes.h"
Reid Spencer1ebe1ab2004-07-17 23:48:33 +000018#include "llvm/GlobalValue.h"
Misha Brukman63b38bd2004-07-29 17:30:56 +000019#include "llvm/Instructions.h"
Chris Lattnerd7a73302001-10-13 06:57:33 +000020#include "llvm/Module.h"
Dan Gohman7d82e132009-07-18 01:49:22 +000021#include "llvm/Operator.h"
Nick Lewycky49f89192009-04-04 07:22:01 +000022#include "llvm/ADT/FoldingSet.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000023#include "llvm/ADT/StringExtras.h"
Nick Lewycky49f89192009-04-04 07:22:01 +000024#include "llvm/ADT/StringMap.h"
Chris Lattner3d27be12006-08-27 12:54:02 +000025#include "llvm/Support/Compiler.h"
Bill Wendling6a462f12006-11-17 08:03:48 +000026#include "llvm/Support/Debug.h"
Torok Edwinccb29cd2009-07-11 13:10:19 +000027#include "llvm/Support/ErrorHandling.h"
Chris Lattner69edc982006-09-28 00:35:06 +000028#include "llvm/Support/ManagedStatic.h"
Bill Wendling6a462f12006-11-17 08:03:48 +000029#include "llvm/Support/MathExtras.h"
Chris Lattner78683a72009-08-23 04:02:03 +000030#include "llvm/Support/raw_ostream.h"
Dan Gohman7190d482009-09-10 23:37:55 +000031#include "llvm/Support/GetElementPtrTypeIterator.h"
Chris Lattnera80bf0b2007-02-20 06:39:57 +000032#include "llvm/ADT/DenseMap.h"
Chris Lattnerb5d70302007-02-19 20:01:23 +000033#include "llvm/ADT/SmallVector.h"
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000034#include "llvm/ADT/STLExtras.h"
Chris Lattner2f7c9632001-06-06 20:29:01 +000035#include <algorithm>
Talin3a0a30d2011-02-28 23:53:27 +000036#include <cstdarg>
Chris Lattner189d19f2003-11-21 20:23:48 +000037using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000038
Chris Lattner2f7c9632001-06-06 20:29:01 +000039//===----------------------------------------------------------------------===//
Chris Lattner3462ae32001-12-03 22:26:30 +000040// Constant Class
Chris Lattner2f7c9632001-06-06 20:29:01 +000041//===----------------------------------------------------------------------===//
42
David Blaikiea379b1812011-12-20 02:50:00 +000043void Constant::anchor() { }
44
Chris Lattnerac5fb562011-07-15 05:58:04 +000045bool Constant::isNegativeZeroValue() const {
46 // Floating point values have an explicit -0.0 value.
47 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
48 return CFP->isZero() && CFP->isNegative();
49
50 // Otherwise, just use +0.0.
51 return isNullValue();
52}
53
Chris Lattnerbe6610c2011-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 Rotem365af6f2011-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 Kramer42d098e2011-11-14 19:12:20 +000076 // Check for constant vectors which are splats of -1 values.
Nadav Rotem365af6f2011-08-24 20:18:38 +000077 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
Benjamin Kramer42d098e2011-11-14 19:12:20 +000078 if (Constant *Splat = CV->getSplatValue())
79 return Splat->isAllOnesValue();
Nadav Rotem365af6f2011-08-24 20:18:38 +000080
81 return false;
82}
Benjamin Kramer42d098e2011-11-14 19:12:20 +000083
Owen Anderson5a1acd92009-07-31 20:28:14 +000084// Constructor to create a '0' constant of arbitrary type...
Chris Lattner229907c2011-07-18 04:54:35 +000085Constant *Constant::getNullValue(Type *Ty) {
Owen Anderson5a1acd92009-07-31 20:28:14 +000086 switch (Ty->getTypeID()) {
87 case Type::IntegerTyID:
88 return ConstantInt::get(Ty, 0);
Dan Gohman518cda42011-12-17 00:04:22 +000089 case Type::HalfTyID:
90 return ConstantFP::get(Ty->getContext(),
91 APFloat::getZero(APFloat::IEEEhalf));
Owen Anderson5a1acd92009-07-31 20:28:14 +000092 case Type::FloatTyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +000093 return ConstantFP::get(Ty->getContext(),
94 APFloat::getZero(APFloat::IEEEsingle));
Owen Anderson5a1acd92009-07-31 20:28:14 +000095 case Type::DoubleTyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +000096 return ConstantFP::get(Ty->getContext(),
97 APFloat::getZero(APFloat::IEEEdouble));
Owen Anderson5a1acd92009-07-31 20:28:14 +000098 case Type::X86_FP80TyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +000099 return ConstantFP::get(Ty->getContext(),
100 APFloat::getZero(APFloat::x87DoubleExtended));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000101 case Type::FP128TyID:
102 return ConstantFP::get(Ty->getContext(),
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000103 APFloat::getZero(APFloat::IEEEquad));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000104 case Type::PPC_FP128TyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000105 return ConstantFP::get(Ty->getContext(),
Benjamin Kramer6f88fcb2010-12-04 14:43:08 +0000106 APFloat(APInt::getNullValue(128)));
Owen Anderson5a1acd92009-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 Trieua318b8d2011-09-21 03:09:09 +0000115 assert(0 && "Cannot create a null constant of that type!");
Owen Anderson5a1acd92009-07-31 20:28:14 +0000116 return 0;
117 }
118}
119
Chris Lattner229907c2011-07-18 04:54:35 +0000120Constant *Constant::getIntegerValue(Type *Ty, const APInt &V) {
121 Type *ScalarTy = Ty->getScalarType();
Dan Gohmanf011f5a2009-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 Lattner229907c2011-07-18 04:54:35 +0000127 if (PointerType *PTy = dyn_cast<PointerType>(ScalarTy))
Dan Gohmanf011f5a2009-08-03 22:07:33 +0000128 C = ConstantExpr::getIntToPtr(C, PTy);
129
130 // Broadcast a scalar to a vector, if necessary.
Chris Lattner229907c2011-07-18 04:54:35 +0000131 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Dan Gohmanf011f5a2009-08-03 22:07:33 +0000132 C = ConstantVector::get(std::vector<Constant *>(VTy->getNumElements(), C));
133
134 return C;
135}
136
Chris Lattner229907c2011-07-18 04:54:35 +0000137Constant *Constant::getAllOnesValue(Type *Ty) {
138 if (IntegerType *ITy = dyn_cast<IntegerType>(Ty))
Owen Anderson5a1acd92009-07-31 20:28:14 +0000139 return ConstantInt::get(Ty->getContext(),
140 APInt::getAllOnesValue(ITy->getBitWidth()));
Nadav Rotem7cc6d122011-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 Lattner69229312011-02-15 00:14:00 +0000148 SmallVector<Constant*, 16> Elts;
Chris Lattner229907c2011-07-18 04:54:35 +0000149 VectorType *VTy = cast<VectorType>(Ty);
Owen Anderson5a1acd92009-07-31 20:28:14 +0000150 Elts.resize(VTy->getNumElements(), getAllOnesValue(VTy->getElementType()));
Nadav Rotem365af6f2011-08-24 20:18:38 +0000151 assert(Elts[0] && "Invalid AllOnes value!");
Owen Anderson5a1acd92009-07-31 20:28:14 +0000152 return cast<ConstantVector>(ConstantVector::get(Elts));
153}
154
Chris Lattner3462ae32001-12-03 22:26:30 +0000155void Constant::destroyConstantImpl() {
156 // When a Constant is destroyed, there may be lingering
Chris Lattnerd7a73302001-10-13 06:57:33 +0000157 // references to the constant by other constants in the constant pool. These
Misha Brukmanbe372b92003-08-21 22:14:26 +0000158 // constants are implicitly dependent on the module that is being deleted,
Chris Lattnerd7a73302001-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 Lattner3462ae32001-12-03 22:26:30 +0000161 // Constants) that they are, in fact, invalid now and should be deleted.
Chris Lattnerd7a73302001-10-13 06:57:33 +0000162 //
163 while (!use_empty()) {
164 Value *V = use_back();
165#ifndef NDEBUG // Only in -g mode...
Chris Lattner78683a72009-08-23 04:02:03 +0000166 if (!isa<Constant>(V)) {
David Greene1e27a132010-01-05 01:29:19 +0000167 dbgs() << "While deleting: " << *this
Chris Lattner78683a72009-08-23 04:02:03 +0000168 << "\n\nUse still stuck around after Def is destroyed: "
169 << *V << "\n\n";
170 }
Chris Lattnerd7a73302001-10-13 06:57:33 +0000171#endif
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000172 assert(isa<Constant>(V) && "References remain to Constant being destroyed");
Reid Spencer1ebe1ab2004-07-17 23:48:33 +0000173 Constant *CV = cast<Constant>(V);
174 CV->destroyConstant();
Chris Lattnerd7a73302001-10-13 06:57:33 +0000175
176 // The constant should remove itself from our use list...
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000177 assert((use_empty() || use_back() != V) && "Constant not removed!");
Chris Lattnerd7a73302001-10-13 06:57:33 +0000178 }
179
180 // Value has no outstanding references it is safe to delete it now...
181 delete this;
Chris Lattner38569342001-10-01 20:11:19 +0000182}
Chris Lattner2f7c9632001-06-06 20:29:01 +0000183
Chris Lattner23dd1f62006-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 Lattnera91a5632009-10-28 05:14:34 +0000194 if (CE->getOperand(i)->canTrap())
Chris Lattner23dd1f62006-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 Spencer7e80b0b2006-10-26 06:15:43 +0000201 case Instruction::UDiv:
202 case Instruction::SDiv:
203 case Instruction::FDiv:
Reid Spencer7eb55b32006-11-02 01:53:59 +0000204 case Instruction::URem:
205 case Instruction::SRem:
206 case Instruction::FRem:
Chris Lattner23dd1f62006-10-20 00:27:06 +0000207 // Div and rem can trap if the RHS is not known to be non-zero.
Chris Lattnera91a5632009-10-28 05:14:34 +0000208 if (!isa<ConstantInt>(CE->getOperand(1)) ||CE->getOperand(1)->isNullValue())
Chris Lattner23dd1f62006-10-20 00:27:06 +0000209 return true;
210 return false;
211 }
212}
213
Chris Lattner253bc772009-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 Greifc78d7202010-03-25 23:06:16 +0000217 for (const_use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI) {
Chris Lattner253bc772009-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 Lattner4565ef52009-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 Lattner5cd4dd32009-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 Lattner4565ef52009-07-22 00:05:44 +0000242///
243/// FIXME: This really should not be in VMCore.
Chris Lattner5cd4dd32009-07-24 03:27:21 +0000244Constant::PossibleRelocationsTy Constant::getRelocationInfo() const {
245 if (const GlobalValue *GV = dyn_cast<GlobalValue>(this)) {
Chris Lattner4565ef52009-07-22 00:05:44 +0000246 if (GV->hasLocalLinkage() || GV->hasHiddenVisibility())
Chris Lattner5cd4dd32009-07-24 03:27:21 +0000247 return LocalRelocation; // Local to this file/library.
248 return GlobalRelocations; // Global reference.
Anton Korobeynikov7437b592009-03-29 17:13:18 +0000249 }
Chris Lattner4565ef52009-07-22 00:05:44 +0000250
Chris Lattner2cb85b42009-10-28 04:12:16 +0000251 if (const BlockAddress *BA = dyn_cast<BlockAddress>(this))
252 return BA->getFunction()->getRelocationInfo();
253
Chris Lattnera7cfc432010-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 Lattner5cd4dd32009-07-24 03:27:21 +0000272 PossibleRelocationsTy Result = NoRelocation;
Evan Chengf9e003b2007-03-08 00:59:12 +0000273 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Chris Lattnera91a5632009-10-28 05:14:34 +0000274 Result = std::max(Result,
275 cast<Constant>(getOperand(i))->getRelocationInfo());
Chris Lattner4565ef52009-07-22 00:05:44 +0000276
277 return Result;
Evan Chengf9e003b2007-03-08 00:59:12 +0000278}
279
Chris Lattner4565ef52009-07-22 00:05:44 +0000280
Chris Lattner2105d662008-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 Lattnerc5098a22008-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 Lattnerf5edeeb2010-02-01 20:48:08 +0000285void Constant::getVectorElements(SmallVectorImpl<Constant*> &Elts) const {
Duncan Sands19d0b472010-02-16 11:11:14 +0000286 assert(getType()->isVectorTy() && "Not a vector constant!");
Chris Lattner2105d662008-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 Lattner229907c2011-07-18 04:54:35 +0000294 VectorType *VT = cast<VectorType>(getType());
Chris Lattner2105d662008-07-10 00:28:11 +0000295 if (isa<ConstantAggregateZero>(this)) {
296 Elts.assign(VT->getNumElements(),
Owen Anderson5a1acd92009-07-31 20:28:14 +0000297 Constant::getNullValue(VT->getElementType()));
Chris Lattner2105d662008-07-10 00:28:11 +0000298 return;
299 }
300
Chris Lattnerc5098a22008-07-14 05:10:41 +0000301 if (isa<UndefValue>(this)) {
Owen Andersonb292b8c2009-07-30 23:03:37 +0000302 Elts.assign(VT->getNumElements(), UndefValue::get(VT->getElementType()));
Chris Lattnerc5098a22008-07-14 05:10:41 +0000303 return;
304 }
305
306 // Unknown type, must be constant expr etc.
Chris Lattner2105d662008-07-10 00:28:11 +0000307}
308
309
Chris Lattner84886402011-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 Lattner2105d662008-07-10 00:28:11 +0000363
Chris Lattner2f7c9632001-06-06 20:29:01 +0000364//===----------------------------------------------------------------------===//
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000365// ConstantInt
Chris Lattner2f7c9632001-06-06 20:29:01 +0000366//===----------------------------------------------------------------------===//
367
David Blaikiea379b1812011-12-20 02:50:00 +0000368void ConstantInt::anchor() { }
369
Chris Lattner229907c2011-07-18 04:54:35 +0000370ConstantInt::ConstantInt(IntegerType *Ty, const APInt& V)
Chris Lattner5db2f472007-02-20 05:55:46 +0000371 : Constant(Ty, ConstantIntVal, 0, 0), Val(V) {
Reid Spencerb31bffe2007-02-26 23:54:03 +0000372 assert(V.getBitWidth() == Ty->getBitWidth() && "Invalid constant for type");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000373}
374
Nick Lewycky92db8e82011-03-06 03:36:19 +0000375ConstantInt *ConstantInt::getTrue(LLVMContext &Context) {
Owen Anderson23a204d2009-07-31 17:39:07 +0000376 LLVMContextImpl *pImpl = Context.pImpl;
Benjamin Kramerddd1b7b2010-11-20 18:43:35 +0000377 if (!pImpl->TheTrueVal)
378 pImpl->TheTrueVal = ConstantInt::get(Type::getInt1Ty(Context), 1);
379 return pImpl->TheTrueVal;
Owen Anderson23a204d2009-07-31 17:39:07 +0000380}
381
Nick Lewycky92db8e82011-03-06 03:36:19 +0000382ConstantInt *ConstantInt::getFalse(LLVMContext &Context) {
Owen Anderson23a204d2009-07-31 17:39:07 +0000383 LLVMContextImpl *pImpl = Context.pImpl;
Benjamin Kramerddd1b7b2010-11-20 18:43:35 +0000384 if (!pImpl->TheFalseVal)
385 pImpl->TheFalseVal = ConstantInt::get(Type::getInt1Ty(Context), 0);
386 return pImpl->TheFalseVal;
Owen Anderson23a204d2009-07-31 17:39:07 +0000387}
388
Chris Lattner229907c2011-07-18 04:54:35 +0000389Constant *ConstantInt::getTrue(Type *Ty) {
390 VectorType *VTy = dyn_cast<VectorType>(Ty);
Nick Lewycky92db8e82011-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 Lattner229907c2011-07-18 04:54:35 +0000402Constant *ConstantInt::getFalse(Type *Ty) {
403 VectorType *VTy = dyn_cast<VectorType>(Ty);
Nick Lewycky92db8e82011-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 Anderson23a204d2009-07-31 17:39:07 +0000415
Owen Andersonedb4a702009-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 Lewycky92db8e82011-03-06 03:36:19 +0000421ConstantInt *ConstantInt::get(LLVMContext &Context, const APInt &V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000422 // Get the corresponding integer type for the bit width of the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000423 IntegerType *ITy = IntegerType::get(Context, V.getBitWidth());
Owen Andersonedb4a702009-07-24 23:12:02 +0000424 // get an existing value or the insertion position
425 DenseMapAPIntKeyInfo::KeyTy Key(V, ITy);
Owen Andersonedb4a702009-07-24 23:12:02 +0000426 ConstantInt *&Slot = Context.pImpl->IntConstants[Key];
Owen Anderson5dab84c2009-10-19 20:11:52 +0000427 if (!Slot) Slot = new ConstantInt(ITy, V);
428 return Slot;
Owen Andersonedb4a702009-07-24 23:12:02 +0000429}
430
Chris Lattner229907c2011-07-18 04:54:35 +0000431Constant *ConstantInt::get(Type *Ty, uint64_t V, bool isSigned) {
Nick Lewycky92db8e82011-03-06 03:36:19 +0000432 Constant *C = get(cast<IntegerType>(Ty->getScalarType()), V, isSigned);
Owen Andersonedb4a702009-07-24 23:12:02 +0000433
434 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000435 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattner69229312011-02-15 00:14:00 +0000436 return ConstantVector::get(SmallVector<Constant*,
437 16>(VTy->getNumElements(), C));
Owen Andersonedb4a702009-07-24 23:12:02 +0000438
439 return C;
440}
441
Chris Lattner229907c2011-07-18 04:54:35 +0000442ConstantInt* ConstantInt::get(IntegerType* Ty, uint64_t V,
Owen Andersonedb4a702009-07-24 23:12:02 +0000443 bool isSigned) {
444 return get(Ty->getContext(), APInt(Ty->getBitWidth(), V, isSigned));
445}
446
Chris Lattner229907c2011-07-18 04:54:35 +0000447ConstantInt* ConstantInt::getSigned(IntegerType* Ty, int64_t V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000448 return get(Ty, V, true);
449}
450
Chris Lattner229907c2011-07-18 04:54:35 +0000451Constant *ConstantInt::getSigned(Type *Ty, int64_t V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000452 return get(Ty, V, true);
453}
454
Chris Lattner229907c2011-07-18 04:54:35 +0000455Constant *ConstantInt::get(Type* Ty, const APInt& V) {
Owen Andersonedb4a702009-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 Lattner229907c2011-07-18 04:54:35 +0000461 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Owen Anderson4aa32952009-07-28 21:19:26 +0000462 return ConstantVector::get(
Chris Lattner69229312011-02-15 00:14:00 +0000463 SmallVector<Constant *, 16>(VTy->getNumElements(), C));
Owen Andersonedb4a702009-07-24 23:12:02 +0000464
465 return C;
466}
467
Chris Lattner229907c2011-07-18 04:54:35 +0000468ConstantInt* ConstantInt::get(IntegerType* Ty, StringRef Str,
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000469 uint8_t radix) {
470 return get(Ty->getContext(), APInt(Ty->getBitWidth(), Str, radix));
471}
472
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000473//===----------------------------------------------------------------------===//
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000474// ConstantFP
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000475//===----------------------------------------------------------------------===//
476
Chris Lattner229907c2011-07-18 04:54:35 +0000477static const fltSemantics *TypeToFloatSemantics(Type *Ty) {
Dan Gohman518cda42011-12-17 00:04:22 +0000478 if (Ty->isHalfTy())
479 return &APFloat::IEEEhalf;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000480 if (Ty->isFloatTy())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000481 return &APFloat::IEEEsingle;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000482 if (Ty->isDoubleTy())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000483 return &APFloat::IEEEdouble;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000484 if (Ty->isX86_FP80Ty())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000485 return &APFloat::x87DoubleExtended;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000486 else if (Ty->isFP128Ty())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000487 return &APFloat::IEEEquad;
488
Chris Lattnerfdd87902009-10-05 05:54:46 +0000489 assert(Ty->isPPC_FP128Ty() && "Unknown FP format");
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000490 return &APFloat::PPCDoubleDouble;
491}
492
David Blaikiea379b1812011-12-20 02:50:00 +0000493void ConstantFP::anchor() { }
494
Owen Anderson69c464d2009-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 Lattner229907c2011-07-18 04:54:35 +0000498Constant *ConstantFP::get(Type* Ty, double V) {
Owen Anderson69c464d2009-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 Lattner229907c2011-07-18 04:54:35 +0000508 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Owen Anderson4aa32952009-07-28 21:19:26 +0000509 return ConstantVector::get(
Chris Lattner69229312011-02-15 00:14:00 +0000510 SmallVector<Constant *, 16>(VTy->getNumElements(), C));
Owen Anderson69c464d2009-07-27 20:59:43 +0000511
512 return C;
513}
514
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000515
Chris Lattner229907c2011-07-18 04:54:35 +0000516Constant *ConstantFP::get(Type* Ty, StringRef Str) {
Erick Tryzelaarfc2280d2009-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 Lattner229907c2011-07-18 04:54:35 +0000523 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000524 return ConstantVector::get(
Chris Lattner69229312011-02-15 00:14:00 +0000525 SmallVector<Constant *, 16>(VTy->getNumElements(), C));
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000526
527 return C;
528}
529
530
Chris Lattner229907c2011-07-18 04:54:35 +0000531ConstantFP* ConstantFP::getNegativeZero(Type* Ty) {
Owen Anderson69c464d2009-07-27 20:59:43 +0000532 LLVMContext &Context = Ty->getContext();
Owen Anderson5a1acd92009-07-31 20:28:14 +0000533 APFloat apf = cast <ConstantFP>(Constant::getNullValue(Ty))->getValueAPF();
Owen Anderson69c464d2009-07-27 20:59:43 +0000534 apf.changeSign();
535 return get(Context, apf);
536}
537
538
Chris Lattner229907c2011-07-18 04:54:35 +0000539Constant *ConstantFP::getZeroValueForNegation(Type* Ty) {
540 if (VectorType *PTy = dyn_cast<VectorType>(Ty))
Duncan Sands9dff9be2010-02-15 16:12:20 +0000541 if (PTy->getElementType()->isFloatingPointTy()) {
Chris Lattner69229312011-02-15 00:14:00 +0000542 SmallVector<Constant*, 16> zeros(PTy->getNumElements(),
Owen Anderson69c464d2009-07-27 20:59:43 +0000543 getNegativeZero(PTy->getElementType()));
Chris Lattner69229312011-02-15 00:14:00 +0000544 return ConstantVector::get(zeros);
Owen Anderson69c464d2009-07-27 20:59:43 +0000545 }
546
Duncan Sands9dff9be2010-02-15 16:12:20 +0000547 if (Ty->isFloatingPointTy())
Owen Anderson69c464d2009-07-27 20:59:43 +0000548 return getNegativeZero(Ty);
549
Owen Anderson5a1acd92009-07-31 20:28:14 +0000550 return Constant::getNullValue(Ty);
Owen Anderson69c464d2009-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 Anderson69c464d2009-07-27 20:59:43 +0000560 ConstantFP *&Slot = pImpl->FPConstants[Key];
Owen Anderson69c464d2009-07-27 20:59:43 +0000561
562 if (!Slot) {
Chris Lattner229907c2011-07-18 04:54:35 +0000563 Type *Ty;
Dan Gohman518cda42011-12-17 00:04:22 +0000564 if (&V.getSemantics() == &APFloat::IEEEhalf)
565 Ty = Type::getHalfTy(Context);
566 else if (&V.getSemantics() == &APFloat::IEEEsingle)
Owen Anderson5dab84c2009-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 Anderson69c464d2009-07-27 20:59:43 +0000578 }
Owen Anderson5dab84c2009-10-19 20:11:52 +0000579 Slot = new ConstantFP(Ty, V);
Owen Anderson69c464d2009-07-27 20:59:43 +0000580 }
581
582 return Slot;
583}
584
Chris Lattner229907c2011-07-18 04:54:35 +0000585ConstantFP *ConstantFP::getInfinity(Type *Ty, bool Negative) {
Dan Gohmanfeb50212009-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 Lattner229907c2011-07-18 04:54:35 +0000591ConstantFP::ConstantFP(Type *Ty, const APFloat& V)
Dale Johannesend246b2c2007-08-30 00:23:21 +0000592 : Constant(Ty, ConstantFPVal, 0, 0), Val(V) {
Chris Lattner98bd9392008-04-09 06:38:30 +0000593 assert(&V.getSemantics() == TypeToFloatSemantics(Ty) &&
594 "FP type Mismatch");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000595}
596
Chris Lattnerbe6610c2011-07-15 06:14:08 +0000597bool ConstantFP::isExactlyValue(const APFloat &V) const {
Dale Johannesend246b2c2007-08-30 00:23:21 +0000598 return Val.bitwiseIsEqual(V);
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000599}
600
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000601//===----------------------------------------------------------------------===//
Chris Lattner030af792012-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
Chris Lattnerf7eb5432012-01-24 07:54:10 +0000627/// getElementValue - Return a zero of the right value for the specified GEP
628/// index.
629Constant *ConstantAggregateZero::getElementValue(unsigned Idx) {
630 if (isa<SequentialType>(getType()))
631 return getSequentialElement();
632 return getStructElement(Idx);
633}
634
635
Chris Lattner030af792012-01-24 05:42:11 +0000636//===----------------------------------------------------------------------===//
637// UndefValue Implementation
638//===----------------------------------------------------------------------===//
639
640/// getSequentialElement - If this undef has array or vector type, return an
641/// undef with the right element type.
642UndefValue *UndefValue::getSequentialElement() {
643 return UndefValue::get(cast<SequentialType>(getType())->getElementType());
644}
645
646/// getStructElement - If this undef has struct type, return a zero with the
647/// right element type for the specified element.
648UndefValue *UndefValue::getStructElement(unsigned Elt) {
649 return UndefValue::get(cast<StructType>(getType())->getElementType(Elt));
650}
651
652/// getElementValue - Return an undef of the right value for the specified GEP
653/// index if we can, otherwise return null (e.g. if C is a ConstantExpr).
654UndefValue *UndefValue::getElementValue(Constant *C) {
655 if (isa<SequentialType>(getType()))
656 return getSequentialElement();
657 return getStructElement(cast<ConstantInt>(C)->getZExtValue());
658}
659
Chris Lattnerf7eb5432012-01-24 07:54:10 +0000660/// getElementValue - Return an undef of the right value for the specified GEP
661/// index.
662UndefValue *UndefValue::getElementValue(unsigned Idx) {
663 if (isa<SequentialType>(getType()))
664 return getSequentialElement();
665 return getStructElement(Idx);
666}
667
668
Chris Lattner030af792012-01-24 05:42:11 +0000669
670//===----------------------------------------------------------------------===//
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000671// ConstantXXX Classes
672//===----------------------------------------------------------------------===//
673
674
Jay Foad89d9b812011-07-25 10:14:44 +0000675ConstantArray::ConstantArray(ArrayType *T, ArrayRef<Constant *> V)
Gabor Greiff6caff662008-05-10 08:32:32 +0000676 : Constant(T, ConstantArrayVal,
677 OperandTraits<ConstantArray>::op_end(this) - V.size(),
678 V.size()) {
Alkis Evlogimenos0507ffe2004-09-15 02:32:15 +0000679 assert(V.size() == T->getNumElements() &&
680 "Invalid initializer vector for constant array");
Jay Foad89d9b812011-07-25 10:14:44 +0000681 for (unsigned i = 0, e = V.size(); i != e; ++i)
682 assert(V[i]->getType() == T->getElementType() &&
Alkis Evlogimenoscb031d92004-09-10 04:16:59 +0000683 "Initializer for array element doesn't match array element type!");
Jay Foad89d9b812011-07-25 10:14:44 +0000684 std::copy(V.begin(), V.end(), op_begin());
Chris Lattner2f7c9632001-06-06 20:29:01 +0000685}
686
Chris Lattner229907c2011-07-18 04:54:35 +0000687Constant *ConstantArray::get(ArrayType *Ty, ArrayRef<Constant*> V) {
Jeffrey Yasskin8ce67f82009-09-30 21:08:08 +0000688 for (unsigned i = 0, e = V.size(); i != e; ++i) {
689 assert(V[i]->getType() == Ty->getElementType() &&
690 "Wrong type in array element initializer");
691 }
Owen Andersonc2c79322009-07-28 18:32:17 +0000692 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
693 // If this is an all-zero array, return a ConstantAggregateZero object
694 if (!V.empty()) {
695 Constant *C = V[0];
Chris Lattner09660c92009-12-30 20:25:09 +0000696 if (!C->isNullValue())
Owen Andersonc2c79322009-07-28 18:32:17 +0000697 return pImpl->ArrayConstants.getOrCreate(Ty, V);
Chris Lattner09660c92009-12-30 20:25:09 +0000698
Owen Andersonc2c79322009-07-28 18:32:17 +0000699 for (unsigned i = 1, e = V.size(); i != e; ++i)
Chris Lattner09660c92009-12-30 20:25:09 +0000700 if (V[i] != C)
Owen Andersonc2c79322009-07-28 18:32:17 +0000701 return pImpl->ArrayConstants.getOrCreate(Ty, V);
Owen Andersonc2c79322009-07-28 18:32:17 +0000702 }
703
Owen Andersonb292b8c2009-07-30 23:03:37 +0000704 return ConstantAggregateZero::get(Ty);
Owen Andersonc2c79322009-07-28 18:32:17 +0000705}
706
Owen Andersonc2c79322009-07-28 18:32:17 +0000707/// ConstantArray::get(const string&) - Return an array that is initialized to
708/// contain the specified string. If length is zero then a null terminator is
709/// added to the specified string so that it may be used in a natural way.
710/// Otherwise, the length parameter specifies how much of the string to use
711/// and it won't be null terminated.
712///
Chris Lattnera676c0f2011-02-07 16:40:21 +0000713Constant *ConstantArray::get(LLVMContext &Context, StringRef Str,
Owen Anderson55f1c092009-08-13 21:58:54 +0000714 bool AddNull) {
Owen Andersonc2c79322009-07-28 18:32:17 +0000715 std::vector<Constant*> ElementVals;
Benjamin Kramer3d4af4e2010-08-01 11:43:26 +0000716 ElementVals.reserve(Str.size() + size_t(AddNull));
Owen Andersonc2c79322009-07-28 18:32:17 +0000717 for (unsigned i = 0; i < Str.size(); ++i)
Owen Anderson55f1c092009-08-13 21:58:54 +0000718 ElementVals.push_back(ConstantInt::get(Type::getInt8Ty(Context), Str[i]));
Owen Andersonc2c79322009-07-28 18:32:17 +0000719
720 // Add a null terminator to the string...
Chris Lattner20683932012-01-24 14:04:40 +0000721 if (AddNull)
Owen Anderson55f1c092009-08-13 21:58:54 +0000722 ElementVals.push_back(ConstantInt::get(Type::getInt8Ty(Context), 0));
Owen Andersonc2c79322009-07-28 18:32:17 +0000723
Owen Anderson55f1c092009-08-13 21:58:54 +0000724 ArrayType *ATy = ArrayType::get(Type::getInt8Ty(Context), ElementVals.size());
Owen Andersonc2c79322009-07-28 18:32:17 +0000725 return get(ATy, ElementVals);
726}
727
Chris Lattnercc19efa2011-06-20 04:01:31 +0000728/// getTypeForElements - Return an anonymous struct type to use for a constant
729/// with the specified set of elements. The list must not be empty.
730StructType *ConstantStruct::getTypeForElements(LLVMContext &Context,
731 ArrayRef<Constant*> V,
732 bool Packed) {
Jay Foadb804a2b2011-07-12 14:06:48 +0000733 SmallVector<Type*, 16> EltTypes;
Chris Lattnercc19efa2011-06-20 04:01:31 +0000734 for (unsigned i = 0, e = V.size(); i != e; ++i)
735 EltTypes.push_back(V[i]->getType());
736
737 return StructType::get(Context, EltTypes, Packed);
738}
739
740
741StructType *ConstantStruct::getTypeForElements(ArrayRef<Constant*> V,
742 bool Packed) {
743 assert(!V.empty() &&
744 "ConstantStruct::getTypeForElements cannot be called on empty list");
745 return getTypeForElements(V[0]->getContext(), V, Packed);
746}
747
748
Jay Foad89d9b812011-07-25 10:14:44 +0000749ConstantStruct::ConstantStruct(StructType *T, ArrayRef<Constant *> V)
Gabor Greiff6caff662008-05-10 08:32:32 +0000750 : Constant(T, ConstantStructVal,
751 OperandTraits<ConstantStruct>::op_end(this) - V.size(),
752 V.size()) {
Chris Lattnerc3e74cd2011-08-07 04:18:48 +0000753 assert(V.size() == T->getNumElements() &&
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000754 "Invalid initializer vector for constant structure");
Jay Foad89d9b812011-07-25 10:14:44 +0000755 for (unsigned i = 0, e = V.size(); i != e; ++i)
756 assert((T->isOpaque() || V[i]->getType() == T->getElementType(i)) &&
Chris Lattner93c8f142003-06-02 17:42:47 +0000757 "Initializer for struct element doesn't match struct element type!");
Jay Foad89d9b812011-07-25 10:14:44 +0000758 std::copy(V.begin(), V.end(), op_begin());
Chris Lattner2f7c9632001-06-06 20:29:01 +0000759}
760
Owen Anderson45308b52009-07-27 22:29:26 +0000761// ConstantStruct accessors.
Chris Lattner229907c2011-07-18 04:54:35 +0000762Constant *ConstantStruct::get(StructType *ST, ArrayRef<Constant*> V) {
Chris Lattnercc19efa2011-06-20 04:01:31 +0000763 // Create a ConstantAggregateZero value if all elements are zeros.
Owen Anderson45308b52009-07-27 22:29:26 +0000764 for (unsigned i = 0, e = V.size(); i != e; ++i)
Jay Foad687bd0a2011-06-22 08:55:11 +0000765 if (!V[i]->isNullValue())
766 return ST->getContext().pImpl->StructConstants.getOrCreate(ST, V);
Owen Anderson45308b52009-07-27 22:29:26 +0000767
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000768 assert((ST->isOpaque() || ST->getNumElements() == V.size()) &&
769 "Incorrect # elements specified to ConstantStruct::get");
Chris Lattnercc19efa2011-06-20 04:01:31 +0000770 return ConstantAggregateZero::get(ST);
Owen Anderson45308b52009-07-27 22:29:26 +0000771}
772
Chris Lattnerc3e74cd2011-08-07 04:18:48 +0000773Constant *ConstantStruct::get(StructType *T, ...) {
Talin3a0a30d2011-02-28 23:53:27 +0000774 va_list ap;
Chris Lattnercc19efa2011-06-20 04:01:31 +0000775 SmallVector<Constant*, 8> Values;
776 va_start(ap, T);
777 while (Constant *Val = va_arg(ap, llvm::Constant*))
Talin3a0a30d2011-02-28 23:53:27 +0000778 Values.push_back(Val);
Talinde422be2011-03-01 18:00:49 +0000779 va_end(ap);
Chris Lattnercc19efa2011-06-20 04:01:31 +0000780 return get(T, Values);
Talin3a0a30d2011-02-28 23:53:27 +0000781}
782
Jay Foad89d9b812011-07-25 10:14:44 +0000783ConstantVector::ConstantVector(VectorType *T, ArrayRef<Constant *> V)
Gabor Greiff6caff662008-05-10 08:32:32 +0000784 : Constant(T, ConstantVectorVal,
785 OperandTraits<ConstantVector>::op_end(this) - V.size(),
786 V.size()) {
Jay Foad89d9b812011-07-25 10:14:44 +0000787 for (size_t i = 0, e = V.size(); i != e; i++)
788 assert(V[i]->getType() == T->getElementType() &&
Dan Gohman30978072007-05-24 14:36:04 +0000789 "Initializer for vector element doesn't match vector element type!");
Jay Foad89d9b812011-07-25 10:14:44 +0000790 std::copy(V.begin(), V.end(), op_begin());
Brian Gaeke02209042004-08-20 06:00:58 +0000791}
792
Owen Anderson4aa32952009-07-28 21:19:26 +0000793// ConstantVector accessors.
Jay Foadb8a8bed32011-06-22 09:10:19 +0000794Constant *ConstantVector::get(ArrayRef<Constant*> V) {
Jay Foad9f32cfd2011-01-27 14:44:55 +0000795 assert(!V.empty() && "Vectors can't be empty");
Chris Lattner229907c2011-07-18 04:54:35 +0000796 VectorType *T = VectorType::get(V.front()->getType(), V.size());
Chris Lattner69229312011-02-15 00:14:00 +0000797 LLVMContextImpl *pImpl = T->getContext().pImpl;
Jay Foad9f32cfd2011-01-27 14:44:55 +0000798
Chris Lattner69229312011-02-15 00:14:00 +0000799 // If this is an all-undef or all-zero vector, return a
Owen Anderson4aa32952009-07-28 21:19:26 +0000800 // ConstantAggregateZero or UndefValue.
801 Constant *C = V[0];
802 bool isZero = C->isNullValue();
803 bool isUndef = isa<UndefValue>(C);
804
805 if (isZero || isUndef) {
806 for (unsigned i = 1, e = V.size(); i != e; ++i)
807 if (V[i] != C) {
808 isZero = isUndef = false;
809 break;
810 }
811 }
812
813 if (isZero)
Owen Andersonb292b8c2009-07-30 23:03:37 +0000814 return ConstantAggregateZero::get(T);
Owen Anderson4aa32952009-07-28 21:19:26 +0000815 if (isUndef)
Owen Andersonb292b8c2009-07-30 23:03:37 +0000816 return UndefValue::get(T);
Owen Anderson4aa32952009-07-28 21:19:26 +0000817
Owen Anderson4aa32952009-07-28 21:19:26 +0000818 return pImpl->VectorConstants.getOrCreate(T, V);
819}
820
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000821// Utility function for determining if a ConstantExpr is a CastOp or not. This
822// can't be inline because we don't want to #include Instruction.h into
823// Constant.h
824bool ConstantExpr::isCast() const {
825 return Instruction::isCast(getOpcode());
826}
827
Reid Spenceree3c9912006-12-04 05:19:50 +0000828bool ConstantExpr::isCompare() const {
Nick Lewyckya21d3da2009-07-08 03:04:38 +0000829 return getOpcode() == Instruction::ICmp || getOpcode() == Instruction::FCmp;
Reid Spenceree3c9912006-12-04 05:19:50 +0000830}
831
Dan Gohman7190d482009-09-10 23:37:55 +0000832bool ConstantExpr::isGEPWithNoNotionalOverIndexing() const {
833 if (getOpcode() != Instruction::GetElementPtr) return false;
834
835 gep_type_iterator GEPI = gep_type_begin(this), E = gep_type_end(this);
Oscar Fuentes40b31ad2010-08-02 06:00:15 +0000836 User::const_op_iterator OI = llvm::next(this->op_begin());
Dan Gohman7190d482009-09-10 23:37:55 +0000837
838 // Skip the first index, as it has no static limit.
839 ++GEPI;
840 ++OI;
841
842 // The remaining indices must be compile-time known integers within the
843 // bounds of the corresponding notional static array types.
844 for (; GEPI != E; ++GEPI, ++OI) {
845 ConstantInt *CI = dyn_cast<ConstantInt>(*OI);
846 if (!CI) return false;
Chris Lattner229907c2011-07-18 04:54:35 +0000847 if (ArrayType *ATy = dyn_cast<ArrayType>(*GEPI))
Dan Gohman7190d482009-09-10 23:37:55 +0000848 if (CI->getValue().getActiveBits() > 64 ||
849 CI->getZExtValue() >= ATy->getNumElements())
850 return false;
851 }
852
853 // All the indices checked out.
854 return true;
855}
856
Dan Gohman1ecaf452008-05-31 00:58:22 +0000857bool ConstantExpr::hasIndices() const {
858 return getOpcode() == Instruction::ExtractValue ||
859 getOpcode() == Instruction::InsertValue;
860}
861
Jay Foad0091fe82011-04-13 15:22:40 +0000862ArrayRef<unsigned> ConstantExpr::getIndices() const {
Dan Gohman1ecaf452008-05-31 00:58:22 +0000863 if (const ExtractValueConstantExpr *EVCE =
864 dyn_cast<ExtractValueConstantExpr>(this))
865 return EVCE->Indices;
Dan Gohmana469bdb2008-06-23 16:39:44 +0000866
867 return cast<InsertValueConstantExpr>(this)->Indices;
Dan Gohman1ecaf452008-05-31 00:58:22 +0000868}
869
Reid Spencer10fbf0e2006-12-03 05:48:19 +0000870unsigned ConstantExpr::getPredicate() const {
Chris Lattnerd04e32d2011-07-17 06:01:30 +0000871 assert(isCompare());
Chris Lattneref650092007-10-18 16:26:24 +0000872 return ((const CompareConstantExpr*)this)->predicate;
Reid Spencer10fbf0e2006-12-03 05:48:19 +0000873}
Chris Lattner60e0dd72001-10-03 06:12:09 +0000874
Chris Lattner7c1018a2006-07-14 19:37:40 +0000875/// getWithOperandReplaced - Return a constant expression identical to this
876/// one, but with the specified operand set to the specified value.
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000877Constant *
878ConstantExpr::getWithOperandReplaced(unsigned OpNo, Constant *Op) const {
Chris Lattner7c1018a2006-07-14 19:37:40 +0000879 assert(OpNo < getNumOperands() && "Operand num is out of range!");
880 assert(Op->getType() == getOperand(OpNo)->getType() &&
881 "Replacing operand with value of different type!");
Chris Lattner227816342006-07-14 22:20:01 +0000882 if (getOperand(OpNo) == Op)
883 return const_cast<ConstantExpr*>(this);
Chris Lattner7c1018a2006-07-14 19:37:40 +0000884
Chris Lattner227816342006-07-14 22:20:01 +0000885 Constant *Op0, *Op1, *Op2;
Chris Lattner7c1018a2006-07-14 19:37:40 +0000886 switch (getOpcode()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000887 case Instruction::Trunc:
888 case Instruction::ZExt:
889 case Instruction::SExt:
890 case Instruction::FPTrunc:
891 case Instruction::FPExt:
892 case Instruction::UIToFP:
893 case Instruction::SIToFP:
894 case Instruction::FPToUI:
895 case Instruction::FPToSI:
896 case Instruction::PtrToInt:
897 case Instruction::IntToPtr:
898 case Instruction::BitCast:
899 return ConstantExpr::getCast(getOpcode(), Op, getType());
Chris Lattner227816342006-07-14 22:20:01 +0000900 case Instruction::Select:
901 Op0 = (OpNo == 0) ? Op : getOperand(0);
902 Op1 = (OpNo == 1) ? Op : getOperand(1);
903 Op2 = (OpNo == 2) ? Op : getOperand(2);
904 return ConstantExpr::getSelect(Op0, Op1, Op2);
905 case Instruction::InsertElement:
906 Op0 = (OpNo == 0) ? Op : getOperand(0);
907 Op1 = (OpNo == 1) ? Op : getOperand(1);
908 Op2 = (OpNo == 2) ? Op : getOperand(2);
909 return ConstantExpr::getInsertElement(Op0, Op1, Op2);
910 case Instruction::ExtractElement:
911 Op0 = (OpNo == 0) ? Op : getOperand(0);
912 Op1 = (OpNo == 1) ? Op : getOperand(1);
913 return ConstantExpr::getExtractElement(Op0, Op1);
914 case Instruction::ShuffleVector:
915 Op0 = (OpNo == 0) ? Op : getOperand(0);
916 Op1 = (OpNo == 1) ? Op : getOperand(1);
917 Op2 = (OpNo == 2) ? Op : getOperand(2);
918 return ConstantExpr::getShuffleVector(Op0, Op1, Op2);
Chris Lattner7c1018a2006-07-14 19:37:40 +0000919 case Instruction::GetElementPtr: {
Chris Lattnerb5d70302007-02-19 20:01:23 +0000920 SmallVector<Constant*, 8> Ops;
Dan Gohman12fce772008-05-15 19:50:34 +0000921 Ops.resize(getNumOperands()-1);
Chris Lattner7c1018a2006-07-14 19:37:40 +0000922 for (unsigned i = 1, e = getNumOperands(); i != e; ++i)
Dan Gohman12fce772008-05-15 19:50:34 +0000923 Ops[i-1] = getOperand(i);
Chris Lattner7c1018a2006-07-14 19:37:40 +0000924 if (OpNo == 0)
Jay Foad2f5fc8c2011-07-21 15:15:37 +0000925 return
926 ConstantExpr::getGetElementPtr(Op, Ops,
927 cast<GEPOperator>(this)->isInBounds());
Chris Lattner7c1018a2006-07-14 19:37:40 +0000928 Ops[OpNo-1] = Op;
Jay Foad2f5fc8c2011-07-21 15:15:37 +0000929 return
930 ConstantExpr::getGetElementPtr(getOperand(0), Ops,
931 cast<GEPOperator>(this)->isInBounds());
Chris Lattner7c1018a2006-07-14 19:37:40 +0000932 }
Chris Lattner7c1018a2006-07-14 19:37:40 +0000933 default:
934 assert(getNumOperands() == 2 && "Must be binary operator?");
Chris Lattner227816342006-07-14 22:20:01 +0000935 Op0 = (OpNo == 0) ? Op : getOperand(0);
936 Op1 = (OpNo == 1) ? Op : getOperand(1);
Chris Lattnerb9c86512009-12-29 02:14:09 +0000937 return ConstantExpr::get(getOpcode(), Op0, Op1, SubclassOptionalData);
Chris Lattner227816342006-07-14 22:20:01 +0000938 }
939}
940
941/// getWithOperands - This returns the current constant expression with the
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000942/// operands replaced with the specified values. The specified array must
943/// have the same number of operands as our current one.
Chris Lattner227816342006-07-14 22:20:01 +0000944Constant *ConstantExpr::
Chris Lattner229907c2011-07-18 04:54:35 +0000945getWithOperands(ArrayRef<Constant*> Ops, Type *Ty) const {
Jay Foad5c984e562011-04-13 13:46:01 +0000946 assert(Ops.size() == getNumOperands() && "Operand count mismatch!");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000947 bool AnyChange = Ty != getType();
948 for (unsigned i = 0; i != Ops.size(); ++i)
Chris Lattner227816342006-07-14 22:20:01 +0000949 AnyChange |= Ops[i] != getOperand(i);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000950
Chris Lattner227816342006-07-14 22:20:01 +0000951 if (!AnyChange) // No operands changed, return self.
952 return const_cast<ConstantExpr*>(this);
953
954 switch (getOpcode()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000955 case Instruction::Trunc:
956 case Instruction::ZExt:
957 case Instruction::SExt:
958 case Instruction::FPTrunc:
959 case Instruction::FPExt:
960 case Instruction::UIToFP:
961 case Instruction::SIToFP:
962 case Instruction::FPToUI:
963 case Instruction::FPToSI:
964 case Instruction::PtrToInt:
965 case Instruction::IntToPtr:
966 case Instruction::BitCast:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000967 return ConstantExpr::getCast(getOpcode(), Ops[0], Ty);
Chris Lattner227816342006-07-14 22:20:01 +0000968 case Instruction::Select:
969 return ConstantExpr::getSelect(Ops[0], Ops[1], Ops[2]);
970 case Instruction::InsertElement:
971 return ConstantExpr::getInsertElement(Ops[0], Ops[1], Ops[2]);
972 case Instruction::ExtractElement:
973 return ConstantExpr::getExtractElement(Ops[0], Ops[1]);
974 case Instruction::ShuffleVector:
975 return ConstantExpr::getShuffleVector(Ops[0], Ops[1], Ops[2]);
Chris Lattnerb5d70302007-02-19 20:01:23 +0000976 case Instruction::GetElementPtr:
Jay Foad2f5fc8c2011-07-21 15:15:37 +0000977 return
978 ConstantExpr::getGetElementPtr(Ops[0], Ops.slice(1),
979 cast<GEPOperator>(this)->isInBounds());
Reid Spencer266e42b2006-12-23 06:05:41 +0000980 case Instruction::ICmp:
981 case Instruction::FCmp:
982 return ConstantExpr::getCompare(getPredicate(), Ops[0], Ops[1]);
Chris Lattner227816342006-07-14 22:20:01 +0000983 default:
984 assert(getNumOperands() == 2 && "Must be binary operator?");
Chris Lattnerb9c86512009-12-29 02:14:09 +0000985 return ConstantExpr::get(getOpcode(), Ops[0], Ops[1], SubclassOptionalData);
Chris Lattner7c1018a2006-07-14 19:37:40 +0000986 }
987}
988
Chris Lattner2f7c9632001-06-06 20:29:01 +0000989
990//===----------------------------------------------------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +0000991// isValueValidForType implementations
992
Chris Lattner229907c2011-07-18 04:54:35 +0000993bool ConstantInt::isValueValidForType(Type *Ty, uint64_t Val) {
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000994 unsigned NumBits = cast<IntegerType>(Ty)->getBitWidth(); // assert okay
Owen Anderson55f1c092009-08-13 21:58:54 +0000995 if (Ty == Type::getInt1Ty(Ty->getContext()))
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000996 return Val == 0 || Val == 1;
Reid Spencerd7a00d72007-02-05 23:47:56 +0000997 if (NumBits >= 64)
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000998 return true; // always true, has to fit in largest type
999 uint64_t Max = (1ll << NumBits) - 1;
1000 return Val <= Max;
Reid Spencere7334722006-12-19 01:28:19 +00001001}
1002
Chris Lattner229907c2011-07-18 04:54:35 +00001003bool ConstantInt::isValueValidForType(Type *Ty, int64_t Val) {
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001004 unsigned NumBits = cast<IntegerType>(Ty)->getBitWidth(); // assert okay
Owen Anderson55f1c092009-08-13 21:58:54 +00001005 if (Ty == Type::getInt1Ty(Ty->getContext()))
Reid Spencera94d3942007-01-19 21:13:56 +00001006 return Val == 0 || Val == 1 || Val == -1;
Reid Spencerd7a00d72007-02-05 23:47:56 +00001007 if (NumBits >= 64)
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001008 return true; // always true, has to fit in largest type
1009 int64_t Min = -(1ll << (NumBits-1));
1010 int64_t Max = (1ll << (NumBits-1)) - 1;
1011 return (Val >= Min && Val <= Max);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001012}
1013
Chris Lattner229907c2011-07-18 04:54:35 +00001014bool ConstantFP::isValueValidForType(Type *Ty, const APFloat& Val) {
Dale Johannesend246b2c2007-08-30 00:23:21 +00001015 // convert modifies in place, so make a copy.
1016 APFloat Val2 = APFloat(Val);
Dale Johannesen4f0bd682008-10-09 23:00:39 +00001017 bool losesInfo;
Chris Lattner6b727592004-06-17 18:19:28 +00001018 switch (Ty->getTypeID()) {
Chris Lattner2f7c9632001-06-06 20:29:01 +00001019 default:
1020 return false; // These can't be represented as floating point!
1021
Dale Johannesend246b2c2007-08-30 00:23:21 +00001022 // FIXME rounding mode needs to be more flexible
Dan Gohman518cda42011-12-17 00:04:22 +00001023 case Type::HalfTyID: {
1024 if (&Val2.getSemantics() == &APFloat::IEEEhalf)
1025 return true;
1026 Val2.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven, &losesInfo);
1027 return !losesInfo;
1028 }
Dale Johannesen4f0bd682008-10-09 23:00:39 +00001029 case Type::FloatTyID: {
1030 if (&Val2.getSemantics() == &APFloat::IEEEsingle)
1031 return true;
1032 Val2.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven, &losesInfo);
1033 return !losesInfo;
1034 }
1035 case Type::DoubleTyID: {
Dan Gohman518cda42011-12-17 00:04:22 +00001036 if (&Val2.getSemantics() == &APFloat::IEEEhalf ||
1037 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen4f0bd682008-10-09 23:00:39 +00001038 &Val2.getSemantics() == &APFloat::IEEEdouble)
1039 return true;
1040 Val2.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, &losesInfo);
1041 return !losesInfo;
1042 }
Dale Johannesenbdad8092007-08-09 22:51:36 +00001043 case Type::X86_FP80TyID:
Dan Gohman518cda42011-12-17 00:04:22 +00001044 return &Val2.getSemantics() == &APFloat::IEEEhalf ||
1045 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen028084e2007-09-12 03:30:33 +00001046 &Val2.getSemantics() == &APFloat::IEEEdouble ||
1047 &Val2.getSemantics() == &APFloat::x87DoubleExtended;
Dale Johannesenbdad8092007-08-09 22:51:36 +00001048 case Type::FP128TyID:
Dan Gohman518cda42011-12-17 00:04:22 +00001049 return &Val2.getSemantics() == &APFloat::IEEEhalf ||
1050 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen028084e2007-09-12 03:30:33 +00001051 &Val2.getSemantics() == &APFloat::IEEEdouble ||
1052 &Val2.getSemantics() == &APFloat::IEEEquad;
Dale Johannesen007aa372007-10-11 18:07:22 +00001053 case Type::PPC_FP128TyID:
Dan Gohman518cda42011-12-17 00:04:22 +00001054 return &Val2.getSemantics() == &APFloat::IEEEhalf ||
1055 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen007aa372007-10-11 18:07:22 +00001056 &Val2.getSemantics() == &APFloat::IEEEdouble ||
1057 &Val2.getSemantics() == &APFloat::PPCDoubleDouble;
Chris Lattner2f7c9632001-06-06 20:29:01 +00001058 }
Chris Lattneraa2372562006-05-24 17:04:05 +00001059}
Chris Lattner9655e542001-07-20 19:16:02 +00001060
Chris Lattner030af792012-01-24 05:42:11 +00001061
Chris Lattner49d855c2001-09-07 16:46:31 +00001062//===----------------------------------------------------------------------===//
Chris Lattner49d855c2001-09-07 16:46:31 +00001063// Factory Function Implementation
1064
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001065ConstantAggregateZero *ConstantAggregateZero::get(Type *Ty) {
Chris Lattner13ee7952010-08-28 04:09:24 +00001066 assert((Ty->isStructTy() || Ty->isArrayTy() || Ty->isVectorTy()) &&
Owen Andersonb292b8c2009-07-30 23:03:37 +00001067 "Cannot create an aggregate zero of non-aggregate type!");
1068
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001069 ConstantAggregateZero *&Entry = Ty->getContext().pImpl->CAZConstants[Ty];
1070 if (Entry == 0)
1071 Entry = new ConstantAggregateZero(Ty);
1072
1073 return Entry;
Owen Andersonb292b8c2009-07-30 23:03:37 +00001074}
1075
Chris Lattner030af792012-01-24 05:42:11 +00001076/// destroyConstant - Remove the constant from the constant table.
Dan Gohman92b551b2009-03-03 02:55:14 +00001077///
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001078void ConstantAggregateZero::destroyConstant() {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001079 getContext().pImpl->CAZConstants.erase(getType());
Chris Lattner9fba3da2004-02-15 05:53:04 +00001080 destroyConstantImpl();
1081}
1082
Dan Gohman92b551b2009-03-03 02:55:14 +00001083/// destroyConstant - Remove the constant from the constant table...
1084///
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001085void ConstantArray::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001086 getType()->getContext().pImpl->ArrayConstants.remove(this);
Chris Lattner98fa07b2003-05-23 20:03:32 +00001087 destroyConstantImpl();
1088}
1089
Reid Spencer2546b762007-01-26 07:37:34 +00001090/// isString - This method returns true if the array is an array of i8, and
1091/// if the elements of the array are all ConstantInt's.
Chris Lattnere8dfcca2004-01-14 17:06:38 +00001092bool ConstantArray::isString() const {
Reid Spencer2546b762007-01-26 07:37:34 +00001093 // Check the element type for i8...
Duncan Sands9dff9be2010-02-15 16:12:20 +00001094 if (!getType()->getElementType()->isIntegerTy(8))
Chris Lattnere8dfcca2004-01-14 17:06:38 +00001095 return false;
1096 // Check the elements to make sure they are all integers, not constant
1097 // expressions.
1098 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
1099 if (!isa<ConstantInt>(getOperand(i)))
1100 return false;
1101 return true;
1102}
1103
Evan Cheng3763c5b2006-10-26 19:15:05 +00001104/// isCString - This method returns true if the array is a string (see
Dan Gohman92b551b2009-03-03 02:55:14 +00001105/// isString) and it ends in a null byte \\0 and does not contains any other
Evan Cheng3763c5b2006-10-26 19:15:05 +00001106/// null bytes except its terminator.
Owen Andersone4dcecd2009-07-13 21:27:19 +00001107bool ConstantArray::isCString() const {
Reid Spencer2546b762007-01-26 07:37:34 +00001108 // Check the element type for i8...
Duncan Sands9dff9be2010-02-15 16:12:20 +00001109 if (!getType()->getElementType()->isIntegerTy(8))
Evan Chenge974da62006-10-26 21:48:03 +00001110 return false;
Owen Andersone4dcecd2009-07-13 21:27:19 +00001111
Evan Chenge974da62006-10-26 21:48:03 +00001112 // Last element must be a null.
Owen Andersone4dcecd2009-07-13 21:27:19 +00001113 if (!getOperand(getNumOperands()-1)->isNullValue())
Evan Chenge974da62006-10-26 21:48:03 +00001114 return false;
1115 // Other elements must be non-null integers.
1116 for (unsigned i = 0, e = getNumOperands()-1; i != e; ++i) {
1117 if (!isa<ConstantInt>(getOperand(i)))
Evan Cheng3763c5b2006-10-26 19:15:05 +00001118 return false;
Owen Andersone4dcecd2009-07-13 21:27:19 +00001119 if (getOperand(i)->isNullValue())
Evan Chenge974da62006-10-26 21:48:03 +00001120 return false;
1121 }
Evan Cheng3763c5b2006-10-26 19:15:05 +00001122 return true;
1123}
1124
1125
Jay Foad2a31eb42011-06-28 08:24:19 +00001126/// convertToString - Helper function for getAsString() and getAsCString().
Chris Lattnerd04e32d2011-07-17 06:01:30 +00001127static std::string convertToString(const User *U, unsigned len) {
Jay Foad2a31eb42011-06-28 08:24:19 +00001128 std::string Result;
1129 Result.reserve(len);
1130 for (unsigned i = 0; i != len; ++i)
1131 Result.push_back((char)cast<ConstantInt>(U->getOperand(i))->getZExtValue());
1132 return Result;
1133}
1134
1135/// getAsString - If this array is isString(), then this method converts the
1136/// array to an std::string and returns it. Otherwise, it asserts out.
Dan Gohman92b551b2009-03-03 02:55:14 +00001137///
Chris Lattner81fabb02002-08-26 17:53:56 +00001138std::string ConstantArray::getAsString() const {
Chris Lattnere8dfcca2004-01-14 17:06:38 +00001139 assert(isString() && "Not a string!");
Jay Foad2a31eb42011-06-28 08:24:19 +00001140 return convertToString(this, getNumOperands());
1141}
1142
1143
1144/// getAsCString - If this array is isCString(), then this method converts the
1145/// array (without the trailing null byte) to an std::string and returns it.
1146/// Otherwise, it asserts out.
1147///
1148std::string ConstantArray::getAsCString() const {
1149 assert(isCString() && "Not a string!");
1150 return convertToString(this, getNumOperands() - 1);
Chris Lattner81fabb02002-08-26 17:53:56 +00001151}
1152
1153
Chris Lattner3462ae32001-12-03 22:26:30 +00001154//---- ConstantStruct::get() implementation...
Chris Lattner49d855c2001-09-07 16:46:31 +00001155//
Chris Lattnerb50d1352003-10-05 00:17:43 +00001156
Chris Lattnerd7a73302001-10-13 06:57:33 +00001157// destroyConstant - Remove the constant from the constant table...
Chris Lattner883ad0b2001-10-03 15:39:36 +00001158//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001159void ConstantStruct::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001160 getType()->getContext().pImpl->StructConstants.remove(this);
Chris Lattnerd7a73302001-10-13 06:57:33 +00001161 destroyConstantImpl();
1162}
Chris Lattner883ad0b2001-10-03 15:39:36 +00001163
Brian Gaeke02209042004-08-20 06:00:58 +00001164// destroyConstant - Remove the constant from the constant table...
1165//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001166void ConstantVector::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001167 getType()->getContext().pImpl->VectorConstants.remove(this);
Brian Gaeke02209042004-08-20 06:00:58 +00001168 destroyConstantImpl();
1169}
1170
Dan Gohman07159202007-10-17 17:51:30 +00001171/// getSplatValue - If this is a splat constant, where all of the
1172/// elements have the same value, return that value. Otherwise return null.
Duncan Sandscf0ff032011-02-01 08:39:12 +00001173Constant *ConstantVector::getSplatValue() const {
Dan Gohman07159202007-10-17 17:51:30 +00001174 // Check out first element.
1175 Constant *Elt = getOperand(0);
1176 // Then make sure all remaining elements point to the same value.
1177 for (unsigned I = 1, E = getNumOperands(); I < E; ++I)
Chris Lattnerd04e32d2011-07-17 06:01:30 +00001178 if (getOperand(I) != Elt)
1179 return 0;
Dan Gohman07159202007-10-17 17:51:30 +00001180 return Elt;
1181}
1182
Chris Lattner31b132c2009-10-28 00:01:44 +00001183//---- ConstantPointerNull::get() implementation.
Chris Lattnerd7a73302001-10-13 06:57:33 +00001184//
Chris Lattner98fa07b2003-05-23 20:03:32 +00001185
Chris Lattner229907c2011-07-18 04:54:35 +00001186ConstantPointerNull *ConstantPointerNull::get(PointerType *Ty) {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001187 ConstantPointerNull *&Entry = Ty->getContext().pImpl->CPNConstants[Ty];
1188 if (Entry == 0)
1189 Entry = new ConstantPointerNull(Ty);
1190
1191 return Entry;
Chris Lattner883ad0b2001-10-03 15:39:36 +00001192}
1193
Chris Lattner0c6e0b92002-08-18 00:40:04 +00001194// destroyConstant - Remove the constant from the constant table...
1195//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001196void ConstantPointerNull::destroyConstant() {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001197 getContext().pImpl->CPNConstants.erase(getType());
1198 // Free the constant and any dangling references to it.
Chris Lattner0c6e0b92002-08-18 00:40:04 +00001199 destroyConstantImpl();
1200}
1201
1202
Chris Lattner31b132c2009-10-28 00:01:44 +00001203//---- UndefValue::get() implementation.
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001204//
1205
Chris Lattner229907c2011-07-18 04:54:35 +00001206UndefValue *UndefValue::get(Type *Ty) {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001207 UndefValue *&Entry = Ty->getContext().pImpl->UVConstants[Ty];
1208 if (Entry == 0)
1209 Entry = new UndefValue(Ty);
1210
1211 return Entry;
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001212}
1213
1214// destroyConstant - Remove the constant from the constant table.
1215//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001216void UndefValue::destroyConstant() {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001217 // Free the constant and any dangling references to it.
1218 getContext().pImpl->UVConstants.erase(getType());
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001219 destroyConstantImpl();
1220}
1221
Chris Lattner31b132c2009-10-28 00:01:44 +00001222//---- BlockAddress::get() implementation.
1223//
1224
1225BlockAddress *BlockAddress::get(BasicBlock *BB) {
1226 assert(BB->getParent() != 0 && "Block must have a parent");
1227 return get(BB->getParent(), BB);
1228}
1229
1230BlockAddress *BlockAddress::get(Function *F, BasicBlock *BB) {
1231 BlockAddress *&BA =
1232 F->getContext().pImpl->BlockAddresses[std::make_pair(F, BB)];
1233 if (BA == 0)
1234 BA = new BlockAddress(F, BB);
1235
1236 assert(BA->getFunction() == F && "Basic block moved between functions");
1237 return BA;
1238}
1239
1240BlockAddress::BlockAddress(Function *F, BasicBlock *BB)
1241: Constant(Type::getInt8PtrTy(F->getContext()), Value::BlockAddressVal,
1242 &Op<0>(), 2) {
Chris Lattnerc559a9f2009-11-01 03:03:03 +00001243 setOperand(0, F);
1244 setOperand(1, BB);
Chris Lattneraa99c942009-11-01 01:27:45 +00001245 BB->AdjustBlockAddressRefCount(1);
Chris Lattner31b132c2009-10-28 00:01:44 +00001246}
1247
1248
1249// destroyConstant - Remove the constant from the constant table.
1250//
1251void BlockAddress::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001252 getFunction()->getType()->getContext().pImpl
Chris Lattner31b132c2009-10-28 00:01:44 +00001253 ->BlockAddresses.erase(std::make_pair(getFunction(), getBasicBlock()));
Chris Lattneraa99c942009-11-01 01:27:45 +00001254 getBasicBlock()->AdjustBlockAddressRefCount(-1);
Chris Lattner31b132c2009-10-28 00:01:44 +00001255 destroyConstantImpl();
1256}
1257
1258void BlockAddress::replaceUsesOfWithOnConstant(Value *From, Value *To, Use *U) {
1259 // This could be replacing either the Basic Block or the Function. In either
1260 // case, we have to remove the map entry.
1261 Function *NewF = getFunction();
1262 BasicBlock *NewBB = getBasicBlock();
1263
1264 if (U == &Op<0>())
1265 NewF = cast<Function>(To);
1266 else
1267 NewBB = cast<BasicBlock>(To);
1268
1269 // See if the 'new' entry already exists, if not, just update this in place
1270 // and return early.
1271 BlockAddress *&NewBA =
1272 getContext().pImpl->BlockAddresses[std::make_pair(NewF, NewBB)];
1273 if (NewBA == 0) {
Chris Lattnerc559a9f2009-11-01 03:03:03 +00001274 getBasicBlock()->AdjustBlockAddressRefCount(-1);
1275
Chris Lattner31b132c2009-10-28 00:01:44 +00001276 // Remove the old entry, this can't cause the map to rehash (just a
1277 // tombstone will get added).
1278 getContext().pImpl->BlockAddresses.erase(std::make_pair(getFunction(),
1279 getBasicBlock()));
1280 NewBA = this;
Chris Lattnerc559a9f2009-11-01 03:03:03 +00001281 setOperand(0, NewF);
1282 setOperand(1, NewBB);
1283 getBasicBlock()->AdjustBlockAddressRefCount(1);
Chris Lattner31b132c2009-10-28 00:01:44 +00001284 return;
1285 }
1286
1287 // Otherwise, I do need to replace this with an existing value.
1288 assert(NewBA != this && "I didn't contain From!");
1289
1290 // Everyone using this now uses the replacement.
Chris Lattneraf1783f2011-07-15 06:18:52 +00001291 replaceAllUsesWith(NewBA);
Chris Lattner31b132c2009-10-28 00:01:44 +00001292
1293 destroyConstant();
1294}
1295
1296//---- ConstantExpr::get() implementations.
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001297//
Reid Spencer8d9336d2006-12-31 05:26:44 +00001298
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001299/// This is a utility function to handle folding of casts and lookup of the
Duncan Sands7d6c8ae2008-03-30 19:38:55 +00001300/// cast in the ExprConstants map. It is used by the various get* methods below.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001301static inline Constant *getFoldedCast(
Chris Lattner229907c2011-07-18 04:54:35 +00001302 Instruction::CastOps opc, Constant *C, Type *Ty) {
Chris Lattner815ae2b2003-10-07 22:19:19 +00001303 assert(Ty->isFirstClassType() && "Cannot cast to an aggregate type!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001304 // Fold a few common cases
Chris Lattnerf5edeeb2010-02-01 20:48:08 +00001305 if (Constant *FC = ConstantFoldCastInstruction(opc, C, Ty))
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001306 return FC;
Chris Lattneracdbe712003-04-17 19:24:48 +00001307
Owen Anderson1584a292009-08-04 20:25:11 +00001308 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
1309
Vikram S. Adve4c485332002-07-15 18:19:33 +00001310 // Look up the constant in the table first to ensure uniqueness
Chris Lattner2b383d2e2003-05-13 21:37:02 +00001311 std::vector<Constant*> argVec(1, C);
Reid Spenceree3c9912006-12-04 05:19:50 +00001312 ExprMapKeyType Key(opc, argVec);
Owen Anderson2d7231d2009-06-17 18:40:29 +00001313
Owen Anderson1584a292009-08-04 20:25:11 +00001314 return pImpl->ExprConstants.getOrCreate(Ty, Key);
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001315}
Reid Spencerf37dc652006-12-05 19:14:13 +00001316
Chris Lattner229907c2011-07-18 04:54:35 +00001317Constant *ConstantExpr::getCast(unsigned oc, Constant *C, Type *Ty) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001318 Instruction::CastOps opc = Instruction::CastOps(oc);
1319 assert(Instruction::isCast(opc) && "opcode out of range");
1320 assert(C && Ty && "Null arguments to getCast");
Chris Lattner37bc78a2010-01-26 21:51:43 +00001321 assert(CastInst::castIsValid(opc, C, Ty) && "Invalid constantexpr cast!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001322
1323 switch (opc) {
Chris Lattner37bc78a2010-01-26 21:51:43 +00001324 default:
1325 llvm_unreachable("Invalid cast opcode");
Chris Lattner37bc78a2010-01-26 21:51:43 +00001326 case Instruction::Trunc: return getTrunc(C, Ty);
1327 case Instruction::ZExt: return getZExt(C, Ty);
1328 case Instruction::SExt: return getSExt(C, Ty);
1329 case Instruction::FPTrunc: return getFPTrunc(C, Ty);
1330 case Instruction::FPExt: return getFPExtend(C, Ty);
1331 case Instruction::UIToFP: return getUIToFP(C, Ty);
1332 case Instruction::SIToFP: return getSIToFP(C, Ty);
1333 case Instruction::FPToUI: return getFPToUI(C, Ty);
1334 case Instruction::FPToSI: return getFPToSI(C, Ty);
1335 case Instruction::PtrToInt: return getPtrToInt(C, Ty);
1336 case Instruction::IntToPtr: return getIntToPtr(C, Ty);
1337 case Instruction::BitCast: return getBitCast(C, Ty);
Chris Lattner1ece6f82005-01-01 15:59:57 +00001338 }
Reid Spencerf37dc652006-12-05 19:14:13 +00001339}
1340
Chris Lattner229907c2011-07-18 04:54:35 +00001341Constant *ConstantExpr::getZExtOrBitCast(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001342 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001343 return getBitCast(C, Ty);
1344 return getZExt(C, Ty);
Reid Spencer5c140882006-12-04 20:17:56 +00001345}
1346
Chris Lattner229907c2011-07-18 04:54:35 +00001347Constant *ConstantExpr::getSExtOrBitCast(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001348 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001349 return getBitCast(C, Ty);
1350 return getSExt(C, Ty);
Reid Spencer5c140882006-12-04 20:17:56 +00001351}
1352
Chris Lattner229907c2011-07-18 04:54:35 +00001353Constant *ConstantExpr::getTruncOrBitCast(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001354 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001355 return getBitCast(C, Ty);
1356 return getTrunc(C, Ty);
Reid Spencer5c140882006-12-04 20:17:56 +00001357}
1358
Chris Lattner229907c2011-07-18 04:54:35 +00001359Constant *ConstantExpr::getPointerCast(Constant *S, Type *Ty) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001360 assert(S->getType()->isPointerTy() && "Invalid cast");
1361 assert((Ty->isIntegerTy() || Ty->isPointerTy()) && "Invalid cast");
Reid Spencerbc245a02006-12-05 03:25:26 +00001362
Duncan Sands9dff9be2010-02-15 16:12:20 +00001363 if (Ty->isIntegerTy())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001364 return getPtrToInt(S, Ty);
1365 return getBitCast(S, Ty);
Reid Spencerbc245a02006-12-05 03:25:26 +00001366}
1367
Chris Lattner229907c2011-07-18 04:54:35 +00001368Constant *ConstantExpr::getIntegerCast(Constant *C, Type *Ty,
Reid Spencer56521c42006-12-12 00:51:07 +00001369 bool isSigned) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001370 assert(C->getType()->isIntOrIntVectorTy() &&
1371 Ty->isIntOrIntVectorTy() && "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001372 unsigned SrcBits = C->getType()->getScalarSizeInBits();
1373 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer56521c42006-12-12 00:51:07 +00001374 Instruction::CastOps opcode =
1375 (SrcBits == DstBits ? Instruction::BitCast :
1376 (SrcBits > DstBits ? Instruction::Trunc :
1377 (isSigned ? Instruction::SExt : Instruction::ZExt)));
1378 return getCast(opcode, C, Ty);
1379}
1380
Chris Lattner229907c2011-07-18 04:54:35 +00001381Constant *ConstantExpr::getFPCast(Constant *C, Type *Ty) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001382 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer56521c42006-12-12 00:51:07 +00001383 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001384 unsigned SrcBits = C->getType()->getScalarSizeInBits();
1385 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencerca104e82006-12-12 05:38:50 +00001386 if (SrcBits == DstBits)
1387 return C; // Avoid a useless cast
Reid Spencer56521c42006-12-12 00:51:07 +00001388 Instruction::CastOps opcode =
Jay Foad9f32cfd2011-01-27 14:44:55 +00001389 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt);
Reid Spencer56521c42006-12-12 00:51:07 +00001390 return getCast(opcode, C, Ty);
1391}
1392
Chris Lattner229907c2011-07-18 04:54:35 +00001393Constant *ConstantExpr::getTrunc(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001394#ifndef NDEBUG
1395 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1396 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1397#endif
1398 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001399 assert(C->getType()->isIntOrIntVectorTy() && "Trunc operand must be integer");
1400 assert(Ty->isIntOrIntVectorTy() && "Trunc produces only integral");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001401 assert(C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001402 "SrcTy must be larger than DestTy for Trunc!");
1403
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001404 return getFoldedCast(Instruction::Trunc, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001405}
1406
Chris Lattner229907c2011-07-18 04:54:35 +00001407Constant *ConstantExpr::getSExt(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001408#ifndef NDEBUG
1409 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1410 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1411#endif
1412 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001413 assert(C->getType()->isIntOrIntVectorTy() && "SExt operand must be integral");
1414 assert(Ty->isIntOrIntVectorTy() && "SExt produces only integer");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001415 assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001416 "SrcTy must be smaller than DestTy for SExt!");
1417
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001418 return getFoldedCast(Instruction::SExt, C, Ty);
Chris Lattnerdd284742004-04-04 23:20:30 +00001419}
1420
Chris Lattner229907c2011-07-18 04:54:35 +00001421Constant *ConstantExpr::getZExt(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001422#ifndef NDEBUG
1423 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1424 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1425#endif
1426 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001427 assert(C->getType()->isIntOrIntVectorTy() && "ZEXt operand must be integral");
1428 assert(Ty->isIntOrIntVectorTy() && "ZExt produces only integer");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001429 assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001430 "SrcTy must be smaller than DestTy for ZExt!");
1431
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001432 return getFoldedCast(Instruction::ZExt, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001433}
1434
Chris Lattner229907c2011-07-18 04:54:35 +00001435Constant *ConstantExpr::getFPTrunc(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001436#ifndef NDEBUG
1437 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1438 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1439#endif
1440 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001441 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001442 C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001443 "This is an illegal floating point truncation!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001444 return getFoldedCast(Instruction::FPTrunc, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001445}
1446
Chris Lattner229907c2011-07-18 04:54:35 +00001447Constant *ConstantExpr::getFPExtend(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001448#ifndef NDEBUG
1449 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1450 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1451#endif
1452 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001453 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001454 C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001455 "This is an illegal floating point extension!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001456 return getFoldedCast(Instruction::FPExt, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001457}
1458
Chris Lattner229907c2011-07-18 04:54:35 +00001459Constant *ConstantExpr::getUIToFP(Constant *C, Type *Ty) {
Devang Pateld26344d2008-11-03 23:20:04 +00001460#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001461 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1462 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001463#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001464 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001465 assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00001466 "This is an illegal uint to floating point cast!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001467 return getFoldedCast(Instruction::UIToFP, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001468}
1469
Chris Lattner229907c2011-07-18 04:54:35 +00001470Constant *ConstantExpr::getSIToFP(Constant *C, Type *Ty) {
Devang Pateld26344d2008-11-03 23:20:04 +00001471#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001472 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1473 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001474#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001475 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001476 assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001477 "This is an illegal sint to floating point cast!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001478 return getFoldedCast(Instruction::SIToFP, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001479}
1480
Chris Lattner229907c2011-07-18 04:54:35 +00001481Constant *ConstantExpr::getFPToUI(Constant *C, Type *Ty) {
Devang Pateld26344d2008-11-03 23:20:04 +00001482#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001483 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1484 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001485#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001486 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001487 assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00001488 "This is an illegal floating point to uint cast!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001489 return getFoldedCast(Instruction::FPToUI, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001490}
1491
Chris Lattner229907c2011-07-18 04:54:35 +00001492Constant *ConstantExpr::getFPToSI(Constant *C, Type *Ty) {
Devang Pateld26344d2008-11-03 23:20:04 +00001493#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001494 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1495 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001496#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001497 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001498 assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00001499 "This is an illegal floating point to sint cast!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001500 return getFoldedCast(Instruction::FPToSI, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001501}
1502
Chris Lattner229907c2011-07-18 04:54:35 +00001503Constant *ConstantExpr::getPtrToInt(Constant *C, Type *DstTy) {
Nadav Rotem3924cb02011-12-05 06:29:09 +00001504 assert(C->getType()->getScalarType()->isPointerTy() &&
1505 "PtrToInt source must be pointer or pointer vector");
1506 assert(DstTy->getScalarType()->isIntegerTy() &&
1507 "PtrToInt destination must be integer or integer vector");
1508 assert(C->getType()->getNumElements() == DstTy->getNumElements() &&
1509 "Invalid cast between a different number of vector elements");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001510 return getFoldedCast(Instruction::PtrToInt, C, DstTy);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001511}
1512
Chris Lattner229907c2011-07-18 04:54:35 +00001513Constant *ConstantExpr::getIntToPtr(Constant *C, Type *DstTy) {
Nadav Rotem3924cb02011-12-05 06:29:09 +00001514 assert(C->getType()->getScalarType()->isIntegerTy() &&
1515 "IntToPtr source must be integer or integer vector");
1516 assert(DstTy->getScalarType()->isPointerTy() &&
1517 "IntToPtr destination must be a pointer or pointer vector");
1518 assert(C->getType()->getNumElements() == DstTy->getNumElements() &&
1519 "Invalid cast between a different number of vector elements");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001520 return getFoldedCast(Instruction::IntToPtr, C, DstTy);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001521}
1522
Chris Lattner229907c2011-07-18 04:54:35 +00001523Constant *ConstantExpr::getBitCast(Constant *C, Type *DstTy) {
Chris Lattner37bc78a2010-01-26 21:51:43 +00001524 assert(CastInst::castIsValid(Instruction::BitCast, C, DstTy) &&
1525 "Invalid constantexpr bitcast!");
Chris Lattnercbeda872009-03-21 06:55:54 +00001526
1527 // It is common to ask for a bitcast of a value to its own type, handle this
1528 // speedily.
1529 if (C->getType() == DstTy) return C;
1530
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001531 return getFoldedCast(Instruction::BitCast, C, DstTy);
Chris Lattnerdd284742004-04-04 23:20:30 +00001532}
1533
Chris Lattner887ecac2011-07-09 18:23:52 +00001534Constant *ConstantExpr::get(unsigned Opcode, Constant *C1, Constant *C2,
1535 unsigned Flags) {
1536 // Check the operands for consistency first.
Reid Spencer7eb55b32006-11-02 01:53:59 +00001537 assert(Opcode >= Instruction::BinaryOpsBegin &&
1538 Opcode < Instruction::BinaryOpsEnd &&
Chris Lattner38a9bcd2003-05-21 17:49:25 +00001539 "Invalid opcode in binary constant expression");
1540 assert(C1->getType() == C2->getType() &&
1541 "Operand types in binary constant expression should match");
Owen Anderson61794042009-06-17 20:10:08 +00001542
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001543#ifndef NDEBUG
1544 switch (Opcode) {
Dan Gohmana5b96452009-06-04 22:49:04 +00001545 case Instruction::Add:
Reid Spencer7eb55b32006-11-02 01:53:59 +00001546 case Instruction::Sub:
Dan Gohmana5b96452009-06-04 22:49:04 +00001547 case Instruction::Mul:
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001548 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001549 assert(C1->getType()->isIntOrIntVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001550 "Tried to create an integer operation on a non-integer type!");
1551 break;
1552 case Instruction::FAdd:
1553 case Instruction::FSub:
1554 case Instruction::FMul:
1555 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001556 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001557 "Tried to create a floating-point operation on a "
1558 "non-floating-point type!");
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001559 break;
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001560 case Instruction::UDiv:
1561 case Instruction::SDiv:
1562 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001563 assert(C1->getType()->isIntOrIntVectorTy() &&
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001564 "Tried to create an arithmetic operation on a non-arithmetic type!");
1565 break;
1566 case Instruction::FDiv:
1567 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001568 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001569 "Tried to create an arithmetic operation on a non-arithmetic type!");
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001570 break;
Reid Spencer7eb55b32006-11-02 01:53:59 +00001571 case Instruction::URem:
1572 case Instruction::SRem:
1573 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001574 assert(C1->getType()->isIntOrIntVectorTy() &&
Reid Spencer7eb55b32006-11-02 01:53:59 +00001575 "Tried to create an arithmetic operation on a non-arithmetic type!");
1576 break;
1577 case Instruction::FRem:
1578 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001579 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001580 "Tried to create an arithmetic operation on a non-arithmetic type!");
Reid Spencer7eb55b32006-11-02 01:53:59 +00001581 break;
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001582 case Instruction::And:
1583 case Instruction::Or:
1584 case Instruction::Xor:
1585 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001586 assert(C1->getType()->isIntOrIntVectorTy() &&
Misha Brukman3852f652005-01-27 06:46:38 +00001587 "Tried to create a logical operation on a non-integral type!");
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001588 break;
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001589 case Instruction::Shl:
Reid Spencerfdff9382006-11-08 06:47:33 +00001590 case Instruction::LShr:
1591 case Instruction::AShr:
Reid Spencer2341c222007-02-02 02:16:23 +00001592 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001593 assert(C1->getType()->isIntOrIntVectorTy() &&
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001594 "Tried to create a shift operation on a non-integer type!");
1595 break;
1596 default:
1597 break;
1598 }
1599#endif
1600
Chris Lattner887ecac2011-07-09 18:23:52 +00001601 if (Constant *FC = ConstantFoldBinaryInstruction(Opcode, C1, C2))
1602 return FC; // Fold a few common cases.
1603
1604 std::vector<Constant*> argVec(1, C1);
1605 argVec.push_back(C2);
1606 ExprMapKeyType Key(Opcode, argVec, 0, Flags);
1607
1608 LLVMContextImpl *pImpl = C1->getContext().pImpl;
1609 return pImpl->ExprConstants.getOrCreate(C1->getType(), Key);
Reid Spencera009d0d2006-12-04 21:35:24 +00001610}
1611
Chris Lattner229907c2011-07-18 04:54:35 +00001612Constant *ConstantExpr::getSizeOf(Type* Ty) {
Owen Anderson487375e2009-07-29 18:55:55 +00001613 // sizeof is implemented as: (i64) gep (Ty*)null, 1
1614 // Note that a non-inbounds gep is used, as null isn't within any object.
Owen Anderson55f1c092009-08-13 21:58:54 +00001615 Constant *GEPIdx = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
Owen Anderson487375e2009-07-29 18:55:55 +00001616 Constant *GEP = getGetElementPtr(
Jay Foaded8db7d2011-07-21 14:31:17 +00001617 Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx);
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001618 return getPtrToInt(GEP,
1619 Type::getInt64Ty(Ty->getContext()));
Owen Anderson487375e2009-07-29 18:55:55 +00001620}
1621
Chris Lattner229907c2011-07-18 04:54:35 +00001622Constant *ConstantExpr::getAlignOf(Type* Ty) {
Dan Gohmancf913832010-01-28 02:15:55 +00001623 // alignof is implemented as: (i64) gep ({i1,Ty}*)null, 0, 1
Dan Gohman50c09d02009-08-11 17:57:01 +00001624 // Note that a non-inbounds gep is used, as null isn't within any object.
Chris Lattner229907c2011-07-18 04:54:35 +00001625 Type *AligningTy =
Chris Lattnerf3f545e2011-06-18 22:48:56 +00001626 StructType::get(Type::getInt1Ty(Ty->getContext()), Ty, NULL);
Owen Anderson5a1acd92009-07-31 20:28:14 +00001627 Constant *NullPtr = Constant::getNullValue(AligningTy->getPointerTo());
Dan Gohmana9be7392010-01-28 02:43:22 +00001628 Constant *Zero = ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0);
Owen Anderson55f1c092009-08-13 21:58:54 +00001629 Constant *One = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
Owen Anderson487375e2009-07-29 18:55:55 +00001630 Constant *Indices[2] = { Zero, One };
Jay Foaded8db7d2011-07-21 14:31:17 +00001631 Constant *GEP = getGetElementPtr(NullPtr, Indices);
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001632 return getPtrToInt(GEP,
1633 Type::getInt64Ty(Ty->getContext()));
Owen Anderson487375e2009-07-29 18:55:55 +00001634}
1635
Chris Lattner229907c2011-07-18 04:54:35 +00001636Constant *ConstantExpr::getOffsetOf(StructType* STy, unsigned FieldNo) {
Dan Gohmanede94e62010-02-01 16:37:38 +00001637 return getOffsetOf(STy, ConstantInt::get(Type::getInt32Ty(STy->getContext()),
1638 FieldNo));
1639}
1640
Chris Lattner229907c2011-07-18 04:54:35 +00001641Constant *ConstantExpr::getOffsetOf(Type* Ty, Constant *FieldNo) {
Dan Gohmanff3af7252009-08-16 21:26:11 +00001642 // offsetof is implemented as: (i64) gep (Ty*)null, 0, FieldNo
1643 // Note that a non-inbounds gep is used, as null isn't within any object.
1644 Constant *GEPIdx[] = {
Dan Gohmanede94e62010-02-01 16:37:38 +00001645 ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0),
1646 FieldNo
Dan Gohmanff3af7252009-08-16 21:26:11 +00001647 };
1648 Constant *GEP = getGetElementPtr(
Jay Foaded8db7d2011-07-21 14:31:17 +00001649 Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx);
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001650 return getPtrToInt(GEP,
1651 Type::getInt64Ty(Ty->getContext()));
Dan Gohmanff3af7252009-08-16 21:26:11 +00001652}
Owen Anderson487375e2009-07-29 18:55:55 +00001653
Chris Lattner887ecac2011-07-09 18:23:52 +00001654Constant *ConstantExpr::getCompare(unsigned short Predicate,
1655 Constant *C1, Constant *C2) {
Reid Spencera009d0d2006-12-04 21:35:24 +00001656 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Chris Lattner887ecac2011-07-09 18:23:52 +00001657
1658 switch (Predicate) {
1659 default: llvm_unreachable("Invalid CmpInst predicate");
1660 case CmpInst::FCMP_FALSE: case CmpInst::FCMP_OEQ: case CmpInst::FCMP_OGT:
1661 case CmpInst::FCMP_OGE: case CmpInst::FCMP_OLT: case CmpInst::FCMP_OLE:
1662 case CmpInst::FCMP_ONE: case CmpInst::FCMP_ORD: case CmpInst::FCMP_UNO:
1663 case CmpInst::FCMP_UEQ: case CmpInst::FCMP_UGT: case CmpInst::FCMP_UGE:
1664 case CmpInst::FCMP_ULT: case CmpInst::FCMP_ULE: case CmpInst::FCMP_UNE:
1665 case CmpInst::FCMP_TRUE:
1666 return getFCmp(Predicate, C1, C2);
1667
1668 case CmpInst::ICMP_EQ: case CmpInst::ICMP_NE: case CmpInst::ICMP_UGT:
1669 case CmpInst::ICMP_UGE: case CmpInst::ICMP_ULT: case CmpInst::ICMP_ULE:
1670 case CmpInst::ICMP_SGT: case CmpInst::ICMP_SGE: case CmpInst::ICMP_SLT:
1671 case CmpInst::ICMP_SLE:
1672 return getICmp(Predicate, C1, C2);
1673 }
Chris Lattner29ca2c62004-08-04 18:50:09 +00001674}
1675
Chris Lattner887ecac2011-07-09 18:23:52 +00001676Constant *ConstantExpr::getSelect(Constant *C, Constant *V1, Constant *V2) {
Chris Lattner41632132008-12-29 00:16:12 +00001677 assert(!SelectInst::areInvalidOperands(C, V1, V2)&&"Invalid select operands");
Chris Lattner6e415c02004-03-12 05:54:04 +00001678
Chris Lattner887ecac2011-07-09 18:23:52 +00001679 if (Constant *SC = ConstantFoldSelectInstruction(C, V1, V2))
1680 return SC; // Fold common cases
Chris Lattner6e415c02004-03-12 05:54:04 +00001681
1682 std::vector<Constant*> argVec(3, C);
1683 argVec[1] = V1;
1684 argVec[2] = V2;
Reid Spenceree3c9912006-12-04 05:19:50 +00001685 ExprMapKeyType Key(Instruction::Select, argVec);
Owen Anderson61794042009-06-17 20:10:08 +00001686
Chris Lattner887ecac2011-07-09 18:23:52 +00001687 LLVMContextImpl *pImpl = C->getContext().pImpl;
1688 return pImpl->ExprConstants.getOrCreate(V1->getType(), Key);
Chris Lattner6e415c02004-03-12 05:54:04 +00001689}
1690
Jay Foaded8db7d2011-07-21 14:31:17 +00001691Constant *ConstantExpr::getGetElementPtr(Constant *C, ArrayRef<Value *> Idxs,
1692 bool InBounds) {
1693 if (Constant *FC = ConstantFoldGetElementPtr(C, InBounds, Idxs))
Chris Lattner94c8d292011-02-11 05:34:33 +00001694 return FC; // Fold a few common cases.
Dan Gohman1b849082009-09-07 23:54:19 +00001695
Chris Lattner887ecac2011-07-09 18:23:52 +00001696 // Get the result type of the getelementptr!
Jay Foadd1b78492011-07-25 09:48:08 +00001697 Type *Ty = GetElementPtrInst::getIndexedType(C->getType(), Idxs);
Chris Lattner887ecac2011-07-09 18:23:52 +00001698 assert(Ty && "GEP indices invalid!");
1699 unsigned AS = cast<PointerType>(C->getType())->getAddressSpace();
1700 Type *ReqTy = Ty->getPointerTo(AS);
1701
Duncan Sands19d0b472010-02-16 11:11:14 +00001702 assert(C->getType()->isPointerTy() &&
Dan Gohman1b849082009-09-07 23:54:19 +00001703 "Non-pointer type for constant GetElementPtr expression");
1704 // Look up the constant in the table first to ensure uniqueness
1705 std::vector<Constant*> ArgVec;
Jay Foaded8db7d2011-07-21 14:31:17 +00001706 ArgVec.reserve(1 + Idxs.size());
Dan Gohman1b849082009-09-07 23:54:19 +00001707 ArgVec.push_back(C);
Jay Foaded8db7d2011-07-21 14:31:17 +00001708 for (unsigned i = 0, e = Idxs.size(); i != e; ++i)
Dan Gohman1b849082009-09-07 23:54:19 +00001709 ArgVec.push_back(cast<Constant>(Idxs[i]));
1710 const ExprMapKeyType Key(Instruction::GetElementPtr, ArgVec, 0,
Chris Lattner94c8d292011-02-11 05:34:33 +00001711 InBounds ? GEPOperator::IsInBounds : 0);
Chris Lattner887ecac2011-07-09 18:23:52 +00001712
1713 LLVMContextImpl *pImpl = C->getContext().pImpl;
Dan Gohman1b849082009-09-07 23:54:19 +00001714 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
1715}
1716
Reid Spenceree3c9912006-12-04 05:19:50 +00001717Constant *
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001718ConstantExpr::getICmp(unsigned short pred, Constant *LHS, Constant *RHS) {
Reid Spenceree3c9912006-12-04 05:19:50 +00001719 assert(LHS->getType() == RHS->getType());
1720 assert(pred >= ICmpInst::FIRST_ICMP_PREDICATE &&
1721 pred <= ICmpInst::LAST_ICMP_PREDICATE && "Invalid ICmp Predicate");
1722
Chris Lattnerf5edeeb2010-02-01 20:48:08 +00001723 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
Reid Spenceree3c9912006-12-04 05:19:50 +00001724 return FC; // Fold a few common cases...
1725
1726 // Look up the constant in the table first to ensure uniqueness
1727 std::vector<Constant*> ArgVec;
1728 ArgVec.push_back(LHS);
1729 ArgVec.push_back(RHS);
Reid Spencerb1537492006-12-24 18:42:29 +00001730 // Get the key type with both the opcode and predicate
Reid Spenceree3c9912006-12-04 05:19:50 +00001731 const ExprMapKeyType Key(Instruction::ICmp, ArgVec, pred);
Owen Anderson61794042009-06-17 20:10:08 +00001732
Chris Lattner229907c2011-07-18 04:54:35 +00001733 Type *ResultTy = Type::getInt1Ty(LHS->getContext());
1734 if (VectorType *VT = dyn_cast<VectorType>(LHS->getType()))
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001735 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
1736
Owen Anderson1584a292009-08-04 20:25:11 +00001737 LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl;
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001738 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
Reid Spenceree3c9912006-12-04 05:19:50 +00001739}
1740
1741Constant *
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001742ConstantExpr::getFCmp(unsigned short pred, Constant *LHS, Constant *RHS) {
Reid Spenceree3c9912006-12-04 05:19:50 +00001743 assert(LHS->getType() == RHS->getType());
1744 assert(pred <= FCmpInst::LAST_FCMP_PREDICATE && "Invalid FCmp Predicate");
1745
Chris Lattnerf5edeeb2010-02-01 20:48:08 +00001746 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
Reid Spenceree3c9912006-12-04 05:19:50 +00001747 return FC; // Fold a few common cases...
1748
1749 // Look up the constant in the table first to ensure uniqueness
1750 std::vector<Constant*> ArgVec;
1751 ArgVec.push_back(LHS);
1752 ArgVec.push_back(RHS);
Reid Spencerb1537492006-12-24 18:42:29 +00001753 // Get the key type with both the opcode and predicate
Reid Spenceree3c9912006-12-04 05:19:50 +00001754 const ExprMapKeyType Key(Instruction::FCmp, ArgVec, pred);
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001755
Chris Lattner229907c2011-07-18 04:54:35 +00001756 Type *ResultTy = Type::getInt1Ty(LHS->getContext());
1757 if (VectorType *VT = dyn_cast<VectorType>(LHS->getType()))
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001758 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
1759
Owen Anderson1584a292009-08-04 20:25:11 +00001760 LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl;
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001761 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
Reid Spenceree3c9912006-12-04 05:19:50 +00001762}
1763
Robert Bocchino23004482006-01-10 19:05:34 +00001764Constant *ConstantExpr::getExtractElement(Constant *Val, Constant *Idx) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001765 assert(Val->getType()->isVectorTy() &&
Reid Spencer09575ba2007-02-15 03:39:18 +00001766 "Tried to create extractelement operation on non-vector type!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001767 assert(Idx->getType()->isIntegerTy(32) &&
Reid Spencer2546b762007-01-26 07:37:34 +00001768 "Extractelement index must be i32 type!");
Chris Lattner887ecac2011-07-09 18:23:52 +00001769
1770 if (Constant *FC = ConstantFoldExtractElementInstruction(Val, Idx))
Chris Lattner09660c92009-12-30 20:25:09 +00001771 return FC; // Fold a few common cases.
Chris Lattner887ecac2011-07-09 18:23:52 +00001772
Robert Bocchinoca27f032006-01-17 20:07:22 +00001773 // Look up the constant in the table first to ensure uniqueness
1774 std::vector<Constant*> ArgVec(1, Val);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001775 ArgVec.push_back(Idx);
Chris Lattner887ecac2011-07-09 18:23:52 +00001776 const ExprMapKeyType Key(Instruction::ExtractElement,ArgVec);
Owen Anderson61794042009-06-17 20:10:08 +00001777
Chris Lattner887ecac2011-07-09 18:23:52 +00001778 LLVMContextImpl *pImpl = Val->getContext().pImpl;
1779 Type *ReqTy = cast<VectorType>(Val->getType())->getElementType();
Owen Anderson1584a292009-08-04 20:25:11 +00001780 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001781}
1782
1783Constant *ConstantExpr::getInsertElement(Constant *Val, Constant *Elt,
1784 Constant *Idx) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001785 assert(Val->getType()->isVectorTy() &&
Reid Spencer09575ba2007-02-15 03:39:18 +00001786 "Tried to create insertelement operation on non-vector type!");
Reid Spencerd84d35b2007-02-15 02:26:10 +00001787 assert(Elt->getType() == cast<VectorType>(Val->getType())->getElementType()
Robert Bocchinoca27f032006-01-17 20:07:22 +00001788 && "Insertelement types must match!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001789 assert(Idx->getType()->isIntegerTy(32) &&
Reid Spencer2546b762007-01-26 07:37:34 +00001790 "Insertelement index must be i32 type!");
Robert Bocchinoca27f032006-01-17 20:07:22 +00001791
Chris Lattner887ecac2011-07-09 18:23:52 +00001792 if (Constant *FC = ConstantFoldInsertElementInstruction(Val, Elt, Idx))
1793 return FC; // Fold a few common cases.
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001794 // Look up the constant in the table first to ensure uniqueness
Chris Lattner887ecac2011-07-09 18:23:52 +00001795 std::vector<Constant*> ArgVec(1, Val);
1796 ArgVec.push_back(Elt);
1797 ArgVec.push_back(Idx);
1798 const ExprMapKeyType Key(Instruction::InsertElement,ArgVec);
Owen Anderson61794042009-06-17 20:10:08 +00001799
Chris Lattner887ecac2011-07-09 18:23:52 +00001800 LLVMContextImpl *pImpl = Val->getContext().pImpl;
1801 return pImpl->ExprConstants.getOrCreate(Val->getType(), Key);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001802}
1803
1804Constant *ConstantExpr::getShuffleVector(Constant *V1, Constant *V2,
1805 Constant *Mask) {
1806 assert(ShuffleVectorInst::isValidOperands(V1, V2, Mask) &&
1807 "Invalid shuffle vector constant expr operands!");
Nate Begeman94aa38d2009-02-12 21:28:33 +00001808
Chris Lattner887ecac2011-07-09 18:23:52 +00001809 if (Constant *FC = ConstantFoldShuffleVectorInstruction(V1, V2, Mask))
1810 return FC; // Fold a few common cases.
1811
Nate Begeman94aa38d2009-02-12 21:28:33 +00001812 unsigned NElts = cast<VectorType>(Mask->getType())->getNumElements();
Chris Lattner229907c2011-07-18 04:54:35 +00001813 Type *EltTy = cast<VectorType>(V1->getType())->getElementType();
1814 Type *ShufTy = VectorType::get(EltTy, NElts);
Chris Lattner887ecac2011-07-09 18:23:52 +00001815
1816 // Look up the constant in the table first to ensure uniqueness
1817 std::vector<Constant*> ArgVec(1, V1);
1818 ArgVec.push_back(V2);
1819 ArgVec.push_back(Mask);
1820 const ExprMapKeyType Key(Instruction::ShuffleVector,ArgVec);
1821
1822 LLVMContextImpl *pImpl = ShufTy->getContext().pImpl;
1823 return pImpl->ExprConstants.getOrCreate(ShufTy, Key);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001824}
1825
Chris Lattner887ecac2011-07-09 18:23:52 +00001826Constant *ConstantExpr::getInsertValue(Constant *Agg, Constant *Val,
Jay Foad57aa6362011-07-13 10:26:04 +00001827 ArrayRef<unsigned> Idxs) {
1828 assert(ExtractValueInst::getIndexedType(Agg->getType(),
1829 Idxs) == Val->getType() &&
Dan Gohman12fce772008-05-15 19:50:34 +00001830 "insertvalue indices invalid!");
Dan Gohman0752bff2008-05-23 00:36:11 +00001831 assert(Agg->getType()->isFirstClassType() &&
Chris Lattner6ebfbf52011-07-12 05:26:21 +00001832 "Non-first-class type for constant insertvalue expression");
Jay Foad57aa6362011-07-13 10:26:04 +00001833 Constant *FC = ConstantFoldInsertValueInstruction(Agg, Val, Idxs);
Chris Lattner6ebfbf52011-07-12 05:26:21 +00001834 assert(FC && "insertvalue constant expr couldn't be folded!");
Dan Gohmand5d24f62008-07-21 23:30:30 +00001835 return FC;
Dan Gohman12fce772008-05-15 19:50:34 +00001836}
1837
Chris Lattner887ecac2011-07-09 18:23:52 +00001838Constant *ConstantExpr::getExtractValue(Constant *Agg,
Jay Foad57aa6362011-07-13 10:26:04 +00001839 ArrayRef<unsigned> Idxs) {
Dan Gohman0752bff2008-05-23 00:36:11 +00001840 assert(Agg->getType()->isFirstClassType() &&
Chris Lattner887ecac2011-07-09 18:23:52 +00001841 "Tried to create extractelement operation on non-first-class type!");
Dan Gohman12fce772008-05-15 19:50:34 +00001842
Chris Lattner229907c2011-07-18 04:54:35 +00001843 Type *ReqTy = ExtractValueInst::getIndexedType(Agg->getType(), Idxs);
Chandler Carruth9db56b82011-07-10 09:45:35 +00001844 (void)ReqTy;
Chris Lattner887ecac2011-07-09 18:23:52 +00001845 assert(ReqTy && "extractvalue indices invalid!");
1846
Dan Gohman0752bff2008-05-23 00:36:11 +00001847 assert(Agg->getType()->isFirstClassType() &&
1848 "Non-first-class type for constant extractvalue expression");
Jay Foad57aa6362011-07-13 10:26:04 +00001849 Constant *FC = ConstantFoldExtractValueInstruction(Agg, Idxs);
Dan Gohmand5d24f62008-07-21 23:30:30 +00001850 assert(FC && "ExtractValue constant expr couldn't be folded!");
1851 return FC;
Dan Gohman12fce772008-05-15 19:50:34 +00001852}
1853
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001854Constant *ConstantExpr::getNeg(Constant *C, bool HasNUW, bool HasNSW) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001855 assert(C->getType()->isIntOrIntVectorTy() &&
Owen Anderson487375e2009-07-29 18:55:55 +00001856 "Cannot NEG a nonintegral value!");
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001857 return getSub(ConstantFP::getZeroValueForNegation(C->getType()),
1858 C, HasNUW, HasNSW);
Owen Anderson487375e2009-07-29 18:55:55 +00001859}
1860
Chris Lattnera676c0f2011-02-07 16:40:21 +00001861Constant *ConstantExpr::getFNeg(Constant *C) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001862 assert(C->getType()->isFPOrFPVectorTy() &&
Owen Anderson487375e2009-07-29 18:55:55 +00001863 "Cannot FNEG a non-floating-point value!");
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001864 return getFSub(ConstantFP::getZeroValueForNegation(C->getType()), C);
Owen Anderson487375e2009-07-29 18:55:55 +00001865}
1866
Chris Lattnera676c0f2011-02-07 16:40:21 +00001867Constant *ConstantExpr::getNot(Constant *C) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001868 assert(C->getType()->isIntOrIntVectorTy() &&
Owen Anderson487375e2009-07-29 18:55:55 +00001869 "Cannot NOT a nonintegral value!");
Owen Anderson5a1acd92009-07-31 20:28:14 +00001870 return get(Instruction::Xor, C, Constant::getAllOnesValue(C->getType()));
Owen Anderson487375e2009-07-29 18:55:55 +00001871}
1872
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001873Constant *ConstantExpr::getAdd(Constant *C1, Constant *C2,
1874 bool HasNUW, bool HasNSW) {
1875 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
1876 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
1877 return get(Instruction::Add, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00001878}
1879
Chris Lattnera676c0f2011-02-07 16:40:21 +00001880Constant *ConstantExpr::getFAdd(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001881 return get(Instruction::FAdd, C1, C2);
1882}
1883
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001884Constant *ConstantExpr::getSub(Constant *C1, Constant *C2,
1885 bool HasNUW, bool HasNSW) {
1886 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
1887 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
1888 return get(Instruction::Sub, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00001889}
1890
Chris Lattnera676c0f2011-02-07 16:40:21 +00001891Constant *ConstantExpr::getFSub(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001892 return get(Instruction::FSub, C1, C2);
1893}
1894
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001895Constant *ConstantExpr::getMul(Constant *C1, Constant *C2,
1896 bool HasNUW, bool HasNSW) {
1897 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
1898 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
1899 return get(Instruction::Mul, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00001900}
1901
Chris Lattnera676c0f2011-02-07 16:40:21 +00001902Constant *ConstantExpr::getFMul(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001903 return get(Instruction::FMul, C1, C2);
1904}
1905
Chris Lattner0d75eac2011-02-09 16:43:07 +00001906Constant *ConstantExpr::getUDiv(Constant *C1, Constant *C2, bool isExact) {
1907 return get(Instruction::UDiv, C1, C2,
1908 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00001909}
1910
Chris Lattner0d75eac2011-02-09 16:43:07 +00001911Constant *ConstantExpr::getSDiv(Constant *C1, Constant *C2, bool isExact) {
1912 return get(Instruction::SDiv, C1, C2,
1913 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00001914}
1915
Chris Lattnera676c0f2011-02-07 16:40:21 +00001916Constant *ConstantExpr::getFDiv(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001917 return get(Instruction::FDiv, C1, C2);
1918}
1919
Chris Lattnera676c0f2011-02-07 16:40:21 +00001920Constant *ConstantExpr::getURem(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001921 return get(Instruction::URem, C1, C2);
1922}
1923
Chris Lattnera676c0f2011-02-07 16:40:21 +00001924Constant *ConstantExpr::getSRem(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001925 return get(Instruction::SRem, C1, C2);
1926}
1927
Chris Lattnera676c0f2011-02-07 16:40:21 +00001928Constant *ConstantExpr::getFRem(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001929 return get(Instruction::FRem, C1, C2);
1930}
1931
Chris Lattnera676c0f2011-02-07 16:40:21 +00001932Constant *ConstantExpr::getAnd(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001933 return get(Instruction::And, C1, C2);
1934}
1935
Chris Lattnera676c0f2011-02-07 16:40:21 +00001936Constant *ConstantExpr::getOr(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001937 return get(Instruction::Or, C1, C2);
1938}
1939
Chris Lattnera676c0f2011-02-07 16:40:21 +00001940Constant *ConstantExpr::getXor(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001941 return get(Instruction::Xor, C1, C2);
1942}
1943
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001944Constant *ConstantExpr::getShl(Constant *C1, Constant *C2,
1945 bool HasNUW, bool HasNSW) {
1946 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
1947 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
1948 return get(Instruction::Shl, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00001949}
1950
Chris Lattner0d75eac2011-02-09 16:43:07 +00001951Constant *ConstantExpr::getLShr(Constant *C1, Constant *C2, bool isExact) {
1952 return get(Instruction::LShr, C1, C2,
1953 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00001954}
1955
Chris Lattner0d75eac2011-02-09 16:43:07 +00001956Constant *ConstantExpr::getAShr(Constant *C1, Constant *C2, bool isExact) {
1957 return get(Instruction::AShr, C1, C2,
1958 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00001959}
1960
Vikram S. Adve4c485332002-07-15 18:19:33 +00001961// destroyConstant - Remove the constant from the constant table...
1962//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001963void ConstantExpr::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001964 getType()->getContext().pImpl->ExprConstants.remove(this);
Vikram S. Adve4c485332002-07-15 18:19:33 +00001965 destroyConstantImpl();
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001966}
1967
Chris Lattner3cd8c562002-07-30 18:54:25 +00001968const char *ConstantExpr::getOpcodeName() const {
1969 return Instruction::getOpcodeName(getOpcode());
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001970}
Reid Spencer1ebe1ab2004-07-17 23:48:33 +00001971
Chris Lattnera3b94ba2010-03-30 20:48:48 +00001972
1973
1974GetElementPtrConstantExpr::
1975GetElementPtrConstantExpr(Constant *C, const std::vector<Constant*> &IdxList,
Chris Lattner229907c2011-07-18 04:54:35 +00001976 Type *DestTy)
Chris Lattnera3b94ba2010-03-30 20:48:48 +00001977 : ConstantExpr(DestTy, Instruction::GetElementPtr,
1978 OperandTraits<GetElementPtrConstantExpr>::op_end(this)
1979 - (IdxList.size()+1), IdxList.size()+1) {
1980 OperandList[0] = C;
1981 for (unsigned i = 0, E = IdxList.size(); i != E; ++i)
1982 OperandList[i+1] = IdxList[i];
1983}
1984
Chris Lattner3756b912012-01-23 22:57:10 +00001985//===----------------------------------------------------------------------===//
1986// ConstantData* implementations
1987
1988void ConstantDataArray::anchor() {}
1989void ConstantDataVector::anchor() {}
1990
Chris Lattnere4f3f102012-01-24 04:43:41 +00001991/// getElementType - Return the element type of the array/vector.
1992Type *ConstantDataSequential::getElementType() const {
1993 return getType()->getElementType();
1994}
1995
Chris Lattner5d4497b2012-01-24 09:31:43 +00001996StringRef ConstantDataSequential::getRawDataValues() const {
Chris Lattner00245f42012-01-24 13:41:11 +00001997 return StringRef(DataElements, getNumElements()*getElementByteSize());
Chris Lattner5d4497b2012-01-24 09:31:43 +00001998}
1999
Chris Lattner030af792012-01-24 05:42:11 +00002000/// isElementTypeCompatible - Return true if a ConstantDataSequential can be
2001/// formed with a vector or array of the specified element type.
2002/// ConstantDataArray only works with normal float and int types that are
2003/// stored densely in memory, not with things like i42 or x86_f80.
2004bool ConstantDataSequential::isElementTypeCompatible(const Type *Ty) {
Chris Lattnere4f3f102012-01-24 04:43:41 +00002005 if (Ty->isFloatTy() || Ty->isDoubleTy()) return true;
2006 if (const IntegerType *IT = dyn_cast<IntegerType>(Ty)) {
2007 switch (IT->getBitWidth()) {
2008 case 8:
2009 case 16:
2010 case 32:
2011 case 64:
2012 return true;
2013 default: break;
2014 }
2015 }
2016 return false;
2017}
2018
Chris Lattner00245f42012-01-24 13:41:11 +00002019/// getNumElements - Return the number of elements in the array or vector.
2020unsigned ConstantDataSequential::getNumElements() const {
2021 return getType()->getNumElements();
2022}
2023
2024
Chris Lattnere4f3f102012-01-24 04:43:41 +00002025/// getElementByteSize - Return the size in bytes of the elements in the data.
2026uint64_t ConstantDataSequential::getElementByteSize() const {
2027 return getElementType()->getPrimitiveSizeInBits()/8;
2028}
2029
2030/// getElementPointer - Return the start of the specified element.
2031const char *ConstantDataSequential::getElementPointer(unsigned Elt) const {
Chris Lattner00245f42012-01-24 13:41:11 +00002032 assert(Elt < getNumElements() && "Invalid Elt");
Chris Lattnere4f3f102012-01-24 04:43:41 +00002033 return DataElements+Elt*getElementByteSize();
2034}
2035
2036
Chris Lattner3756b912012-01-23 22:57:10 +00002037/// isAllZeros - return true if the array is empty or all zeros.
2038static bool isAllZeros(StringRef Arr) {
2039 for (StringRef::iterator I = Arr.begin(), E = Arr.end(); I != E; ++I)
2040 if (*I != 0)
2041 return false;
2042 return true;
2043}
Chris Lattner030af792012-01-24 05:42:11 +00002044
Chris Lattner3756b912012-01-23 22:57:10 +00002045/// getImpl - This is the underlying implementation of all of the
2046/// ConstantDataSequential::get methods. They all thunk down to here, providing
2047/// the correct element type. We take the bytes in as an StringRef because
2048/// we *want* an underlying "char*" to avoid TBAA type punning violations.
2049Constant *ConstantDataSequential::getImpl(StringRef Elements, Type *Ty) {
Chris Lattner030af792012-01-24 05:42:11 +00002050 assert(isElementTypeCompatible(cast<SequentialType>(Ty)->getElementType()));
Chris Lattner3756b912012-01-23 22:57:10 +00002051 // If the elements are all zero, return a CAZ, which is more dense.
2052 if (isAllZeros(Elements))
2053 return ConstantAggregateZero::get(Ty);
2054
2055 // Do a lookup to see if we have already formed one of these.
2056 StringMap<ConstantDataSequential*>::MapEntryTy &Slot =
2057 Ty->getContext().pImpl->CDSConstants.GetOrCreateValue(Elements);
2058
2059 // The bucket can point to a linked list of different CDS's that have the same
2060 // body but different types. For example, 0,0,0,1 could be a 4 element array
2061 // of i8, or a 1-element array of i32. They'll both end up in the same
2062 /// StringMap bucket, linked up by their Next pointers. Walk the list.
2063 ConstantDataSequential **Entry = &Slot.getValue();
2064 for (ConstantDataSequential *Node = *Entry; Node != 0;
2065 Entry = &Node->Next, Node = *Entry)
2066 if (Node->getType() == Ty)
2067 return Node;
2068
2069 // Okay, we didn't get a hit. Create a node of the right class, link it in,
2070 // and return it.
2071 if (isa<ArrayType>(Ty))
2072 return *Entry = new ConstantDataArray(Ty, Slot.getKeyData());
2073
2074 assert(isa<VectorType>(Ty));
2075 return *Entry = new ConstantDataVector(Ty, Slot.getKeyData());
2076}
2077
2078void ConstantDataSequential::destroyConstant() {
Chris Lattner3756b912012-01-23 22:57:10 +00002079 // Remove the constant from the StringMap.
2080 StringMap<ConstantDataSequential*> &CDSConstants =
2081 getType()->getContext().pImpl->CDSConstants;
2082
2083 StringMap<ConstantDataSequential*>::iterator Slot =
Chris Lattner5d4497b2012-01-24 09:31:43 +00002084 CDSConstants.find(getRawDataValues());
Chris Lattner3756b912012-01-23 22:57:10 +00002085
2086 assert(Slot != CDSConstants.end() && "CDS not found in uniquing table");
2087
2088 ConstantDataSequential **Entry = &Slot->getValue();
2089
2090 // Remove the entry from the hash table.
2091 if ((*Entry)->Next == 0) {
2092 // If there is only one value in the bucket (common case) it must be this
2093 // entry, and removing the entry should remove the bucket completely.
2094 assert((*Entry) == this && "Hash mismatch in ConstantDataSequential");
2095 getContext().pImpl->CDSConstants.erase(Slot);
2096 } else {
2097 // Otherwise, there are multiple entries linked off the bucket, unlink the
2098 // node we care about but keep the bucket around.
2099 for (ConstantDataSequential *Node = *Entry; ;
2100 Entry = &Node->Next, Node = *Entry) {
2101 assert(Node && "Didn't find entry in its uniquing hash table!");
2102 // If we found our entry, unlink it from the list and we're done.
2103 if (Node == this) {
2104 *Entry = Node->Next;
2105 break;
2106 }
2107 }
2108 }
2109
2110 // If we were part of a list, make sure that we don't delete the list that is
2111 // still owned by the uniquing map.
2112 Next = 0;
2113
2114 // Finally, actually delete it.
2115 destroyConstantImpl();
2116}
2117
2118/// get() constructors - Return a constant with array type with an element
2119/// count and element type matching the ArrayRef passed in. Note that this
2120/// can return a ConstantAggregateZero object.
Chris Lattner20683932012-01-24 14:04:40 +00002121Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint8_t> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002122 Type *Ty = ArrayType::get(Type::getInt8Ty(Context), Elts.size());
2123 return getImpl(StringRef((char*)Elts.data(), Elts.size()*1), Ty);
2124}
Chris Lattner20683932012-01-24 14:04:40 +00002125Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint16_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002126 Type *Ty = ArrayType::get(Type::getInt16Ty(Context), Elts.size());
2127 return getImpl(StringRef((char*)Elts.data(), Elts.size()*2), Ty);
2128}
Chris Lattner20683932012-01-24 14:04:40 +00002129Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint32_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002130 Type *Ty = ArrayType::get(Type::getInt32Ty(Context), Elts.size());
2131 return getImpl(StringRef((char*)Elts.data(), Elts.size()*4), Ty);
2132}
Chris Lattner20683932012-01-24 14:04:40 +00002133Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint64_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002134 Type *Ty = ArrayType::get(Type::getInt64Ty(Context), Elts.size());
2135 return getImpl(StringRef((char*)Elts.data(), Elts.size()*8), Ty);
2136}
Chris Lattner20683932012-01-24 14:04:40 +00002137Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<float> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002138 Type *Ty = ArrayType::get(Type::getFloatTy(Context), Elts.size());
2139 return getImpl(StringRef((char*)Elts.data(), Elts.size()*4), Ty);
2140}
Chris Lattner20683932012-01-24 14:04:40 +00002141Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<double> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002142 Type *Ty = ArrayType::get(Type::getDoubleTy(Context), Elts.size());
2143 return getImpl(StringRef((char*)Elts.data(), Elts.size()*8), Ty);
2144}
2145
Chris Lattner20683932012-01-24 14:04:40 +00002146/// getString - This method constructs a CDS and initializes it with a text
2147/// string. The default behavior (AddNull==true) causes a null terminator to
2148/// be placed at the end of the array (increasing the length of the string by
2149/// one more than the StringRef would normally indicate. Pass AddNull=false
2150/// to disable this behavior.
2151Constant *ConstantDataArray::getString(LLVMContext &Context,
2152 StringRef Str, bool AddNull) {
2153 if (!AddNull)
2154 return get(Context, ArrayRef<uint8_t>((uint8_t*)Str.data(), Str.size()));
2155
2156 SmallVector<uint8_t, 64> ElementVals;
2157 ElementVals.append(Str.begin(), Str.end());
2158 ElementVals.push_back(0);
2159 return get(Context, ElementVals);
2160}
Chris Lattner3756b912012-01-23 22:57:10 +00002161
2162/// get() constructors - Return a constant with vector type with an element
2163/// count and element type matching the ArrayRef passed in. Note that this
2164/// can return a ConstantAggregateZero object.
Chris Lattner20683932012-01-24 14:04:40 +00002165Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint8_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002166 Type *Ty = VectorType::get(Type::getInt8Ty(Context), Elts.size());
2167 return getImpl(StringRef((char*)Elts.data(), Elts.size()*1), Ty);
2168}
Chris Lattner20683932012-01-24 14:04:40 +00002169Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint16_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002170 Type *Ty = VectorType::get(Type::getInt16Ty(Context), Elts.size());
2171 return getImpl(StringRef((char*)Elts.data(), Elts.size()*2), Ty);
2172}
Chris Lattner20683932012-01-24 14:04:40 +00002173Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint32_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002174 Type *Ty = VectorType::get(Type::getInt32Ty(Context), Elts.size());
2175 return getImpl(StringRef((char*)Elts.data(), Elts.size()*4), Ty);
2176}
Chris Lattner20683932012-01-24 14:04:40 +00002177Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint64_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002178 Type *Ty = VectorType::get(Type::getInt64Ty(Context), Elts.size());
2179 return getImpl(StringRef((char*)Elts.data(), Elts.size()*8), Ty);
2180}
Chris Lattner20683932012-01-24 14:04:40 +00002181Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<float> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002182 Type *Ty = VectorType::get(Type::getFloatTy(Context), Elts.size());
2183 return getImpl(StringRef((char*)Elts.data(), Elts.size()*4), Ty);
2184}
Chris Lattner20683932012-01-24 14:04:40 +00002185Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<double> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002186 Type *Ty = VectorType::get(Type::getDoubleTy(Context), Elts.size());
2187 return getImpl(StringRef((char*)Elts.data(), Elts.size()*8), Ty);
2188}
2189
Chris Lattnere4f3f102012-01-24 04:43:41 +00002190/// getElementAsInteger - If this is a sequential container of integers (of
2191/// any size), return the specified element in the low bits of a uint64_t.
2192uint64_t ConstantDataSequential::getElementAsInteger(unsigned Elt) const {
2193 assert(isa<IntegerType>(getElementType()) &&
2194 "Accessor can only be used when element is an integer");
2195 const char *EltPtr = getElementPointer(Elt);
2196
2197 // The data is stored in host byte order, make sure to cast back to the right
2198 // type to load with the right endianness.
2199 switch (cast<IntegerType>(getElementType())->getBitWidth()) {
2200 default: assert(0 && "Invalid bitwidth for CDS");
2201 case 8: return *(uint8_t*)EltPtr;
2202 case 16: return *(uint16_t*)EltPtr;
2203 case 32: return *(uint32_t*)EltPtr;
2204 case 64: return *(uint64_t*)EltPtr;
2205 }
2206}
2207
2208/// getElementAsAPFloat - If this is a sequential container of floating point
2209/// type, return the specified element as an APFloat.
2210APFloat ConstantDataSequential::getElementAsAPFloat(unsigned Elt) const {
2211 const char *EltPtr = getElementPointer(Elt);
2212
2213 switch (getElementType()->getTypeID()) {
2214 default: assert("Accessor can only be used when element is float/double!");
2215 case Type::FloatTyID: return APFloat(*(float*)EltPtr);
2216 case Type::DoubleTyID: return APFloat(*(double*)EltPtr);
2217 }
2218}
2219
2220/// getElementAsFloat - If this is an sequential container of floats, return
2221/// the specified element as a float.
2222float ConstantDataSequential::getElementAsFloat(unsigned Elt) const {
2223 assert(getElementType()->isFloatTy() &&
2224 "Accessor can only be used when element is a 'float'");
2225 return *(float*)getElementPointer(Elt);
2226}
2227
2228/// getElementAsDouble - If this is an sequential container of doubles, return
2229/// the specified element as a float.
2230double ConstantDataSequential::getElementAsDouble(unsigned Elt) const {
2231 assert(getElementType()->isDoubleTy() &&
2232 "Accessor can only be used when element is a 'float'");
2233 return *(double*)getElementPointer(Elt);
2234}
2235
2236/// getElementAsConstant - Return a Constant for a specified index's element.
2237/// Note that this has to compute a new constant to return, so it isn't as
2238/// efficient as getElementAsInteger/Float/Double.
2239Constant *ConstantDataSequential::getElementAsConstant(unsigned Elt) const {
2240 if (getElementType()->isFloatTy() || getElementType()->isDoubleTy())
2241 return ConstantFP::get(getContext(), getElementAsAPFloat(Elt));
2242
2243 return ConstantInt::get(getElementType(), getElementAsInteger(Elt));
2244}
2245
Chris Lattner5dd4d872012-01-24 09:01:07 +00002246/// isString - This method returns true if this is an array of i8.
2247bool ConstantDataSequential::isString() const {
2248 return isa<ArrayType>(getType()) && getElementType()->isIntegerTy(8);
2249}
Chris Lattner3756b912012-01-23 22:57:10 +00002250
Chris Lattner5dd4d872012-01-24 09:01:07 +00002251/// isCString - This method returns true if the array "isString", ends with a
2252/// nul byte, and does not contains any other nul bytes.
2253bool ConstantDataSequential::isCString() const {
2254 if (!isString())
2255 return false;
2256
2257 StringRef Str = getAsString();
2258
2259 // The last value must be nul.
2260 if (Str.back() != 0) return false;
2261
2262 // Other elements must be non-nul.
2263 return Str.drop_back().find(0) == StringRef::npos;
2264}
Chris Lattner3756b912012-01-23 22:57:10 +00002265
Chris Lattnera3b94ba2010-03-30 20:48:48 +00002266
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002267//===----------------------------------------------------------------------===//
2268// replaceUsesOfWithOnConstant implementations
2269
Chris Lattner913849b2007-08-21 00:55:23 +00002270/// replaceUsesOfWithOnConstant - Update this constant array to change uses of
2271/// 'From' to be uses of 'To'. This must update the uniquing data structures
2272/// etc.
2273///
2274/// Note that we intentionally replace all uses of From with To here. Consider
2275/// a large array that uses 'From' 1000 times. By handling this case all here,
2276/// ConstantArray::replaceUsesOfWithOnConstant is only invoked once, and that
2277/// single invocation handles all 1000 uses. Handling them one at a time would
2278/// work, but would be really slow because it would have to unique each updated
2279/// array instance.
Chris Lattner31b132c2009-10-28 00:01:44 +00002280///
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002281void ConstantArray::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattner7a1450d2005-10-04 18:13:04 +00002282 Use *U) {
Owen Andersonc2c79322009-07-28 18:32:17 +00002283 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2284 Constant *ToC = cast<Constant>(To);
2285
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002286 LLVMContextImpl *pImpl = getType()->getContext().pImpl;
Owen Andersonc2c79322009-07-28 18:32:17 +00002287
Dan Gohmane4532f32009-09-15 15:58:07 +00002288 std::pair<LLVMContextImpl::ArrayConstantsTy::MapKey, ConstantArray*> Lookup;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002289 Lookup.first.first = cast<ArrayType>(getType());
Owen Andersonc2c79322009-07-28 18:32:17 +00002290 Lookup.second = this;
2291
2292 std::vector<Constant*> &Values = Lookup.first.second;
2293 Values.reserve(getNumOperands()); // Build replacement array.
2294
2295 // Fill values with the modified operands of the constant array. Also,
2296 // compute whether this turns into an all-zeros array.
2297 bool isAllZeros = false;
2298 unsigned NumUpdated = 0;
2299 if (!ToC->isNullValue()) {
2300 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2301 Constant *Val = cast<Constant>(O->get());
2302 if (Val == From) {
2303 Val = ToC;
2304 ++NumUpdated;
2305 }
2306 Values.push_back(Val);
2307 }
2308 } else {
2309 isAllZeros = true;
2310 for (Use *O = OperandList, *E = OperandList+getNumOperands();O != E; ++O) {
2311 Constant *Val = cast<Constant>(O->get());
2312 if (Val == From) {
2313 Val = ToC;
2314 ++NumUpdated;
2315 }
2316 Values.push_back(Val);
2317 if (isAllZeros) isAllZeros = Val->isNullValue();
2318 }
2319 }
2320
2321 Constant *Replacement = 0;
2322 if (isAllZeros) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002323 Replacement = ConstantAggregateZero::get(getType());
Owen Andersonc2c79322009-07-28 18:32:17 +00002324 } else {
2325 // Check to see if we have this array type already.
Owen Andersonc2c79322009-07-28 18:32:17 +00002326 bool Exists;
2327 LLVMContextImpl::ArrayConstantsTy::MapTy::iterator I =
2328 pImpl->ArrayConstants.InsertOrGetItem(Lookup, Exists);
2329
2330 if (Exists) {
Devang Patelf7188322009-09-03 01:39:20 +00002331 Replacement = I->second;
Owen Andersonc2c79322009-07-28 18:32:17 +00002332 } else {
2333 // Okay, the new shape doesn't exist in the system yet. Instead of
2334 // creating a new constant array, inserting it, replaceallusesof'ing the
2335 // old with the new, then deleting the old... just update the current one
2336 // in place!
2337 pImpl->ArrayConstants.MoveConstantToNewSlot(this, I);
2338
2339 // Update to the new value. Optimize for the case when we have a single
2340 // operand that we're changing, but handle bulk updates efficiently.
2341 if (NumUpdated == 1) {
2342 unsigned OperandToUpdate = U - OperandList;
2343 assert(getOperand(OperandToUpdate) == From &&
2344 "ReplaceAllUsesWith broken!");
2345 setOperand(OperandToUpdate, ToC);
2346 } else {
2347 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
2348 if (getOperand(i) == From)
2349 setOperand(i, ToC);
2350 }
2351 return;
2352 }
2353 }
Chris Lattnerb64419a2005-10-03 22:51:37 +00002354
2355 // Otherwise, I do need to replace this with an existing value.
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002356 assert(Replacement != this && "I didn't contain From!");
2357
Chris Lattner7a1450d2005-10-04 18:13:04 +00002358 // Everyone using this now uses the replacement.
Chris Lattneraf1783f2011-07-15 06:18:52 +00002359 replaceAllUsesWith(Replacement);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002360
2361 // Delete the old constant!
2362 destroyConstant();
2363}
2364
2365void ConstantStruct::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattner7a1450d2005-10-04 18:13:04 +00002366 Use *U) {
Owen Anderson45308b52009-07-27 22:29:26 +00002367 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2368 Constant *ToC = cast<Constant>(To);
2369
2370 unsigned OperandToUpdate = U-OperandList;
2371 assert(getOperand(OperandToUpdate) == From && "ReplaceAllUsesWith broken!");
2372
Dan Gohmane4532f32009-09-15 15:58:07 +00002373 std::pair<LLVMContextImpl::StructConstantsTy::MapKey, ConstantStruct*> Lookup;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002374 Lookup.first.first = cast<StructType>(getType());
Owen Anderson45308b52009-07-27 22:29:26 +00002375 Lookup.second = this;
2376 std::vector<Constant*> &Values = Lookup.first.second;
2377 Values.reserve(getNumOperands()); // Build replacement struct.
2378
2379
2380 // Fill values with the modified operands of the constant struct. Also,
2381 // compute whether this turns into an all-zeros struct.
2382 bool isAllZeros = false;
2383 if (!ToC->isNullValue()) {
2384 for (Use *O = OperandList, *E = OperandList + getNumOperands(); O != E; ++O)
2385 Values.push_back(cast<Constant>(O->get()));
2386 } else {
2387 isAllZeros = true;
2388 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2389 Constant *Val = cast<Constant>(O->get());
2390 Values.push_back(Val);
2391 if (isAllZeros) isAllZeros = Val->isNullValue();
2392 }
2393 }
2394 Values[OperandToUpdate] = ToC;
2395
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002396 LLVMContextImpl *pImpl = getContext().pImpl;
Owen Anderson45308b52009-07-27 22:29:26 +00002397
2398 Constant *Replacement = 0;
2399 if (isAllZeros) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002400 Replacement = ConstantAggregateZero::get(getType());
Owen Anderson45308b52009-07-27 22:29:26 +00002401 } else {
Chris Lattner718da702010-07-17 06:13:52 +00002402 // Check to see if we have this struct type already.
Owen Anderson45308b52009-07-27 22:29:26 +00002403 bool Exists;
2404 LLVMContextImpl::StructConstantsTy::MapTy::iterator I =
2405 pImpl->StructConstants.InsertOrGetItem(Lookup, Exists);
2406
2407 if (Exists) {
Devang Patelf7188322009-09-03 01:39:20 +00002408 Replacement = I->second;
Owen Anderson45308b52009-07-27 22:29:26 +00002409 } else {
2410 // Okay, the new shape doesn't exist in the system yet. Instead of
2411 // creating a new constant struct, inserting it, replaceallusesof'ing the
2412 // old with the new, then deleting the old... just update the current one
2413 // in place!
2414 pImpl->StructConstants.MoveConstantToNewSlot(this, I);
2415
2416 // Update to the new value.
2417 setOperand(OperandToUpdate, ToC);
2418 return;
2419 }
2420 }
2421
2422 assert(Replacement != this && "I didn't contain From!");
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002423
Chris Lattner7a1450d2005-10-04 18:13:04 +00002424 // Everyone using this now uses the replacement.
Chris Lattneraf1783f2011-07-15 06:18:52 +00002425 replaceAllUsesWith(Replacement);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002426
2427 // Delete the old constant!
2428 destroyConstant();
2429}
2430
Reid Spencerd84d35b2007-02-15 02:26:10 +00002431void ConstantVector::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattner7a1450d2005-10-04 18:13:04 +00002432 Use *U) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002433 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2434
2435 std::vector<Constant*> Values;
2436 Values.reserve(getNumOperands()); // Build replacement array...
2437 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
2438 Constant *Val = getOperand(i);
2439 if (Val == From) Val = cast<Constant>(To);
2440 Values.push_back(Val);
2441 }
2442
Jay Foadb8a8bed32011-06-22 09:10:19 +00002443 Constant *Replacement = get(Values);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002444 assert(Replacement != this && "I didn't contain From!");
2445
Chris Lattner7a1450d2005-10-04 18:13:04 +00002446 // Everyone using this now uses the replacement.
Chris Lattneraf1783f2011-07-15 06:18:52 +00002447 replaceAllUsesWith(Replacement);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002448
2449 // Delete the old constant!
2450 destroyConstant();
2451}
2452
2453void ConstantExpr::replaceUsesOfWithOnConstant(Value *From, Value *ToV,
Chris Lattner7a1450d2005-10-04 18:13:04 +00002454 Use *U) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002455 assert(isa<Constant>(ToV) && "Cannot make Constant refer to non-constant!");
2456 Constant *To = cast<Constant>(ToV);
2457
2458 Constant *Replacement = 0;
2459 if (getOpcode() == Instruction::GetElementPtr) {
Chris Lattnerb5d70302007-02-19 20:01:23 +00002460 SmallVector<Constant*, 8> Indices;
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002461 Constant *Pointer = getOperand(0);
2462 Indices.reserve(getNumOperands()-1);
2463 if (Pointer == From) Pointer = To;
2464
2465 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
2466 Constant *Val = getOperand(i);
2467 if (Val == From) Val = To;
2468 Indices.push_back(Val);
2469 }
Jay Foaded8db7d2011-07-21 14:31:17 +00002470 Replacement = ConstantExpr::getGetElementPtr(Pointer, Indices,
Chris Lattner603af182011-02-11 05:37:21 +00002471 cast<GEPOperator>(this)->isInBounds());
Dan Gohman12fce772008-05-15 19:50:34 +00002472 } else if (getOpcode() == Instruction::ExtractValue) {
Dan Gohman12fce772008-05-15 19:50:34 +00002473 Constant *Agg = getOperand(0);
Dan Gohman12fce772008-05-15 19:50:34 +00002474 if (Agg == From) Agg = To;
2475
Jay Foad0091fe82011-04-13 15:22:40 +00002476 ArrayRef<unsigned> Indices = getIndices();
Jay Foad57aa6362011-07-13 10:26:04 +00002477 Replacement = ConstantExpr::getExtractValue(Agg, Indices);
Dan Gohman12fce772008-05-15 19:50:34 +00002478 } else if (getOpcode() == Instruction::InsertValue) {
Dan Gohman12fce772008-05-15 19:50:34 +00002479 Constant *Agg = getOperand(0);
2480 Constant *Val = getOperand(1);
Dan Gohman12fce772008-05-15 19:50:34 +00002481 if (Agg == From) Agg = To;
2482 if (Val == From) Val = To;
2483
Jay Foad0091fe82011-04-13 15:22:40 +00002484 ArrayRef<unsigned> Indices = getIndices();
Jay Foad57aa6362011-07-13 10:26:04 +00002485 Replacement = ConstantExpr::getInsertValue(Agg, Val, Indices);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002486 } else if (isCast()) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002487 assert(getOperand(0) == From && "Cast only has one use!");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002488 Replacement = ConstantExpr::getCast(getOpcode(), To, getType());
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002489 } else if (getOpcode() == Instruction::Select) {
2490 Constant *C1 = getOperand(0);
2491 Constant *C2 = getOperand(1);
2492 Constant *C3 = getOperand(2);
2493 if (C1 == From) C1 = To;
2494 if (C2 == From) C2 = To;
2495 if (C3 == From) C3 = To;
2496 Replacement = ConstantExpr::getSelect(C1, C2, C3);
Robert Bocchino23004482006-01-10 19:05:34 +00002497 } else if (getOpcode() == Instruction::ExtractElement) {
2498 Constant *C1 = getOperand(0);
2499 Constant *C2 = getOperand(1);
2500 if (C1 == From) C1 = To;
2501 if (C2 == From) C2 = To;
2502 Replacement = ConstantExpr::getExtractElement(C1, C2);
Chris Lattnera93b4b52006-04-08 05:09:48 +00002503 } else if (getOpcode() == Instruction::InsertElement) {
2504 Constant *C1 = getOperand(0);
2505 Constant *C2 = getOperand(1);
2506 Constant *C3 = getOperand(1);
2507 if (C1 == From) C1 = To;
2508 if (C2 == From) C2 = To;
2509 if (C3 == From) C3 = To;
2510 Replacement = ConstantExpr::getInsertElement(C1, C2, C3);
2511 } else if (getOpcode() == Instruction::ShuffleVector) {
2512 Constant *C1 = getOperand(0);
2513 Constant *C2 = getOperand(1);
2514 Constant *C3 = getOperand(2);
2515 if (C1 == From) C1 = To;
2516 if (C2 == From) C2 = To;
2517 if (C3 == From) C3 = To;
2518 Replacement = ConstantExpr::getShuffleVector(C1, C2, C3);
Reid Spenceree3c9912006-12-04 05:19:50 +00002519 } else if (isCompare()) {
2520 Constant *C1 = getOperand(0);
2521 Constant *C2 = getOperand(1);
2522 if (C1 == From) C1 = To;
2523 if (C2 == From) C2 = To;
2524 if (getOpcode() == Instruction::ICmp)
2525 Replacement = ConstantExpr::getICmp(getPredicate(), C1, C2);
Chris Lattnereab49262008-07-14 05:17:31 +00002526 else {
Nick Lewyckya21d3da2009-07-08 03:04:38 +00002527 assert(getOpcode() == Instruction::FCmp);
2528 Replacement = ConstantExpr::getFCmp(getPredicate(), C1, C2);
Chris Lattnereab49262008-07-14 05:17:31 +00002529 }
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002530 } else if (getNumOperands() == 2) {
2531 Constant *C1 = getOperand(0);
2532 Constant *C2 = getOperand(1);
2533 if (C1 == From) C1 = To;
2534 if (C2 == From) C2 = To;
Chris Lattnerb9c86512009-12-29 02:14:09 +00002535 Replacement = ConstantExpr::get(getOpcode(), C1, C2, SubclassOptionalData);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002536 } else {
Torok Edwinfbcc6632009-07-14 16:55:14 +00002537 llvm_unreachable("Unknown ConstantExpr type!");
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002538 }
2539
2540 assert(Replacement != this && "I didn't contain From!");
2541
Chris Lattner7a1450d2005-10-04 18:13:04 +00002542 // Everyone using this now uses the replacement.
Chris Lattneraf1783f2011-07-15 06:18:52 +00002543 replaceAllUsesWith(Replacement);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002544
2545 // Delete the old constant!
2546 destroyConstant();
Matthijs Kooijmanba5d7ef2008-07-03 07:46:41 +00002547}