blob: 681e7269c9bfa27b645e48df510af2d63f278f1e [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
Chris Lattnerac5fb562011-07-15 05:58:04 +000043bool Constant::isNegativeZeroValue() const {
44 // Floating point values have an explicit -0.0 value.
45 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
46 return CFP->isZero() && CFP->isNegative();
47
48 // Otherwise, just use +0.0.
49 return isNullValue();
50}
51
Chris Lattnerbe6610c2011-07-15 06:14:08 +000052bool Constant::isNullValue() const {
53 // 0 is null.
54 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
55 return CI->isZero();
56
57 // +0.0 is null.
58 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
59 return CFP->isZero() && !CFP->isNegative();
60
61 // constant zero is zero for aggregates and cpnull is null for pointers.
62 return isa<ConstantAggregateZero>(this) || isa<ConstantPointerNull>(this);
63}
64
Owen Anderson5a1acd92009-07-31 20:28:14 +000065// Constructor to create a '0' constant of arbitrary type...
Chris Lattner74eb5d72009-10-30 22:33:29 +000066Constant *Constant::getNullValue(const Type *Ty) {
Owen Anderson5a1acd92009-07-31 20:28:14 +000067 switch (Ty->getTypeID()) {
68 case Type::IntegerTyID:
69 return ConstantInt::get(Ty, 0);
70 case Type::FloatTyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +000071 return ConstantFP::get(Ty->getContext(),
72 APFloat::getZero(APFloat::IEEEsingle));
Owen Anderson5a1acd92009-07-31 20:28:14 +000073 case Type::DoubleTyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +000074 return ConstantFP::get(Ty->getContext(),
75 APFloat::getZero(APFloat::IEEEdouble));
Owen Anderson5a1acd92009-07-31 20:28:14 +000076 case Type::X86_FP80TyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +000077 return ConstantFP::get(Ty->getContext(),
78 APFloat::getZero(APFloat::x87DoubleExtended));
Owen Anderson5a1acd92009-07-31 20:28:14 +000079 case Type::FP128TyID:
80 return ConstantFP::get(Ty->getContext(),
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +000081 APFloat::getZero(APFloat::IEEEquad));
Owen Anderson5a1acd92009-07-31 20:28:14 +000082 case Type::PPC_FP128TyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +000083 return ConstantFP::get(Ty->getContext(),
Benjamin Kramer6f88fcb2010-12-04 14:43:08 +000084 APFloat(APInt::getNullValue(128)));
Owen Anderson5a1acd92009-07-31 20:28:14 +000085 case Type::PointerTyID:
86 return ConstantPointerNull::get(cast<PointerType>(Ty));
87 case Type::StructTyID:
88 case Type::ArrayTyID:
89 case Type::VectorTyID:
90 return ConstantAggregateZero::get(Ty);
91 default:
92 // Function, Label, or Opaque type?
93 assert(!"Cannot create a null constant of that type!");
94 return 0;
95 }
96}
97
Chris Lattnera676c0f2011-02-07 16:40:21 +000098Constant *Constant::getIntegerValue(const Type *Ty, const APInt &V) {
Dan Gohmanf011f5a2009-08-03 22:07:33 +000099 const Type *ScalarTy = Ty->getScalarType();
100
101 // Create the base integer constant.
102 Constant *C = ConstantInt::get(Ty->getContext(), V);
103
104 // Convert an integer to a pointer, if necessary.
105 if (const PointerType *PTy = dyn_cast<PointerType>(ScalarTy))
106 C = ConstantExpr::getIntToPtr(C, PTy);
107
108 // Broadcast a scalar to a vector, if necessary.
109 if (const VectorType *VTy = dyn_cast<VectorType>(Ty))
110 C = ConstantVector::get(std::vector<Constant *>(VTy->getNumElements(), C));
111
112 return C;
113}
114
Chris Lattnera676c0f2011-02-07 16:40:21 +0000115Constant *Constant::getAllOnesValue(const Type *Ty) {
Chris Lattner74eb5d72009-10-30 22:33:29 +0000116 if (const IntegerType *ITy = dyn_cast<IntegerType>(Ty))
Owen Anderson5a1acd92009-07-31 20:28:14 +0000117 return ConstantInt::get(Ty->getContext(),
118 APInt::getAllOnesValue(ITy->getBitWidth()));
Nadav Rotem7cc6d122011-02-17 21:22:27 +0000119
120 if (Ty->isFloatingPointTy()) {
121 APFloat FL = APFloat::getAllOnesValue(Ty->getPrimitiveSizeInBits(),
122 !Ty->isPPC_FP128Ty());
123 return ConstantFP::get(Ty->getContext(), FL);
124 }
125
Chris Lattner69229312011-02-15 00:14:00 +0000126 SmallVector<Constant*, 16> Elts;
Chris Lattner74eb5d72009-10-30 22:33:29 +0000127 const VectorType *VTy = cast<VectorType>(Ty);
Owen Anderson5a1acd92009-07-31 20:28:14 +0000128 Elts.resize(VTy->getNumElements(), getAllOnesValue(VTy->getElementType()));
129 assert(Elts[0] && "Not a vector integer type!");
130 return cast<ConstantVector>(ConstantVector::get(Elts));
131}
132
Chris Lattner3462ae32001-12-03 22:26:30 +0000133void Constant::destroyConstantImpl() {
134 // When a Constant is destroyed, there may be lingering
Chris Lattnerd7a73302001-10-13 06:57:33 +0000135 // references to the constant by other constants in the constant pool. These
Misha Brukmanbe372b92003-08-21 22:14:26 +0000136 // constants are implicitly dependent on the module that is being deleted,
Chris Lattnerd7a73302001-10-13 06:57:33 +0000137 // but they don't know that. Because we only find out when the CPV is
138 // deleted, we must now notify all of our users (that should only be
Chris Lattner3462ae32001-12-03 22:26:30 +0000139 // Constants) that they are, in fact, invalid now and should be deleted.
Chris Lattnerd7a73302001-10-13 06:57:33 +0000140 //
141 while (!use_empty()) {
142 Value *V = use_back();
143#ifndef NDEBUG // Only in -g mode...
Chris Lattner78683a72009-08-23 04:02:03 +0000144 if (!isa<Constant>(V)) {
David Greene1e27a132010-01-05 01:29:19 +0000145 dbgs() << "While deleting: " << *this
Chris Lattner78683a72009-08-23 04:02:03 +0000146 << "\n\nUse still stuck around after Def is destroyed: "
147 << *V << "\n\n";
148 }
Chris Lattnerd7a73302001-10-13 06:57:33 +0000149#endif
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000150 assert(isa<Constant>(V) && "References remain to Constant being destroyed");
Reid Spencer1ebe1ab2004-07-17 23:48:33 +0000151 Constant *CV = cast<Constant>(V);
152 CV->destroyConstant();
Chris Lattnerd7a73302001-10-13 06:57:33 +0000153
154 // The constant should remove itself from our use list...
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000155 assert((use_empty() || use_back() != V) && "Constant not removed!");
Chris Lattnerd7a73302001-10-13 06:57:33 +0000156 }
157
158 // Value has no outstanding references it is safe to delete it now...
159 delete this;
Chris Lattner38569342001-10-01 20:11:19 +0000160}
Chris Lattner2f7c9632001-06-06 20:29:01 +0000161
Chris Lattner23dd1f62006-10-20 00:27:06 +0000162/// canTrap - Return true if evaluation of this constant could trap. This is
163/// true for things like constant expressions that could divide by zero.
164bool Constant::canTrap() const {
165 assert(getType()->isFirstClassType() && "Cannot evaluate aggregate vals!");
166 // The only thing that could possibly trap are constant exprs.
167 const ConstantExpr *CE = dyn_cast<ConstantExpr>(this);
168 if (!CE) return false;
169
170 // ConstantExpr traps if any operands can trap.
171 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Chris Lattnera91a5632009-10-28 05:14:34 +0000172 if (CE->getOperand(i)->canTrap())
Chris Lattner23dd1f62006-10-20 00:27:06 +0000173 return true;
174
175 // Otherwise, only specific operations can trap.
176 switch (CE->getOpcode()) {
177 default:
178 return false;
Reid Spencer7e80b0b2006-10-26 06:15:43 +0000179 case Instruction::UDiv:
180 case Instruction::SDiv:
181 case Instruction::FDiv:
Reid Spencer7eb55b32006-11-02 01:53:59 +0000182 case Instruction::URem:
183 case Instruction::SRem:
184 case Instruction::FRem:
Chris Lattner23dd1f62006-10-20 00:27:06 +0000185 // Div and rem can trap if the RHS is not known to be non-zero.
Chris Lattnera91a5632009-10-28 05:14:34 +0000186 if (!isa<ConstantInt>(CE->getOperand(1)) ||CE->getOperand(1)->isNullValue())
Chris Lattner23dd1f62006-10-20 00:27:06 +0000187 return true;
188 return false;
189 }
190}
191
Chris Lattner253bc772009-11-01 18:11:50 +0000192/// isConstantUsed - Return true if the constant has users other than constant
193/// exprs and other dangling things.
194bool Constant::isConstantUsed() const {
Gabor Greifc78d7202010-03-25 23:06:16 +0000195 for (const_use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI) {
Chris Lattner253bc772009-11-01 18:11:50 +0000196 const Constant *UC = dyn_cast<Constant>(*UI);
197 if (UC == 0 || isa<GlobalValue>(UC))
198 return true;
199
200 if (UC->isConstantUsed())
201 return true;
202 }
203 return false;
204}
205
206
Chris Lattner4565ef52009-07-22 00:05:44 +0000207
208/// getRelocationInfo - This method classifies the entry according to
209/// whether or not it may generate a relocation entry. This must be
210/// conservative, so if it might codegen to a relocatable entry, it should say
211/// so. The return values are:
212///
Chris Lattner5cd4dd32009-07-24 03:27:21 +0000213/// NoRelocation: This constant pool entry is guaranteed to never have a
214/// relocation applied to it (because it holds a simple constant like
215/// '4').
216/// LocalRelocation: This entry has relocations, but the entries are
217/// guaranteed to be resolvable by the static linker, so the dynamic
218/// linker will never see them.
219/// GlobalRelocations: This entry may have arbitrary relocations.
Chris Lattner4565ef52009-07-22 00:05:44 +0000220///
221/// FIXME: This really should not be in VMCore.
Chris Lattner5cd4dd32009-07-24 03:27:21 +0000222Constant::PossibleRelocationsTy Constant::getRelocationInfo() const {
223 if (const GlobalValue *GV = dyn_cast<GlobalValue>(this)) {
Chris Lattner4565ef52009-07-22 00:05:44 +0000224 if (GV->hasLocalLinkage() || GV->hasHiddenVisibility())
Chris Lattner5cd4dd32009-07-24 03:27:21 +0000225 return LocalRelocation; // Local to this file/library.
226 return GlobalRelocations; // Global reference.
Anton Korobeynikov7437b592009-03-29 17:13:18 +0000227 }
Chris Lattner4565ef52009-07-22 00:05:44 +0000228
Chris Lattner2cb85b42009-10-28 04:12:16 +0000229 if (const BlockAddress *BA = dyn_cast<BlockAddress>(this))
230 return BA->getFunction()->getRelocationInfo();
231
Chris Lattnera7cfc432010-01-03 18:09:40 +0000232 // While raw uses of blockaddress need to be relocated, differences between
233 // two of them don't when they are for labels in the same function. This is a
234 // common idiom when creating a table for the indirect goto extension, so we
235 // handle it efficiently here.
236 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(this))
237 if (CE->getOpcode() == Instruction::Sub) {
238 ConstantExpr *LHS = dyn_cast<ConstantExpr>(CE->getOperand(0));
239 ConstantExpr *RHS = dyn_cast<ConstantExpr>(CE->getOperand(1));
240 if (LHS && RHS &&
241 LHS->getOpcode() == Instruction::PtrToInt &&
242 RHS->getOpcode() == Instruction::PtrToInt &&
243 isa<BlockAddress>(LHS->getOperand(0)) &&
244 isa<BlockAddress>(RHS->getOperand(0)) &&
245 cast<BlockAddress>(LHS->getOperand(0))->getFunction() ==
246 cast<BlockAddress>(RHS->getOperand(0))->getFunction())
247 return NoRelocation;
248 }
249
Chris Lattner5cd4dd32009-07-24 03:27:21 +0000250 PossibleRelocationsTy Result = NoRelocation;
Evan Chengf9e003b2007-03-08 00:59:12 +0000251 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Chris Lattnera91a5632009-10-28 05:14:34 +0000252 Result = std::max(Result,
253 cast<Constant>(getOperand(i))->getRelocationInfo());
Chris Lattner4565ef52009-07-22 00:05:44 +0000254
255 return Result;
Evan Chengf9e003b2007-03-08 00:59:12 +0000256}
257
Chris Lattner4565ef52009-07-22 00:05:44 +0000258
Chris Lattner2105d662008-07-10 00:28:11 +0000259/// getVectorElements - This method, which is only valid on constant of vector
260/// type, returns the elements of the vector in the specified smallvector.
Chris Lattnerc5098a22008-07-14 05:10:41 +0000261/// This handles breaking down a vector undef into undef elements, etc. For
262/// constant exprs and other cases we can't handle, we return an empty vector.
Chris Lattnerf5edeeb2010-02-01 20:48:08 +0000263void Constant::getVectorElements(SmallVectorImpl<Constant*> &Elts) const {
Duncan Sands19d0b472010-02-16 11:11:14 +0000264 assert(getType()->isVectorTy() && "Not a vector constant!");
Chris Lattner2105d662008-07-10 00:28:11 +0000265
266 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this)) {
267 for (unsigned i = 0, e = CV->getNumOperands(); i != e; ++i)
268 Elts.push_back(CV->getOperand(i));
269 return;
270 }
271
272 const VectorType *VT = cast<VectorType>(getType());
273 if (isa<ConstantAggregateZero>(this)) {
274 Elts.assign(VT->getNumElements(),
Owen Anderson5a1acd92009-07-31 20:28:14 +0000275 Constant::getNullValue(VT->getElementType()));
Chris Lattner2105d662008-07-10 00:28:11 +0000276 return;
277 }
278
Chris Lattnerc5098a22008-07-14 05:10:41 +0000279 if (isa<UndefValue>(this)) {
Owen Andersonb292b8c2009-07-30 23:03:37 +0000280 Elts.assign(VT->getNumElements(), UndefValue::get(VT->getElementType()));
Chris Lattnerc5098a22008-07-14 05:10:41 +0000281 return;
282 }
283
284 // Unknown type, must be constant expr etc.
Chris Lattner2105d662008-07-10 00:28:11 +0000285}
286
287
Chris Lattner84886402011-02-18 04:41:42 +0000288/// removeDeadUsersOfConstant - If the specified constantexpr is dead, remove
289/// it. This involves recursively eliminating any dead users of the
290/// constantexpr.
291static bool removeDeadUsersOfConstant(const Constant *C) {
292 if (isa<GlobalValue>(C)) return false; // Cannot remove this
293
294 while (!C->use_empty()) {
295 const Constant *User = dyn_cast<Constant>(C->use_back());
296 if (!User) return false; // Non-constant usage;
297 if (!removeDeadUsersOfConstant(User))
298 return false; // Constant wasn't dead
299 }
300
301 const_cast<Constant*>(C)->destroyConstant();
302 return true;
303}
304
305
306/// removeDeadConstantUsers - If there are any dead constant users dangling
307/// off of this constant, remove them. This method is useful for clients
308/// that want to check to see if a global is unused, but don't want to deal
309/// with potentially dead constants hanging off of the globals.
310void Constant::removeDeadConstantUsers() const {
311 Value::const_use_iterator I = use_begin(), E = use_end();
312 Value::const_use_iterator LastNonDeadUser = E;
313 while (I != E) {
314 const Constant *User = dyn_cast<Constant>(*I);
315 if (User == 0) {
316 LastNonDeadUser = I;
317 ++I;
318 continue;
319 }
320
321 if (!removeDeadUsersOfConstant(User)) {
322 // If the constant wasn't dead, remember that this was the last live use
323 // and move on to the next constant.
324 LastNonDeadUser = I;
325 ++I;
326 continue;
327 }
328
329 // If the constant was dead, then the iterator is invalidated.
330 if (LastNonDeadUser == E) {
331 I = use_begin();
332 if (I == E) break;
333 } else {
334 I = LastNonDeadUser;
335 ++I;
336 }
337 }
338}
339
340
Chris Lattner2105d662008-07-10 00:28:11 +0000341
Chris Lattner2f7c9632001-06-06 20:29:01 +0000342//===----------------------------------------------------------------------===//
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000343// ConstantInt
Chris Lattner2f7c9632001-06-06 20:29:01 +0000344//===----------------------------------------------------------------------===//
345
Reid Spencerb31bffe2007-02-26 23:54:03 +0000346ConstantInt::ConstantInt(const IntegerType *Ty, const APInt& V)
Chris Lattner5db2f472007-02-20 05:55:46 +0000347 : Constant(Ty, ConstantIntVal, 0, 0), Val(V) {
Reid Spencerb31bffe2007-02-26 23:54:03 +0000348 assert(V.getBitWidth() == Ty->getBitWidth() && "Invalid constant for type");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000349}
350
Nick Lewycky92db8e82011-03-06 03:36:19 +0000351ConstantInt *ConstantInt::getTrue(LLVMContext &Context) {
Owen Anderson23a204d2009-07-31 17:39:07 +0000352 LLVMContextImpl *pImpl = Context.pImpl;
Benjamin Kramerddd1b7b2010-11-20 18:43:35 +0000353 if (!pImpl->TheTrueVal)
354 pImpl->TheTrueVal = ConstantInt::get(Type::getInt1Ty(Context), 1);
355 return pImpl->TheTrueVal;
Owen Anderson23a204d2009-07-31 17:39:07 +0000356}
357
Nick Lewycky92db8e82011-03-06 03:36:19 +0000358ConstantInt *ConstantInt::getFalse(LLVMContext &Context) {
Owen Anderson23a204d2009-07-31 17:39:07 +0000359 LLVMContextImpl *pImpl = Context.pImpl;
Benjamin Kramerddd1b7b2010-11-20 18:43:35 +0000360 if (!pImpl->TheFalseVal)
361 pImpl->TheFalseVal = ConstantInt::get(Type::getInt1Ty(Context), 0);
362 return pImpl->TheFalseVal;
Owen Anderson23a204d2009-07-31 17:39:07 +0000363}
364
Nick Lewycky92db8e82011-03-06 03:36:19 +0000365Constant *ConstantInt::getTrue(const Type *Ty) {
366 const VectorType *VTy = dyn_cast<VectorType>(Ty);
367 if (!VTy) {
368 assert(Ty->isIntegerTy(1) && "True must be i1 or vector of i1.");
369 return ConstantInt::getTrue(Ty->getContext());
370 }
371 assert(VTy->getElementType()->isIntegerTy(1) &&
372 "True must be vector of i1 or i1.");
373 SmallVector<Constant*, 16> Splat(VTy->getNumElements(),
374 ConstantInt::getTrue(Ty->getContext()));
375 return ConstantVector::get(Splat);
376}
377
378Constant *ConstantInt::getFalse(const Type *Ty) {
379 const VectorType *VTy = dyn_cast<VectorType>(Ty);
380 if (!VTy) {
381 assert(Ty->isIntegerTy(1) && "False must be i1 or vector of i1.");
382 return ConstantInt::getFalse(Ty->getContext());
383 }
384 assert(VTy->getElementType()->isIntegerTy(1) &&
385 "False must be vector of i1 or i1.");
386 SmallVector<Constant*, 16> Splat(VTy->getNumElements(),
387 ConstantInt::getFalse(Ty->getContext()));
388 return ConstantVector::get(Splat);
389}
390
Owen Anderson23a204d2009-07-31 17:39:07 +0000391
Owen Andersonedb4a702009-07-24 23:12:02 +0000392// Get a ConstantInt from an APInt. Note that the value stored in the DenseMap
393// as the key, is a DenseMapAPIntKeyInfo::KeyTy which has provided the
394// operator== and operator!= to ensure that the DenseMap doesn't attempt to
395// compare APInt's of different widths, which would violate an APInt class
396// invariant which generates an assertion.
Nick Lewycky92db8e82011-03-06 03:36:19 +0000397ConstantInt *ConstantInt::get(LLVMContext &Context, const APInt &V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000398 // Get the corresponding integer type for the bit width of the value.
Owen Anderson55f1c092009-08-13 21:58:54 +0000399 const IntegerType *ITy = IntegerType::get(Context, V.getBitWidth());
Owen Andersonedb4a702009-07-24 23:12:02 +0000400 // get an existing value or the insertion position
401 DenseMapAPIntKeyInfo::KeyTy Key(V, ITy);
Owen Andersonedb4a702009-07-24 23:12:02 +0000402 ConstantInt *&Slot = Context.pImpl->IntConstants[Key];
Owen Anderson5dab84c2009-10-19 20:11:52 +0000403 if (!Slot) Slot = new ConstantInt(ITy, V);
404 return Slot;
Owen Andersonedb4a702009-07-24 23:12:02 +0000405}
406
Nick Lewycky92db8e82011-03-06 03:36:19 +0000407Constant *ConstantInt::get(const Type *Ty, uint64_t V, bool isSigned) {
408 Constant *C = get(cast<IntegerType>(Ty->getScalarType()), V, isSigned);
Owen Andersonedb4a702009-07-24 23:12:02 +0000409
410 // For vectors, broadcast the value.
411 if (const VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattner69229312011-02-15 00:14:00 +0000412 return ConstantVector::get(SmallVector<Constant*,
413 16>(VTy->getNumElements(), C));
Owen Andersonedb4a702009-07-24 23:12:02 +0000414
415 return C;
416}
417
418ConstantInt* ConstantInt::get(const IntegerType* Ty, uint64_t V,
419 bool isSigned) {
420 return get(Ty->getContext(), APInt(Ty->getBitWidth(), V, isSigned));
421}
422
423ConstantInt* ConstantInt::getSigned(const IntegerType* Ty, int64_t V) {
424 return get(Ty, V, true);
425}
426
427Constant *ConstantInt::getSigned(const Type *Ty, int64_t V) {
428 return get(Ty, V, true);
429}
430
Chris Lattnera676c0f2011-02-07 16:40:21 +0000431Constant *ConstantInt::get(const Type* Ty, const APInt& V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000432 ConstantInt *C = get(Ty->getContext(), V);
433 assert(C->getType() == Ty->getScalarType() &&
434 "ConstantInt type doesn't match the type implied by its value!");
435
436 // For vectors, broadcast the value.
437 if (const VectorType *VTy = dyn_cast<VectorType>(Ty))
Owen Anderson4aa32952009-07-28 21:19:26 +0000438 return ConstantVector::get(
Chris Lattner69229312011-02-15 00:14:00 +0000439 SmallVector<Constant *, 16>(VTy->getNumElements(), C));
Owen Andersonedb4a702009-07-24 23:12:02 +0000440
441 return C;
442}
443
Daniel Dunbarad36e8a2009-11-06 10:58:06 +0000444ConstantInt* ConstantInt::get(const IntegerType* Ty, StringRef Str,
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000445 uint8_t radix) {
446 return get(Ty->getContext(), APInt(Ty->getBitWidth(), Str, radix));
447}
448
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000449//===----------------------------------------------------------------------===//
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000450// ConstantFP
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000451//===----------------------------------------------------------------------===//
452
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000453static const fltSemantics *TypeToFloatSemantics(const Type *Ty) {
Chris Lattnerfdd87902009-10-05 05:54:46 +0000454 if (Ty->isFloatTy())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000455 return &APFloat::IEEEsingle;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000456 if (Ty->isDoubleTy())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000457 return &APFloat::IEEEdouble;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000458 if (Ty->isX86_FP80Ty())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000459 return &APFloat::x87DoubleExtended;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000460 else if (Ty->isFP128Ty())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000461 return &APFloat::IEEEquad;
462
Chris Lattnerfdd87902009-10-05 05:54:46 +0000463 assert(Ty->isPPC_FP128Ty() && "Unknown FP format");
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000464 return &APFloat::PPCDoubleDouble;
465}
466
Owen Anderson69c464d2009-07-27 20:59:43 +0000467/// get() - This returns a constant fp for the specified value in the
468/// specified type. This should only be used for simple constant values like
469/// 2.0/1.0 etc, that are known-valid both as double and as the target format.
Chris Lattnera676c0f2011-02-07 16:40:21 +0000470Constant *ConstantFP::get(const Type* Ty, double V) {
Owen Anderson69c464d2009-07-27 20:59:43 +0000471 LLVMContext &Context = Ty->getContext();
472
473 APFloat FV(V);
474 bool ignored;
475 FV.convert(*TypeToFloatSemantics(Ty->getScalarType()),
476 APFloat::rmNearestTiesToEven, &ignored);
477 Constant *C = get(Context, FV);
478
479 // For vectors, broadcast the value.
480 if (const VectorType *VTy = dyn_cast<VectorType>(Ty))
Owen Anderson4aa32952009-07-28 21:19:26 +0000481 return ConstantVector::get(
Chris Lattner69229312011-02-15 00:14:00 +0000482 SmallVector<Constant *, 16>(VTy->getNumElements(), C));
Owen Anderson69c464d2009-07-27 20:59:43 +0000483
484 return C;
485}
486
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000487
Chris Lattnera676c0f2011-02-07 16:40:21 +0000488Constant *ConstantFP::get(const Type* Ty, StringRef Str) {
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000489 LLVMContext &Context = Ty->getContext();
490
491 APFloat FV(*TypeToFloatSemantics(Ty->getScalarType()), Str);
492 Constant *C = get(Context, FV);
493
494 // For vectors, broadcast the value.
495 if (const VectorType *VTy = dyn_cast<VectorType>(Ty))
496 return ConstantVector::get(
Chris Lattner69229312011-02-15 00:14:00 +0000497 SmallVector<Constant *, 16>(VTy->getNumElements(), C));
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000498
499 return C;
500}
501
502
Owen Anderson69c464d2009-07-27 20:59:43 +0000503ConstantFP* ConstantFP::getNegativeZero(const Type* Ty) {
504 LLVMContext &Context = Ty->getContext();
Owen Anderson5a1acd92009-07-31 20:28:14 +0000505 APFloat apf = cast <ConstantFP>(Constant::getNullValue(Ty))->getValueAPF();
Owen Anderson69c464d2009-07-27 20:59:43 +0000506 apf.changeSign();
507 return get(Context, apf);
508}
509
510
Chris Lattnera676c0f2011-02-07 16:40:21 +0000511Constant *ConstantFP::getZeroValueForNegation(const Type* Ty) {
Owen Anderson69c464d2009-07-27 20:59:43 +0000512 if (const VectorType *PTy = dyn_cast<VectorType>(Ty))
Duncan Sands9dff9be2010-02-15 16:12:20 +0000513 if (PTy->getElementType()->isFloatingPointTy()) {
Chris Lattner69229312011-02-15 00:14:00 +0000514 SmallVector<Constant*, 16> zeros(PTy->getNumElements(),
Owen Anderson69c464d2009-07-27 20:59:43 +0000515 getNegativeZero(PTy->getElementType()));
Chris Lattner69229312011-02-15 00:14:00 +0000516 return ConstantVector::get(zeros);
Owen Anderson69c464d2009-07-27 20:59:43 +0000517 }
518
Duncan Sands9dff9be2010-02-15 16:12:20 +0000519 if (Ty->isFloatingPointTy())
Owen Anderson69c464d2009-07-27 20:59:43 +0000520 return getNegativeZero(Ty);
521
Owen Anderson5a1acd92009-07-31 20:28:14 +0000522 return Constant::getNullValue(Ty);
Owen Anderson69c464d2009-07-27 20:59:43 +0000523}
524
525
526// ConstantFP accessors.
527ConstantFP* ConstantFP::get(LLVMContext &Context, const APFloat& V) {
528 DenseMapAPFloatKeyInfo::KeyTy Key(V);
529
530 LLVMContextImpl* pImpl = Context.pImpl;
531
Owen Anderson69c464d2009-07-27 20:59:43 +0000532 ConstantFP *&Slot = pImpl->FPConstants[Key];
Owen Anderson69c464d2009-07-27 20:59:43 +0000533
534 if (!Slot) {
Owen Anderson5dab84c2009-10-19 20:11:52 +0000535 const Type *Ty;
536 if (&V.getSemantics() == &APFloat::IEEEsingle)
537 Ty = Type::getFloatTy(Context);
538 else if (&V.getSemantics() == &APFloat::IEEEdouble)
539 Ty = Type::getDoubleTy(Context);
540 else if (&V.getSemantics() == &APFloat::x87DoubleExtended)
541 Ty = Type::getX86_FP80Ty(Context);
542 else if (&V.getSemantics() == &APFloat::IEEEquad)
543 Ty = Type::getFP128Ty(Context);
544 else {
545 assert(&V.getSemantics() == &APFloat::PPCDoubleDouble &&
546 "Unknown FP format");
547 Ty = Type::getPPC_FP128Ty(Context);
Owen Anderson69c464d2009-07-27 20:59:43 +0000548 }
Owen Anderson5dab84c2009-10-19 20:11:52 +0000549 Slot = new ConstantFP(Ty, V);
Owen Anderson69c464d2009-07-27 20:59:43 +0000550 }
551
552 return Slot;
553}
554
Dan Gohman394468d2009-09-25 23:40:21 +0000555ConstantFP *ConstantFP::getInfinity(const Type *Ty, bool Negative) {
Dan Gohmanfeb50212009-09-25 23:00:48 +0000556 const fltSemantics &Semantics = *TypeToFloatSemantics(Ty);
557 return ConstantFP::get(Ty->getContext(),
558 APFloat::getInf(Semantics, Negative));
559}
560
Dale Johannesend246b2c2007-08-30 00:23:21 +0000561ConstantFP::ConstantFP(const Type *Ty, const APFloat& V)
562 : Constant(Ty, ConstantFPVal, 0, 0), Val(V) {
Chris Lattner98bd9392008-04-09 06:38:30 +0000563 assert(&V.getSemantics() == TypeToFloatSemantics(Ty) &&
564 "FP type Mismatch");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000565}
566
Chris Lattnerbe6610c2011-07-15 06:14:08 +0000567bool ConstantFP::isExactlyValue(const APFloat &V) const {
Dale Johannesend246b2c2007-08-30 00:23:21 +0000568 return Val.bitwiseIsEqual(V);
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000569}
570
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000571//===----------------------------------------------------------------------===//
572// ConstantXXX Classes
573//===----------------------------------------------------------------------===//
574
575
Chris Lattner3462ae32001-12-03 22:26:30 +0000576ConstantArray::ConstantArray(const ArrayType *T,
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000577 const std::vector<Constant*> &V)
Gabor Greiff6caff662008-05-10 08:32:32 +0000578 : Constant(T, ConstantArrayVal,
579 OperandTraits<ConstantArray>::op_end(this) - V.size(),
580 V.size()) {
Alkis Evlogimenos0507ffe2004-09-15 02:32:15 +0000581 assert(V.size() == T->getNumElements() &&
582 "Invalid initializer vector for constant array");
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000583 Use *OL = OperandList;
Chris Lattner0144fad2005-10-03 21:56:24 +0000584 for (std::vector<Constant*>::const_iterator I = V.begin(), E = V.end();
585 I != E; ++I, ++OL) {
Chris Lattner20a24452005-10-07 05:23:36 +0000586 Constant *C = *I;
Nick Lewyckyae4617c2009-10-03 19:30:43 +0000587 assert(C->getType() == T->getElementType() &&
Alkis Evlogimenoscb031d92004-09-10 04:16:59 +0000588 "Initializer for array element doesn't match array element type!");
Gabor Greif2d3024d2008-05-26 21:33:52 +0000589 *OL = C;
Chris Lattner2f7c9632001-06-06 20:29:01 +0000590 }
591}
592
Jay Foad83be3612011-06-22 09:24:39 +0000593Constant *ConstantArray::get(const ArrayType *Ty, ArrayRef<Constant*> V) {
Jeffrey Yasskin8ce67f82009-09-30 21:08:08 +0000594 for (unsigned i = 0, e = V.size(); i != e; ++i) {
595 assert(V[i]->getType() == Ty->getElementType() &&
596 "Wrong type in array element initializer");
597 }
Owen Andersonc2c79322009-07-28 18:32:17 +0000598 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
599 // If this is an all-zero array, return a ConstantAggregateZero object
600 if (!V.empty()) {
601 Constant *C = V[0];
Chris Lattner09660c92009-12-30 20:25:09 +0000602 if (!C->isNullValue())
Owen Andersonc2c79322009-07-28 18:32:17 +0000603 return pImpl->ArrayConstants.getOrCreate(Ty, V);
Chris Lattner09660c92009-12-30 20:25:09 +0000604
Owen Andersonc2c79322009-07-28 18:32:17 +0000605 for (unsigned i = 1, e = V.size(); i != e; ++i)
Chris Lattner09660c92009-12-30 20:25:09 +0000606 if (V[i] != C)
Owen Andersonc2c79322009-07-28 18:32:17 +0000607 return pImpl->ArrayConstants.getOrCreate(Ty, V);
Owen Andersonc2c79322009-07-28 18:32:17 +0000608 }
609
Owen Andersonb292b8c2009-07-30 23:03:37 +0000610 return ConstantAggregateZero::get(Ty);
Owen Andersonc2c79322009-07-28 18:32:17 +0000611}
612
Owen Andersonc2c79322009-07-28 18:32:17 +0000613/// ConstantArray::get(const string&) - Return an array that is initialized to
614/// contain the specified string. If length is zero then a null terminator is
615/// added to the specified string so that it may be used in a natural way.
616/// Otherwise, the length parameter specifies how much of the string to use
617/// and it won't be null terminated.
618///
Chris Lattnera676c0f2011-02-07 16:40:21 +0000619Constant *ConstantArray::get(LLVMContext &Context, StringRef Str,
Owen Anderson55f1c092009-08-13 21:58:54 +0000620 bool AddNull) {
Owen Andersonc2c79322009-07-28 18:32:17 +0000621 std::vector<Constant*> ElementVals;
Benjamin Kramer3d4af4e2010-08-01 11:43:26 +0000622 ElementVals.reserve(Str.size() + size_t(AddNull));
Owen Andersonc2c79322009-07-28 18:32:17 +0000623 for (unsigned i = 0; i < Str.size(); ++i)
Owen Anderson55f1c092009-08-13 21:58:54 +0000624 ElementVals.push_back(ConstantInt::get(Type::getInt8Ty(Context), Str[i]));
Owen Andersonc2c79322009-07-28 18:32:17 +0000625
626 // Add a null terminator to the string...
627 if (AddNull) {
Owen Anderson55f1c092009-08-13 21:58:54 +0000628 ElementVals.push_back(ConstantInt::get(Type::getInt8Ty(Context), 0));
Owen Andersonc2c79322009-07-28 18:32:17 +0000629 }
630
Owen Anderson55f1c092009-08-13 21:58:54 +0000631 ArrayType *ATy = ArrayType::get(Type::getInt8Ty(Context), ElementVals.size());
Owen Andersonc2c79322009-07-28 18:32:17 +0000632 return get(ATy, ElementVals);
633}
634
Chris Lattnercc19efa2011-06-20 04:01:31 +0000635/// getTypeForElements - Return an anonymous struct type to use for a constant
636/// with the specified set of elements. The list must not be empty.
637StructType *ConstantStruct::getTypeForElements(LLVMContext &Context,
638 ArrayRef<Constant*> V,
639 bool Packed) {
Jay Foadb804a2b2011-07-12 14:06:48 +0000640 SmallVector<Type*, 16> EltTypes;
Chris Lattnercc19efa2011-06-20 04:01:31 +0000641 for (unsigned i = 0, e = V.size(); i != e; ++i)
642 EltTypes.push_back(V[i]->getType());
643
644 return StructType::get(Context, EltTypes, Packed);
645}
646
647
648StructType *ConstantStruct::getTypeForElements(ArrayRef<Constant*> V,
649 bool Packed) {
650 assert(!V.empty() &&
651 "ConstantStruct::getTypeForElements cannot be called on empty list");
652 return getTypeForElements(V[0]->getContext(), V, Packed);
653}
654
655
Chris Lattner3462ae32001-12-03 22:26:30 +0000656ConstantStruct::ConstantStruct(const StructType *T,
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000657 const std::vector<Constant*> &V)
Gabor Greiff6caff662008-05-10 08:32:32 +0000658 : Constant(T, ConstantStructVal,
659 OperandTraits<ConstantStruct>::op_end(this) - V.size(),
660 V.size()) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000661 assert((T->isOpaque() || V.size() == T->getNumElements()) &&
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000662 "Invalid initializer vector for constant structure");
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000663 Use *OL = OperandList;
Chris Lattner0144fad2005-10-03 21:56:24 +0000664 for (std::vector<Constant*>::const_iterator I = V.begin(), E = V.end();
665 I != E; ++I, ++OL) {
Chris Lattner20a24452005-10-07 05:23:36 +0000666 Constant *C = *I;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000667 assert((T->isOpaque() || C->getType() == T->getElementType(I-V.begin())) &&
Chris Lattner93c8f142003-06-02 17:42:47 +0000668 "Initializer for struct element doesn't match struct element type!");
Gabor Greif2d3024d2008-05-26 21:33:52 +0000669 *OL = C;
Chris Lattner2f7c9632001-06-06 20:29:01 +0000670 }
671}
672
Owen Anderson45308b52009-07-27 22:29:26 +0000673// ConstantStruct accessors.
Chris Lattnercc19efa2011-06-20 04:01:31 +0000674Constant *ConstantStruct::get(const StructType *ST, ArrayRef<Constant*> V) {
Chris Lattnercc19efa2011-06-20 04:01:31 +0000675 // Create a ConstantAggregateZero value if all elements are zeros.
Owen Anderson45308b52009-07-27 22:29:26 +0000676 for (unsigned i = 0, e = V.size(); i != e; ++i)
Jay Foad687bd0a2011-06-22 08:55:11 +0000677 if (!V[i]->isNullValue())
678 return ST->getContext().pImpl->StructConstants.getOrCreate(ST, V);
Owen Anderson45308b52009-07-27 22:29:26 +0000679
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000680 assert((ST->isOpaque() || ST->getNumElements() == V.size()) &&
681 "Incorrect # elements specified to ConstantStruct::get");
Chris Lattnercc19efa2011-06-20 04:01:31 +0000682 return ConstantAggregateZero::get(ST);
Owen Anderson45308b52009-07-27 22:29:26 +0000683}
684
Chris Lattnercc19efa2011-06-20 04:01:31 +0000685Constant* ConstantStruct::get(const StructType *T, ...) {
Talin3a0a30d2011-02-28 23:53:27 +0000686 va_list ap;
Chris Lattnercc19efa2011-06-20 04:01:31 +0000687 SmallVector<Constant*, 8> Values;
688 va_start(ap, T);
689 while (Constant *Val = va_arg(ap, llvm::Constant*))
Talin3a0a30d2011-02-28 23:53:27 +0000690 Values.push_back(Val);
Talinde422be2011-03-01 18:00:49 +0000691 va_end(ap);
Chris Lattnercc19efa2011-06-20 04:01:31 +0000692 return get(T, Values);
Talin3a0a30d2011-02-28 23:53:27 +0000693}
694
Reid Spencerd84d35b2007-02-15 02:26:10 +0000695ConstantVector::ConstantVector(const VectorType *T,
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000696 const std::vector<Constant*> &V)
Gabor Greiff6caff662008-05-10 08:32:32 +0000697 : Constant(T, ConstantVectorVal,
698 OperandTraits<ConstantVector>::op_end(this) - V.size(),
699 V.size()) {
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000700 Use *OL = OperandList;
Jay Foad9f32cfd2011-01-27 14:44:55 +0000701 for (std::vector<Constant*>::const_iterator I = V.begin(), E = V.end();
702 I != E; ++I, ++OL) {
703 Constant *C = *I;
704 assert(C->getType() == T->getElementType() &&
Dan Gohman30978072007-05-24 14:36:04 +0000705 "Initializer for vector element doesn't match vector element type!");
Gabor Greif2d3024d2008-05-26 21:33:52 +0000706 *OL = C;
Brian Gaeke02209042004-08-20 06:00:58 +0000707 }
708}
709
Owen Anderson4aa32952009-07-28 21:19:26 +0000710// ConstantVector accessors.
Jay Foadb8a8bed32011-06-22 09:10:19 +0000711Constant *ConstantVector::get(ArrayRef<Constant*> V) {
Jay Foad9f32cfd2011-01-27 14:44:55 +0000712 assert(!V.empty() && "Vectors can't be empty");
Jay Foadb8a8bed32011-06-22 09:10:19 +0000713 const VectorType *T = VectorType::get(V.front()->getType(), V.size());
Chris Lattner69229312011-02-15 00:14:00 +0000714 LLVMContextImpl *pImpl = T->getContext().pImpl;
Jay Foad9f32cfd2011-01-27 14:44:55 +0000715
Chris Lattner69229312011-02-15 00:14:00 +0000716 // If this is an all-undef or all-zero vector, return a
Owen Anderson4aa32952009-07-28 21:19:26 +0000717 // ConstantAggregateZero or UndefValue.
718 Constant *C = V[0];
719 bool isZero = C->isNullValue();
720 bool isUndef = isa<UndefValue>(C);
721
722 if (isZero || isUndef) {
723 for (unsigned i = 1, e = V.size(); i != e; ++i)
724 if (V[i] != C) {
725 isZero = isUndef = false;
726 break;
727 }
728 }
729
730 if (isZero)
Owen Andersonb292b8c2009-07-30 23:03:37 +0000731 return ConstantAggregateZero::get(T);
Owen Anderson4aa32952009-07-28 21:19:26 +0000732 if (isUndef)
Owen Andersonb292b8c2009-07-30 23:03:37 +0000733 return UndefValue::get(T);
Owen Anderson4aa32952009-07-28 21:19:26 +0000734
Owen Anderson4aa32952009-07-28 21:19:26 +0000735 return pImpl->VectorConstants.getOrCreate(T, V);
736}
737
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000738// Utility function for determining if a ConstantExpr is a CastOp or not. This
739// can't be inline because we don't want to #include Instruction.h into
740// Constant.h
741bool ConstantExpr::isCast() const {
742 return Instruction::isCast(getOpcode());
743}
744
Reid Spenceree3c9912006-12-04 05:19:50 +0000745bool ConstantExpr::isCompare() const {
Nick Lewyckya21d3da2009-07-08 03:04:38 +0000746 return getOpcode() == Instruction::ICmp || getOpcode() == Instruction::FCmp;
Reid Spenceree3c9912006-12-04 05:19:50 +0000747}
748
Dan Gohman7190d482009-09-10 23:37:55 +0000749bool ConstantExpr::isGEPWithNoNotionalOverIndexing() const {
750 if (getOpcode() != Instruction::GetElementPtr) return false;
751
752 gep_type_iterator GEPI = gep_type_begin(this), E = gep_type_end(this);
Oscar Fuentes40b31ad2010-08-02 06:00:15 +0000753 User::const_op_iterator OI = llvm::next(this->op_begin());
Dan Gohman7190d482009-09-10 23:37:55 +0000754
755 // Skip the first index, as it has no static limit.
756 ++GEPI;
757 ++OI;
758
759 // The remaining indices must be compile-time known integers within the
760 // bounds of the corresponding notional static array types.
761 for (; GEPI != E; ++GEPI, ++OI) {
762 ConstantInt *CI = dyn_cast<ConstantInt>(*OI);
763 if (!CI) return false;
764 if (const ArrayType *ATy = dyn_cast<ArrayType>(*GEPI))
765 if (CI->getValue().getActiveBits() > 64 ||
766 CI->getZExtValue() >= ATy->getNumElements())
767 return false;
768 }
769
770 // All the indices checked out.
771 return true;
772}
773
Dan Gohman1ecaf452008-05-31 00:58:22 +0000774bool ConstantExpr::hasIndices() const {
775 return getOpcode() == Instruction::ExtractValue ||
776 getOpcode() == Instruction::InsertValue;
777}
778
Jay Foad0091fe82011-04-13 15:22:40 +0000779ArrayRef<unsigned> ConstantExpr::getIndices() const {
Dan Gohman1ecaf452008-05-31 00:58:22 +0000780 if (const ExtractValueConstantExpr *EVCE =
781 dyn_cast<ExtractValueConstantExpr>(this))
782 return EVCE->Indices;
Dan Gohmana469bdb2008-06-23 16:39:44 +0000783
784 return cast<InsertValueConstantExpr>(this)->Indices;
Dan Gohman1ecaf452008-05-31 00:58:22 +0000785}
786
Reid Spencer10fbf0e2006-12-03 05:48:19 +0000787unsigned ConstantExpr::getPredicate() const {
Nate Begemand2195702008-05-12 19:01:56 +0000788 assert(getOpcode() == Instruction::FCmp ||
Nick Lewyckya21d3da2009-07-08 03:04:38 +0000789 getOpcode() == Instruction::ICmp);
Chris Lattneref650092007-10-18 16:26:24 +0000790 return ((const CompareConstantExpr*)this)->predicate;
Reid Spencer10fbf0e2006-12-03 05:48:19 +0000791}
Chris Lattner60e0dd72001-10-03 06:12:09 +0000792
Chris Lattner7c1018a2006-07-14 19:37:40 +0000793/// getWithOperandReplaced - Return a constant expression identical to this
794/// one, but with the specified operand set to the specified value.
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000795Constant *
796ConstantExpr::getWithOperandReplaced(unsigned OpNo, Constant *Op) const {
Chris Lattner7c1018a2006-07-14 19:37:40 +0000797 assert(OpNo < getNumOperands() && "Operand num is out of range!");
798 assert(Op->getType() == getOperand(OpNo)->getType() &&
799 "Replacing operand with value of different type!");
Chris Lattner227816342006-07-14 22:20:01 +0000800 if (getOperand(OpNo) == Op)
801 return const_cast<ConstantExpr*>(this);
Chris Lattner7c1018a2006-07-14 19:37:40 +0000802
Chris Lattner227816342006-07-14 22:20:01 +0000803 Constant *Op0, *Op1, *Op2;
Chris Lattner7c1018a2006-07-14 19:37:40 +0000804 switch (getOpcode()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000805 case Instruction::Trunc:
806 case Instruction::ZExt:
807 case Instruction::SExt:
808 case Instruction::FPTrunc:
809 case Instruction::FPExt:
810 case Instruction::UIToFP:
811 case Instruction::SIToFP:
812 case Instruction::FPToUI:
813 case Instruction::FPToSI:
814 case Instruction::PtrToInt:
815 case Instruction::IntToPtr:
816 case Instruction::BitCast:
817 return ConstantExpr::getCast(getOpcode(), Op, getType());
Chris Lattner227816342006-07-14 22:20:01 +0000818 case Instruction::Select:
819 Op0 = (OpNo == 0) ? Op : getOperand(0);
820 Op1 = (OpNo == 1) ? Op : getOperand(1);
821 Op2 = (OpNo == 2) ? Op : getOperand(2);
822 return ConstantExpr::getSelect(Op0, Op1, Op2);
823 case Instruction::InsertElement:
824 Op0 = (OpNo == 0) ? Op : getOperand(0);
825 Op1 = (OpNo == 1) ? Op : getOperand(1);
826 Op2 = (OpNo == 2) ? Op : getOperand(2);
827 return ConstantExpr::getInsertElement(Op0, Op1, Op2);
828 case Instruction::ExtractElement:
829 Op0 = (OpNo == 0) ? Op : getOperand(0);
830 Op1 = (OpNo == 1) ? Op : getOperand(1);
831 return ConstantExpr::getExtractElement(Op0, Op1);
832 case Instruction::ShuffleVector:
833 Op0 = (OpNo == 0) ? Op : getOperand(0);
834 Op1 = (OpNo == 1) ? Op : getOperand(1);
835 Op2 = (OpNo == 2) ? Op : getOperand(2);
836 return ConstantExpr::getShuffleVector(Op0, Op1, Op2);
Chris Lattner7c1018a2006-07-14 19:37:40 +0000837 case Instruction::GetElementPtr: {
Chris Lattnerb5d70302007-02-19 20:01:23 +0000838 SmallVector<Constant*, 8> Ops;
Dan Gohman12fce772008-05-15 19:50:34 +0000839 Ops.resize(getNumOperands()-1);
Chris Lattner7c1018a2006-07-14 19:37:40 +0000840 for (unsigned i = 1, e = getNumOperands(); i != e; ++i)
Dan Gohman12fce772008-05-15 19:50:34 +0000841 Ops[i-1] = getOperand(i);
Chris Lattner7c1018a2006-07-14 19:37:40 +0000842 if (OpNo == 0)
Dan Gohman1b849082009-09-07 23:54:19 +0000843 return cast<GEPOperator>(this)->isInBounds() ?
844 ConstantExpr::getInBoundsGetElementPtr(Op, &Ops[0], Ops.size()) :
845 ConstantExpr::getGetElementPtr(Op, &Ops[0], Ops.size());
Chris Lattner7c1018a2006-07-14 19:37:40 +0000846 Ops[OpNo-1] = Op;
Dan Gohman1b849082009-09-07 23:54:19 +0000847 return cast<GEPOperator>(this)->isInBounds() ?
Chris Lattnerb9c86512009-12-29 02:14:09 +0000848 ConstantExpr::getInBoundsGetElementPtr(getOperand(0), &Ops[0],Ops.size()):
Dan Gohman1b849082009-09-07 23:54:19 +0000849 ConstantExpr::getGetElementPtr(getOperand(0), &Ops[0], Ops.size());
Chris Lattner7c1018a2006-07-14 19:37:40 +0000850 }
Chris Lattner7c1018a2006-07-14 19:37:40 +0000851 default:
852 assert(getNumOperands() == 2 && "Must be binary operator?");
Chris Lattner227816342006-07-14 22:20:01 +0000853 Op0 = (OpNo == 0) ? Op : getOperand(0);
854 Op1 = (OpNo == 1) ? Op : getOperand(1);
Chris Lattnerb9c86512009-12-29 02:14:09 +0000855 return ConstantExpr::get(getOpcode(), Op0, Op1, SubclassOptionalData);
Chris Lattner227816342006-07-14 22:20:01 +0000856 }
857}
858
859/// getWithOperands - This returns the current constant expression with the
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000860/// operands replaced with the specified values. The specified array must
861/// have the same number of operands as our current one.
Chris Lattner227816342006-07-14 22:20:01 +0000862Constant *ConstantExpr::
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000863getWithOperands(ArrayRef<Constant*> Ops, const Type *Ty) const {
Jay Foad5c984e562011-04-13 13:46:01 +0000864 assert(Ops.size() == getNumOperands() && "Operand count mismatch!");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000865 bool AnyChange = Ty != getType();
866 for (unsigned i = 0; i != Ops.size(); ++i)
Chris Lattner227816342006-07-14 22:20:01 +0000867 AnyChange |= Ops[i] != getOperand(i);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000868
Chris Lattner227816342006-07-14 22:20:01 +0000869 if (!AnyChange) // No operands changed, return self.
870 return const_cast<ConstantExpr*>(this);
871
872 switch (getOpcode()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000873 case Instruction::Trunc:
874 case Instruction::ZExt:
875 case Instruction::SExt:
876 case Instruction::FPTrunc:
877 case Instruction::FPExt:
878 case Instruction::UIToFP:
879 case Instruction::SIToFP:
880 case Instruction::FPToUI:
881 case Instruction::FPToSI:
882 case Instruction::PtrToInt:
883 case Instruction::IntToPtr:
884 case Instruction::BitCast:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000885 return ConstantExpr::getCast(getOpcode(), Ops[0], Ty);
Chris Lattner227816342006-07-14 22:20:01 +0000886 case Instruction::Select:
887 return ConstantExpr::getSelect(Ops[0], Ops[1], Ops[2]);
888 case Instruction::InsertElement:
889 return ConstantExpr::getInsertElement(Ops[0], Ops[1], Ops[2]);
890 case Instruction::ExtractElement:
891 return ConstantExpr::getExtractElement(Ops[0], Ops[1]);
892 case Instruction::ShuffleVector:
893 return ConstantExpr::getShuffleVector(Ops[0], Ops[1], Ops[2]);
Chris Lattnerb5d70302007-02-19 20:01:23 +0000894 case Instruction::GetElementPtr:
Dan Gohman1b849082009-09-07 23:54:19 +0000895 return cast<GEPOperator>(this)->isInBounds() ?
Jay Foad5c984e562011-04-13 13:46:01 +0000896 ConstantExpr::getInBoundsGetElementPtr(Ops[0], &Ops[1], Ops.size()-1) :
897 ConstantExpr::getGetElementPtr(Ops[0], &Ops[1], Ops.size()-1);
Reid Spencer266e42b2006-12-23 06:05:41 +0000898 case Instruction::ICmp:
899 case Instruction::FCmp:
900 return ConstantExpr::getCompare(getPredicate(), Ops[0], Ops[1]);
Chris Lattner227816342006-07-14 22:20:01 +0000901 default:
902 assert(getNumOperands() == 2 && "Must be binary operator?");
Chris Lattnerb9c86512009-12-29 02:14:09 +0000903 return ConstantExpr::get(getOpcode(), Ops[0], Ops[1], SubclassOptionalData);
Chris Lattner7c1018a2006-07-14 19:37:40 +0000904 }
905}
906
Chris Lattner2f7c9632001-06-06 20:29:01 +0000907
908//===----------------------------------------------------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +0000909// isValueValidForType implementations
910
Reid Spencere7334722006-12-19 01:28:19 +0000911bool ConstantInt::isValueValidForType(const Type *Ty, uint64_t Val) {
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000912 unsigned NumBits = cast<IntegerType>(Ty)->getBitWidth(); // assert okay
Owen Anderson55f1c092009-08-13 21:58:54 +0000913 if (Ty == Type::getInt1Ty(Ty->getContext()))
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000914 return Val == 0 || Val == 1;
Reid Spencerd7a00d72007-02-05 23:47:56 +0000915 if (NumBits >= 64)
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000916 return true; // always true, has to fit in largest type
917 uint64_t Max = (1ll << NumBits) - 1;
918 return Val <= Max;
Reid Spencere7334722006-12-19 01:28:19 +0000919}
920
Reid Spencere0fc4df2006-10-20 07:07:24 +0000921bool ConstantInt::isValueValidForType(const Type *Ty, int64_t Val) {
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000922 unsigned NumBits = cast<IntegerType>(Ty)->getBitWidth(); // assert okay
Owen Anderson55f1c092009-08-13 21:58:54 +0000923 if (Ty == Type::getInt1Ty(Ty->getContext()))
Reid Spencera94d3942007-01-19 21:13:56 +0000924 return Val == 0 || Val == 1 || Val == -1;
Reid Spencerd7a00d72007-02-05 23:47:56 +0000925 if (NumBits >= 64)
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000926 return true; // always true, has to fit in largest type
927 int64_t Min = -(1ll << (NumBits-1));
928 int64_t Max = (1ll << (NumBits-1)) - 1;
929 return (Val >= Min && Val <= Max);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000930}
931
Dale Johannesend246b2c2007-08-30 00:23:21 +0000932bool ConstantFP::isValueValidForType(const Type *Ty, const APFloat& Val) {
933 // convert modifies in place, so make a copy.
934 APFloat Val2 = APFloat(Val);
Dale Johannesen4f0bd682008-10-09 23:00:39 +0000935 bool losesInfo;
Chris Lattner6b727592004-06-17 18:19:28 +0000936 switch (Ty->getTypeID()) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000937 default:
938 return false; // These can't be represented as floating point!
939
Dale Johannesend246b2c2007-08-30 00:23:21 +0000940 // FIXME rounding mode needs to be more flexible
Dale Johannesen4f0bd682008-10-09 23:00:39 +0000941 case Type::FloatTyID: {
942 if (&Val2.getSemantics() == &APFloat::IEEEsingle)
943 return true;
944 Val2.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven, &losesInfo);
945 return !losesInfo;
946 }
947 case Type::DoubleTyID: {
948 if (&Val2.getSemantics() == &APFloat::IEEEsingle ||
949 &Val2.getSemantics() == &APFloat::IEEEdouble)
950 return true;
951 Val2.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, &losesInfo);
952 return !losesInfo;
953 }
Dale Johannesenbdad8092007-08-09 22:51:36 +0000954 case Type::X86_FP80TyID:
Dale Johannesen028084e2007-09-12 03:30:33 +0000955 return &Val2.getSemantics() == &APFloat::IEEEsingle ||
956 &Val2.getSemantics() == &APFloat::IEEEdouble ||
957 &Val2.getSemantics() == &APFloat::x87DoubleExtended;
Dale Johannesenbdad8092007-08-09 22:51:36 +0000958 case Type::FP128TyID:
Dale Johannesen028084e2007-09-12 03:30:33 +0000959 return &Val2.getSemantics() == &APFloat::IEEEsingle ||
960 &Val2.getSemantics() == &APFloat::IEEEdouble ||
961 &Val2.getSemantics() == &APFloat::IEEEquad;
Dale Johannesen007aa372007-10-11 18:07:22 +0000962 case Type::PPC_FP128TyID:
963 return &Val2.getSemantics() == &APFloat::IEEEsingle ||
964 &Val2.getSemantics() == &APFloat::IEEEdouble ||
965 &Val2.getSemantics() == &APFloat::PPCDoubleDouble;
Chris Lattner2f7c9632001-06-06 20:29:01 +0000966 }
Chris Lattneraa2372562006-05-24 17:04:05 +0000967}
Chris Lattner9655e542001-07-20 19:16:02 +0000968
Chris Lattner49d855c2001-09-07 16:46:31 +0000969//===----------------------------------------------------------------------===//
Chris Lattner49d855c2001-09-07 16:46:31 +0000970// Factory Function Implementation
971
Owen Andersonb292b8c2009-07-30 23:03:37 +0000972ConstantAggregateZero* ConstantAggregateZero::get(const Type* Ty) {
Chris Lattner13ee7952010-08-28 04:09:24 +0000973 assert((Ty->isStructTy() || Ty->isArrayTy() || Ty->isVectorTy()) &&
Owen Andersonb292b8c2009-07-30 23:03:37 +0000974 "Cannot create an aggregate zero of non-aggregate type!");
975
976 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
Owen Andersonb292b8c2009-07-30 23:03:37 +0000977 return pImpl->AggZeroConstants.getOrCreate(Ty, 0);
978}
979
Dan Gohman92b551b2009-03-03 02:55:14 +0000980/// destroyConstant - Remove the constant from the constant table...
981///
Owen Anderson0d2de8c2009-06-20 00:24:58 +0000982void ConstantAggregateZero::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000983 getType()->getContext().pImpl->AggZeroConstants.remove(this);
Chris Lattner9fba3da2004-02-15 05:53:04 +0000984 destroyConstantImpl();
985}
986
Dan Gohman92b551b2009-03-03 02:55:14 +0000987/// destroyConstant - Remove the constant from the constant table...
988///
Owen Anderson0d2de8c2009-06-20 00:24:58 +0000989void ConstantArray::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000990 getType()->getContext().pImpl->ArrayConstants.remove(this);
Chris Lattner98fa07b2003-05-23 20:03:32 +0000991 destroyConstantImpl();
992}
993
Reid Spencer2546b762007-01-26 07:37:34 +0000994/// isString - This method returns true if the array is an array of i8, and
995/// if the elements of the array are all ConstantInt's.
Chris Lattnere8dfcca2004-01-14 17:06:38 +0000996bool ConstantArray::isString() const {
Reid Spencer2546b762007-01-26 07:37:34 +0000997 // Check the element type for i8...
Duncan Sands9dff9be2010-02-15 16:12:20 +0000998 if (!getType()->getElementType()->isIntegerTy(8))
Chris Lattnere8dfcca2004-01-14 17:06:38 +0000999 return false;
1000 // Check the elements to make sure they are all integers, not constant
1001 // expressions.
1002 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
1003 if (!isa<ConstantInt>(getOperand(i)))
1004 return false;
1005 return true;
1006}
1007
Evan Cheng3763c5b2006-10-26 19:15:05 +00001008/// isCString - This method returns true if the array is a string (see
Dan Gohman92b551b2009-03-03 02:55:14 +00001009/// isString) and it ends in a null byte \\0 and does not contains any other
Evan Cheng3763c5b2006-10-26 19:15:05 +00001010/// null bytes except its terminator.
Owen Andersone4dcecd2009-07-13 21:27:19 +00001011bool ConstantArray::isCString() const {
Reid Spencer2546b762007-01-26 07:37:34 +00001012 // Check the element type for i8...
Duncan Sands9dff9be2010-02-15 16:12:20 +00001013 if (!getType()->getElementType()->isIntegerTy(8))
Evan Chenge974da62006-10-26 21:48:03 +00001014 return false;
Owen Andersone4dcecd2009-07-13 21:27:19 +00001015
Evan Chenge974da62006-10-26 21:48:03 +00001016 // Last element must be a null.
Owen Andersone4dcecd2009-07-13 21:27:19 +00001017 if (!getOperand(getNumOperands()-1)->isNullValue())
Evan Chenge974da62006-10-26 21:48:03 +00001018 return false;
1019 // Other elements must be non-null integers.
1020 for (unsigned i = 0, e = getNumOperands()-1; i != e; ++i) {
1021 if (!isa<ConstantInt>(getOperand(i)))
Evan Cheng3763c5b2006-10-26 19:15:05 +00001022 return false;
Owen Andersone4dcecd2009-07-13 21:27:19 +00001023 if (getOperand(i)->isNullValue())
Evan Chenge974da62006-10-26 21:48:03 +00001024 return false;
1025 }
Evan Cheng3763c5b2006-10-26 19:15:05 +00001026 return true;
1027}
1028
1029
Jay Foad2a31eb42011-06-28 08:24:19 +00001030/// convertToString - Helper function for getAsString() and getAsCString().
1031static std::string convertToString(const User *U, unsigned len)
1032{
1033 std::string Result;
1034 Result.reserve(len);
1035 for (unsigned i = 0; i != len; ++i)
1036 Result.push_back((char)cast<ConstantInt>(U->getOperand(i))->getZExtValue());
1037 return Result;
1038}
1039
1040/// getAsString - If this array is isString(), then this method converts the
1041/// array to an std::string and returns it. Otherwise, it asserts out.
Dan Gohman92b551b2009-03-03 02:55:14 +00001042///
Chris Lattner81fabb02002-08-26 17:53:56 +00001043std::string ConstantArray::getAsString() const {
Chris Lattnere8dfcca2004-01-14 17:06:38 +00001044 assert(isString() && "Not a string!");
Jay Foad2a31eb42011-06-28 08:24:19 +00001045 return convertToString(this, getNumOperands());
1046}
1047
1048
1049/// getAsCString - If this array is isCString(), then this method converts the
1050/// array (without the trailing null byte) to an std::string and returns it.
1051/// Otherwise, it asserts out.
1052///
1053std::string ConstantArray::getAsCString() const {
1054 assert(isCString() && "Not a string!");
1055 return convertToString(this, getNumOperands() - 1);
Chris Lattner81fabb02002-08-26 17:53:56 +00001056}
1057
1058
Chris Lattner3462ae32001-12-03 22:26:30 +00001059//---- ConstantStruct::get() implementation...
Chris Lattner49d855c2001-09-07 16:46:31 +00001060//
Chris Lattnerb50d1352003-10-05 00:17:43 +00001061
Chris Lattner189d19f2003-11-21 20:23:48 +00001062namespace llvm {
Misha Brukmanb1c93172005-04-21 23:48:37 +00001063
Chris Lattner49d855c2001-09-07 16:46:31 +00001064}
Chris Lattner883ad0b2001-10-03 15:39:36 +00001065
Chris Lattnerd7a73302001-10-13 06:57:33 +00001066// destroyConstant - Remove the constant from the constant table...
Chris Lattner883ad0b2001-10-03 15:39:36 +00001067//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001068void ConstantStruct::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001069 getType()->getContext().pImpl->StructConstants.remove(this);
Chris Lattnerd7a73302001-10-13 06:57:33 +00001070 destroyConstantImpl();
1071}
Chris Lattner883ad0b2001-10-03 15:39:36 +00001072
Brian Gaeke02209042004-08-20 06:00:58 +00001073// destroyConstant - Remove the constant from the constant table...
1074//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001075void ConstantVector::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001076 getType()->getContext().pImpl->VectorConstants.remove(this);
Brian Gaeke02209042004-08-20 06:00:58 +00001077 destroyConstantImpl();
1078}
1079
Dan Gohman30978072007-05-24 14:36:04 +00001080/// This function will return true iff every element in this vector constant
Jim Laskeyf0478822007-01-12 22:39:14 +00001081/// is set to all ones.
1082/// @returns true iff this constant's emements are all set to all ones.
1083/// @brief Determine if the value is all ones.
Reid Spencerd84d35b2007-02-15 02:26:10 +00001084bool ConstantVector::isAllOnesValue() const {
Jim Laskeyf0478822007-01-12 22:39:14 +00001085 // Check out first element.
1086 const Constant *Elt = getOperand(0);
1087 const ConstantInt *CI = dyn_cast<ConstantInt>(Elt);
1088 if (!CI || !CI->isAllOnesValue()) return false;
1089 // Then make sure all remaining elements point to the same value.
1090 for (unsigned I = 1, E = getNumOperands(); I < E; ++I) {
1091 if (getOperand(I) != Elt) return false;
1092 }
1093 return true;
1094}
1095
Dan Gohman07159202007-10-17 17:51:30 +00001096/// getSplatValue - If this is a splat constant, where all of the
1097/// elements have the same value, return that value. Otherwise return null.
Duncan Sandscf0ff032011-02-01 08:39:12 +00001098Constant *ConstantVector::getSplatValue() const {
Dan Gohman07159202007-10-17 17:51:30 +00001099 // Check out first element.
1100 Constant *Elt = getOperand(0);
1101 // Then make sure all remaining elements point to the same value.
1102 for (unsigned I = 1, E = getNumOperands(); I < E; ++I)
1103 if (getOperand(I) != Elt) return 0;
1104 return Elt;
1105}
1106
Chris Lattner31b132c2009-10-28 00:01:44 +00001107//---- ConstantPointerNull::get() implementation.
Chris Lattnerd7a73302001-10-13 06:57:33 +00001108//
Chris Lattner98fa07b2003-05-23 20:03:32 +00001109
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001110ConstantPointerNull *ConstantPointerNull::get(const PointerType *Ty) {
Owen Andersonc8c30262009-07-31 22:45:43 +00001111 return Ty->getContext().pImpl->NullPtrConstants.getOrCreate(Ty, 0);
Chris Lattner883ad0b2001-10-03 15:39:36 +00001112}
1113
Chris Lattner0c6e0b92002-08-18 00:40:04 +00001114// destroyConstant - Remove the constant from the constant table...
1115//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001116void ConstantPointerNull::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001117 getType()->getContext().pImpl->NullPtrConstants.remove(this);
Chris Lattner0c6e0b92002-08-18 00:40:04 +00001118 destroyConstantImpl();
1119}
1120
1121
Chris Lattner31b132c2009-10-28 00:01:44 +00001122//---- UndefValue::get() implementation.
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001123//
1124
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001125UndefValue *UndefValue::get(const Type *Ty) {
Owen Andersonc8c30262009-07-31 22:45:43 +00001126 return Ty->getContext().pImpl->UndefValueConstants.getOrCreate(Ty, 0);
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001127}
1128
1129// destroyConstant - Remove the constant from the constant table.
1130//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001131void UndefValue::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001132 getType()->getContext().pImpl->UndefValueConstants.remove(this);
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001133 destroyConstantImpl();
1134}
1135
Chris Lattner31b132c2009-10-28 00:01:44 +00001136//---- BlockAddress::get() implementation.
1137//
1138
1139BlockAddress *BlockAddress::get(BasicBlock *BB) {
1140 assert(BB->getParent() != 0 && "Block must have a parent");
1141 return get(BB->getParent(), BB);
1142}
1143
1144BlockAddress *BlockAddress::get(Function *F, BasicBlock *BB) {
1145 BlockAddress *&BA =
1146 F->getContext().pImpl->BlockAddresses[std::make_pair(F, BB)];
1147 if (BA == 0)
1148 BA = new BlockAddress(F, BB);
1149
1150 assert(BA->getFunction() == F && "Basic block moved between functions");
1151 return BA;
1152}
1153
1154BlockAddress::BlockAddress(Function *F, BasicBlock *BB)
1155: Constant(Type::getInt8PtrTy(F->getContext()), Value::BlockAddressVal,
1156 &Op<0>(), 2) {
Chris Lattnerc559a9f2009-11-01 03:03:03 +00001157 setOperand(0, F);
1158 setOperand(1, BB);
Chris Lattneraa99c942009-11-01 01:27:45 +00001159 BB->AdjustBlockAddressRefCount(1);
Chris Lattner31b132c2009-10-28 00:01:44 +00001160}
1161
1162
1163// destroyConstant - Remove the constant from the constant table.
1164//
1165void BlockAddress::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001166 getFunction()->getType()->getContext().pImpl
Chris Lattner31b132c2009-10-28 00:01:44 +00001167 ->BlockAddresses.erase(std::make_pair(getFunction(), getBasicBlock()));
Chris Lattneraa99c942009-11-01 01:27:45 +00001168 getBasicBlock()->AdjustBlockAddressRefCount(-1);
Chris Lattner31b132c2009-10-28 00:01:44 +00001169 destroyConstantImpl();
1170}
1171
1172void BlockAddress::replaceUsesOfWithOnConstant(Value *From, Value *To, Use *U) {
1173 // This could be replacing either the Basic Block or the Function. In either
1174 // case, we have to remove the map entry.
1175 Function *NewF = getFunction();
1176 BasicBlock *NewBB = getBasicBlock();
1177
1178 if (U == &Op<0>())
1179 NewF = cast<Function>(To);
1180 else
1181 NewBB = cast<BasicBlock>(To);
1182
1183 // See if the 'new' entry already exists, if not, just update this in place
1184 // and return early.
1185 BlockAddress *&NewBA =
1186 getContext().pImpl->BlockAddresses[std::make_pair(NewF, NewBB)];
1187 if (NewBA == 0) {
Chris Lattnerc559a9f2009-11-01 03:03:03 +00001188 getBasicBlock()->AdjustBlockAddressRefCount(-1);
1189
Chris Lattner31b132c2009-10-28 00:01:44 +00001190 // Remove the old entry, this can't cause the map to rehash (just a
1191 // tombstone will get added).
1192 getContext().pImpl->BlockAddresses.erase(std::make_pair(getFunction(),
1193 getBasicBlock()));
1194 NewBA = this;
Chris Lattnerc559a9f2009-11-01 03:03:03 +00001195 setOperand(0, NewF);
1196 setOperand(1, NewBB);
1197 getBasicBlock()->AdjustBlockAddressRefCount(1);
Chris Lattner31b132c2009-10-28 00:01:44 +00001198 return;
1199 }
1200
1201 // Otherwise, I do need to replace this with an existing value.
1202 assert(NewBA != this && "I didn't contain From!");
1203
1204 // Everyone using this now uses the replacement.
1205 uncheckedReplaceAllUsesWith(NewBA);
1206
1207 destroyConstant();
1208}
1209
1210//---- ConstantExpr::get() implementations.
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001211//
Reid Spencer8d9336d2006-12-31 05:26:44 +00001212
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001213/// This is a utility function to handle folding of casts and lookup of the
Duncan Sands7d6c8ae2008-03-30 19:38:55 +00001214/// cast in the ExprConstants map. It is used by the various get* methods below.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001215static inline Constant *getFoldedCast(
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001216 Instruction::CastOps opc, Constant *C, const Type *Ty) {
Chris Lattner815ae2b2003-10-07 22:19:19 +00001217 assert(Ty->isFirstClassType() && "Cannot cast to an aggregate type!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001218 // Fold a few common cases
Chris Lattnerf5edeeb2010-02-01 20:48:08 +00001219 if (Constant *FC = ConstantFoldCastInstruction(opc, C, Ty))
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001220 return FC;
Chris Lattneracdbe712003-04-17 19:24:48 +00001221
Owen Anderson1584a292009-08-04 20:25:11 +00001222 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
1223
Vikram S. Adve4c485332002-07-15 18:19:33 +00001224 // Look up the constant in the table first to ensure uniqueness
Chris Lattner2b383d2e2003-05-13 21:37:02 +00001225 std::vector<Constant*> argVec(1, C);
Reid Spenceree3c9912006-12-04 05:19:50 +00001226 ExprMapKeyType Key(opc, argVec);
Owen Anderson2d7231d2009-06-17 18:40:29 +00001227
Owen Anderson1584a292009-08-04 20:25:11 +00001228 return pImpl->ExprConstants.getOrCreate(Ty, Key);
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001229}
Reid Spencerf37dc652006-12-05 19:14:13 +00001230
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001231Constant *ConstantExpr::getCast(unsigned oc, Constant *C, const Type *Ty) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001232 Instruction::CastOps opc = Instruction::CastOps(oc);
1233 assert(Instruction::isCast(opc) && "opcode out of range");
1234 assert(C && Ty && "Null arguments to getCast");
Chris Lattner37bc78a2010-01-26 21:51:43 +00001235 assert(CastInst::castIsValid(opc, C, Ty) && "Invalid constantexpr cast!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001236
1237 switch (opc) {
Chris Lattner37bc78a2010-01-26 21:51:43 +00001238 default:
1239 llvm_unreachable("Invalid cast opcode");
1240 break;
1241 case Instruction::Trunc: return getTrunc(C, Ty);
1242 case Instruction::ZExt: return getZExt(C, Ty);
1243 case Instruction::SExt: return getSExt(C, Ty);
1244 case Instruction::FPTrunc: return getFPTrunc(C, Ty);
1245 case Instruction::FPExt: return getFPExtend(C, Ty);
1246 case Instruction::UIToFP: return getUIToFP(C, Ty);
1247 case Instruction::SIToFP: return getSIToFP(C, Ty);
1248 case Instruction::FPToUI: return getFPToUI(C, Ty);
1249 case Instruction::FPToSI: return getFPToSI(C, Ty);
1250 case Instruction::PtrToInt: return getPtrToInt(C, Ty);
1251 case Instruction::IntToPtr: return getIntToPtr(C, Ty);
1252 case Instruction::BitCast: return getBitCast(C, Ty);
Chris Lattner1ece6f82005-01-01 15:59:57 +00001253 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001254 return 0;
Reid Spencerf37dc652006-12-05 19:14:13 +00001255}
1256
Reid Spencer5c140882006-12-04 20:17:56 +00001257Constant *ConstantExpr::getZExtOrBitCast(Constant *C, const Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001258 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001259 return getBitCast(C, Ty);
1260 return getZExt(C, Ty);
Reid Spencer5c140882006-12-04 20:17:56 +00001261}
1262
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001263Constant *ConstantExpr::getSExtOrBitCast(Constant *C, const Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001264 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001265 return getBitCast(C, Ty);
1266 return getSExt(C, Ty);
Reid Spencer5c140882006-12-04 20:17:56 +00001267}
1268
1269Constant *ConstantExpr::getTruncOrBitCast(Constant *C, const Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001270 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001271 return getBitCast(C, Ty);
1272 return getTrunc(C, Ty);
Reid Spencer5c140882006-12-04 20:17:56 +00001273}
1274
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001275Constant *ConstantExpr::getPointerCast(Constant *S, const Type *Ty) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001276 assert(S->getType()->isPointerTy() && "Invalid cast");
1277 assert((Ty->isIntegerTy() || Ty->isPointerTy()) && "Invalid cast");
Reid Spencerbc245a02006-12-05 03:25:26 +00001278
Duncan Sands9dff9be2010-02-15 16:12:20 +00001279 if (Ty->isIntegerTy())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001280 return getPtrToInt(S, Ty);
1281 return getBitCast(S, Ty);
Reid Spencerbc245a02006-12-05 03:25:26 +00001282}
1283
Reid Spencer56521c42006-12-12 00:51:07 +00001284Constant *ConstantExpr::getIntegerCast(Constant *C, const Type *Ty,
1285 bool isSigned) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001286 assert(C->getType()->isIntOrIntVectorTy() &&
1287 Ty->isIntOrIntVectorTy() && "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001288 unsigned SrcBits = C->getType()->getScalarSizeInBits();
1289 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer56521c42006-12-12 00:51:07 +00001290 Instruction::CastOps opcode =
1291 (SrcBits == DstBits ? Instruction::BitCast :
1292 (SrcBits > DstBits ? Instruction::Trunc :
1293 (isSigned ? Instruction::SExt : Instruction::ZExt)));
1294 return getCast(opcode, C, Ty);
1295}
1296
1297Constant *ConstantExpr::getFPCast(Constant *C, const Type *Ty) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001298 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer56521c42006-12-12 00:51:07 +00001299 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001300 unsigned SrcBits = C->getType()->getScalarSizeInBits();
1301 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencerca104e82006-12-12 05:38:50 +00001302 if (SrcBits == DstBits)
1303 return C; // Avoid a useless cast
Reid Spencer56521c42006-12-12 00:51:07 +00001304 Instruction::CastOps opcode =
Jay Foad9f32cfd2011-01-27 14:44:55 +00001305 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt);
Reid Spencer56521c42006-12-12 00:51:07 +00001306 return getCast(opcode, C, Ty);
1307}
1308
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001309Constant *ConstantExpr::getTrunc(Constant *C, const Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001310#ifndef NDEBUG
1311 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1312 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1313#endif
1314 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001315 assert(C->getType()->isIntOrIntVectorTy() && "Trunc operand must be integer");
1316 assert(Ty->isIntOrIntVectorTy() && "Trunc produces only integral");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001317 assert(C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001318 "SrcTy must be larger than DestTy for Trunc!");
1319
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001320 return getFoldedCast(Instruction::Trunc, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001321}
1322
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001323Constant *ConstantExpr::getSExt(Constant *C, const Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001324#ifndef NDEBUG
1325 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1326 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1327#endif
1328 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001329 assert(C->getType()->isIntOrIntVectorTy() && "SExt operand must be integral");
1330 assert(Ty->isIntOrIntVectorTy() && "SExt produces only integer");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001331 assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001332 "SrcTy must be smaller than DestTy for SExt!");
1333
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001334 return getFoldedCast(Instruction::SExt, C, Ty);
Chris Lattnerdd284742004-04-04 23:20:30 +00001335}
1336
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001337Constant *ConstantExpr::getZExt(Constant *C, const Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001338#ifndef NDEBUG
1339 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1340 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1341#endif
1342 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001343 assert(C->getType()->isIntOrIntVectorTy() && "ZEXt operand must be integral");
1344 assert(Ty->isIntOrIntVectorTy() && "ZExt produces only integer");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001345 assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001346 "SrcTy must be smaller than DestTy for ZExt!");
1347
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001348 return getFoldedCast(Instruction::ZExt, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001349}
1350
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001351Constant *ConstantExpr::getFPTrunc(Constant *C, const Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001352#ifndef NDEBUG
1353 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1354 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1355#endif
1356 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001357 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001358 C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001359 "This is an illegal floating point truncation!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001360 return getFoldedCast(Instruction::FPTrunc, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001361}
1362
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001363Constant *ConstantExpr::getFPExtend(Constant *C, const Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001364#ifndef NDEBUG
1365 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1366 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1367#endif
1368 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001369 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001370 C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001371 "This is an illegal floating point extension!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001372 return getFoldedCast(Instruction::FPExt, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001373}
1374
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001375Constant *ConstantExpr::getUIToFP(Constant *C, const Type *Ty) {
Devang Pateld26344d2008-11-03 23:20:04 +00001376#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001377 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1378 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001379#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001380 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001381 assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00001382 "This is an illegal uint to floating point cast!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001383 return getFoldedCast(Instruction::UIToFP, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001384}
1385
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001386Constant *ConstantExpr::getSIToFP(Constant *C, const Type *Ty) {
Devang Pateld26344d2008-11-03 23:20:04 +00001387#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001388 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1389 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001390#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001391 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001392 assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001393 "This is an illegal sint to floating point cast!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001394 return getFoldedCast(Instruction::SIToFP, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001395}
1396
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001397Constant *ConstantExpr::getFPToUI(Constant *C, const Type *Ty) {
Devang Pateld26344d2008-11-03 23:20:04 +00001398#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001399 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1400 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001401#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001402 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001403 assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00001404 "This is an illegal floating point to uint cast!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001405 return getFoldedCast(Instruction::FPToUI, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001406}
1407
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001408Constant *ConstantExpr::getFPToSI(Constant *C, const Type *Ty) {
Devang Pateld26344d2008-11-03 23:20:04 +00001409#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001410 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1411 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001412#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001413 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001414 assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00001415 "This is an illegal floating point to sint cast!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001416 return getFoldedCast(Instruction::FPToSI, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001417}
1418
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001419Constant *ConstantExpr::getPtrToInt(Constant *C, const Type *DstTy) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001420 assert(C->getType()->isPointerTy() && "PtrToInt source must be pointer");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001421 assert(DstTy->isIntegerTy() && "PtrToInt destination must be integral");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001422 return getFoldedCast(Instruction::PtrToInt, C, DstTy);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001423}
1424
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001425Constant *ConstantExpr::getIntToPtr(Constant *C, const Type *DstTy) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001426 assert(C->getType()->isIntegerTy() && "IntToPtr source must be integral");
Duncan Sands19d0b472010-02-16 11:11:14 +00001427 assert(DstTy->isPointerTy() && "IntToPtr destination must be a pointer");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001428 return getFoldedCast(Instruction::IntToPtr, C, DstTy);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001429}
1430
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001431Constant *ConstantExpr::getBitCast(Constant *C, const Type *DstTy) {
Chris Lattner37bc78a2010-01-26 21:51:43 +00001432 assert(CastInst::castIsValid(Instruction::BitCast, C, DstTy) &&
1433 "Invalid constantexpr bitcast!");
Chris Lattnercbeda872009-03-21 06:55:54 +00001434
1435 // It is common to ask for a bitcast of a value to its own type, handle this
1436 // speedily.
1437 if (C->getType() == DstTy) return C;
1438
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001439 return getFoldedCast(Instruction::BitCast, C, DstTy);
Chris Lattnerdd284742004-04-04 23:20:30 +00001440}
1441
Chris Lattner887ecac2011-07-09 18:23:52 +00001442Constant *ConstantExpr::get(unsigned Opcode, Constant *C1, Constant *C2,
1443 unsigned Flags) {
1444 // Check the operands for consistency first.
Reid Spencer7eb55b32006-11-02 01:53:59 +00001445 assert(Opcode >= Instruction::BinaryOpsBegin &&
1446 Opcode < Instruction::BinaryOpsEnd &&
Chris Lattner38a9bcd2003-05-21 17:49:25 +00001447 "Invalid opcode in binary constant expression");
1448 assert(C1->getType() == C2->getType() &&
1449 "Operand types in binary constant expression should match");
Owen Anderson61794042009-06-17 20:10:08 +00001450
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001451#ifndef NDEBUG
1452 switch (Opcode) {
Dan Gohmana5b96452009-06-04 22:49:04 +00001453 case Instruction::Add:
Reid Spencer7eb55b32006-11-02 01:53:59 +00001454 case Instruction::Sub:
Dan Gohmana5b96452009-06-04 22:49:04 +00001455 case Instruction::Mul:
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001456 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001457 assert(C1->getType()->isIntOrIntVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001458 "Tried to create an integer operation on a non-integer type!");
1459 break;
1460 case Instruction::FAdd:
1461 case Instruction::FSub:
1462 case Instruction::FMul:
1463 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001464 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001465 "Tried to create a floating-point operation on a "
1466 "non-floating-point type!");
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001467 break;
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001468 case Instruction::UDiv:
1469 case Instruction::SDiv:
1470 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001471 assert(C1->getType()->isIntOrIntVectorTy() &&
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001472 "Tried to create an arithmetic operation on a non-arithmetic type!");
1473 break;
1474 case Instruction::FDiv:
1475 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001476 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001477 "Tried to create an arithmetic operation on a non-arithmetic type!");
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001478 break;
Reid Spencer7eb55b32006-11-02 01:53:59 +00001479 case Instruction::URem:
1480 case Instruction::SRem:
1481 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001482 assert(C1->getType()->isIntOrIntVectorTy() &&
Reid Spencer7eb55b32006-11-02 01:53:59 +00001483 "Tried to create an arithmetic operation on a non-arithmetic type!");
1484 break;
1485 case Instruction::FRem:
1486 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001487 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001488 "Tried to create an arithmetic operation on a non-arithmetic type!");
Reid Spencer7eb55b32006-11-02 01:53:59 +00001489 break;
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001490 case Instruction::And:
1491 case Instruction::Or:
1492 case Instruction::Xor:
1493 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001494 assert(C1->getType()->isIntOrIntVectorTy() &&
Misha Brukman3852f652005-01-27 06:46:38 +00001495 "Tried to create a logical operation on a non-integral type!");
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001496 break;
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001497 case Instruction::Shl:
Reid Spencerfdff9382006-11-08 06:47:33 +00001498 case Instruction::LShr:
1499 case Instruction::AShr:
Reid Spencer2341c222007-02-02 02:16:23 +00001500 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001501 assert(C1->getType()->isIntOrIntVectorTy() &&
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001502 "Tried to create a shift operation on a non-integer type!");
1503 break;
1504 default:
1505 break;
1506 }
1507#endif
1508
Chris Lattner887ecac2011-07-09 18:23:52 +00001509 if (Constant *FC = ConstantFoldBinaryInstruction(Opcode, C1, C2))
1510 return FC; // Fold a few common cases.
1511
1512 std::vector<Constant*> argVec(1, C1);
1513 argVec.push_back(C2);
1514 ExprMapKeyType Key(Opcode, argVec, 0, Flags);
1515
1516 LLVMContextImpl *pImpl = C1->getContext().pImpl;
1517 return pImpl->ExprConstants.getOrCreate(C1->getType(), Key);
Reid Spencera009d0d2006-12-04 21:35:24 +00001518}
1519
Chris Lattnera676c0f2011-02-07 16:40:21 +00001520Constant *ConstantExpr::getSizeOf(const Type* Ty) {
Owen Anderson487375e2009-07-29 18:55:55 +00001521 // sizeof is implemented as: (i64) gep (Ty*)null, 1
1522 // Note that a non-inbounds gep is used, as null isn't within any object.
Owen Anderson55f1c092009-08-13 21:58:54 +00001523 Constant *GEPIdx = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
Owen Anderson487375e2009-07-29 18:55:55 +00001524 Constant *GEP = getGetElementPtr(
Owen Anderson5a1acd92009-07-31 20:28:14 +00001525 Constant::getNullValue(PointerType::getUnqual(Ty)), &GEPIdx, 1);
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001526 return getPtrToInt(GEP,
1527 Type::getInt64Ty(Ty->getContext()));
Owen Anderson487375e2009-07-29 18:55:55 +00001528}
1529
Chris Lattnera676c0f2011-02-07 16:40:21 +00001530Constant *ConstantExpr::getAlignOf(const Type* Ty) {
Dan Gohmancf913832010-01-28 02:15:55 +00001531 // alignof is implemented as: (i64) gep ({i1,Ty}*)null, 0, 1
Dan Gohman50c09d02009-08-11 17:57:01 +00001532 // Note that a non-inbounds gep is used, as null isn't within any object.
Chris Lattnerf3f545e2011-06-18 22:48:56 +00001533 const Type *AligningTy =
1534 StructType::get(Type::getInt1Ty(Ty->getContext()), Ty, NULL);
Owen Anderson5a1acd92009-07-31 20:28:14 +00001535 Constant *NullPtr = Constant::getNullValue(AligningTy->getPointerTo());
Dan Gohmana9be7392010-01-28 02:43:22 +00001536 Constant *Zero = ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0);
Owen Anderson55f1c092009-08-13 21:58:54 +00001537 Constant *One = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
Owen Anderson487375e2009-07-29 18:55:55 +00001538 Constant *Indices[2] = { Zero, One };
1539 Constant *GEP = getGetElementPtr(NullPtr, Indices, 2);
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001540 return getPtrToInt(GEP,
1541 Type::getInt64Ty(Ty->getContext()));
Owen Anderson487375e2009-07-29 18:55:55 +00001542}
1543
Chris Lattnera676c0f2011-02-07 16:40:21 +00001544Constant *ConstantExpr::getOffsetOf(const StructType* STy, unsigned FieldNo) {
Dan Gohmanede94e62010-02-01 16:37:38 +00001545 return getOffsetOf(STy, ConstantInt::get(Type::getInt32Ty(STy->getContext()),
1546 FieldNo));
1547}
1548
Chris Lattnera676c0f2011-02-07 16:40:21 +00001549Constant *ConstantExpr::getOffsetOf(const Type* Ty, Constant *FieldNo) {
Dan Gohmanff3af7252009-08-16 21:26:11 +00001550 // offsetof is implemented as: (i64) gep (Ty*)null, 0, FieldNo
1551 // Note that a non-inbounds gep is used, as null isn't within any object.
1552 Constant *GEPIdx[] = {
Dan Gohmanede94e62010-02-01 16:37:38 +00001553 ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0),
1554 FieldNo
Dan Gohmanff3af7252009-08-16 21:26:11 +00001555 };
1556 Constant *GEP = getGetElementPtr(
Dan Gohmanede94e62010-02-01 16:37:38 +00001557 Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx, 2);
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001558 return getPtrToInt(GEP,
1559 Type::getInt64Ty(Ty->getContext()));
Dan Gohmanff3af7252009-08-16 21:26:11 +00001560}
Owen Anderson487375e2009-07-29 18:55:55 +00001561
Chris Lattner887ecac2011-07-09 18:23:52 +00001562Constant *ConstantExpr::getCompare(unsigned short Predicate,
1563 Constant *C1, Constant *C2) {
Reid Spencera009d0d2006-12-04 21:35:24 +00001564 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Chris Lattner887ecac2011-07-09 18:23:52 +00001565
1566 switch (Predicate) {
1567 default: llvm_unreachable("Invalid CmpInst predicate");
1568 case CmpInst::FCMP_FALSE: case CmpInst::FCMP_OEQ: case CmpInst::FCMP_OGT:
1569 case CmpInst::FCMP_OGE: case CmpInst::FCMP_OLT: case CmpInst::FCMP_OLE:
1570 case CmpInst::FCMP_ONE: case CmpInst::FCMP_ORD: case CmpInst::FCMP_UNO:
1571 case CmpInst::FCMP_UEQ: case CmpInst::FCMP_UGT: case CmpInst::FCMP_UGE:
1572 case CmpInst::FCMP_ULT: case CmpInst::FCMP_ULE: case CmpInst::FCMP_UNE:
1573 case CmpInst::FCMP_TRUE:
1574 return getFCmp(Predicate, C1, C2);
1575
1576 case CmpInst::ICMP_EQ: case CmpInst::ICMP_NE: case CmpInst::ICMP_UGT:
1577 case CmpInst::ICMP_UGE: case CmpInst::ICMP_ULT: case CmpInst::ICMP_ULE:
1578 case CmpInst::ICMP_SGT: case CmpInst::ICMP_SGE: case CmpInst::ICMP_SLT:
1579 case CmpInst::ICMP_SLE:
1580 return getICmp(Predicate, C1, C2);
1581 }
Chris Lattner29ca2c62004-08-04 18:50:09 +00001582}
1583
Chris Lattner887ecac2011-07-09 18:23:52 +00001584Constant *ConstantExpr::getSelect(Constant *C, Constant *V1, Constant *V2) {
Chris Lattner41632132008-12-29 00:16:12 +00001585 assert(!SelectInst::areInvalidOperands(C, V1, V2)&&"Invalid select operands");
Chris Lattner6e415c02004-03-12 05:54:04 +00001586
Chris Lattner887ecac2011-07-09 18:23:52 +00001587 if (Constant *SC = ConstantFoldSelectInstruction(C, V1, V2))
1588 return SC; // Fold common cases
Chris Lattner6e415c02004-03-12 05:54:04 +00001589
1590 std::vector<Constant*> argVec(3, C);
1591 argVec[1] = V1;
1592 argVec[2] = V2;
Reid Spenceree3c9912006-12-04 05:19:50 +00001593 ExprMapKeyType Key(Instruction::Select, argVec);
Owen Anderson61794042009-06-17 20:10:08 +00001594
Chris Lattner887ecac2011-07-09 18:23:52 +00001595 LLVMContextImpl *pImpl = C->getContext().pImpl;
1596 return pImpl->ExprConstants.getOrCreate(V1->getType(), Key);
Chris Lattner6e415c02004-03-12 05:54:04 +00001597}
1598
Chris Lattner887ecac2011-07-09 18:23:52 +00001599Constant *ConstantExpr::getGetElementPtr(Constant *C, Value* const *Idxs,
1600 unsigned NumIdx, bool InBounds) {
Chris Lattner94c8d292011-02-11 05:34:33 +00001601 if (Constant *FC = ConstantFoldGetElementPtr(C, InBounds, Idxs, NumIdx))
1602 return FC; // Fold a few common cases.
Dan Gohman1b849082009-09-07 23:54:19 +00001603
Chris Lattner887ecac2011-07-09 18:23:52 +00001604 // Get the result type of the getelementptr!
1605 const Type *Ty =
1606 GetElementPtrInst::getIndexedType(C->getType(), Idxs, Idxs+NumIdx);
1607 assert(Ty && "GEP indices invalid!");
1608 unsigned AS = cast<PointerType>(C->getType())->getAddressSpace();
1609 Type *ReqTy = Ty->getPointerTo(AS);
1610
Duncan Sands19d0b472010-02-16 11:11:14 +00001611 assert(C->getType()->isPointerTy() &&
Dan Gohman1b849082009-09-07 23:54:19 +00001612 "Non-pointer type for constant GetElementPtr expression");
1613 // Look up the constant in the table first to ensure uniqueness
1614 std::vector<Constant*> ArgVec;
1615 ArgVec.reserve(NumIdx+1);
1616 ArgVec.push_back(C);
1617 for (unsigned i = 0; i != NumIdx; ++i)
1618 ArgVec.push_back(cast<Constant>(Idxs[i]));
1619 const ExprMapKeyType Key(Instruction::GetElementPtr, ArgVec, 0,
Chris Lattner94c8d292011-02-11 05:34:33 +00001620 InBounds ? GEPOperator::IsInBounds : 0);
Chris Lattner887ecac2011-07-09 18:23:52 +00001621
1622 LLVMContextImpl *pImpl = C->getContext().pImpl;
Dan Gohman1b849082009-09-07 23:54:19 +00001623 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
1624}
1625
Reid Spenceree3c9912006-12-04 05:19:50 +00001626Constant *
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001627ConstantExpr::getICmp(unsigned short pred, Constant *LHS, Constant *RHS) {
Reid Spenceree3c9912006-12-04 05:19:50 +00001628 assert(LHS->getType() == RHS->getType());
1629 assert(pred >= ICmpInst::FIRST_ICMP_PREDICATE &&
1630 pred <= ICmpInst::LAST_ICMP_PREDICATE && "Invalid ICmp Predicate");
1631
Chris Lattnerf5edeeb2010-02-01 20:48:08 +00001632 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
Reid Spenceree3c9912006-12-04 05:19:50 +00001633 return FC; // Fold a few common cases...
1634
1635 // Look up the constant in the table first to ensure uniqueness
1636 std::vector<Constant*> ArgVec;
1637 ArgVec.push_back(LHS);
1638 ArgVec.push_back(RHS);
Reid Spencerb1537492006-12-24 18:42:29 +00001639 // Get the key type with both the opcode and predicate
Reid Spenceree3c9912006-12-04 05:19:50 +00001640 const ExprMapKeyType Key(Instruction::ICmp, ArgVec, pred);
Owen Anderson61794042009-06-17 20:10:08 +00001641
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001642 const Type *ResultTy = Type::getInt1Ty(LHS->getContext());
1643 if (const VectorType *VT = dyn_cast<VectorType>(LHS->getType()))
1644 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
1645
Owen Anderson1584a292009-08-04 20:25:11 +00001646 LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl;
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001647 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
Reid Spenceree3c9912006-12-04 05:19:50 +00001648}
1649
1650Constant *
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001651ConstantExpr::getFCmp(unsigned short pred, Constant *LHS, Constant *RHS) {
Reid Spenceree3c9912006-12-04 05:19:50 +00001652 assert(LHS->getType() == RHS->getType());
1653 assert(pred <= FCmpInst::LAST_FCMP_PREDICATE && "Invalid FCmp Predicate");
1654
Chris Lattnerf5edeeb2010-02-01 20:48:08 +00001655 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
Reid Spenceree3c9912006-12-04 05:19:50 +00001656 return FC; // Fold a few common cases...
1657
1658 // Look up the constant in the table first to ensure uniqueness
1659 std::vector<Constant*> ArgVec;
1660 ArgVec.push_back(LHS);
1661 ArgVec.push_back(RHS);
Reid Spencerb1537492006-12-24 18:42:29 +00001662 // Get the key type with both the opcode and predicate
Reid Spenceree3c9912006-12-04 05:19:50 +00001663 const ExprMapKeyType Key(Instruction::FCmp, ArgVec, pred);
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001664
1665 const Type *ResultTy = Type::getInt1Ty(LHS->getContext());
1666 if (const VectorType *VT = dyn_cast<VectorType>(LHS->getType()))
1667 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
1668
Owen Anderson1584a292009-08-04 20:25:11 +00001669 LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl;
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001670 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
Reid Spenceree3c9912006-12-04 05:19:50 +00001671}
1672
Robert Bocchino23004482006-01-10 19:05:34 +00001673Constant *ConstantExpr::getExtractElement(Constant *Val, Constant *Idx) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001674 assert(Val->getType()->isVectorTy() &&
Reid Spencer09575ba2007-02-15 03:39:18 +00001675 "Tried to create extractelement operation on non-vector type!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001676 assert(Idx->getType()->isIntegerTy(32) &&
Reid Spencer2546b762007-01-26 07:37:34 +00001677 "Extractelement index must be i32 type!");
Chris Lattner887ecac2011-07-09 18:23:52 +00001678
1679 if (Constant *FC = ConstantFoldExtractElementInstruction(Val, Idx))
Chris Lattner09660c92009-12-30 20:25:09 +00001680 return FC; // Fold a few common cases.
Chris Lattner887ecac2011-07-09 18:23:52 +00001681
Robert Bocchinoca27f032006-01-17 20:07:22 +00001682 // Look up the constant in the table first to ensure uniqueness
1683 std::vector<Constant*> ArgVec(1, Val);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001684 ArgVec.push_back(Idx);
Chris Lattner887ecac2011-07-09 18:23:52 +00001685 const ExprMapKeyType Key(Instruction::ExtractElement,ArgVec);
Owen Anderson61794042009-06-17 20:10:08 +00001686
Chris Lattner887ecac2011-07-09 18:23:52 +00001687 LLVMContextImpl *pImpl = Val->getContext().pImpl;
1688 Type *ReqTy = cast<VectorType>(Val->getType())->getElementType();
Owen Anderson1584a292009-08-04 20:25:11 +00001689 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001690}
1691
1692Constant *ConstantExpr::getInsertElement(Constant *Val, Constant *Elt,
1693 Constant *Idx) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001694 assert(Val->getType()->isVectorTy() &&
Reid Spencer09575ba2007-02-15 03:39:18 +00001695 "Tried to create insertelement operation on non-vector type!");
Reid Spencerd84d35b2007-02-15 02:26:10 +00001696 assert(Elt->getType() == cast<VectorType>(Val->getType())->getElementType()
Robert Bocchinoca27f032006-01-17 20:07:22 +00001697 && "Insertelement types must match!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001698 assert(Idx->getType()->isIntegerTy(32) &&
Reid Spencer2546b762007-01-26 07:37:34 +00001699 "Insertelement index must be i32 type!");
Robert Bocchinoca27f032006-01-17 20:07:22 +00001700
Chris Lattner887ecac2011-07-09 18:23:52 +00001701 if (Constant *FC = ConstantFoldInsertElementInstruction(Val, Elt, Idx))
1702 return FC; // Fold a few common cases.
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001703 // Look up the constant in the table first to ensure uniqueness
Chris Lattner887ecac2011-07-09 18:23:52 +00001704 std::vector<Constant*> ArgVec(1, Val);
1705 ArgVec.push_back(Elt);
1706 ArgVec.push_back(Idx);
1707 const ExprMapKeyType Key(Instruction::InsertElement,ArgVec);
Owen Anderson61794042009-06-17 20:10:08 +00001708
Chris Lattner887ecac2011-07-09 18:23:52 +00001709 LLVMContextImpl *pImpl = Val->getContext().pImpl;
1710 return pImpl->ExprConstants.getOrCreate(Val->getType(), Key);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001711}
1712
1713Constant *ConstantExpr::getShuffleVector(Constant *V1, Constant *V2,
1714 Constant *Mask) {
1715 assert(ShuffleVectorInst::isValidOperands(V1, V2, Mask) &&
1716 "Invalid shuffle vector constant expr operands!");
Nate Begeman94aa38d2009-02-12 21:28:33 +00001717
Chris Lattner887ecac2011-07-09 18:23:52 +00001718 if (Constant *FC = ConstantFoldShuffleVectorInstruction(V1, V2, Mask))
1719 return FC; // Fold a few common cases.
1720
Nate Begeman94aa38d2009-02-12 21:28:33 +00001721 unsigned NElts = cast<VectorType>(Mask->getType())->getNumElements();
1722 const Type *EltTy = cast<VectorType>(V1->getType())->getElementType();
1723 const Type *ShufTy = VectorType::get(EltTy, NElts);
Chris Lattner887ecac2011-07-09 18:23:52 +00001724
1725 // Look up the constant in the table first to ensure uniqueness
1726 std::vector<Constant*> ArgVec(1, V1);
1727 ArgVec.push_back(V2);
1728 ArgVec.push_back(Mask);
1729 const ExprMapKeyType Key(Instruction::ShuffleVector,ArgVec);
1730
1731 LLVMContextImpl *pImpl = ShufTy->getContext().pImpl;
1732 return pImpl->ExprConstants.getOrCreate(ShufTy, Key);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001733}
1734
Chris Lattner887ecac2011-07-09 18:23:52 +00001735Constant *ConstantExpr::getInsertValue(Constant *Agg, Constant *Val,
Jay Foad57aa6362011-07-13 10:26:04 +00001736 ArrayRef<unsigned> Idxs) {
1737 assert(ExtractValueInst::getIndexedType(Agg->getType(),
1738 Idxs) == Val->getType() &&
Dan Gohman12fce772008-05-15 19:50:34 +00001739 "insertvalue indices invalid!");
Dan Gohman0752bff2008-05-23 00:36:11 +00001740 assert(Agg->getType()->isFirstClassType() &&
Chris Lattner6ebfbf52011-07-12 05:26:21 +00001741 "Non-first-class type for constant insertvalue expression");
Jay Foad57aa6362011-07-13 10:26:04 +00001742 Constant *FC = ConstantFoldInsertValueInstruction(Agg, Val, Idxs);
Chris Lattner6ebfbf52011-07-12 05:26:21 +00001743 assert(FC && "insertvalue constant expr couldn't be folded!");
Dan Gohmand5d24f62008-07-21 23:30:30 +00001744 return FC;
Dan Gohman12fce772008-05-15 19:50:34 +00001745}
1746
Chris Lattner887ecac2011-07-09 18:23:52 +00001747Constant *ConstantExpr::getExtractValue(Constant *Agg,
Jay Foad57aa6362011-07-13 10:26:04 +00001748 ArrayRef<unsigned> Idxs) {
Dan Gohman0752bff2008-05-23 00:36:11 +00001749 assert(Agg->getType()->isFirstClassType() &&
Chris Lattner887ecac2011-07-09 18:23:52 +00001750 "Tried to create extractelement operation on non-first-class type!");
Dan Gohman12fce772008-05-15 19:50:34 +00001751
Jay Foad57aa6362011-07-13 10:26:04 +00001752 const Type *ReqTy = ExtractValueInst::getIndexedType(Agg->getType(), Idxs);
Chandler Carruth9db56b82011-07-10 09:45:35 +00001753 (void)ReqTy;
Chris Lattner887ecac2011-07-09 18:23:52 +00001754 assert(ReqTy && "extractvalue indices invalid!");
1755
Dan Gohman0752bff2008-05-23 00:36:11 +00001756 assert(Agg->getType()->isFirstClassType() &&
1757 "Non-first-class type for constant extractvalue expression");
Jay Foad57aa6362011-07-13 10:26:04 +00001758 Constant *FC = ConstantFoldExtractValueInstruction(Agg, Idxs);
Dan Gohmand5d24f62008-07-21 23:30:30 +00001759 assert(FC && "ExtractValue constant expr couldn't be folded!");
1760 return FC;
Dan Gohman12fce772008-05-15 19:50:34 +00001761}
1762
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001763Constant *ConstantExpr::getNeg(Constant *C, bool HasNUW, bool HasNSW) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001764 assert(C->getType()->isIntOrIntVectorTy() &&
Owen Anderson487375e2009-07-29 18:55:55 +00001765 "Cannot NEG a nonintegral value!");
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001766 return getSub(ConstantFP::getZeroValueForNegation(C->getType()),
1767 C, HasNUW, HasNSW);
Owen Anderson487375e2009-07-29 18:55:55 +00001768}
1769
Chris Lattnera676c0f2011-02-07 16:40:21 +00001770Constant *ConstantExpr::getFNeg(Constant *C) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001771 assert(C->getType()->isFPOrFPVectorTy() &&
Owen Anderson487375e2009-07-29 18:55:55 +00001772 "Cannot FNEG a non-floating-point value!");
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001773 return getFSub(ConstantFP::getZeroValueForNegation(C->getType()), C);
Owen Anderson487375e2009-07-29 18:55:55 +00001774}
1775
Chris Lattnera676c0f2011-02-07 16:40:21 +00001776Constant *ConstantExpr::getNot(Constant *C) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001777 assert(C->getType()->isIntOrIntVectorTy() &&
Owen Anderson487375e2009-07-29 18:55:55 +00001778 "Cannot NOT a nonintegral value!");
Owen Anderson5a1acd92009-07-31 20:28:14 +00001779 return get(Instruction::Xor, C, Constant::getAllOnesValue(C->getType()));
Owen Anderson487375e2009-07-29 18:55:55 +00001780}
1781
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001782Constant *ConstantExpr::getAdd(Constant *C1, Constant *C2,
1783 bool HasNUW, bool HasNSW) {
1784 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
1785 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
1786 return get(Instruction::Add, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00001787}
1788
Chris Lattnera676c0f2011-02-07 16:40:21 +00001789Constant *ConstantExpr::getFAdd(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001790 return get(Instruction::FAdd, C1, C2);
1791}
1792
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001793Constant *ConstantExpr::getSub(Constant *C1, Constant *C2,
1794 bool HasNUW, bool HasNSW) {
1795 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
1796 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
1797 return get(Instruction::Sub, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00001798}
1799
Chris Lattnera676c0f2011-02-07 16:40:21 +00001800Constant *ConstantExpr::getFSub(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001801 return get(Instruction::FSub, C1, C2);
1802}
1803
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001804Constant *ConstantExpr::getMul(Constant *C1, Constant *C2,
1805 bool HasNUW, bool HasNSW) {
1806 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
1807 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
1808 return get(Instruction::Mul, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00001809}
1810
Chris Lattnera676c0f2011-02-07 16:40:21 +00001811Constant *ConstantExpr::getFMul(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001812 return get(Instruction::FMul, C1, C2);
1813}
1814
Chris Lattner0d75eac2011-02-09 16:43:07 +00001815Constant *ConstantExpr::getUDiv(Constant *C1, Constant *C2, bool isExact) {
1816 return get(Instruction::UDiv, C1, C2,
1817 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00001818}
1819
Chris Lattner0d75eac2011-02-09 16:43:07 +00001820Constant *ConstantExpr::getSDiv(Constant *C1, Constant *C2, bool isExact) {
1821 return get(Instruction::SDiv, C1, C2,
1822 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00001823}
1824
Chris Lattnera676c0f2011-02-07 16:40:21 +00001825Constant *ConstantExpr::getFDiv(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001826 return get(Instruction::FDiv, C1, C2);
1827}
1828
Chris Lattnera676c0f2011-02-07 16:40:21 +00001829Constant *ConstantExpr::getURem(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001830 return get(Instruction::URem, C1, C2);
1831}
1832
Chris Lattnera676c0f2011-02-07 16:40:21 +00001833Constant *ConstantExpr::getSRem(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001834 return get(Instruction::SRem, C1, C2);
1835}
1836
Chris Lattnera676c0f2011-02-07 16:40:21 +00001837Constant *ConstantExpr::getFRem(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001838 return get(Instruction::FRem, C1, C2);
1839}
1840
Chris Lattnera676c0f2011-02-07 16:40:21 +00001841Constant *ConstantExpr::getAnd(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001842 return get(Instruction::And, C1, C2);
1843}
1844
Chris Lattnera676c0f2011-02-07 16:40:21 +00001845Constant *ConstantExpr::getOr(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001846 return get(Instruction::Or, C1, C2);
1847}
1848
Chris Lattnera676c0f2011-02-07 16:40:21 +00001849Constant *ConstantExpr::getXor(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001850 return get(Instruction::Xor, C1, C2);
1851}
1852
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001853Constant *ConstantExpr::getShl(Constant *C1, Constant *C2,
1854 bool HasNUW, bool HasNSW) {
1855 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
1856 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
1857 return get(Instruction::Shl, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00001858}
1859
Chris Lattner0d75eac2011-02-09 16:43:07 +00001860Constant *ConstantExpr::getLShr(Constant *C1, Constant *C2, bool isExact) {
1861 return get(Instruction::LShr, C1, C2,
1862 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00001863}
1864
Chris Lattner0d75eac2011-02-09 16:43:07 +00001865Constant *ConstantExpr::getAShr(Constant *C1, Constant *C2, bool isExact) {
1866 return get(Instruction::AShr, C1, C2,
1867 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00001868}
1869
Vikram S. Adve4c485332002-07-15 18:19:33 +00001870// destroyConstant - Remove the constant from the constant table...
1871//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001872void ConstantExpr::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001873 getType()->getContext().pImpl->ExprConstants.remove(this);
Vikram S. Adve4c485332002-07-15 18:19:33 +00001874 destroyConstantImpl();
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001875}
1876
Chris Lattner3cd8c562002-07-30 18:54:25 +00001877const char *ConstantExpr::getOpcodeName() const {
1878 return Instruction::getOpcodeName(getOpcode());
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001879}
Reid Spencer1ebe1ab2004-07-17 23:48:33 +00001880
Chris Lattnera3b94ba2010-03-30 20:48:48 +00001881
1882
1883GetElementPtrConstantExpr::
1884GetElementPtrConstantExpr(Constant *C, const std::vector<Constant*> &IdxList,
1885 const Type *DestTy)
1886 : ConstantExpr(DestTy, Instruction::GetElementPtr,
1887 OperandTraits<GetElementPtrConstantExpr>::op_end(this)
1888 - (IdxList.size()+1), IdxList.size()+1) {
1889 OperandList[0] = C;
1890 for (unsigned i = 0, E = IdxList.size(); i != E; ++i)
1891 OperandList[i+1] = IdxList[i];
1892}
1893
1894
Chris Lattnerc4062ba2005-10-03 21:58:36 +00001895//===----------------------------------------------------------------------===//
1896// replaceUsesOfWithOnConstant implementations
1897
Chris Lattner913849b2007-08-21 00:55:23 +00001898/// replaceUsesOfWithOnConstant - Update this constant array to change uses of
1899/// 'From' to be uses of 'To'. This must update the uniquing data structures
1900/// etc.
1901///
1902/// Note that we intentionally replace all uses of From with To here. Consider
1903/// a large array that uses 'From' 1000 times. By handling this case all here,
1904/// ConstantArray::replaceUsesOfWithOnConstant is only invoked once, and that
1905/// single invocation handles all 1000 uses. Handling them one at a time would
1906/// work, but would be really slow because it would have to unique each updated
1907/// array instance.
Chris Lattner31b132c2009-10-28 00:01:44 +00001908///
Chris Lattnerc4062ba2005-10-03 21:58:36 +00001909void ConstantArray::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattner7a1450d2005-10-04 18:13:04 +00001910 Use *U) {
Owen Andersonc2c79322009-07-28 18:32:17 +00001911 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
1912 Constant *ToC = cast<Constant>(To);
1913
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001914 LLVMContextImpl *pImpl = getType()->getContext().pImpl;
Owen Andersonc2c79322009-07-28 18:32:17 +00001915
Dan Gohmane4532f32009-09-15 15:58:07 +00001916 std::pair<LLVMContextImpl::ArrayConstantsTy::MapKey, ConstantArray*> Lookup;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001917 Lookup.first.first = cast<ArrayType>(getType());
Owen Andersonc2c79322009-07-28 18:32:17 +00001918 Lookup.second = this;
1919
1920 std::vector<Constant*> &Values = Lookup.first.second;
1921 Values.reserve(getNumOperands()); // Build replacement array.
1922
1923 // Fill values with the modified operands of the constant array. Also,
1924 // compute whether this turns into an all-zeros array.
1925 bool isAllZeros = false;
1926 unsigned NumUpdated = 0;
1927 if (!ToC->isNullValue()) {
1928 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
1929 Constant *Val = cast<Constant>(O->get());
1930 if (Val == From) {
1931 Val = ToC;
1932 ++NumUpdated;
1933 }
1934 Values.push_back(Val);
1935 }
1936 } else {
1937 isAllZeros = true;
1938 for (Use *O = OperandList, *E = OperandList+getNumOperands();O != E; ++O) {
1939 Constant *Val = cast<Constant>(O->get());
1940 if (Val == From) {
1941 Val = ToC;
1942 ++NumUpdated;
1943 }
1944 Values.push_back(Val);
1945 if (isAllZeros) isAllZeros = Val->isNullValue();
1946 }
1947 }
1948
1949 Constant *Replacement = 0;
1950 if (isAllZeros) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001951 Replacement = ConstantAggregateZero::get(getType());
Owen Andersonc2c79322009-07-28 18:32:17 +00001952 } else {
1953 // Check to see if we have this array type already.
Owen Andersonc2c79322009-07-28 18:32:17 +00001954 bool Exists;
1955 LLVMContextImpl::ArrayConstantsTy::MapTy::iterator I =
1956 pImpl->ArrayConstants.InsertOrGetItem(Lookup, Exists);
1957
1958 if (Exists) {
Devang Patelf7188322009-09-03 01:39:20 +00001959 Replacement = I->second;
Owen Andersonc2c79322009-07-28 18:32:17 +00001960 } else {
1961 // Okay, the new shape doesn't exist in the system yet. Instead of
1962 // creating a new constant array, inserting it, replaceallusesof'ing the
1963 // old with the new, then deleting the old... just update the current one
1964 // in place!
1965 pImpl->ArrayConstants.MoveConstantToNewSlot(this, I);
1966
1967 // Update to the new value. Optimize for the case when we have a single
1968 // operand that we're changing, but handle bulk updates efficiently.
1969 if (NumUpdated == 1) {
1970 unsigned OperandToUpdate = U - OperandList;
1971 assert(getOperand(OperandToUpdate) == From &&
1972 "ReplaceAllUsesWith broken!");
1973 setOperand(OperandToUpdate, ToC);
1974 } else {
1975 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
1976 if (getOperand(i) == From)
1977 setOperand(i, ToC);
1978 }
1979 return;
1980 }
1981 }
Chris Lattnerb64419a2005-10-03 22:51:37 +00001982
1983 // Otherwise, I do need to replace this with an existing value.
Chris Lattnerc4062ba2005-10-03 21:58:36 +00001984 assert(Replacement != this && "I didn't contain From!");
1985
Chris Lattner7a1450d2005-10-04 18:13:04 +00001986 // Everyone using this now uses the replacement.
1987 uncheckedReplaceAllUsesWith(Replacement);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00001988
1989 // Delete the old constant!
1990 destroyConstant();
1991}
1992
1993void ConstantStruct::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattner7a1450d2005-10-04 18:13:04 +00001994 Use *U) {
Owen Anderson45308b52009-07-27 22:29:26 +00001995 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
1996 Constant *ToC = cast<Constant>(To);
1997
1998 unsigned OperandToUpdate = U-OperandList;
1999 assert(getOperand(OperandToUpdate) == From && "ReplaceAllUsesWith broken!");
2000
Dan Gohmane4532f32009-09-15 15:58:07 +00002001 std::pair<LLVMContextImpl::StructConstantsTy::MapKey, ConstantStruct*> Lookup;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002002 Lookup.first.first = cast<StructType>(getType());
Owen Anderson45308b52009-07-27 22:29:26 +00002003 Lookup.second = this;
2004 std::vector<Constant*> &Values = Lookup.first.second;
2005 Values.reserve(getNumOperands()); // Build replacement struct.
2006
2007
2008 // Fill values with the modified operands of the constant struct. Also,
2009 // compute whether this turns into an all-zeros struct.
2010 bool isAllZeros = false;
2011 if (!ToC->isNullValue()) {
2012 for (Use *O = OperandList, *E = OperandList + getNumOperands(); O != E; ++O)
2013 Values.push_back(cast<Constant>(O->get()));
2014 } else {
2015 isAllZeros = true;
2016 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2017 Constant *Val = cast<Constant>(O->get());
2018 Values.push_back(Val);
2019 if (isAllZeros) isAllZeros = Val->isNullValue();
2020 }
2021 }
2022 Values[OperandToUpdate] = ToC;
2023
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002024 LLVMContextImpl *pImpl = getContext().pImpl;
Owen Anderson45308b52009-07-27 22:29:26 +00002025
2026 Constant *Replacement = 0;
2027 if (isAllZeros) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002028 Replacement = ConstantAggregateZero::get(getType());
Owen Anderson45308b52009-07-27 22:29:26 +00002029 } else {
Chris Lattner718da702010-07-17 06:13:52 +00002030 // Check to see if we have this struct type already.
Owen Anderson45308b52009-07-27 22:29:26 +00002031 bool Exists;
2032 LLVMContextImpl::StructConstantsTy::MapTy::iterator I =
2033 pImpl->StructConstants.InsertOrGetItem(Lookup, Exists);
2034
2035 if (Exists) {
Devang Patelf7188322009-09-03 01:39:20 +00002036 Replacement = I->second;
Owen Anderson45308b52009-07-27 22:29:26 +00002037 } else {
2038 // Okay, the new shape doesn't exist in the system yet. Instead of
2039 // creating a new constant struct, inserting it, replaceallusesof'ing the
2040 // old with the new, then deleting the old... just update the current one
2041 // in place!
2042 pImpl->StructConstants.MoveConstantToNewSlot(this, I);
2043
2044 // Update to the new value.
2045 setOperand(OperandToUpdate, ToC);
2046 return;
2047 }
2048 }
2049
2050 assert(Replacement != this && "I didn't contain From!");
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002051
Chris Lattner7a1450d2005-10-04 18:13:04 +00002052 // Everyone using this now uses the replacement.
2053 uncheckedReplaceAllUsesWith(Replacement);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002054
2055 // Delete the old constant!
2056 destroyConstant();
2057}
2058
Reid Spencerd84d35b2007-02-15 02:26:10 +00002059void ConstantVector::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattner7a1450d2005-10-04 18:13:04 +00002060 Use *U) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002061 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2062
2063 std::vector<Constant*> Values;
2064 Values.reserve(getNumOperands()); // Build replacement array...
2065 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
2066 Constant *Val = getOperand(i);
2067 if (Val == From) Val = cast<Constant>(To);
2068 Values.push_back(Val);
2069 }
2070
Jay Foadb8a8bed32011-06-22 09:10:19 +00002071 Constant *Replacement = get(Values);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002072 assert(Replacement != this && "I didn't contain From!");
2073
Chris Lattner7a1450d2005-10-04 18:13:04 +00002074 // Everyone using this now uses the replacement.
2075 uncheckedReplaceAllUsesWith(Replacement);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002076
2077 // Delete the old constant!
2078 destroyConstant();
2079}
2080
2081void ConstantExpr::replaceUsesOfWithOnConstant(Value *From, Value *ToV,
Chris Lattner7a1450d2005-10-04 18:13:04 +00002082 Use *U) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002083 assert(isa<Constant>(ToV) && "Cannot make Constant refer to non-constant!");
2084 Constant *To = cast<Constant>(ToV);
2085
2086 Constant *Replacement = 0;
2087 if (getOpcode() == Instruction::GetElementPtr) {
Chris Lattnerb5d70302007-02-19 20:01:23 +00002088 SmallVector<Constant*, 8> Indices;
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002089 Constant *Pointer = getOperand(0);
2090 Indices.reserve(getNumOperands()-1);
2091 if (Pointer == From) Pointer = To;
2092
2093 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
2094 Constant *Val = getOperand(i);
2095 if (Val == From) Val = To;
2096 Indices.push_back(Val);
2097 }
Chris Lattnerb5d70302007-02-19 20:01:23 +00002098 Replacement = ConstantExpr::getGetElementPtr(Pointer,
Chris Lattner603af182011-02-11 05:37:21 +00002099 &Indices[0], Indices.size(),
2100 cast<GEPOperator>(this)->isInBounds());
Dan Gohman12fce772008-05-15 19:50:34 +00002101 } else if (getOpcode() == Instruction::ExtractValue) {
Dan Gohman12fce772008-05-15 19:50:34 +00002102 Constant *Agg = getOperand(0);
Dan Gohman12fce772008-05-15 19:50:34 +00002103 if (Agg == From) Agg = To;
2104
Jay Foad0091fe82011-04-13 15:22:40 +00002105 ArrayRef<unsigned> Indices = getIndices();
Jay Foad57aa6362011-07-13 10:26:04 +00002106 Replacement = ConstantExpr::getExtractValue(Agg, Indices);
Dan Gohman12fce772008-05-15 19:50:34 +00002107 } else if (getOpcode() == Instruction::InsertValue) {
Dan Gohman12fce772008-05-15 19:50:34 +00002108 Constant *Agg = getOperand(0);
2109 Constant *Val = getOperand(1);
Dan Gohman12fce772008-05-15 19:50:34 +00002110 if (Agg == From) Agg = To;
2111 if (Val == From) Val = To;
2112
Jay Foad0091fe82011-04-13 15:22:40 +00002113 ArrayRef<unsigned> Indices = getIndices();
Jay Foad57aa6362011-07-13 10:26:04 +00002114 Replacement = ConstantExpr::getInsertValue(Agg, Val, Indices);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002115 } else if (isCast()) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002116 assert(getOperand(0) == From && "Cast only has one use!");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002117 Replacement = ConstantExpr::getCast(getOpcode(), To, getType());
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002118 } else if (getOpcode() == Instruction::Select) {
2119 Constant *C1 = getOperand(0);
2120 Constant *C2 = getOperand(1);
2121 Constant *C3 = getOperand(2);
2122 if (C1 == From) C1 = To;
2123 if (C2 == From) C2 = To;
2124 if (C3 == From) C3 = To;
2125 Replacement = ConstantExpr::getSelect(C1, C2, C3);
Robert Bocchino23004482006-01-10 19:05:34 +00002126 } else if (getOpcode() == Instruction::ExtractElement) {
2127 Constant *C1 = getOperand(0);
2128 Constant *C2 = getOperand(1);
2129 if (C1 == From) C1 = To;
2130 if (C2 == From) C2 = To;
2131 Replacement = ConstantExpr::getExtractElement(C1, C2);
Chris Lattnera93b4b52006-04-08 05:09:48 +00002132 } else if (getOpcode() == Instruction::InsertElement) {
2133 Constant *C1 = getOperand(0);
2134 Constant *C2 = getOperand(1);
2135 Constant *C3 = getOperand(1);
2136 if (C1 == From) C1 = To;
2137 if (C2 == From) C2 = To;
2138 if (C3 == From) C3 = To;
2139 Replacement = ConstantExpr::getInsertElement(C1, C2, C3);
2140 } else if (getOpcode() == Instruction::ShuffleVector) {
2141 Constant *C1 = getOperand(0);
2142 Constant *C2 = getOperand(1);
2143 Constant *C3 = getOperand(2);
2144 if (C1 == From) C1 = To;
2145 if (C2 == From) C2 = To;
2146 if (C3 == From) C3 = To;
2147 Replacement = ConstantExpr::getShuffleVector(C1, C2, C3);
Reid Spenceree3c9912006-12-04 05:19:50 +00002148 } else if (isCompare()) {
2149 Constant *C1 = getOperand(0);
2150 Constant *C2 = getOperand(1);
2151 if (C1 == From) C1 = To;
2152 if (C2 == From) C2 = To;
2153 if (getOpcode() == Instruction::ICmp)
2154 Replacement = ConstantExpr::getICmp(getPredicate(), C1, C2);
Chris Lattnereab49262008-07-14 05:17:31 +00002155 else {
Nick Lewyckya21d3da2009-07-08 03:04:38 +00002156 assert(getOpcode() == Instruction::FCmp);
2157 Replacement = ConstantExpr::getFCmp(getPredicate(), C1, C2);
Chris Lattnereab49262008-07-14 05:17:31 +00002158 }
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002159 } else if (getNumOperands() == 2) {
2160 Constant *C1 = getOperand(0);
2161 Constant *C2 = getOperand(1);
2162 if (C1 == From) C1 = To;
2163 if (C2 == From) C2 = To;
Chris Lattnerb9c86512009-12-29 02:14:09 +00002164 Replacement = ConstantExpr::get(getOpcode(), C1, C2, SubclassOptionalData);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002165 } else {
Torok Edwinfbcc6632009-07-14 16:55:14 +00002166 llvm_unreachable("Unknown ConstantExpr type!");
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002167 return;
2168 }
2169
2170 assert(Replacement != this && "I didn't contain From!");
2171
Chris Lattner7a1450d2005-10-04 18:13:04 +00002172 // Everyone using this now uses the replacement.
2173 uncheckedReplaceAllUsesWith(Replacement);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002174
2175 // Delete the old constant!
2176 destroyConstant();
Matthijs Kooijmanba5d7ef2008-07-03 07:46:41 +00002177}