blob: ba309d9ca0714a96a6e11a4ad13ec65e152ab0e4 [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
74 // Check for constant vectors
75 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
76 return CV->isAllOnesValue();
77
78 return false;
79}
Owen Anderson5a1acd92009-07-31 20:28:14 +000080// Constructor to create a '0' constant of arbitrary type...
Chris Lattner229907c2011-07-18 04:54:35 +000081Constant *Constant::getNullValue(Type *Ty) {
Owen Anderson5a1acd92009-07-31 20:28:14 +000082 switch (Ty->getTypeID()) {
83 case Type::IntegerTyID:
84 return ConstantInt::get(Ty, 0);
85 case Type::FloatTyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +000086 return ConstantFP::get(Ty->getContext(),
87 APFloat::getZero(APFloat::IEEEsingle));
Owen Anderson5a1acd92009-07-31 20:28:14 +000088 case Type::DoubleTyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +000089 return ConstantFP::get(Ty->getContext(),
90 APFloat::getZero(APFloat::IEEEdouble));
Owen Anderson5a1acd92009-07-31 20:28:14 +000091 case Type::X86_FP80TyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +000092 return ConstantFP::get(Ty->getContext(),
93 APFloat::getZero(APFloat::x87DoubleExtended));
Owen Anderson5a1acd92009-07-31 20:28:14 +000094 case Type::FP128TyID:
95 return ConstantFP::get(Ty->getContext(),
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +000096 APFloat::getZero(APFloat::IEEEquad));
Owen Anderson5a1acd92009-07-31 20:28:14 +000097 case Type::PPC_FP128TyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +000098 return ConstantFP::get(Ty->getContext(),
Benjamin Kramer6f88fcb2010-12-04 14:43:08 +000099 APFloat(APInt::getNullValue(128)));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000100 case Type::PointerTyID:
101 return ConstantPointerNull::get(cast<PointerType>(Ty));
102 case Type::StructTyID:
103 case Type::ArrayTyID:
104 case Type::VectorTyID:
105 return ConstantAggregateZero::get(Ty);
106 default:
107 // Function, Label, or Opaque type?
108 assert(!"Cannot create a null constant of that type!");
109 return 0;
110 }
111}
112
Chris Lattner229907c2011-07-18 04:54:35 +0000113Constant *Constant::getIntegerValue(Type *Ty, const APInt &V) {
114 Type *ScalarTy = Ty->getScalarType();
Dan Gohmanf011f5a2009-08-03 22:07:33 +0000115
116 // Create the base integer constant.
117 Constant *C = ConstantInt::get(Ty->getContext(), V);
118
119 // Convert an integer to a pointer, if necessary.
Chris Lattner229907c2011-07-18 04:54:35 +0000120 if (PointerType *PTy = dyn_cast<PointerType>(ScalarTy))
Dan Gohmanf011f5a2009-08-03 22:07:33 +0000121 C = ConstantExpr::getIntToPtr(C, PTy);
122
123 // Broadcast a scalar to a vector, if necessary.
Chris Lattner229907c2011-07-18 04:54:35 +0000124 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Dan Gohmanf011f5a2009-08-03 22:07:33 +0000125 C = ConstantVector::get(std::vector<Constant *>(VTy->getNumElements(), C));
126
127 return C;
128}
129
Chris Lattner229907c2011-07-18 04:54:35 +0000130Constant *Constant::getAllOnesValue(Type *Ty) {
131 if (IntegerType *ITy = dyn_cast<IntegerType>(Ty))
Owen Anderson5a1acd92009-07-31 20:28:14 +0000132 return ConstantInt::get(Ty->getContext(),
133 APInt::getAllOnesValue(ITy->getBitWidth()));
Nadav Rotem7cc6d122011-02-17 21:22:27 +0000134
135 if (Ty->isFloatingPointTy()) {
136 APFloat FL = APFloat::getAllOnesValue(Ty->getPrimitiveSizeInBits(),
137 !Ty->isPPC_FP128Ty());
138 return ConstantFP::get(Ty->getContext(), FL);
139 }
140
Chris Lattner69229312011-02-15 00:14:00 +0000141 SmallVector<Constant*, 16> Elts;
Chris Lattner229907c2011-07-18 04:54:35 +0000142 VectorType *VTy = cast<VectorType>(Ty);
Owen Anderson5a1acd92009-07-31 20:28:14 +0000143 Elts.resize(VTy->getNumElements(), getAllOnesValue(VTy->getElementType()));
Nadav Rotem365af6f2011-08-24 20:18:38 +0000144 assert(Elts[0] && "Invalid AllOnes value!");
Owen Anderson5a1acd92009-07-31 20:28:14 +0000145 return cast<ConstantVector>(ConstantVector::get(Elts));
146}
147
Chris Lattner3462ae32001-12-03 22:26:30 +0000148void Constant::destroyConstantImpl() {
149 // When a Constant is destroyed, there may be lingering
Chris Lattnerd7a73302001-10-13 06:57:33 +0000150 // references to the constant by other constants in the constant pool. These
Misha Brukmanbe372b92003-08-21 22:14:26 +0000151 // constants are implicitly dependent on the module that is being deleted,
Chris Lattnerd7a73302001-10-13 06:57:33 +0000152 // but they don't know that. Because we only find out when the CPV is
153 // deleted, we must now notify all of our users (that should only be
Chris Lattner3462ae32001-12-03 22:26:30 +0000154 // Constants) that they are, in fact, invalid now and should be deleted.
Chris Lattnerd7a73302001-10-13 06:57:33 +0000155 //
156 while (!use_empty()) {
157 Value *V = use_back();
158#ifndef NDEBUG // Only in -g mode...
Chris Lattner78683a72009-08-23 04:02:03 +0000159 if (!isa<Constant>(V)) {
David Greene1e27a132010-01-05 01:29:19 +0000160 dbgs() << "While deleting: " << *this
Chris Lattner78683a72009-08-23 04:02:03 +0000161 << "\n\nUse still stuck around after Def is destroyed: "
162 << *V << "\n\n";
163 }
Chris Lattnerd7a73302001-10-13 06:57:33 +0000164#endif
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000165 assert(isa<Constant>(V) && "References remain to Constant being destroyed");
Reid Spencer1ebe1ab2004-07-17 23:48:33 +0000166 Constant *CV = cast<Constant>(V);
167 CV->destroyConstant();
Chris Lattnerd7a73302001-10-13 06:57:33 +0000168
169 // The constant should remove itself from our use list...
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000170 assert((use_empty() || use_back() != V) && "Constant not removed!");
Chris Lattnerd7a73302001-10-13 06:57:33 +0000171 }
172
173 // Value has no outstanding references it is safe to delete it now...
174 delete this;
Chris Lattner38569342001-10-01 20:11:19 +0000175}
Chris Lattner2f7c9632001-06-06 20:29:01 +0000176
Chris Lattner23dd1f62006-10-20 00:27:06 +0000177/// canTrap - Return true if evaluation of this constant could trap. This is
178/// true for things like constant expressions that could divide by zero.
179bool Constant::canTrap() const {
180 assert(getType()->isFirstClassType() && "Cannot evaluate aggregate vals!");
181 // The only thing that could possibly trap are constant exprs.
182 const ConstantExpr *CE = dyn_cast<ConstantExpr>(this);
183 if (!CE) return false;
184
185 // ConstantExpr traps if any operands can trap.
186 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Chris Lattnera91a5632009-10-28 05:14:34 +0000187 if (CE->getOperand(i)->canTrap())
Chris Lattner23dd1f62006-10-20 00:27:06 +0000188 return true;
189
190 // Otherwise, only specific operations can trap.
191 switch (CE->getOpcode()) {
192 default:
193 return false;
Reid Spencer7e80b0b2006-10-26 06:15:43 +0000194 case Instruction::UDiv:
195 case Instruction::SDiv:
196 case Instruction::FDiv:
Reid Spencer7eb55b32006-11-02 01:53:59 +0000197 case Instruction::URem:
198 case Instruction::SRem:
199 case Instruction::FRem:
Chris Lattner23dd1f62006-10-20 00:27:06 +0000200 // Div and rem can trap if the RHS is not known to be non-zero.
Chris Lattnera91a5632009-10-28 05:14:34 +0000201 if (!isa<ConstantInt>(CE->getOperand(1)) ||CE->getOperand(1)->isNullValue())
Chris Lattner23dd1f62006-10-20 00:27:06 +0000202 return true;
203 return false;
204 }
205}
206
Chris Lattner253bc772009-11-01 18:11:50 +0000207/// isConstantUsed - Return true if the constant has users other than constant
208/// exprs and other dangling things.
209bool Constant::isConstantUsed() const {
Gabor Greifc78d7202010-03-25 23:06:16 +0000210 for (const_use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI) {
Chris Lattner253bc772009-11-01 18:11:50 +0000211 const Constant *UC = dyn_cast<Constant>(*UI);
212 if (UC == 0 || isa<GlobalValue>(UC))
213 return true;
214
215 if (UC->isConstantUsed())
216 return true;
217 }
218 return false;
219}
220
221
Chris Lattner4565ef52009-07-22 00:05:44 +0000222
223/// getRelocationInfo - This method classifies the entry according to
224/// whether or not it may generate a relocation entry. This must be
225/// conservative, so if it might codegen to a relocatable entry, it should say
226/// so. The return values are:
227///
Chris Lattner5cd4dd32009-07-24 03:27:21 +0000228/// NoRelocation: This constant pool entry is guaranteed to never have a
229/// relocation applied to it (because it holds a simple constant like
230/// '4').
231/// LocalRelocation: This entry has relocations, but the entries are
232/// guaranteed to be resolvable by the static linker, so the dynamic
233/// linker will never see them.
234/// GlobalRelocations: This entry may have arbitrary relocations.
Chris Lattner4565ef52009-07-22 00:05:44 +0000235///
236/// FIXME: This really should not be in VMCore.
Chris Lattner5cd4dd32009-07-24 03:27:21 +0000237Constant::PossibleRelocationsTy Constant::getRelocationInfo() const {
238 if (const GlobalValue *GV = dyn_cast<GlobalValue>(this)) {
Chris Lattner4565ef52009-07-22 00:05:44 +0000239 if (GV->hasLocalLinkage() || GV->hasHiddenVisibility())
Chris Lattner5cd4dd32009-07-24 03:27:21 +0000240 return LocalRelocation; // Local to this file/library.
241 return GlobalRelocations; // Global reference.
Anton Korobeynikov7437b592009-03-29 17:13:18 +0000242 }
Chris Lattner4565ef52009-07-22 00:05:44 +0000243
Chris Lattner2cb85b42009-10-28 04:12:16 +0000244 if (const BlockAddress *BA = dyn_cast<BlockAddress>(this))
245 return BA->getFunction()->getRelocationInfo();
246
Chris Lattnera7cfc432010-01-03 18:09:40 +0000247 // While raw uses of blockaddress need to be relocated, differences between
248 // two of them don't when they are for labels in the same function. This is a
249 // common idiom when creating a table for the indirect goto extension, so we
250 // handle it efficiently here.
251 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(this))
252 if (CE->getOpcode() == Instruction::Sub) {
253 ConstantExpr *LHS = dyn_cast<ConstantExpr>(CE->getOperand(0));
254 ConstantExpr *RHS = dyn_cast<ConstantExpr>(CE->getOperand(1));
255 if (LHS && RHS &&
256 LHS->getOpcode() == Instruction::PtrToInt &&
257 RHS->getOpcode() == Instruction::PtrToInt &&
258 isa<BlockAddress>(LHS->getOperand(0)) &&
259 isa<BlockAddress>(RHS->getOperand(0)) &&
260 cast<BlockAddress>(LHS->getOperand(0))->getFunction() ==
261 cast<BlockAddress>(RHS->getOperand(0))->getFunction())
262 return NoRelocation;
263 }
264
Chris Lattner5cd4dd32009-07-24 03:27:21 +0000265 PossibleRelocationsTy Result = NoRelocation;
Evan Chengf9e003b2007-03-08 00:59:12 +0000266 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Chris Lattnera91a5632009-10-28 05:14:34 +0000267 Result = std::max(Result,
268 cast<Constant>(getOperand(i))->getRelocationInfo());
Chris Lattner4565ef52009-07-22 00:05:44 +0000269
270 return Result;
Evan Chengf9e003b2007-03-08 00:59:12 +0000271}
272
Chris Lattner4565ef52009-07-22 00:05:44 +0000273
Chris Lattner2105d662008-07-10 00:28:11 +0000274/// getVectorElements - This method, which is only valid on constant of vector
275/// type, returns the elements of the vector in the specified smallvector.
Chris Lattnerc5098a22008-07-14 05:10:41 +0000276/// This handles breaking down a vector undef into undef elements, etc. For
277/// constant exprs and other cases we can't handle, we return an empty vector.
Chris Lattnerf5edeeb2010-02-01 20:48:08 +0000278void Constant::getVectorElements(SmallVectorImpl<Constant*> &Elts) const {
Duncan Sands19d0b472010-02-16 11:11:14 +0000279 assert(getType()->isVectorTy() && "Not a vector constant!");
Chris Lattner2105d662008-07-10 00:28:11 +0000280
281 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this)) {
282 for (unsigned i = 0, e = CV->getNumOperands(); i != e; ++i)
283 Elts.push_back(CV->getOperand(i));
284 return;
285 }
286
Chris Lattner229907c2011-07-18 04:54:35 +0000287 VectorType *VT = cast<VectorType>(getType());
Chris Lattner2105d662008-07-10 00:28:11 +0000288 if (isa<ConstantAggregateZero>(this)) {
289 Elts.assign(VT->getNumElements(),
Owen Anderson5a1acd92009-07-31 20:28:14 +0000290 Constant::getNullValue(VT->getElementType()));
Chris Lattner2105d662008-07-10 00:28:11 +0000291 return;
292 }
293
Chris Lattnerc5098a22008-07-14 05:10:41 +0000294 if (isa<UndefValue>(this)) {
Owen Andersonb292b8c2009-07-30 23:03:37 +0000295 Elts.assign(VT->getNumElements(), UndefValue::get(VT->getElementType()));
Chris Lattnerc5098a22008-07-14 05:10:41 +0000296 return;
297 }
298
299 // Unknown type, must be constant expr etc.
Chris Lattner2105d662008-07-10 00:28:11 +0000300}
301
302
Chris Lattner84886402011-02-18 04:41:42 +0000303/// removeDeadUsersOfConstant - If the specified constantexpr is dead, remove
304/// it. This involves recursively eliminating any dead users of the
305/// constantexpr.
306static bool removeDeadUsersOfConstant(const Constant *C) {
307 if (isa<GlobalValue>(C)) return false; // Cannot remove this
308
309 while (!C->use_empty()) {
310 const Constant *User = dyn_cast<Constant>(C->use_back());
311 if (!User) return false; // Non-constant usage;
312 if (!removeDeadUsersOfConstant(User))
313 return false; // Constant wasn't dead
314 }
315
316 const_cast<Constant*>(C)->destroyConstant();
317 return true;
318}
319
320
321/// removeDeadConstantUsers - If there are any dead constant users dangling
322/// off of this constant, remove them. This method is useful for clients
323/// that want to check to see if a global is unused, but don't want to deal
324/// with potentially dead constants hanging off of the globals.
325void Constant::removeDeadConstantUsers() const {
326 Value::const_use_iterator I = use_begin(), E = use_end();
327 Value::const_use_iterator LastNonDeadUser = E;
328 while (I != E) {
329 const Constant *User = dyn_cast<Constant>(*I);
330 if (User == 0) {
331 LastNonDeadUser = I;
332 ++I;
333 continue;
334 }
335
336 if (!removeDeadUsersOfConstant(User)) {
337 // If the constant wasn't dead, remember that this was the last live use
338 // and move on to the next constant.
339 LastNonDeadUser = I;
340 ++I;
341 continue;
342 }
343
344 // If the constant was dead, then the iterator is invalidated.
345 if (LastNonDeadUser == E) {
346 I = use_begin();
347 if (I == E) break;
348 } else {
349 I = LastNonDeadUser;
350 ++I;
351 }
352 }
353}
354
355
Chris Lattner2105d662008-07-10 00:28:11 +0000356
Chris Lattner2f7c9632001-06-06 20:29:01 +0000357//===----------------------------------------------------------------------===//
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000358// ConstantInt
Chris Lattner2f7c9632001-06-06 20:29:01 +0000359//===----------------------------------------------------------------------===//
360
Chris Lattner229907c2011-07-18 04:54:35 +0000361ConstantInt::ConstantInt(IntegerType *Ty, const APInt& V)
Chris Lattner5db2f472007-02-20 05:55:46 +0000362 : Constant(Ty, ConstantIntVal, 0, 0), Val(V) {
Reid Spencerb31bffe2007-02-26 23:54:03 +0000363 assert(V.getBitWidth() == Ty->getBitWidth() && "Invalid constant for type");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000364}
365
Nick Lewycky92db8e82011-03-06 03:36:19 +0000366ConstantInt *ConstantInt::getTrue(LLVMContext &Context) {
Owen Anderson23a204d2009-07-31 17:39:07 +0000367 LLVMContextImpl *pImpl = Context.pImpl;
Benjamin Kramerddd1b7b2010-11-20 18:43:35 +0000368 if (!pImpl->TheTrueVal)
369 pImpl->TheTrueVal = ConstantInt::get(Type::getInt1Ty(Context), 1);
370 return pImpl->TheTrueVal;
Owen Anderson23a204d2009-07-31 17:39:07 +0000371}
372
Nick Lewycky92db8e82011-03-06 03:36:19 +0000373ConstantInt *ConstantInt::getFalse(LLVMContext &Context) {
Owen Anderson23a204d2009-07-31 17:39:07 +0000374 LLVMContextImpl *pImpl = Context.pImpl;
Benjamin Kramerddd1b7b2010-11-20 18:43:35 +0000375 if (!pImpl->TheFalseVal)
376 pImpl->TheFalseVal = ConstantInt::get(Type::getInt1Ty(Context), 0);
377 return pImpl->TheFalseVal;
Owen Anderson23a204d2009-07-31 17:39:07 +0000378}
379
Chris Lattner229907c2011-07-18 04:54:35 +0000380Constant *ConstantInt::getTrue(Type *Ty) {
381 VectorType *VTy = dyn_cast<VectorType>(Ty);
Nick Lewycky92db8e82011-03-06 03:36:19 +0000382 if (!VTy) {
383 assert(Ty->isIntegerTy(1) && "True must be i1 or vector of i1.");
384 return ConstantInt::getTrue(Ty->getContext());
385 }
386 assert(VTy->getElementType()->isIntegerTy(1) &&
387 "True must be vector of i1 or i1.");
388 SmallVector<Constant*, 16> Splat(VTy->getNumElements(),
389 ConstantInt::getTrue(Ty->getContext()));
390 return ConstantVector::get(Splat);
391}
392
Chris Lattner229907c2011-07-18 04:54:35 +0000393Constant *ConstantInt::getFalse(Type *Ty) {
394 VectorType *VTy = dyn_cast<VectorType>(Ty);
Nick Lewycky92db8e82011-03-06 03:36:19 +0000395 if (!VTy) {
396 assert(Ty->isIntegerTy(1) && "False must be i1 or vector of i1.");
397 return ConstantInt::getFalse(Ty->getContext());
398 }
399 assert(VTy->getElementType()->isIntegerTy(1) &&
400 "False must be vector of i1 or i1.");
401 SmallVector<Constant*, 16> Splat(VTy->getNumElements(),
402 ConstantInt::getFalse(Ty->getContext()));
403 return ConstantVector::get(Splat);
404}
405
Owen Anderson23a204d2009-07-31 17:39:07 +0000406
Owen Andersonedb4a702009-07-24 23:12:02 +0000407// Get a ConstantInt from an APInt. Note that the value stored in the DenseMap
408// as the key, is a DenseMapAPIntKeyInfo::KeyTy which has provided the
409// operator== and operator!= to ensure that the DenseMap doesn't attempt to
410// compare APInt's of different widths, which would violate an APInt class
411// invariant which generates an assertion.
Nick Lewycky92db8e82011-03-06 03:36:19 +0000412ConstantInt *ConstantInt::get(LLVMContext &Context, const APInt &V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000413 // Get the corresponding integer type for the bit width of the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000414 IntegerType *ITy = IntegerType::get(Context, V.getBitWidth());
Owen Andersonedb4a702009-07-24 23:12:02 +0000415 // get an existing value or the insertion position
416 DenseMapAPIntKeyInfo::KeyTy Key(V, ITy);
Owen Andersonedb4a702009-07-24 23:12:02 +0000417 ConstantInt *&Slot = Context.pImpl->IntConstants[Key];
Owen Anderson5dab84c2009-10-19 20:11:52 +0000418 if (!Slot) Slot = new ConstantInt(ITy, V);
419 return Slot;
Owen Andersonedb4a702009-07-24 23:12:02 +0000420}
421
Chris Lattner229907c2011-07-18 04:54:35 +0000422Constant *ConstantInt::get(Type *Ty, uint64_t V, bool isSigned) {
Nick Lewycky92db8e82011-03-06 03:36:19 +0000423 Constant *C = get(cast<IntegerType>(Ty->getScalarType()), V, isSigned);
Owen Andersonedb4a702009-07-24 23:12:02 +0000424
425 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000426 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattner69229312011-02-15 00:14:00 +0000427 return ConstantVector::get(SmallVector<Constant*,
428 16>(VTy->getNumElements(), C));
Owen Andersonedb4a702009-07-24 23:12:02 +0000429
430 return C;
431}
432
Chris Lattner229907c2011-07-18 04:54:35 +0000433ConstantInt* ConstantInt::get(IntegerType* Ty, uint64_t V,
Owen Andersonedb4a702009-07-24 23:12:02 +0000434 bool isSigned) {
435 return get(Ty->getContext(), APInt(Ty->getBitWidth(), V, isSigned));
436}
437
Chris Lattner229907c2011-07-18 04:54:35 +0000438ConstantInt* ConstantInt::getSigned(IntegerType* Ty, int64_t V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000439 return get(Ty, V, true);
440}
441
Chris Lattner229907c2011-07-18 04:54:35 +0000442Constant *ConstantInt::getSigned(Type *Ty, int64_t V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000443 return get(Ty, V, true);
444}
445
Chris Lattner229907c2011-07-18 04:54:35 +0000446Constant *ConstantInt::get(Type* Ty, const APInt& V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000447 ConstantInt *C = get(Ty->getContext(), V);
448 assert(C->getType() == Ty->getScalarType() &&
449 "ConstantInt type doesn't match the type implied by its value!");
450
451 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000452 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Owen Anderson4aa32952009-07-28 21:19:26 +0000453 return ConstantVector::get(
Chris Lattner69229312011-02-15 00:14:00 +0000454 SmallVector<Constant *, 16>(VTy->getNumElements(), C));
Owen Andersonedb4a702009-07-24 23:12:02 +0000455
456 return C;
457}
458
Chris Lattner229907c2011-07-18 04:54:35 +0000459ConstantInt* ConstantInt::get(IntegerType* Ty, StringRef Str,
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000460 uint8_t radix) {
461 return get(Ty->getContext(), APInt(Ty->getBitWidth(), Str, radix));
462}
463
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000464//===----------------------------------------------------------------------===//
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000465// ConstantFP
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000466//===----------------------------------------------------------------------===//
467
Chris Lattner229907c2011-07-18 04:54:35 +0000468static const fltSemantics *TypeToFloatSemantics(Type *Ty) {
Chris Lattnerfdd87902009-10-05 05:54:46 +0000469 if (Ty->isFloatTy())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000470 return &APFloat::IEEEsingle;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000471 if (Ty->isDoubleTy())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000472 return &APFloat::IEEEdouble;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000473 if (Ty->isX86_FP80Ty())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000474 return &APFloat::x87DoubleExtended;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000475 else if (Ty->isFP128Ty())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000476 return &APFloat::IEEEquad;
477
Chris Lattnerfdd87902009-10-05 05:54:46 +0000478 assert(Ty->isPPC_FP128Ty() && "Unknown FP format");
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000479 return &APFloat::PPCDoubleDouble;
480}
481
Owen Anderson69c464d2009-07-27 20:59:43 +0000482/// get() - This returns a constant fp for the specified value in the
483/// specified type. This should only be used for simple constant values like
484/// 2.0/1.0 etc, that are known-valid both as double and as the target format.
Chris Lattner229907c2011-07-18 04:54:35 +0000485Constant *ConstantFP::get(Type* Ty, double V) {
Owen Anderson69c464d2009-07-27 20:59:43 +0000486 LLVMContext &Context = Ty->getContext();
487
488 APFloat FV(V);
489 bool ignored;
490 FV.convert(*TypeToFloatSemantics(Ty->getScalarType()),
491 APFloat::rmNearestTiesToEven, &ignored);
492 Constant *C = get(Context, FV);
493
494 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000495 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Owen Anderson4aa32952009-07-28 21:19:26 +0000496 return ConstantVector::get(
Chris Lattner69229312011-02-15 00:14:00 +0000497 SmallVector<Constant *, 16>(VTy->getNumElements(), C));
Owen Anderson69c464d2009-07-27 20:59:43 +0000498
499 return C;
500}
501
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000502
Chris Lattner229907c2011-07-18 04:54:35 +0000503Constant *ConstantFP::get(Type* Ty, StringRef Str) {
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000504 LLVMContext &Context = Ty->getContext();
505
506 APFloat FV(*TypeToFloatSemantics(Ty->getScalarType()), Str);
507 Constant *C = get(Context, FV);
508
509 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000510 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000511 return ConstantVector::get(
Chris Lattner69229312011-02-15 00:14:00 +0000512 SmallVector<Constant *, 16>(VTy->getNumElements(), C));
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000513
514 return C;
515}
516
517
Chris Lattner229907c2011-07-18 04:54:35 +0000518ConstantFP* ConstantFP::getNegativeZero(Type* Ty) {
Owen Anderson69c464d2009-07-27 20:59:43 +0000519 LLVMContext &Context = Ty->getContext();
Owen Anderson5a1acd92009-07-31 20:28:14 +0000520 APFloat apf = cast <ConstantFP>(Constant::getNullValue(Ty))->getValueAPF();
Owen Anderson69c464d2009-07-27 20:59:43 +0000521 apf.changeSign();
522 return get(Context, apf);
523}
524
525
Chris Lattner229907c2011-07-18 04:54:35 +0000526Constant *ConstantFP::getZeroValueForNegation(Type* Ty) {
527 if (VectorType *PTy = dyn_cast<VectorType>(Ty))
Duncan Sands9dff9be2010-02-15 16:12:20 +0000528 if (PTy->getElementType()->isFloatingPointTy()) {
Chris Lattner69229312011-02-15 00:14:00 +0000529 SmallVector<Constant*, 16> zeros(PTy->getNumElements(),
Owen Anderson69c464d2009-07-27 20:59:43 +0000530 getNegativeZero(PTy->getElementType()));
Chris Lattner69229312011-02-15 00:14:00 +0000531 return ConstantVector::get(zeros);
Owen Anderson69c464d2009-07-27 20:59:43 +0000532 }
533
Duncan Sands9dff9be2010-02-15 16:12:20 +0000534 if (Ty->isFloatingPointTy())
Owen Anderson69c464d2009-07-27 20:59:43 +0000535 return getNegativeZero(Ty);
536
Owen Anderson5a1acd92009-07-31 20:28:14 +0000537 return Constant::getNullValue(Ty);
Owen Anderson69c464d2009-07-27 20:59:43 +0000538}
539
540
541// ConstantFP accessors.
542ConstantFP* ConstantFP::get(LLVMContext &Context, const APFloat& V) {
543 DenseMapAPFloatKeyInfo::KeyTy Key(V);
544
545 LLVMContextImpl* pImpl = Context.pImpl;
546
Owen Anderson69c464d2009-07-27 20:59:43 +0000547 ConstantFP *&Slot = pImpl->FPConstants[Key];
Owen Anderson69c464d2009-07-27 20:59:43 +0000548
549 if (!Slot) {
Chris Lattner229907c2011-07-18 04:54:35 +0000550 Type *Ty;
Owen Anderson5dab84c2009-10-19 20:11:52 +0000551 if (&V.getSemantics() == &APFloat::IEEEsingle)
552 Ty = Type::getFloatTy(Context);
553 else if (&V.getSemantics() == &APFloat::IEEEdouble)
554 Ty = Type::getDoubleTy(Context);
555 else if (&V.getSemantics() == &APFloat::x87DoubleExtended)
556 Ty = Type::getX86_FP80Ty(Context);
557 else if (&V.getSemantics() == &APFloat::IEEEquad)
558 Ty = Type::getFP128Ty(Context);
559 else {
560 assert(&V.getSemantics() == &APFloat::PPCDoubleDouble &&
561 "Unknown FP format");
562 Ty = Type::getPPC_FP128Ty(Context);
Owen Anderson69c464d2009-07-27 20:59:43 +0000563 }
Owen Anderson5dab84c2009-10-19 20:11:52 +0000564 Slot = new ConstantFP(Ty, V);
Owen Anderson69c464d2009-07-27 20:59:43 +0000565 }
566
567 return Slot;
568}
569
Chris Lattner229907c2011-07-18 04:54:35 +0000570ConstantFP *ConstantFP::getInfinity(Type *Ty, bool Negative) {
Dan Gohmanfeb50212009-09-25 23:00:48 +0000571 const fltSemantics &Semantics = *TypeToFloatSemantics(Ty);
572 return ConstantFP::get(Ty->getContext(),
573 APFloat::getInf(Semantics, Negative));
574}
575
Chris Lattner229907c2011-07-18 04:54:35 +0000576ConstantFP::ConstantFP(Type *Ty, const APFloat& V)
Dale Johannesend246b2c2007-08-30 00:23:21 +0000577 : Constant(Ty, ConstantFPVal, 0, 0), Val(V) {
Chris Lattner98bd9392008-04-09 06:38:30 +0000578 assert(&V.getSemantics() == TypeToFloatSemantics(Ty) &&
579 "FP type Mismatch");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000580}
581
Chris Lattnerbe6610c2011-07-15 06:14:08 +0000582bool ConstantFP::isExactlyValue(const APFloat &V) const {
Dale Johannesend246b2c2007-08-30 00:23:21 +0000583 return Val.bitwiseIsEqual(V);
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000584}
585
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000586//===----------------------------------------------------------------------===//
587// ConstantXXX Classes
588//===----------------------------------------------------------------------===//
589
590
Jay Foad89d9b812011-07-25 10:14:44 +0000591ConstantArray::ConstantArray(ArrayType *T, ArrayRef<Constant *> V)
Gabor Greiff6caff662008-05-10 08:32:32 +0000592 : Constant(T, ConstantArrayVal,
593 OperandTraits<ConstantArray>::op_end(this) - V.size(),
594 V.size()) {
Alkis Evlogimenos0507ffe2004-09-15 02:32:15 +0000595 assert(V.size() == T->getNumElements() &&
596 "Invalid initializer vector for constant array");
Jay Foad89d9b812011-07-25 10:14:44 +0000597 for (unsigned i = 0, e = V.size(); i != e; ++i)
598 assert(V[i]->getType() == T->getElementType() &&
Alkis Evlogimenoscb031d92004-09-10 04:16:59 +0000599 "Initializer for array element doesn't match array element type!");
Jay Foad89d9b812011-07-25 10:14:44 +0000600 std::copy(V.begin(), V.end(), op_begin());
Chris Lattner2f7c9632001-06-06 20:29:01 +0000601}
602
Chris Lattner229907c2011-07-18 04:54:35 +0000603Constant *ConstantArray::get(ArrayType *Ty, ArrayRef<Constant*> V) {
Jeffrey Yasskin8ce67f82009-09-30 21:08:08 +0000604 for (unsigned i = 0, e = V.size(); i != e; ++i) {
605 assert(V[i]->getType() == Ty->getElementType() &&
606 "Wrong type in array element initializer");
607 }
Owen Andersonc2c79322009-07-28 18:32:17 +0000608 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
609 // If this is an all-zero array, return a ConstantAggregateZero object
610 if (!V.empty()) {
611 Constant *C = V[0];
Chris Lattner09660c92009-12-30 20:25:09 +0000612 if (!C->isNullValue())
Owen Andersonc2c79322009-07-28 18:32:17 +0000613 return pImpl->ArrayConstants.getOrCreate(Ty, V);
Chris Lattner09660c92009-12-30 20:25:09 +0000614
Owen Andersonc2c79322009-07-28 18:32:17 +0000615 for (unsigned i = 1, e = V.size(); i != e; ++i)
Chris Lattner09660c92009-12-30 20:25:09 +0000616 if (V[i] != C)
Owen Andersonc2c79322009-07-28 18:32:17 +0000617 return pImpl->ArrayConstants.getOrCreate(Ty, V);
Owen Andersonc2c79322009-07-28 18:32:17 +0000618 }
619
Owen Andersonb292b8c2009-07-30 23:03:37 +0000620 return ConstantAggregateZero::get(Ty);
Owen Andersonc2c79322009-07-28 18:32:17 +0000621}
622
Owen Andersonc2c79322009-07-28 18:32:17 +0000623/// ConstantArray::get(const string&) - Return an array that is initialized to
624/// contain the specified string. If length is zero then a null terminator is
625/// added to the specified string so that it may be used in a natural way.
626/// Otherwise, the length parameter specifies how much of the string to use
627/// and it won't be null terminated.
628///
Chris Lattnera676c0f2011-02-07 16:40:21 +0000629Constant *ConstantArray::get(LLVMContext &Context, StringRef Str,
Owen Anderson55f1c092009-08-13 21:58:54 +0000630 bool AddNull) {
Owen Andersonc2c79322009-07-28 18:32:17 +0000631 std::vector<Constant*> ElementVals;
Benjamin Kramer3d4af4e2010-08-01 11:43:26 +0000632 ElementVals.reserve(Str.size() + size_t(AddNull));
Owen Andersonc2c79322009-07-28 18:32:17 +0000633 for (unsigned i = 0; i < Str.size(); ++i)
Owen Anderson55f1c092009-08-13 21:58:54 +0000634 ElementVals.push_back(ConstantInt::get(Type::getInt8Ty(Context), Str[i]));
Owen Andersonc2c79322009-07-28 18:32:17 +0000635
636 // Add a null terminator to the string...
637 if (AddNull) {
Owen Anderson55f1c092009-08-13 21:58:54 +0000638 ElementVals.push_back(ConstantInt::get(Type::getInt8Ty(Context), 0));
Owen Andersonc2c79322009-07-28 18:32:17 +0000639 }
640
Owen Anderson55f1c092009-08-13 21:58:54 +0000641 ArrayType *ATy = ArrayType::get(Type::getInt8Ty(Context), ElementVals.size());
Owen Andersonc2c79322009-07-28 18:32:17 +0000642 return get(ATy, ElementVals);
643}
644
Chris Lattnercc19efa2011-06-20 04:01:31 +0000645/// getTypeForElements - Return an anonymous struct type to use for a constant
646/// with the specified set of elements. The list must not be empty.
647StructType *ConstantStruct::getTypeForElements(LLVMContext &Context,
648 ArrayRef<Constant*> V,
649 bool Packed) {
Jay Foadb804a2b2011-07-12 14:06:48 +0000650 SmallVector<Type*, 16> EltTypes;
Chris Lattnercc19efa2011-06-20 04:01:31 +0000651 for (unsigned i = 0, e = V.size(); i != e; ++i)
652 EltTypes.push_back(V[i]->getType());
653
654 return StructType::get(Context, EltTypes, Packed);
655}
656
657
658StructType *ConstantStruct::getTypeForElements(ArrayRef<Constant*> V,
659 bool Packed) {
660 assert(!V.empty() &&
661 "ConstantStruct::getTypeForElements cannot be called on empty list");
662 return getTypeForElements(V[0]->getContext(), V, Packed);
663}
664
665
Jay Foad89d9b812011-07-25 10:14:44 +0000666ConstantStruct::ConstantStruct(StructType *T, ArrayRef<Constant *> V)
Gabor Greiff6caff662008-05-10 08:32:32 +0000667 : Constant(T, ConstantStructVal,
668 OperandTraits<ConstantStruct>::op_end(this) - V.size(),
669 V.size()) {
Chris Lattnerc3e74cd2011-08-07 04:18:48 +0000670 assert(V.size() == T->getNumElements() &&
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000671 "Invalid initializer vector for constant structure");
Jay Foad89d9b812011-07-25 10:14:44 +0000672 for (unsigned i = 0, e = V.size(); i != e; ++i)
673 assert((T->isOpaque() || V[i]->getType() == T->getElementType(i)) &&
Chris Lattner93c8f142003-06-02 17:42:47 +0000674 "Initializer for struct element doesn't match struct element type!");
Jay Foad89d9b812011-07-25 10:14:44 +0000675 std::copy(V.begin(), V.end(), op_begin());
Chris Lattner2f7c9632001-06-06 20:29:01 +0000676}
677
Owen Anderson45308b52009-07-27 22:29:26 +0000678// ConstantStruct accessors.
Chris Lattner229907c2011-07-18 04:54:35 +0000679Constant *ConstantStruct::get(StructType *ST, ArrayRef<Constant*> V) {
Chris Lattnercc19efa2011-06-20 04:01:31 +0000680 // Create a ConstantAggregateZero value if all elements are zeros.
Owen Anderson45308b52009-07-27 22:29:26 +0000681 for (unsigned i = 0, e = V.size(); i != e; ++i)
Jay Foad687bd0a2011-06-22 08:55:11 +0000682 if (!V[i]->isNullValue())
683 return ST->getContext().pImpl->StructConstants.getOrCreate(ST, V);
Owen Anderson45308b52009-07-27 22:29:26 +0000684
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000685 assert((ST->isOpaque() || ST->getNumElements() == V.size()) &&
686 "Incorrect # elements specified to ConstantStruct::get");
Chris Lattnercc19efa2011-06-20 04:01:31 +0000687 return ConstantAggregateZero::get(ST);
Owen Anderson45308b52009-07-27 22:29:26 +0000688}
689
Chris Lattnerc3e74cd2011-08-07 04:18:48 +0000690Constant *ConstantStruct::get(StructType *T, ...) {
Talin3a0a30d2011-02-28 23:53:27 +0000691 va_list ap;
Chris Lattnercc19efa2011-06-20 04:01:31 +0000692 SmallVector<Constant*, 8> Values;
693 va_start(ap, T);
694 while (Constant *Val = va_arg(ap, llvm::Constant*))
Talin3a0a30d2011-02-28 23:53:27 +0000695 Values.push_back(Val);
Talinde422be2011-03-01 18:00:49 +0000696 va_end(ap);
Chris Lattnercc19efa2011-06-20 04:01:31 +0000697 return get(T, Values);
Talin3a0a30d2011-02-28 23:53:27 +0000698}
699
Jay Foad89d9b812011-07-25 10:14:44 +0000700ConstantVector::ConstantVector(VectorType *T, ArrayRef<Constant *> V)
Gabor Greiff6caff662008-05-10 08:32:32 +0000701 : Constant(T, ConstantVectorVal,
702 OperandTraits<ConstantVector>::op_end(this) - V.size(),
703 V.size()) {
Jay Foad89d9b812011-07-25 10:14:44 +0000704 for (size_t i = 0, e = V.size(); i != e; i++)
705 assert(V[i]->getType() == T->getElementType() &&
Dan Gohman30978072007-05-24 14:36:04 +0000706 "Initializer for vector element doesn't match vector element type!");
Jay Foad89d9b812011-07-25 10:14:44 +0000707 std::copy(V.begin(), V.end(), op_begin());
Brian Gaeke02209042004-08-20 06:00:58 +0000708}
709
Owen Anderson4aa32952009-07-28 21:19:26 +0000710// ConstantVector accessors.
Jay Foadb8a8bed32011-06-22 09:10:19 +0000711Constant *ConstantVector::get(ArrayRef<Constant*> V) {
Jay Foad9f32cfd2011-01-27 14:44:55 +0000712 assert(!V.empty() && "Vectors can't be empty");
Chris Lattner229907c2011-07-18 04:54:35 +0000713 VectorType *T = VectorType::get(V.front()->getType(), V.size());
Chris Lattner69229312011-02-15 00:14:00 +0000714 LLVMContextImpl *pImpl = T->getContext().pImpl;
Jay Foad9f32cfd2011-01-27 14:44:55 +0000715
Chris Lattner69229312011-02-15 00:14:00 +0000716 // If this is an all-undef or all-zero vector, return a
Owen Anderson4aa32952009-07-28 21:19:26 +0000717 // ConstantAggregateZero or UndefValue.
718 Constant *C = V[0];
719 bool isZero = C->isNullValue();
720 bool isUndef = isa<UndefValue>(C);
721
722 if (isZero || isUndef) {
723 for (unsigned i = 1, e = V.size(); i != e; ++i)
724 if (V[i] != C) {
725 isZero = isUndef = false;
726 break;
727 }
728 }
729
730 if (isZero)
Owen Andersonb292b8c2009-07-30 23:03:37 +0000731 return ConstantAggregateZero::get(T);
Owen Anderson4aa32952009-07-28 21:19:26 +0000732 if (isUndef)
Owen Andersonb292b8c2009-07-30 23:03:37 +0000733 return UndefValue::get(T);
Owen Anderson4aa32952009-07-28 21:19:26 +0000734
Owen Anderson4aa32952009-07-28 21:19:26 +0000735 return pImpl->VectorConstants.getOrCreate(T, V);
736}
737
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000738// Utility function for determining if a ConstantExpr is a CastOp or not. This
739// can't be inline because we don't want to #include Instruction.h into
740// Constant.h
741bool ConstantExpr::isCast() const {
742 return Instruction::isCast(getOpcode());
743}
744
Reid Spenceree3c9912006-12-04 05:19:50 +0000745bool ConstantExpr::isCompare() const {
Nick Lewyckya21d3da2009-07-08 03:04:38 +0000746 return getOpcode() == Instruction::ICmp || getOpcode() == Instruction::FCmp;
Reid Spenceree3c9912006-12-04 05:19:50 +0000747}
748
Dan Gohman7190d482009-09-10 23:37:55 +0000749bool ConstantExpr::isGEPWithNoNotionalOverIndexing() const {
750 if (getOpcode() != Instruction::GetElementPtr) return false;
751
752 gep_type_iterator GEPI = gep_type_begin(this), E = gep_type_end(this);
Oscar Fuentes40b31ad2010-08-02 06:00:15 +0000753 User::const_op_iterator OI = llvm::next(this->op_begin());
Dan Gohman7190d482009-09-10 23:37:55 +0000754
755 // Skip the first index, as it has no static limit.
756 ++GEPI;
757 ++OI;
758
759 // The remaining indices must be compile-time known integers within the
760 // bounds of the corresponding notional static array types.
761 for (; GEPI != E; ++GEPI, ++OI) {
762 ConstantInt *CI = dyn_cast<ConstantInt>(*OI);
763 if (!CI) return false;
Chris Lattner229907c2011-07-18 04:54:35 +0000764 if (ArrayType *ATy = dyn_cast<ArrayType>(*GEPI))
Dan Gohman7190d482009-09-10 23:37:55 +0000765 if (CI->getValue().getActiveBits() > 64 ||
766 CI->getZExtValue() >= ATy->getNumElements())
767 return false;
768 }
769
770 // All the indices checked out.
771 return true;
772}
773
Dan Gohman1ecaf452008-05-31 00:58:22 +0000774bool ConstantExpr::hasIndices() const {
775 return getOpcode() == Instruction::ExtractValue ||
776 getOpcode() == Instruction::InsertValue;
777}
778
Jay Foad0091fe82011-04-13 15:22:40 +0000779ArrayRef<unsigned> ConstantExpr::getIndices() const {
Dan Gohman1ecaf452008-05-31 00:58:22 +0000780 if (const ExtractValueConstantExpr *EVCE =
781 dyn_cast<ExtractValueConstantExpr>(this))
782 return EVCE->Indices;
Dan Gohmana469bdb2008-06-23 16:39:44 +0000783
784 return cast<InsertValueConstantExpr>(this)->Indices;
Dan Gohman1ecaf452008-05-31 00:58:22 +0000785}
786
Reid Spencer10fbf0e2006-12-03 05:48:19 +0000787unsigned ConstantExpr::getPredicate() const {
Chris Lattnerd04e32d2011-07-17 06:01:30 +0000788 assert(isCompare());
Chris Lattneref650092007-10-18 16:26:24 +0000789 return ((const CompareConstantExpr*)this)->predicate;
Reid Spencer10fbf0e2006-12-03 05:48:19 +0000790}
Chris Lattner60e0dd72001-10-03 06:12:09 +0000791
Chris Lattner7c1018a2006-07-14 19:37:40 +0000792/// getWithOperandReplaced - Return a constant expression identical to this
793/// one, but with the specified operand set to the specified value.
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000794Constant *
795ConstantExpr::getWithOperandReplaced(unsigned OpNo, Constant *Op) const {
Chris Lattner7c1018a2006-07-14 19:37:40 +0000796 assert(OpNo < getNumOperands() && "Operand num is out of range!");
797 assert(Op->getType() == getOperand(OpNo)->getType() &&
798 "Replacing operand with value of different type!");
Chris Lattner227816342006-07-14 22:20:01 +0000799 if (getOperand(OpNo) == Op)
800 return const_cast<ConstantExpr*>(this);
Chris Lattner7c1018a2006-07-14 19:37:40 +0000801
Chris Lattner227816342006-07-14 22:20:01 +0000802 Constant *Op0, *Op1, *Op2;
Chris Lattner7c1018a2006-07-14 19:37:40 +0000803 switch (getOpcode()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000804 case Instruction::Trunc:
805 case Instruction::ZExt:
806 case Instruction::SExt:
807 case Instruction::FPTrunc:
808 case Instruction::FPExt:
809 case Instruction::UIToFP:
810 case Instruction::SIToFP:
811 case Instruction::FPToUI:
812 case Instruction::FPToSI:
813 case Instruction::PtrToInt:
814 case Instruction::IntToPtr:
815 case Instruction::BitCast:
816 return ConstantExpr::getCast(getOpcode(), Op, getType());
Chris Lattner227816342006-07-14 22:20:01 +0000817 case Instruction::Select:
818 Op0 = (OpNo == 0) ? Op : getOperand(0);
819 Op1 = (OpNo == 1) ? Op : getOperand(1);
820 Op2 = (OpNo == 2) ? Op : getOperand(2);
821 return ConstantExpr::getSelect(Op0, Op1, Op2);
822 case Instruction::InsertElement:
823 Op0 = (OpNo == 0) ? Op : getOperand(0);
824 Op1 = (OpNo == 1) ? Op : getOperand(1);
825 Op2 = (OpNo == 2) ? Op : getOperand(2);
826 return ConstantExpr::getInsertElement(Op0, Op1, Op2);
827 case Instruction::ExtractElement:
828 Op0 = (OpNo == 0) ? Op : getOperand(0);
829 Op1 = (OpNo == 1) ? Op : getOperand(1);
830 return ConstantExpr::getExtractElement(Op0, Op1);
831 case Instruction::ShuffleVector:
832 Op0 = (OpNo == 0) ? Op : getOperand(0);
833 Op1 = (OpNo == 1) ? Op : getOperand(1);
834 Op2 = (OpNo == 2) ? Op : getOperand(2);
835 return ConstantExpr::getShuffleVector(Op0, Op1, Op2);
Chris Lattner7c1018a2006-07-14 19:37:40 +0000836 case Instruction::GetElementPtr: {
Chris Lattnerb5d70302007-02-19 20:01:23 +0000837 SmallVector<Constant*, 8> Ops;
Dan Gohman12fce772008-05-15 19:50:34 +0000838 Ops.resize(getNumOperands()-1);
Chris Lattner7c1018a2006-07-14 19:37:40 +0000839 for (unsigned i = 1, e = getNumOperands(); i != e; ++i)
Dan Gohman12fce772008-05-15 19:50:34 +0000840 Ops[i-1] = getOperand(i);
Chris Lattner7c1018a2006-07-14 19:37:40 +0000841 if (OpNo == 0)
Jay Foad2f5fc8c2011-07-21 15:15:37 +0000842 return
843 ConstantExpr::getGetElementPtr(Op, Ops,
844 cast<GEPOperator>(this)->isInBounds());
Chris Lattner7c1018a2006-07-14 19:37:40 +0000845 Ops[OpNo-1] = Op;
Jay Foad2f5fc8c2011-07-21 15:15:37 +0000846 return
847 ConstantExpr::getGetElementPtr(getOperand(0), Ops,
848 cast<GEPOperator>(this)->isInBounds());
Chris Lattner7c1018a2006-07-14 19:37:40 +0000849 }
Chris Lattner7c1018a2006-07-14 19:37:40 +0000850 default:
851 assert(getNumOperands() == 2 && "Must be binary operator?");
Chris Lattner227816342006-07-14 22:20:01 +0000852 Op0 = (OpNo == 0) ? Op : getOperand(0);
853 Op1 = (OpNo == 1) ? Op : getOperand(1);
Chris Lattnerb9c86512009-12-29 02:14:09 +0000854 return ConstantExpr::get(getOpcode(), Op0, Op1, SubclassOptionalData);
Chris Lattner227816342006-07-14 22:20:01 +0000855 }
856}
857
858/// getWithOperands - This returns the current constant expression with the
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000859/// operands replaced with the specified values. The specified array must
860/// have the same number of operands as our current one.
Chris Lattner227816342006-07-14 22:20:01 +0000861Constant *ConstantExpr::
Chris Lattner229907c2011-07-18 04:54:35 +0000862getWithOperands(ArrayRef<Constant*> Ops, Type *Ty) const {
Jay Foad5c984e562011-04-13 13:46:01 +0000863 assert(Ops.size() == getNumOperands() && "Operand count mismatch!");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000864 bool AnyChange = Ty != getType();
865 for (unsigned i = 0; i != Ops.size(); ++i)
Chris Lattner227816342006-07-14 22:20:01 +0000866 AnyChange |= Ops[i] != getOperand(i);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000867
Chris Lattner227816342006-07-14 22:20:01 +0000868 if (!AnyChange) // No operands changed, return self.
869 return const_cast<ConstantExpr*>(this);
870
871 switch (getOpcode()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000872 case Instruction::Trunc:
873 case Instruction::ZExt:
874 case Instruction::SExt:
875 case Instruction::FPTrunc:
876 case Instruction::FPExt:
877 case Instruction::UIToFP:
878 case Instruction::SIToFP:
879 case Instruction::FPToUI:
880 case Instruction::FPToSI:
881 case Instruction::PtrToInt:
882 case Instruction::IntToPtr:
883 case Instruction::BitCast:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000884 return ConstantExpr::getCast(getOpcode(), Ops[0], Ty);
Chris Lattner227816342006-07-14 22:20:01 +0000885 case Instruction::Select:
886 return ConstantExpr::getSelect(Ops[0], Ops[1], Ops[2]);
887 case Instruction::InsertElement:
888 return ConstantExpr::getInsertElement(Ops[0], Ops[1], Ops[2]);
889 case Instruction::ExtractElement:
890 return ConstantExpr::getExtractElement(Ops[0], Ops[1]);
891 case Instruction::ShuffleVector:
892 return ConstantExpr::getShuffleVector(Ops[0], Ops[1], Ops[2]);
Chris Lattnerb5d70302007-02-19 20:01:23 +0000893 case Instruction::GetElementPtr:
Jay Foad2f5fc8c2011-07-21 15:15:37 +0000894 return
895 ConstantExpr::getGetElementPtr(Ops[0], Ops.slice(1),
896 cast<GEPOperator>(this)->isInBounds());
Reid Spencer266e42b2006-12-23 06:05:41 +0000897 case Instruction::ICmp:
898 case Instruction::FCmp:
899 return ConstantExpr::getCompare(getPredicate(), Ops[0], Ops[1]);
Chris Lattner227816342006-07-14 22:20:01 +0000900 default:
901 assert(getNumOperands() == 2 && "Must be binary operator?");
Chris Lattnerb9c86512009-12-29 02:14:09 +0000902 return ConstantExpr::get(getOpcode(), Ops[0], Ops[1], SubclassOptionalData);
Chris Lattner7c1018a2006-07-14 19:37:40 +0000903 }
904}
905
Chris Lattner2f7c9632001-06-06 20:29:01 +0000906
907//===----------------------------------------------------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +0000908// isValueValidForType implementations
909
Chris Lattner229907c2011-07-18 04:54:35 +0000910bool ConstantInt::isValueValidForType(Type *Ty, uint64_t Val) {
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000911 unsigned NumBits = cast<IntegerType>(Ty)->getBitWidth(); // assert okay
Owen Anderson55f1c092009-08-13 21:58:54 +0000912 if (Ty == Type::getInt1Ty(Ty->getContext()))
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000913 return Val == 0 || Val == 1;
Reid Spencerd7a00d72007-02-05 23:47:56 +0000914 if (NumBits >= 64)
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000915 return true; // always true, has to fit in largest type
916 uint64_t Max = (1ll << NumBits) - 1;
917 return Val <= Max;
Reid Spencere7334722006-12-19 01:28:19 +0000918}
919
Chris Lattner229907c2011-07-18 04:54:35 +0000920bool ConstantInt::isValueValidForType(Type *Ty, int64_t Val) {
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000921 unsigned NumBits = cast<IntegerType>(Ty)->getBitWidth(); // assert okay
Owen Anderson55f1c092009-08-13 21:58:54 +0000922 if (Ty == Type::getInt1Ty(Ty->getContext()))
Reid Spencera94d3942007-01-19 21:13:56 +0000923 return Val == 0 || Val == 1 || Val == -1;
Reid Spencerd7a00d72007-02-05 23:47:56 +0000924 if (NumBits >= 64)
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000925 return true; // always true, has to fit in largest type
926 int64_t Min = -(1ll << (NumBits-1));
927 int64_t Max = (1ll << (NumBits-1)) - 1;
928 return (Val >= Min && Val <= Max);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000929}
930
Chris Lattner229907c2011-07-18 04:54:35 +0000931bool ConstantFP::isValueValidForType(Type *Ty, const APFloat& Val) {
Dale Johannesend246b2c2007-08-30 00:23:21 +0000932 // convert modifies in place, so make a copy.
933 APFloat Val2 = APFloat(Val);
Dale Johannesen4f0bd682008-10-09 23:00:39 +0000934 bool losesInfo;
Chris Lattner6b727592004-06-17 18:19:28 +0000935 switch (Ty->getTypeID()) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000936 default:
937 return false; // These can't be represented as floating point!
938
Dale Johannesend246b2c2007-08-30 00:23:21 +0000939 // FIXME rounding mode needs to be more flexible
Dale Johannesen4f0bd682008-10-09 23:00:39 +0000940 case Type::FloatTyID: {
941 if (&Val2.getSemantics() == &APFloat::IEEEsingle)
942 return true;
943 Val2.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven, &losesInfo);
944 return !losesInfo;
945 }
946 case Type::DoubleTyID: {
947 if (&Val2.getSemantics() == &APFloat::IEEEsingle ||
948 &Val2.getSemantics() == &APFloat::IEEEdouble)
949 return true;
950 Val2.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, &losesInfo);
951 return !losesInfo;
952 }
Dale Johannesenbdad8092007-08-09 22:51:36 +0000953 case Type::X86_FP80TyID:
Dale Johannesen028084e2007-09-12 03:30:33 +0000954 return &Val2.getSemantics() == &APFloat::IEEEsingle ||
955 &Val2.getSemantics() == &APFloat::IEEEdouble ||
956 &Val2.getSemantics() == &APFloat::x87DoubleExtended;
Dale Johannesenbdad8092007-08-09 22:51:36 +0000957 case Type::FP128TyID:
Dale Johannesen028084e2007-09-12 03:30:33 +0000958 return &Val2.getSemantics() == &APFloat::IEEEsingle ||
959 &Val2.getSemantics() == &APFloat::IEEEdouble ||
960 &Val2.getSemantics() == &APFloat::IEEEquad;
Dale Johannesen007aa372007-10-11 18:07:22 +0000961 case Type::PPC_FP128TyID:
962 return &Val2.getSemantics() == &APFloat::IEEEsingle ||
963 &Val2.getSemantics() == &APFloat::IEEEdouble ||
964 &Val2.getSemantics() == &APFloat::PPCDoubleDouble;
Chris Lattner2f7c9632001-06-06 20:29:01 +0000965 }
Chris Lattneraa2372562006-05-24 17:04:05 +0000966}
Chris Lattner9655e542001-07-20 19:16:02 +0000967
Chris Lattner49d855c2001-09-07 16:46:31 +0000968//===----------------------------------------------------------------------===//
Chris Lattner49d855c2001-09-07 16:46:31 +0000969// Factory Function Implementation
970
Chris Lattner229907c2011-07-18 04:54:35 +0000971ConstantAggregateZero* ConstantAggregateZero::get(Type* Ty) {
Chris Lattner13ee7952010-08-28 04:09:24 +0000972 assert((Ty->isStructTy() || Ty->isArrayTy() || Ty->isVectorTy()) &&
Owen Andersonb292b8c2009-07-30 23:03:37 +0000973 "Cannot create an aggregate zero of non-aggregate type!");
974
975 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
Owen Andersonb292b8c2009-07-30 23:03:37 +0000976 return pImpl->AggZeroConstants.getOrCreate(Ty, 0);
977}
978
Dan Gohman92b551b2009-03-03 02:55:14 +0000979/// destroyConstant - Remove the constant from the constant table...
980///
Owen Anderson0d2de8c2009-06-20 00:24:58 +0000981void ConstantAggregateZero::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000982 getType()->getContext().pImpl->AggZeroConstants.remove(this);
Chris Lattner9fba3da2004-02-15 05:53:04 +0000983 destroyConstantImpl();
984}
985
Dan Gohman92b551b2009-03-03 02:55:14 +0000986/// destroyConstant - Remove the constant from the constant table...
987///
Owen Anderson0d2de8c2009-06-20 00:24:58 +0000988void ConstantArray::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000989 getType()->getContext().pImpl->ArrayConstants.remove(this);
Chris Lattner98fa07b2003-05-23 20:03:32 +0000990 destroyConstantImpl();
991}
992
Reid Spencer2546b762007-01-26 07:37:34 +0000993/// isString - This method returns true if the array is an array of i8, and
994/// if the elements of the array are all ConstantInt's.
Chris Lattnere8dfcca2004-01-14 17:06:38 +0000995bool ConstantArray::isString() const {
Reid Spencer2546b762007-01-26 07:37:34 +0000996 // Check the element type for i8...
Duncan Sands9dff9be2010-02-15 16:12:20 +0000997 if (!getType()->getElementType()->isIntegerTy(8))
Chris Lattnere8dfcca2004-01-14 17:06:38 +0000998 return false;
999 // Check the elements to make sure they are all integers, not constant
1000 // expressions.
1001 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
1002 if (!isa<ConstantInt>(getOperand(i)))
1003 return false;
1004 return true;
1005}
1006
Evan Cheng3763c5b2006-10-26 19:15:05 +00001007/// isCString - This method returns true if the array is a string (see
Dan Gohman92b551b2009-03-03 02:55:14 +00001008/// isString) and it ends in a null byte \\0 and does not contains any other
Evan Cheng3763c5b2006-10-26 19:15:05 +00001009/// null bytes except its terminator.
Owen Andersone4dcecd2009-07-13 21:27:19 +00001010bool ConstantArray::isCString() const {
Reid Spencer2546b762007-01-26 07:37:34 +00001011 // Check the element type for i8...
Duncan Sands9dff9be2010-02-15 16:12:20 +00001012 if (!getType()->getElementType()->isIntegerTy(8))
Evan Chenge974da62006-10-26 21:48:03 +00001013 return false;
Owen Andersone4dcecd2009-07-13 21:27:19 +00001014
Evan Chenge974da62006-10-26 21:48:03 +00001015 // Last element must be a null.
Owen Andersone4dcecd2009-07-13 21:27:19 +00001016 if (!getOperand(getNumOperands()-1)->isNullValue())
Evan Chenge974da62006-10-26 21:48:03 +00001017 return false;
1018 // Other elements must be non-null integers.
1019 for (unsigned i = 0, e = getNumOperands()-1; i != e; ++i) {
1020 if (!isa<ConstantInt>(getOperand(i)))
Evan Cheng3763c5b2006-10-26 19:15:05 +00001021 return false;
Owen Andersone4dcecd2009-07-13 21:27:19 +00001022 if (getOperand(i)->isNullValue())
Evan Chenge974da62006-10-26 21:48:03 +00001023 return false;
1024 }
Evan Cheng3763c5b2006-10-26 19:15:05 +00001025 return true;
1026}
1027
1028
Jay Foad2a31eb42011-06-28 08:24:19 +00001029/// convertToString - Helper function for getAsString() and getAsCString().
Chris Lattnerd04e32d2011-07-17 06:01:30 +00001030static std::string convertToString(const User *U, unsigned len) {
Jay Foad2a31eb42011-06-28 08:24:19 +00001031 std::string Result;
1032 Result.reserve(len);
1033 for (unsigned i = 0; i != len; ++i)
1034 Result.push_back((char)cast<ConstantInt>(U->getOperand(i))->getZExtValue());
1035 return Result;
1036}
1037
1038/// getAsString - If this array is isString(), then this method converts the
1039/// array to an std::string and returns it. Otherwise, it asserts out.
Dan Gohman92b551b2009-03-03 02:55:14 +00001040///
Chris Lattner81fabb02002-08-26 17:53:56 +00001041std::string ConstantArray::getAsString() const {
Chris Lattnere8dfcca2004-01-14 17:06:38 +00001042 assert(isString() && "Not a string!");
Jay Foad2a31eb42011-06-28 08:24:19 +00001043 return convertToString(this, getNumOperands());
1044}
1045
1046
1047/// getAsCString - If this array is isCString(), then this method converts the
1048/// array (without the trailing null byte) to an std::string and returns it.
1049/// Otherwise, it asserts out.
1050///
1051std::string ConstantArray::getAsCString() const {
1052 assert(isCString() && "Not a string!");
1053 return convertToString(this, getNumOperands() - 1);
Chris Lattner81fabb02002-08-26 17:53:56 +00001054}
1055
1056
Chris Lattner3462ae32001-12-03 22:26:30 +00001057//---- ConstantStruct::get() implementation...
Chris Lattner49d855c2001-09-07 16:46:31 +00001058//
Chris Lattnerb50d1352003-10-05 00:17:43 +00001059
Chris Lattnerd7a73302001-10-13 06:57:33 +00001060// destroyConstant - Remove the constant from the constant table...
Chris Lattner883ad0b2001-10-03 15:39:36 +00001061//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001062void ConstantStruct::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001063 getType()->getContext().pImpl->StructConstants.remove(this);
Chris Lattnerd7a73302001-10-13 06:57:33 +00001064 destroyConstantImpl();
1065}
Chris Lattner883ad0b2001-10-03 15:39:36 +00001066
Brian Gaeke02209042004-08-20 06:00:58 +00001067// destroyConstant - Remove the constant from the constant table...
1068//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001069void ConstantVector::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001070 getType()->getContext().pImpl->VectorConstants.remove(this);
Brian Gaeke02209042004-08-20 06:00:58 +00001071 destroyConstantImpl();
1072}
1073
Dan Gohman30978072007-05-24 14:36:04 +00001074/// This function will return true iff every element in this vector constant
Jim Laskeyf0478822007-01-12 22:39:14 +00001075/// is set to all ones.
Chris Lattnerd04e32d2011-07-17 06:01:30 +00001076/// @returns true iff this constant's elements are all set to all ones.
Jim Laskeyf0478822007-01-12 22:39:14 +00001077/// @brief Determine if the value is all ones.
Reid Spencerd84d35b2007-02-15 02:26:10 +00001078bool ConstantVector::isAllOnesValue() const {
Jim Laskeyf0478822007-01-12 22:39:14 +00001079 // Check out first element.
1080 const Constant *Elt = getOperand(0);
1081 const ConstantInt *CI = dyn_cast<ConstantInt>(Elt);
Nadav Rotem365af6f2011-08-24 20:18:38 +00001082 const ConstantFP *CF = dyn_cast<ConstantFP>(Elt);
1083
Jim Laskeyf0478822007-01-12 22:39:14 +00001084 // Then make sure all remaining elements point to the same value.
Chris Lattnerd04e32d2011-07-17 06:01:30 +00001085 for (unsigned I = 1, E = getNumOperands(); I < E; ++I)
1086 if (getOperand(I) != Elt)
1087 return false;
1088
Nadav Rotem365af6f2011-08-24 20:18:38 +00001089 // First value is all-ones.
1090 return (CI && CI->isAllOnesValue()) ||
1091 (CF && CF->isAllOnesValue());
Jim Laskeyf0478822007-01-12 22:39:14 +00001092}
1093
Dan Gohman07159202007-10-17 17:51:30 +00001094/// getSplatValue - If this is a splat constant, where all of the
1095/// elements have the same value, return that value. Otherwise return null.
Duncan Sandscf0ff032011-02-01 08:39:12 +00001096Constant *ConstantVector::getSplatValue() const {
Dan Gohman07159202007-10-17 17:51:30 +00001097 // Check out first element.
1098 Constant *Elt = getOperand(0);
1099 // Then make sure all remaining elements point to the same value.
1100 for (unsigned I = 1, E = getNumOperands(); I < E; ++I)
Chris Lattnerd04e32d2011-07-17 06:01:30 +00001101 if (getOperand(I) != Elt)
1102 return 0;
Dan Gohman07159202007-10-17 17:51:30 +00001103 return Elt;
1104}
1105
Chris Lattner31b132c2009-10-28 00:01:44 +00001106//---- ConstantPointerNull::get() implementation.
Chris Lattnerd7a73302001-10-13 06:57:33 +00001107//
Chris Lattner98fa07b2003-05-23 20:03:32 +00001108
Chris Lattner229907c2011-07-18 04:54:35 +00001109ConstantPointerNull *ConstantPointerNull::get(PointerType *Ty) {
Owen Andersonc8c30262009-07-31 22:45:43 +00001110 return Ty->getContext().pImpl->NullPtrConstants.getOrCreate(Ty, 0);
Chris Lattner883ad0b2001-10-03 15:39:36 +00001111}
1112
Chris Lattner0c6e0b92002-08-18 00:40:04 +00001113// destroyConstant - Remove the constant from the constant table...
1114//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001115void ConstantPointerNull::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001116 getType()->getContext().pImpl->NullPtrConstants.remove(this);
Chris Lattner0c6e0b92002-08-18 00:40:04 +00001117 destroyConstantImpl();
1118}
1119
1120
Chris Lattner31b132c2009-10-28 00:01:44 +00001121//---- UndefValue::get() implementation.
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001122//
1123
Chris Lattner229907c2011-07-18 04:54:35 +00001124UndefValue *UndefValue::get(Type *Ty) {
Owen Andersonc8c30262009-07-31 22:45:43 +00001125 return Ty->getContext().pImpl->UndefValueConstants.getOrCreate(Ty, 0);
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001126}
1127
1128// destroyConstant - Remove the constant from the constant table.
1129//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001130void UndefValue::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001131 getType()->getContext().pImpl->UndefValueConstants.remove(this);
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001132 destroyConstantImpl();
1133}
1134
Chris Lattner31b132c2009-10-28 00:01:44 +00001135//---- BlockAddress::get() implementation.
1136//
1137
1138BlockAddress *BlockAddress::get(BasicBlock *BB) {
1139 assert(BB->getParent() != 0 && "Block must have a parent");
1140 return get(BB->getParent(), BB);
1141}
1142
1143BlockAddress *BlockAddress::get(Function *F, BasicBlock *BB) {
1144 BlockAddress *&BA =
1145 F->getContext().pImpl->BlockAddresses[std::make_pair(F, BB)];
1146 if (BA == 0)
1147 BA = new BlockAddress(F, BB);
1148
1149 assert(BA->getFunction() == F && "Basic block moved between functions");
1150 return BA;
1151}
1152
1153BlockAddress::BlockAddress(Function *F, BasicBlock *BB)
1154: Constant(Type::getInt8PtrTy(F->getContext()), Value::BlockAddressVal,
1155 &Op<0>(), 2) {
Chris Lattnerc559a9f2009-11-01 03:03:03 +00001156 setOperand(0, F);
1157 setOperand(1, BB);
Chris Lattneraa99c942009-11-01 01:27:45 +00001158 BB->AdjustBlockAddressRefCount(1);
Chris Lattner31b132c2009-10-28 00:01:44 +00001159}
1160
1161
1162// destroyConstant - Remove the constant from the constant table.
1163//
1164void BlockAddress::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001165 getFunction()->getType()->getContext().pImpl
Chris Lattner31b132c2009-10-28 00:01:44 +00001166 ->BlockAddresses.erase(std::make_pair(getFunction(), getBasicBlock()));
Chris Lattneraa99c942009-11-01 01:27:45 +00001167 getBasicBlock()->AdjustBlockAddressRefCount(-1);
Chris Lattner31b132c2009-10-28 00:01:44 +00001168 destroyConstantImpl();
1169}
1170
1171void BlockAddress::replaceUsesOfWithOnConstant(Value *From, Value *To, Use *U) {
1172 // This could be replacing either the Basic Block or the Function. In either
1173 // case, we have to remove the map entry.
1174 Function *NewF = getFunction();
1175 BasicBlock *NewBB = getBasicBlock();
1176
1177 if (U == &Op<0>())
1178 NewF = cast<Function>(To);
1179 else
1180 NewBB = cast<BasicBlock>(To);
1181
1182 // See if the 'new' entry already exists, if not, just update this in place
1183 // and return early.
1184 BlockAddress *&NewBA =
1185 getContext().pImpl->BlockAddresses[std::make_pair(NewF, NewBB)];
1186 if (NewBA == 0) {
Chris Lattnerc559a9f2009-11-01 03:03:03 +00001187 getBasicBlock()->AdjustBlockAddressRefCount(-1);
1188
Chris Lattner31b132c2009-10-28 00:01:44 +00001189 // Remove the old entry, this can't cause the map to rehash (just a
1190 // tombstone will get added).
1191 getContext().pImpl->BlockAddresses.erase(std::make_pair(getFunction(),
1192 getBasicBlock()));
1193 NewBA = this;
Chris Lattnerc559a9f2009-11-01 03:03:03 +00001194 setOperand(0, NewF);
1195 setOperand(1, NewBB);
1196 getBasicBlock()->AdjustBlockAddressRefCount(1);
Chris Lattner31b132c2009-10-28 00:01:44 +00001197 return;
1198 }
1199
1200 // Otherwise, I do need to replace this with an existing value.
1201 assert(NewBA != this && "I didn't contain From!");
1202
1203 // Everyone using this now uses the replacement.
Chris Lattneraf1783f2011-07-15 06:18:52 +00001204 replaceAllUsesWith(NewBA);
Chris Lattner31b132c2009-10-28 00:01:44 +00001205
1206 destroyConstant();
1207}
1208
1209//---- ConstantExpr::get() implementations.
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001210//
Reid Spencer8d9336d2006-12-31 05:26:44 +00001211
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001212/// This is a utility function to handle folding of casts and lookup of the
Duncan Sands7d6c8ae2008-03-30 19:38:55 +00001213/// cast in the ExprConstants map. It is used by the various get* methods below.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001214static inline Constant *getFoldedCast(
Chris Lattner229907c2011-07-18 04:54:35 +00001215 Instruction::CastOps opc, Constant *C, Type *Ty) {
Chris Lattner815ae2b2003-10-07 22:19:19 +00001216 assert(Ty->isFirstClassType() && "Cannot cast to an aggregate type!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001217 // Fold a few common cases
Chris Lattnerf5edeeb2010-02-01 20:48:08 +00001218 if (Constant *FC = ConstantFoldCastInstruction(opc, C, Ty))
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001219 return FC;
Chris Lattneracdbe712003-04-17 19:24:48 +00001220
Owen Anderson1584a292009-08-04 20:25:11 +00001221 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
1222
Vikram S. Adve4c485332002-07-15 18:19:33 +00001223 // Look up the constant in the table first to ensure uniqueness
Chris Lattner2b383d2e2003-05-13 21:37:02 +00001224 std::vector<Constant*> argVec(1, C);
Reid Spenceree3c9912006-12-04 05:19:50 +00001225 ExprMapKeyType Key(opc, argVec);
Owen Anderson2d7231d2009-06-17 18:40:29 +00001226
Owen Anderson1584a292009-08-04 20:25:11 +00001227 return pImpl->ExprConstants.getOrCreate(Ty, Key);
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001228}
Reid Spencerf37dc652006-12-05 19:14:13 +00001229
Chris Lattner229907c2011-07-18 04:54:35 +00001230Constant *ConstantExpr::getCast(unsigned oc, Constant *C, Type *Ty) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001231 Instruction::CastOps opc = Instruction::CastOps(oc);
1232 assert(Instruction::isCast(opc) && "opcode out of range");
1233 assert(C && Ty && "Null arguments to getCast");
Chris Lattner37bc78a2010-01-26 21:51:43 +00001234 assert(CastInst::castIsValid(opc, C, Ty) && "Invalid constantexpr cast!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001235
1236 switch (opc) {
Chris Lattner37bc78a2010-01-26 21:51:43 +00001237 default:
1238 llvm_unreachable("Invalid cast opcode");
1239 break;
1240 case Instruction::Trunc: return getTrunc(C, Ty);
1241 case Instruction::ZExt: return getZExt(C, Ty);
1242 case Instruction::SExt: return getSExt(C, Ty);
1243 case Instruction::FPTrunc: return getFPTrunc(C, Ty);
1244 case Instruction::FPExt: return getFPExtend(C, Ty);
1245 case Instruction::UIToFP: return getUIToFP(C, Ty);
1246 case Instruction::SIToFP: return getSIToFP(C, Ty);
1247 case Instruction::FPToUI: return getFPToUI(C, Ty);
1248 case Instruction::FPToSI: return getFPToSI(C, Ty);
1249 case Instruction::PtrToInt: return getPtrToInt(C, Ty);
1250 case Instruction::IntToPtr: return getIntToPtr(C, Ty);
1251 case Instruction::BitCast: return getBitCast(C, Ty);
Chris Lattner1ece6f82005-01-01 15:59:57 +00001252 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001253 return 0;
Reid Spencerf37dc652006-12-05 19:14:13 +00001254}
1255
Chris Lattner229907c2011-07-18 04:54:35 +00001256Constant *ConstantExpr::getZExtOrBitCast(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001257 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001258 return getBitCast(C, Ty);
1259 return getZExt(C, Ty);
Reid Spencer5c140882006-12-04 20:17:56 +00001260}
1261
Chris Lattner229907c2011-07-18 04:54:35 +00001262Constant *ConstantExpr::getSExtOrBitCast(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001263 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001264 return getBitCast(C, Ty);
1265 return getSExt(C, Ty);
Reid Spencer5c140882006-12-04 20:17:56 +00001266}
1267
Chris Lattner229907c2011-07-18 04:54:35 +00001268Constant *ConstantExpr::getTruncOrBitCast(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001269 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001270 return getBitCast(C, Ty);
1271 return getTrunc(C, Ty);
Reid Spencer5c140882006-12-04 20:17:56 +00001272}
1273
Chris Lattner229907c2011-07-18 04:54:35 +00001274Constant *ConstantExpr::getPointerCast(Constant *S, Type *Ty) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001275 assert(S->getType()->isPointerTy() && "Invalid cast");
1276 assert((Ty->isIntegerTy() || Ty->isPointerTy()) && "Invalid cast");
Reid Spencerbc245a02006-12-05 03:25:26 +00001277
Duncan Sands9dff9be2010-02-15 16:12:20 +00001278 if (Ty->isIntegerTy())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001279 return getPtrToInt(S, Ty);
1280 return getBitCast(S, Ty);
Reid Spencerbc245a02006-12-05 03:25:26 +00001281}
1282
Chris Lattner229907c2011-07-18 04:54:35 +00001283Constant *ConstantExpr::getIntegerCast(Constant *C, Type *Ty,
Reid Spencer56521c42006-12-12 00:51:07 +00001284 bool isSigned) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001285 assert(C->getType()->isIntOrIntVectorTy() &&
1286 Ty->isIntOrIntVectorTy() && "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001287 unsigned SrcBits = C->getType()->getScalarSizeInBits();
1288 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer56521c42006-12-12 00:51:07 +00001289 Instruction::CastOps opcode =
1290 (SrcBits == DstBits ? Instruction::BitCast :
1291 (SrcBits > DstBits ? Instruction::Trunc :
1292 (isSigned ? Instruction::SExt : Instruction::ZExt)));
1293 return getCast(opcode, C, Ty);
1294}
1295
Chris Lattner229907c2011-07-18 04:54:35 +00001296Constant *ConstantExpr::getFPCast(Constant *C, Type *Ty) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001297 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer56521c42006-12-12 00:51:07 +00001298 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001299 unsigned SrcBits = C->getType()->getScalarSizeInBits();
1300 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencerca104e82006-12-12 05:38:50 +00001301 if (SrcBits == DstBits)
1302 return C; // Avoid a useless cast
Reid Spencer56521c42006-12-12 00:51:07 +00001303 Instruction::CastOps opcode =
Jay Foad9f32cfd2011-01-27 14:44:55 +00001304 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt);
Reid Spencer56521c42006-12-12 00:51:07 +00001305 return getCast(opcode, C, Ty);
1306}
1307
Chris Lattner229907c2011-07-18 04:54:35 +00001308Constant *ConstantExpr::getTrunc(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001309#ifndef NDEBUG
1310 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1311 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1312#endif
1313 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001314 assert(C->getType()->isIntOrIntVectorTy() && "Trunc operand must be integer");
1315 assert(Ty->isIntOrIntVectorTy() && "Trunc produces only integral");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001316 assert(C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001317 "SrcTy must be larger than DestTy for Trunc!");
1318
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001319 return getFoldedCast(Instruction::Trunc, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001320}
1321
Chris Lattner229907c2011-07-18 04:54:35 +00001322Constant *ConstantExpr::getSExt(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001323#ifndef NDEBUG
1324 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1325 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1326#endif
1327 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001328 assert(C->getType()->isIntOrIntVectorTy() && "SExt operand must be integral");
1329 assert(Ty->isIntOrIntVectorTy() && "SExt produces only integer");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001330 assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001331 "SrcTy must be smaller than DestTy for SExt!");
1332
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001333 return getFoldedCast(Instruction::SExt, C, Ty);
Chris Lattnerdd284742004-04-04 23:20:30 +00001334}
1335
Chris Lattner229907c2011-07-18 04:54:35 +00001336Constant *ConstantExpr::getZExt(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001337#ifndef NDEBUG
1338 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1339 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1340#endif
1341 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001342 assert(C->getType()->isIntOrIntVectorTy() && "ZEXt operand must be integral");
1343 assert(Ty->isIntOrIntVectorTy() && "ZExt produces only integer");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001344 assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001345 "SrcTy must be smaller than DestTy for ZExt!");
1346
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001347 return getFoldedCast(Instruction::ZExt, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001348}
1349
Chris Lattner229907c2011-07-18 04:54:35 +00001350Constant *ConstantExpr::getFPTrunc(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001351#ifndef NDEBUG
1352 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1353 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1354#endif
1355 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001356 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001357 C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001358 "This is an illegal floating point truncation!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001359 return getFoldedCast(Instruction::FPTrunc, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001360}
1361
Chris Lattner229907c2011-07-18 04:54:35 +00001362Constant *ConstantExpr::getFPExtend(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001363#ifndef NDEBUG
1364 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1365 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1366#endif
1367 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001368 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001369 C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001370 "This is an illegal floating point extension!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001371 return getFoldedCast(Instruction::FPExt, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001372}
1373
Chris Lattner229907c2011-07-18 04:54:35 +00001374Constant *ConstantExpr::getUIToFP(Constant *C, Type *Ty) {
Devang Pateld26344d2008-11-03 23:20:04 +00001375#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001376 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1377 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001378#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001379 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001380 assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00001381 "This is an illegal uint to floating point cast!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001382 return getFoldedCast(Instruction::UIToFP, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001383}
1384
Chris Lattner229907c2011-07-18 04:54:35 +00001385Constant *ConstantExpr::getSIToFP(Constant *C, Type *Ty) {
Devang Pateld26344d2008-11-03 23:20:04 +00001386#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001387 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1388 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001389#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001390 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001391 assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001392 "This is an illegal sint to floating point cast!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001393 return getFoldedCast(Instruction::SIToFP, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001394}
1395
Chris Lattner229907c2011-07-18 04:54:35 +00001396Constant *ConstantExpr::getFPToUI(Constant *C, Type *Ty) {
Devang Pateld26344d2008-11-03 23:20:04 +00001397#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001398 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1399 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001400#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001401 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001402 assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00001403 "This is an illegal floating point to uint cast!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001404 return getFoldedCast(Instruction::FPToUI, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001405}
1406
Chris Lattner229907c2011-07-18 04:54:35 +00001407Constant *ConstantExpr::getFPToSI(Constant *C, Type *Ty) {
Devang Pateld26344d2008-11-03 23:20:04 +00001408#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001409 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1410 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001411#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001412 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001413 assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00001414 "This is an illegal floating point to sint cast!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001415 return getFoldedCast(Instruction::FPToSI, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001416}
1417
Chris Lattner229907c2011-07-18 04:54:35 +00001418Constant *ConstantExpr::getPtrToInt(Constant *C, Type *DstTy) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001419 assert(C->getType()->isPointerTy() && "PtrToInt source must be pointer");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001420 assert(DstTy->isIntegerTy() && "PtrToInt destination must be integral");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001421 return getFoldedCast(Instruction::PtrToInt, C, DstTy);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001422}
1423
Chris Lattner229907c2011-07-18 04:54:35 +00001424Constant *ConstantExpr::getIntToPtr(Constant *C, Type *DstTy) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001425 assert(C->getType()->isIntegerTy() && "IntToPtr source must be integral");
Duncan Sands19d0b472010-02-16 11:11:14 +00001426 assert(DstTy->isPointerTy() && "IntToPtr destination must be a pointer");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001427 return getFoldedCast(Instruction::IntToPtr, C, DstTy);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001428}
1429
Chris Lattner229907c2011-07-18 04:54:35 +00001430Constant *ConstantExpr::getBitCast(Constant *C, Type *DstTy) {
Chris Lattner37bc78a2010-01-26 21:51:43 +00001431 assert(CastInst::castIsValid(Instruction::BitCast, C, DstTy) &&
1432 "Invalid constantexpr bitcast!");
Chris Lattnercbeda872009-03-21 06:55:54 +00001433
1434 // It is common to ask for a bitcast of a value to its own type, handle this
1435 // speedily.
1436 if (C->getType() == DstTy) return C;
1437
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001438 return getFoldedCast(Instruction::BitCast, C, DstTy);
Chris Lattnerdd284742004-04-04 23:20:30 +00001439}
1440
Chris Lattner887ecac2011-07-09 18:23:52 +00001441Constant *ConstantExpr::get(unsigned Opcode, Constant *C1, Constant *C2,
1442 unsigned Flags) {
1443 // Check the operands for consistency first.
Reid Spencer7eb55b32006-11-02 01:53:59 +00001444 assert(Opcode >= Instruction::BinaryOpsBegin &&
1445 Opcode < Instruction::BinaryOpsEnd &&
Chris Lattner38a9bcd2003-05-21 17:49:25 +00001446 "Invalid opcode in binary constant expression");
1447 assert(C1->getType() == C2->getType() &&
1448 "Operand types in binary constant expression should match");
Owen Anderson61794042009-06-17 20:10:08 +00001449
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001450#ifndef NDEBUG
1451 switch (Opcode) {
Dan Gohmana5b96452009-06-04 22:49:04 +00001452 case Instruction::Add:
Reid Spencer7eb55b32006-11-02 01:53:59 +00001453 case Instruction::Sub:
Dan Gohmana5b96452009-06-04 22:49:04 +00001454 case Instruction::Mul:
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001455 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001456 assert(C1->getType()->isIntOrIntVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001457 "Tried to create an integer operation on a non-integer type!");
1458 break;
1459 case Instruction::FAdd:
1460 case Instruction::FSub:
1461 case Instruction::FMul:
1462 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001463 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001464 "Tried to create a floating-point operation on a "
1465 "non-floating-point type!");
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001466 break;
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001467 case Instruction::UDiv:
1468 case Instruction::SDiv:
1469 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001470 assert(C1->getType()->isIntOrIntVectorTy() &&
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001471 "Tried to create an arithmetic operation on a non-arithmetic type!");
1472 break;
1473 case Instruction::FDiv:
1474 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001475 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001476 "Tried to create an arithmetic operation on a non-arithmetic type!");
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001477 break;
Reid Spencer7eb55b32006-11-02 01:53:59 +00001478 case Instruction::URem:
1479 case Instruction::SRem:
1480 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001481 assert(C1->getType()->isIntOrIntVectorTy() &&
Reid Spencer7eb55b32006-11-02 01:53:59 +00001482 "Tried to create an arithmetic operation on a non-arithmetic type!");
1483 break;
1484 case Instruction::FRem:
1485 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001486 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001487 "Tried to create an arithmetic operation on a non-arithmetic type!");
Reid Spencer7eb55b32006-11-02 01:53:59 +00001488 break;
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001489 case Instruction::And:
1490 case Instruction::Or:
1491 case Instruction::Xor:
1492 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001493 assert(C1->getType()->isIntOrIntVectorTy() &&
Misha Brukman3852f652005-01-27 06:46:38 +00001494 "Tried to create a logical operation on a non-integral type!");
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001495 break;
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001496 case Instruction::Shl:
Reid Spencerfdff9382006-11-08 06:47:33 +00001497 case Instruction::LShr:
1498 case Instruction::AShr:
Reid Spencer2341c222007-02-02 02:16:23 +00001499 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001500 assert(C1->getType()->isIntOrIntVectorTy() &&
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001501 "Tried to create a shift operation on a non-integer type!");
1502 break;
1503 default:
1504 break;
1505 }
1506#endif
1507
Chris Lattner887ecac2011-07-09 18:23:52 +00001508 if (Constant *FC = ConstantFoldBinaryInstruction(Opcode, C1, C2))
1509 return FC; // Fold a few common cases.
1510
1511 std::vector<Constant*> argVec(1, C1);
1512 argVec.push_back(C2);
1513 ExprMapKeyType Key(Opcode, argVec, 0, Flags);
1514
1515 LLVMContextImpl *pImpl = C1->getContext().pImpl;
1516 return pImpl->ExprConstants.getOrCreate(C1->getType(), Key);
Reid Spencera009d0d2006-12-04 21:35:24 +00001517}
1518
Chris Lattner229907c2011-07-18 04:54:35 +00001519Constant *ConstantExpr::getSizeOf(Type* Ty) {
Owen Anderson487375e2009-07-29 18:55:55 +00001520 // sizeof is implemented as: (i64) gep (Ty*)null, 1
1521 // Note that a non-inbounds gep is used, as null isn't within any object.
Owen Anderson55f1c092009-08-13 21:58:54 +00001522 Constant *GEPIdx = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
Owen Anderson487375e2009-07-29 18:55:55 +00001523 Constant *GEP = getGetElementPtr(
Jay Foaded8db7d2011-07-21 14:31:17 +00001524 Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx);
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001525 return getPtrToInt(GEP,
1526 Type::getInt64Ty(Ty->getContext()));
Owen Anderson487375e2009-07-29 18:55:55 +00001527}
1528
Chris Lattner229907c2011-07-18 04:54:35 +00001529Constant *ConstantExpr::getAlignOf(Type* Ty) {
Dan Gohmancf913832010-01-28 02:15:55 +00001530 // alignof is implemented as: (i64) gep ({i1,Ty}*)null, 0, 1
Dan Gohman50c09d02009-08-11 17:57:01 +00001531 // Note that a non-inbounds gep is used, as null isn't within any object.
Chris Lattner229907c2011-07-18 04:54:35 +00001532 Type *AligningTy =
Chris Lattnerf3f545e2011-06-18 22:48:56 +00001533 StructType::get(Type::getInt1Ty(Ty->getContext()), Ty, NULL);
Owen Anderson5a1acd92009-07-31 20:28:14 +00001534 Constant *NullPtr = Constant::getNullValue(AligningTy->getPointerTo());
Dan Gohmana9be7392010-01-28 02:43:22 +00001535 Constant *Zero = ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0);
Owen Anderson55f1c092009-08-13 21:58:54 +00001536 Constant *One = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
Owen Anderson487375e2009-07-29 18:55:55 +00001537 Constant *Indices[2] = { Zero, One };
Jay Foaded8db7d2011-07-21 14:31:17 +00001538 Constant *GEP = getGetElementPtr(NullPtr, Indices);
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001539 return getPtrToInt(GEP,
1540 Type::getInt64Ty(Ty->getContext()));
Owen Anderson487375e2009-07-29 18:55:55 +00001541}
1542
Chris Lattner229907c2011-07-18 04:54:35 +00001543Constant *ConstantExpr::getOffsetOf(StructType* STy, unsigned FieldNo) {
Dan Gohmanede94e62010-02-01 16:37:38 +00001544 return getOffsetOf(STy, ConstantInt::get(Type::getInt32Ty(STy->getContext()),
1545 FieldNo));
1546}
1547
Chris Lattner229907c2011-07-18 04:54:35 +00001548Constant *ConstantExpr::getOffsetOf(Type* Ty, Constant *FieldNo) {
Dan Gohmanff3af7252009-08-16 21:26:11 +00001549 // offsetof is implemented as: (i64) gep (Ty*)null, 0, FieldNo
1550 // Note that a non-inbounds gep is used, as null isn't within any object.
1551 Constant *GEPIdx[] = {
Dan Gohmanede94e62010-02-01 16:37:38 +00001552 ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0),
1553 FieldNo
Dan Gohmanff3af7252009-08-16 21:26:11 +00001554 };
1555 Constant *GEP = getGetElementPtr(
Jay Foaded8db7d2011-07-21 14:31:17 +00001556 Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx);
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001557 return getPtrToInt(GEP,
1558 Type::getInt64Ty(Ty->getContext()));
Dan Gohmanff3af7252009-08-16 21:26:11 +00001559}
Owen Anderson487375e2009-07-29 18:55:55 +00001560
Chris Lattner887ecac2011-07-09 18:23:52 +00001561Constant *ConstantExpr::getCompare(unsigned short Predicate,
1562 Constant *C1, Constant *C2) {
Reid Spencera009d0d2006-12-04 21:35:24 +00001563 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Chris Lattner887ecac2011-07-09 18:23:52 +00001564
1565 switch (Predicate) {
1566 default: llvm_unreachable("Invalid CmpInst predicate");
1567 case CmpInst::FCMP_FALSE: case CmpInst::FCMP_OEQ: case CmpInst::FCMP_OGT:
1568 case CmpInst::FCMP_OGE: case CmpInst::FCMP_OLT: case CmpInst::FCMP_OLE:
1569 case CmpInst::FCMP_ONE: case CmpInst::FCMP_ORD: case CmpInst::FCMP_UNO:
1570 case CmpInst::FCMP_UEQ: case CmpInst::FCMP_UGT: case CmpInst::FCMP_UGE:
1571 case CmpInst::FCMP_ULT: case CmpInst::FCMP_ULE: case CmpInst::FCMP_UNE:
1572 case CmpInst::FCMP_TRUE:
1573 return getFCmp(Predicate, C1, C2);
1574
1575 case CmpInst::ICMP_EQ: case CmpInst::ICMP_NE: case CmpInst::ICMP_UGT:
1576 case CmpInst::ICMP_UGE: case CmpInst::ICMP_ULT: case CmpInst::ICMP_ULE:
1577 case CmpInst::ICMP_SGT: case CmpInst::ICMP_SGE: case CmpInst::ICMP_SLT:
1578 case CmpInst::ICMP_SLE:
1579 return getICmp(Predicate, C1, C2);
1580 }
Chris Lattner29ca2c62004-08-04 18:50:09 +00001581}
1582
Chris Lattner887ecac2011-07-09 18:23:52 +00001583Constant *ConstantExpr::getSelect(Constant *C, Constant *V1, Constant *V2) {
Chris Lattner41632132008-12-29 00:16:12 +00001584 assert(!SelectInst::areInvalidOperands(C, V1, V2)&&"Invalid select operands");
Chris Lattner6e415c02004-03-12 05:54:04 +00001585
Chris Lattner887ecac2011-07-09 18:23:52 +00001586 if (Constant *SC = ConstantFoldSelectInstruction(C, V1, V2))
1587 return SC; // Fold common cases
Chris Lattner6e415c02004-03-12 05:54:04 +00001588
1589 std::vector<Constant*> argVec(3, C);
1590 argVec[1] = V1;
1591 argVec[2] = V2;
Reid Spenceree3c9912006-12-04 05:19:50 +00001592 ExprMapKeyType Key(Instruction::Select, argVec);
Owen Anderson61794042009-06-17 20:10:08 +00001593
Chris Lattner887ecac2011-07-09 18:23:52 +00001594 LLVMContextImpl *pImpl = C->getContext().pImpl;
1595 return pImpl->ExprConstants.getOrCreate(V1->getType(), Key);
Chris Lattner6e415c02004-03-12 05:54:04 +00001596}
1597
Jay Foaded8db7d2011-07-21 14:31:17 +00001598Constant *ConstantExpr::getGetElementPtr(Constant *C, ArrayRef<Value *> Idxs,
1599 bool InBounds) {
1600 if (Constant *FC = ConstantFoldGetElementPtr(C, InBounds, Idxs))
Chris Lattner94c8d292011-02-11 05:34:33 +00001601 return FC; // Fold a few common cases.
Dan Gohman1b849082009-09-07 23:54:19 +00001602
Chris Lattner887ecac2011-07-09 18:23:52 +00001603 // Get the result type of the getelementptr!
Jay Foadd1b78492011-07-25 09:48:08 +00001604 Type *Ty = GetElementPtrInst::getIndexedType(C->getType(), Idxs);
Chris Lattner887ecac2011-07-09 18:23:52 +00001605 assert(Ty && "GEP indices invalid!");
1606 unsigned AS = cast<PointerType>(C->getType())->getAddressSpace();
1607 Type *ReqTy = Ty->getPointerTo(AS);
1608
Duncan Sands19d0b472010-02-16 11:11:14 +00001609 assert(C->getType()->isPointerTy() &&
Dan Gohman1b849082009-09-07 23:54:19 +00001610 "Non-pointer type for constant GetElementPtr expression");
1611 // Look up the constant in the table first to ensure uniqueness
1612 std::vector<Constant*> ArgVec;
Jay Foaded8db7d2011-07-21 14:31:17 +00001613 ArgVec.reserve(1 + Idxs.size());
Dan Gohman1b849082009-09-07 23:54:19 +00001614 ArgVec.push_back(C);
Jay Foaded8db7d2011-07-21 14:31:17 +00001615 for (unsigned i = 0, e = Idxs.size(); i != e; ++i)
Dan Gohman1b849082009-09-07 23:54:19 +00001616 ArgVec.push_back(cast<Constant>(Idxs[i]));
1617 const ExprMapKeyType Key(Instruction::GetElementPtr, ArgVec, 0,
Chris Lattner94c8d292011-02-11 05:34:33 +00001618 InBounds ? GEPOperator::IsInBounds : 0);
Chris Lattner887ecac2011-07-09 18:23:52 +00001619
1620 LLVMContextImpl *pImpl = C->getContext().pImpl;
Dan Gohman1b849082009-09-07 23:54:19 +00001621 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
1622}
1623
Reid Spenceree3c9912006-12-04 05:19:50 +00001624Constant *
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001625ConstantExpr::getICmp(unsigned short pred, Constant *LHS, Constant *RHS) {
Reid Spenceree3c9912006-12-04 05:19:50 +00001626 assert(LHS->getType() == RHS->getType());
1627 assert(pred >= ICmpInst::FIRST_ICMP_PREDICATE &&
1628 pred <= ICmpInst::LAST_ICMP_PREDICATE && "Invalid ICmp Predicate");
1629
Chris Lattnerf5edeeb2010-02-01 20:48:08 +00001630 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
Reid Spenceree3c9912006-12-04 05:19:50 +00001631 return FC; // Fold a few common cases...
1632
1633 // Look up the constant in the table first to ensure uniqueness
1634 std::vector<Constant*> ArgVec;
1635 ArgVec.push_back(LHS);
1636 ArgVec.push_back(RHS);
Reid Spencerb1537492006-12-24 18:42:29 +00001637 // Get the key type with both the opcode and predicate
Reid Spenceree3c9912006-12-04 05:19:50 +00001638 const ExprMapKeyType Key(Instruction::ICmp, ArgVec, pred);
Owen Anderson61794042009-06-17 20:10:08 +00001639
Chris Lattner229907c2011-07-18 04:54:35 +00001640 Type *ResultTy = Type::getInt1Ty(LHS->getContext());
1641 if (VectorType *VT = dyn_cast<VectorType>(LHS->getType()))
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001642 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
1643
Owen Anderson1584a292009-08-04 20:25:11 +00001644 LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl;
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001645 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
Reid Spenceree3c9912006-12-04 05:19:50 +00001646}
1647
1648Constant *
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001649ConstantExpr::getFCmp(unsigned short pred, Constant *LHS, Constant *RHS) {
Reid Spenceree3c9912006-12-04 05:19:50 +00001650 assert(LHS->getType() == RHS->getType());
1651 assert(pred <= FCmpInst::LAST_FCMP_PREDICATE && "Invalid FCmp Predicate");
1652
Chris Lattnerf5edeeb2010-02-01 20:48:08 +00001653 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
Reid Spenceree3c9912006-12-04 05:19:50 +00001654 return FC; // Fold a few common cases...
1655
1656 // Look up the constant in the table first to ensure uniqueness
1657 std::vector<Constant*> ArgVec;
1658 ArgVec.push_back(LHS);
1659 ArgVec.push_back(RHS);
Reid Spencerb1537492006-12-24 18:42:29 +00001660 // Get the key type with both the opcode and predicate
Reid Spenceree3c9912006-12-04 05:19:50 +00001661 const ExprMapKeyType Key(Instruction::FCmp, ArgVec, pred);
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001662
Chris Lattner229907c2011-07-18 04:54:35 +00001663 Type *ResultTy = Type::getInt1Ty(LHS->getContext());
1664 if (VectorType *VT = dyn_cast<VectorType>(LHS->getType()))
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001665 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
1666
Owen Anderson1584a292009-08-04 20:25:11 +00001667 LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl;
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001668 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
Reid Spenceree3c9912006-12-04 05:19:50 +00001669}
1670
Robert Bocchino23004482006-01-10 19:05:34 +00001671Constant *ConstantExpr::getExtractElement(Constant *Val, Constant *Idx) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001672 assert(Val->getType()->isVectorTy() &&
Reid Spencer09575ba2007-02-15 03:39:18 +00001673 "Tried to create extractelement operation on non-vector type!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001674 assert(Idx->getType()->isIntegerTy(32) &&
Reid Spencer2546b762007-01-26 07:37:34 +00001675 "Extractelement index must be i32 type!");
Chris Lattner887ecac2011-07-09 18:23:52 +00001676
1677 if (Constant *FC = ConstantFoldExtractElementInstruction(Val, Idx))
Chris Lattner09660c92009-12-30 20:25:09 +00001678 return FC; // Fold a few common cases.
Chris Lattner887ecac2011-07-09 18:23:52 +00001679
Robert Bocchinoca27f032006-01-17 20:07:22 +00001680 // Look up the constant in the table first to ensure uniqueness
1681 std::vector<Constant*> ArgVec(1, Val);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001682 ArgVec.push_back(Idx);
Chris Lattner887ecac2011-07-09 18:23:52 +00001683 const ExprMapKeyType Key(Instruction::ExtractElement,ArgVec);
Owen Anderson61794042009-06-17 20:10:08 +00001684
Chris Lattner887ecac2011-07-09 18:23:52 +00001685 LLVMContextImpl *pImpl = Val->getContext().pImpl;
1686 Type *ReqTy = cast<VectorType>(Val->getType())->getElementType();
Owen Anderson1584a292009-08-04 20:25:11 +00001687 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001688}
1689
1690Constant *ConstantExpr::getInsertElement(Constant *Val, Constant *Elt,
1691 Constant *Idx) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001692 assert(Val->getType()->isVectorTy() &&
Reid Spencer09575ba2007-02-15 03:39:18 +00001693 "Tried to create insertelement operation on non-vector type!");
Reid Spencerd84d35b2007-02-15 02:26:10 +00001694 assert(Elt->getType() == cast<VectorType>(Val->getType())->getElementType()
Robert Bocchinoca27f032006-01-17 20:07:22 +00001695 && "Insertelement types must match!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001696 assert(Idx->getType()->isIntegerTy(32) &&
Reid Spencer2546b762007-01-26 07:37:34 +00001697 "Insertelement index must be i32 type!");
Robert Bocchinoca27f032006-01-17 20:07:22 +00001698
Chris Lattner887ecac2011-07-09 18:23:52 +00001699 if (Constant *FC = ConstantFoldInsertElementInstruction(Val, Elt, Idx))
1700 return FC; // Fold a few common cases.
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001701 // Look up the constant in the table first to ensure uniqueness
Chris Lattner887ecac2011-07-09 18:23:52 +00001702 std::vector<Constant*> ArgVec(1, Val);
1703 ArgVec.push_back(Elt);
1704 ArgVec.push_back(Idx);
1705 const ExprMapKeyType Key(Instruction::InsertElement,ArgVec);
Owen Anderson61794042009-06-17 20:10:08 +00001706
Chris Lattner887ecac2011-07-09 18:23:52 +00001707 LLVMContextImpl *pImpl = Val->getContext().pImpl;
1708 return pImpl->ExprConstants.getOrCreate(Val->getType(), Key);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001709}
1710
1711Constant *ConstantExpr::getShuffleVector(Constant *V1, Constant *V2,
1712 Constant *Mask) {
1713 assert(ShuffleVectorInst::isValidOperands(V1, V2, Mask) &&
1714 "Invalid shuffle vector constant expr operands!");
Nate Begeman94aa38d2009-02-12 21:28:33 +00001715
Chris Lattner887ecac2011-07-09 18:23:52 +00001716 if (Constant *FC = ConstantFoldShuffleVectorInstruction(V1, V2, Mask))
1717 return FC; // Fold a few common cases.
1718
Nate Begeman94aa38d2009-02-12 21:28:33 +00001719 unsigned NElts = cast<VectorType>(Mask->getType())->getNumElements();
Chris Lattner229907c2011-07-18 04:54:35 +00001720 Type *EltTy = cast<VectorType>(V1->getType())->getElementType();
1721 Type *ShufTy = VectorType::get(EltTy, NElts);
Chris Lattner887ecac2011-07-09 18:23:52 +00001722
1723 // Look up the constant in the table first to ensure uniqueness
1724 std::vector<Constant*> ArgVec(1, V1);
1725 ArgVec.push_back(V2);
1726 ArgVec.push_back(Mask);
1727 const ExprMapKeyType Key(Instruction::ShuffleVector,ArgVec);
1728
1729 LLVMContextImpl *pImpl = ShufTy->getContext().pImpl;
1730 return pImpl->ExprConstants.getOrCreate(ShufTy, Key);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001731}
1732
Chris Lattner887ecac2011-07-09 18:23:52 +00001733Constant *ConstantExpr::getInsertValue(Constant *Agg, Constant *Val,
Jay Foad57aa6362011-07-13 10:26:04 +00001734 ArrayRef<unsigned> Idxs) {
1735 assert(ExtractValueInst::getIndexedType(Agg->getType(),
1736 Idxs) == Val->getType() &&
Dan Gohman12fce772008-05-15 19:50:34 +00001737 "insertvalue indices invalid!");
Dan Gohman0752bff2008-05-23 00:36:11 +00001738 assert(Agg->getType()->isFirstClassType() &&
Chris Lattner6ebfbf52011-07-12 05:26:21 +00001739 "Non-first-class type for constant insertvalue expression");
Jay Foad57aa6362011-07-13 10:26:04 +00001740 Constant *FC = ConstantFoldInsertValueInstruction(Agg, Val, Idxs);
Chris Lattner6ebfbf52011-07-12 05:26:21 +00001741 assert(FC && "insertvalue constant expr couldn't be folded!");
Dan Gohmand5d24f62008-07-21 23:30:30 +00001742 return FC;
Dan Gohman12fce772008-05-15 19:50:34 +00001743}
1744
Chris Lattner887ecac2011-07-09 18:23:52 +00001745Constant *ConstantExpr::getExtractValue(Constant *Agg,
Jay Foad57aa6362011-07-13 10:26:04 +00001746 ArrayRef<unsigned> Idxs) {
Dan Gohman0752bff2008-05-23 00:36:11 +00001747 assert(Agg->getType()->isFirstClassType() &&
Chris Lattner887ecac2011-07-09 18:23:52 +00001748 "Tried to create extractelement operation on non-first-class type!");
Dan Gohman12fce772008-05-15 19:50:34 +00001749
Chris Lattner229907c2011-07-18 04:54:35 +00001750 Type *ReqTy = ExtractValueInst::getIndexedType(Agg->getType(), Idxs);
Chandler Carruth9db56b82011-07-10 09:45:35 +00001751 (void)ReqTy;
Chris Lattner887ecac2011-07-09 18:23:52 +00001752 assert(ReqTy && "extractvalue indices invalid!");
1753
Dan Gohman0752bff2008-05-23 00:36:11 +00001754 assert(Agg->getType()->isFirstClassType() &&
1755 "Non-first-class type for constant extractvalue expression");
Jay Foad57aa6362011-07-13 10:26:04 +00001756 Constant *FC = ConstantFoldExtractValueInstruction(Agg, Idxs);
Dan Gohmand5d24f62008-07-21 23:30:30 +00001757 assert(FC && "ExtractValue constant expr couldn't be folded!");
1758 return FC;
Dan Gohman12fce772008-05-15 19:50:34 +00001759}
1760
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001761Constant *ConstantExpr::getNeg(Constant *C, bool HasNUW, bool HasNSW) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001762 assert(C->getType()->isIntOrIntVectorTy() &&
Owen Anderson487375e2009-07-29 18:55:55 +00001763 "Cannot NEG a nonintegral value!");
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001764 return getSub(ConstantFP::getZeroValueForNegation(C->getType()),
1765 C, HasNUW, HasNSW);
Owen Anderson487375e2009-07-29 18:55:55 +00001766}
1767
Chris Lattnera676c0f2011-02-07 16:40:21 +00001768Constant *ConstantExpr::getFNeg(Constant *C) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001769 assert(C->getType()->isFPOrFPVectorTy() &&
Owen Anderson487375e2009-07-29 18:55:55 +00001770 "Cannot FNEG a non-floating-point value!");
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001771 return getFSub(ConstantFP::getZeroValueForNegation(C->getType()), C);
Owen Anderson487375e2009-07-29 18:55:55 +00001772}
1773
Chris Lattnera676c0f2011-02-07 16:40:21 +00001774Constant *ConstantExpr::getNot(Constant *C) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001775 assert(C->getType()->isIntOrIntVectorTy() &&
Owen Anderson487375e2009-07-29 18:55:55 +00001776 "Cannot NOT a nonintegral value!");
Owen Anderson5a1acd92009-07-31 20:28:14 +00001777 return get(Instruction::Xor, C, Constant::getAllOnesValue(C->getType()));
Owen Anderson487375e2009-07-29 18:55:55 +00001778}
1779
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001780Constant *ConstantExpr::getAdd(Constant *C1, Constant *C2,
1781 bool HasNUW, bool HasNSW) {
1782 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
1783 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
1784 return get(Instruction::Add, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00001785}
1786
Chris Lattnera676c0f2011-02-07 16:40:21 +00001787Constant *ConstantExpr::getFAdd(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001788 return get(Instruction::FAdd, C1, C2);
1789}
1790
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001791Constant *ConstantExpr::getSub(Constant *C1, Constant *C2,
1792 bool HasNUW, bool HasNSW) {
1793 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
1794 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
1795 return get(Instruction::Sub, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00001796}
1797
Chris Lattnera676c0f2011-02-07 16:40:21 +00001798Constant *ConstantExpr::getFSub(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001799 return get(Instruction::FSub, C1, C2);
1800}
1801
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001802Constant *ConstantExpr::getMul(Constant *C1, Constant *C2,
1803 bool HasNUW, bool HasNSW) {
1804 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
1805 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
1806 return get(Instruction::Mul, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00001807}
1808
Chris Lattnera676c0f2011-02-07 16:40:21 +00001809Constant *ConstantExpr::getFMul(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001810 return get(Instruction::FMul, C1, C2);
1811}
1812
Chris Lattner0d75eac2011-02-09 16:43:07 +00001813Constant *ConstantExpr::getUDiv(Constant *C1, Constant *C2, bool isExact) {
1814 return get(Instruction::UDiv, C1, C2,
1815 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00001816}
1817
Chris Lattner0d75eac2011-02-09 16:43:07 +00001818Constant *ConstantExpr::getSDiv(Constant *C1, Constant *C2, bool isExact) {
1819 return get(Instruction::SDiv, C1, C2,
1820 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00001821}
1822
Chris Lattnera676c0f2011-02-07 16:40:21 +00001823Constant *ConstantExpr::getFDiv(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001824 return get(Instruction::FDiv, C1, C2);
1825}
1826
Chris Lattnera676c0f2011-02-07 16:40:21 +00001827Constant *ConstantExpr::getURem(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001828 return get(Instruction::URem, C1, C2);
1829}
1830
Chris Lattnera676c0f2011-02-07 16:40:21 +00001831Constant *ConstantExpr::getSRem(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001832 return get(Instruction::SRem, C1, C2);
1833}
1834
Chris Lattnera676c0f2011-02-07 16:40:21 +00001835Constant *ConstantExpr::getFRem(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001836 return get(Instruction::FRem, C1, C2);
1837}
1838
Chris Lattnera676c0f2011-02-07 16:40:21 +00001839Constant *ConstantExpr::getAnd(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001840 return get(Instruction::And, C1, C2);
1841}
1842
Chris Lattnera676c0f2011-02-07 16:40:21 +00001843Constant *ConstantExpr::getOr(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001844 return get(Instruction::Or, C1, C2);
1845}
1846
Chris Lattnera676c0f2011-02-07 16:40:21 +00001847Constant *ConstantExpr::getXor(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001848 return get(Instruction::Xor, C1, C2);
1849}
1850
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001851Constant *ConstantExpr::getShl(Constant *C1, Constant *C2,
1852 bool HasNUW, bool HasNSW) {
1853 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
1854 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
1855 return get(Instruction::Shl, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00001856}
1857
Chris Lattner0d75eac2011-02-09 16:43:07 +00001858Constant *ConstantExpr::getLShr(Constant *C1, Constant *C2, bool isExact) {
1859 return get(Instruction::LShr, C1, C2,
1860 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00001861}
1862
Chris Lattner0d75eac2011-02-09 16:43:07 +00001863Constant *ConstantExpr::getAShr(Constant *C1, Constant *C2, bool isExact) {
1864 return get(Instruction::AShr, C1, C2,
1865 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00001866}
1867
Vikram S. Adve4c485332002-07-15 18:19:33 +00001868// destroyConstant - Remove the constant from the constant table...
1869//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001870void ConstantExpr::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001871 getType()->getContext().pImpl->ExprConstants.remove(this);
Vikram S. Adve4c485332002-07-15 18:19:33 +00001872 destroyConstantImpl();
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001873}
1874
Chris Lattner3cd8c562002-07-30 18:54:25 +00001875const char *ConstantExpr::getOpcodeName() const {
1876 return Instruction::getOpcodeName(getOpcode());
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001877}
Reid Spencer1ebe1ab2004-07-17 23:48:33 +00001878
Chris Lattnera3b94ba2010-03-30 20:48:48 +00001879
1880
1881GetElementPtrConstantExpr::
1882GetElementPtrConstantExpr(Constant *C, const std::vector<Constant*> &IdxList,
Chris Lattner229907c2011-07-18 04:54:35 +00001883 Type *DestTy)
Chris Lattnera3b94ba2010-03-30 20:48:48 +00001884 : ConstantExpr(DestTy, Instruction::GetElementPtr,
1885 OperandTraits<GetElementPtrConstantExpr>::op_end(this)
1886 - (IdxList.size()+1), IdxList.size()+1) {
1887 OperandList[0] = C;
1888 for (unsigned i = 0, E = IdxList.size(); i != E; ++i)
1889 OperandList[i+1] = IdxList[i];
1890}
1891
1892
Chris Lattnerc4062ba2005-10-03 21:58:36 +00001893//===----------------------------------------------------------------------===//
1894// replaceUsesOfWithOnConstant implementations
1895
Chris Lattner913849b2007-08-21 00:55:23 +00001896/// replaceUsesOfWithOnConstant - Update this constant array to change uses of
1897/// 'From' to be uses of 'To'. This must update the uniquing data structures
1898/// etc.
1899///
1900/// Note that we intentionally replace all uses of From with To here. Consider
1901/// a large array that uses 'From' 1000 times. By handling this case all here,
1902/// ConstantArray::replaceUsesOfWithOnConstant is only invoked once, and that
1903/// single invocation handles all 1000 uses. Handling them one at a time would
1904/// work, but would be really slow because it would have to unique each updated
1905/// array instance.
Chris Lattner31b132c2009-10-28 00:01:44 +00001906///
Chris Lattnerc4062ba2005-10-03 21:58:36 +00001907void ConstantArray::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattner7a1450d2005-10-04 18:13:04 +00001908 Use *U) {
Owen Andersonc2c79322009-07-28 18:32:17 +00001909 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
1910 Constant *ToC = cast<Constant>(To);
1911
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001912 LLVMContextImpl *pImpl = getType()->getContext().pImpl;
Owen Andersonc2c79322009-07-28 18:32:17 +00001913
Dan Gohmane4532f32009-09-15 15:58:07 +00001914 std::pair<LLVMContextImpl::ArrayConstantsTy::MapKey, ConstantArray*> Lookup;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001915 Lookup.first.first = cast<ArrayType>(getType());
Owen Andersonc2c79322009-07-28 18:32:17 +00001916 Lookup.second = this;
1917
1918 std::vector<Constant*> &Values = Lookup.first.second;
1919 Values.reserve(getNumOperands()); // Build replacement array.
1920
1921 // Fill values with the modified operands of the constant array. Also,
1922 // compute whether this turns into an all-zeros array.
1923 bool isAllZeros = false;
1924 unsigned NumUpdated = 0;
1925 if (!ToC->isNullValue()) {
1926 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
1927 Constant *Val = cast<Constant>(O->get());
1928 if (Val == From) {
1929 Val = ToC;
1930 ++NumUpdated;
1931 }
1932 Values.push_back(Val);
1933 }
1934 } else {
1935 isAllZeros = true;
1936 for (Use *O = OperandList, *E = OperandList+getNumOperands();O != E; ++O) {
1937 Constant *Val = cast<Constant>(O->get());
1938 if (Val == From) {
1939 Val = ToC;
1940 ++NumUpdated;
1941 }
1942 Values.push_back(Val);
1943 if (isAllZeros) isAllZeros = Val->isNullValue();
1944 }
1945 }
1946
1947 Constant *Replacement = 0;
1948 if (isAllZeros) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001949 Replacement = ConstantAggregateZero::get(getType());
Owen Andersonc2c79322009-07-28 18:32:17 +00001950 } else {
1951 // Check to see if we have this array type already.
Owen Andersonc2c79322009-07-28 18:32:17 +00001952 bool Exists;
1953 LLVMContextImpl::ArrayConstantsTy::MapTy::iterator I =
1954 pImpl->ArrayConstants.InsertOrGetItem(Lookup, Exists);
1955
1956 if (Exists) {
Devang Patelf7188322009-09-03 01:39:20 +00001957 Replacement = I->second;
Owen Andersonc2c79322009-07-28 18:32:17 +00001958 } else {
1959 // Okay, the new shape doesn't exist in the system yet. Instead of
1960 // creating a new constant array, inserting it, replaceallusesof'ing the
1961 // old with the new, then deleting the old... just update the current one
1962 // in place!
1963 pImpl->ArrayConstants.MoveConstantToNewSlot(this, I);
1964
1965 // Update to the new value. Optimize for the case when we have a single
1966 // operand that we're changing, but handle bulk updates efficiently.
1967 if (NumUpdated == 1) {
1968 unsigned OperandToUpdate = U - OperandList;
1969 assert(getOperand(OperandToUpdate) == From &&
1970 "ReplaceAllUsesWith broken!");
1971 setOperand(OperandToUpdate, ToC);
1972 } else {
1973 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
1974 if (getOperand(i) == From)
1975 setOperand(i, ToC);
1976 }
1977 return;
1978 }
1979 }
Chris Lattnerb64419a2005-10-03 22:51:37 +00001980
1981 // Otherwise, I do need to replace this with an existing value.
Chris Lattnerc4062ba2005-10-03 21:58:36 +00001982 assert(Replacement != this && "I didn't contain From!");
1983
Chris Lattner7a1450d2005-10-04 18:13:04 +00001984 // Everyone using this now uses the replacement.
Chris Lattneraf1783f2011-07-15 06:18:52 +00001985 replaceAllUsesWith(Replacement);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00001986
1987 // Delete the old constant!
1988 destroyConstant();
1989}
1990
1991void ConstantStruct::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattner7a1450d2005-10-04 18:13:04 +00001992 Use *U) {
Owen Anderson45308b52009-07-27 22:29:26 +00001993 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
1994 Constant *ToC = cast<Constant>(To);
1995
1996 unsigned OperandToUpdate = U-OperandList;
1997 assert(getOperand(OperandToUpdate) == From && "ReplaceAllUsesWith broken!");
1998
Dan Gohmane4532f32009-09-15 15:58:07 +00001999 std::pair<LLVMContextImpl::StructConstantsTy::MapKey, ConstantStruct*> Lookup;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002000 Lookup.first.first = cast<StructType>(getType());
Owen Anderson45308b52009-07-27 22:29:26 +00002001 Lookup.second = this;
2002 std::vector<Constant*> &Values = Lookup.first.second;
2003 Values.reserve(getNumOperands()); // Build replacement struct.
2004
2005
2006 // Fill values with the modified operands of the constant struct. Also,
2007 // compute whether this turns into an all-zeros struct.
2008 bool isAllZeros = false;
2009 if (!ToC->isNullValue()) {
2010 for (Use *O = OperandList, *E = OperandList + getNumOperands(); O != E; ++O)
2011 Values.push_back(cast<Constant>(O->get()));
2012 } else {
2013 isAllZeros = true;
2014 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2015 Constant *Val = cast<Constant>(O->get());
2016 Values.push_back(Val);
2017 if (isAllZeros) isAllZeros = Val->isNullValue();
2018 }
2019 }
2020 Values[OperandToUpdate] = ToC;
2021
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002022 LLVMContextImpl *pImpl = getContext().pImpl;
Owen Anderson45308b52009-07-27 22:29:26 +00002023
2024 Constant *Replacement = 0;
2025 if (isAllZeros) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002026 Replacement = ConstantAggregateZero::get(getType());
Owen Anderson45308b52009-07-27 22:29:26 +00002027 } else {
Chris Lattner718da702010-07-17 06:13:52 +00002028 // Check to see if we have this struct type already.
Owen Anderson45308b52009-07-27 22:29:26 +00002029 bool Exists;
2030 LLVMContextImpl::StructConstantsTy::MapTy::iterator I =
2031 pImpl->StructConstants.InsertOrGetItem(Lookup, Exists);
2032
2033 if (Exists) {
Devang Patelf7188322009-09-03 01:39:20 +00002034 Replacement = I->second;
Owen Anderson45308b52009-07-27 22:29:26 +00002035 } else {
2036 // Okay, the new shape doesn't exist in the system yet. Instead of
2037 // creating a new constant struct, inserting it, replaceallusesof'ing the
2038 // old with the new, then deleting the old... just update the current one
2039 // in place!
2040 pImpl->StructConstants.MoveConstantToNewSlot(this, I);
2041
2042 // Update to the new value.
2043 setOperand(OperandToUpdate, ToC);
2044 return;
2045 }
2046 }
2047
2048 assert(Replacement != this && "I didn't contain From!");
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002049
Chris Lattner7a1450d2005-10-04 18:13:04 +00002050 // Everyone using this now uses the replacement.
Chris Lattneraf1783f2011-07-15 06:18:52 +00002051 replaceAllUsesWith(Replacement);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002052
2053 // Delete the old constant!
2054 destroyConstant();
2055}
2056
Reid Spencerd84d35b2007-02-15 02:26:10 +00002057void ConstantVector::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattner7a1450d2005-10-04 18:13:04 +00002058 Use *U) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002059 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2060
2061 std::vector<Constant*> Values;
2062 Values.reserve(getNumOperands()); // Build replacement array...
2063 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
2064 Constant *Val = getOperand(i);
2065 if (Val == From) Val = cast<Constant>(To);
2066 Values.push_back(Val);
2067 }
2068
Jay Foadb8a8bed32011-06-22 09:10:19 +00002069 Constant *Replacement = get(Values);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002070 assert(Replacement != this && "I didn't contain From!");
2071
Chris Lattner7a1450d2005-10-04 18:13:04 +00002072 // Everyone using this now uses the replacement.
Chris Lattneraf1783f2011-07-15 06:18:52 +00002073 replaceAllUsesWith(Replacement);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002074
2075 // Delete the old constant!
2076 destroyConstant();
2077}
2078
2079void ConstantExpr::replaceUsesOfWithOnConstant(Value *From, Value *ToV,
Chris Lattner7a1450d2005-10-04 18:13:04 +00002080 Use *U) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002081 assert(isa<Constant>(ToV) && "Cannot make Constant refer to non-constant!");
2082 Constant *To = cast<Constant>(ToV);
2083
2084 Constant *Replacement = 0;
2085 if (getOpcode() == Instruction::GetElementPtr) {
Chris Lattnerb5d70302007-02-19 20:01:23 +00002086 SmallVector<Constant*, 8> Indices;
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002087 Constant *Pointer = getOperand(0);
2088 Indices.reserve(getNumOperands()-1);
2089 if (Pointer == From) Pointer = To;
2090
2091 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
2092 Constant *Val = getOperand(i);
2093 if (Val == From) Val = To;
2094 Indices.push_back(Val);
2095 }
Jay Foaded8db7d2011-07-21 14:31:17 +00002096 Replacement = ConstantExpr::getGetElementPtr(Pointer, Indices,
Chris Lattner603af182011-02-11 05:37:21 +00002097 cast<GEPOperator>(this)->isInBounds());
Dan Gohman12fce772008-05-15 19:50:34 +00002098 } else if (getOpcode() == Instruction::ExtractValue) {
Dan Gohman12fce772008-05-15 19:50:34 +00002099 Constant *Agg = getOperand(0);
Dan Gohman12fce772008-05-15 19:50:34 +00002100 if (Agg == From) Agg = To;
2101
Jay Foad0091fe82011-04-13 15:22:40 +00002102 ArrayRef<unsigned> Indices = getIndices();
Jay Foad57aa6362011-07-13 10:26:04 +00002103 Replacement = ConstantExpr::getExtractValue(Agg, Indices);
Dan Gohman12fce772008-05-15 19:50:34 +00002104 } else if (getOpcode() == Instruction::InsertValue) {
Dan Gohman12fce772008-05-15 19:50:34 +00002105 Constant *Agg = getOperand(0);
2106 Constant *Val = getOperand(1);
Dan Gohman12fce772008-05-15 19:50:34 +00002107 if (Agg == From) Agg = To;
2108 if (Val == From) Val = To;
2109
Jay Foad0091fe82011-04-13 15:22:40 +00002110 ArrayRef<unsigned> Indices = getIndices();
Jay Foad57aa6362011-07-13 10:26:04 +00002111 Replacement = ConstantExpr::getInsertValue(Agg, Val, Indices);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002112 } else if (isCast()) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002113 assert(getOperand(0) == From && "Cast only has one use!");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002114 Replacement = ConstantExpr::getCast(getOpcode(), To, getType());
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002115 } else if (getOpcode() == Instruction::Select) {
2116 Constant *C1 = getOperand(0);
2117 Constant *C2 = getOperand(1);
2118 Constant *C3 = getOperand(2);
2119 if (C1 == From) C1 = To;
2120 if (C2 == From) C2 = To;
2121 if (C3 == From) C3 = To;
2122 Replacement = ConstantExpr::getSelect(C1, C2, C3);
Robert Bocchino23004482006-01-10 19:05:34 +00002123 } else if (getOpcode() == Instruction::ExtractElement) {
2124 Constant *C1 = getOperand(0);
2125 Constant *C2 = getOperand(1);
2126 if (C1 == From) C1 = To;
2127 if (C2 == From) C2 = To;
2128 Replacement = ConstantExpr::getExtractElement(C1, C2);
Chris Lattnera93b4b52006-04-08 05:09:48 +00002129 } else if (getOpcode() == Instruction::InsertElement) {
2130 Constant *C1 = getOperand(0);
2131 Constant *C2 = getOperand(1);
2132 Constant *C3 = getOperand(1);
2133 if (C1 == From) C1 = To;
2134 if (C2 == From) C2 = To;
2135 if (C3 == From) C3 = To;
2136 Replacement = ConstantExpr::getInsertElement(C1, C2, C3);
2137 } else if (getOpcode() == Instruction::ShuffleVector) {
2138 Constant *C1 = getOperand(0);
2139 Constant *C2 = getOperand(1);
2140 Constant *C3 = getOperand(2);
2141 if (C1 == From) C1 = To;
2142 if (C2 == From) C2 = To;
2143 if (C3 == From) C3 = To;
2144 Replacement = ConstantExpr::getShuffleVector(C1, C2, C3);
Reid Spenceree3c9912006-12-04 05:19:50 +00002145 } else if (isCompare()) {
2146 Constant *C1 = getOperand(0);
2147 Constant *C2 = getOperand(1);
2148 if (C1 == From) C1 = To;
2149 if (C2 == From) C2 = To;
2150 if (getOpcode() == Instruction::ICmp)
2151 Replacement = ConstantExpr::getICmp(getPredicate(), C1, C2);
Chris Lattnereab49262008-07-14 05:17:31 +00002152 else {
Nick Lewyckya21d3da2009-07-08 03:04:38 +00002153 assert(getOpcode() == Instruction::FCmp);
2154 Replacement = ConstantExpr::getFCmp(getPredicate(), C1, C2);
Chris Lattnereab49262008-07-14 05:17:31 +00002155 }
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002156 } else if (getNumOperands() == 2) {
2157 Constant *C1 = getOperand(0);
2158 Constant *C2 = getOperand(1);
2159 if (C1 == From) C1 = To;
2160 if (C2 == From) C2 = To;
Chris Lattnerb9c86512009-12-29 02:14:09 +00002161 Replacement = ConstantExpr::get(getOpcode(), C1, C2, SubclassOptionalData);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002162 } else {
Torok Edwinfbcc6632009-07-14 16:55:14 +00002163 llvm_unreachable("Unknown ConstantExpr type!");
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002164 return;
2165 }
2166
2167 assert(Replacement != this && "I didn't contain From!");
2168
Chris Lattner7a1450d2005-10-04 18:13:04 +00002169 // Everyone using this now uses the replacement.
Chris Lattneraf1783f2011-07-15 06:18:52 +00002170 replaceAllUsesWith(Replacement);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002171
2172 // Delete the old constant!
2173 destroyConstant();
Matthijs Kooijmanba5d7ef2008-07-03 07:46:41 +00002174}