blob: f17f9a26ca0c8a531100c2fce3cb1c8921df425d [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
Nadav Rotem365af6f2011-08-24 20:18:38 +000065bool Constant::isAllOnesValue() const {
66 // Check for -1 integers
67 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
68 return CI->isMinusOne();
69
70 // Check for FP which are bitcasted from -1 integers
71 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
72 return CFP->getValueAPF().bitcastToAPInt().isAllOnesValue();
73
Benjamin Kramer42d098e2011-11-14 19:12:20 +000074 // Check for constant vectors which are splats of -1 values.
Nadav Rotem365af6f2011-08-24 20:18:38 +000075 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
Benjamin Kramer42d098e2011-11-14 19:12:20 +000076 if (Constant *Splat = CV->getSplatValue())
77 return Splat->isAllOnesValue();
Nadav Rotem365af6f2011-08-24 20:18:38 +000078
79 return false;
80}
Benjamin Kramer42d098e2011-11-14 19:12:20 +000081
Owen Anderson5a1acd92009-07-31 20:28:14 +000082// Constructor to create a '0' constant of arbitrary type...
Chris Lattner229907c2011-07-18 04:54:35 +000083Constant *Constant::getNullValue(Type *Ty) {
Owen Anderson5a1acd92009-07-31 20:28:14 +000084 switch (Ty->getTypeID()) {
85 case Type::IntegerTyID:
86 return ConstantInt::get(Ty, 0);
Dan Gohman518cda42011-12-17 00:04:22 +000087 case Type::HalfTyID:
88 return ConstantFP::get(Ty->getContext(),
89 APFloat::getZero(APFloat::IEEEhalf));
Owen Anderson5a1acd92009-07-31 20:28:14 +000090 case Type::FloatTyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +000091 return ConstantFP::get(Ty->getContext(),
92 APFloat::getZero(APFloat::IEEEsingle));
Owen Anderson5a1acd92009-07-31 20:28:14 +000093 case Type::DoubleTyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +000094 return ConstantFP::get(Ty->getContext(),
95 APFloat::getZero(APFloat::IEEEdouble));
Owen Anderson5a1acd92009-07-31 20:28:14 +000096 case Type::X86_FP80TyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +000097 return ConstantFP::get(Ty->getContext(),
98 APFloat::getZero(APFloat::x87DoubleExtended));
Owen Anderson5a1acd92009-07-31 20:28:14 +000099 case Type::FP128TyID:
100 return ConstantFP::get(Ty->getContext(),
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000101 APFloat::getZero(APFloat::IEEEquad));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000102 case Type::PPC_FP128TyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000103 return ConstantFP::get(Ty->getContext(),
Benjamin Kramer6f88fcb2010-12-04 14:43:08 +0000104 APFloat(APInt::getNullValue(128)));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000105 case Type::PointerTyID:
106 return ConstantPointerNull::get(cast<PointerType>(Ty));
107 case Type::StructTyID:
108 case Type::ArrayTyID:
109 case Type::VectorTyID:
110 return ConstantAggregateZero::get(Ty);
111 default:
112 // Function, Label, or Opaque type?
Richard Trieua318b8d2011-09-21 03:09:09 +0000113 assert(0 && "Cannot create a null constant of that type!");
Owen Anderson5a1acd92009-07-31 20:28:14 +0000114 return 0;
115 }
116}
117
Chris Lattner229907c2011-07-18 04:54:35 +0000118Constant *Constant::getIntegerValue(Type *Ty, const APInt &V) {
119 Type *ScalarTy = Ty->getScalarType();
Dan Gohmanf011f5a2009-08-03 22:07:33 +0000120
121 // Create the base integer constant.
122 Constant *C = ConstantInt::get(Ty->getContext(), V);
123
124 // Convert an integer to a pointer, if necessary.
Chris Lattner229907c2011-07-18 04:54:35 +0000125 if (PointerType *PTy = dyn_cast<PointerType>(ScalarTy))
Dan Gohmanf011f5a2009-08-03 22:07:33 +0000126 C = ConstantExpr::getIntToPtr(C, PTy);
127
128 // Broadcast a scalar to a vector, if necessary.
Chris Lattner229907c2011-07-18 04:54:35 +0000129 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Dan Gohmanf011f5a2009-08-03 22:07:33 +0000130 C = ConstantVector::get(std::vector<Constant *>(VTy->getNumElements(), C));
131
132 return C;
133}
134
Chris Lattner229907c2011-07-18 04:54:35 +0000135Constant *Constant::getAllOnesValue(Type *Ty) {
136 if (IntegerType *ITy = dyn_cast<IntegerType>(Ty))
Owen Anderson5a1acd92009-07-31 20:28:14 +0000137 return ConstantInt::get(Ty->getContext(),
138 APInt::getAllOnesValue(ITy->getBitWidth()));
Nadav Rotem7cc6d122011-02-17 21:22:27 +0000139
140 if (Ty->isFloatingPointTy()) {
141 APFloat FL = APFloat::getAllOnesValue(Ty->getPrimitiveSizeInBits(),
142 !Ty->isPPC_FP128Ty());
143 return ConstantFP::get(Ty->getContext(), FL);
144 }
145
Chris Lattner69229312011-02-15 00:14:00 +0000146 SmallVector<Constant*, 16> Elts;
Chris Lattner229907c2011-07-18 04:54:35 +0000147 VectorType *VTy = cast<VectorType>(Ty);
Owen Anderson5a1acd92009-07-31 20:28:14 +0000148 Elts.resize(VTy->getNumElements(), getAllOnesValue(VTy->getElementType()));
Nadav Rotem365af6f2011-08-24 20:18:38 +0000149 assert(Elts[0] && "Invalid AllOnes value!");
Owen Anderson5a1acd92009-07-31 20:28:14 +0000150 return cast<ConstantVector>(ConstantVector::get(Elts));
151}
152
Chris Lattner3462ae32001-12-03 22:26:30 +0000153void Constant::destroyConstantImpl() {
154 // When a Constant is destroyed, there may be lingering
Chris Lattnerd7a73302001-10-13 06:57:33 +0000155 // references to the constant by other constants in the constant pool. These
Misha Brukmanbe372b92003-08-21 22:14:26 +0000156 // constants are implicitly dependent on the module that is being deleted,
Chris Lattnerd7a73302001-10-13 06:57:33 +0000157 // but they don't know that. Because we only find out when the CPV is
158 // deleted, we must now notify all of our users (that should only be
Chris Lattner3462ae32001-12-03 22:26:30 +0000159 // Constants) that they are, in fact, invalid now and should be deleted.
Chris Lattnerd7a73302001-10-13 06:57:33 +0000160 //
161 while (!use_empty()) {
162 Value *V = use_back();
163#ifndef NDEBUG // Only in -g mode...
Chris Lattner78683a72009-08-23 04:02:03 +0000164 if (!isa<Constant>(V)) {
David Greene1e27a132010-01-05 01:29:19 +0000165 dbgs() << "While deleting: " << *this
Chris Lattner78683a72009-08-23 04:02:03 +0000166 << "\n\nUse still stuck around after Def is destroyed: "
167 << *V << "\n\n";
168 }
Chris Lattnerd7a73302001-10-13 06:57:33 +0000169#endif
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000170 assert(isa<Constant>(V) && "References remain to Constant being destroyed");
Reid Spencer1ebe1ab2004-07-17 23:48:33 +0000171 Constant *CV = cast<Constant>(V);
172 CV->destroyConstant();
Chris Lattnerd7a73302001-10-13 06:57:33 +0000173
174 // The constant should remove itself from our use list...
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000175 assert((use_empty() || use_back() != V) && "Constant not removed!");
Chris Lattnerd7a73302001-10-13 06:57:33 +0000176 }
177
178 // Value has no outstanding references it is safe to delete it now...
179 delete this;
Chris Lattner38569342001-10-01 20:11:19 +0000180}
Chris Lattner2f7c9632001-06-06 20:29:01 +0000181
Chris Lattner23dd1f62006-10-20 00:27:06 +0000182/// canTrap - Return true if evaluation of this constant could trap. This is
183/// true for things like constant expressions that could divide by zero.
184bool Constant::canTrap() const {
185 assert(getType()->isFirstClassType() && "Cannot evaluate aggregate vals!");
186 // The only thing that could possibly trap are constant exprs.
187 const ConstantExpr *CE = dyn_cast<ConstantExpr>(this);
188 if (!CE) return false;
189
190 // ConstantExpr traps if any operands can trap.
191 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Chris Lattnera91a5632009-10-28 05:14:34 +0000192 if (CE->getOperand(i)->canTrap())
Chris Lattner23dd1f62006-10-20 00:27:06 +0000193 return true;
194
195 // Otherwise, only specific operations can trap.
196 switch (CE->getOpcode()) {
197 default:
198 return false;
Reid Spencer7e80b0b2006-10-26 06:15:43 +0000199 case Instruction::UDiv:
200 case Instruction::SDiv:
201 case Instruction::FDiv:
Reid Spencer7eb55b32006-11-02 01:53:59 +0000202 case Instruction::URem:
203 case Instruction::SRem:
204 case Instruction::FRem:
Chris Lattner23dd1f62006-10-20 00:27:06 +0000205 // Div and rem can trap if the RHS is not known to be non-zero.
Chris Lattnera91a5632009-10-28 05:14:34 +0000206 if (!isa<ConstantInt>(CE->getOperand(1)) ||CE->getOperand(1)->isNullValue())
Chris Lattner23dd1f62006-10-20 00:27:06 +0000207 return true;
208 return false;
209 }
210}
211
Chris Lattner253bc772009-11-01 18:11:50 +0000212/// isConstantUsed - Return true if the constant has users other than constant
213/// exprs and other dangling things.
214bool Constant::isConstantUsed() const {
Gabor Greifc78d7202010-03-25 23:06:16 +0000215 for (const_use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI) {
Chris Lattner253bc772009-11-01 18:11:50 +0000216 const Constant *UC = dyn_cast<Constant>(*UI);
217 if (UC == 0 || isa<GlobalValue>(UC))
218 return true;
219
220 if (UC->isConstantUsed())
221 return true;
222 }
223 return false;
224}
225
226
Chris Lattner4565ef52009-07-22 00:05:44 +0000227
228/// getRelocationInfo - This method classifies the entry according to
229/// whether or not it may generate a relocation entry. This must be
230/// conservative, so if it might codegen to a relocatable entry, it should say
231/// so. The return values are:
232///
Chris Lattner5cd4dd32009-07-24 03:27:21 +0000233/// NoRelocation: This constant pool entry is guaranteed to never have a
234/// relocation applied to it (because it holds a simple constant like
235/// '4').
236/// LocalRelocation: This entry has relocations, but the entries are
237/// guaranteed to be resolvable by the static linker, so the dynamic
238/// linker will never see them.
239/// GlobalRelocations: This entry may have arbitrary relocations.
Chris Lattner4565ef52009-07-22 00:05:44 +0000240///
241/// FIXME: This really should not be in VMCore.
Chris Lattner5cd4dd32009-07-24 03:27:21 +0000242Constant::PossibleRelocationsTy Constant::getRelocationInfo() const {
243 if (const GlobalValue *GV = dyn_cast<GlobalValue>(this)) {
Chris Lattner4565ef52009-07-22 00:05:44 +0000244 if (GV->hasLocalLinkage() || GV->hasHiddenVisibility())
Chris Lattner5cd4dd32009-07-24 03:27:21 +0000245 return LocalRelocation; // Local to this file/library.
246 return GlobalRelocations; // Global reference.
Anton Korobeynikov7437b592009-03-29 17:13:18 +0000247 }
Chris Lattner4565ef52009-07-22 00:05:44 +0000248
Chris Lattner2cb85b42009-10-28 04:12:16 +0000249 if (const BlockAddress *BA = dyn_cast<BlockAddress>(this))
250 return BA->getFunction()->getRelocationInfo();
251
Chris Lattnera7cfc432010-01-03 18:09:40 +0000252 // While raw uses of blockaddress need to be relocated, differences between
253 // two of them don't when they are for labels in the same function. This is a
254 // common idiom when creating a table for the indirect goto extension, so we
255 // handle it efficiently here.
256 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(this))
257 if (CE->getOpcode() == Instruction::Sub) {
258 ConstantExpr *LHS = dyn_cast<ConstantExpr>(CE->getOperand(0));
259 ConstantExpr *RHS = dyn_cast<ConstantExpr>(CE->getOperand(1));
260 if (LHS && RHS &&
261 LHS->getOpcode() == Instruction::PtrToInt &&
262 RHS->getOpcode() == Instruction::PtrToInt &&
263 isa<BlockAddress>(LHS->getOperand(0)) &&
264 isa<BlockAddress>(RHS->getOperand(0)) &&
265 cast<BlockAddress>(LHS->getOperand(0))->getFunction() ==
266 cast<BlockAddress>(RHS->getOperand(0))->getFunction())
267 return NoRelocation;
268 }
269
Chris Lattner5cd4dd32009-07-24 03:27:21 +0000270 PossibleRelocationsTy Result = NoRelocation;
Evan Chengf9e003b2007-03-08 00:59:12 +0000271 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Chris Lattnera91a5632009-10-28 05:14:34 +0000272 Result = std::max(Result,
273 cast<Constant>(getOperand(i))->getRelocationInfo());
Chris Lattner4565ef52009-07-22 00:05:44 +0000274
275 return Result;
Evan Chengf9e003b2007-03-08 00:59:12 +0000276}
277
Chris Lattner4565ef52009-07-22 00:05:44 +0000278
Chris Lattner2105d662008-07-10 00:28:11 +0000279/// getVectorElements - This method, which is only valid on constant of vector
280/// type, returns the elements of the vector in the specified smallvector.
Chris Lattnerc5098a22008-07-14 05:10:41 +0000281/// This handles breaking down a vector undef into undef elements, etc. For
282/// constant exprs and other cases we can't handle, we return an empty vector.
Chris Lattnerf5edeeb2010-02-01 20:48:08 +0000283void Constant::getVectorElements(SmallVectorImpl<Constant*> &Elts) const {
Duncan Sands19d0b472010-02-16 11:11:14 +0000284 assert(getType()->isVectorTy() && "Not a vector constant!");
Chris Lattner2105d662008-07-10 00:28:11 +0000285
286 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this)) {
287 for (unsigned i = 0, e = CV->getNumOperands(); i != e; ++i)
288 Elts.push_back(CV->getOperand(i));
289 return;
290 }
291
Chris Lattner229907c2011-07-18 04:54:35 +0000292 VectorType *VT = cast<VectorType>(getType());
Chris Lattner2105d662008-07-10 00:28:11 +0000293 if (isa<ConstantAggregateZero>(this)) {
294 Elts.assign(VT->getNumElements(),
Owen Anderson5a1acd92009-07-31 20:28:14 +0000295 Constant::getNullValue(VT->getElementType()));
Chris Lattner2105d662008-07-10 00:28:11 +0000296 return;
297 }
298
Chris Lattnerc5098a22008-07-14 05:10:41 +0000299 if (isa<UndefValue>(this)) {
Owen Andersonb292b8c2009-07-30 23:03:37 +0000300 Elts.assign(VT->getNumElements(), UndefValue::get(VT->getElementType()));
Chris Lattnerc5098a22008-07-14 05:10:41 +0000301 return;
302 }
303
304 // Unknown type, must be constant expr etc.
Chris Lattner2105d662008-07-10 00:28:11 +0000305}
306
307
Chris Lattner84886402011-02-18 04:41:42 +0000308/// removeDeadUsersOfConstant - If the specified constantexpr is dead, remove
309/// it. This involves recursively eliminating any dead users of the
310/// constantexpr.
311static bool removeDeadUsersOfConstant(const Constant *C) {
312 if (isa<GlobalValue>(C)) return false; // Cannot remove this
313
314 while (!C->use_empty()) {
315 const Constant *User = dyn_cast<Constant>(C->use_back());
316 if (!User) return false; // Non-constant usage;
317 if (!removeDeadUsersOfConstant(User))
318 return false; // Constant wasn't dead
319 }
320
321 const_cast<Constant*>(C)->destroyConstant();
322 return true;
323}
324
325
326/// removeDeadConstantUsers - If there are any dead constant users dangling
327/// off of this constant, remove them. This method is useful for clients
328/// that want to check to see if a global is unused, but don't want to deal
329/// with potentially dead constants hanging off of the globals.
330void Constant::removeDeadConstantUsers() const {
331 Value::const_use_iterator I = use_begin(), E = use_end();
332 Value::const_use_iterator LastNonDeadUser = E;
333 while (I != E) {
334 const Constant *User = dyn_cast<Constant>(*I);
335 if (User == 0) {
336 LastNonDeadUser = I;
337 ++I;
338 continue;
339 }
340
341 if (!removeDeadUsersOfConstant(User)) {
342 // If the constant wasn't dead, remember that this was the last live use
343 // and move on to the next constant.
344 LastNonDeadUser = I;
345 ++I;
346 continue;
347 }
348
349 // If the constant was dead, then the iterator is invalidated.
350 if (LastNonDeadUser == E) {
351 I = use_begin();
352 if (I == E) break;
353 } else {
354 I = LastNonDeadUser;
355 ++I;
356 }
357 }
358}
359
360
Chris Lattner2105d662008-07-10 00:28:11 +0000361
Chris Lattner2f7c9632001-06-06 20:29:01 +0000362//===----------------------------------------------------------------------===//
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000363// ConstantInt
Chris Lattner2f7c9632001-06-06 20:29:01 +0000364//===----------------------------------------------------------------------===//
365
Chris Lattner229907c2011-07-18 04:54:35 +0000366ConstantInt::ConstantInt(IntegerType *Ty, const APInt& V)
Chris Lattner5db2f472007-02-20 05:55:46 +0000367 : Constant(Ty, ConstantIntVal, 0, 0), Val(V) {
Reid Spencerb31bffe2007-02-26 23:54:03 +0000368 assert(V.getBitWidth() == Ty->getBitWidth() && "Invalid constant for type");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000369}
370
Nick Lewycky92db8e82011-03-06 03:36:19 +0000371ConstantInt *ConstantInt::getTrue(LLVMContext &Context) {
Owen Anderson23a204d2009-07-31 17:39:07 +0000372 LLVMContextImpl *pImpl = Context.pImpl;
Benjamin Kramerddd1b7b2010-11-20 18:43:35 +0000373 if (!pImpl->TheTrueVal)
374 pImpl->TheTrueVal = ConstantInt::get(Type::getInt1Ty(Context), 1);
375 return pImpl->TheTrueVal;
Owen Anderson23a204d2009-07-31 17:39:07 +0000376}
377
Nick Lewycky92db8e82011-03-06 03:36:19 +0000378ConstantInt *ConstantInt::getFalse(LLVMContext &Context) {
Owen Anderson23a204d2009-07-31 17:39:07 +0000379 LLVMContextImpl *pImpl = Context.pImpl;
Benjamin Kramerddd1b7b2010-11-20 18:43:35 +0000380 if (!pImpl->TheFalseVal)
381 pImpl->TheFalseVal = ConstantInt::get(Type::getInt1Ty(Context), 0);
382 return pImpl->TheFalseVal;
Owen Anderson23a204d2009-07-31 17:39:07 +0000383}
384
Chris Lattner229907c2011-07-18 04:54:35 +0000385Constant *ConstantInt::getTrue(Type *Ty) {
386 VectorType *VTy = dyn_cast<VectorType>(Ty);
Nick Lewycky92db8e82011-03-06 03:36:19 +0000387 if (!VTy) {
388 assert(Ty->isIntegerTy(1) && "True must be i1 or vector of i1.");
389 return ConstantInt::getTrue(Ty->getContext());
390 }
391 assert(VTy->getElementType()->isIntegerTy(1) &&
392 "True must be vector of i1 or i1.");
393 SmallVector<Constant*, 16> Splat(VTy->getNumElements(),
394 ConstantInt::getTrue(Ty->getContext()));
395 return ConstantVector::get(Splat);
396}
397
Chris Lattner229907c2011-07-18 04:54:35 +0000398Constant *ConstantInt::getFalse(Type *Ty) {
399 VectorType *VTy = dyn_cast<VectorType>(Ty);
Nick Lewycky92db8e82011-03-06 03:36:19 +0000400 if (!VTy) {
401 assert(Ty->isIntegerTy(1) && "False must be i1 or vector of i1.");
402 return ConstantInt::getFalse(Ty->getContext());
403 }
404 assert(VTy->getElementType()->isIntegerTy(1) &&
405 "False must be vector of i1 or i1.");
406 SmallVector<Constant*, 16> Splat(VTy->getNumElements(),
407 ConstantInt::getFalse(Ty->getContext()));
408 return ConstantVector::get(Splat);
409}
410
Owen Anderson23a204d2009-07-31 17:39:07 +0000411
Owen Andersonedb4a702009-07-24 23:12:02 +0000412// Get a ConstantInt from an APInt. Note that the value stored in the DenseMap
413// as the key, is a DenseMapAPIntKeyInfo::KeyTy which has provided the
414// operator== and operator!= to ensure that the DenseMap doesn't attempt to
415// compare APInt's of different widths, which would violate an APInt class
416// invariant which generates an assertion.
Nick Lewycky92db8e82011-03-06 03:36:19 +0000417ConstantInt *ConstantInt::get(LLVMContext &Context, const APInt &V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000418 // Get the corresponding integer type for the bit width of the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000419 IntegerType *ITy = IntegerType::get(Context, V.getBitWidth());
Owen Andersonedb4a702009-07-24 23:12:02 +0000420 // get an existing value or the insertion position
421 DenseMapAPIntKeyInfo::KeyTy Key(V, ITy);
Owen Andersonedb4a702009-07-24 23:12:02 +0000422 ConstantInt *&Slot = Context.pImpl->IntConstants[Key];
Owen Anderson5dab84c2009-10-19 20:11:52 +0000423 if (!Slot) Slot = new ConstantInt(ITy, V);
424 return Slot;
Owen Andersonedb4a702009-07-24 23:12:02 +0000425}
426
Chris Lattner229907c2011-07-18 04:54:35 +0000427Constant *ConstantInt::get(Type *Ty, uint64_t V, bool isSigned) {
Nick Lewycky92db8e82011-03-06 03:36:19 +0000428 Constant *C = get(cast<IntegerType>(Ty->getScalarType()), V, isSigned);
Owen Andersonedb4a702009-07-24 23:12:02 +0000429
430 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000431 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattner69229312011-02-15 00:14:00 +0000432 return ConstantVector::get(SmallVector<Constant*,
433 16>(VTy->getNumElements(), C));
Owen Andersonedb4a702009-07-24 23:12:02 +0000434
435 return C;
436}
437
Chris Lattner229907c2011-07-18 04:54:35 +0000438ConstantInt* ConstantInt::get(IntegerType* Ty, uint64_t V,
Owen Andersonedb4a702009-07-24 23:12:02 +0000439 bool isSigned) {
440 return get(Ty->getContext(), APInt(Ty->getBitWidth(), V, isSigned));
441}
442
Chris Lattner229907c2011-07-18 04:54:35 +0000443ConstantInt* ConstantInt::getSigned(IntegerType* Ty, int64_t V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000444 return get(Ty, V, true);
445}
446
Chris Lattner229907c2011-07-18 04:54:35 +0000447Constant *ConstantInt::getSigned(Type *Ty, int64_t V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000448 return get(Ty, V, true);
449}
450
Chris Lattner229907c2011-07-18 04:54:35 +0000451Constant *ConstantInt::get(Type* Ty, const APInt& V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000452 ConstantInt *C = get(Ty->getContext(), V);
453 assert(C->getType() == Ty->getScalarType() &&
454 "ConstantInt type doesn't match the type implied by its value!");
455
456 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000457 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Owen Anderson4aa32952009-07-28 21:19:26 +0000458 return ConstantVector::get(
Chris Lattner69229312011-02-15 00:14:00 +0000459 SmallVector<Constant *, 16>(VTy->getNumElements(), C));
Owen Andersonedb4a702009-07-24 23:12:02 +0000460
461 return C;
462}
463
Chris Lattner229907c2011-07-18 04:54:35 +0000464ConstantInt* ConstantInt::get(IntegerType* Ty, StringRef Str,
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000465 uint8_t radix) {
466 return get(Ty->getContext(), APInt(Ty->getBitWidth(), Str, radix));
467}
468
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000469//===----------------------------------------------------------------------===//
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000470// ConstantFP
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000471//===----------------------------------------------------------------------===//
472
Chris Lattner229907c2011-07-18 04:54:35 +0000473static const fltSemantics *TypeToFloatSemantics(Type *Ty) {
Dan Gohman518cda42011-12-17 00:04:22 +0000474 if (Ty->isHalfTy())
475 return &APFloat::IEEEhalf;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000476 if (Ty->isFloatTy())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000477 return &APFloat::IEEEsingle;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000478 if (Ty->isDoubleTy())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000479 return &APFloat::IEEEdouble;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000480 if (Ty->isX86_FP80Ty())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000481 return &APFloat::x87DoubleExtended;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000482 else if (Ty->isFP128Ty())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000483 return &APFloat::IEEEquad;
484
Chris Lattnerfdd87902009-10-05 05:54:46 +0000485 assert(Ty->isPPC_FP128Ty() && "Unknown FP format");
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000486 return &APFloat::PPCDoubleDouble;
487}
488
Owen Anderson69c464d2009-07-27 20:59:43 +0000489/// get() - This returns a constant fp for the specified value in the
490/// specified type. This should only be used for simple constant values like
491/// 2.0/1.0 etc, that are known-valid both as double and as the target format.
Chris Lattner229907c2011-07-18 04:54:35 +0000492Constant *ConstantFP::get(Type* Ty, double V) {
Owen Anderson69c464d2009-07-27 20:59:43 +0000493 LLVMContext &Context = Ty->getContext();
494
495 APFloat FV(V);
496 bool ignored;
497 FV.convert(*TypeToFloatSemantics(Ty->getScalarType()),
498 APFloat::rmNearestTiesToEven, &ignored);
499 Constant *C = get(Context, FV);
500
501 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000502 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Owen Anderson4aa32952009-07-28 21:19:26 +0000503 return ConstantVector::get(
Chris Lattner69229312011-02-15 00:14:00 +0000504 SmallVector<Constant *, 16>(VTy->getNumElements(), C));
Owen Anderson69c464d2009-07-27 20:59:43 +0000505
506 return C;
507}
508
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000509
Chris Lattner229907c2011-07-18 04:54:35 +0000510Constant *ConstantFP::get(Type* Ty, StringRef Str) {
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000511 LLVMContext &Context = Ty->getContext();
512
513 APFloat FV(*TypeToFloatSemantics(Ty->getScalarType()), Str);
514 Constant *C = get(Context, FV);
515
516 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000517 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000518 return ConstantVector::get(
Chris Lattner69229312011-02-15 00:14:00 +0000519 SmallVector<Constant *, 16>(VTy->getNumElements(), C));
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000520
521 return C;
522}
523
524
Chris Lattner229907c2011-07-18 04:54:35 +0000525ConstantFP* ConstantFP::getNegativeZero(Type* Ty) {
Owen Anderson69c464d2009-07-27 20:59:43 +0000526 LLVMContext &Context = Ty->getContext();
Owen Anderson5a1acd92009-07-31 20:28:14 +0000527 APFloat apf = cast <ConstantFP>(Constant::getNullValue(Ty))->getValueAPF();
Owen Anderson69c464d2009-07-27 20:59:43 +0000528 apf.changeSign();
529 return get(Context, apf);
530}
531
532
Chris Lattner229907c2011-07-18 04:54:35 +0000533Constant *ConstantFP::getZeroValueForNegation(Type* Ty) {
534 if (VectorType *PTy = dyn_cast<VectorType>(Ty))
Duncan Sands9dff9be2010-02-15 16:12:20 +0000535 if (PTy->getElementType()->isFloatingPointTy()) {
Chris Lattner69229312011-02-15 00:14:00 +0000536 SmallVector<Constant*, 16> zeros(PTy->getNumElements(),
Owen Anderson69c464d2009-07-27 20:59:43 +0000537 getNegativeZero(PTy->getElementType()));
Chris Lattner69229312011-02-15 00:14:00 +0000538 return ConstantVector::get(zeros);
Owen Anderson69c464d2009-07-27 20:59:43 +0000539 }
540
Duncan Sands9dff9be2010-02-15 16:12:20 +0000541 if (Ty->isFloatingPointTy())
Owen Anderson69c464d2009-07-27 20:59:43 +0000542 return getNegativeZero(Ty);
543
Owen Anderson5a1acd92009-07-31 20:28:14 +0000544 return Constant::getNullValue(Ty);
Owen Anderson69c464d2009-07-27 20:59:43 +0000545}
546
547
548// ConstantFP accessors.
549ConstantFP* ConstantFP::get(LLVMContext &Context, const APFloat& V) {
550 DenseMapAPFloatKeyInfo::KeyTy Key(V);
551
552 LLVMContextImpl* pImpl = Context.pImpl;
553
Owen Anderson69c464d2009-07-27 20:59:43 +0000554 ConstantFP *&Slot = pImpl->FPConstants[Key];
Owen Anderson69c464d2009-07-27 20:59:43 +0000555
556 if (!Slot) {
Chris Lattner229907c2011-07-18 04:54:35 +0000557 Type *Ty;
Dan Gohman518cda42011-12-17 00:04:22 +0000558 if (&V.getSemantics() == &APFloat::IEEEhalf)
559 Ty = Type::getHalfTy(Context);
560 else if (&V.getSemantics() == &APFloat::IEEEsingle)
Owen Anderson5dab84c2009-10-19 20:11:52 +0000561 Ty = Type::getFloatTy(Context);
562 else if (&V.getSemantics() == &APFloat::IEEEdouble)
563 Ty = Type::getDoubleTy(Context);
564 else if (&V.getSemantics() == &APFloat::x87DoubleExtended)
565 Ty = Type::getX86_FP80Ty(Context);
566 else if (&V.getSemantics() == &APFloat::IEEEquad)
567 Ty = Type::getFP128Ty(Context);
568 else {
569 assert(&V.getSemantics() == &APFloat::PPCDoubleDouble &&
570 "Unknown FP format");
571 Ty = Type::getPPC_FP128Ty(Context);
Owen Anderson69c464d2009-07-27 20:59:43 +0000572 }
Owen Anderson5dab84c2009-10-19 20:11:52 +0000573 Slot = new ConstantFP(Ty, V);
Owen Anderson69c464d2009-07-27 20:59:43 +0000574 }
575
576 return Slot;
577}
578
Chris Lattner229907c2011-07-18 04:54:35 +0000579ConstantFP *ConstantFP::getInfinity(Type *Ty, bool Negative) {
Dan Gohmanfeb50212009-09-25 23:00:48 +0000580 const fltSemantics &Semantics = *TypeToFloatSemantics(Ty);
581 return ConstantFP::get(Ty->getContext(),
582 APFloat::getInf(Semantics, Negative));
583}
584
Chris Lattner229907c2011-07-18 04:54:35 +0000585ConstantFP::ConstantFP(Type *Ty, const APFloat& V)
Dale Johannesend246b2c2007-08-30 00:23:21 +0000586 : Constant(Ty, ConstantFPVal, 0, 0), Val(V) {
Chris Lattner98bd9392008-04-09 06:38:30 +0000587 assert(&V.getSemantics() == TypeToFloatSemantics(Ty) &&
588 "FP type Mismatch");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000589}
590
Chris Lattnerbe6610c2011-07-15 06:14:08 +0000591bool ConstantFP::isExactlyValue(const APFloat &V) const {
Dale Johannesend246b2c2007-08-30 00:23:21 +0000592 return Val.bitwiseIsEqual(V);
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000593}
594
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000595//===----------------------------------------------------------------------===//
596// ConstantXXX Classes
597//===----------------------------------------------------------------------===//
598
599
Jay Foad89d9b812011-07-25 10:14:44 +0000600ConstantArray::ConstantArray(ArrayType *T, ArrayRef<Constant *> V)
Gabor Greiff6caff662008-05-10 08:32:32 +0000601 : Constant(T, ConstantArrayVal,
602 OperandTraits<ConstantArray>::op_end(this) - V.size(),
603 V.size()) {
Alkis Evlogimenos0507ffe2004-09-15 02:32:15 +0000604 assert(V.size() == T->getNumElements() &&
605 "Invalid initializer vector for constant array");
Jay Foad89d9b812011-07-25 10:14:44 +0000606 for (unsigned i = 0, e = V.size(); i != e; ++i)
607 assert(V[i]->getType() == T->getElementType() &&
Alkis Evlogimenoscb031d92004-09-10 04:16:59 +0000608 "Initializer for array element doesn't match array element type!");
Jay Foad89d9b812011-07-25 10:14:44 +0000609 std::copy(V.begin(), V.end(), op_begin());
Chris Lattner2f7c9632001-06-06 20:29:01 +0000610}
611
Chris Lattner229907c2011-07-18 04:54:35 +0000612Constant *ConstantArray::get(ArrayType *Ty, ArrayRef<Constant*> V) {
Jeffrey Yasskin8ce67f82009-09-30 21:08:08 +0000613 for (unsigned i = 0, e = V.size(); i != e; ++i) {
614 assert(V[i]->getType() == Ty->getElementType() &&
615 "Wrong type in array element initializer");
616 }
Owen Andersonc2c79322009-07-28 18:32:17 +0000617 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
618 // If this is an all-zero array, return a ConstantAggregateZero object
619 if (!V.empty()) {
620 Constant *C = V[0];
Chris Lattner09660c92009-12-30 20:25:09 +0000621 if (!C->isNullValue())
Owen Andersonc2c79322009-07-28 18:32:17 +0000622 return pImpl->ArrayConstants.getOrCreate(Ty, V);
Chris Lattner09660c92009-12-30 20:25:09 +0000623
Owen Andersonc2c79322009-07-28 18:32:17 +0000624 for (unsigned i = 1, e = V.size(); i != e; ++i)
Chris Lattner09660c92009-12-30 20:25:09 +0000625 if (V[i] != C)
Owen Andersonc2c79322009-07-28 18:32:17 +0000626 return pImpl->ArrayConstants.getOrCreate(Ty, V);
Owen Andersonc2c79322009-07-28 18:32:17 +0000627 }
628
Owen Andersonb292b8c2009-07-30 23:03:37 +0000629 return ConstantAggregateZero::get(Ty);
Owen Andersonc2c79322009-07-28 18:32:17 +0000630}
631
Owen Andersonc2c79322009-07-28 18:32:17 +0000632/// ConstantArray::get(const string&) - Return an array that is initialized to
633/// contain the specified string. If length is zero then a null terminator is
634/// added to the specified string so that it may be used in a natural way.
635/// Otherwise, the length parameter specifies how much of the string to use
636/// and it won't be null terminated.
637///
Chris Lattnera676c0f2011-02-07 16:40:21 +0000638Constant *ConstantArray::get(LLVMContext &Context, StringRef Str,
Owen Anderson55f1c092009-08-13 21:58:54 +0000639 bool AddNull) {
Owen Andersonc2c79322009-07-28 18:32:17 +0000640 std::vector<Constant*> ElementVals;
Benjamin Kramer3d4af4e2010-08-01 11:43:26 +0000641 ElementVals.reserve(Str.size() + size_t(AddNull));
Owen Andersonc2c79322009-07-28 18:32:17 +0000642 for (unsigned i = 0; i < Str.size(); ++i)
Owen Anderson55f1c092009-08-13 21:58:54 +0000643 ElementVals.push_back(ConstantInt::get(Type::getInt8Ty(Context), Str[i]));
Owen Andersonc2c79322009-07-28 18:32:17 +0000644
645 // Add a null terminator to the string...
646 if (AddNull) {
Owen Anderson55f1c092009-08-13 21:58:54 +0000647 ElementVals.push_back(ConstantInt::get(Type::getInt8Ty(Context), 0));
Owen Andersonc2c79322009-07-28 18:32:17 +0000648 }
649
Owen Anderson55f1c092009-08-13 21:58:54 +0000650 ArrayType *ATy = ArrayType::get(Type::getInt8Ty(Context), ElementVals.size());
Owen Andersonc2c79322009-07-28 18:32:17 +0000651 return get(ATy, ElementVals);
652}
653
Chris Lattnercc19efa2011-06-20 04:01:31 +0000654/// getTypeForElements - Return an anonymous struct type to use for a constant
655/// with the specified set of elements. The list must not be empty.
656StructType *ConstantStruct::getTypeForElements(LLVMContext &Context,
657 ArrayRef<Constant*> V,
658 bool Packed) {
Jay Foadb804a2b2011-07-12 14:06:48 +0000659 SmallVector<Type*, 16> EltTypes;
Chris Lattnercc19efa2011-06-20 04:01:31 +0000660 for (unsigned i = 0, e = V.size(); i != e; ++i)
661 EltTypes.push_back(V[i]->getType());
662
663 return StructType::get(Context, EltTypes, Packed);
664}
665
666
667StructType *ConstantStruct::getTypeForElements(ArrayRef<Constant*> V,
668 bool Packed) {
669 assert(!V.empty() &&
670 "ConstantStruct::getTypeForElements cannot be called on empty list");
671 return getTypeForElements(V[0]->getContext(), V, Packed);
672}
673
674
Jay Foad89d9b812011-07-25 10:14:44 +0000675ConstantStruct::ConstantStruct(StructType *T, ArrayRef<Constant *> V)
Gabor Greiff6caff662008-05-10 08:32:32 +0000676 : Constant(T, ConstantStructVal,
677 OperandTraits<ConstantStruct>::op_end(this) - V.size(),
678 V.size()) {
Chris Lattnerc3e74cd2011-08-07 04:18:48 +0000679 assert(V.size() == T->getNumElements() &&
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000680 "Invalid initializer vector for constant structure");
Jay Foad89d9b812011-07-25 10:14:44 +0000681 for (unsigned i = 0, e = V.size(); i != e; ++i)
682 assert((T->isOpaque() || V[i]->getType() == T->getElementType(i)) &&
Chris Lattner93c8f142003-06-02 17:42:47 +0000683 "Initializer for struct element doesn't match struct element type!");
Jay Foad89d9b812011-07-25 10:14:44 +0000684 std::copy(V.begin(), V.end(), op_begin());
Chris Lattner2f7c9632001-06-06 20:29:01 +0000685}
686
Owen Anderson45308b52009-07-27 22:29:26 +0000687// ConstantStruct accessors.
Chris Lattner229907c2011-07-18 04:54:35 +0000688Constant *ConstantStruct::get(StructType *ST, ArrayRef<Constant*> V) {
Chris Lattnercc19efa2011-06-20 04:01:31 +0000689 // Create a ConstantAggregateZero value if all elements are zeros.
Owen Anderson45308b52009-07-27 22:29:26 +0000690 for (unsigned i = 0, e = V.size(); i != e; ++i)
Jay Foad687bd0a2011-06-22 08:55:11 +0000691 if (!V[i]->isNullValue())
692 return ST->getContext().pImpl->StructConstants.getOrCreate(ST, V);
Owen Anderson45308b52009-07-27 22:29:26 +0000693
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000694 assert((ST->isOpaque() || ST->getNumElements() == V.size()) &&
695 "Incorrect # elements specified to ConstantStruct::get");
Chris Lattnercc19efa2011-06-20 04:01:31 +0000696 return ConstantAggregateZero::get(ST);
Owen Anderson45308b52009-07-27 22:29:26 +0000697}
698
Chris Lattnerc3e74cd2011-08-07 04:18:48 +0000699Constant *ConstantStruct::get(StructType *T, ...) {
Talin3a0a30d2011-02-28 23:53:27 +0000700 va_list ap;
Chris Lattnercc19efa2011-06-20 04:01:31 +0000701 SmallVector<Constant*, 8> Values;
702 va_start(ap, T);
703 while (Constant *Val = va_arg(ap, llvm::Constant*))
Talin3a0a30d2011-02-28 23:53:27 +0000704 Values.push_back(Val);
Talinde422be2011-03-01 18:00:49 +0000705 va_end(ap);
Chris Lattnercc19efa2011-06-20 04:01:31 +0000706 return get(T, Values);
Talin3a0a30d2011-02-28 23:53:27 +0000707}
708
Jay Foad89d9b812011-07-25 10:14:44 +0000709ConstantVector::ConstantVector(VectorType *T, ArrayRef<Constant *> V)
Gabor Greiff6caff662008-05-10 08:32:32 +0000710 : Constant(T, ConstantVectorVal,
711 OperandTraits<ConstantVector>::op_end(this) - V.size(),
712 V.size()) {
Jay Foad89d9b812011-07-25 10:14:44 +0000713 for (size_t i = 0, e = V.size(); i != e; i++)
714 assert(V[i]->getType() == T->getElementType() &&
Dan Gohman30978072007-05-24 14:36:04 +0000715 "Initializer for vector element doesn't match vector element type!");
Jay Foad89d9b812011-07-25 10:14:44 +0000716 std::copy(V.begin(), V.end(), op_begin());
Brian Gaeke02209042004-08-20 06:00:58 +0000717}
718
Owen Anderson4aa32952009-07-28 21:19:26 +0000719// ConstantVector accessors.
Jay Foadb8a8bed32011-06-22 09:10:19 +0000720Constant *ConstantVector::get(ArrayRef<Constant*> V) {
Jay Foad9f32cfd2011-01-27 14:44:55 +0000721 assert(!V.empty() && "Vectors can't be empty");
Chris Lattner229907c2011-07-18 04:54:35 +0000722 VectorType *T = VectorType::get(V.front()->getType(), V.size());
Chris Lattner69229312011-02-15 00:14:00 +0000723 LLVMContextImpl *pImpl = T->getContext().pImpl;
Jay Foad9f32cfd2011-01-27 14:44:55 +0000724
Chris Lattner69229312011-02-15 00:14:00 +0000725 // If this is an all-undef or all-zero vector, return a
Owen Anderson4aa32952009-07-28 21:19:26 +0000726 // ConstantAggregateZero or UndefValue.
727 Constant *C = V[0];
728 bool isZero = C->isNullValue();
729 bool isUndef = isa<UndefValue>(C);
730
731 if (isZero || isUndef) {
732 for (unsigned i = 1, e = V.size(); i != e; ++i)
733 if (V[i] != C) {
734 isZero = isUndef = false;
735 break;
736 }
737 }
738
739 if (isZero)
Owen Andersonb292b8c2009-07-30 23:03:37 +0000740 return ConstantAggregateZero::get(T);
Owen Anderson4aa32952009-07-28 21:19:26 +0000741 if (isUndef)
Owen Andersonb292b8c2009-07-30 23:03:37 +0000742 return UndefValue::get(T);
Owen Anderson4aa32952009-07-28 21:19:26 +0000743
Owen Anderson4aa32952009-07-28 21:19:26 +0000744 return pImpl->VectorConstants.getOrCreate(T, V);
745}
746
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000747// Utility function for determining if a ConstantExpr is a CastOp or not. This
748// can't be inline because we don't want to #include Instruction.h into
749// Constant.h
750bool ConstantExpr::isCast() const {
751 return Instruction::isCast(getOpcode());
752}
753
Reid Spenceree3c9912006-12-04 05:19:50 +0000754bool ConstantExpr::isCompare() const {
Nick Lewyckya21d3da2009-07-08 03:04:38 +0000755 return getOpcode() == Instruction::ICmp || getOpcode() == Instruction::FCmp;
Reid Spenceree3c9912006-12-04 05:19:50 +0000756}
757
Dan Gohman7190d482009-09-10 23:37:55 +0000758bool ConstantExpr::isGEPWithNoNotionalOverIndexing() const {
759 if (getOpcode() != Instruction::GetElementPtr) return false;
760
761 gep_type_iterator GEPI = gep_type_begin(this), E = gep_type_end(this);
Oscar Fuentes40b31ad2010-08-02 06:00:15 +0000762 User::const_op_iterator OI = llvm::next(this->op_begin());
Dan Gohman7190d482009-09-10 23:37:55 +0000763
764 // Skip the first index, as it has no static limit.
765 ++GEPI;
766 ++OI;
767
768 // The remaining indices must be compile-time known integers within the
769 // bounds of the corresponding notional static array types.
770 for (; GEPI != E; ++GEPI, ++OI) {
771 ConstantInt *CI = dyn_cast<ConstantInt>(*OI);
772 if (!CI) return false;
Chris Lattner229907c2011-07-18 04:54:35 +0000773 if (ArrayType *ATy = dyn_cast<ArrayType>(*GEPI))
Dan Gohman7190d482009-09-10 23:37:55 +0000774 if (CI->getValue().getActiveBits() > 64 ||
775 CI->getZExtValue() >= ATy->getNumElements())
776 return false;
777 }
778
779 // All the indices checked out.
780 return true;
781}
782
Dan Gohman1ecaf452008-05-31 00:58:22 +0000783bool ConstantExpr::hasIndices() const {
784 return getOpcode() == Instruction::ExtractValue ||
785 getOpcode() == Instruction::InsertValue;
786}
787
Jay Foad0091fe82011-04-13 15:22:40 +0000788ArrayRef<unsigned> ConstantExpr::getIndices() const {
Dan Gohman1ecaf452008-05-31 00:58:22 +0000789 if (const ExtractValueConstantExpr *EVCE =
790 dyn_cast<ExtractValueConstantExpr>(this))
791 return EVCE->Indices;
Dan Gohmana469bdb2008-06-23 16:39:44 +0000792
793 return cast<InsertValueConstantExpr>(this)->Indices;
Dan Gohman1ecaf452008-05-31 00:58:22 +0000794}
795
Reid Spencer10fbf0e2006-12-03 05:48:19 +0000796unsigned ConstantExpr::getPredicate() const {
Chris Lattnerd04e32d2011-07-17 06:01:30 +0000797 assert(isCompare());
Chris Lattneref650092007-10-18 16:26:24 +0000798 return ((const CompareConstantExpr*)this)->predicate;
Reid Spencer10fbf0e2006-12-03 05:48:19 +0000799}
Chris Lattner60e0dd72001-10-03 06:12:09 +0000800
Chris Lattner7c1018a2006-07-14 19:37:40 +0000801/// getWithOperandReplaced - Return a constant expression identical to this
802/// one, but with the specified operand set to the specified value.
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000803Constant *
804ConstantExpr::getWithOperandReplaced(unsigned OpNo, Constant *Op) const {
Chris Lattner7c1018a2006-07-14 19:37:40 +0000805 assert(OpNo < getNumOperands() && "Operand num is out of range!");
806 assert(Op->getType() == getOperand(OpNo)->getType() &&
807 "Replacing operand with value of different type!");
Chris Lattner227816342006-07-14 22:20:01 +0000808 if (getOperand(OpNo) == Op)
809 return const_cast<ConstantExpr*>(this);
Chris Lattner7c1018a2006-07-14 19:37:40 +0000810
Chris Lattner227816342006-07-14 22:20:01 +0000811 Constant *Op0, *Op1, *Op2;
Chris Lattner7c1018a2006-07-14 19:37:40 +0000812 switch (getOpcode()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000813 case Instruction::Trunc:
814 case Instruction::ZExt:
815 case Instruction::SExt:
816 case Instruction::FPTrunc:
817 case Instruction::FPExt:
818 case Instruction::UIToFP:
819 case Instruction::SIToFP:
820 case Instruction::FPToUI:
821 case Instruction::FPToSI:
822 case Instruction::PtrToInt:
823 case Instruction::IntToPtr:
824 case Instruction::BitCast:
825 return ConstantExpr::getCast(getOpcode(), Op, getType());
Chris Lattner227816342006-07-14 22:20:01 +0000826 case Instruction::Select:
827 Op0 = (OpNo == 0) ? Op : getOperand(0);
828 Op1 = (OpNo == 1) ? Op : getOperand(1);
829 Op2 = (OpNo == 2) ? Op : getOperand(2);
830 return ConstantExpr::getSelect(Op0, Op1, Op2);
831 case Instruction::InsertElement:
832 Op0 = (OpNo == 0) ? Op : getOperand(0);
833 Op1 = (OpNo == 1) ? Op : getOperand(1);
834 Op2 = (OpNo == 2) ? Op : getOperand(2);
835 return ConstantExpr::getInsertElement(Op0, Op1, Op2);
836 case Instruction::ExtractElement:
837 Op0 = (OpNo == 0) ? Op : getOperand(0);
838 Op1 = (OpNo == 1) ? Op : getOperand(1);
839 return ConstantExpr::getExtractElement(Op0, Op1);
840 case Instruction::ShuffleVector:
841 Op0 = (OpNo == 0) ? Op : getOperand(0);
842 Op1 = (OpNo == 1) ? Op : getOperand(1);
843 Op2 = (OpNo == 2) ? Op : getOperand(2);
844 return ConstantExpr::getShuffleVector(Op0, Op1, Op2);
Chris Lattner7c1018a2006-07-14 19:37:40 +0000845 case Instruction::GetElementPtr: {
Chris Lattnerb5d70302007-02-19 20:01:23 +0000846 SmallVector<Constant*, 8> Ops;
Dan Gohman12fce772008-05-15 19:50:34 +0000847 Ops.resize(getNumOperands()-1);
Chris Lattner7c1018a2006-07-14 19:37:40 +0000848 for (unsigned i = 1, e = getNumOperands(); i != e; ++i)
Dan Gohman12fce772008-05-15 19:50:34 +0000849 Ops[i-1] = getOperand(i);
Chris Lattner7c1018a2006-07-14 19:37:40 +0000850 if (OpNo == 0)
Jay Foad2f5fc8c2011-07-21 15:15:37 +0000851 return
852 ConstantExpr::getGetElementPtr(Op, Ops,
853 cast<GEPOperator>(this)->isInBounds());
Chris Lattner7c1018a2006-07-14 19:37:40 +0000854 Ops[OpNo-1] = Op;
Jay Foad2f5fc8c2011-07-21 15:15:37 +0000855 return
856 ConstantExpr::getGetElementPtr(getOperand(0), Ops,
857 cast<GEPOperator>(this)->isInBounds());
Chris Lattner7c1018a2006-07-14 19:37:40 +0000858 }
Chris Lattner7c1018a2006-07-14 19:37:40 +0000859 default:
860 assert(getNumOperands() == 2 && "Must be binary operator?");
Chris Lattner227816342006-07-14 22:20:01 +0000861 Op0 = (OpNo == 0) ? Op : getOperand(0);
862 Op1 = (OpNo == 1) ? Op : getOperand(1);
Chris Lattnerb9c86512009-12-29 02:14:09 +0000863 return ConstantExpr::get(getOpcode(), Op0, Op1, SubclassOptionalData);
Chris Lattner227816342006-07-14 22:20:01 +0000864 }
865}
866
867/// getWithOperands - This returns the current constant expression with the
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000868/// operands replaced with the specified values. The specified array must
869/// have the same number of operands as our current one.
Chris Lattner227816342006-07-14 22:20:01 +0000870Constant *ConstantExpr::
Chris Lattner229907c2011-07-18 04:54:35 +0000871getWithOperands(ArrayRef<Constant*> Ops, Type *Ty) const {
Jay Foad5c984e562011-04-13 13:46:01 +0000872 assert(Ops.size() == getNumOperands() && "Operand count mismatch!");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000873 bool AnyChange = Ty != getType();
874 for (unsigned i = 0; i != Ops.size(); ++i)
Chris Lattner227816342006-07-14 22:20:01 +0000875 AnyChange |= Ops[i] != getOperand(i);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000876
Chris Lattner227816342006-07-14 22:20:01 +0000877 if (!AnyChange) // No operands changed, return self.
878 return const_cast<ConstantExpr*>(this);
879
880 switch (getOpcode()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000881 case Instruction::Trunc:
882 case Instruction::ZExt:
883 case Instruction::SExt:
884 case Instruction::FPTrunc:
885 case Instruction::FPExt:
886 case Instruction::UIToFP:
887 case Instruction::SIToFP:
888 case Instruction::FPToUI:
889 case Instruction::FPToSI:
890 case Instruction::PtrToInt:
891 case Instruction::IntToPtr:
892 case Instruction::BitCast:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000893 return ConstantExpr::getCast(getOpcode(), Ops[0], Ty);
Chris Lattner227816342006-07-14 22:20:01 +0000894 case Instruction::Select:
895 return ConstantExpr::getSelect(Ops[0], Ops[1], Ops[2]);
896 case Instruction::InsertElement:
897 return ConstantExpr::getInsertElement(Ops[0], Ops[1], Ops[2]);
898 case Instruction::ExtractElement:
899 return ConstantExpr::getExtractElement(Ops[0], Ops[1]);
900 case Instruction::ShuffleVector:
901 return ConstantExpr::getShuffleVector(Ops[0], Ops[1], Ops[2]);
Chris Lattnerb5d70302007-02-19 20:01:23 +0000902 case Instruction::GetElementPtr:
Jay Foad2f5fc8c2011-07-21 15:15:37 +0000903 return
904 ConstantExpr::getGetElementPtr(Ops[0], Ops.slice(1),
905 cast<GEPOperator>(this)->isInBounds());
Reid Spencer266e42b2006-12-23 06:05:41 +0000906 case Instruction::ICmp:
907 case Instruction::FCmp:
908 return ConstantExpr::getCompare(getPredicate(), Ops[0], Ops[1]);
Chris Lattner227816342006-07-14 22:20:01 +0000909 default:
910 assert(getNumOperands() == 2 && "Must be binary operator?");
Chris Lattnerb9c86512009-12-29 02:14:09 +0000911 return ConstantExpr::get(getOpcode(), Ops[0], Ops[1], SubclassOptionalData);
Chris Lattner7c1018a2006-07-14 19:37:40 +0000912 }
913}
914
Chris Lattner2f7c9632001-06-06 20:29:01 +0000915
916//===----------------------------------------------------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +0000917// isValueValidForType implementations
918
Chris Lattner229907c2011-07-18 04:54:35 +0000919bool ConstantInt::isValueValidForType(Type *Ty, uint64_t Val) {
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000920 unsigned NumBits = cast<IntegerType>(Ty)->getBitWidth(); // assert okay
Owen Anderson55f1c092009-08-13 21:58:54 +0000921 if (Ty == Type::getInt1Ty(Ty->getContext()))
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000922 return Val == 0 || Val == 1;
Reid Spencerd7a00d72007-02-05 23:47:56 +0000923 if (NumBits >= 64)
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000924 return true; // always true, has to fit in largest type
925 uint64_t Max = (1ll << NumBits) - 1;
926 return Val <= Max;
Reid Spencere7334722006-12-19 01:28:19 +0000927}
928
Chris Lattner229907c2011-07-18 04:54:35 +0000929bool ConstantInt::isValueValidForType(Type *Ty, int64_t Val) {
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000930 unsigned NumBits = cast<IntegerType>(Ty)->getBitWidth(); // assert okay
Owen Anderson55f1c092009-08-13 21:58:54 +0000931 if (Ty == Type::getInt1Ty(Ty->getContext()))
Reid Spencera94d3942007-01-19 21:13:56 +0000932 return Val == 0 || Val == 1 || Val == -1;
Reid Spencerd7a00d72007-02-05 23:47:56 +0000933 if (NumBits >= 64)
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000934 return true; // always true, has to fit in largest type
935 int64_t Min = -(1ll << (NumBits-1));
936 int64_t Max = (1ll << (NumBits-1)) - 1;
937 return (Val >= Min && Val <= Max);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000938}
939
Chris Lattner229907c2011-07-18 04:54:35 +0000940bool ConstantFP::isValueValidForType(Type *Ty, const APFloat& Val) {
Dale Johannesend246b2c2007-08-30 00:23:21 +0000941 // convert modifies in place, so make a copy.
942 APFloat Val2 = APFloat(Val);
Dale Johannesen4f0bd682008-10-09 23:00:39 +0000943 bool losesInfo;
Chris Lattner6b727592004-06-17 18:19:28 +0000944 switch (Ty->getTypeID()) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000945 default:
946 return false; // These can't be represented as floating point!
947
Dale Johannesend246b2c2007-08-30 00:23:21 +0000948 // FIXME rounding mode needs to be more flexible
Dan Gohman518cda42011-12-17 00:04:22 +0000949 case Type::HalfTyID: {
950 if (&Val2.getSemantics() == &APFloat::IEEEhalf)
951 return true;
952 Val2.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven, &losesInfo);
953 return !losesInfo;
954 }
Dale Johannesen4f0bd682008-10-09 23:00:39 +0000955 case Type::FloatTyID: {
956 if (&Val2.getSemantics() == &APFloat::IEEEsingle)
957 return true;
958 Val2.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven, &losesInfo);
959 return !losesInfo;
960 }
961 case Type::DoubleTyID: {
Dan Gohman518cda42011-12-17 00:04:22 +0000962 if (&Val2.getSemantics() == &APFloat::IEEEhalf ||
963 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen4f0bd682008-10-09 23:00:39 +0000964 &Val2.getSemantics() == &APFloat::IEEEdouble)
965 return true;
966 Val2.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, &losesInfo);
967 return !losesInfo;
968 }
Dale Johannesenbdad8092007-08-09 22:51:36 +0000969 case Type::X86_FP80TyID:
Dan Gohman518cda42011-12-17 00:04:22 +0000970 return &Val2.getSemantics() == &APFloat::IEEEhalf ||
971 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen028084e2007-09-12 03:30:33 +0000972 &Val2.getSemantics() == &APFloat::IEEEdouble ||
973 &Val2.getSemantics() == &APFloat::x87DoubleExtended;
Dale Johannesenbdad8092007-08-09 22:51:36 +0000974 case Type::FP128TyID:
Dan Gohman518cda42011-12-17 00:04:22 +0000975 return &Val2.getSemantics() == &APFloat::IEEEhalf ||
976 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen028084e2007-09-12 03:30:33 +0000977 &Val2.getSemantics() == &APFloat::IEEEdouble ||
978 &Val2.getSemantics() == &APFloat::IEEEquad;
Dale Johannesen007aa372007-10-11 18:07:22 +0000979 case Type::PPC_FP128TyID:
Dan Gohman518cda42011-12-17 00:04:22 +0000980 return &Val2.getSemantics() == &APFloat::IEEEhalf ||
981 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen007aa372007-10-11 18:07:22 +0000982 &Val2.getSemantics() == &APFloat::IEEEdouble ||
983 &Val2.getSemantics() == &APFloat::PPCDoubleDouble;
Chris Lattner2f7c9632001-06-06 20:29:01 +0000984 }
Chris Lattneraa2372562006-05-24 17:04:05 +0000985}
Chris Lattner9655e542001-07-20 19:16:02 +0000986
Chris Lattner49d855c2001-09-07 16:46:31 +0000987//===----------------------------------------------------------------------===//
Chris Lattner49d855c2001-09-07 16:46:31 +0000988// Factory Function Implementation
989
Chris Lattner229907c2011-07-18 04:54:35 +0000990ConstantAggregateZero* ConstantAggregateZero::get(Type* Ty) {
Chris Lattner13ee7952010-08-28 04:09:24 +0000991 assert((Ty->isStructTy() || Ty->isArrayTy() || Ty->isVectorTy()) &&
Owen Andersonb292b8c2009-07-30 23:03:37 +0000992 "Cannot create an aggregate zero of non-aggregate type!");
993
994 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
Owen Andersonb292b8c2009-07-30 23:03:37 +0000995 return pImpl->AggZeroConstants.getOrCreate(Ty, 0);
996}
997
Dan Gohman92b551b2009-03-03 02:55:14 +0000998/// destroyConstant - Remove the constant from the constant table...
999///
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001000void ConstantAggregateZero::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001001 getType()->getContext().pImpl->AggZeroConstants.remove(this);
Chris Lattner9fba3da2004-02-15 05:53:04 +00001002 destroyConstantImpl();
1003}
1004
Dan Gohman92b551b2009-03-03 02:55:14 +00001005/// destroyConstant - Remove the constant from the constant table...
1006///
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001007void ConstantArray::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001008 getType()->getContext().pImpl->ArrayConstants.remove(this);
Chris Lattner98fa07b2003-05-23 20:03:32 +00001009 destroyConstantImpl();
1010}
1011
Reid Spencer2546b762007-01-26 07:37:34 +00001012/// isString - This method returns true if the array is an array of i8, and
1013/// if the elements of the array are all ConstantInt's.
Chris Lattnere8dfcca2004-01-14 17:06:38 +00001014bool ConstantArray::isString() const {
Reid Spencer2546b762007-01-26 07:37:34 +00001015 // Check the element type for i8...
Duncan Sands9dff9be2010-02-15 16:12:20 +00001016 if (!getType()->getElementType()->isIntegerTy(8))
Chris Lattnere8dfcca2004-01-14 17:06:38 +00001017 return false;
1018 // Check the elements to make sure they are all integers, not constant
1019 // expressions.
1020 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
1021 if (!isa<ConstantInt>(getOperand(i)))
1022 return false;
1023 return true;
1024}
1025
Evan Cheng3763c5b2006-10-26 19:15:05 +00001026/// isCString - This method returns true if the array is a string (see
Dan Gohman92b551b2009-03-03 02:55:14 +00001027/// isString) and it ends in a null byte \\0 and does not contains any other
Evan Cheng3763c5b2006-10-26 19:15:05 +00001028/// null bytes except its terminator.
Owen Andersone4dcecd2009-07-13 21:27:19 +00001029bool ConstantArray::isCString() const {
Reid Spencer2546b762007-01-26 07:37:34 +00001030 // Check the element type for i8...
Duncan Sands9dff9be2010-02-15 16:12:20 +00001031 if (!getType()->getElementType()->isIntegerTy(8))
Evan Chenge974da62006-10-26 21:48:03 +00001032 return false;
Owen Andersone4dcecd2009-07-13 21:27:19 +00001033
Evan Chenge974da62006-10-26 21:48:03 +00001034 // Last element must be a null.
Owen Andersone4dcecd2009-07-13 21:27:19 +00001035 if (!getOperand(getNumOperands()-1)->isNullValue())
Evan Chenge974da62006-10-26 21:48:03 +00001036 return false;
1037 // Other elements must be non-null integers.
1038 for (unsigned i = 0, e = getNumOperands()-1; i != e; ++i) {
1039 if (!isa<ConstantInt>(getOperand(i)))
Evan Cheng3763c5b2006-10-26 19:15:05 +00001040 return false;
Owen Andersone4dcecd2009-07-13 21:27:19 +00001041 if (getOperand(i)->isNullValue())
Evan Chenge974da62006-10-26 21:48:03 +00001042 return false;
1043 }
Evan Cheng3763c5b2006-10-26 19:15:05 +00001044 return true;
1045}
1046
1047
Jay Foad2a31eb42011-06-28 08:24:19 +00001048/// convertToString - Helper function for getAsString() and getAsCString().
Chris Lattnerd04e32d2011-07-17 06:01:30 +00001049static std::string convertToString(const User *U, unsigned len) {
Jay Foad2a31eb42011-06-28 08:24:19 +00001050 std::string Result;
1051 Result.reserve(len);
1052 for (unsigned i = 0; i != len; ++i)
1053 Result.push_back((char)cast<ConstantInt>(U->getOperand(i))->getZExtValue());
1054 return Result;
1055}
1056
1057/// getAsString - If this array is isString(), then this method converts the
1058/// array to an std::string and returns it. Otherwise, it asserts out.
Dan Gohman92b551b2009-03-03 02:55:14 +00001059///
Chris Lattner81fabb02002-08-26 17:53:56 +00001060std::string ConstantArray::getAsString() const {
Chris Lattnere8dfcca2004-01-14 17:06:38 +00001061 assert(isString() && "Not a string!");
Jay Foad2a31eb42011-06-28 08:24:19 +00001062 return convertToString(this, getNumOperands());
1063}
1064
1065
1066/// getAsCString - If this array is isCString(), then this method converts the
1067/// array (without the trailing null byte) to an std::string and returns it.
1068/// Otherwise, it asserts out.
1069///
1070std::string ConstantArray::getAsCString() const {
1071 assert(isCString() && "Not a string!");
1072 return convertToString(this, getNumOperands() - 1);
Chris Lattner81fabb02002-08-26 17:53:56 +00001073}
1074
1075
Chris Lattner3462ae32001-12-03 22:26:30 +00001076//---- ConstantStruct::get() implementation...
Chris Lattner49d855c2001-09-07 16:46:31 +00001077//
Chris Lattnerb50d1352003-10-05 00:17:43 +00001078
Chris Lattnerd7a73302001-10-13 06:57:33 +00001079// destroyConstant - Remove the constant from the constant table...
Chris Lattner883ad0b2001-10-03 15:39:36 +00001080//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001081void ConstantStruct::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001082 getType()->getContext().pImpl->StructConstants.remove(this);
Chris Lattnerd7a73302001-10-13 06:57:33 +00001083 destroyConstantImpl();
1084}
Chris Lattner883ad0b2001-10-03 15:39:36 +00001085
Brian Gaeke02209042004-08-20 06:00:58 +00001086// destroyConstant - Remove the constant from the constant table...
1087//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001088void ConstantVector::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001089 getType()->getContext().pImpl->VectorConstants.remove(this);
Brian Gaeke02209042004-08-20 06:00:58 +00001090 destroyConstantImpl();
1091}
1092
Dan Gohman07159202007-10-17 17:51:30 +00001093/// getSplatValue - If this is a splat constant, where all of the
1094/// elements have the same value, return that value. Otherwise return null.
Duncan Sandscf0ff032011-02-01 08:39:12 +00001095Constant *ConstantVector::getSplatValue() const {
Dan Gohman07159202007-10-17 17:51:30 +00001096 // Check out first element.
1097 Constant *Elt = getOperand(0);
1098 // Then make sure all remaining elements point to the same value.
1099 for (unsigned I = 1, E = getNumOperands(); I < E; ++I)
Chris Lattnerd04e32d2011-07-17 06:01:30 +00001100 if (getOperand(I) != Elt)
1101 return 0;
Dan Gohman07159202007-10-17 17:51:30 +00001102 return Elt;
1103}
1104
Chris Lattner31b132c2009-10-28 00:01:44 +00001105//---- ConstantPointerNull::get() implementation.
Chris Lattnerd7a73302001-10-13 06:57:33 +00001106//
Chris Lattner98fa07b2003-05-23 20:03:32 +00001107
Chris Lattner229907c2011-07-18 04:54:35 +00001108ConstantPointerNull *ConstantPointerNull::get(PointerType *Ty) {
Owen Andersonc8c30262009-07-31 22:45:43 +00001109 return Ty->getContext().pImpl->NullPtrConstants.getOrCreate(Ty, 0);
Chris Lattner883ad0b2001-10-03 15:39:36 +00001110}
1111
Chris Lattner0c6e0b92002-08-18 00:40:04 +00001112// destroyConstant - Remove the constant from the constant table...
1113//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001114void ConstantPointerNull::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001115 getType()->getContext().pImpl->NullPtrConstants.remove(this);
Chris Lattner0c6e0b92002-08-18 00:40:04 +00001116 destroyConstantImpl();
1117}
1118
1119
Chris Lattner31b132c2009-10-28 00:01:44 +00001120//---- UndefValue::get() implementation.
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001121//
1122
Chris Lattner229907c2011-07-18 04:54:35 +00001123UndefValue *UndefValue::get(Type *Ty) {
Owen Andersonc8c30262009-07-31 22:45:43 +00001124 return Ty->getContext().pImpl->UndefValueConstants.getOrCreate(Ty, 0);
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001125}
1126
1127// destroyConstant - Remove the constant from the constant table.
1128//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001129void UndefValue::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001130 getType()->getContext().pImpl->UndefValueConstants.remove(this);
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001131 destroyConstantImpl();
1132}
1133
Chris Lattner31b132c2009-10-28 00:01:44 +00001134//---- BlockAddress::get() implementation.
1135//
1136
1137BlockAddress *BlockAddress::get(BasicBlock *BB) {
1138 assert(BB->getParent() != 0 && "Block must have a parent");
1139 return get(BB->getParent(), BB);
1140}
1141
1142BlockAddress *BlockAddress::get(Function *F, BasicBlock *BB) {
1143 BlockAddress *&BA =
1144 F->getContext().pImpl->BlockAddresses[std::make_pair(F, BB)];
1145 if (BA == 0)
1146 BA = new BlockAddress(F, BB);
1147
1148 assert(BA->getFunction() == F && "Basic block moved between functions");
1149 return BA;
1150}
1151
1152BlockAddress::BlockAddress(Function *F, BasicBlock *BB)
1153: Constant(Type::getInt8PtrTy(F->getContext()), Value::BlockAddressVal,
1154 &Op<0>(), 2) {
Chris Lattnerc559a9f2009-11-01 03:03:03 +00001155 setOperand(0, F);
1156 setOperand(1, BB);
Chris Lattneraa99c942009-11-01 01:27:45 +00001157 BB->AdjustBlockAddressRefCount(1);
Chris Lattner31b132c2009-10-28 00:01:44 +00001158}
1159
1160
1161// destroyConstant - Remove the constant from the constant table.
1162//
1163void BlockAddress::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001164 getFunction()->getType()->getContext().pImpl
Chris Lattner31b132c2009-10-28 00:01:44 +00001165 ->BlockAddresses.erase(std::make_pair(getFunction(), getBasicBlock()));
Chris Lattneraa99c942009-11-01 01:27:45 +00001166 getBasicBlock()->AdjustBlockAddressRefCount(-1);
Chris Lattner31b132c2009-10-28 00:01:44 +00001167 destroyConstantImpl();
1168}
1169
1170void BlockAddress::replaceUsesOfWithOnConstant(Value *From, Value *To, Use *U) {
1171 // This could be replacing either the Basic Block or the Function. In either
1172 // case, we have to remove the map entry.
1173 Function *NewF = getFunction();
1174 BasicBlock *NewBB = getBasicBlock();
1175
1176 if (U == &Op<0>())
1177 NewF = cast<Function>(To);
1178 else
1179 NewBB = cast<BasicBlock>(To);
1180
1181 // See if the 'new' entry already exists, if not, just update this in place
1182 // and return early.
1183 BlockAddress *&NewBA =
1184 getContext().pImpl->BlockAddresses[std::make_pair(NewF, NewBB)];
1185 if (NewBA == 0) {
Chris Lattnerc559a9f2009-11-01 03:03:03 +00001186 getBasicBlock()->AdjustBlockAddressRefCount(-1);
1187
Chris Lattner31b132c2009-10-28 00:01:44 +00001188 // Remove the old entry, this can't cause the map to rehash (just a
1189 // tombstone will get added).
1190 getContext().pImpl->BlockAddresses.erase(std::make_pair(getFunction(),
1191 getBasicBlock()));
1192 NewBA = this;
Chris Lattnerc559a9f2009-11-01 03:03:03 +00001193 setOperand(0, NewF);
1194 setOperand(1, NewBB);
1195 getBasicBlock()->AdjustBlockAddressRefCount(1);
Chris Lattner31b132c2009-10-28 00:01:44 +00001196 return;
1197 }
1198
1199 // Otherwise, I do need to replace this with an existing value.
1200 assert(NewBA != this && "I didn't contain From!");
1201
1202 // Everyone using this now uses the replacement.
Chris Lattneraf1783f2011-07-15 06:18:52 +00001203 replaceAllUsesWith(NewBA);
Chris Lattner31b132c2009-10-28 00:01:44 +00001204
1205 destroyConstant();
1206}
1207
1208//---- ConstantExpr::get() implementations.
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001209//
Reid Spencer8d9336d2006-12-31 05:26:44 +00001210
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001211/// This is a utility function to handle folding of casts and lookup of the
Duncan Sands7d6c8ae2008-03-30 19:38:55 +00001212/// cast in the ExprConstants map. It is used by the various get* methods below.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001213static inline Constant *getFoldedCast(
Chris Lattner229907c2011-07-18 04:54:35 +00001214 Instruction::CastOps opc, Constant *C, Type *Ty) {
Chris Lattner815ae2b2003-10-07 22:19:19 +00001215 assert(Ty->isFirstClassType() && "Cannot cast to an aggregate type!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001216 // Fold a few common cases
Chris Lattnerf5edeeb2010-02-01 20:48:08 +00001217 if (Constant *FC = ConstantFoldCastInstruction(opc, C, Ty))
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001218 return FC;
Chris Lattneracdbe712003-04-17 19:24:48 +00001219
Owen Anderson1584a292009-08-04 20:25:11 +00001220 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
1221
Vikram S. Adve4c485332002-07-15 18:19:33 +00001222 // Look up the constant in the table first to ensure uniqueness
Chris Lattner2b383d2e2003-05-13 21:37:02 +00001223 std::vector<Constant*> argVec(1, C);
Reid Spenceree3c9912006-12-04 05:19:50 +00001224 ExprMapKeyType Key(opc, argVec);
Owen Anderson2d7231d2009-06-17 18:40:29 +00001225
Owen Anderson1584a292009-08-04 20:25:11 +00001226 return pImpl->ExprConstants.getOrCreate(Ty, Key);
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001227}
Reid Spencerf37dc652006-12-05 19:14:13 +00001228
Chris Lattner229907c2011-07-18 04:54:35 +00001229Constant *ConstantExpr::getCast(unsigned oc, Constant *C, Type *Ty) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001230 Instruction::CastOps opc = Instruction::CastOps(oc);
1231 assert(Instruction::isCast(opc) && "opcode out of range");
1232 assert(C && Ty && "Null arguments to getCast");
Chris Lattner37bc78a2010-01-26 21:51:43 +00001233 assert(CastInst::castIsValid(opc, C, Ty) && "Invalid constantexpr cast!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001234
1235 switch (opc) {
Chris Lattner37bc78a2010-01-26 21:51:43 +00001236 default:
1237 llvm_unreachable("Invalid cast opcode");
1238 break;
1239 case Instruction::Trunc: return getTrunc(C, Ty);
1240 case Instruction::ZExt: return getZExt(C, Ty);
1241 case Instruction::SExt: return getSExt(C, Ty);
1242 case Instruction::FPTrunc: return getFPTrunc(C, Ty);
1243 case Instruction::FPExt: return getFPExtend(C, Ty);
1244 case Instruction::UIToFP: return getUIToFP(C, Ty);
1245 case Instruction::SIToFP: return getSIToFP(C, Ty);
1246 case Instruction::FPToUI: return getFPToUI(C, Ty);
1247 case Instruction::FPToSI: return getFPToSI(C, Ty);
1248 case Instruction::PtrToInt: return getPtrToInt(C, Ty);
1249 case Instruction::IntToPtr: return getIntToPtr(C, Ty);
1250 case Instruction::BitCast: return getBitCast(C, Ty);
Chris Lattner1ece6f82005-01-01 15:59:57 +00001251 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001252 return 0;
Reid Spencerf37dc652006-12-05 19:14:13 +00001253}
1254
Chris Lattner229907c2011-07-18 04:54:35 +00001255Constant *ConstantExpr::getZExtOrBitCast(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001256 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001257 return getBitCast(C, Ty);
1258 return getZExt(C, Ty);
Reid Spencer5c140882006-12-04 20:17:56 +00001259}
1260
Chris Lattner229907c2011-07-18 04:54:35 +00001261Constant *ConstantExpr::getSExtOrBitCast(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001262 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001263 return getBitCast(C, Ty);
1264 return getSExt(C, Ty);
Reid Spencer5c140882006-12-04 20:17:56 +00001265}
1266
Chris Lattner229907c2011-07-18 04:54:35 +00001267Constant *ConstantExpr::getTruncOrBitCast(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001268 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001269 return getBitCast(C, Ty);
1270 return getTrunc(C, Ty);
Reid Spencer5c140882006-12-04 20:17:56 +00001271}
1272
Chris Lattner229907c2011-07-18 04:54:35 +00001273Constant *ConstantExpr::getPointerCast(Constant *S, Type *Ty) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001274 assert(S->getType()->isPointerTy() && "Invalid cast");
1275 assert((Ty->isIntegerTy() || Ty->isPointerTy()) && "Invalid cast");
Reid Spencerbc245a02006-12-05 03:25:26 +00001276
Duncan Sands9dff9be2010-02-15 16:12:20 +00001277 if (Ty->isIntegerTy())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001278 return getPtrToInt(S, Ty);
1279 return getBitCast(S, Ty);
Reid Spencerbc245a02006-12-05 03:25:26 +00001280}
1281
Chris Lattner229907c2011-07-18 04:54:35 +00001282Constant *ConstantExpr::getIntegerCast(Constant *C, Type *Ty,
Reid Spencer56521c42006-12-12 00:51:07 +00001283 bool isSigned) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001284 assert(C->getType()->isIntOrIntVectorTy() &&
1285 Ty->isIntOrIntVectorTy() && "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001286 unsigned SrcBits = C->getType()->getScalarSizeInBits();
1287 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer56521c42006-12-12 00:51:07 +00001288 Instruction::CastOps opcode =
1289 (SrcBits == DstBits ? Instruction::BitCast :
1290 (SrcBits > DstBits ? Instruction::Trunc :
1291 (isSigned ? Instruction::SExt : Instruction::ZExt)));
1292 return getCast(opcode, C, Ty);
1293}
1294
Chris Lattner229907c2011-07-18 04:54:35 +00001295Constant *ConstantExpr::getFPCast(Constant *C, Type *Ty) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001296 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer56521c42006-12-12 00:51:07 +00001297 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001298 unsigned SrcBits = C->getType()->getScalarSizeInBits();
1299 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencerca104e82006-12-12 05:38:50 +00001300 if (SrcBits == DstBits)
1301 return C; // Avoid a useless cast
Reid Spencer56521c42006-12-12 00:51:07 +00001302 Instruction::CastOps opcode =
Jay Foad9f32cfd2011-01-27 14:44:55 +00001303 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt);
Reid Spencer56521c42006-12-12 00:51:07 +00001304 return getCast(opcode, C, Ty);
1305}
1306
Chris Lattner229907c2011-07-18 04:54:35 +00001307Constant *ConstantExpr::getTrunc(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001308#ifndef NDEBUG
1309 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1310 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1311#endif
1312 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001313 assert(C->getType()->isIntOrIntVectorTy() && "Trunc operand must be integer");
1314 assert(Ty->isIntOrIntVectorTy() && "Trunc produces only integral");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001315 assert(C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001316 "SrcTy must be larger than DestTy for Trunc!");
1317
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001318 return getFoldedCast(Instruction::Trunc, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001319}
1320
Chris Lattner229907c2011-07-18 04:54:35 +00001321Constant *ConstantExpr::getSExt(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001322#ifndef NDEBUG
1323 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1324 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1325#endif
1326 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001327 assert(C->getType()->isIntOrIntVectorTy() && "SExt operand must be integral");
1328 assert(Ty->isIntOrIntVectorTy() && "SExt produces only integer");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001329 assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001330 "SrcTy must be smaller than DestTy for SExt!");
1331
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001332 return getFoldedCast(Instruction::SExt, C, Ty);
Chris Lattnerdd284742004-04-04 23:20:30 +00001333}
1334
Chris Lattner229907c2011-07-18 04:54:35 +00001335Constant *ConstantExpr::getZExt(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001336#ifndef NDEBUG
1337 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1338 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1339#endif
1340 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001341 assert(C->getType()->isIntOrIntVectorTy() && "ZEXt operand must be integral");
1342 assert(Ty->isIntOrIntVectorTy() && "ZExt produces only integer");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001343 assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001344 "SrcTy must be smaller than DestTy for ZExt!");
1345
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001346 return getFoldedCast(Instruction::ZExt, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001347}
1348
Chris Lattner229907c2011-07-18 04:54:35 +00001349Constant *ConstantExpr::getFPTrunc(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001350#ifndef NDEBUG
1351 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1352 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1353#endif
1354 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001355 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001356 C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001357 "This is an illegal floating point truncation!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001358 return getFoldedCast(Instruction::FPTrunc, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001359}
1360
Chris Lattner229907c2011-07-18 04:54:35 +00001361Constant *ConstantExpr::getFPExtend(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001362#ifndef NDEBUG
1363 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1364 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1365#endif
1366 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001367 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001368 C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001369 "This is an illegal floating point extension!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001370 return getFoldedCast(Instruction::FPExt, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001371}
1372
Chris Lattner229907c2011-07-18 04:54:35 +00001373Constant *ConstantExpr::getUIToFP(Constant *C, Type *Ty) {
Devang Pateld26344d2008-11-03 23:20:04 +00001374#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001375 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1376 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001377#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001378 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001379 assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00001380 "This is an illegal uint to floating point cast!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001381 return getFoldedCast(Instruction::UIToFP, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001382}
1383
Chris Lattner229907c2011-07-18 04:54:35 +00001384Constant *ConstantExpr::getSIToFP(Constant *C, Type *Ty) {
Devang Pateld26344d2008-11-03 23:20:04 +00001385#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001386 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1387 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001388#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001389 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001390 assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001391 "This is an illegal sint to floating point cast!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001392 return getFoldedCast(Instruction::SIToFP, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001393}
1394
Chris Lattner229907c2011-07-18 04:54:35 +00001395Constant *ConstantExpr::getFPToUI(Constant *C, Type *Ty) {
Devang Pateld26344d2008-11-03 23:20:04 +00001396#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001397 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1398 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001399#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001400 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001401 assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00001402 "This is an illegal floating point to uint cast!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001403 return getFoldedCast(Instruction::FPToUI, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001404}
1405
Chris Lattner229907c2011-07-18 04:54:35 +00001406Constant *ConstantExpr::getFPToSI(Constant *C, Type *Ty) {
Devang Pateld26344d2008-11-03 23:20:04 +00001407#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001408 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1409 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001410#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001411 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001412 assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00001413 "This is an illegal floating point to sint cast!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001414 return getFoldedCast(Instruction::FPToSI, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001415}
1416
Chris Lattner229907c2011-07-18 04:54:35 +00001417Constant *ConstantExpr::getPtrToInt(Constant *C, Type *DstTy) {
Nadav Rotem3924cb02011-12-05 06:29:09 +00001418 assert(C->getType()->getScalarType()->isPointerTy() &&
1419 "PtrToInt source must be pointer or pointer vector");
1420 assert(DstTy->getScalarType()->isIntegerTy() &&
1421 "PtrToInt destination must be integer or integer vector");
1422 assert(C->getType()->getNumElements() == DstTy->getNumElements() &&
1423 "Invalid cast between a different number of vector elements");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001424 return getFoldedCast(Instruction::PtrToInt, C, DstTy);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001425}
1426
Chris Lattner229907c2011-07-18 04:54:35 +00001427Constant *ConstantExpr::getIntToPtr(Constant *C, Type *DstTy) {
Nadav Rotem3924cb02011-12-05 06:29:09 +00001428 assert(C->getType()->getScalarType()->isIntegerTy() &&
1429 "IntToPtr source must be integer or integer vector");
1430 assert(DstTy->getScalarType()->isPointerTy() &&
1431 "IntToPtr destination must be a pointer or pointer vector");
1432 assert(C->getType()->getNumElements() == DstTy->getNumElements() &&
1433 "Invalid cast between a different number of vector elements");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001434 return getFoldedCast(Instruction::IntToPtr, C, DstTy);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001435}
1436
Chris Lattner229907c2011-07-18 04:54:35 +00001437Constant *ConstantExpr::getBitCast(Constant *C, Type *DstTy) {
Chris Lattner37bc78a2010-01-26 21:51:43 +00001438 assert(CastInst::castIsValid(Instruction::BitCast, C, DstTy) &&
1439 "Invalid constantexpr bitcast!");
Chris Lattnercbeda872009-03-21 06:55:54 +00001440
1441 // It is common to ask for a bitcast of a value to its own type, handle this
1442 // speedily.
1443 if (C->getType() == DstTy) return C;
1444
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001445 return getFoldedCast(Instruction::BitCast, C, DstTy);
Chris Lattnerdd284742004-04-04 23:20:30 +00001446}
1447
Chris Lattner887ecac2011-07-09 18:23:52 +00001448Constant *ConstantExpr::get(unsigned Opcode, Constant *C1, Constant *C2,
1449 unsigned Flags) {
1450 // Check the operands for consistency first.
Reid Spencer7eb55b32006-11-02 01:53:59 +00001451 assert(Opcode >= Instruction::BinaryOpsBegin &&
1452 Opcode < Instruction::BinaryOpsEnd &&
Chris Lattner38a9bcd2003-05-21 17:49:25 +00001453 "Invalid opcode in binary constant expression");
1454 assert(C1->getType() == C2->getType() &&
1455 "Operand types in binary constant expression should match");
Owen Anderson61794042009-06-17 20:10:08 +00001456
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001457#ifndef NDEBUG
1458 switch (Opcode) {
Dan Gohmana5b96452009-06-04 22:49:04 +00001459 case Instruction::Add:
Reid Spencer7eb55b32006-11-02 01:53:59 +00001460 case Instruction::Sub:
Dan Gohmana5b96452009-06-04 22:49:04 +00001461 case Instruction::Mul:
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001462 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001463 assert(C1->getType()->isIntOrIntVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001464 "Tried to create an integer operation on a non-integer type!");
1465 break;
1466 case Instruction::FAdd:
1467 case Instruction::FSub:
1468 case Instruction::FMul:
1469 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001470 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001471 "Tried to create a floating-point operation on a "
1472 "non-floating-point type!");
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001473 break;
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001474 case Instruction::UDiv:
1475 case Instruction::SDiv:
1476 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001477 assert(C1->getType()->isIntOrIntVectorTy() &&
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001478 "Tried to create an arithmetic operation on a non-arithmetic type!");
1479 break;
1480 case Instruction::FDiv:
1481 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001482 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001483 "Tried to create an arithmetic operation on a non-arithmetic type!");
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001484 break;
Reid Spencer7eb55b32006-11-02 01:53:59 +00001485 case Instruction::URem:
1486 case Instruction::SRem:
1487 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001488 assert(C1->getType()->isIntOrIntVectorTy() &&
Reid Spencer7eb55b32006-11-02 01:53:59 +00001489 "Tried to create an arithmetic operation on a non-arithmetic type!");
1490 break;
1491 case Instruction::FRem:
1492 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001493 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001494 "Tried to create an arithmetic operation on a non-arithmetic type!");
Reid Spencer7eb55b32006-11-02 01:53:59 +00001495 break;
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001496 case Instruction::And:
1497 case Instruction::Or:
1498 case Instruction::Xor:
1499 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001500 assert(C1->getType()->isIntOrIntVectorTy() &&
Misha Brukman3852f652005-01-27 06:46:38 +00001501 "Tried to create a logical operation on a non-integral type!");
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001502 break;
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001503 case Instruction::Shl:
Reid Spencerfdff9382006-11-08 06:47:33 +00001504 case Instruction::LShr:
1505 case Instruction::AShr:
Reid Spencer2341c222007-02-02 02:16:23 +00001506 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001507 assert(C1->getType()->isIntOrIntVectorTy() &&
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001508 "Tried to create a shift operation on a non-integer type!");
1509 break;
1510 default:
1511 break;
1512 }
1513#endif
1514
Chris Lattner887ecac2011-07-09 18:23:52 +00001515 if (Constant *FC = ConstantFoldBinaryInstruction(Opcode, C1, C2))
1516 return FC; // Fold a few common cases.
1517
1518 std::vector<Constant*> argVec(1, C1);
1519 argVec.push_back(C2);
1520 ExprMapKeyType Key(Opcode, argVec, 0, Flags);
1521
1522 LLVMContextImpl *pImpl = C1->getContext().pImpl;
1523 return pImpl->ExprConstants.getOrCreate(C1->getType(), Key);
Reid Spencera009d0d2006-12-04 21:35:24 +00001524}
1525
Chris Lattner229907c2011-07-18 04:54:35 +00001526Constant *ConstantExpr::getSizeOf(Type* Ty) {
Owen Anderson487375e2009-07-29 18:55:55 +00001527 // sizeof is implemented as: (i64) gep (Ty*)null, 1
1528 // Note that a non-inbounds gep is used, as null isn't within any object.
Owen Anderson55f1c092009-08-13 21:58:54 +00001529 Constant *GEPIdx = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
Owen Anderson487375e2009-07-29 18:55:55 +00001530 Constant *GEP = getGetElementPtr(
Jay Foaded8db7d2011-07-21 14:31:17 +00001531 Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx);
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001532 return getPtrToInt(GEP,
1533 Type::getInt64Ty(Ty->getContext()));
Owen Anderson487375e2009-07-29 18:55:55 +00001534}
1535
Chris Lattner229907c2011-07-18 04:54:35 +00001536Constant *ConstantExpr::getAlignOf(Type* Ty) {
Dan Gohmancf913832010-01-28 02:15:55 +00001537 // alignof is implemented as: (i64) gep ({i1,Ty}*)null, 0, 1
Dan Gohman50c09d02009-08-11 17:57:01 +00001538 // Note that a non-inbounds gep is used, as null isn't within any object.
Chris Lattner229907c2011-07-18 04:54:35 +00001539 Type *AligningTy =
Chris Lattnerf3f545e2011-06-18 22:48:56 +00001540 StructType::get(Type::getInt1Ty(Ty->getContext()), Ty, NULL);
Owen Anderson5a1acd92009-07-31 20:28:14 +00001541 Constant *NullPtr = Constant::getNullValue(AligningTy->getPointerTo());
Dan Gohmana9be7392010-01-28 02:43:22 +00001542 Constant *Zero = ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0);
Owen Anderson55f1c092009-08-13 21:58:54 +00001543 Constant *One = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
Owen Anderson487375e2009-07-29 18:55:55 +00001544 Constant *Indices[2] = { Zero, One };
Jay Foaded8db7d2011-07-21 14:31:17 +00001545 Constant *GEP = getGetElementPtr(NullPtr, Indices);
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001546 return getPtrToInt(GEP,
1547 Type::getInt64Ty(Ty->getContext()));
Owen Anderson487375e2009-07-29 18:55:55 +00001548}
1549
Chris Lattner229907c2011-07-18 04:54:35 +00001550Constant *ConstantExpr::getOffsetOf(StructType* STy, unsigned FieldNo) {
Dan Gohmanede94e62010-02-01 16:37:38 +00001551 return getOffsetOf(STy, ConstantInt::get(Type::getInt32Ty(STy->getContext()),
1552 FieldNo));
1553}
1554
Chris Lattner229907c2011-07-18 04:54:35 +00001555Constant *ConstantExpr::getOffsetOf(Type* Ty, Constant *FieldNo) {
Dan Gohmanff3af7252009-08-16 21:26:11 +00001556 // offsetof is implemented as: (i64) gep (Ty*)null, 0, FieldNo
1557 // Note that a non-inbounds gep is used, as null isn't within any object.
1558 Constant *GEPIdx[] = {
Dan Gohmanede94e62010-02-01 16:37:38 +00001559 ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0),
1560 FieldNo
Dan Gohmanff3af7252009-08-16 21:26:11 +00001561 };
1562 Constant *GEP = getGetElementPtr(
Jay Foaded8db7d2011-07-21 14:31:17 +00001563 Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx);
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001564 return getPtrToInt(GEP,
1565 Type::getInt64Ty(Ty->getContext()));
Dan Gohmanff3af7252009-08-16 21:26:11 +00001566}
Owen Anderson487375e2009-07-29 18:55:55 +00001567
Chris Lattner887ecac2011-07-09 18:23:52 +00001568Constant *ConstantExpr::getCompare(unsigned short Predicate,
1569 Constant *C1, Constant *C2) {
Reid Spencera009d0d2006-12-04 21:35:24 +00001570 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Chris Lattner887ecac2011-07-09 18:23:52 +00001571
1572 switch (Predicate) {
1573 default: llvm_unreachable("Invalid CmpInst predicate");
1574 case CmpInst::FCMP_FALSE: case CmpInst::FCMP_OEQ: case CmpInst::FCMP_OGT:
1575 case CmpInst::FCMP_OGE: case CmpInst::FCMP_OLT: case CmpInst::FCMP_OLE:
1576 case CmpInst::FCMP_ONE: case CmpInst::FCMP_ORD: case CmpInst::FCMP_UNO:
1577 case CmpInst::FCMP_UEQ: case CmpInst::FCMP_UGT: case CmpInst::FCMP_UGE:
1578 case CmpInst::FCMP_ULT: case CmpInst::FCMP_ULE: case CmpInst::FCMP_UNE:
1579 case CmpInst::FCMP_TRUE:
1580 return getFCmp(Predicate, C1, C2);
1581
1582 case CmpInst::ICMP_EQ: case CmpInst::ICMP_NE: case CmpInst::ICMP_UGT:
1583 case CmpInst::ICMP_UGE: case CmpInst::ICMP_ULT: case CmpInst::ICMP_ULE:
1584 case CmpInst::ICMP_SGT: case CmpInst::ICMP_SGE: case CmpInst::ICMP_SLT:
1585 case CmpInst::ICMP_SLE:
1586 return getICmp(Predicate, C1, C2);
1587 }
Chris Lattner29ca2c62004-08-04 18:50:09 +00001588}
1589
Chris Lattner887ecac2011-07-09 18:23:52 +00001590Constant *ConstantExpr::getSelect(Constant *C, Constant *V1, Constant *V2) {
Chris Lattner41632132008-12-29 00:16:12 +00001591 assert(!SelectInst::areInvalidOperands(C, V1, V2)&&"Invalid select operands");
Chris Lattner6e415c02004-03-12 05:54:04 +00001592
Chris Lattner887ecac2011-07-09 18:23:52 +00001593 if (Constant *SC = ConstantFoldSelectInstruction(C, V1, V2))
1594 return SC; // Fold common cases
Chris Lattner6e415c02004-03-12 05:54:04 +00001595
1596 std::vector<Constant*> argVec(3, C);
1597 argVec[1] = V1;
1598 argVec[2] = V2;
Reid Spenceree3c9912006-12-04 05:19:50 +00001599 ExprMapKeyType Key(Instruction::Select, argVec);
Owen Anderson61794042009-06-17 20:10:08 +00001600
Chris Lattner887ecac2011-07-09 18:23:52 +00001601 LLVMContextImpl *pImpl = C->getContext().pImpl;
1602 return pImpl->ExprConstants.getOrCreate(V1->getType(), Key);
Chris Lattner6e415c02004-03-12 05:54:04 +00001603}
1604
Jay Foaded8db7d2011-07-21 14:31:17 +00001605Constant *ConstantExpr::getGetElementPtr(Constant *C, ArrayRef<Value *> Idxs,
1606 bool InBounds) {
1607 if (Constant *FC = ConstantFoldGetElementPtr(C, InBounds, Idxs))
Chris Lattner94c8d292011-02-11 05:34:33 +00001608 return FC; // Fold a few common cases.
Dan Gohman1b849082009-09-07 23:54:19 +00001609
Chris Lattner887ecac2011-07-09 18:23:52 +00001610 // Get the result type of the getelementptr!
Jay Foadd1b78492011-07-25 09:48:08 +00001611 Type *Ty = GetElementPtrInst::getIndexedType(C->getType(), Idxs);
Chris Lattner887ecac2011-07-09 18:23:52 +00001612 assert(Ty && "GEP indices invalid!");
1613 unsigned AS = cast<PointerType>(C->getType())->getAddressSpace();
1614 Type *ReqTy = Ty->getPointerTo(AS);
1615
Duncan Sands19d0b472010-02-16 11:11:14 +00001616 assert(C->getType()->isPointerTy() &&
Dan Gohman1b849082009-09-07 23:54:19 +00001617 "Non-pointer type for constant GetElementPtr expression");
1618 // Look up the constant in the table first to ensure uniqueness
1619 std::vector<Constant*> ArgVec;
Jay Foaded8db7d2011-07-21 14:31:17 +00001620 ArgVec.reserve(1 + Idxs.size());
Dan Gohman1b849082009-09-07 23:54:19 +00001621 ArgVec.push_back(C);
Jay Foaded8db7d2011-07-21 14:31:17 +00001622 for (unsigned i = 0, e = Idxs.size(); i != e; ++i)
Dan Gohman1b849082009-09-07 23:54:19 +00001623 ArgVec.push_back(cast<Constant>(Idxs[i]));
1624 const ExprMapKeyType Key(Instruction::GetElementPtr, ArgVec, 0,
Chris Lattner94c8d292011-02-11 05:34:33 +00001625 InBounds ? GEPOperator::IsInBounds : 0);
Chris Lattner887ecac2011-07-09 18:23:52 +00001626
1627 LLVMContextImpl *pImpl = C->getContext().pImpl;
Dan Gohman1b849082009-09-07 23:54:19 +00001628 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
1629}
1630
Reid Spenceree3c9912006-12-04 05:19:50 +00001631Constant *
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001632ConstantExpr::getICmp(unsigned short pred, Constant *LHS, Constant *RHS) {
Reid Spenceree3c9912006-12-04 05:19:50 +00001633 assert(LHS->getType() == RHS->getType());
1634 assert(pred >= ICmpInst::FIRST_ICMP_PREDICATE &&
1635 pred <= ICmpInst::LAST_ICMP_PREDICATE && "Invalid ICmp Predicate");
1636
Chris Lattnerf5edeeb2010-02-01 20:48:08 +00001637 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
Reid Spenceree3c9912006-12-04 05:19:50 +00001638 return FC; // Fold a few common cases...
1639
1640 // Look up the constant in the table first to ensure uniqueness
1641 std::vector<Constant*> ArgVec;
1642 ArgVec.push_back(LHS);
1643 ArgVec.push_back(RHS);
Reid Spencerb1537492006-12-24 18:42:29 +00001644 // Get the key type with both the opcode and predicate
Reid Spenceree3c9912006-12-04 05:19:50 +00001645 const ExprMapKeyType Key(Instruction::ICmp, ArgVec, pred);
Owen Anderson61794042009-06-17 20:10:08 +00001646
Chris Lattner229907c2011-07-18 04:54:35 +00001647 Type *ResultTy = Type::getInt1Ty(LHS->getContext());
1648 if (VectorType *VT = dyn_cast<VectorType>(LHS->getType()))
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001649 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
1650
Owen Anderson1584a292009-08-04 20:25:11 +00001651 LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl;
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001652 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
Reid Spenceree3c9912006-12-04 05:19:50 +00001653}
1654
1655Constant *
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001656ConstantExpr::getFCmp(unsigned short pred, Constant *LHS, Constant *RHS) {
Reid Spenceree3c9912006-12-04 05:19:50 +00001657 assert(LHS->getType() == RHS->getType());
1658 assert(pred <= FCmpInst::LAST_FCMP_PREDICATE && "Invalid FCmp Predicate");
1659
Chris Lattnerf5edeeb2010-02-01 20:48:08 +00001660 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
Reid Spenceree3c9912006-12-04 05:19:50 +00001661 return FC; // Fold a few common cases...
1662
1663 // Look up the constant in the table first to ensure uniqueness
1664 std::vector<Constant*> ArgVec;
1665 ArgVec.push_back(LHS);
1666 ArgVec.push_back(RHS);
Reid Spencerb1537492006-12-24 18:42:29 +00001667 // Get the key type with both the opcode and predicate
Reid Spenceree3c9912006-12-04 05:19:50 +00001668 const ExprMapKeyType Key(Instruction::FCmp, ArgVec, pred);
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001669
Chris Lattner229907c2011-07-18 04:54:35 +00001670 Type *ResultTy = Type::getInt1Ty(LHS->getContext());
1671 if (VectorType *VT = dyn_cast<VectorType>(LHS->getType()))
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001672 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
1673
Owen Anderson1584a292009-08-04 20:25:11 +00001674 LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl;
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001675 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
Reid Spenceree3c9912006-12-04 05:19:50 +00001676}
1677
Robert Bocchino23004482006-01-10 19:05:34 +00001678Constant *ConstantExpr::getExtractElement(Constant *Val, Constant *Idx) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001679 assert(Val->getType()->isVectorTy() &&
Reid Spencer09575ba2007-02-15 03:39:18 +00001680 "Tried to create extractelement operation on non-vector type!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001681 assert(Idx->getType()->isIntegerTy(32) &&
Reid Spencer2546b762007-01-26 07:37:34 +00001682 "Extractelement index must be i32 type!");
Chris Lattner887ecac2011-07-09 18:23:52 +00001683
1684 if (Constant *FC = ConstantFoldExtractElementInstruction(Val, Idx))
Chris Lattner09660c92009-12-30 20:25:09 +00001685 return FC; // Fold a few common cases.
Chris Lattner887ecac2011-07-09 18:23:52 +00001686
Robert Bocchinoca27f032006-01-17 20:07:22 +00001687 // Look up the constant in the table first to ensure uniqueness
1688 std::vector<Constant*> ArgVec(1, Val);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001689 ArgVec.push_back(Idx);
Chris Lattner887ecac2011-07-09 18:23:52 +00001690 const ExprMapKeyType Key(Instruction::ExtractElement,ArgVec);
Owen Anderson61794042009-06-17 20:10:08 +00001691
Chris Lattner887ecac2011-07-09 18:23:52 +00001692 LLVMContextImpl *pImpl = Val->getContext().pImpl;
1693 Type *ReqTy = cast<VectorType>(Val->getType())->getElementType();
Owen Anderson1584a292009-08-04 20:25:11 +00001694 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001695}
1696
1697Constant *ConstantExpr::getInsertElement(Constant *Val, Constant *Elt,
1698 Constant *Idx) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001699 assert(Val->getType()->isVectorTy() &&
Reid Spencer09575ba2007-02-15 03:39:18 +00001700 "Tried to create insertelement operation on non-vector type!");
Reid Spencerd84d35b2007-02-15 02:26:10 +00001701 assert(Elt->getType() == cast<VectorType>(Val->getType())->getElementType()
Robert Bocchinoca27f032006-01-17 20:07:22 +00001702 && "Insertelement types must match!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001703 assert(Idx->getType()->isIntegerTy(32) &&
Reid Spencer2546b762007-01-26 07:37:34 +00001704 "Insertelement index must be i32 type!");
Robert Bocchinoca27f032006-01-17 20:07:22 +00001705
Chris Lattner887ecac2011-07-09 18:23:52 +00001706 if (Constant *FC = ConstantFoldInsertElementInstruction(Val, Elt, Idx))
1707 return FC; // Fold a few common cases.
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001708 // Look up the constant in the table first to ensure uniqueness
Chris Lattner887ecac2011-07-09 18:23:52 +00001709 std::vector<Constant*> ArgVec(1, Val);
1710 ArgVec.push_back(Elt);
1711 ArgVec.push_back(Idx);
1712 const ExprMapKeyType Key(Instruction::InsertElement,ArgVec);
Owen Anderson61794042009-06-17 20:10:08 +00001713
Chris Lattner887ecac2011-07-09 18:23:52 +00001714 LLVMContextImpl *pImpl = Val->getContext().pImpl;
1715 return pImpl->ExprConstants.getOrCreate(Val->getType(), Key);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001716}
1717
1718Constant *ConstantExpr::getShuffleVector(Constant *V1, Constant *V2,
1719 Constant *Mask) {
1720 assert(ShuffleVectorInst::isValidOperands(V1, V2, Mask) &&
1721 "Invalid shuffle vector constant expr operands!");
Nate Begeman94aa38d2009-02-12 21:28:33 +00001722
Chris Lattner887ecac2011-07-09 18:23:52 +00001723 if (Constant *FC = ConstantFoldShuffleVectorInstruction(V1, V2, Mask))
1724 return FC; // Fold a few common cases.
1725
Nate Begeman94aa38d2009-02-12 21:28:33 +00001726 unsigned NElts = cast<VectorType>(Mask->getType())->getNumElements();
Chris Lattner229907c2011-07-18 04:54:35 +00001727 Type *EltTy = cast<VectorType>(V1->getType())->getElementType();
1728 Type *ShufTy = VectorType::get(EltTy, NElts);
Chris Lattner887ecac2011-07-09 18:23:52 +00001729
1730 // Look up the constant in the table first to ensure uniqueness
1731 std::vector<Constant*> ArgVec(1, V1);
1732 ArgVec.push_back(V2);
1733 ArgVec.push_back(Mask);
1734 const ExprMapKeyType Key(Instruction::ShuffleVector,ArgVec);
1735
1736 LLVMContextImpl *pImpl = ShufTy->getContext().pImpl;
1737 return pImpl->ExprConstants.getOrCreate(ShufTy, Key);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001738}
1739
Chris Lattner887ecac2011-07-09 18:23:52 +00001740Constant *ConstantExpr::getInsertValue(Constant *Agg, Constant *Val,
Jay Foad57aa6362011-07-13 10:26:04 +00001741 ArrayRef<unsigned> Idxs) {
1742 assert(ExtractValueInst::getIndexedType(Agg->getType(),
1743 Idxs) == Val->getType() &&
Dan Gohman12fce772008-05-15 19:50:34 +00001744 "insertvalue indices invalid!");
Dan Gohman0752bff2008-05-23 00:36:11 +00001745 assert(Agg->getType()->isFirstClassType() &&
Chris Lattner6ebfbf52011-07-12 05:26:21 +00001746 "Non-first-class type for constant insertvalue expression");
Jay Foad57aa6362011-07-13 10:26:04 +00001747 Constant *FC = ConstantFoldInsertValueInstruction(Agg, Val, Idxs);
Chris Lattner6ebfbf52011-07-12 05:26:21 +00001748 assert(FC && "insertvalue constant expr couldn't be folded!");
Dan Gohmand5d24f62008-07-21 23:30:30 +00001749 return FC;
Dan Gohman12fce772008-05-15 19:50:34 +00001750}
1751
Chris Lattner887ecac2011-07-09 18:23:52 +00001752Constant *ConstantExpr::getExtractValue(Constant *Agg,
Jay Foad57aa6362011-07-13 10:26:04 +00001753 ArrayRef<unsigned> Idxs) {
Dan Gohman0752bff2008-05-23 00:36:11 +00001754 assert(Agg->getType()->isFirstClassType() &&
Chris Lattner887ecac2011-07-09 18:23:52 +00001755 "Tried to create extractelement operation on non-first-class type!");
Dan Gohman12fce772008-05-15 19:50:34 +00001756
Chris Lattner229907c2011-07-18 04:54:35 +00001757 Type *ReqTy = ExtractValueInst::getIndexedType(Agg->getType(), Idxs);
Chandler Carruth9db56b82011-07-10 09:45:35 +00001758 (void)ReqTy;
Chris Lattner887ecac2011-07-09 18:23:52 +00001759 assert(ReqTy && "extractvalue indices invalid!");
1760
Dan Gohman0752bff2008-05-23 00:36:11 +00001761 assert(Agg->getType()->isFirstClassType() &&
1762 "Non-first-class type for constant extractvalue expression");
Jay Foad57aa6362011-07-13 10:26:04 +00001763 Constant *FC = ConstantFoldExtractValueInstruction(Agg, Idxs);
Dan Gohmand5d24f62008-07-21 23:30:30 +00001764 assert(FC && "ExtractValue constant expr couldn't be folded!");
1765 return FC;
Dan Gohman12fce772008-05-15 19:50:34 +00001766}
1767
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001768Constant *ConstantExpr::getNeg(Constant *C, bool HasNUW, bool HasNSW) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001769 assert(C->getType()->isIntOrIntVectorTy() &&
Owen Anderson487375e2009-07-29 18:55:55 +00001770 "Cannot NEG a nonintegral value!");
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001771 return getSub(ConstantFP::getZeroValueForNegation(C->getType()),
1772 C, HasNUW, HasNSW);
Owen Anderson487375e2009-07-29 18:55:55 +00001773}
1774
Chris Lattnera676c0f2011-02-07 16:40:21 +00001775Constant *ConstantExpr::getFNeg(Constant *C) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001776 assert(C->getType()->isFPOrFPVectorTy() &&
Owen Anderson487375e2009-07-29 18:55:55 +00001777 "Cannot FNEG a non-floating-point value!");
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001778 return getFSub(ConstantFP::getZeroValueForNegation(C->getType()), C);
Owen Anderson487375e2009-07-29 18:55:55 +00001779}
1780
Chris Lattnera676c0f2011-02-07 16:40:21 +00001781Constant *ConstantExpr::getNot(Constant *C) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001782 assert(C->getType()->isIntOrIntVectorTy() &&
Owen Anderson487375e2009-07-29 18:55:55 +00001783 "Cannot NOT a nonintegral value!");
Owen Anderson5a1acd92009-07-31 20:28:14 +00001784 return get(Instruction::Xor, C, Constant::getAllOnesValue(C->getType()));
Owen Anderson487375e2009-07-29 18:55:55 +00001785}
1786
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001787Constant *ConstantExpr::getAdd(Constant *C1, Constant *C2,
1788 bool HasNUW, bool HasNSW) {
1789 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
1790 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
1791 return get(Instruction::Add, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00001792}
1793
Chris Lattnera676c0f2011-02-07 16:40:21 +00001794Constant *ConstantExpr::getFAdd(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001795 return get(Instruction::FAdd, C1, C2);
1796}
1797
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001798Constant *ConstantExpr::getSub(Constant *C1, Constant *C2,
1799 bool HasNUW, bool HasNSW) {
1800 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
1801 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
1802 return get(Instruction::Sub, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00001803}
1804
Chris Lattnera676c0f2011-02-07 16:40:21 +00001805Constant *ConstantExpr::getFSub(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001806 return get(Instruction::FSub, C1, C2);
1807}
1808
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001809Constant *ConstantExpr::getMul(Constant *C1, Constant *C2,
1810 bool HasNUW, bool HasNSW) {
1811 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
1812 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
1813 return get(Instruction::Mul, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00001814}
1815
Chris Lattnera676c0f2011-02-07 16:40:21 +00001816Constant *ConstantExpr::getFMul(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001817 return get(Instruction::FMul, C1, C2);
1818}
1819
Chris Lattner0d75eac2011-02-09 16:43:07 +00001820Constant *ConstantExpr::getUDiv(Constant *C1, Constant *C2, bool isExact) {
1821 return get(Instruction::UDiv, C1, C2,
1822 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00001823}
1824
Chris Lattner0d75eac2011-02-09 16:43:07 +00001825Constant *ConstantExpr::getSDiv(Constant *C1, Constant *C2, bool isExact) {
1826 return get(Instruction::SDiv, C1, C2,
1827 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00001828}
1829
Chris Lattnera676c0f2011-02-07 16:40:21 +00001830Constant *ConstantExpr::getFDiv(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001831 return get(Instruction::FDiv, C1, C2);
1832}
1833
Chris Lattnera676c0f2011-02-07 16:40:21 +00001834Constant *ConstantExpr::getURem(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001835 return get(Instruction::URem, C1, C2);
1836}
1837
Chris Lattnera676c0f2011-02-07 16:40:21 +00001838Constant *ConstantExpr::getSRem(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001839 return get(Instruction::SRem, C1, C2);
1840}
1841
Chris Lattnera676c0f2011-02-07 16:40:21 +00001842Constant *ConstantExpr::getFRem(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001843 return get(Instruction::FRem, C1, C2);
1844}
1845
Chris Lattnera676c0f2011-02-07 16:40:21 +00001846Constant *ConstantExpr::getAnd(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001847 return get(Instruction::And, C1, C2);
1848}
1849
Chris Lattnera676c0f2011-02-07 16:40:21 +00001850Constant *ConstantExpr::getOr(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001851 return get(Instruction::Or, C1, C2);
1852}
1853
Chris Lattnera676c0f2011-02-07 16:40:21 +00001854Constant *ConstantExpr::getXor(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001855 return get(Instruction::Xor, C1, C2);
1856}
1857
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001858Constant *ConstantExpr::getShl(Constant *C1, Constant *C2,
1859 bool HasNUW, bool HasNSW) {
1860 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
1861 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
1862 return get(Instruction::Shl, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00001863}
1864
Chris Lattner0d75eac2011-02-09 16:43:07 +00001865Constant *ConstantExpr::getLShr(Constant *C1, Constant *C2, bool isExact) {
1866 return get(Instruction::LShr, C1, C2,
1867 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00001868}
1869
Chris Lattner0d75eac2011-02-09 16:43:07 +00001870Constant *ConstantExpr::getAShr(Constant *C1, Constant *C2, bool isExact) {
1871 return get(Instruction::AShr, C1, C2,
1872 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00001873}
1874
Vikram S. Adve4c485332002-07-15 18:19:33 +00001875// destroyConstant - Remove the constant from the constant table...
1876//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001877void ConstantExpr::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001878 getType()->getContext().pImpl->ExprConstants.remove(this);
Vikram S. Adve4c485332002-07-15 18:19:33 +00001879 destroyConstantImpl();
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001880}
1881
Chris Lattner3cd8c562002-07-30 18:54:25 +00001882const char *ConstantExpr::getOpcodeName() const {
1883 return Instruction::getOpcodeName(getOpcode());
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001884}
Reid Spencer1ebe1ab2004-07-17 23:48:33 +00001885
Chris Lattnera3b94ba2010-03-30 20:48:48 +00001886
1887
1888GetElementPtrConstantExpr::
1889GetElementPtrConstantExpr(Constant *C, const std::vector<Constant*> &IdxList,
Chris Lattner229907c2011-07-18 04:54:35 +00001890 Type *DestTy)
Chris Lattnera3b94ba2010-03-30 20:48:48 +00001891 : ConstantExpr(DestTy, Instruction::GetElementPtr,
1892 OperandTraits<GetElementPtrConstantExpr>::op_end(this)
1893 - (IdxList.size()+1), IdxList.size()+1) {
1894 OperandList[0] = C;
1895 for (unsigned i = 0, E = IdxList.size(); i != E; ++i)
1896 OperandList[i+1] = IdxList[i];
1897}
1898
1899
Chris Lattnerc4062ba2005-10-03 21:58:36 +00001900//===----------------------------------------------------------------------===//
1901// replaceUsesOfWithOnConstant implementations
1902
Chris Lattner913849b2007-08-21 00:55:23 +00001903/// replaceUsesOfWithOnConstant - Update this constant array to change uses of
1904/// 'From' to be uses of 'To'. This must update the uniquing data structures
1905/// etc.
1906///
1907/// Note that we intentionally replace all uses of From with To here. Consider
1908/// a large array that uses 'From' 1000 times. By handling this case all here,
1909/// ConstantArray::replaceUsesOfWithOnConstant is only invoked once, and that
1910/// single invocation handles all 1000 uses. Handling them one at a time would
1911/// work, but would be really slow because it would have to unique each updated
1912/// array instance.
Chris Lattner31b132c2009-10-28 00:01:44 +00001913///
Chris Lattnerc4062ba2005-10-03 21:58:36 +00001914void ConstantArray::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattner7a1450d2005-10-04 18:13:04 +00001915 Use *U) {
Owen Andersonc2c79322009-07-28 18:32:17 +00001916 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
1917 Constant *ToC = cast<Constant>(To);
1918
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001919 LLVMContextImpl *pImpl = getType()->getContext().pImpl;
Owen Andersonc2c79322009-07-28 18:32:17 +00001920
Dan Gohmane4532f32009-09-15 15:58:07 +00001921 std::pair<LLVMContextImpl::ArrayConstantsTy::MapKey, ConstantArray*> Lookup;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001922 Lookup.first.first = cast<ArrayType>(getType());
Owen Andersonc2c79322009-07-28 18:32:17 +00001923 Lookup.second = this;
1924
1925 std::vector<Constant*> &Values = Lookup.first.second;
1926 Values.reserve(getNumOperands()); // Build replacement array.
1927
1928 // Fill values with the modified operands of the constant array. Also,
1929 // compute whether this turns into an all-zeros array.
1930 bool isAllZeros = false;
1931 unsigned NumUpdated = 0;
1932 if (!ToC->isNullValue()) {
1933 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
1934 Constant *Val = cast<Constant>(O->get());
1935 if (Val == From) {
1936 Val = ToC;
1937 ++NumUpdated;
1938 }
1939 Values.push_back(Val);
1940 }
1941 } else {
1942 isAllZeros = true;
1943 for (Use *O = OperandList, *E = OperandList+getNumOperands();O != E; ++O) {
1944 Constant *Val = cast<Constant>(O->get());
1945 if (Val == From) {
1946 Val = ToC;
1947 ++NumUpdated;
1948 }
1949 Values.push_back(Val);
1950 if (isAllZeros) isAllZeros = Val->isNullValue();
1951 }
1952 }
1953
1954 Constant *Replacement = 0;
1955 if (isAllZeros) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001956 Replacement = ConstantAggregateZero::get(getType());
Owen Andersonc2c79322009-07-28 18:32:17 +00001957 } else {
1958 // Check to see if we have this array type already.
Owen Andersonc2c79322009-07-28 18:32:17 +00001959 bool Exists;
1960 LLVMContextImpl::ArrayConstantsTy::MapTy::iterator I =
1961 pImpl->ArrayConstants.InsertOrGetItem(Lookup, Exists);
1962
1963 if (Exists) {
Devang Patelf7188322009-09-03 01:39:20 +00001964 Replacement = I->second;
Owen Andersonc2c79322009-07-28 18:32:17 +00001965 } else {
1966 // Okay, the new shape doesn't exist in the system yet. Instead of
1967 // creating a new constant array, inserting it, replaceallusesof'ing the
1968 // old with the new, then deleting the old... just update the current one
1969 // in place!
1970 pImpl->ArrayConstants.MoveConstantToNewSlot(this, I);
1971
1972 // Update to the new value. Optimize for the case when we have a single
1973 // operand that we're changing, but handle bulk updates efficiently.
1974 if (NumUpdated == 1) {
1975 unsigned OperandToUpdate = U - OperandList;
1976 assert(getOperand(OperandToUpdate) == From &&
1977 "ReplaceAllUsesWith broken!");
1978 setOperand(OperandToUpdate, ToC);
1979 } else {
1980 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
1981 if (getOperand(i) == From)
1982 setOperand(i, ToC);
1983 }
1984 return;
1985 }
1986 }
Chris Lattnerb64419a2005-10-03 22:51:37 +00001987
1988 // Otherwise, I do need to replace this with an existing value.
Chris Lattnerc4062ba2005-10-03 21:58:36 +00001989 assert(Replacement != this && "I didn't contain From!");
1990
Chris Lattner7a1450d2005-10-04 18:13:04 +00001991 // Everyone using this now uses the replacement.
Chris Lattneraf1783f2011-07-15 06:18:52 +00001992 replaceAllUsesWith(Replacement);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00001993
1994 // Delete the old constant!
1995 destroyConstant();
1996}
1997
1998void ConstantStruct::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattner7a1450d2005-10-04 18:13:04 +00001999 Use *U) {
Owen Anderson45308b52009-07-27 22:29:26 +00002000 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2001 Constant *ToC = cast<Constant>(To);
2002
2003 unsigned OperandToUpdate = U-OperandList;
2004 assert(getOperand(OperandToUpdate) == From && "ReplaceAllUsesWith broken!");
2005
Dan Gohmane4532f32009-09-15 15:58:07 +00002006 std::pair<LLVMContextImpl::StructConstantsTy::MapKey, ConstantStruct*> Lookup;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002007 Lookup.first.first = cast<StructType>(getType());
Owen Anderson45308b52009-07-27 22:29:26 +00002008 Lookup.second = this;
2009 std::vector<Constant*> &Values = Lookup.first.second;
2010 Values.reserve(getNumOperands()); // Build replacement struct.
2011
2012
2013 // Fill values with the modified operands of the constant struct. Also,
2014 // compute whether this turns into an all-zeros struct.
2015 bool isAllZeros = false;
2016 if (!ToC->isNullValue()) {
2017 for (Use *O = OperandList, *E = OperandList + getNumOperands(); O != E; ++O)
2018 Values.push_back(cast<Constant>(O->get()));
2019 } else {
2020 isAllZeros = true;
2021 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2022 Constant *Val = cast<Constant>(O->get());
2023 Values.push_back(Val);
2024 if (isAllZeros) isAllZeros = Val->isNullValue();
2025 }
2026 }
2027 Values[OperandToUpdate] = ToC;
2028
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002029 LLVMContextImpl *pImpl = getContext().pImpl;
Owen Anderson45308b52009-07-27 22:29:26 +00002030
2031 Constant *Replacement = 0;
2032 if (isAllZeros) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002033 Replacement = ConstantAggregateZero::get(getType());
Owen Anderson45308b52009-07-27 22:29:26 +00002034 } else {
Chris Lattner718da702010-07-17 06:13:52 +00002035 // Check to see if we have this struct type already.
Owen Anderson45308b52009-07-27 22:29:26 +00002036 bool Exists;
2037 LLVMContextImpl::StructConstantsTy::MapTy::iterator I =
2038 pImpl->StructConstants.InsertOrGetItem(Lookup, Exists);
2039
2040 if (Exists) {
Devang Patelf7188322009-09-03 01:39:20 +00002041 Replacement = I->second;
Owen Anderson45308b52009-07-27 22:29:26 +00002042 } else {
2043 // Okay, the new shape doesn't exist in the system yet. Instead of
2044 // creating a new constant struct, inserting it, replaceallusesof'ing the
2045 // old with the new, then deleting the old... just update the current one
2046 // in place!
2047 pImpl->StructConstants.MoveConstantToNewSlot(this, I);
2048
2049 // Update to the new value.
2050 setOperand(OperandToUpdate, ToC);
2051 return;
2052 }
2053 }
2054
2055 assert(Replacement != this && "I didn't contain From!");
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002056
Chris Lattner7a1450d2005-10-04 18:13:04 +00002057 // Everyone using this now uses the replacement.
Chris Lattneraf1783f2011-07-15 06:18:52 +00002058 replaceAllUsesWith(Replacement);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002059
2060 // Delete the old constant!
2061 destroyConstant();
2062}
2063
Reid Spencerd84d35b2007-02-15 02:26:10 +00002064void ConstantVector::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattner7a1450d2005-10-04 18:13:04 +00002065 Use *U) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002066 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2067
2068 std::vector<Constant*> Values;
2069 Values.reserve(getNumOperands()); // Build replacement array...
2070 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
2071 Constant *Val = getOperand(i);
2072 if (Val == From) Val = cast<Constant>(To);
2073 Values.push_back(Val);
2074 }
2075
Jay Foadb8a8bed32011-06-22 09:10:19 +00002076 Constant *Replacement = get(Values);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002077 assert(Replacement != this && "I didn't contain From!");
2078
Chris Lattner7a1450d2005-10-04 18:13:04 +00002079 // Everyone using this now uses the replacement.
Chris Lattneraf1783f2011-07-15 06:18:52 +00002080 replaceAllUsesWith(Replacement);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002081
2082 // Delete the old constant!
2083 destroyConstant();
2084}
2085
2086void ConstantExpr::replaceUsesOfWithOnConstant(Value *From, Value *ToV,
Chris Lattner7a1450d2005-10-04 18:13:04 +00002087 Use *U) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002088 assert(isa<Constant>(ToV) && "Cannot make Constant refer to non-constant!");
2089 Constant *To = cast<Constant>(ToV);
2090
2091 Constant *Replacement = 0;
2092 if (getOpcode() == Instruction::GetElementPtr) {
Chris Lattnerb5d70302007-02-19 20:01:23 +00002093 SmallVector<Constant*, 8> Indices;
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002094 Constant *Pointer = getOperand(0);
2095 Indices.reserve(getNumOperands()-1);
2096 if (Pointer == From) Pointer = To;
2097
2098 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
2099 Constant *Val = getOperand(i);
2100 if (Val == From) Val = To;
2101 Indices.push_back(Val);
2102 }
Jay Foaded8db7d2011-07-21 14:31:17 +00002103 Replacement = ConstantExpr::getGetElementPtr(Pointer, Indices,
Chris Lattner603af182011-02-11 05:37:21 +00002104 cast<GEPOperator>(this)->isInBounds());
Dan Gohman12fce772008-05-15 19:50:34 +00002105 } else if (getOpcode() == Instruction::ExtractValue) {
Dan Gohman12fce772008-05-15 19:50:34 +00002106 Constant *Agg = getOperand(0);
Dan Gohman12fce772008-05-15 19:50:34 +00002107 if (Agg == From) Agg = To;
2108
Jay Foad0091fe82011-04-13 15:22:40 +00002109 ArrayRef<unsigned> Indices = getIndices();
Jay Foad57aa6362011-07-13 10:26:04 +00002110 Replacement = ConstantExpr::getExtractValue(Agg, Indices);
Dan Gohman12fce772008-05-15 19:50:34 +00002111 } else if (getOpcode() == Instruction::InsertValue) {
Dan Gohman12fce772008-05-15 19:50:34 +00002112 Constant *Agg = getOperand(0);
2113 Constant *Val = getOperand(1);
Dan Gohman12fce772008-05-15 19:50:34 +00002114 if (Agg == From) Agg = To;
2115 if (Val == From) Val = To;
2116
Jay Foad0091fe82011-04-13 15:22:40 +00002117 ArrayRef<unsigned> Indices = getIndices();
Jay Foad57aa6362011-07-13 10:26:04 +00002118 Replacement = ConstantExpr::getInsertValue(Agg, Val, Indices);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002119 } else if (isCast()) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002120 assert(getOperand(0) == From && "Cast only has one use!");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002121 Replacement = ConstantExpr::getCast(getOpcode(), To, getType());
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002122 } else if (getOpcode() == Instruction::Select) {
2123 Constant *C1 = getOperand(0);
2124 Constant *C2 = getOperand(1);
2125 Constant *C3 = getOperand(2);
2126 if (C1 == From) C1 = To;
2127 if (C2 == From) C2 = To;
2128 if (C3 == From) C3 = To;
2129 Replacement = ConstantExpr::getSelect(C1, C2, C3);
Robert Bocchino23004482006-01-10 19:05:34 +00002130 } else if (getOpcode() == Instruction::ExtractElement) {
2131 Constant *C1 = getOperand(0);
2132 Constant *C2 = getOperand(1);
2133 if (C1 == From) C1 = To;
2134 if (C2 == From) C2 = To;
2135 Replacement = ConstantExpr::getExtractElement(C1, C2);
Chris Lattnera93b4b52006-04-08 05:09:48 +00002136 } else if (getOpcode() == Instruction::InsertElement) {
2137 Constant *C1 = getOperand(0);
2138 Constant *C2 = getOperand(1);
2139 Constant *C3 = getOperand(1);
2140 if (C1 == From) C1 = To;
2141 if (C2 == From) C2 = To;
2142 if (C3 == From) C3 = To;
2143 Replacement = ConstantExpr::getInsertElement(C1, C2, C3);
2144 } else if (getOpcode() == Instruction::ShuffleVector) {
2145 Constant *C1 = getOperand(0);
2146 Constant *C2 = getOperand(1);
2147 Constant *C3 = getOperand(2);
2148 if (C1 == From) C1 = To;
2149 if (C2 == From) C2 = To;
2150 if (C3 == From) C3 = To;
2151 Replacement = ConstantExpr::getShuffleVector(C1, C2, C3);
Reid Spenceree3c9912006-12-04 05:19:50 +00002152 } else if (isCompare()) {
2153 Constant *C1 = getOperand(0);
2154 Constant *C2 = getOperand(1);
2155 if (C1 == From) C1 = To;
2156 if (C2 == From) C2 = To;
2157 if (getOpcode() == Instruction::ICmp)
2158 Replacement = ConstantExpr::getICmp(getPredicate(), C1, C2);
Chris Lattnereab49262008-07-14 05:17:31 +00002159 else {
Nick Lewyckya21d3da2009-07-08 03:04:38 +00002160 assert(getOpcode() == Instruction::FCmp);
2161 Replacement = ConstantExpr::getFCmp(getPredicate(), C1, C2);
Chris Lattnereab49262008-07-14 05:17:31 +00002162 }
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002163 } else if (getNumOperands() == 2) {
2164 Constant *C1 = getOperand(0);
2165 Constant *C2 = getOperand(1);
2166 if (C1 == From) C1 = To;
2167 if (C2 == From) C2 = To;
Chris Lattnerb9c86512009-12-29 02:14:09 +00002168 Replacement = ConstantExpr::get(getOpcode(), C1, C2, SubclassOptionalData);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002169 } else {
Torok Edwinfbcc6632009-07-14 16:55:14 +00002170 llvm_unreachable("Unknown ConstantExpr type!");
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002171 return;
2172 }
2173
2174 assert(Replacement != this && "I didn't contain From!");
2175
Chris Lattner7a1450d2005-10-04 18:13:04 +00002176 // Everyone using this now uses the replacement.
Chris Lattneraf1783f2011-07-15 06:18:52 +00002177 replaceAllUsesWith(Replacement);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002178
2179 // Delete the old constant!
2180 destroyConstant();
Matthijs Kooijmanba5d7ef2008-07-03 07:46:41 +00002181}