blob: a1489123ca7dd8e9c9bf5c151faebb23d1ae4aae [file] [log] [blame]
Chris Lattner2b383d2e2003-05-13 21:37:02 +00001//===-- Constants.cpp - Implement Constant nodes --------------------------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
John Criswell482202a2003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanb1c93172005-04-21 23:48:37 +00007//
John Criswell482202a2003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +00009//
Chris Lattnere17322b2011-02-07 20:03:14 +000010// This file implements the Constant* classes.
Chris Lattner2f7c9632001-06-06 20:29:01 +000011//
12//===----------------------------------------------------------------------===//
13
Chris Lattnerca142372002-04-28 19:55:58 +000014#include "llvm/Constants.h"
Chris Lattner78683a72009-08-23 04:02:03 +000015#include "LLVMContextImpl.h"
Chris Lattner33e93b82007-02-27 03:05:06 +000016#include "ConstantFold.h"
Chris Lattner2f7c9632001-06-06 20:29:01 +000017#include "llvm/DerivedTypes.h"
Reid Spencer1ebe1ab2004-07-17 23:48:33 +000018#include "llvm/GlobalValue.h"
Misha Brukman63b38bd2004-07-29 17:30:56 +000019#include "llvm/Instructions.h"
Chris Lattnerd7a73302001-10-13 06:57:33 +000020#include "llvm/Module.h"
Dan Gohman7d82e132009-07-18 01:49:22 +000021#include "llvm/Operator.h"
Nick Lewycky49f89192009-04-04 07:22:01 +000022#include "llvm/ADT/FoldingSet.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000023#include "llvm/ADT/StringExtras.h"
Nick Lewycky49f89192009-04-04 07:22:01 +000024#include "llvm/ADT/StringMap.h"
Chris Lattner3d27be12006-08-27 12:54:02 +000025#include "llvm/Support/Compiler.h"
Bill Wendling6a462f12006-11-17 08:03:48 +000026#include "llvm/Support/Debug.h"
Torok Edwinccb29cd2009-07-11 13:10:19 +000027#include "llvm/Support/ErrorHandling.h"
Chris Lattner69edc982006-09-28 00:35:06 +000028#include "llvm/Support/ManagedStatic.h"
Bill Wendling6a462f12006-11-17 08:03:48 +000029#include "llvm/Support/MathExtras.h"
Chris Lattner78683a72009-08-23 04:02:03 +000030#include "llvm/Support/raw_ostream.h"
Dan Gohman7190d482009-09-10 23:37:55 +000031#include "llvm/Support/GetElementPtrTypeIterator.h"
Chris Lattnera80bf0b2007-02-20 06:39:57 +000032#include "llvm/ADT/DenseMap.h"
Chris Lattnerb5d70302007-02-19 20:01:23 +000033#include "llvm/ADT/SmallVector.h"
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000034#include "llvm/ADT/STLExtras.h"
Chris Lattner2f7c9632001-06-06 20:29:01 +000035#include <algorithm>
Talin3a0a30d2011-02-28 23:53:27 +000036#include <cstdarg>
Chris Lattner189d19f2003-11-21 20:23:48 +000037using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000038
Chris Lattner2f7c9632001-06-06 20:29:01 +000039//===----------------------------------------------------------------------===//
Chris Lattner3462ae32001-12-03 22:26:30 +000040// Constant Class
Chris Lattner2f7c9632001-06-06 20:29:01 +000041//===----------------------------------------------------------------------===//
42
Chris Lattnerac5fb562011-07-15 05:58:04 +000043bool Constant::isNegativeZeroValue() const {
44 // Floating point values have an explicit -0.0 value.
45 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
46 return CFP->isZero() && CFP->isNegative();
47
48 // Otherwise, just use +0.0.
49 return isNullValue();
50}
51
Chris Lattnerbe6610c2011-07-15 06:14:08 +000052bool Constant::isNullValue() const {
53 // 0 is null.
54 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
55 return CI->isZero();
56
57 // +0.0 is null.
58 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
59 return CFP->isZero() && !CFP->isNegative();
60
61 // constant zero is zero for aggregates and cpnull is null for pointers.
62 return isa<ConstantAggregateZero>(this) || isa<ConstantPointerNull>(this);
63}
64
Nadav Rotem365af6f2011-08-24 20:18:38 +000065bool Constant::isAllOnesValue() const {
66 // Check for -1 integers
67 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
68 return CI->isMinusOne();
69
70 // Check for FP which are bitcasted from -1 integers
71 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
72 return CFP->getValueAPF().bitcastToAPInt().isAllOnesValue();
73
Benjamin Kramer42d098e2011-11-14 19:12:20 +000074 // Check for constant vectors which are splats of -1 values.
Nadav Rotem365af6f2011-08-24 20:18:38 +000075 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
Benjamin Kramer42d098e2011-11-14 19:12:20 +000076 if (Constant *Splat = CV->getSplatValue())
77 return Splat->isAllOnesValue();
Nadav Rotem365af6f2011-08-24 20:18:38 +000078
79 return false;
80}
Benjamin Kramer42d098e2011-11-14 19:12:20 +000081
Owen Anderson5a1acd92009-07-31 20:28:14 +000082// Constructor to create a '0' constant of arbitrary type...
Chris Lattner229907c2011-07-18 04:54:35 +000083Constant *Constant::getNullValue(Type *Ty) {
Owen Anderson5a1acd92009-07-31 20:28:14 +000084 switch (Ty->getTypeID()) {
85 case Type::IntegerTyID:
86 return ConstantInt::get(Ty, 0);
87 case Type::FloatTyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +000088 return ConstantFP::get(Ty->getContext(),
89 APFloat::getZero(APFloat::IEEEsingle));
Owen Anderson5a1acd92009-07-31 20:28:14 +000090 case Type::DoubleTyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +000091 return ConstantFP::get(Ty->getContext(),
92 APFloat::getZero(APFloat::IEEEdouble));
Owen Anderson5a1acd92009-07-31 20:28:14 +000093 case Type::X86_FP80TyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +000094 return ConstantFP::get(Ty->getContext(),
95 APFloat::getZero(APFloat::x87DoubleExtended));
Owen Anderson5a1acd92009-07-31 20:28:14 +000096 case Type::FP128TyID:
97 return ConstantFP::get(Ty->getContext(),
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +000098 APFloat::getZero(APFloat::IEEEquad));
Owen Anderson5a1acd92009-07-31 20:28:14 +000099 case Type::PPC_FP128TyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000100 return ConstantFP::get(Ty->getContext(),
Benjamin Kramer6f88fcb2010-12-04 14:43:08 +0000101 APFloat(APInt::getNullValue(128)));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000102 case Type::PointerTyID:
103 return ConstantPointerNull::get(cast<PointerType>(Ty));
104 case Type::StructTyID:
105 case Type::ArrayTyID:
106 case Type::VectorTyID:
107 return ConstantAggregateZero::get(Ty);
108 default:
109 // Function, Label, or Opaque type?
Richard Trieua318b8d2011-09-21 03:09:09 +0000110 assert(0 && "Cannot create a null constant of that type!");
Owen Anderson5a1acd92009-07-31 20:28:14 +0000111 return 0;
112 }
113}
114
Chris Lattner229907c2011-07-18 04:54:35 +0000115Constant *Constant::getIntegerValue(Type *Ty, const APInt &V) {
116 Type *ScalarTy = Ty->getScalarType();
Dan Gohmanf011f5a2009-08-03 22:07:33 +0000117
118 // Create the base integer constant.
119 Constant *C = ConstantInt::get(Ty->getContext(), V);
120
121 // Convert an integer to a pointer, if necessary.
Chris Lattner229907c2011-07-18 04:54:35 +0000122 if (PointerType *PTy = dyn_cast<PointerType>(ScalarTy))
Dan Gohmanf011f5a2009-08-03 22:07:33 +0000123 C = ConstantExpr::getIntToPtr(C, PTy);
124
125 // Broadcast a scalar to a vector, if necessary.
Chris Lattner229907c2011-07-18 04:54:35 +0000126 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Dan Gohmanf011f5a2009-08-03 22:07:33 +0000127 C = ConstantVector::get(std::vector<Constant *>(VTy->getNumElements(), C));
128
129 return C;
130}
131
Chris Lattner229907c2011-07-18 04:54:35 +0000132Constant *Constant::getAllOnesValue(Type *Ty) {
133 if (IntegerType *ITy = dyn_cast<IntegerType>(Ty))
Owen Anderson5a1acd92009-07-31 20:28:14 +0000134 return ConstantInt::get(Ty->getContext(),
135 APInt::getAllOnesValue(ITy->getBitWidth()));
Nadav Rotem7cc6d122011-02-17 21:22:27 +0000136
137 if (Ty->isFloatingPointTy()) {
138 APFloat FL = APFloat::getAllOnesValue(Ty->getPrimitiveSizeInBits(),
139 !Ty->isPPC_FP128Ty());
140 return ConstantFP::get(Ty->getContext(), FL);
141 }
142
Chris Lattner69229312011-02-15 00:14:00 +0000143 SmallVector<Constant*, 16> Elts;
Chris Lattner229907c2011-07-18 04:54:35 +0000144 VectorType *VTy = cast<VectorType>(Ty);
Owen Anderson5a1acd92009-07-31 20:28:14 +0000145 Elts.resize(VTy->getNumElements(), getAllOnesValue(VTy->getElementType()));
Nadav Rotem365af6f2011-08-24 20:18:38 +0000146 assert(Elts[0] && "Invalid AllOnes value!");
Owen Anderson5a1acd92009-07-31 20:28:14 +0000147 return cast<ConstantVector>(ConstantVector::get(Elts));
148}
149
Chris Lattner3462ae32001-12-03 22:26:30 +0000150void Constant::destroyConstantImpl() {
151 // When a Constant is destroyed, there may be lingering
Chris Lattnerd7a73302001-10-13 06:57:33 +0000152 // references to the constant by other constants in the constant pool. These
Misha Brukmanbe372b92003-08-21 22:14:26 +0000153 // constants are implicitly dependent on the module that is being deleted,
Chris Lattnerd7a73302001-10-13 06:57:33 +0000154 // but they don't know that. Because we only find out when the CPV is
155 // deleted, we must now notify all of our users (that should only be
Chris Lattner3462ae32001-12-03 22:26:30 +0000156 // Constants) that they are, in fact, invalid now and should be deleted.
Chris Lattnerd7a73302001-10-13 06:57:33 +0000157 //
158 while (!use_empty()) {
159 Value *V = use_back();
160#ifndef NDEBUG // Only in -g mode...
Chris Lattner78683a72009-08-23 04:02:03 +0000161 if (!isa<Constant>(V)) {
David Greene1e27a132010-01-05 01:29:19 +0000162 dbgs() << "While deleting: " << *this
Chris Lattner78683a72009-08-23 04:02:03 +0000163 << "\n\nUse still stuck around after Def is destroyed: "
164 << *V << "\n\n";
165 }
Chris Lattnerd7a73302001-10-13 06:57:33 +0000166#endif
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000167 assert(isa<Constant>(V) && "References remain to Constant being destroyed");
Reid Spencer1ebe1ab2004-07-17 23:48:33 +0000168 Constant *CV = cast<Constant>(V);
169 CV->destroyConstant();
Chris Lattnerd7a73302001-10-13 06:57:33 +0000170
171 // The constant should remove itself from our use list...
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000172 assert((use_empty() || use_back() != V) && "Constant not removed!");
Chris Lattnerd7a73302001-10-13 06:57:33 +0000173 }
174
175 // Value has no outstanding references it is safe to delete it now...
176 delete this;
Chris Lattner38569342001-10-01 20:11:19 +0000177}
Chris Lattner2f7c9632001-06-06 20:29:01 +0000178
Chris Lattner23dd1f62006-10-20 00:27:06 +0000179/// canTrap - Return true if evaluation of this constant could trap. This is
180/// true for things like constant expressions that could divide by zero.
181bool Constant::canTrap() const {
182 assert(getType()->isFirstClassType() && "Cannot evaluate aggregate vals!");
183 // The only thing that could possibly trap are constant exprs.
184 const ConstantExpr *CE = dyn_cast<ConstantExpr>(this);
185 if (!CE) return false;
186
187 // ConstantExpr traps if any operands can trap.
188 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Chris Lattnera91a5632009-10-28 05:14:34 +0000189 if (CE->getOperand(i)->canTrap())
Chris Lattner23dd1f62006-10-20 00:27:06 +0000190 return true;
191
192 // Otherwise, only specific operations can trap.
193 switch (CE->getOpcode()) {
194 default:
195 return false;
Reid Spencer7e80b0b2006-10-26 06:15:43 +0000196 case Instruction::UDiv:
197 case Instruction::SDiv:
198 case Instruction::FDiv:
Reid Spencer7eb55b32006-11-02 01:53:59 +0000199 case Instruction::URem:
200 case Instruction::SRem:
201 case Instruction::FRem:
Chris Lattner23dd1f62006-10-20 00:27:06 +0000202 // Div and rem can trap if the RHS is not known to be non-zero.
Chris Lattnera91a5632009-10-28 05:14:34 +0000203 if (!isa<ConstantInt>(CE->getOperand(1)) ||CE->getOperand(1)->isNullValue())
Chris Lattner23dd1f62006-10-20 00:27:06 +0000204 return true;
205 return false;
206 }
207}
208
Chris Lattner253bc772009-11-01 18:11:50 +0000209/// isConstantUsed - Return true if the constant has users other than constant
210/// exprs and other dangling things.
211bool Constant::isConstantUsed() const {
Gabor Greifc78d7202010-03-25 23:06:16 +0000212 for (const_use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI) {
Chris Lattner253bc772009-11-01 18:11:50 +0000213 const Constant *UC = dyn_cast<Constant>(*UI);
214 if (UC == 0 || isa<GlobalValue>(UC))
215 return true;
216
217 if (UC->isConstantUsed())
218 return true;
219 }
220 return false;
221}
222
223
Chris Lattner4565ef52009-07-22 00:05:44 +0000224
225/// getRelocationInfo - This method classifies the entry according to
226/// whether or not it may generate a relocation entry. This must be
227/// conservative, so if it might codegen to a relocatable entry, it should say
228/// so. The return values are:
229///
Chris Lattner5cd4dd32009-07-24 03:27:21 +0000230/// NoRelocation: This constant pool entry is guaranteed to never have a
231/// relocation applied to it (because it holds a simple constant like
232/// '4').
233/// LocalRelocation: This entry has relocations, but the entries are
234/// guaranteed to be resolvable by the static linker, so the dynamic
235/// linker will never see them.
236/// GlobalRelocations: This entry may have arbitrary relocations.
Chris Lattner4565ef52009-07-22 00:05:44 +0000237///
238/// FIXME: This really should not be in VMCore.
Chris Lattner5cd4dd32009-07-24 03:27:21 +0000239Constant::PossibleRelocationsTy Constant::getRelocationInfo() const {
240 if (const GlobalValue *GV = dyn_cast<GlobalValue>(this)) {
Chris Lattner4565ef52009-07-22 00:05:44 +0000241 if (GV->hasLocalLinkage() || GV->hasHiddenVisibility())
Chris Lattner5cd4dd32009-07-24 03:27:21 +0000242 return LocalRelocation; // Local to this file/library.
243 return GlobalRelocations; // Global reference.
Anton Korobeynikov7437b592009-03-29 17:13:18 +0000244 }
Chris Lattner4565ef52009-07-22 00:05:44 +0000245
Chris Lattner2cb85b42009-10-28 04:12:16 +0000246 if (const BlockAddress *BA = dyn_cast<BlockAddress>(this))
247 return BA->getFunction()->getRelocationInfo();
248
Chris Lattnera7cfc432010-01-03 18:09:40 +0000249 // While raw uses of blockaddress need to be relocated, differences between
250 // two of them don't when they are for labels in the same function. This is a
251 // common idiom when creating a table for the indirect goto extension, so we
252 // handle it efficiently here.
253 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(this))
254 if (CE->getOpcode() == Instruction::Sub) {
255 ConstantExpr *LHS = dyn_cast<ConstantExpr>(CE->getOperand(0));
256 ConstantExpr *RHS = dyn_cast<ConstantExpr>(CE->getOperand(1));
257 if (LHS && RHS &&
258 LHS->getOpcode() == Instruction::PtrToInt &&
259 RHS->getOpcode() == Instruction::PtrToInt &&
260 isa<BlockAddress>(LHS->getOperand(0)) &&
261 isa<BlockAddress>(RHS->getOperand(0)) &&
262 cast<BlockAddress>(LHS->getOperand(0))->getFunction() ==
263 cast<BlockAddress>(RHS->getOperand(0))->getFunction())
264 return NoRelocation;
265 }
266
Chris Lattner5cd4dd32009-07-24 03:27:21 +0000267 PossibleRelocationsTy Result = NoRelocation;
Evan Chengf9e003b2007-03-08 00:59:12 +0000268 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Chris Lattnera91a5632009-10-28 05:14:34 +0000269 Result = std::max(Result,
270 cast<Constant>(getOperand(i))->getRelocationInfo());
Chris Lattner4565ef52009-07-22 00:05:44 +0000271
272 return Result;
Evan Chengf9e003b2007-03-08 00:59:12 +0000273}
274
Chris Lattner4565ef52009-07-22 00:05:44 +0000275
Chris Lattner2105d662008-07-10 00:28:11 +0000276/// getVectorElements - This method, which is only valid on constant of vector
277/// type, returns the elements of the vector in the specified smallvector.
Chris Lattnerc5098a22008-07-14 05:10:41 +0000278/// This handles breaking down a vector undef into undef elements, etc. For
279/// constant exprs and other cases we can't handle, we return an empty vector.
Chris Lattnerf5edeeb2010-02-01 20:48:08 +0000280void Constant::getVectorElements(SmallVectorImpl<Constant*> &Elts) const {
Duncan Sands19d0b472010-02-16 11:11:14 +0000281 assert(getType()->isVectorTy() && "Not a vector constant!");
Chris Lattner2105d662008-07-10 00:28:11 +0000282
283 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this)) {
284 for (unsigned i = 0, e = CV->getNumOperands(); i != e; ++i)
285 Elts.push_back(CV->getOperand(i));
286 return;
287 }
288
Chris Lattner229907c2011-07-18 04:54:35 +0000289 VectorType *VT = cast<VectorType>(getType());
Chris Lattner2105d662008-07-10 00:28:11 +0000290 if (isa<ConstantAggregateZero>(this)) {
291 Elts.assign(VT->getNumElements(),
Owen Anderson5a1acd92009-07-31 20:28:14 +0000292 Constant::getNullValue(VT->getElementType()));
Chris Lattner2105d662008-07-10 00:28:11 +0000293 return;
294 }
295
Chris Lattnerc5098a22008-07-14 05:10:41 +0000296 if (isa<UndefValue>(this)) {
Owen Andersonb292b8c2009-07-30 23:03:37 +0000297 Elts.assign(VT->getNumElements(), UndefValue::get(VT->getElementType()));
Chris Lattnerc5098a22008-07-14 05:10:41 +0000298 return;
299 }
300
301 // Unknown type, must be constant expr etc.
Chris Lattner2105d662008-07-10 00:28:11 +0000302}
303
304
Chris Lattner84886402011-02-18 04:41:42 +0000305/// removeDeadUsersOfConstant - If the specified constantexpr is dead, remove
306/// it. This involves recursively eliminating any dead users of the
307/// constantexpr.
308static bool removeDeadUsersOfConstant(const Constant *C) {
309 if (isa<GlobalValue>(C)) return false; // Cannot remove this
310
311 while (!C->use_empty()) {
312 const Constant *User = dyn_cast<Constant>(C->use_back());
313 if (!User) return false; // Non-constant usage;
314 if (!removeDeadUsersOfConstant(User))
315 return false; // Constant wasn't dead
316 }
317
318 const_cast<Constant*>(C)->destroyConstant();
319 return true;
320}
321
322
323/// removeDeadConstantUsers - If there are any dead constant users dangling
324/// off of this constant, remove them. This method is useful for clients
325/// that want to check to see if a global is unused, but don't want to deal
326/// with potentially dead constants hanging off of the globals.
327void Constant::removeDeadConstantUsers() const {
328 Value::const_use_iterator I = use_begin(), E = use_end();
329 Value::const_use_iterator LastNonDeadUser = E;
330 while (I != E) {
331 const Constant *User = dyn_cast<Constant>(*I);
332 if (User == 0) {
333 LastNonDeadUser = I;
334 ++I;
335 continue;
336 }
337
338 if (!removeDeadUsersOfConstant(User)) {
339 // If the constant wasn't dead, remember that this was the last live use
340 // and move on to the next constant.
341 LastNonDeadUser = I;
342 ++I;
343 continue;
344 }
345
346 // If the constant was dead, then the iterator is invalidated.
347 if (LastNonDeadUser == E) {
348 I = use_begin();
349 if (I == E) break;
350 } else {
351 I = LastNonDeadUser;
352 ++I;
353 }
354 }
355}
356
357
Chris Lattner2105d662008-07-10 00:28:11 +0000358
Chris Lattner2f7c9632001-06-06 20:29:01 +0000359//===----------------------------------------------------------------------===//
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000360// ConstantInt
Chris Lattner2f7c9632001-06-06 20:29:01 +0000361//===----------------------------------------------------------------------===//
362
Chris Lattner229907c2011-07-18 04:54:35 +0000363ConstantInt::ConstantInt(IntegerType *Ty, const APInt& V)
Chris Lattner5db2f472007-02-20 05:55:46 +0000364 : Constant(Ty, ConstantIntVal, 0, 0), Val(V) {
Reid Spencerb31bffe2007-02-26 23:54:03 +0000365 assert(V.getBitWidth() == Ty->getBitWidth() && "Invalid constant for type");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000366}
367
Nick Lewycky92db8e82011-03-06 03:36:19 +0000368ConstantInt *ConstantInt::getTrue(LLVMContext &Context) {
Owen Anderson23a204d2009-07-31 17:39:07 +0000369 LLVMContextImpl *pImpl = Context.pImpl;
Benjamin Kramerddd1b7b2010-11-20 18:43:35 +0000370 if (!pImpl->TheTrueVal)
371 pImpl->TheTrueVal = ConstantInt::get(Type::getInt1Ty(Context), 1);
372 return pImpl->TheTrueVal;
Owen Anderson23a204d2009-07-31 17:39:07 +0000373}
374
Nick Lewycky92db8e82011-03-06 03:36:19 +0000375ConstantInt *ConstantInt::getFalse(LLVMContext &Context) {
Owen Anderson23a204d2009-07-31 17:39:07 +0000376 LLVMContextImpl *pImpl = Context.pImpl;
Benjamin Kramerddd1b7b2010-11-20 18:43:35 +0000377 if (!pImpl->TheFalseVal)
378 pImpl->TheFalseVal = ConstantInt::get(Type::getInt1Ty(Context), 0);
379 return pImpl->TheFalseVal;
Owen Anderson23a204d2009-07-31 17:39:07 +0000380}
381
Chris Lattner229907c2011-07-18 04:54:35 +0000382Constant *ConstantInt::getTrue(Type *Ty) {
383 VectorType *VTy = dyn_cast<VectorType>(Ty);
Nick Lewycky92db8e82011-03-06 03:36:19 +0000384 if (!VTy) {
385 assert(Ty->isIntegerTy(1) && "True must be i1 or vector of i1.");
386 return ConstantInt::getTrue(Ty->getContext());
387 }
388 assert(VTy->getElementType()->isIntegerTy(1) &&
389 "True must be vector of i1 or i1.");
390 SmallVector<Constant*, 16> Splat(VTy->getNumElements(),
391 ConstantInt::getTrue(Ty->getContext()));
392 return ConstantVector::get(Splat);
393}
394
Chris Lattner229907c2011-07-18 04:54:35 +0000395Constant *ConstantInt::getFalse(Type *Ty) {
396 VectorType *VTy = dyn_cast<VectorType>(Ty);
Nick Lewycky92db8e82011-03-06 03:36:19 +0000397 if (!VTy) {
398 assert(Ty->isIntegerTy(1) && "False must be i1 or vector of i1.");
399 return ConstantInt::getFalse(Ty->getContext());
400 }
401 assert(VTy->getElementType()->isIntegerTy(1) &&
402 "False must be vector of i1 or i1.");
403 SmallVector<Constant*, 16> Splat(VTy->getNumElements(),
404 ConstantInt::getFalse(Ty->getContext()));
405 return ConstantVector::get(Splat);
406}
407
Owen Anderson23a204d2009-07-31 17:39:07 +0000408
Owen Andersonedb4a702009-07-24 23:12:02 +0000409// Get a ConstantInt from an APInt. Note that the value stored in the DenseMap
410// as the key, is a DenseMapAPIntKeyInfo::KeyTy which has provided the
411// operator== and operator!= to ensure that the DenseMap doesn't attempt to
412// compare APInt's of different widths, which would violate an APInt class
413// invariant which generates an assertion.
Nick Lewycky92db8e82011-03-06 03:36:19 +0000414ConstantInt *ConstantInt::get(LLVMContext &Context, const APInt &V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000415 // Get the corresponding integer type for the bit width of the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000416 IntegerType *ITy = IntegerType::get(Context, V.getBitWidth());
Owen Andersonedb4a702009-07-24 23:12:02 +0000417 // get an existing value or the insertion position
418 DenseMapAPIntKeyInfo::KeyTy Key(V, ITy);
Owen Andersonedb4a702009-07-24 23:12:02 +0000419 ConstantInt *&Slot = Context.pImpl->IntConstants[Key];
Owen Anderson5dab84c2009-10-19 20:11:52 +0000420 if (!Slot) Slot = new ConstantInt(ITy, V);
421 return Slot;
Owen Andersonedb4a702009-07-24 23:12:02 +0000422}
423
Chris Lattner229907c2011-07-18 04:54:35 +0000424Constant *ConstantInt::get(Type *Ty, uint64_t V, bool isSigned) {
Nick Lewycky92db8e82011-03-06 03:36:19 +0000425 Constant *C = get(cast<IntegerType>(Ty->getScalarType()), V, isSigned);
Owen Andersonedb4a702009-07-24 23:12:02 +0000426
427 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000428 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattner69229312011-02-15 00:14:00 +0000429 return ConstantVector::get(SmallVector<Constant*,
430 16>(VTy->getNumElements(), C));
Owen Andersonedb4a702009-07-24 23:12:02 +0000431
432 return C;
433}
434
Chris Lattner229907c2011-07-18 04:54:35 +0000435ConstantInt* ConstantInt::get(IntegerType* Ty, uint64_t V,
Owen Andersonedb4a702009-07-24 23:12:02 +0000436 bool isSigned) {
437 return get(Ty->getContext(), APInt(Ty->getBitWidth(), V, isSigned));
438}
439
Chris Lattner229907c2011-07-18 04:54:35 +0000440ConstantInt* ConstantInt::getSigned(IntegerType* Ty, int64_t V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000441 return get(Ty, V, true);
442}
443
Chris Lattner229907c2011-07-18 04:54:35 +0000444Constant *ConstantInt::getSigned(Type *Ty, int64_t V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000445 return get(Ty, V, true);
446}
447
Chris Lattner229907c2011-07-18 04:54:35 +0000448Constant *ConstantInt::get(Type* Ty, const APInt& V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000449 ConstantInt *C = get(Ty->getContext(), V);
450 assert(C->getType() == Ty->getScalarType() &&
451 "ConstantInt type doesn't match the type implied by its value!");
452
453 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000454 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Owen Anderson4aa32952009-07-28 21:19:26 +0000455 return ConstantVector::get(
Chris Lattner69229312011-02-15 00:14:00 +0000456 SmallVector<Constant *, 16>(VTy->getNumElements(), C));
Owen Andersonedb4a702009-07-24 23:12:02 +0000457
458 return C;
459}
460
Chris Lattner229907c2011-07-18 04:54:35 +0000461ConstantInt* ConstantInt::get(IntegerType* Ty, StringRef Str,
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000462 uint8_t radix) {
463 return get(Ty->getContext(), APInt(Ty->getBitWidth(), Str, radix));
464}
465
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000466//===----------------------------------------------------------------------===//
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000467// ConstantFP
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000468//===----------------------------------------------------------------------===//
469
Chris Lattner229907c2011-07-18 04:54:35 +0000470static const fltSemantics *TypeToFloatSemantics(Type *Ty) {
Chris Lattnerfdd87902009-10-05 05:54:46 +0000471 if (Ty->isFloatTy())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000472 return &APFloat::IEEEsingle;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000473 if (Ty->isDoubleTy())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000474 return &APFloat::IEEEdouble;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000475 if (Ty->isX86_FP80Ty())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000476 return &APFloat::x87DoubleExtended;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000477 else if (Ty->isFP128Ty())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000478 return &APFloat::IEEEquad;
479
Chris Lattnerfdd87902009-10-05 05:54:46 +0000480 assert(Ty->isPPC_FP128Ty() && "Unknown FP format");
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000481 return &APFloat::PPCDoubleDouble;
482}
483
Owen Anderson69c464d2009-07-27 20:59:43 +0000484/// get() - This returns a constant fp for the specified value in the
485/// specified type. This should only be used for simple constant values like
486/// 2.0/1.0 etc, that are known-valid both as double and as the target format.
Chris Lattner229907c2011-07-18 04:54:35 +0000487Constant *ConstantFP::get(Type* Ty, double V) {
Owen Anderson69c464d2009-07-27 20:59:43 +0000488 LLVMContext &Context = Ty->getContext();
489
490 APFloat FV(V);
491 bool ignored;
492 FV.convert(*TypeToFloatSemantics(Ty->getScalarType()),
493 APFloat::rmNearestTiesToEven, &ignored);
494 Constant *C = get(Context, FV);
495
496 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000497 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Owen Anderson4aa32952009-07-28 21:19:26 +0000498 return ConstantVector::get(
Chris Lattner69229312011-02-15 00:14:00 +0000499 SmallVector<Constant *, 16>(VTy->getNumElements(), C));
Owen Anderson69c464d2009-07-27 20:59:43 +0000500
501 return C;
502}
503
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000504
Chris Lattner229907c2011-07-18 04:54:35 +0000505Constant *ConstantFP::get(Type* Ty, StringRef Str) {
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000506 LLVMContext &Context = Ty->getContext();
507
508 APFloat FV(*TypeToFloatSemantics(Ty->getScalarType()), Str);
509 Constant *C = get(Context, FV);
510
511 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000512 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000513 return ConstantVector::get(
Chris Lattner69229312011-02-15 00:14:00 +0000514 SmallVector<Constant *, 16>(VTy->getNumElements(), C));
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000515
516 return C;
517}
518
519
Chris Lattner229907c2011-07-18 04:54:35 +0000520ConstantFP* ConstantFP::getNegativeZero(Type* Ty) {
Owen Anderson69c464d2009-07-27 20:59:43 +0000521 LLVMContext &Context = Ty->getContext();
Owen Anderson5a1acd92009-07-31 20:28:14 +0000522 APFloat apf = cast <ConstantFP>(Constant::getNullValue(Ty))->getValueAPF();
Owen Anderson69c464d2009-07-27 20:59:43 +0000523 apf.changeSign();
524 return get(Context, apf);
525}
526
527
Chris Lattner229907c2011-07-18 04:54:35 +0000528Constant *ConstantFP::getZeroValueForNegation(Type* Ty) {
529 if (VectorType *PTy = dyn_cast<VectorType>(Ty))
Duncan Sands9dff9be2010-02-15 16:12:20 +0000530 if (PTy->getElementType()->isFloatingPointTy()) {
Chris Lattner69229312011-02-15 00:14:00 +0000531 SmallVector<Constant*, 16> zeros(PTy->getNumElements(),
Owen Anderson69c464d2009-07-27 20:59:43 +0000532 getNegativeZero(PTy->getElementType()));
Chris Lattner69229312011-02-15 00:14:00 +0000533 return ConstantVector::get(zeros);
Owen Anderson69c464d2009-07-27 20:59:43 +0000534 }
535
Duncan Sands9dff9be2010-02-15 16:12:20 +0000536 if (Ty->isFloatingPointTy())
Owen Anderson69c464d2009-07-27 20:59:43 +0000537 return getNegativeZero(Ty);
538
Owen Anderson5a1acd92009-07-31 20:28:14 +0000539 return Constant::getNullValue(Ty);
Owen Anderson69c464d2009-07-27 20:59:43 +0000540}
541
542
543// ConstantFP accessors.
544ConstantFP* ConstantFP::get(LLVMContext &Context, const APFloat& V) {
545 DenseMapAPFloatKeyInfo::KeyTy Key(V);
546
547 LLVMContextImpl* pImpl = Context.pImpl;
548
Owen Anderson69c464d2009-07-27 20:59:43 +0000549 ConstantFP *&Slot = pImpl->FPConstants[Key];
Owen Anderson69c464d2009-07-27 20:59:43 +0000550
551 if (!Slot) {
Chris Lattner229907c2011-07-18 04:54:35 +0000552 Type *Ty;
Owen Anderson5dab84c2009-10-19 20:11:52 +0000553 if (&V.getSemantics() == &APFloat::IEEEsingle)
554 Ty = Type::getFloatTy(Context);
555 else if (&V.getSemantics() == &APFloat::IEEEdouble)
556 Ty = Type::getDoubleTy(Context);
557 else if (&V.getSemantics() == &APFloat::x87DoubleExtended)
558 Ty = Type::getX86_FP80Ty(Context);
559 else if (&V.getSemantics() == &APFloat::IEEEquad)
560 Ty = Type::getFP128Ty(Context);
561 else {
562 assert(&V.getSemantics() == &APFloat::PPCDoubleDouble &&
563 "Unknown FP format");
564 Ty = Type::getPPC_FP128Ty(Context);
Owen Anderson69c464d2009-07-27 20:59:43 +0000565 }
Owen Anderson5dab84c2009-10-19 20:11:52 +0000566 Slot = new ConstantFP(Ty, V);
Owen Anderson69c464d2009-07-27 20:59:43 +0000567 }
568
569 return Slot;
570}
571
Chris Lattner229907c2011-07-18 04:54:35 +0000572ConstantFP *ConstantFP::getInfinity(Type *Ty, bool Negative) {
Dan Gohmanfeb50212009-09-25 23:00:48 +0000573 const fltSemantics &Semantics = *TypeToFloatSemantics(Ty);
574 return ConstantFP::get(Ty->getContext(),
575 APFloat::getInf(Semantics, Negative));
576}
577
Chris Lattner229907c2011-07-18 04:54:35 +0000578ConstantFP::ConstantFP(Type *Ty, const APFloat& V)
Dale Johannesend246b2c2007-08-30 00:23:21 +0000579 : Constant(Ty, ConstantFPVal, 0, 0), Val(V) {
Chris Lattner98bd9392008-04-09 06:38:30 +0000580 assert(&V.getSemantics() == TypeToFloatSemantics(Ty) &&
581 "FP type Mismatch");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000582}
583
Chris Lattnerbe6610c2011-07-15 06:14:08 +0000584bool ConstantFP::isExactlyValue(const APFloat &V) const {
Dale Johannesend246b2c2007-08-30 00:23:21 +0000585 return Val.bitwiseIsEqual(V);
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000586}
587
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000588//===----------------------------------------------------------------------===//
589// ConstantXXX Classes
590//===----------------------------------------------------------------------===//
591
592
Jay Foad89d9b812011-07-25 10:14:44 +0000593ConstantArray::ConstantArray(ArrayType *T, ArrayRef<Constant *> V)
Gabor Greiff6caff662008-05-10 08:32:32 +0000594 : Constant(T, ConstantArrayVal,
595 OperandTraits<ConstantArray>::op_end(this) - V.size(),
596 V.size()) {
Alkis Evlogimenos0507ffe2004-09-15 02:32:15 +0000597 assert(V.size() == T->getNumElements() &&
598 "Invalid initializer vector for constant array");
Jay Foad89d9b812011-07-25 10:14:44 +0000599 for (unsigned i = 0, e = V.size(); i != e; ++i)
600 assert(V[i]->getType() == T->getElementType() &&
Alkis Evlogimenoscb031d92004-09-10 04:16:59 +0000601 "Initializer for array element doesn't match array element type!");
Jay Foad89d9b812011-07-25 10:14:44 +0000602 std::copy(V.begin(), V.end(), op_begin());
Chris Lattner2f7c9632001-06-06 20:29:01 +0000603}
604
Chris Lattner229907c2011-07-18 04:54:35 +0000605Constant *ConstantArray::get(ArrayType *Ty, ArrayRef<Constant*> V) {
Jeffrey Yasskin8ce67f82009-09-30 21:08:08 +0000606 for (unsigned i = 0, e = V.size(); i != e; ++i) {
607 assert(V[i]->getType() == Ty->getElementType() &&
608 "Wrong type in array element initializer");
609 }
Owen Andersonc2c79322009-07-28 18:32:17 +0000610 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
611 // If this is an all-zero array, return a ConstantAggregateZero object
612 if (!V.empty()) {
613 Constant *C = V[0];
Chris Lattner09660c92009-12-30 20:25:09 +0000614 if (!C->isNullValue())
Owen Andersonc2c79322009-07-28 18:32:17 +0000615 return pImpl->ArrayConstants.getOrCreate(Ty, V);
Chris Lattner09660c92009-12-30 20:25:09 +0000616
Owen Andersonc2c79322009-07-28 18:32:17 +0000617 for (unsigned i = 1, e = V.size(); i != e; ++i)
Chris Lattner09660c92009-12-30 20:25:09 +0000618 if (V[i] != C)
Owen Andersonc2c79322009-07-28 18:32:17 +0000619 return pImpl->ArrayConstants.getOrCreate(Ty, V);
Owen Andersonc2c79322009-07-28 18:32:17 +0000620 }
621
Owen Andersonb292b8c2009-07-30 23:03:37 +0000622 return ConstantAggregateZero::get(Ty);
Owen Andersonc2c79322009-07-28 18:32:17 +0000623}
624
Owen Andersonc2c79322009-07-28 18:32:17 +0000625/// ConstantArray::get(const string&) - Return an array that is initialized to
626/// contain the specified string. If length is zero then a null terminator is
627/// added to the specified string so that it may be used in a natural way.
628/// Otherwise, the length parameter specifies how much of the string to use
629/// and it won't be null terminated.
630///
Chris Lattnera676c0f2011-02-07 16:40:21 +0000631Constant *ConstantArray::get(LLVMContext &Context, StringRef Str,
Owen Anderson55f1c092009-08-13 21:58:54 +0000632 bool AddNull) {
Owen Andersonc2c79322009-07-28 18:32:17 +0000633 std::vector<Constant*> ElementVals;
Benjamin Kramer3d4af4e2010-08-01 11:43:26 +0000634 ElementVals.reserve(Str.size() + size_t(AddNull));
Owen Andersonc2c79322009-07-28 18:32:17 +0000635 for (unsigned i = 0; i < Str.size(); ++i)
Owen Anderson55f1c092009-08-13 21:58:54 +0000636 ElementVals.push_back(ConstantInt::get(Type::getInt8Ty(Context), Str[i]));
Owen Andersonc2c79322009-07-28 18:32:17 +0000637
638 // Add a null terminator to the string...
639 if (AddNull) {
Owen Anderson55f1c092009-08-13 21:58:54 +0000640 ElementVals.push_back(ConstantInt::get(Type::getInt8Ty(Context), 0));
Owen Andersonc2c79322009-07-28 18:32:17 +0000641 }
642
Owen Anderson55f1c092009-08-13 21:58:54 +0000643 ArrayType *ATy = ArrayType::get(Type::getInt8Ty(Context), ElementVals.size());
Owen Andersonc2c79322009-07-28 18:32:17 +0000644 return get(ATy, ElementVals);
645}
646
Chris Lattnercc19efa2011-06-20 04:01:31 +0000647/// getTypeForElements - Return an anonymous struct type to use for a constant
648/// with the specified set of elements. The list must not be empty.
649StructType *ConstantStruct::getTypeForElements(LLVMContext &Context,
650 ArrayRef<Constant*> V,
651 bool Packed) {
Jay Foadb804a2b2011-07-12 14:06:48 +0000652 SmallVector<Type*, 16> EltTypes;
Chris Lattnercc19efa2011-06-20 04:01:31 +0000653 for (unsigned i = 0, e = V.size(); i != e; ++i)
654 EltTypes.push_back(V[i]->getType());
655
656 return StructType::get(Context, EltTypes, Packed);
657}
658
659
660StructType *ConstantStruct::getTypeForElements(ArrayRef<Constant*> V,
661 bool Packed) {
662 assert(!V.empty() &&
663 "ConstantStruct::getTypeForElements cannot be called on empty list");
664 return getTypeForElements(V[0]->getContext(), V, Packed);
665}
666
667
Jay Foad89d9b812011-07-25 10:14:44 +0000668ConstantStruct::ConstantStruct(StructType *T, ArrayRef<Constant *> V)
Gabor Greiff6caff662008-05-10 08:32:32 +0000669 : Constant(T, ConstantStructVal,
670 OperandTraits<ConstantStruct>::op_end(this) - V.size(),
671 V.size()) {
Chris Lattnerc3e74cd2011-08-07 04:18:48 +0000672 assert(V.size() == T->getNumElements() &&
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000673 "Invalid initializer vector for constant structure");
Jay Foad89d9b812011-07-25 10:14:44 +0000674 for (unsigned i = 0, e = V.size(); i != e; ++i)
675 assert((T->isOpaque() || V[i]->getType() == T->getElementType(i)) &&
Chris Lattner93c8f142003-06-02 17:42:47 +0000676 "Initializer for struct element doesn't match struct element type!");
Jay Foad89d9b812011-07-25 10:14:44 +0000677 std::copy(V.begin(), V.end(), op_begin());
Chris Lattner2f7c9632001-06-06 20:29:01 +0000678}
679
Owen Anderson45308b52009-07-27 22:29:26 +0000680// ConstantStruct accessors.
Chris Lattner229907c2011-07-18 04:54:35 +0000681Constant *ConstantStruct::get(StructType *ST, ArrayRef<Constant*> V) {
Chris Lattnercc19efa2011-06-20 04:01:31 +0000682 // Create a ConstantAggregateZero value if all elements are zeros.
Owen Anderson45308b52009-07-27 22:29:26 +0000683 for (unsigned i = 0, e = V.size(); i != e; ++i)
Jay Foad687bd0a2011-06-22 08:55:11 +0000684 if (!V[i]->isNullValue())
685 return ST->getContext().pImpl->StructConstants.getOrCreate(ST, V);
Owen Anderson45308b52009-07-27 22:29:26 +0000686
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000687 assert((ST->isOpaque() || ST->getNumElements() == V.size()) &&
688 "Incorrect # elements specified to ConstantStruct::get");
Chris Lattnercc19efa2011-06-20 04:01:31 +0000689 return ConstantAggregateZero::get(ST);
Owen Anderson45308b52009-07-27 22:29:26 +0000690}
691
Chris Lattnerc3e74cd2011-08-07 04:18:48 +0000692Constant *ConstantStruct::get(StructType *T, ...) {
Talin3a0a30d2011-02-28 23:53:27 +0000693 va_list ap;
Chris Lattnercc19efa2011-06-20 04:01:31 +0000694 SmallVector<Constant*, 8> Values;
695 va_start(ap, T);
696 while (Constant *Val = va_arg(ap, llvm::Constant*))
Talin3a0a30d2011-02-28 23:53:27 +0000697 Values.push_back(Val);
Talinde422be2011-03-01 18:00:49 +0000698 va_end(ap);
Chris Lattnercc19efa2011-06-20 04:01:31 +0000699 return get(T, Values);
Talin3a0a30d2011-02-28 23:53:27 +0000700}
701
Jay Foad89d9b812011-07-25 10:14:44 +0000702ConstantVector::ConstantVector(VectorType *T, ArrayRef<Constant *> V)
Gabor Greiff6caff662008-05-10 08:32:32 +0000703 : Constant(T, ConstantVectorVal,
704 OperandTraits<ConstantVector>::op_end(this) - V.size(),
705 V.size()) {
Jay Foad89d9b812011-07-25 10:14:44 +0000706 for (size_t i = 0, e = V.size(); i != e; i++)
707 assert(V[i]->getType() == T->getElementType() &&
Dan Gohman30978072007-05-24 14:36:04 +0000708 "Initializer for vector element doesn't match vector element type!");
Jay Foad89d9b812011-07-25 10:14:44 +0000709 std::copy(V.begin(), V.end(), op_begin());
Brian Gaeke02209042004-08-20 06:00:58 +0000710}
711
Owen Anderson4aa32952009-07-28 21:19:26 +0000712// ConstantVector accessors.
Jay Foadb8a8bed32011-06-22 09:10:19 +0000713Constant *ConstantVector::get(ArrayRef<Constant*> V) {
Jay Foad9f32cfd2011-01-27 14:44:55 +0000714 assert(!V.empty() && "Vectors can't be empty");
Chris Lattner229907c2011-07-18 04:54:35 +0000715 VectorType *T = VectorType::get(V.front()->getType(), V.size());
Chris Lattner69229312011-02-15 00:14:00 +0000716 LLVMContextImpl *pImpl = T->getContext().pImpl;
Jay Foad9f32cfd2011-01-27 14:44:55 +0000717
Chris Lattner69229312011-02-15 00:14:00 +0000718 // If this is an all-undef or all-zero vector, return a
Owen Anderson4aa32952009-07-28 21:19:26 +0000719 // ConstantAggregateZero or UndefValue.
720 Constant *C = V[0];
721 bool isZero = C->isNullValue();
722 bool isUndef = isa<UndefValue>(C);
723
724 if (isZero || isUndef) {
725 for (unsigned i = 1, e = V.size(); i != e; ++i)
726 if (V[i] != C) {
727 isZero = isUndef = false;
728 break;
729 }
730 }
731
732 if (isZero)
Owen Andersonb292b8c2009-07-30 23:03:37 +0000733 return ConstantAggregateZero::get(T);
Owen Anderson4aa32952009-07-28 21:19:26 +0000734 if (isUndef)
Owen Andersonb292b8c2009-07-30 23:03:37 +0000735 return UndefValue::get(T);
Owen Anderson4aa32952009-07-28 21:19:26 +0000736
Owen Anderson4aa32952009-07-28 21:19:26 +0000737 return pImpl->VectorConstants.getOrCreate(T, V);
738}
739
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000740// Utility function for determining if a ConstantExpr is a CastOp or not. This
741// can't be inline because we don't want to #include Instruction.h into
742// Constant.h
743bool ConstantExpr::isCast() const {
744 return Instruction::isCast(getOpcode());
745}
746
Reid Spenceree3c9912006-12-04 05:19:50 +0000747bool ConstantExpr::isCompare() const {
Nick Lewyckya21d3da2009-07-08 03:04:38 +0000748 return getOpcode() == Instruction::ICmp || getOpcode() == Instruction::FCmp;
Reid Spenceree3c9912006-12-04 05:19:50 +0000749}
750
Dan Gohman7190d482009-09-10 23:37:55 +0000751bool ConstantExpr::isGEPWithNoNotionalOverIndexing() const {
752 if (getOpcode() != Instruction::GetElementPtr) return false;
753
754 gep_type_iterator GEPI = gep_type_begin(this), E = gep_type_end(this);
Oscar Fuentes40b31ad2010-08-02 06:00:15 +0000755 User::const_op_iterator OI = llvm::next(this->op_begin());
Dan Gohman7190d482009-09-10 23:37:55 +0000756
757 // Skip the first index, as it has no static limit.
758 ++GEPI;
759 ++OI;
760
761 // The remaining indices must be compile-time known integers within the
762 // bounds of the corresponding notional static array types.
763 for (; GEPI != E; ++GEPI, ++OI) {
764 ConstantInt *CI = dyn_cast<ConstantInt>(*OI);
765 if (!CI) return false;
Chris Lattner229907c2011-07-18 04:54:35 +0000766 if (ArrayType *ATy = dyn_cast<ArrayType>(*GEPI))
Dan Gohman7190d482009-09-10 23:37:55 +0000767 if (CI->getValue().getActiveBits() > 64 ||
768 CI->getZExtValue() >= ATy->getNumElements())
769 return false;
770 }
771
772 // All the indices checked out.
773 return true;
774}
775
Dan Gohman1ecaf452008-05-31 00:58:22 +0000776bool ConstantExpr::hasIndices() const {
777 return getOpcode() == Instruction::ExtractValue ||
778 getOpcode() == Instruction::InsertValue;
779}
780
Jay Foad0091fe82011-04-13 15:22:40 +0000781ArrayRef<unsigned> ConstantExpr::getIndices() const {
Dan Gohman1ecaf452008-05-31 00:58:22 +0000782 if (const ExtractValueConstantExpr *EVCE =
783 dyn_cast<ExtractValueConstantExpr>(this))
784 return EVCE->Indices;
Dan Gohmana469bdb2008-06-23 16:39:44 +0000785
786 return cast<InsertValueConstantExpr>(this)->Indices;
Dan Gohman1ecaf452008-05-31 00:58:22 +0000787}
788
Reid Spencer10fbf0e2006-12-03 05:48:19 +0000789unsigned ConstantExpr::getPredicate() const {
Chris Lattnerd04e32d2011-07-17 06:01:30 +0000790 assert(isCompare());
Chris Lattneref650092007-10-18 16:26:24 +0000791 return ((const CompareConstantExpr*)this)->predicate;
Reid Spencer10fbf0e2006-12-03 05:48:19 +0000792}
Chris Lattner60e0dd72001-10-03 06:12:09 +0000793
Chris Lattner7c1018a2006-07-14 19:37:40 +0000794/// getWithOperandReplaced - Return a constant expression identical to this
795/// one, but with the specified operand set to the specified value.
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000796Constant *
797ConstantExpr::getWithOperandReplaced(unsigned OpNo, Constant *Op) const {
Chris Lattner7c1018a2006-07-14 19:37:40 +0000798 assert(OpNo < getNumOperands() && "Operand num is out of range!");
799 assert(Op->getType() == getOperand(OpNo)->getType() &&
800 "Replacing operand with value of different type!");
Chris Lattner227816342006-07-14 22:20:01 +0000801 if (getOperand(OpNo) == Op)
802 return const_cast<ConstantExpr*>(this);
Chris Lattner7c1018a2006-07-14 19:37:40 +0000803
Chris Lattner227816342006-07-14 22:20:01 +0000804 Constant *Op0, *Op1, *Op2;
Chris Lattner7c1018a2006-07-14 19:37:40 +0000805 switch (getOpcode()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000806 case Instruction::Trunc:
807 case Instruction::ZExt:
808 case Instruction::SExt:
809 case Instruction::FPTrunc:
810 case Instruction::FPExt:
811 case Instruction::UIToFP:
812 case Instruction::SIToFP:
813 case Instruction::FPToUI:
814 case Instruction::FPToSI:
815 case Instruction::PtrToInt:
816 case Instruction::IntToPtr:
817 case Instruction::BitCast:
818 return ConstantExpr::getCast(getOpcode(), Op, getType());
Chris Lattner227816342006-07-14 22:20:01 +0000819 case Instruction::Select:
820 Op0 = (OpNo == 0) ? Op : getOperand(0);
821 Op1 = (OpNo == 1) ? Op : getOperand(1);
822 Op2 = (OpNo == 2) ? Op : getOperand(2);
823 return ConstantExpr::getSelect(Op0, Op1, Op2);
824 case Instruction::InsertElement:
825 Op0 = (OpNo == 0) ? Op : getOperand(0);
826 Op1 = (OpNo == 1) ? Op : getOperand(1);
827 Op2 = (OpNo == 2) ? Op : getOperand(2);
828 return ConstantExpr::getInsertElement(Op0, Op1, Op2);
829 case Instruction::ExtractElement:
830 Op0 = (OpNo == 0) ? Op : getOperand(0);
831 Op1 = (OpNo == 1) ? Op : getOperand(1);
832 return ConstantExpr::getExtractElement(Op0, Op1);
833 case Instruction::ShuffleVector:
834 Op0 = (OpNo == 0) ? Op : getOperand(0);
835 Op1 = (OpNo == 1) ? Op : getOperand(1);
836 Op2 = (OpNo == 2) ? Op : getOperand(2);
837 return ConstantExpr::getShuffleVector(Op0, Op1, Op2);
Chris Lattner7c1018a2006-07-14 19:37:40 +0000838 case Instruction::GetElementPtr: {
Chris Lattnerb5d70302007-02-19 20:01:23 +0000839 SmallVector<Constant*, 8> Ops;
Dan Gohman12fce772008-05-15 19:50:34 +0000840 Ops.resize(getNumOperands()-1);
Chris Lattner7c1018a2006-07-14 19:37:40 +0000841 for (unsigned i = 1, e = getNumOperands(); i != e; ++i)
Dan Gohman12fce772008-05-15 19:50:34 +0000842 Ops[i-1] = getOperand(i);
Chris Lattner7c1018a2006-07-14 19:37:40 +0000843 if (OpNo == 0)
Jay Foad2f5fc8c2011-07-21 15:15:37 +0000844 return
845 ConstantExpr::getGetElementPtr(Op, Ops,
846 cast<GEPOperator>(this)->isInBounds());
Chris Lattner7c1018a2006-07-14 19:37:40 +0000847 Ops[OpNo-1] = Op;
Jay Foad2f5fc8c2011-07-21 15:15:37 +0000848 return
849 ConstantExpr::getGetElementPtr(getOperand(0), Ops,
850 cast<GEPOperator>(this)->isInBounds());
Chris Lattner7c1018a2006-07-14 19:37:40 +0000851 }
Chris Lattner7c1018a2006-07-14 19:37:40 +0000852 default:
853 assert(getNumOperands() == 2 && "Must be binary operator?");
Chris Lattner227816342006-07-14 22:20:01 +0000854 Op0 = (OpNo == 0) ? Op : getOperand(0);
855 Op1 = (OpNo == 1) ? Op : getOperand(1);
Chris Lattnerb9c86512009-12-29 02:14:09 +0000856 return ConstantExpr::get(getOpcode(), Op0, Op1, SubclassOptionalData);
Chris Lattner227816342006-07-14 22:20:01 +0000857 }
858}
859
860/// getWithOperands - This returns the current constant expression with the
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000861/// operands replaced with the specified values. The specified array must
862/// have the same number of operands as our current one.
Chris Lattner227816342006-07-14 22:20:01 +0000863Constant *ConstantExpr::
Chris Lattner229907c2011-07-18 04:54:35 +0000864getWithOperands(ArrayRef<Constant*> Ops, Type *Ty) const {
Jay Foad5c984e562011-04-13 13:46:01 +0000865 assert(Ops.size() == getNumOperands() && "Operand count mismatch!");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000866 bool AnyChange = Ty != getType();
867 for (unsigned i = 0; i != Ops.size(); ++i)
Chris Lattner227816342006-07-14 22:20:01 +0000868 AnyChange |= Ops[i] != getOperand(i);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000869
Chris Lattner227816342006-07-14 22:20:01 +0000870 if (!AnyChange) // No operands changed, return self.
871 return const_cast<ConstantExpr*>(this);
872
873 switch (getOpcode()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000874 case Instruction::Trunc:
875 case Instruction::ZExt:
876 case Instruction::SExt:
877 case Instruction::FPTrunc:
878 case Instruction::FPExt:
879 case Instruction::UIToFP:
880 case Instruction::SIToFP:
881 case Instruction::FPToUI:
882 case Instruction::FPToSI:
883 case Instruction::PtrToInt:
884 case Instruction::IntToPtr:
885 case Instruction::BitCast:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000886 return ConstantExpr::getCast(getOpcode(), Ops[0], Ty);
Chris Lattner227816342006-07-14 22:20:01 +0000887 case Instruction::Select:
888 return ConstantExpr::getSelect(Ops[0], Ops[1], Ops[2]);
889 case Instruction::InsertElement:
890 return ConstantExpr::getInsertElement(Ops[0], Ops[1], Ops[2]);
891 case Instruction::ExtractElement:
892 return ConstantExpr::getExtractElement(Ops[0], Ops[1]);
893 case Instruction::ShuffleVector:
894 return ConstantExpr::getShuffleVector(Ops[0], Ops[1], Ops[2]);
Chris Lattnerb5d70302007-02-19 20:01:23 +0000895 case Instruction::GetElementPtr:
Jay Foad2f5fc8c2011-07-21 15:15:37 +0000896 return
897 ConstantExpr::getGetElementPtr(Ops[0], Ops.slice(1),
898 cast<GEPOperator>(this)->isInBounds());
Reid Spencer266e42b2006-12-23 06:05:41 +0000899 case Instruction::ICmp:
900 case Instruction::FCmp:
901 return ConstantExpr::getCompare(getPredicate(), Ops[0], Ops[1]);
Chris Lattner227816342006-07-14 22:20:01 +0000902 default:
903 assert(getNumOperands() == 2 && "Must be binary operator?");
Chris Lattnerb9c86512009-12-29 02:14:09 +0000904 return ConstantExpr::get(getOpcode(), Ops[0], Ops[1], SubclassOptionalData);
Chris Lattner7c1018a2006-07-14 19:37:40 +0000905 }
906}
907
Chris Lattner2f7c9632001-06-06 20:29:01 +0000908
909//===----------------------------------------------------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +0000910// isValueValidForType implementations
911
Chris Lattner229907c2011-07-18 04:54:35 +0000912bool ConstantInt::isValueValidForType(Type *Ty, uint64_t Val) {
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000913 unsigned NumBits = cast<IntegerType>(Ty)->getBitWidth(); // assert okay
Owen Anderson55f1c092009-08-13 21:58:54 +0000914 if (Ty == Type::getInt1Ty(Ty->getContext()))
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000915 return Val == 0 || Val == 1;
Reid Spencerd7a00d72007-02-05 23:47:56 +0000916 if (NumBits >= 64)
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000917 return true; // always true, has to fit in largest type
918 uint64_t Max = (1ll << NumBits) - 1;
919 return Val <= Max;
Reid Spencere7334722006-12-19 01:28:19 +0000920}
921
Chris Lattner229907c2011-07-18 04:54:35 +0000922bool ConstantInt::isValueValidForType(Type *Ty, int64_t Val) {
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000923 unsigned NumBits = cast<IntegerType>(Ty)->getBitWidth(); // assert okay
Owen Anderson55f1c092009-08-13 21:58:54 +0000924 if (Ty == Type::getInt1Ty(Ty->getContext()))
Reid Spencera94d3942007-01-19 21:13:56 +0000925 return Val == 0 || Val == 1 || Val == -1;
Reid Spencerd7a00d72007-02-05 23:47:56 +0000926 if (NumBits >= 64)
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000927 return true; // always true, has to fit in largest type
928 int64_t Min = -(1ll << (NumBits-1));
929 int64_t Max = (1ll << (NumBits-1)) - 1;
930 return (Val >= Min && Val <= Max);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000931}
932
Chris Lattner229907c2011-07-18 04:54:35 +0000933bool ConstantFP::isValueValidForType(Type *Ty, const APFloat& Val) {
Dale Johannesend246b2c2007-08-30 00:23:21 +0000934 // convert modifies in place, so make a copy.
935 APFloat Val2 = APFloat(Val);
Dale Johannesen4f0bd682008-10-09 23:00:39 +0000936 bool losesInfo;
Chris Lattner6b727592004-06-17 18:19:28 +0000937 switch (Ty->getTypeID()) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000938 default:
939 return false; // These can't be represented as floating point!
940
Dale Johannesend246b2c2007-08-30 00:23:21 +0000941 // FIXME rounding mode needs to be more flexible
Dale Johannesen4f0bd682008-10-09 23:00:39 +0000942 case Type::FloatTyID: {
943 if (&Val2.getSemantics() == &APFloat::IEEEsingle)
944 return true;
945 Val2.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven, &losesInfo);
946 return !losesInfo;
947 }
948 case Type::DoubleTyID: {
949 if (&Val2.getSemantics() == &APFloat::IEEEsingle ||
950 &Val2.getSemantics() == &APFloat::IEEEdouble)
951 return true;
952 Val2.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, &losesInfo);
953 return !losesInfo;
954 }
Dale Johannesenbdad8092007-08-09 22:51:36 +0000955 case Type::X86_FP80TyID:
Dale Johannesen028084e2007-09-12 03:30:33 +0000956 return &Val2.getSemantics() == &APFloat::IEEEsingle ||
957 &Val2.getSemantics() == &APFloat::IEEEdouble ||
958 &Val2.getSemantics() == &APFloat::x87DoubleExtended;
Dale Johannesenbdad8092007-08-09 22:51:36 +0000959 case Type::FP128TyID:
Dale Johannesen028084e2007-09-12 03:30:33 +0000960 return &Val2.getSemantics() == &APFloat::IEEEsingle ||
961 &Val2.getSemantics() == &APFloat::IEEEdouble ||
962 &Val2.getSemantics() == &APFloat::IEEEquad;
Dale Johannesen007aa372007-10-11 18:07:22 +0000963 case Type::PPC_FP128TyID:
964 return &Val2.getSemantics() == &APFloat::IEEEsingle ||
965 &Val2.getSemantics() == &APFloat::IEEEdouble ||
966 &Val2.getSemantics() == &APFloat::PPCDoubleDouble;
Chris Lattner2f7c9632001-06-06 20:29:01 +0000967 }
Chris Lattneraa2372562006-05-24 17:04:05 +0000968}
Chris Lattner9655e542001-07-20 19:16:02 +0000969
Chris Lattner49d855c2001-09-07 16:46:31 +0000970//===----------------------------------------------------------------------===//
Chris Lattner49d855c2001-09-07 16:46:31 +0000971// Factory Function Implementation
972
Chris Lattner229907c2011-07-18 04:54:35 +0000973ConstantAggregateZero* ConstantAggregateZero::get(Type* Ty) {
Chris Lattner13ee7952010-08-28 04:09:24 +0000974 assert((Ty->isStructTy() || Ty->isArrayTy() || Ty->isVectorTy()) &&
Owen Andersonb292b8c2009-07-30 23:03:37 +0000975 "Cannot create an aggregate zero of non-aggregate type!");
976
977 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
Owen Andersonb292b8c2009-07-30 23:03:37 +0000978 return pImpl->AggZeroConstants.getOrCreate(Ty, 0);
979}
980
Dan Gohman92b551b2009-03-03 02:55:14 +0000981/// destroyConstant - Remove the constant from the constant table...
982///
Owen Anderson0d2de8c2009-06-20 00:24:58 +0000983void ConstantAggregateZero::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000984 getType()->getContext().pImpl->AggZeroConstants.remove(this);
Chris Lattner9fba3da2004-02-15 05:53:04 +0000985 destroyConstantImpl();
986}
987
Dan Gohman92b551b2009-03-03 02:55:14 +0000988/// destroyConstant - Remove the constant from the constant table...
989///
Owen Anderson0d2de8c2009-06-20 00:24:58 +0000990void ConstantArray::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000991 getType()->getContext().pImpl->ArrayConstants.remove(this);
Chris Lattner98fa07b2003-05-23 20:03:32 +0000992 destroyConstantImpl();
993}
994
Reid Spencer2546b762007-01-26 07:37:34 +0000995/// isString - This method returns true if the array is an array of i8, and
996/// if the elements of the array are all ConstantInt's.
Chris Lattnere8dfcca2004-01-14 17:06:38 +0000997bool ConstantArray::isString() const {
Reid Spencer2546b762007-01-26 07:37:34 +0000998 // Check the element type for i8...
Duncan Sands9dff9be2010-02-15 16:12:20 +0000999 if (!getType()->getElementType()->isIntegerTy(8))
Chris Lattnere8dfcca2004-01-14 17:06:38 +00001000 return false;
1001 // Check the elements to make sure they are all integers, not constant
1002 // expressions.
1003 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
1004 if (!isa<ConstantInt>(getOperand(i)))
1005 return false;
1006 return true;
1007}
1008
Evan Cheng3763c5b2006-10-26 19:15:05 +00001009/// isCString - This method returns true if the array is a string (see
Dan Gohman92b551b2009-03-03 02:55:14 +00001010/// isString) and it ends in a null byte \\0 and does not contains any other
Evan Cheng3763c5b2006-10-26 19:15:05 +00001011/// null bytes except its terminator.
Owen Andersone4dcecd2009-07-13 21:27:19 +00001012bool ConstantArray::isCString() const {
Reid Spencer2546b762007-01-26 07:37:34 +00001013 // Check the element type for i8...
Duncan Sands9dff9be2010-02-15 16:12:20 +00001014 if (!getType()->getElementType()->isIntegerTy(8))
Evan Chenge974da62006-10-26 21:48:03 +00001015 return false;
Owen Andersone4dcecd2009-07-13 21:27:19 +00001016
Evan Chenge974da62006-10-26 21:48:03 +00001017 // Last element must be a null.
Owen Andersone4dcecd2009-07-13 21:27:19 +00001018 if (!getOperand(getNumOperands()-1)->isNullValue())
Evan Chenge974da62006-10-26 21:48:03 +00001019 return false;
1020 // Other elements must be non-null integers.
1021 for (unsigned i = 0, e = getNumOperands()-1; i != e; ++i) {
1022 if (!isa<ConstantInt>(getOperand(i)))
Evan Cheng3763c5b2006-10-26 19:15:05 +00001023 return false;
Owen Andersone4dcecd2009-07-13 21:27:19 +00001024 if (getOperand(i)->isNullValue())
Evan Chenge974da62006-10-26 21:48:03 +00001025 return false;
1026 }
Evan Cheng3763c5b2006-10-26 19:15:05 +00001027 return true;
1028}
1029
1030
Jay Foad2a31eb42011-06-28 08:24:19 +00001031/// convertToString - Helper function for getAsString() and getAsCString().
Chris Lattnerd04e32d2011-07-17 06:01:30 +00001032static std::string convertToString(const User *U, unsigned len) {
Jay Foad2a31eb42011-06-28 08:24:19 +00001033 std::string Result;
1034 Result.reserve(len);
1035 for (unsigned i = 0; i != len; ++i)
1036 Result.push_back((char)cast<ConstantInt>(U->getOperand(i))->getZExtValue());
1037 return Result;
1038}
1039
1040/// getAsString - If this array is isString(), then this method converts the
1041/// array to an std::string and returns it. Otherwise, it asserts out.
Dan Gohman92b551b2009-03-03 02:55:14 +00001042///
Chris Lattner81fabb02002-08-26 17:53:56 +00001043std::string ConstantArray::getAsString() const {
Chris Lattnere8dfcca2004-01-14 17:06:38 +00001044 assert(isString() && "Not a string!");
Jay Foad2a31eb42011-06-28 08:24:19 +00001045 return convertToString(this, getNumOperands());
1046}
1047
1048
1049/// getAsCString - If this array is isCString(), then this method converts the
1050/// array (without the trailing null byte) to an std::string and returns it.
1051/// Otherwise, it asserts out.
1052///
1053std::string ConstantArray::getAsCString() const {
1054 assert(isCString() && "Not a string!");
1055 return convertToString(this, getNumOperands() - 1);
Chris Lattner81fabb02002-08-26 17:53:56 +00001056}
1057
1058
Chris Lattner3462ae32001-12-03 22:26:30 +00001059//---- ConstantStruct::get() implementation...
Chris Lattner49d855c2001-09-07 16:46:31 +00001060//
Chris Lattnerb50d1352003-10-05 00:17:43 +00001061
Chris Lattnerd7a73302001-10-13 06:57:33 +00001062// destroyConstant - Remove the constant from the constant table...
Chris Lattner883ad0b2001-10-03 15:39:36 +00001063//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001064void ConstantStruct::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001065 getType()->getContext().pImpl->StructConstants.remove(this);
Chris Lattnerd7a73302001-10-13 06:57:33 +00001066 destroyConstantImpl();
1067}
Chris Lattner883ad0b2001-10-03 15:39:36 +00001068
Brian Gaeke02209042004-08-20 06:00:58 +00001069// destroyConstant - Remove the constant from the constant table...
1070//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001071void ConstantVector::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001072 getType()->getContext().pImpl->VectorConstants.remove(this);
Brian Gaeke02209042004-08-20 06:00:58 +00001073 destroyConstantImpl();
1074}
1075
Dan Gohman07159202007-10-17 17:51:30 +00001076/// getSplatValue - If this is a splat constant, where all of the
1077/// elements have the same value, return that value. Otherwise return null.
Duncan Sandscf0ff032011-02-01 08:39:12 +00001078Constant *ConstantVector::getSplatValue() const {
Dan Gohman07159202007-10-17 17:51:30 +00001079 // Check out first element.
1080 Constant *Elt = getOperand(0);
1081 // Then make sure all remaining elements point to the same value.
1082 for (unsigned I = 1, E = getNumOperands(); I < E; ++I)
Chris Lattnerd04e32d2011-07-17 06:01:30 +00001083 if (getOperand(I) != Elt)
1084 return 0;
Dan Gohman07159202007-10-17 17:51:30 +00001085 return Elt;
1086}
1087
Chris Lattner31b132c2009-10-28 00:01:44 +00001088//---- ConstantPointerNull::get() implementation.
Chris Lattnerd7a73302001-10-13 06:57:33 +00001089//
Chris Lattner98fa07b2003-05-23 20:03:32 +00001090
Chris Lattner229907c2011-07-18 04:54:35 +00001091ConstantPointerNull *ConstantPointerNull::get(PointerType *Ty) {
Owen Andersonc8c30262009-07-31 22:45:43 +00001092 return Ty->getContext().pImpl->NullPtrConstants.getOrCreate(Ty, 0);
Chris Lattner883ad0b2001-10-03 15:39:36 +00001093}
1094
Chris Lattner0c6e0b92002-08-18 00:40:04 +00001095// destroyConstant - Remove the constant from the constant table...
1096//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001097void ConstantPointerNull::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001098 getType()->getContext().pImpl->NullPtrConstants.remove(this);
Chris Lattner0c6e0b92002-08-18 00:40:04 +00001099 destroyConstantImpl();
1100}
1101
1102
Chris Lattner31b132c2009-10-28 00:01:44 +00001103//---- UndefValue::get() implementation.
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001104//
1105
Chris Lattner229907c2011-07-18 04:54:35 +00001106UndefValue *UndefValue::get(Type *Ty) {
Owen Andersonc8c30262009-07-31 22:45:43 +00001107 return Ty->getContext().pImpl->UndefValueConstants.getOrCreate(Ty, 0);
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001108}
1109
1110// destroyConstant - Remove the constant from the constant table.
1111//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001112void UndefValue::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001113 getType()->getContext().pImpl->UndefValueConstants.remove(this);
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001114 destroyConstantImpl();
1115}
1116
Chris Lattner31b132c2009-10-28 00:01:44 +00001117//---- BlockAddress::get() implementation.
1118//
1119
1120BlockAddress *BlockAddress::get(BasicBlock *BB) {
1121 assert(BB->getParent() != 0 && "Block must have a parent");
1122 return get(BB->getParent(), BB);
1123}
1124
1125BlockAddress *BlockAddress::get(Function *F, BasicBlock *BB) {
1126 BlockAddress *&BA =
1127 F->getContext().pImpl->BlockAddresses[std::make_pair(F, BB)];
1128 if (BA == 0)
1129 BA = new BlockAddress(F, BB);
1130
1131 assert(BA->getFunction() == F && "Basic block moved between functions");
1132 return BA;
1133}
1134
1135BlockAddress::BlockAddress(Function *F, BasicBlock *BB)
1136: Constant(Type::getInt8PtrTy(F->getContext()), Value::BlockAddressVal,
1137 &Op<0>(), 2) {
Chris Lattnerc559a9f2009-11-01 03:03:03 +00001138 setOperand(0, F);
1139 setOperand(1, BB);
Chris Lattneraa99c942009-11-01 01:27:45 +00001140 BB->AdjustBlockAddressRefCount(1);
Chris Lattner31b132c2009-10-28 00:01:44 +00001141}
1142
1143
1144// destroyConstant - Remove the constant from the constant table.
1145//
1146void BlockAddress::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001147 getFunction()->getType()->getContext().pImpl
Chris Lattner31b132c2009-10-28 00:01:44 +00001148 ->BlockAddresses.erase(std::make_pair(getFunction(), getBasicBlock()));
Chris Lattneraa99c942009-11-01 01:27:45 +00001149 getBasicBlock()->AdjustBlockAddressRefCount(-1);
Chris Lattner31b132c2009-10-28 00:01:44 +00001150 destroyConstantImpl();
1151}
1152
1153void BlockAddress::replaceUsesOfWithOnConstant(Value *From, Value *To, Use *U) {
1154 // This could be replacing either the Basic Block or the Function. In either
1155 // case, we have to remove the map entry.
1156 Function *NewF = getFunction();
1157 BasicBlock *NewBB = getBasicBlock();
1158
1159 if (U == &Op<0>())
1160 NewF = cast<Function>(To);
1161 else
1162 NewBB = cast<BasicBlock>(To);
1163
1164 // See if the 'new' entry already exists, if not, just update this in place
1165 // and return early.
1166 BlockAddress *&NewBA =
1167 getContext().pImpl->BlockAddresses[std::make_pair(NewF, NewBB)];
1168 if (NewBA == 0) {
Chris Lattnerc559a9f2009-11-01 03:03:03 +00001169 getBasicBlock()->AdjustBlockAddressRefCount(-1);
1170
Chris Lattner31b132c2009-10-28 00:01:44 +00001171 // Remove the old entry, this can't cause the map to rehash (just a
1172 // tombstone will get added).
1173 getContext().pImpl->BlockAddresses.erase(std::make_pair(getFunction(),
1174 getBasicBlock()));
1175 NewBA = this;
Chris Lattnerc559a9f2009-11-01 03:03:03 +00001176 setOperand(0, NewF);
1177 setOperand(1, NewBB);
1178 getBasicBlock()->AdjustBlockAddressRefCount(1);
Chris Lattner31b132c2009-10-28 00:01:44 +00001179 return;
1180 }
1181
1182 // Otherwise, I do need to replace this with an existing value.
1183 assert(NewBA != this && "I didn't contain From!");
1184
1185 // Everyone using this now uses the replacement.
Chris Lattneraf1783f2011-07-15 06:18:52 +00001186 replaceAllUsesWith(NewBA);
Chris Lattner31b132c2009-10-28 00:01:44 +00001187
1188 destroyConstant();
1189}
1190
1191//---- ConstantExpr::get() implementations.
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001192//
Reid Spencer8d9336d2006-12-31 05:26:44 +00001193
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001194/// This is a utility function to handle folding of casts and lookup of the
Duncan Sands7d6c8ae2008-03-30 19:38:55 +00001195/// cast in the ExprConstants map. It is used by the various get* methods below.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001196static inline Constant *getFoldedCast(
Chris Lattner229907c2011-07-18 04:54:35 +00001197 Instruction::CastOps opc, Constant *C, Type *Ty) {
Chris Lattner815ae2b2003-10-07 22:19:19 +00001198 assert(Ty->isFirstClassType() && "Cannot cast to an aggregate type!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001199 // Fold a few common cases
Chris Lattnerf5edeeb2010-02-01 20:48:08 +00001200 if (Constant *FC = ConstantFoldCastInstruction(opc, C, Ty))
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001201 return FC;
Chris Lattneracdbe712003-04-17 19:24:48 +00001202
Owen Anderson1584a292009-08-04 20:25:11 +00001203 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
1204
Vikram S. Adve4c485332002-07-15 18:19:33 +00001205 // Look up the constant in the table first to ensure uniqueness
Chris Lattner2b383d2e2003-05-13 21:37:02 +00001206 std::vector<Constant*> argVec(1, C);
Reid Spenceree3c9912006-12-04 05:19:50 +00001207 ExprMapKeyType Key(opc, argVec);
Owen Anderson2d7231d2009-06-17 18:40:29 +00001208
Owen Anderson1584a292009-08-04 20:25:11 +00001209 return pImpl->ExprConstants.getOrCreate(Ty, Key);
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001210}
Reid Spencerf37dc652006-12-05 19:14:13 +00001211
Chris Lattner229907c2011-07-18 04:54:35 +00001212Constant *ConstantExpr::getCast(unsigned oc, Constant *C, Type *Ty) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001213 Instruction::CastOps opc = Instruction::CastOps(oc);
1214 assert(Instruction::isCast(opc) && "opcode out of range");
1215 assert(C && Ty && "Null arguments to getCast");
Chris Lattner37bc78a2010-01-26 21:51:43 +00001216 assert(CastInst::castIsValid(opc, C, Ty) && "Invalid constantexpr cast!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001217
1218 switch (opc) {
Chris Lattner37bc78a2010-01-26 21:51:43 +00001219 default:
1220 llvm_unreachable("Invalid cast opcode");
1221 break;
1222 case Instruction::Trunc: return getTrunc(C, Ty);
1223 case Instruction::ZExt: return getZExt(C, Ty);
1224 case Instruction::SExt: return getSExt(C, Ty);
1225 case Instruction::FPTrunc: return getFPTrunc(C, Ty);
1226 case Instruction::FPExt: return getFPExtend(C, Ty);
1227 case Instruction::UIToFP: return getUIToFP(C, Ty);
1228 case Instruction::SIToFP: return getSIToFP(C, Ty);
1229 case Instruction::FPToUI: return getFPToUI(C, Ty);
1230 case Instruction::FPToSI: return getFPToSI(C, Ty);
1231 case Instruction::PtrToInt: return getPtrToInt(C, Ty);
1232 case Instruction::IntToPtr: return getIntToPtr(C, Ty);
1233 case Instruction::BitCast: return getBitCast(C, Ty);
Chris Lattner1ece6f82005-01-01 15:59:57 +00001234 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001235 return 0;
Reid Spencerf37dc652006-12-05 19:14:13 +00001236}
1237
Chris Lattner229907c2011-07-18 04:54:35 +00001238Constant *ConstantExpr::getZExtOrBitCast(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001239 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001240 return getBitCast(C, Ty);
1241 return getZExt(C, Ty);
Reid Spencer5c140882006-12-04 20:17:56 +00001242}
1243
Chris Lattner229907c2011-07-18 04:54:35 +00001244Constant *ConstantExpr::getSExtOrBitCast(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001245 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001246 return getBitCast(C, Ty);
1247 return getSExt(C, Ty);
Reid Spencer5c140882006-12-04 20:17:56 +00001248}
1249
Chris Lattner229907c2011-07-18 04:54:35 +00001250Constant *ConstantExpr::getTruncOrBitCast(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001251 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001252 return getBitCast(C, Ty);
1253 return getTrunc(C, Ty);
Reid Spencer5c140882006-12-04 20:17:56 +00001254}
1255
Chris Lattner229907c2011-07-18 04:54:35 +00001256Constant *ConstantExpr::getPointerCast(Constant *S, Type *Ty) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001257 assert(S->getType()->isPointerTy() && "Invalid cast");
1258 assert((Ty->isIntegerTy() || Ty->isPointerTy()) && "Invalid cast");
Reid Spencerbc245a02006-12-05 03:25:26 +00001259
Duncan Sands9dff9be2010-02-15 16:12:20 +00001260 if (Ty->isIntegerTy())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001261 return getPtrToInt(S, Ty);
1262 return getBitCast(S, Ty);
Reid Spencerbc245a02006-12-05 03:25:26 +00001263}
1264
Chris Lattner229907c2011-07-18 04:54:35 +00001265Constant *ConstantExpr::getIntegerCast(Constant *C, Type *Ty,
Reid Spencer56521c42006-12-12 00:51:07 +00001266 bool isSigned) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001267 assert(C->getType()->isIntOrIntVectorTy() &&
1268 Ty->isIntOrIntVectorTy() && "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001269 unsigned SrcBits = C->getType()->getScalarSizeInBits();
1270 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer56521c42006-12-12 00:51:07 +00001271 Instruction::CastOps opcode =
1272 (SrcBits == DstBits ? Instruction::BitCast :
1273 (SrcBits > DstBits ? Instruction::Trunc :
1274 (isSigned ? Instruction::SExt : Instruction::ZExt)));
1275 return getCast(opcode, C, Ty);
1276}
1277
Chris Lattner229907c2011-07-18 04:54:35 +00001278Constant *ConstantExpr::getFPCast(Constant *C, Type *Ty) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001279 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer56521c42006-12-12 00:51:07 +00001280 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001281 unsigned SrcBits = C->getType()->getScalarSizeInBits();
1282 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencerca104e82006-12-12 05:38:50 +00001283 if (SrcBits == DstBits)
1284 return C; // Avoid a useless cast
Reid Spencer56521c42006-12-12 00:51:07 +00001285 Instruction::CastOps opcode =
Jay Foad9f32cfd2011-01-27 14:44:55 +00001286 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt);
Reid Spencer56521c42006-12-12 00:51:07 +00001287 return getCast(opcode, C, Ty);
1288}
1289
Chris Lattner229907c2011-07-18 04:54:35 +00001290Constant *ConstantExpr::getTrunc(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001291#ifndef NDEBUG
1292 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1293 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1294#endif
1295 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001296 assert(C->getType()->isIntOrIntVectorTy() && "Trunc operand must be integer");
1297 assert(Ty->isIntOrIntVectorTy() && "Trunc produces only integral");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001298 assert(C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001299 "SrcTy must be larger than DestTy for Trunc!");
1300
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001301 return getFoldedCast(Instruction::Trunc, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001302}
1303
Chris Lattner229907c2011-07-18 04:54:35 +00001304Constant *ConstantExpr::getSExt(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001305#ifndef NDEBUG
1306 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1307 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1308#endif
1309 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001310 assert(C->getType()->isIntOrIntVectorTy() && "SExt operand must be integral");
1311 assert(Ty->isIntOrIntVectorTy() && "SExt produces only integer");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001312 assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001313 "SrcTy must be smaller than DestTy for SExt!");
1314
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001315 return getFoldedCast(Instruction::SExt, C, Ty);
Chris Lattnerdd284742004-04-04 23:20:30 +00001316}
1317
Chris Lattner229907c2011-07-18 04:54:35 +00001318Constant *ConstantExpr::getZExt(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001319#ifndef NDEBUG
1320 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1321 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1322#endif
1323 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001324 assert(C->getType()->isIntOrIntVectorTy() && "ZEXt operand must be integral");
1325 assert(Ty->isIntOrIntVectorTy() && "ZExt produces only integer");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001326 assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001327 "SrcTy must be smaller than DestTy for ZExt!");
1328
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001329 return getFoldedCast(Instruction::ZExt, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001330}
1331
Chris Lattner229907c2011-07-18 04:54:35 +00001332Constant *ConstantExpr::getFPTrunc(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001333#ifndef NDEBUG
1334 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1335 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1336#endif
1337 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001338 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001339 C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001340 "This is an illegal floating point truncation!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001341 return getFoldedCast(Instruction::FPTrunc, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001342}
1343
Chris Lattner229907c2011-07-18 04:54:35 +00001344Constant *ConstantExpr::getFPExtend(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001345#ifndef NDEBUG
1346 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1347 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1348#endif
1349 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001350 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001351 C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001352 "This is an illegal floating point extension!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001353 return getFoldedCast(Instruction::FPExt, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001354}
1355
Chris Lattner229907c2011-07-18 04:54:35 +00001356Constant *ConstantExpr::getUIToFP(Constant *C, Type *Ty) {
Devang Pateld26344d2008-11-03 23:20:04 +00001357#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001358 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1359 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001360#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001361 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001362 assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00001363 "This is an illegal uint to floating point cast!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001364 return getFoldedCast(Instruction::UIToFP, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001365}
1366
Chris Lattner229907c2011-07-18 04:54:35 +00001367Constant *ConstantExpr::getSIToFP(Constant *C, Type *Ty) {
Devang Pateld26344d2008-11-03 23:20:04 +00001368#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001369 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1370 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001371#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001372 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001373 assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001374 "This is an illegal sint to floating point cast!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001375 return getFoldedCast(Instruction::SIToFP, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001376}
1377
Chris Lattner229907c2011-07-18 04:54:35 +00001378Constant *ConstantExpr::getFPToUI(Constant *C, Type *Ty) {
Devang Pateld26344d2008-11-03 23:20:04 +00001379#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001380 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1381 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001382#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001383 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001384 assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00001385 "This is an illegal floating point to uint cast!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001386 return getFoldedCast(Instruction::FPToUI, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001387}
1388
Chris Lattner229907c2011-07-18 04:54:35 +00001389Constant *ConstantExpr::getFPToSI(Constant *C, Type *Ty) {
Devang Pateld26344d2008-11-03 23:20:04 +00001390#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001391 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1392 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001393#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001394 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001395 assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00001396 "This is an illegal floating point to sint cast!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001397 return getFoldedCast(Instruction::FPToSI, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001398}
1399
Chris Lattner229907c2011-07-18 04:54:35 +00001400Constant *ConstantExpr::getPtrToInt(Constant *C, Type *DstTy) {
Nadav Rotem3924cb02011-12-05 06:29:09 +00001401 assert(C->getType()->getScalarType()->isPointerTy() &&
1402 "PtrToInt source must be pointer or pointer vector");
1403 assert(DstTy->getScalarType()->isIntegerTy() &&
1404 "PtrToInt destination must be integer or integer vector");
1405 assert(C->getType()->getNumElements() == DstTy->getNumElements() &&
1406 "Invalid cast between a different number of vector elements");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001407 return getFoldedCast(Instruction::PtrToInt, C, DstTy);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001408}
1409
Chris Lattner229907c2011-07-18 04:54:35 +00001410Constant *ConstantExpr::getIntToPtr(Constant *C, Type *DstTy) {
Nadav Rotem3924cb02011-12-05 06:29:09 +00001411 assert(C->getType()->getScalarType()->isIntegerTy() &&
1412 "IntToPtr source must be integer or integer vector");
1413 assert(DstTy->getScalarType()->isPointerTy() &&
1414 "IntToPtr destination must be a pointer or pointer vector");
1415 assert(C->getType()->getNumElements() == DstTy->getNumElements() &&
1416 "Invalid cast between a different number of vector elements");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001417 return getFoldedCast(Instruction::IntToPtr, C, DstTy);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001418}
1419
Chris Lattner229907c2011-07-18 04:54:35 +00001420Constant *ConstantExpr::getBitCast(Constant *C, Type *DstTy) {
Chris Lattner37bc78a2010-01-26 21:51:43 +00001421 assert(CastInst::castIsValid(Instruction::BitCast, C, DstTy) &&
1422 "Invalid constantexpr bitcast!");
Chris Lattnercbeda872009-03-21 06:55:54 +00001423
1424 // It is common to ask for a bitcast of a value to its own type, handle this
1425 // speedily.
1426 if (C->getType() == DstTy) return C;
1427
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001428 return getFoldedCast(Instruction::BitCast, C, DstTy);
Chris Lattnerdd284742004-04-04 23:20:30 +00001429}
1430
Chris Lattner887ecac2011-07-09 18:23:52 +00001431Constant *ConstantExpr::get(unsigned Opcode, Constant *C1, Constant *C2,
1432 unsigned Flags) {
1433 // Check the operands for consistency first.
Reid Spencer7eb55b32006-11-02 01:53:59 +00001434 assert(Opcode >= Instruction::BinaryOpsBegin &&
1435 Opcode < Instruction::BinaryOpsEnd &&
Chris Lattner38a9bcd2003-05-21 17:49:25 +00001436 "Invalid opcode in binary constant expression");
1437 assert(C1->getType() == C2->getType() &&
1438 "Operand types in binary constant expression should match");
Owen Anderson61794042009-06-17 20:10:08 +00001439
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001440#ifndef NDEBUG
1441 switch (Opcode) {
Dan Gohmana5b96452009-06-04 22:49:04 +00001442 case Instruction::Add:
Reid Spencer7eb55b32006-11-02 01:53:59 +00001443 case Instruction::Sub:
Dan Gohmana5b96452009-06-04 22:49:04 +00001444 case Instruction::Mul:
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001445 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001446 assert(C1->getType()->isIntOrIntVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001447 "Tried to create an integer operation on a non-integer type!");
1448 break;
1449 case Instruction::FAdd:
1450 case Instruction::FSub:
1451 case Instruction::FMul:
1452 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001453 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001454 "Tried to create a floating-point operation on a "
1455 "non-floating-point type!");
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001456 break;
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001457 case Instruction::UDiv:
1458 case Instruction::SDiv:
1459 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001460 assert(C1->getType()->isIntOrIntVectorTy() &&
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001461 "Tried to create an arithmetic operation on a non-arithmetic type!");
1462 break;
1463 case Instruction::FDiv:
1464 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001465 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001466 "Tried to create an arithmetic operation on a non-arithmetic type!");
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001467 break;
Reid Spencer7eb55b32006-11-02 01:53:59 +00001468 case Instruction::URem:
1469 case Instruction::SRem:
1470 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001471 assert(C1->getType()->isIntOrIntVectorTy() &&
Reid Spencer7eb55b32006-11-02 01:53:59 +00001472 "Tried to create an arithmetic operation on a non-arithmetic type!");
1473 break;
1474 case Instruction::FRem:
1475 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001476 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001477 "Tried to create an arithmetic operation on a non-arithmetic type!");
Reid Spencer7eb55b32006-11-02 01:53:59 +00001478 break;
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001479 case Instruction::And:
1480 case Instruction::Or:
1481 case Instruction::Xor:
1482 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001483 assert(C1->getType()->isIntOrIntVectorTy() &&
Misha Brukman3852f652005-01-27 06:46:38 +00001484 "Tried to create a logical operation on a non-integral type!");
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001485 break;
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001486 case Instruction::Shl:
Reid Spencerfdff9382006-11-08 06:47:33 +00001487 case Instruction::LShr:
1488 case Instruction::AShr:
Reid Spencer2341c222007-02-02 02:16:23 +00001489 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001490 assert(C1->getType()->isIntOrIntVectorTy() &&
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001491 "Tried to create a shift operation on a non-integer type!");
1492 break;
1493 default:
1494 break;
1495 }
1496#endif
1497
Chris Lattner887ecac2011-07-09 18:23:52 +00001498 if (Constant *FC = ConstantFoldBinaryInstruction(Opcode, C1, C2))
1499 return FC; // Fold a few common cases.
1500
1501 std::vector<Constant*> argVec(1, C1);
1502 argVec.push_back(C2);
1503 ExprMapKeyType Key(Opcode, argVec, 0, Flags);
1504
1505 LLVMContextImpl *pImpl = C1->getContext().pImpl;
1506 return pImpl->ExprConstants.getOrCreate(C1->getType(), Key);
Reid Spencera009d0d2006-12-04 21:35:24 +00001507}
1508
Chris Lattner229907c2011-07-18 04:54:35 +00001509Constant *ConstantExpr::getSizeOf(Type* Ty) {
Owen Anderson487375e2009-07-29 18:55:55 +00001510 // sizeof is implemented as: (i64) gep (Ty*)null, 1
1511 // Note that a non-inbounds gep is used, as null isn't within any object.
Owen Anderson55f1c092009-08-13 21:58:54 +00001512 Constant *GEPIdx = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
Owen Anderson487375e2009-07-29 18:55:55 +00001513 Constant *GEP = getGetElementPtr(
Jay Foaded8db7d2011-07-21 14:31:17 +00001514 Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx);
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001515 return getPtrToInt(GEP,
1516 Type::getInt64Ty(Ty->getContext()));
Owen Anderson487375e2009-07-29 18:55:55 +00001517}
1518
Chris Lattner229907c2011-07-18 04:54:35 +00001519Constant *ConstantExpr::getAlignOf(Type* Ty) {
Dan Gohmancf913832010-01-28 02:15:55 +00001520 // alignof is implemented as: (i64) gep ({i1,Ty}*)null, 0, 1
Dan Gohman50c09d02009-08-11 17:57:01 +00001521 // Note that a non-inbounds gep is used, as null isn't within any object.
Chris Lattner229907c2011-07-18 04:54:35 +00001522 Type *AligningTy =
Chris Lattnerf3f545e2011-06-18 22:48:56 +00001523 StructType::get(Type::getInt1Ty(Ty->getContext()), Ty, NULL);
Owen Anderson5a1acd92009-07-31 20:28:14 +00001524 Constant *NullPtr = Constant::getNullValue(AligningTy->getPointerTo());
Dan Gohmana9be7392010-01-28 02:43:22 +00001525 Constant *Zero = ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0);
Owen Anderson55f1c092009-08-13 21:58:54 +00001526 Constant *One = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
Owen Anderson487375e2009-07-29 18:55:55 +00001527 Constant *Indices[2] = { Zero, One };
Jay Foaded8db7d2011-07-21 14:31:17 +00001528 Constant *GEP = getGetElementPtr(NullPtr, Indices);
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001529 return getPtrToInt(GEP,
1530 Type::getInt64Ty(Ty->getContext()));
Owen Anderson487375e2009-07-29 18:55:55 +00001531}
1532
Chris Lattner229907c2011-07-18 04:54:35 +00001533Constant *ConstantExpr::getOffsetOf(StructType* STy, unsigned FieldNo) {
Dan Gohmanede94e62010-02-01 16:37:38 +00001534 return getOffsetOf(STy, ConstantInt::get(Type::getInt32Ty(STy->getContext()),
1535 FieldNo));
1536}
1537
Chris Lattner229907c2011-07-18 04:54:35 +00001538Constant *ConstantExpr::getOffsetOf(Type* Ty, Constant *FieldNo) {
Dan Gohmanff3af7252009-08-16 21:26:11 +00001539 // offsetof is implemented as: (i64) gep (Ty*)null, 0, FieldNo
1540 // Note that a non-inbounds gep is used, as null isn't within any object.
1541 Constant *GEPIdx[] = {
Dan Gohmanede94e62010-02-01 16:37:38 +00001542 ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0),
1543 FieldNo
Dan Gohmanff3af7252009-08-16 21:26:11 +00001544 };
1545 Constant *GEP = getGetElementPtr(
Jay Foaded8db7d2011-07-21 14:31:17 +00001546 Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx);
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001547 return getPtrToInt(GEP,
1548 Type::getInt64Ty(Ty->getContext()));
Dan Gohmanff3af7252009-08-16 21:26:11 +00001549}
Owen Anderson487375e2009-07-29 18:55:55 +00001550
Chris Lattner887ecac2011-07-09 18:23:52 +00001551Constant *ConstantExpr::getCompare(unsigned short Predicate,
1552 Constant *C1, Constant *C2) {
Reid Spencera009d0d2006-12-04 21:35:24 +00001553 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Chris Lattner887ecac2011-07-09 18:23:52 +00001554
1555 switch (Predicate) {
1556 default: llvm_unreachable("Invalid CmpInst predicate");
1557 case CmpInst::FCMP_FALSE: case CmpInst::FCMP_OEQ: case CmpInst::FCMP_OGT:
1558 case CmpInst::FCMP_OGE: case CmpInst::FCMP_OLT: case CmpInst::FCMP_OLE:
1559 case CmpInst::FCMP_ONE: case CmpInst::FCMP_ORD: case CmpInst::FCMP_UNO:
1560 case CmpInst::FCMP_UEQ: case CmpInst::FCMP_UGT: case CmpInst::FCMP_UGE:
1561 case CmpInst::FCMP_ULT: case CmpInst::FCMP_ULE: case CmpInst::FCMP_UNE:
1562 case CmpInst::FCMP_TRUE:
1563 return getFCmp(Predicate, C1, C2);
1564
1565 case CmpInst::ICMP_EQ: case CmpInst::ICMP_NE: case CmpInst::ICMP_UGT:
1566 case CmpInst::ICMP_UGE: case CmpInst::ICMP_ULT: case CmpInst::ICMP_ULE:
1567 case CmpInst::ICMP_SGT: case CmpInst::ICMP_SGE: case CmpInst::ICMP_SLT:
1568 case CmpInst::ICMP_SLE:
1569 return getICmp(Predicate, C1, C2);
1570 }
Chris Lattner29ca2c62004-08-04 18:50:09 +00001571}
1572
Chris Lattner887ecac2011-07-09 18:23:52 +00001573Constant *ConstantExpr::getSelect(Constant *C, Constant *V1, Constant *V2) {
Chris Lattner41632132008-12-29 00:16:12 +00001574 assert(!SelectInst::areInvalidOperands(C, V1, V2)&&"Invalid select operands");
Chris Lattner6e415c02004-03-12 05:54:04 +00001575
Chris Lattner887ecac2011-07-09 18:23:52 +00001576 if (Constant *SC = ConstantFoldSelectInstruction(C, V1, V2))
1577 return SC; // Fold common cases
Chris Lattner6e415c02004-03-12 05:54:04 +00001578
1579 std::vector<Constant*> argVec(3, C);
1580 argVec[1] = V1;
1581 argVec[2] = V2;
Reid Spenceree3c9912006-12-04 05:19:50 +00001582 ExprMapKeyType Key(Instruction::Select, argVec);
Owen Anderson61794042009-06-17 20:10:08 +00001583
Chris Lattner887ecac2011-07-09 18:23:52 +00001584 LLVMContextImpl *pImpl = C->getContext().pImpl;
1585 return pImpl->ExprConstants.getOrCreate(V1->getType(), Key);
Chris Lattner6e415c02004-03-12 05:54:04 +00001586}
1587
Jay Foaded8db7d2011-07-21 14:31:17 +00001588Constant *ConstantExpr::getGetElementPtr(Constant *C, ArrayRef<Value *> Idxs,
1589 bool InBounds) {
1590 if (Constant *FC = ConstantFoldGetElementPtr(C, InBounds, Idxs))
Chris Lattner94c8d292011-02-11 05:34:33 +00001591 return FC; // Fold a few common cases.
Dan Gohman1b849082009-09-07 23:54:19 +00001592
Chris Lattner887ecac2011-07-09 18:23:52 +00001593 // Get the result type of the getelementptr!
Jay Foadd1b78492011-07-25 09:48:08 +00001594 Type *Ty = GetElementPtrInst::getIndexedType(C->getType(), Idxs);
Chris Lattner887ecac2011-07-09 18:23:52 +00001595 assert(Ty && "GEP indices invalid!");
1596 unsigned AS = cast<PointerType>(C->getType())->getAddressSpace();
1597 Type *ReqTy = Ty->getPointerTo(AS);
1598
Duncan Sands19d0b472010-02-16 11:11:14 +00001599 assert(C->getType()->isPointerTy() &&
Dan Gohman1b849082009-09-07 23:54:19 +00001600 "Non-pointer type for constant GetElementPtr expression");
1601 // Look up the constant in the table first to ensure uniqueness
1602 std::vector<Constant*> ArgVec;
Jay Foaded8db7d2011-07-21 14:31:17 +00001603 ArgVec.reserve(1 + Idxs.size());
Dan Gohman1b849082009-09-07 23:54:19 +00001604 ArgVec.push_back(C);
Jay Foaded8db7d2011-07-21 14:31:17 +00001605 for (unsigned i = 0, e = Idxs.size(); i != e; ++i)
Dan Gohman1b849082009-09-07 23:54:19 +00001606 ArgVec.push_back(cast<Constant>(Idxs[i]));
1607 const ExprMapKeyType Key(Instruction::GetElementPtr, ArgVec, 0,
Chris Lattner94c8d292011-02-11 05:34:33 +00001608 InBounds ? GEPOperator::IsInBounds : 0);
Chris Lattner887ecac2011-07-09 18:23:52 +00001609
1610 LLVMContextImpl *pImpl = C->getContext().pImpl;
Dan Gohman1b849082009-09-07 23:54:19 +00001611 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
1612}
1613
Reid Spenceree3c9912006-12-04 05:19:50 +00001614Constant *
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001615ConstantExpr::getICmp(unsigned short pred, Constant *LHS, Constant *RHS) {
Reid Spenceree3c9912006-12-04 05:19:50 +00001616 assert(LHS->getType() == RHS->getType());
1617 assert(pred >= ICmpInst::FIRST_ICMP_PREDICATE &&
1618 pred <= ICmpInst::LAST_ICMP_PREDICATE && "Invalid ICmp Predicate");
1619
Chris Lattnerf5edeeb2010-02-01 20:48:08 +00001620 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
Reid Spenceree3c9912006-12-04 05:19:50 +00001621 return FC; // Fold a few common cases...
1622
1623 // Look up the constant in the table first to ensure uniqueness
1624 std::vector<Constant*> ArgVec;
1625 ArgVec.push_back(LHS);
1626 ArgVec.push_back(RHS);
Reid Spencerb1537492006-12-24 18:42:29 +00001627 // Get the key type with both the opcode and predicate
Reid Spenceree3c9912006-12-04 05:19:50 +00001628 const ExprMapKeyType Key(Instruction::ICmp, ArgVec, pred);
Owen Anderson61794042009-06-17 20:10:08 +00001629
Chris Lattner229907c2011-07-18 04:54:35 +00001630 Type *ResultTy = Type::getInt1Ty(LHS->getContext());
1631 if (VectorType *VT = dyn_cast<VectorType>(LHS->getType()))
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001632 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
1633
Owen Anderson1584a292009-08-04 20:25:11 +00001634 LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl;
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001635 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
Reid Spenceree3c9912006-12-04 05:19:50 +00001636}
1637
1638Constant *
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001639ConstantExpr::getFCmp(unsigned short pred, Constant *LHS, Constant *RHS) {
Reid Spenceree3c9912006-12-04 05:19:50 +00001640 assert(LHS->getType() == RHS->getType());
1641 assert(pred <= FCmpInst::LAST_FCMP_PREDICATE && "Invalid FCmp Predicate");
1642
Chris Lattnerf5edeeb2010-02-01 20:48:08 +00001643 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
Reid Spenceree3c9912006-12-04 05:19:50 +00001644 return FC; // Fold a few common cases...
1645
1646 // Look up the constant in the table first to ensure uniqueness
1647 std::vector<Constant*> ArgVec;
1648 ArgVec.push_back(LHS);
1649 ArgVec.push_back(RHS);
Reid Spencerb1537492006-12-24 18:42:29 +00001650 // Get the key type with both the opcode and predicate
Reid Spenceree3c9912006-12-04 05:19:50 +00001651 const ExprMapKeyType Key(Instruction::FCmp, ArgVec, pred);
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001652
Chris Lattner229907c2011-07-18 04:54:35 +00001653 Type *ResultTy = Type::getInt1Ty(LHS->getContext());
1654 if (VectorType *VT = dyn_cast<VectorType>(LHS->getType()))
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001655 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
1656
Owen Anderson1584a292009-08-04 20:25:11 +00001657 LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl;
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001658 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
Reid Spenceree3c9912006-12-04 05:19:50 +00001659}
1660
Robert Bocchino23004482006-01-10 19:05:34 +00001661Constant *ConstantExpr::getExtractElement(Constant *Val, Constant *Idx) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001662 assert(Val->getType()->isVectorTy() &&
Reid Spencer09575ba2007-02-15 03:39:18 +00001663 "Tried to create extractelement operation on non-vector type!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001664 assert(Idx->getType()->isIntegerTy(32) &&
Reid Spencer2546b762007-01-26 07:37:34 +00001665 "Extractelement index must be i32 type!");
Chris Lattner887ecac2011-07-09 18:23:52 +00001666
1667 if (Constant *FC = ConstantFoldExtractElementInstruction(Val, Idx))
Chris Lattner09660c92009-12-30 20:25:09 +00001668 return FC; // Fold a few common cases.
Chris Lattner887ecac2011-07-09 18:23:52 +00001669
Robert Bocchinoca27f032006-01-17 20:07:22 +00001670 // Look up the constant in the table first to ensure uniqueness
1671 std::vector<Constant*> ArgVec(1, Val);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001672 ArgVec.push_back(Idx);
Chris Lattner887ecac2011-07-09 18:23:52 +00001673 const ExprMapKeyType Key(Instruction::ExtractElement,ArgVec);
Owen Anderson61794042009-06-17 20:10:08 +00001674
Chris Lattner887ecac2011-07-09 18:23:52 +00001675 LLVMContextImpl *pImpl = Val->getContext().pImpl;
1676 Type *ReqTy = cast<VectorType>(Val->getType())->getElementType();
Owen Anderson1584a292009-08-04 20:25:11 +00001677 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001678}
1679
1680Constant *ConstantExpr::getInsertElement(Constant *Val, Constant *Elt,
1681 Constant *Idx) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001682 assert(Val->getType()->isVectorTy() &&
Reid Spencer09575ba2007-02-15 03:39:18 +00001683 "Tried to create insertelement operation on non-vector type!");
Reid Spencerd84d35b2007-02-15 02:26:10 +00001684 assert(Elt->getType() == cast<VectorType>(Val->getType())->getElementType()
Robert Bocchinoca27f032006-01-17 20:07:22 +00001685 && "Insertelement types must match!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001686 assert(Idx->getType()->isIntegerTy(32) &&
Reid Spencer2546b762007-01-26 07:37:34 +00001687 "Insertelement index must be i32 type!");
Robert Bocchinoca27f032006-01-17 20:07:22 +00001688
Chris Lattner887ecac2011-07-09 18:23:52 +00001689 if (Constant *FC = ConstantFoldInsertElementInstruction(Val, Elt, Idx))
1690 return FC; // Fold a few common cases.
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001691 // Look up the constant in the table first to ensure uniqueness
Chris Lattner887ecac2011-07-09 18:23:52 +00001692 std::vector<Constant*> ArgVec(1, Val);
1693 ArgVec.push_back(Elt);
1694 ArgVec.push_back(Idx);
1695 const ExprMapKeyType Key(Instruction::InsertElement,ArgVec);
Owen Anderson61794042009-06-17 20:10:08 +00001696
Chris Lattner887ecac2011-07-09 18:23:52 +00001697 LLVMContextImpl *pImpl = Val->getContext().pImpl;
1698 return pImpl->ExprConstants.getOrCreate(Val->getType(), Key);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001699}
1700
1701Constant *ConstantExpr::getShuffleVector(Constant *V1, Constant *V2,
1702 Constant *Mask) {
1703 assert(ShuffleVectorInst::isValidOperands(V1, V2, Mask) &&
1704 "Invalid shuffle vector constant expr operands!");
Nate Begeman94aa38d2009-02-12 21:28:33 +00001705
Chris Lattner887ecac2011-07-09 18:23:52 +00001706 if (Constant *FC = ConstantFoldShuffleVectorInstruction(V1, V2, Mask))
1707 return FC; // Fold a few common cases.
1708
Nate Begeman94aa38d2009-02-12 21:28:33 +00001709 unsigned NElts = cast<VectorType>(Mask->getType())->getNumElements();
Chris Lattner229907c2011-07-18 04:54:35 +00001710 Type *EltTy = cast<VectorType>(V1->getType())->getElementType();
1711 Type *ShufTy = VectorType::get(EltTy, NElts);
Chris Lattner887ecac2011-07-09 18:23:52 +00001712
1713 // Look up the constant in the table first to ensure uniqueness
1714 std::vector<Constant*> ArgVec(1, V1);
1715 ArgVec.push_back(V2);
1716 ArgVec.push_back(Mask);
1717 const ExprMapKeyType Key(Instruction::ShuffleVector,ArgVec);
1718
1719 LLVMContextImpl *pImpl = ShufTy->getContext().pImpl;
1720 return pImpl->ExprConstants.getOrCreate(ShufTy, Key);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001721}
1722
Chris Lattner887ecac2011-07-09 18:23:52 +00001723Constant *ConstantExpr::getInsertValue(Constant *Agg, Constant *Val,
Jay Foad57aa6362011-07-13 10:26:04 +00001724 ArrayRef<unsigned> Idxs) {
1725 assert(ExtractValueInst::getIndexedType(Agg->getType(),
1726 Idxs) == Val->getType() &&
Dan Gohman12fce772008-05-15 19:50:34 +00001727 "insertvalue indices invalid!");
Dan Gohman0752bff2008-05-23 00:36:11 +00001728 assert(Agg->getType()->isFirstClassType() &&
Chris Lattner6ebfbf52011-07-12 05:26:21 +00001729 "Non-first-class type for constant insertvalue expression");
Jay Foad57aa6362011-07-13 10:26:04 +00001730 Constant *FC = ConstantFoldInsertValueInstruction(Agg, Val, Idxs);
Chris Lattner6ebfbf52011-07-12 05:26:21 +00001731 assert(FC && "insertvalue constant expr couldn't be folded!");
Dan Gohmand5d24f62008-07-21 23:30:30 +00001732 return FC;
Dan Gohman12fce772008-05-15 19:50:34 +00001733}
1734
Chris Lattner887ecac2011-07-09 18:23:52 +00001735Constant *ConstantExpr::getExtractValue(Constant *Agg,
Jay Foad57aa6362011-07-13 10:26:04 +00001736 ArrayRef<unsigned> Idxs) {
Dan Gohman0752bff2008-05-23 00:36:11 +00001737 assert(Agg->getType()->isFirstClassType() &&
Chris Lattner887ecac2011-07-09 18:23:52 +00001738 "Tried to create extractelement operation on non-first-class type!");
Dan Gohman12fce772008-05-15 19:50:34 +00001739
Chris Lattner229907c2011-07-18 04:54:35 +00001740 Type *ReqTy = ExtractValueInst::getIndexedType(Agg->getType(), Idxs);
Chandler Carruth9db56b82011-07-10 09:45:35 +00001741 (void)ReqTy;
Chris Lattner887ecac2011-07-09 18:23:52 +00001742 assert(ReqTy && "extractvalue indices invalid!");
1743
Dan Gohman0752bff2008-05-23 00:36:11 +00001744 assert(Agg->getType()->isFirstClassType() &&
1745 "Non-first-class type for constant extractvalue expression");
Jay Foad57aa6362011-07-13 10:26:04 +00001746 Constant *FC = ConstantFoldExtractValueInstruction(Agg, Idxs);
Dan Gohmand5d24f62008-07-21 23:30:30 +00001747 assert(FC && "ExtractValue constant expr couldn't be folded!");
1748 return FC;
Dan Gohman12fce772008-05-15 19:50:34 +00001749}
1750
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001751Constant *ConstantExpr::getNeg(Constant *C, bool HasNUW, bool HasNSW) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001752 assert(C->getType()->isIntOrIntVectorTy() &&
Owen Anderson487375e2009-07-29 18:55:55 +00001753 "Cannot NEG a nonintegral value!");
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001754 return getSub(ConstantFP::getZeroValueForNegation(C->getType()),
1755 C, HasNUW, HasNSW);
Owen Anderson487375e2009-07-29 18:55:55 +00001756}
1757
Chris Lattnera676c0f2011-02-07 16:40:21 +00001758Constant *ConstantExpr::getFNeg(Constant *C) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001759 assert(C->getType()->isFPOrFPVectorTy() &&
Owen Anderson487375e2009-07-29 18:55:55 +00001760 "Cannot FNEG a non-floating-point value!");
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001761 return getFSub(ConstantFP::getZeroValueForNegation(C->getType()), C);
Owen Anderson487375e2009-07-29 18:55:55 +00001762}
1763
Chris Lattnera676c0f2011-02-07 16:40:21 +00001764Constant *ConstantExpr::getNot(Constant *C) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001765 assert(C->getType()->isIntOrIntVectorTy() &&
Owen Anderson487375e2009-07-29 18:55:55 +00001766 "Cannot NOT a nonintegral value!");
Owen Anderson5a1acd92009-07-31 20:28:14 +00001767 return get(Instruction::Xor, C, Constant::getAllOnesValue(C->getType()));
Owen Anderson487375e2009-07-29 18:55:55 +00001768}
1769
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001770Constant *ConstantExpr::getAdd(Constant *C1, Constant *C2,
1771 bool HasNUW, bool HasNSW) {
1772 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
1773 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
1774 return get(Instruction::Add, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00001775}
1776
Chris Lattnera676c0f2011-02-07 16:40:21 +00001777Constant *ConstantExpr::getFAdd(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001778 return get(Instruction::FAdd, C1, C2);
1779}
1780
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001781Constant *ConstantExpr::getSub(Constant *C1, Constant *C2,
1782 bool HasNUW, bool HasNSW) {
1783 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
1784 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
1785 return get(Instruction::Sub, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00001786}
1787
Chris Lattnera676c0f2011-02-07 16:40:21 +00001788Constant *ConstantExpr::getFSub(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001789 return get(Instruction::FSub, C1, C2);
1790}
1791
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001792Constant *ConstantExpr::getMul(Constant *C1, Constant *C2,
1793 bool HasNUW, bool HasNSW) {
1794 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
1795 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
1796 return get(Instruction::Mul, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00001797}
1798
Chris Lattnera676c0f2011-02-07 16:40:21 +00001799Constant *ConstantExpr::getFMul(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001800 return get(Instruction::FMul, C1, C2);
1801}
1802
Chris Lattner0d75eac2011-02-09 16:43:07 +00001803Constant *ConstantExpr::getUDiv(Constant *C1, Constant *C2, bool isExact) {
1804 return get(Instruction::UDiv, C1, C2,
1805 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00001806}
1807
Chris Lattner0d75eac2011-02-09 16:43:07 +00001808Constant *ConstantExpr::getSDiv(Constant *C1, Constant *C2, bool isExact) {
1809 return get(Instruction::SDiv, C1, C2,
1810 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00001811}
1812
Chris Lattnera676c0f2011-02-07 16:40:21 +00001813Constant *ConstantExpr::getFDiv(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001814 return get(Instruction::FDiv, C1, C2);
1815}
1816
Chris Lattnera676c0f2011-02-07 16:40:21 +00001817Constant *ConstantExpr::getURem(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001818 return get(Instruction::URem, C1, C2);
1819}
1820
Chris Lattnera676c0f2011-02-07 16:40:21 +00001821Constant *ConstantExpr::getSRem(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001822 return get(Instruction::SRem, C1, C2);
1823}
1824
Chris Lattnera676c0f2011-02-07 16:40:21 +00001825Constant *ConstantExpr::getFRem(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001826 return get(Instruction::FRem, C1, C2);
1827}
1828
Chris Lattnera676c0f2011-02-07 16:40:21 +00001829Constant *ConstantExpr::getAnd(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001830 return get(Instruction::And, C1, C2);
1831}
1832
Chris Lattnera676c0f2011-02-07 16:40:21 +00001833Constant *ConstantExpr::getOr(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001834 return get(Instruction::Or, C1, C2);
1835}
1836
Chris Lattnera676c0f2011-02-07 16:40:21 +00001837Constant *ConstantExpr::getXor(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001838 return get(Instruction::Xor, C1, C2);
1839}
1840
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001841Constant *ConstantExpr::getShl(Constant *C1, Constant *C2,
1842 bool HasNUW, bool HasNSW) {
1843 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
1844 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
1845 return get(Instruction::Shl, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00001846}
1847
Chris Lattner0d75eac2011-02-09 16:43:07 +00001848Constant *ConstantExpr::getLShr(Constant *C1, Constant *C2, bool isExact) {
1849 return get(Instruction::LShr, C1, C2,
1850 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00001851}
1852
Chris Lattner0d75eac2011-02-09 16:43:07 +00001853Constant *ConstantExpr::getAShr(Constant *C1, Constant *C2, bool isExact) {
1854 return get(Instruction::AShr, C1, C2,
1855 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00001856}
1857
Vikram S. Adve4c485332002-07-15 18:19:33 +00001858// destroyConstant - Remove the constant from the constant table...
1859//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001860void ConstantExpr::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001861 getType()->getContext().pImpl->ExprConstants.remove(this);
Vikram S. Adve4c485332002-07-15 18:19:33 +00001862 destroyConstantImpl();
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001863}
1864
Chris Lattner3cd8c562002-07-30 18:54:25 +00001865const char *ConstantExpr::getOpcodeName() const {
1866 return Instruction::getOpcodeName(getOpcode());
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001867}
Reid Spencer1ebe1ab2004-07-17 23:48:33 +00001868
Chris Lattnera3b94ba2010-03-30 20:48:48 +00001869
1870
1871GetElementPtrConstantExpr::
1872GetElementPtrConstantExpr(Constant *C, const std::vector<Constant*> &IdxList,
Chris Lattner229907c2011-07-18 04:54:35 +00001873 Type *DestTy)
Chris Lattnera3b94ba2010-03-30 20:48:48 +00001874 : ConstantExpr(DestTy, Instruction::GetElementPtr,
1875 OperandTraits<GetElementPtrConstantExpr>::op_end(this)
1876 - (IdxList.size()+1), IdxList.size()+1) {
1877 OperandList[0] = C;
1878 for (unsigned i = 0, E = IdxList.size(); i != E; ++i)
1879 OperandList[i+1] = IdxList[i];
1880}
1881
1882
Chris Lattnerc4062ba2005-10-03 21:58:36 +00001883//===----------------------------------------------------------------------===//
1884// replaceUsesOfWithOnConstant implementations
1885
Chris Lattner913849b2007-08-21 00:55:23 +00001886/// replaceUsesOfWithOnConstant - Update this constant array to change uses of
1887/// 'From' to be uses of 'To'. This must update the uniquing data structures
1888/// etc.
1889///
1890/// Note that we intentionally replace all uses of From with To here. Consider
1891/// a large array that uses 'From' 1000 times. By handling this case all here,
1892/// ConstantArray::replaceUsesOfWithOnConstant is only invoked once, and that
1893/// single invocation handles all 1000 uses. Handling them one at a time would
1894/// work, but would be really slow because it would have to unique each updated
1895/// array instance.
Chris Lattner31b132c2009-10-28 00:01:44 +00001896///
Chris Lattnerc4062ba2005-10-03 21:58:36 +00001897void ConstantArray::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattner7a1450d2005-10-04 18:13:04 +00001898 Use *U) {
Owen Andersonc2c79322009-07-28 18:32:17 +00001899 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
1900 Constant *ToC = cast<Constant>(To);
1901
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001902 LLVMContextImpl *pImpl = getType()->getContext().pImpl;
Owen Andersonc2c79322009-07-28 18:32:17 +00001903
Dan Gohmane4532f32009-09-15 15:58:07 +00001904 std::pair<LLVMContextImpl::ArrayConstantsTy::MapKey, ConstantArray*> Lookup;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001905 Lookup.first.first = cast<ArrayType>(getType());
Owen Andersonc2c79322009-07-28 18:32:17 +00001906 Lookup.second = this;
1907
1908 std::vector<Constant*> &Values = Lookup.first.second;
1909 Values.reserve(getNumOperands()); // Build replacement array.
1910
1911 // Fill values with the modified operands of the constant array. Also,
1912 // compute whether this turns into an all-zeros array.
1913 bool isAllZeros = false;
1914 unsigned NumUpdated = 0;
1915 if (!ToC->isNullValue()) {
1916 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
1917 Constant *Val = cast<Constant>(O->get());
1918 if (Val == From) {
1919 Val = ToC;
1920 ++NumUpdated;
1921 }
1922 Values.push_back(Val);
1923 }
1924 } else {
1925 isAllZeros = true;
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 if (isAllZeros) isAllZeros = Val->isNullValue();
1934 }
1935 }
1936
1937 Constant *Replacement = 0;
1938 if (isAllZeros) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001939 Replacement = ConstantAggregateZero::get(getType());
Owen Andersonc2c79322009-07-28 18:32:17 +00001940 } else {
1941 // Check to see if we have this array type already.
Owen Andersonc2c79322009-07-28 18:32:17 +00001942 bool Exists;
1943 LLVMContextImpl::ArrayConstantsTy::MapTy::iterator I =
1944 pImpl->ArrayConstants.InsertOrGetItem(Lookup, Exists);
1945
1946 if (Exists) {
Devang Patelf7188322009-09-03 01:39:20 +00001947 Replacement = I->second;
Owen Andersonc2c79322009-07-28 18:32:17 +00001948 } else {
1949 // Okay, the new shape doesn't exist in the system yet. Instead of
1950 // creating a new constant array, inserting it, replaceallusesof'ing the
1951 // old with the new, then deleting the old... just update the current one
1952 // in place!
1953 pImpl->ArrayConstants.MoveConstantToNewSlot(this, I);
1954
1955 // Update to the new value. Optimize for the case when we have a single
1956 // operand that we're changing, but handle bulk updates efficiently.
1957 if (NumUpdated == 1) {
1958 unsigned OperandToUpdate = U - OperandList;
1959 assert(getOperand(OperandToUpdate) == From &&
1960 "ReplaceAllUsesWith broken!");
1961 setOperand(OperandToUpdate, ToC);
1962 } else {
1963 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
1964 if (getOperand(i) == From)
1965 setOperand(i, ToC);
1966 }
1967 return;
1968 }
1969 }
Chris Lattnerb64419a2005-10-03 22:51:37 +00001970
1971 // Otherwise, I do need to replace this with an existing value.
Chris Lattnerc4062ba2005-10-03 21:58:36 +00001972 assert(Replacement != this && "I didn't contain From!");
1973
Chris Lattner7a1450d2005-10-04 18:13:04 +00001974 // Everyone using this now uses the replacement.
Chris Lattneraf1783f2011-07-15 06:18:52 +00001975 replaceAllUsesWith(Replacement);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00001976
1977 // Delete the old constant!
1978 destroyConstant();
1979}
1980
1981void ConstantStruct::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattner7a1450d2005-10-04 18:13:04 +00001982 Use *U) {
Owen Anderson45308b52009-07-27 22:29:26 +00001983 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
1984 Constant *ToC = cast<Constant>(To);
1985
1986 unsigned OperandToUpdate = U-OperandList;
1987 assert(getOperand(OperandToUpdate) == From && "ReplaceAllUsesWith broken!");
1988
Dan Gohmane4532f32009-09-15 15:58:07 +00001989 std::pair<LLVMContextImpl::StructConstantsTy::MapKey, ConstantStruct*> Lookup;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001990 Lookup.first.first = cast<StructType>(getType());
Owen Anderson45308b52009-07-27 22:29:26 +00001991 Lookup.second = this;
1992 std::vector<Constant*> &Values = Lookup.first.second;
1993 Values.reserve(getNumOperands()); // Build replacement struct.
1994
1995
1996 // Fill values with the modified operands of the constant struct. Also,
1997 // compute whether this turns into an all-zeros struct.
1998 bool isAllZeros = false;
1999 if (!ToC->isNullValue()) {
2000 for (Use *O = OperandList, *E = OperandList + getNumOperands(); O != E; ++O)
2001 Values.push_back(cast<Constant>(O->get()));
2002 } else {
2003 isAllZeros = true;
2004 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2005 Constant *Val = cast<Constant>(O->get());
2006 Values.push_back(Val);
2007 if (isAllZeros) isAllZeros = Val->isNullValue();
2008 }
2009 }
2010 Values[OperandToUpdate] = ToC;
2011
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002012 LLVMContextImpl *pImpl = getContext().pImpl;
Owen Anderson45308b52009-07-27 22:29:26 +00002013
2014 Constant *Replacement = 0;
2015 if (isAllZeros) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002016 Replacement = ConstantAggregateZero::get(getType());
Owen Anderson45308b52009-07-27 22:29:26 +00002017 } else {
Chris Lattner718da702010-07-17 06:13:52 +00002018 // Check to see if we have this struct type already.
Owen Anderson45308b52009-07-27 22:29:26 +00002019 bool Exists;
2020 LLVMContextImpl::StructConstantsTy::MapTy::iterator I =
2021 pImpl->StructConstants.InsertOrGetItem(Lookup, Exists);
2022
2023 if (Exists) {
Devang Patelf7188322009-09-03 01:39:20 +00002024 Replacement = I->second;
Owen Anderson45308b52009-07-27 22:29:26 +00002025 } else {
2026 // Okay, the new shape doesn't exist in the system yet. Instead of
2027 // creating a new constant struct, inserting it, replaceallusesof'ing the
2028 // old with the new, then deleting the old... just update the current one
2029 // in place!
2030 pImpl->StructConstants.MoveConstantToNewSlot(this, I);
2031
2032 // Update to the new value.
2033 setOperand(OperandToUpdate, ToC);
2034 return;
2035 }
2036 }
2037
2038 assert(Replacement != this && "I didn't contain From!");
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002039
Chris Lattner7a1450d2005-10-04 18:13:04 +00002040 // Everyone using this now uses the replacement.
Chris Lattneraf1783f2011-07-15 06:18:52 +00002041 replaceAllUsesWith(Replacement);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002042
2043 // Delete the old constant!
2044 destroyConstant();
2045}
2046
Reid Spencerd84d35b2007-02-15 02:26:10 +00002047void ConstantVector::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattner7a1450d2005-10-04 18:13:04 +00002048 Use *U) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002049 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2050
2051 std::vector<Constant*> Values;
2052 Values.reserve(getNumOperands()); // Build replacement array...
2053 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
2054 Constant *Val = getOperand(i);
2055 if (Val == From) Val = cast<Constant>(To);
2056 Values.push_back(Val);
2057 }
2058
Jay Foadb8a8bed32011-06-22 09:10:19 +00002059 Constant *Replacement = get(Values);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002060 assert(Replacement != this && "I didn't contain From!");
2061
Chris Lattner7a1450d2005-10-04 18:13:04 +00002062 // Everyone using this now uses the replacement.
Chris Lattneraf1783f2011-07-15 06:18:52 +00002063 replaceAllUsesWith(Replacement);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002064
2065 // Delete the old constant!
2066 destroyConstant();
2067}
2068
2069void ConstantExpr::replaceUsesOfWithOnConstant(Value *From, Value *ToV,
Chris Lattner7a1450d2005-10-04 18:13:04 +00002070 Use *U) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002071 assert(isa<Constant>(ToV) && "Cannot make Constant refer to non-constant!");
2072 Constant *To = cast<Constant>(ToV);
2073
2074 Constant *Replacement = 0;
2075 if (getOpcode() == Instruction::GetElementPtr) {
Chris Lattnerb5d70302007-02-19 20:01:23 +00002076 SmallVector<Constant*, 8> Indices;
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002077 Constant *Pointer = getOperand(0);
2078 Indices.reserve(getNumOperands()-1);
2079 if (Pointer == From) Pointer = To;
2080
2081 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
2082 Constant *Val = getOperand(i);
2083 if (Val == From) Val = To;
2084 Indices.push_back(Val);
2085 }
Jay Foaded8db7d2011-07-21 14:31:17 +00002086 Replacement = ConstantExpr::getGetElementPtr(Pointer, Indices,
Chris Lattner603af182011-02-11 05:37:21 +00002087 cast<GEPOperator>(this)->isInBounds());
Dan Gohman12fce772008-05-15 19:50:34 +00002088 } else if (getOpcode() == Instruction::ExtractValue) {
Dan Gohman12fce772008-05-15 19:50:34 +00002089 Constant *Agg = getOperand(0);
Dan Gohman12fce772008-05-15 19:50:34 +00002090 if (Agg == From) Agg = To;
2091
Jay Foad0091fe82011-04-13 15:22:40 +00002092 ArrayRef<unsigned> Indices = getIndices();
Jay Foad57aa6362011-07-13 10:26:04 +00002093 Replacement = ConstantExpr::getExtractValue(Agg, Indices);
Dan Gohman12fce772008-05-15 19:50:34 +00002094 } else if (getOpcode() == Instruction::InsertValue) {
Dan Gohman12fce772008-05-15 19:50:34 +00002095 Constant *Agg = getOperand(0);
2096 Constant *Val = getOperand(1);
Dan Gohman12fce772008-05-15 19:50:34 +00002097 if (Agg == From) Agg = To;
2098 if (Val == From) Val = To;
2099
Jay Foad0091fe82011-04-13 15:22:40 +00002100 ArrayRef<unsigned> Indices = getIndices();
Jay Foad57aa6362011-07-13 10:26:04 +00002101 Replacement = ConstantExpr::getInsertValue(Agg, Val, Indices);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002102 } else if (isCast()) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002103 assert(getOperand(0) == From && "Cast only has one use!");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002104 Replacement = ConstantExpr::getCast(getOpcode(), To, getType());
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002105 } else if (getOpcode() == Instruction::Select) {
2106 Constant *C1 = getOperand(0);
2107 Constant *C2 = getOperand(1);
2108 Constant *C3 = getOperand(2);
2109 if (C1 == From) C1 = To;
2110 if (C2 == From) C2 = To;
2111 if (C3 == From) C3 = To;
2112 Replacement = ConstantExpr::getSelect(C1, C2, C3);
Robert Bocchino23004482006-01-10 19:05:34 +00002113 } else if (getOpcode() == Instruction::ExtractElement) {
2114 Constant *C1 = getOperand(0);
2115 Constant *C2 = getOperand(1);
2116 if (C1 == From) C1 = To;
2117 if (C2 == From) C2 = To;
2118 Replacement = ConstantExpr::getExtractElement(C1, C2);
Chris Lattnera93b4b52006-04-08 05:09:48 +00002119 } else if (getOpcode() == Instruction::InsertElement) {
2120 Constant *C1 = getOperand(0);
2121 Constant *C2 = getOperand(1);
2122 Constant *C3 = getOperand(1);
2123 if (C1 == From) C1 = To;
2124 if (C2 == From) C2 = To;
2125 if (C3 == From) C3 = To;
2126 Replacement = ConstantExpr::getInsertElement(C1, C2, C3);
2127 } else if (getOpcode() == Instruction::ShuffleVector) {
2128 Constant *C1 = getOperand(0);
2129 Constant *C2 = getOperand(1);
2130 Constant *C3 = getOperand(2);
2131 if (C1 == From) C1 = To;
2132 if (C2 == From) C2 = To;
2133 if (C3 == From) C3 = To;
2134 Replacement = ConstantExpr::getShuffleVector(C1, C2, C3);
Reid Spenceree3c9912006-12-04 05:19:50 +00002135 } else if (isCompare()) {
2136 Constant *C1 = getOperand(0);
2137 Constant *C2 = getOperand(1);
2138 if (C1 == From) C1 = To;
2139 if (C2 == From) C2 = To;
2140 if (getOpcode() == Instruction::ICmp)
2141 Replacement = ConstantExpr::getICmp(getPredicate(), C1, C2);
Chris Lattnereab49262008-07-14 05:17:31 +00002142 else {
Nick Lewyckya21d3da2009-07-08 03:04:38 +00002143 assert(getOpcode() == Instruction::FCmp);
2144 Replacement = ConstantExpr::getFCmp(getPredicate(), C1, C2);
Chris Lattnereab49262008-07-14 05:17:31 +00002145 }
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002146 } else if (getNumOperands() == 2) {
2147 Constant *C1 = getOperand(0);
2148 Constant *C2 = getOperand(1);
2149 if (C1 == From) C1 = To;
2150 if (C2 == From) C2 = To;
Chris Lattnerb9c86512009-12-29 02:14:09 +00002151 Replacement = ConstantExpr::get(getOpcode(), C1, C2, SubclassOptionalData);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002152 } else {
Torok Edwinfbcc6632009-07-14 16:55:14 +00002153 llvm_unreachable("Unknown ConstantExpr type!");
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002154 return;
2155 }
2156
2157 assert(Replacement != this && "I didn't contain From!");
2158
Chris Lattner7a1450d2005-10-04 18:13:04 +00002159 // Everyone using this now uses the replacement.
Chris Lattneraf1783f2011-07-15 06:18:52 +00002160 replaceAllUsesWith(Replacement);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002161
2162 // Delete the old constant!
2163 destroyConstant();
Matthijs Kooijmanba5d7ef2008-07-03 07:46:41 +00002164}