blob: 2530b63d8a1335202c1197365051b6a177ae58c4 [file] [log] [blame]
Chris Lattner2b383d2e2003-05-13 21:37:02 +00001//===-- Constants.cpp - Implement Constant nodes --------------------------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
John Criswell482202a2003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanb1c93172005-04-21 23:48:37 +00007//
John Criswell482202a2003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +00009//
Chris Lattnere17322b2011-02-07 20:03:14 +000010// This file implements the Constant* classes.
Chris Lattner2f7c9632001-06-06 20:29:01 +000011//
12//===----------------------------------------------------------------------===//
13
Chris Lattnerca142372002-04-28 19:55:58 +000014#include "llvm/Constants.h"
Chris Lattner78683a72009-08-23 04:02:03 +000015#include "LLVMContextImpl.h"
Chris Lattner33e93b82007-02-27 03:05:06 +000016#include "ConstantFold.h"
Chris Lattner2f7c9632001-06-06 20:29:01 +000017#include "llvm/DerivedTypes.h"
Reid Spencer1ebe1ab2004-07-17 23:48:33 +000018#include "llvm/GlobalValue.h"
Misha Brukman63b38bd2004-07-29 17:30:56 +000019#include "llvm/Instructions.h"
Chris Lattnerd7a73302001-10-13 06:57:33 +000020#include "llvm/Module.h"
Dan Gohman7d82e132009-07-18 01:49:22 +000021#include "llvm/Operator.h"
Nick Lewycky49f89192009-04-04 07:22:01 +000022#include "llvm/ADT/FoldingSet.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000023#include "llvm/ADT/StringExtras.h"
Nick Lewycky49f89192009-04-04 07:22:01 +000024#include "llvm/ADT/StringMap.h"
Chris Lattner3d27be12006-08-27 12:54:02 +000025#include "llvm/Support/Compiler.h"
Bill Wendling6a462f12006-11-17 08:03:48 +000026#include "llvm/Support/Debug.h"
Torok Edwinccb29cd2009-07-11 13:10:19 +000027#include "llvm/Support/ErrorHandling.h"
Chris Lattner69edc982006-09-28 00:35:06 +000028#include "llvm/Support/ManagedStatic.h"
Bill Wendling6a462f12006-11-17 08:03:48 +000029#include "llvm/Support/MathExtras.h"
Chris Lattner78683a72009-08-23 04:02:03 +000030#include "llvm/Support/raw_ostream.h"
Dan Gohman7190d482009-09-10 23:37:55 +000031#include "llvm/Support/GetElementPtrTypeIterator.h"
Chris Lattnera80bf0b2007-02-20 06:39:57 +000032#include "llvm/ADT/DenseMap.h"
Chris Lattnerb5d70302007-02-19 20:01:23 +000033#include "llvm/ADT/SmallVector.h"
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000034#include "llvm/ADT/STLExtras.h"
Chris Lattner2f7c9632001-06-06 20:29:01 +000035#include <algorithm>
Talin3a0a30d2011-02-28 23:53:27 +000036#include <cstdarg>
Chris Lattner189d19f2003-11-21 20:23:48 +000037using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000038
Chris Lattner2f7c9632001-06-06 20:29:01 +000039//===----------------------------------------------------------------------===//
Chris Lattner3462ae32001-12-03 22:26:30 +000040// Constant Class
Chris Lattner2f7c9632001-06-06 20:29:01 +000041//===----------------------------------------------------------------------===//
42
David Blaikiea379b1812011-12-20 02:50:00 +000043void Constant::anchor() { }
44
Chris Lattnerac5fb562011-07-15 05:58:04 +000045bool Constant::isNegativeZeroValue() const {
46 // Floating point values have an explicit -0.0 value.
47 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
48 return CFP->isZero() && CFP->isNegative();
49
50 // Otherwise, just use +0.0.
51 return isNullValue();
52}
53
Chris Lattnerbe6610c2011-07-15 06:14:08 +000054bool Constant::isNullValue() const {
55 // 0 is null.
56 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
57 return CI->isZero();
58
59 // +0.0 is null.
60 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
61 return CFP->isZero() && !CFP->isNegative();
62
63 // constant zero is zero for aggregates and cpnull is null for pointers.
64 return isa<ConstantAggregateZero>(this) || isa<ConstantPointerNull>(this);
65}
66
Nadav Rotem365af6f2011-08-24 20:18:38 +000067bool Constant::isAllOnesValue() const {
68 // Check for -1 integers
69 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
70 return CI->isMinusOne();
71
72 // Check for FP which are bitcasted from -1 integers
73 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
74 return CFP->getValueAPF().bitcastToAPInt().isAllOnesValue();
75
Benjamin Kramer42d098e2011-11-14 19:12:20 +000076 // Check for constant vectors which are splats of -1 values.
Nadav Rotem365af6f2011-08-24 20:18:38 +000077 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
Benjamin Kramer42d098e2011-11-14 19:12:20 +000078 if (Constant *Splat = CV->getSplatValue())
79 return Splat->isAllOnesValue();
Nadav Rotem365af6f2011-08-24 20:18:38 +000080
Chris Lattnerf14a67f2012-01-26 02:31:22 +000081 // Check for constant vectors which are splats of -1 values.
82 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this))
83 if (Constant *Splat = CV->getSplatValue())
84 return Splat->isAllOnesValue();
85
Nadav Rotem365af6f2011-08-24 20:18:38 +000086 return false;
87}
Benjamin Kramer42d098e2011-11-14 19:12:20 +000088
Owen Anderson5a1acd92009-07-31 20:28:14 +000089// Constructor to create a '0' constant of arbitrary type...
Chris Lattner229907c2011-07-18 04:54:35 +000090Constant *Constant::getNullValue(Type *Ty) {
Owen Anderson5a1acd92009-07-31 20:28:14 +000091 switch (Ty->getTypeID()) {
92 case Type::IntegerTyID:
93 return ConstantInt::get(Ty, 0);
Dan Gohman518cda42011-12-17 00:04:22 +000094 case Type::HalfTyID:
95 return ConstantFP::get(Ty->getContext(),
96 APFloat::getZero(APFloat::IEEEhalf));
Owen Anderson5a1acd92009-07-31 20:28:14 +000097 case Type::FloatTyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +000098 return ConstantFP::get(Ty->getContext(),
99 APFloat::getZero(APFloat::IEEEsingle));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000100 case Type::DoubleTyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000101 return ConstantFP::get(Ty->getContext(),
102 APFloat::getZero(APFloat::IEEEdouble));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000103 case Type::X86_FP80TyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000104 return ConstantFP::get(Ty->getContext(),
105 APFloat::getZero(APFloat::x87DoubleExtended));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000106 case Type::FP128TyID:
107 return ConstantFP::get(Ty->getContext(),
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000108 APFloat::getZero(APFloat::IEEEquad));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000109 case Type::PPC_FP128TyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000110 return ConstantFP::get(Ty->getContext(),
Benjamin Kramer6f88fcb2010-12-04 14:43:08 +0000111 APFloat(APInt::getNullValue(128)));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000112 case Type::PointerTyID:
113 return ConstantPointerNull::get(cast<PointerType>(Ty));
114 case Type::StructTyID:
115 case Type::ArrayTyID:
116 case Type::VectorTyID:
117 return ConstantAggregateZero::get(Ty);
118 default:
119 // Function, Label, or Opaque type?
Richard Trieua318b8d2011-09-21 03:09:09 +0000120 assert(0 && "Cannot create a null constant of that type!");
Owen Anderson5a1acd92009-07-31 20:28:14 +0000121 return 0;
122 }
123}
124
Chris Lattner229907c2011-07-18 04:54:35 +0000125Constant *Constant::getIntegerValue(Type *Ty, const APInt &V) {
126 Type *ScalarTy = Ty->getScalarType();
Dan Gohmanf011f5a2009-08-03 22:07:33 +0000127
128 // Create the base integer constant.
129 Constant *C = ConstantInt::get(Ty->getContext(), V);
130
131 // Convert an integer to a pointer, if necessary.
Chris Lattner229907c2011-07-18 04:54:35 +0000132 if (PointerType *PTy = dyn_cast<PointerType>(ScalarTy))
Dan Gohmanf011f5a2009-08-03 22:07:33 +0000133 C = ConstantExpr::getIntToPtr(C, PTy);
134
135 // Broadcast a scalar to a vector, if necessary.
Chris Lattner229907c2011-07-18 04:54:35 +0000136 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000137 C = ConstantVector::getSplat(VTy->getNumElements(), C);
Dan Gohmanf011f5a2009-08-03 22:07:33 +0000138
139 return C;
140}
141
Chris Lattner229907c2011-07-18 04:54:35 +0000142Constant *Constant::getAllOnesValue(Type *Ty) {
143 if (IntegerType *ITy = dyn_cast<IntegerType>(Ty))
Owen Anderson5a1acd92009-07-31 20:28:14 +0000144 return ConstantInt::get(Ty->getContext(),
145 APInt::getAllOnesValue(ITy->getBitWidth()));
Nadav Rotem7cc6d122011-02-17 21:22:27 +0000146
147 if (Ty->isFloatingPointTy()) {
148 APFloat FL = APFloat::getAllOnesValue(Ty->getPrimitiveSizeInBits(),
149 !Ty->isPPC_FP128Ty());
150 return ConstantFP::get(Ty->getContext(), FL);
151 }
152
Chris Lattner229907c2011-07-18 04:54:35 +0000153 VectorType *VTy = cast<VectorType>(Ty);
Chris Lattnere9eed292012-01-25 05:19:54 +0000154 return ConstantVector::getSplat(VTy->getNumElements(),
155 getAllOnesValue(VTy->getElementType()));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000156}
157
Chris Lattner7e683d12012-01-25 06:16:32 +0000158/// getAggregateElement - For aggregates (struct/array/vector) return the
159/// constant that corresponds to the specified element if possible, or null if
160/// not. This can return null if the element index is a ConstantExpr, or if
161/// 'this' is a constant expr.
162Constant *Constant::getAggregateElement(unsigned Elt) const {
163 if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(this))
164 return Elt < CS->getNumOperands() ? CS->getOperand(Elt) : 0;
165
166 if (const ConstantArray *CA = dyn_cast<ConstantArray>(this))
167 return Elt < CA->getNumOperands() ? CA->getOperand(Elt) : 0;
168
169 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
170 return Elt < CV->getNumOperands() ? CV->getOperand(Elt) : 0;
171
172 if (const ConstantAggregateZero *CAZ =dyn_cast<ConstantAggregateZero>(this))
173 return CAZ->getElementValue(Elt);
174
175 if (const UndefValue *UV = dyn_cast<UndefValue>(this))
176 return UV->getElementValue(Elt);
177
Chris Lattner8326bd82012-01-26 00:42:34 +0000178 if (const ConstantDataSequential *CDS =dyn_cast<ConstantDataSequential>(this))
Chris Lattner7e683d12012-01-25 06:16:32 +0000179 return CDS->getElementAsConstant(Elt);
180 return 0;
181}
182
183Constant *Constant::getAggregateElement(Constant *Elt) const {
184 assert(isa<IntegerType>(Elt->getType()) && "Index must be an integer");
185 if (ConstantInt *CI = dyn_cast<ConstantInt>(Elt))
186 return getAggregateElement(CI->getZExtValue());
187 return 0;
188}
189
190
Chris Lattner3462ae32001-12-03 22:26:30 +0000191void Constant::destroyConstantImpl() {
192 // When a Constant is destroyed, there may be lingering
Chris Lattnerd7a73302001-10-13 06:57:33 +0000193 // references to the constant by other constants in the constant pool. These
Misha Brukmanbe372b92003-08-21 22:14:26 +0000194 // constants are implicitly dependent on the module that is being deleted,
Chris Lattnerd7a73302001-10-13 06:57:33 +0000195 // but they don't know that. Because we only find out when the CPV is
196 // deleted, we must now notify all of our users (that should only be
Chris Lattner3462ae32001-12-03 22:26:30 +0000197 // Constants) that they are, in fact, invalid now and should be deleted.
Chris Lattnerd7a73302001-10-13 06:57:33 +0000198 //
199 while (!use_empty()) {
200 Value *V = use_back();
201#ifndef NDEBUG // Only in -g mode...
Chris Lattner78683a72009-08-23 04:02:03 +0000202 if (!isa<Constant>(V)) {
David Greene1e27a132010-01-05 01:29:19 +0000203 dbgs() << "While deleting: " << *this
Chris Lattner78683a72009-08-23 04:02:03 +0000204 << "\n\nUse still stuck around after Def is destroyed: "
205 << *V << "\n\n";
206 }
Chris Lattnerd7a73302001-10-13 06:57:33 +0000207#endif
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000208 assert(isa<Constant>(V) && "References remain to Constant being destroyed");
Chris Lattner8326bd82012-01-26 00:42:34 +0000209 cast<Constant>(V)->destroyConstant();
Chris Lattnerd7a73302001-10-13 06:57:33 +0000210
211 // The constant should remove itself from our use list...
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000212 assert((use_empty() || use_back() != V) && "Constant not removed!");
Chris Lattnerd7a73302001-10-13 06:57:33 +0000213 }
214
215 // Value has no outstanding references it is safe to delete it now...
216 delete this;
Chris Lattner38569342001-10-01 20:11:19 +0000217}
Chris Lattner2f7c9632001-06-06 20:29:01 +0000218
Chris Lattner23dd1f62006-10-20 00:27:06 +0000219/// canTrap - Return true if evaluation of this constant could trap. This is
220/// true for things like constant expressions that could divide by zero.
221bool Constant::canTrap() const {
222 assert(getType()->isFirstClassType() && "Cannot evaluate aggregate vals!");
223 // The only thing that could possibly trap are constant exprs.
224 const ConstantExpr *CE = dyn_cast<ConstantExpr>(this);
225 if (!CE) return false;
226
227 // ConstantExpr traps if any operands can trap.
228 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Chris Lattnera91a5632009-10-28 05:14:34 +0000229 if (CE->getOperand(i)->canTrap())
Chris Lattner23dd1f62006-10-20 00:27:06 +0000230 return true;
231
232 // Otherwise, only specific operations can trap.
233 switch (CE->getOpcode()) {
234 default:
235 return false;
Reid Spencer7e80b0b2006-10-26 06:15:43 +0000236 case Instruction::UDiv:
237 case Instruction::SDiv:
238 case Instruction::FDiv:
Reid Spencer7eb55b32006-11-02 01:53:59 +0000239 case Instruction::URem:
240 case Instruction::SRem:
241 case Instruction::FRem:
Chris Lattner23dd1f62006-10-20 00:27:06 +0000242 // Div and rem can trap if the RHS is not known to be non-zero.
Chris Lattnera91a5632009-10-28 05:14:34 +0000243 if (!isa<ConstantInt>(CE->getOperand(1)) ||CE->getOperand(1)->isNullValue())
Chris Lattner23dd1f62006-10-20 00:27:06 +0000244 return true;
245 return false;
246 }
247}
248
Chris Lattner253bc772009-11-01 18:11:50 +0000249/// isConstantUsed - Return true if the constant has users other than constant
250/// exprs and other dangling things.
251bool Constant::isConstantUsed() const {
Gabor Greifc78d7202010-03-25 23:06:16 +0000252 for (const_use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI) {
Chris Lattner253bc772009-11-01 18:11:50 +0000253 const Constant *UC = dyn_cast<Constant>(*UI);
254 if (UC == 0 || isa<GlobalValue>(UC))
255 return true;
256
257 if (UC->isConstantUsed())
258 return true;
259 }
260 return false;
261}
262
263
Chris Lattner4565ef52009-07-22 00:05:44 +0000264
265/// getRelocationInfo - This method classifies the entry according to
266/// whether or not it may generate a relocation entry. This must be
267/// conservative, so if it might codegen to a relocatable entry, it should say
268/// so. The return values are:
269///
Chris Lattner5cd4dd32009-07-24 03:27:21 +0000270/// NoRelocation: This constant pool entry is guaranteed to never have a
271/// relocation applied to it (because it holds a simple constant like
272/// '4').
273/// LocalRelocation: This entry has relocations, but the entries are
274/// guaranteed to be resolvable by the static linker, so the dynamic
275/// linker will never see them.
276/// GlobalRelocations: This entry may have arbitrary relocations.
Chris Lattner4565ef52009-07-22 00:05:44 +0000277///
278/// FIXME: This really should not be in VMCore.
Chris Lattner5cd4dd32009-07-24 03:27:21 +0000279Constant::PossibleRelocationsTy Constant::getRelocationInfo() const {
280 if (const GlobalValue *GV = dyn_cast<GlobalValue>(this)) {
Chris Lattner4565ef52009-07-22 00:05:44 +0000281 if (GV->hasLocalLinkage() || GV->hasHiddenVisibility())
Chris Lattner5cd4dd32009-07-24 03:27:21 +0000282 return LocalRelocation; // Local to this file/library.
283 return GlobalRelocations; // Global reference.
Anton Korobeynikov7437b592009-03-29 17:13:18 +0000284 }
Chris Lattner4565ef52009-07-22 00:05:44 +0000285
Chris Lattner2cb85b42009-10-28 04:12:16 +0000286 if (const BlockAddress *BA = dyn_cast<BlockAddress>(this))
287 return BA->getFunction()->getRelocationInfo();
288
Chris Lattnera7cfc432010-01-03 18:09:40 +0000289 // While raw uses of blockaddress need to be relocated, differences between
290 // two of them don't when they are for labels in the same function. This is a
291 // common idiom when creating a table for the indirect goto extension, so we
292 // handle it efficiently here.
293 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(this))
294 if (CE->getOpcode() == Instruction::Sub) {
295 ConstantExpr *LHS = dyn_cast<ConstantExpr>(CE->getOperand(0));
296 ConstantExpr *RHS = dyn_cast<ConstantExpr>(CE->getOperand(1));
297 if (LHS && RHS &&
298 LHS->getOpcode() == Instruction::PtrToInt &&
299 RHS->getOpcode() == Instruction::PtrToInt &&
300 isa<BlockAddress>(LHS->getOperand(0)) &&
301 isa<BlockAddress>(RHS->getOperand(0)) &&
302 cast<BlockAddress>(LHS->getOperand(0))->getFunction() ==
303 cast<BlockAddress>(RHS->getOperand(0))->getFunction())
304 return NoRelocation;
305 }
306
Chris Lattner5cd4dd32009-07-24 03:27:21 +0000307 PossibleRelocationsTy Result = NoRelocation;
Evan Chengf9e003b2007-03-08 00:59:12 +0000308 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Chris Lattnera91a5632009-10-28 05:14:34 +0000309 Result = std::max(Result,
310 cast<Constant>(getOperand(i))->getRelocationInfo());
Chris Lattner4565ef52009-07-22 00:05:44 +0000311
312 return Result;
Evan Chengf9e003b2007-03-08 00:59:12 +0000313}
314
Chris Lattner84886402011-02-18 04:41:42 +0000315/// removeDeadUsersOfConstant - If the specified constantexpr is dead, remove
316/// it. This involves recursively eliminating any dead users of the
317/// constantexpr.
318static bool removeDeadUsersOfConstant(const Constant *C) {
319 if (isa<GlobalValue>(C)) return false; // Cannot remove this
320
321 while (!C->use_empty()) {
322 const Constant *User = dyn_cast<Constant>(C->use_back());
323 if (!User) return false; // Non-constant usage;
324 if (!removeDeadUsersOfConstant(User))
325 return false; // Constant wasn't dead
326 }
327
328 const_cast<Constant*>(C)->destroyConstant();
329 return true;
330}
331
332
333/// removeDeadConstantUsers - If there are any dead constant users dangling
334/// off of this constant, remove them. This method is useful for clients
335/// that want to check to see if a global is unused, but don't want to deal
336/// with potentially dead constants hanging off of the globals.
337void Constant::removeDeadConstantUsers() const {
338 Value::const_use_iterator I = use_begin(), E = use_end();
339 Value::const_use_iterator LastNonDeadUser = E;
340 while (I != E) {
341 const Constant *User = dyn_cast<Constant>(*I);
342 if (User == 0) {
343 LastNonDeadUser = I;
344 ++I;
345 continue;
346 }
347
348 if (!removeDeadUsersOfConstant(User)) {
349 // If the constant wasn't dead, remember that this was the last live use
350 // and move on to the next constant.
351 LastNonDeadUser = I;
352 ++I;
353 continue;
354 }
355
356 // If the constant was dead, then the iterator is invalidated.
357 if (LastNonDeadUser == E) {
358 I = use_begin();
359 if (I == E) break;
360 } else {
361 I = LastNonDeadUser;
362 ++I;
363 }
364 }
365}
366
367
Chris Lattner2105d662008-07-10 00:28:11 +0000368
Chris Lattner2f7c9632001-06-06 20:29:01 +0000369//===----------------------------------------------------------------------===//
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000370// ConstantInt
Chris Lattner2f7c9632001-06-06 20:29:01 +0000371//===----------------------------------------------------------------------===//
372
David Blaikiea379b1812011-12-20 02:50:00 +0000373void ConstantInt::anchor() { }
374
Chris Lattner229907c2011-07-18 04:54:35 +0000375ConstantInt::ConstantInt(IntegerType *Ty, const APInt& V)
Chris Lattner5db2f472007-02-20 05:55:46 +0000376 : Constant(Ty, ConstantIntVal, 0, 0), Val(V) {
Reid Spencerb31bffe2007-02-26 23:54:03 +0000377 assert(V.getBitWidth() == Ty->getBitWidth() && "Invalid constant for type");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000378}
379
Nick Lewycky92db8e82011-03-06 03:36:19 +0000380ConstantInt *ConstantInt::getTrue(LLVMContext &Context) {
Owen Anderson23a204d2009-07-31 17:39:07 +0000381 LLVMContextImpl *pImpl = Context.pImpl;
Benjamin Kramerddd1b7b2010-11-20 18:43:35 +0000382 if (!pImpl->TheTrueVal)
383 pImpl->TheTrueVal = ConstantInt::get(Type::getInt1Ty(Context), 1);
384 return pImpl->TheTrueVal;
Owen Anderson23a204d2009-07-31 17:39:07 +0000385}
386
Nick Lewycky92db8e82011-03-06 03:36:19 +0000387ConstantInt *ConstantInt::getFalse(LLVMContext &Context) {
Owen Anderson23a204d2009-07-31 17:39:07 +0000388 LLVMContextImpl *pImpl = Context.pImpl;
Benjamin Kramerddd1b7b2010-11-20 18:43:35 +0000389 if (!pImpl->TheFalseVal)
390 pImpl->TheFalseVal = ConstantInt::get(Type::getInt1Ty(Context), 0);
391 return pImpl->TheFalseVal;
Owen Anderson23a204d2009-07-31 17:39:07 +0000392}
393
Chris Lattner229907c2011-07-18 04:54:35 +0000394Constant *ConstantInt::getTrue(Type *Ty) {
395 VectorType *VTy = dyn_cast<VectorType>(Ty);
Nick Lewycky92db8e82011-03-06 03:36:19 +0000396 if (!VTy) {
397 assert(Ty->isIntegerTy(1) && "True must be i1 or vector of i1.");
398 return ConstantInt::getTrue(Ty->getContext());
399 }
400 assert(VTy->getElementType()->isIntegerTy(1) &&
401 "True must be vector of i1 or i1.");
Chris Lattnere9eed292012-01-25 05:19:54 +0000402 return ConstantVector::getSplat(VTy->getNumElements(),
403 ConstantInt::getTrue(Ty->getContext()));
Nick Lewycky92db8e82011-03-06 03:36:19 +0000404}
405
Chris Lattner229907c2011-07-18 04:54:35 +0000406Constant *ConstantInt::getFalse(Type *Ty) {
407 VectorType *VTy = dyn_cast<VectorType>(Ty);
Nick Lewycky92db8e82011-03-06 03:36:19 +0000408 if (!VTy) {
409 assert(Ty->isIntegerTy(1) && "False must be i1 or vector of i1.");
410 return ConstantInt::getFalse(Ty->getContext());
411 }
412 assert(VTy->getElementType()->isIntegerTy(1) &&
413 "False must be vector of i1 or i1.");
Chris Lattnere9eed292012-01-25 05:19:54 +0000414 return ConstantVector::getSplat(VTy->getNumElements(),
415 ConstantInt::getFalse(Ty->getContext()));
Nick Lewycky92db8e82011-03-06 03:36:19 +0000416}
417
Owen Anderson23a204d2009-07-31 17:39:07 +0000418
Owen Andersonedb4a702009-07-24 23:12:02 +0000419// Get a ConstantInt from an APInt. Note that the value stored in the DenseMap
420// as the key, is a DenseMapAPIntKeyInfo::KeyTy which has provided the
421// operator== and operator!= to ensure that the DenseMap doesn't attempt to
422// compare APInt's of different widths, which would violate an APInt class
423// invariant which generates an assertion.
Nick Lewycky92db8e82011-03-06 03:36:19 +0000424ConstantInt *ConstantInt::get(LLVMContext &Context, const APInt &V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000425 // Get the corresponding integer type for the bit width of the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000426 IntegerType *ITy = IntegerType::get(Context, V.getBitWidth());
Owen Andersonedb4a702009-07-24 23:12:02 +0000427 // get an existing value or the insertion position
428 DenseMapAPIntKeyInfo::KeyTy Key(V, ITy);
Owen Andersonedb4a702009-07-24 23:12:02 +0000429 ConstantInt *&Slot = Context.pImpl->IntConstants[Key];
Owen Anderson5dab84c2009-10-19 20:11:52 +0000430 if (!Slot) Slot = new ConstantInt(ITy, V);
431 return Slot;
Owen Andersonedb4a702009-07-24 23:12:02 +0000432}
433
Chris Lattner229907c2011-07-18 04:54:35 +0000434Constant *ConstantInt::get(Type *Ty, uint64_t V, bool isSigned) {
Nick Lewycky92db8e82011-03-06 03:36:19 +0000435 Constant *C = get(cast<IntegerType>(Ty->getScalarType()), V, isSigned);
Owen Andersonedb4a702009-07-24 23:12:02 +0000436
437 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000438 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000439 return ConstantVector::getSplat(VTy->getNumElements(), C);
Owen Andersonedb4a702009-07-24 23:12:02 +0000440
441 return C;
442}
443
Chris Lattner229907c2011-07-18 04:54:35 +0000444ConstantInt* ConstantInt::get(IntegerType* Ty, uint64_t V,
Owen Andersonedb4a702009-07-24 23:12:02 +0000445 bool isSigned) {
446 return get(Ty->getContext(), APInt(Ty->getBitWidth(), V, isSigned));
447}
448
Chris Lattner229907c2011-07-18 04:54:35 +0000449ConstantInt* ConstantInt::getSigned(IntegerType* Ty, int64_t V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000450 return get(Ty, V, true);
451}
452
Chris Lattner229907c2011-07-18 04:54:35 +0000453Constant *ConstantInt::getSigned(Type *Ty, int64_t V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000454 return get(Ty, V, true);
455}
456
Chris Lattner229907c2011-07-18 04:54:35 +0000457Constant *ConstantInt::get(Type* Ty, const APInt& V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000458 ConstantInt *C = get(Ty->getContext(), V);
459 assert(C->getType() == Ty->getScalarType() &&
460 "ConstantInt type doesn't match the type implied by its value!");
461
462 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000463 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000464 return ConstantVector::getSplat(VTy->getNumElements(), C);
Owen Andersonedb4a702009-07-24 23:12:02 +0000465
466 return C;
467}
468
Chris Lattner229907c2011-07-18 04:54:35 +0000469ConstantInt* ConstantInt::get(IntegerType* Ty, StringRef Str,
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000470 uint8_t radix) {
471 return get(Ty->getContext(), APInt(Ty->getBitWidth(), Str, radix));
472}
473
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000474//===----------------------------------------------------------------------===//
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000475// ConstantFP
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000476//===----------------------------------------------------------------------===//
477
Chris Lattner229907c2011-07-18 04:54:35 +0000478static const fltSemantics *TypeToFloatSemantics(Type *Ty) {
Dan Gohman518cda42011-12-17 00:04:22 +0000479 if (Ty->isHalfTy())
480 return &APFloat::IEEEhalf;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000481 if (Ty->isFloatTy())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000482 return &APFloat::IEEEsingle;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000483 if (Ty->isDoubleTy())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000484 return &APFloat::IEEEdouble;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000485 if (Ty->isX86_FP80Ty())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000486 return &APFloat::x87DoubleExtended;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000487 else if (Ty->isFP128Ty())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000488 return &APFloat::IEEEquad;
489
Chris Lattnerfdd87902009-10-05 05:54:46 +0000490 assert(Ty->isPPC_FP128Ty() && "Unknown FP format");
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000491 return &APFloat::PPCDoubleDouble;
492}
493
David Blaikiea379b1812011-12-20 02:50:00 +0000494void ConstantFP::anchor() { }
495
Owen Anderson69c464d2009-07-27 20:59:43 +0000496/// get() - This returns a constant fp for the specified value in the
497/// specified type. This should only be used for simple constant values like
498/// 2.0/1.0 etc, that are known-valid both as double and as the target format.
Chris Lattner229907c2011-07-18 04:54:35 +0000499Constant *ConstantFP::get(Type* Ty, double V) {
Owen Anderson69c464d2009-07-27 20:59:43 +0000500 LLVMContext &Context = Ty->getContext();
501
502 APFloat FV(V);
503 bool ignored;
504 FV.convert(*TypeToFloatSemantics(Ty->getScalarType()),
505 APFloat::rmNearestTiesToEven, &ignored);
506 Constant *C = get(Context, FV);
507
508 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000509 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000510 return ConstantVector::getSplat(VTy->getNumElements(), C);
Owen Anderson69c464d2009-07-27 20:59:43 +0000511
512 return C;
513}
514
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000515
Chris Lattner229907c2011-07-18 04:54:35 +0000516Constant *ConstantFP::get(Type* Ty, StringRef Str) {
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000517 LLVMContext &Context = Ty->getContext();
518
519 APFloat FV(*TypeToFloatSemantics(Ty->getScalarType()), Str);
520 Constant *C = get(Context, FV);
521
522 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000523 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000524 return ConstantVector::getSplat(VTy->getNumElements(), C);
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000525
526 return C;
527}
528
529
Chris Lattnere9eed292012-01-25 05:19:54 +0000530ConstantFP *ConstantFP::getNegativeZero(Type *Ty) {
Owen Anderson69c464d2009-07-27 20:59:43 +0000531 LLVMContext &Context = Ty->getContext();
Chris Lattnere9eed292012-01-25 05:19:54 +0000532 APFloat apf = cast<ConstantFP>(Constant::getNullValue(Ty))->getValueAPF();
Owen Anderson69c464d2009-07-27 20:59:43 +0000533 apf.changeSign();
534 return get(Context, apf);
535}
536
537
Chris Lattnere9eed292012-01-25 05:19:54 +0000538Constant *ConstantFP::getZeroValueForNegation(Type *Ty) {
539 Type *ScalarTy = Ty->getScalarType();
540 if (ScalarTy->isFloatingPointTy()) {
541 Constant *C = getNegativeZero(ScalarTy);
542 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
543 return ConstantVector::getSplat(VTy->getNumElements(), C);
544 return C;
545 }
Owen Anderson69c464d2009-07-27 20:59:43 +0000546
Owen Anderson5a1acd92009-07-31 20:28:14 +0000547 return Constant::getNullValue(Ty);
Owen Anderson69c464d2009-07-27 20:59:43 +0000548}
549
550
551// ConstantFP accessors.
552ConstantFP* ConstantFP::get(LLVMContext &Context, const APFloat& V) {
553 DenseMapAPFloatKeyInfo::KeyTy Key(V);
554
555 LLVMContextImpl* pImpl = Context.pImpl;
556
Owen Anderson69c464d2009-07-27 20:59:43 +0000557 ConstantFP *&Slot = pImpl->FPConstants[Key];
Owen Anderson69c464d2009-07-27 20:59:43 +0000558
559 if (!Slot) {
Chris Lattner229907c2011-07-18 04:54:35 +0000560 Type *Ty;
Dan Gohman518cda42011-12-17 00:04:22 +0000561 if (&V.getSemantics() == &APFloat::IEEEhalf)
562 Ty = Type::getHalfTy(Context);
563 else if (&V.getSemantics() == &APFloat::IEEEsingle)
Owen Anderson5dab84c2009-10-19 20:11:52 +0000564 Ty = Type::getFloatTy(Context);
565 else if (&V.getSemantics() == &APFloat::IEEEdouble)
566 Ty = Type::getDoubleTy(Context);
567 else if (&V.getSemantics() == &APFloat::x87DoubleExtended)
568 Ty = Type::getX86_FP80Ty(Context);
569 else if (&V.getSemantics() == &APFloat::IEEEquad)
570 Ty = Type::getFP128Ty(Context);
571 else {
572 assert(&V.getSemantics() == &APFloat::PPCDoubleDouble &&
573 "Unknown FP format");
574 Ty = Type::getPPC_FP128Ty(Context);
Owen Anderson69c464d2009-07-27 20:59:43 +0000575 }
Owen Anderson5dab84c2009-10-19 20:11:52 +0000576 Slot = new ConstantFP(Ty, V);
Owen Anderson69c464d2009-07-27 20:59:43 +0000577 }
578
579 return Slot;
580}
581
Chris Lattner229907c2011-07-18 04:54:35 +0000582ConstantFP *ConstantFP::getInfinity(Type *Ty, bool Negative) {
Dan Gohmanfeb50212009-09-25 23:00:48 +0000583 const fltSemantics &Semantics = *TypeToFloatSemantics(Ty);
584 return ConstantFP::get(Ty->getContext(),
585 APFloat::getInf(Semantics, Negative));
586}
587
Chris Lattner229907c2011-07-18 04:54:35 +0000588ConstantFP::ConstantFP(Type *Ty, const APFloat& V)
Dale Johannesend246b2c2007-08-30 00:23:21 +0000589 : Constant(Ty, ConstantFPVal, 0, 0), Val(V) {
Chris Lattner98bd9392008-04-09 06:38:30 +0000590 assert(&V.getSemantics() == TypeToFloatSemantics(Ty) &&
591 "FP type Mismatch");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000592}
593
Chris Lattnerbe6610c2011-07-15 06:14:08 +0000594bool ConstantFP::isExactlyValue(const APFloat &V) const {
Dale Johannesend246b2c2007-08-30 00:23:21 +0000595 return Val.bitwiseIsEqual(V);
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000596}
597
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000598//===----------------------------------------------------------------------===//
Chris Lattner030af792012-01-24 05:42:11 +0000599// ConstantAggregateZero Implementation
600//===----------------------------------------------------------------------===//
601
602/// getSequentialElement - If this CAZ has array or vector type, return a zero
603/// with the right element type.
Chris Lattner7e683d12012-01-25 06:16:32 +0000604Constant *ConstantAggregateZero::getSequentialElement() const {
Chris Lattner8326bd82012-01-26 00:42:34 +0000605 return Constant::getNullValue(getType()->getSequentialElementType());
Chris Lattner030af792012-01-24 05:42:11 +0000606}
607
608/// getStructElement - If this CAZ has struct type, return a zero with the
609/// right element type for the specified element.
Chris Lattner7e683d12012-01-25 06:16:32 +0000610Constant *ConstantAggregateZero::getStructElement(unsigned Elt) const {
Chris Lattner8326bd82012-01-26 00:42:34 +0000611 return Constant::getNullValue(getType()->getStructElementType(Elt));
Chris Lattner030af792012-01-24 05:42:11 +0000612}
613
614/// getElementValue - Return a zero of the right value for the specified GEP
615/// index if we can, otherwise return null (e.g. if C is a ConstantExpr).
Chris Lattner7e683d12012-01-25 06:16:32 +0000616Constant *ConstantAggregateZero::getElementValue(Constant *C) const {
Chris Lattner030af792012-01-24 05:42:11 +0000617 if (isa<SequentialType>(getType()))
618 return getSequentialElement();
619 return getStructElement(cast<ConstantInt>(C)->getZExtValue());
620}
621
Chris Lattnerf7eb5432012-01-24 07:54:10 +0000622/// getElementValue - Return a zero of the right value for the specified GEP
623/// index.
Chris Lattner7e683d12012-01-25 06:16:32 +0000624Constant *ConstantAggregateZero::getElementValue(unsigned Idx) const {
Chris Lattnerf7eb5432012-01-24 07:54:10 +0000625 if (isa<SequentialType>(getType()))
626 return getSequentialElement();
627 return getStructElement(Idx);
628}
629
630
Chris Lattner030af792012-01-24 05:42:11 +0000631//===----------------------------------------------------------------------===//
632// UndefValue Implementation
633//===----------------------------------------------------------------------===//
634
635/// getSequentialElement - If this undef has array or vector type, return an
636/// undef with the right element type.
Chris Lattner7e683d12012-01-25 06:16:32 +0000637UndefValue *UndefValue::getSequentialElement() const {
Chris Lattner8326bd82012-01-26 00:42:34 +0000638 return UndefValue::get(getType()->getSequentialElementType());
Chris Lattner030af792012-01-24 05:42:11 +0000639}
640
641/// getStructElement - If this undef has struct type, return a zero with the
642/// right element type for the specified element.
Chris Lattner7e683d12012-01-25 06:16:32 +0000643UndefValue *UndefValue::getStructElement(unsigned Elt) const {
Chris Lattner8326bd82012-01-26 00:42:34 +0000644 return UndefValue::get(getType()->getStructElementType(Elt));
Chris Lattner030af792012-01-24 05:42:11 +0000645}
646
647/// getElementValue - Return an undef of the right value for the specified GEP
648/// index if we can, otherwise return null (e.g. if C is a ConstantExpr).
Chris Lattner7e683d12012-01-25 06:16:32 +0000649UndefValue *UndefValue::getElementValue(Constant *C) const {
Chris Lattner030af792012-01-24 05:42:11 +0000650 if (isa<SequentialType>(getType()))
651 return getSequentialElement();
652 return getStructElement(cast<ConstantInt>(C)->getZExtValue());
653}
654
Chris Lattnerf7eb5432012-01-24 07:54:10 +0000655/// getElementValue - Return an undef of the right value for the specified GEP
656/// index.
Chris Lattner7e683d12012-01-25 06:16:32 +0000657UndefValue *UndefValue::getElementValue(unsigned Idx) const {
Chris Lattnerf7eb5432012-01-24 07:54:10 +0000658 if (isa<SequentialType>(getType()))
659 return getSequentialElement();
660 return getStructElement(Idx);
661}
662
663
Chris Lattner030af792012-01-24 05:42:11 +0000664
665//===----------------------------------------------------------------------===//
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000666// ConstantXXX Classes
667//===----------------------------------------------------------------------===//
668
669
Jay Foad89d9b812011-07-25 10:14:44 +0000670ConstantArray::ConstantArray(ArrayType *T, ArrayRef<Constant *> V)
Gabor Greiff6caff662008-05-10 08:32:32 +0000671 : Constant(T, ConstantArrayVal,
672 OperandTraits<ConstantArray>::op_end(this) - V.size(),
673 V.size()) {
Alkis Evlogimenos0507ffe2004-09-15 02:32:15 +0000674 assert(V.size() == T->getNumElements() &&
675 "Invalid initializer vector for constant array");
Jay Foad89d9b812011-07-25 10:14:44 +0000676 for (unsigned i = 0, e = V.size(); i != e; ++i)
677 assert(V[i]->getType() == T->getElementType() &&
Alkis Evlogimenoscb031d92004-09-10 04:16:59 +0000678 "Initializer for array element doesn't match array element type!");
Jay Foad89d9b812011-07-25 10:14:44 +0000679 std::copy(V.begin(), V.end(), op_begin());
Chris Lattner2f7c9632001-06-06 20:29:01 +0000680}
681
Chris Lattner229907c2011-07-18 04:54:35 +0000682Constant *ConstantArray::get(ArrayType *Ty, ArrayRef<Constant*> V) {
Jeffrey Yasskin8ce67f82009-09-30 21:08:08 +0000683 for (unsigned i = 0, e = V.size(); i != e; ++i) {
684 assert(V[i]->getType() == Ty->getElementType() &&
685 "Wrong type in array element initializer");
686 }
Owen Andersonc2c79322009-07-28 18:32:17 +0000687 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
688 // If this is an all-zero array, return a ConstantAggregateZero object
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000689 bool isAllZero = true;
690 bool isUndef = false;
Owen Andersonc2c79322009-07-28 18:32:17 +0000691 if (!V.empty()) {
692 Constant *C = V[0];
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000693 isAllZero = C->isNullValue();
694 isUndef = isa<UndefValue>(C);
695
696 if (isAllZero || isUndef)
697 for (unsigned i = 1, e = V.size(); i != e; ++i)
698 if (V[i] != C) {
699 isAllZero = false;
700 isUndef = false;
701 break;
702 }
Owen Andersonc2c79322009-07-28 18:32:17 +0000703 }
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000704
705 if (isAllZero)
706 return ConstantAggregateZero::get(Ty);
707 if (isUndef)
708 return UndefValue::get(Ty);
709 return pImpl->ArrayConstants.getOrCreate(Ty, V);
Owen Andersonc2c79322009-07-28 18:32:17 +0000710}
711
Owen Andersonc2c79322009-07-28 18:32:17 +0000712/// ConstantArray::get(const string&) - Return an array that is initialized to
713/// contain the specified string. If length is zero then a null terminator is
714/// added to the specified string so that it may be used in a natural way.
715/// Otherwise, the length parameter specifies how much of the string to use
716/// and it won't be null terminated.
717///
Chris Lattnera676c0f2011-02-07 16:40:21 +0000718Constant *ConstantArray::get(LLVMContext &Context, StringRef Str,
Owen Anderson55f1c092009-08-13 21:58:54 +0000719 bool AddNull) {
Owen Andersonc2c79322009-07-28 18:32:17 +0000720 std::vector<Constant*> ElementVals;
Benjamin Kramer3d4af4e2010-08-01 11:43:26 +0000721 ElementVals.reserve(Str.size() + size_t(AddNull));
Owen Andersonc2c79322009-07-28 18:32:17 +0000722 for (unsigned i = 0; i < Str.size(); ++i)
Owen Anderson55f1c092009-08-13 21:58:54 +0000723 ElementVals.push_back(ConstantInt::get(Type::getInt8Ty(Context), Str[i]));
Owen Andersonc2c79322009-07-28 18:32:17 +0000724
725 // Add a null terminator to the string...
Chris Lattner20683932012-01-24 14:04:40 +0000726 if (AddNull)
Owen Anderson55f1c092009-08-13 21:58:54 +0000727 ElementVals.push_back(ConstantInt::get(Type::getInt8Ty(Context), 0));
Owen Andersonc2c79322009-07-28 18:32:17 +0000728
Owen Anderson55f1c092009-08-13 21:58:54 +0000729 ArrayType *ATy = ArrayType::get(Type::getInt8Ty(Context), ElementVals.size());
Owen Andersonc2c79322009-07-28 18:32:17 +0000730 return get(ATy, ElementVals);
731}
732
Chris Lattnercc19efa2011-06-20 04:01:31 +0000733/// getTypeForElements - Return an anonymous struct type to use for a constant
734/// with the specified set of elements. The list must not be empty.
735StructType *ConstantStruct::getTypeForElements(LLVMContext &Context,
736 ArrayRef<Constant*> V,
737 bool Packed) {
Jay Foadb804a2b2011-07-12 14:06:48 +0000738 SmallVector<Type*, 16> EltTypes;
Chris Lattnercc19efa2011-06-20 04:01:31 +0000739 for (unsigned i = 0, e = V.size(); i != e; ++i)
740 EltTypes.push_back(V[i]->getType());
741
742 return StructType::get(Context, EltTypes, Packed);
743}
744
745
746StructType *ConstantStruct::getTypeForElements(ArrayRef<Constant*> V,
747 bool Packed) {
748 assert(!V.empty() &&
749 "ConstantStruct::getTypeForElements cannot be called on empty list");
750 return getTypeForElements(V[0]->getContext(), V, Packed);
751}
752
753
Jay Foad89d9b812011-07-25 10:14:44 +0000754ConstantStruct::ConstantStruct(StructType *T, ArrayRef<Constant *> V)
Gabor Greiff6caff662008-05-10 08:32:32 +0000755 : Constant(T, ConstantStructVal,
756 OperandTraits<ConstantStruct>::op_end(this) - V.size(),
757 V.size()) {
Chris Lattnerc3e74cd2011-08-07 04:18:48 +0000758 assert(V.size() == T->getNumElements() &&
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000759 "Invalid initializer vector for constant structure");
Jay Foad89d9b812011-07-25 10:14:44 +0000760 for (unsigned i = 0, e = V.size(); i != e; ++i)
761 assert((T->isOpaque() || V[i]->getType() == T->getElementType(i)) &&
Chris Lattner93c8f142003-06-02 17:42:47 +0000762 "Initializer for struct element doesn't match struct element type!");
Jay Foad89d9b812011-07-25 10:14:44 +0000763 std::copy(V.begin(), V.end(), op_begin());
Chris Lattner2f7c9632001-06-06 20:29:01 +0000764}
765
Owen Anderson45308b52009-07-27 22:29:26 +0000766// ConstantStruct accessors.
Chris Lattner229907c2011-07-18 04:54:35 +0000767Constant *ConstantStruct::get(StructType *ST, ArrayRef<Constant*> V) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000768 assert((ST->isOpaque() || ST->getNumElements() == V.size()) &&
769 "Incorrect # elements specified to ConstantStruct::get");
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000770
771 // Create a ConstantAggregateZero value if all elements are zeros.
772 bool isZero = true;
773 bool isUndef = false;
774
775 if (!V.empty()) {
776 isUndef = isa<UndefValue>(V[0]);
777 isZero = V[0]->isNullValue();
778 if (isUndef || isZero) {
779 for (unsigned i = 0, e = V.size(); i != e; ++i) {
780 if (!V[i]->isNullValue())
781 isZero = false;
782 if (!isa<UndefValue>(V[i]))
783 isUndef = false;
784 }
785 }
786 }
787 if (isZero)
788 return ConstantAggregateZero::get(ST);
789 if (isUndef)
790 return UndefValue::get(ST);
791
792 return ST->getContext().pImpl->StructConstants.getOrCreate(ST, V);
Owen Anderson45308b52009-07-27 22:29:26 +0000793}
794
Chris Lattnerc3e74cd2011-08-07 04:18:48 +0000795Constant *ConstantStruct::get(StructType *T, ...) {
Talin3a0a30d2011-02-28 23:53:27 +0000796 va_list ap;
Chris Lattnercc19efa2011-06-20 04:01:31 +0000797 SmallVector<Constant*, 8> Values;
798 va_start(ap, T);
799 while (Constant *Val = va_arg(ap, llvm::Constant*))
Talin3a0a30d2011-02-28 23:53:27 +0000800 Values.push_back(Val);
Talinde422be2011-03-01 18:00:49 +0000801 va_end(ap);
Chris Lattnercc19efa2011-06-20 04:01:31 +0000802 return get(T, Values);
Talin3a0a30d2011-02-28 23:53:27 +0000803}
804
Jay Foad89d9b812011-07-25 10:14:44 +0000805ConstantVector::ConstantVector(VectorType *T, ArrayRef<Constant *> V)
Gabor Greiff6caff662008-05-10 08:32:32 +0000806 : Constant(T, ConstantVectorVal,
807 OperandTraits<ConstantVector>::op_end(this) - V.size(),
808 V.size()) {
Jay Foad89d9b812011-07-25 10:14:44 +0000809 for (size_t i = 0, e = V.size(); i != e; i++)
810 assert(V[i]->getType() == T->getElementType() &&
Dan Gohman30978072007-05-24 14:36:04 +0000811 "Initializer for vector element doesn't match vector element type!");
Jay Foad89d9b812011-07-25 10:14:44 +0000812 std::copy(V.begin(), V.end(), op_begin());
Brian Gaeke02209042004-08-20 06:00:58 +0000813}
814
Owen Anderson4aa32952009-07-28 21:19:26 +0000815// ConstantVector accessors.
Jay Foadb8a8bed32011-06-22 09:10:19 +0000816Constant *ConstantVector::get(ArrayRef<Constant*> V) {
Jay Foad9f32cfd2011-01-27 14:44:55 +0000817 assert(!V.empty() && "Vectors can't be empty");
Chris Lattner229907c2011-07-18 04:54:35 +0000818 VectorType *T = VectorType::get(V.front()->getType(), V.size());
Chris Lattner69229312011-02-15 00:14:00 +0000819 LLVMContextImpl *pImpl = T->getContext().pImpl;
Jay Foad9f32cfd2011-01-27 14:44:55 +0000820
Chris Lattner69229312011-02-15 00:14:00 +0000821 // If this is an all-undef or all-zero vector, return a
Owen Anderson4aa32952009-07-28 21:19:26 +0000822 // ConstantAggregateZero or UndefValue.
823 Constant *C = V[0];
824 bool isZero = C->isNullValue();
825 bool isUndef = isa<UndefValue>(C);
826
827 if (isZero || isUndef) {
828 for (unsigned i = 1, e = V.size(); i != e; ++i)
829 if (V[i] != C) {
830 isZero = isUndef = false;
831 break;
832 }
833 }
834
835 if (isZero)
Owen Andersonb292b8c2009-07-30 23:03:37 +0000836 return ConstantAggregateZero::get(T);
Owen Anderson4aa32952009-07-28 21:19:26 +0000837 if (isUndef)
Owen Andersonb292b8c2009-07-30 23:03:37 +0000838 return UndefValue::get(T);
Owen Anderson4aa32952009-07-28 21:19:26 +0000839
Owen Anderson4aa32952009-07-28 21:19:26 +0000840 return pImpl->VectorConstants.getOrCreate(T, V);
841}
842
Chris Lattnere9eed292012-01-25 05:19:54 +0000843Constant *ConstantVector::getSplat(unsigned NumElts, Constant *V) {
844 SmallVector<Constant*, 32> Elts(NumElts, V);
845 return get(Elts);
846}
847
848
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000849// Utility function for determining if a ConstantExpr is a CastOp or not. This
850// can't be inline because we don't want to #include Instruction.h into
851// Constant.h
852bool ConstantExpr::isCast() const {
853 return Instruction::isCast(getOpcode());
854}
855
Reid Spenceree3c9912006-12-04 05:19:50 +0000856bool ConstantExpr::isCompare() const {
Nick Lewyckya21d3da2009-07-08 03:04:38 +0000857 return getOpcode() == Instruction::ICmp || getOpcode() == Instruction::FCmp;
Reid Spenceree3c9912006-12-04 05:19:50 +0000858}
859
Dan Gohman7190d482009-09-10 23:37:55 +0000860bool ConstantExpr::isGEPWithNoNotionalOverIndexing() const {
861 if (getOpcode() != Instruction::GetElementPtr) return false;
862
863 gep_type_iterator GEPI = gep_type_begin(this), E = gep_type_end(this);
Oscar Fuentes40b31ad2010-08-02 06:00:15 +0000864 User::const_op_iterator OI = llvm::next(this->op_begin());
Dan Gohman7190d482009-09-10 23:37:55 +0000865
866 // Skip the first index, as it has no static limit.
867 ++GEPI;
868 ++OI;
869
870 // The remaining indices must be compile-time known integers within the
871 // bounds of the corresponding notional static array types.
872 for (; GEPI != E; ++GEPI, ++OI) {
873 ConstantInt *CI = dyn_cast<ConstantInt>(*OI);
874 if (!CI) return false;
Chris Lattner229907c2011-07-18 04:54:35 +0000875 if (ArrayType *ATy = dyn_cast<ArrayType>(*GEPI))
Dan Gohman7190d482009-09-10 23:37:55 +0000876 if (CI->getValue().getActiveBits() > 64 ||
877 CI->getZExtValue() >= ATy->getNumElements())
878 return false;
879 }
880
881 // All the indices checked out.
882 return true;
883}
884
Dan Gohman1ecaf452008-05-31 00:58:22 +0000885bool ConstantExpr::hasIndices() const {
886 return getOpcode() == Instruction::ExtractValue ||
887 getOpcode() == Instruction::InsertValue;
888}
889
Jay Foad0091fe82011-04-13 15:22:40 +0000890ArrayRef<unsigned> ConstantExpr::getIndices() const {
Dan Gohman1ecaf452008-05-31 00:58:22 +0000891 if (const ExtractValueConstantExpr *EVCE =
892 dyn_cast<ExtractValueConstantExpr>(this))
893 return EVCE->Indices;
Dan Gohmana469bdb2008-06-23 16:39:44 +0000894
895 return cast<InsertValueConstantExpr>(this)->Indices;
Dan Gohman1ecaf452008-05-31 00:58:22 +0000896}
897
Reid Spencer10fbf0e2006-12-03 05:48:19 +0000898unsigned ConstantExpr::getPredicate() const {
Chris Lattnerd04e32d2011-07-17 06:01:30 +0000899 assert(isCompare());
Chris Lattneref650092007-10-18 16:26:24 +0000900 return ((const CompareConstantExpr*)this)->predicate;
Reid Spencer10fbf0e2006-12-03 05:48:19 +0000901}
Chris Lattner60e0dd72001-10-03 06:12:09 +0000902
Chris Lattner7c1018a2006-07-14 19:37:40 +0000903/// getWithOperandReplaced - Return a constant expression identical to this
904/// one, but with the specified operand set to the specified value.
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000905Constant *
906ConstantExpr::getWithOperandReplaced(unsigned OpNo, Constant *Op) const {
Chris Lattner7c1018a2006-07-14 19:37:40 +0000907 assert(OpNo < getNumOperands() && "Operand num is out of range!");
908 assert(Op->getType() == getOperand(OpNo)->getType() &&
909 "Replacing operand with value of different type!");
Chris Lattner227816342006-07-14 22:20:01 +0000910 if (getOperand(OpNo) == Op)
911 return const_cast<ConstantExpr*>(this);
Chris Lattner7c1018a2006-07-14 19:37:40 +0000912
Chris Lattner227816342006-07-14 22:20:01 +0000913 Constant *Op0, *Op1, *Op2;
Chris Lattner7c1018a2006-07-14 19:37:40 +0000914 switch (getOpcode()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000915 case Instruction::Trunc:
916 case Instruction::ZExt:
917 case Instruction::SExt:
918 case Instruction::FPTrunc:
919 case Instruction::FPExt:
920 case Instruction::UIToFP:
921 case Instruction::SIToFP:
922 case Instruction::FPToUI:
923 case Instruction::FPToSI:
924 case Instruction::PtrToInt:
925 case Instruction::IntToPtr:
926 case Instruction::BitCast:
927 return ConstantExpr::getCast(getOpcode(), Op, getType());
Chris Lattner227816342006-07-14 22:20:01 +0000928 case Instruction::Select:
929 Op0 = (OpNo == 0) ? Op : getOperand(0);
930 Op1 = (OpNo == 1) ? Op : getOperand(1);
931 Op2 = (OpNo == 2) ? Op : getOperand(2);
932 return ConstantExpr::getSelect(Op0, Op1, Op2);
933 case Instruction::InsertElement:
934 Op0 = (OpNo == 0) ? Op : getOperand(0);
935 Op1 = (OpNo == 1) ? Op : getOperand(1);
936 Op2 = (OpNo == 2) ? Op : getOperand(2);
937 return ConstantExpr::getInsertElement(Op0, Op1, Op2);
938 case Instruction::ExtractElement:
939 Op0 = (OpNo == 0) ? Op : getOperand(0);
940 Op1 = (OpNo == 1) ? Op : getOperand(1);
941 return ConstantExpr::getExtractElement(Op0, Op1);
942 case Instruction::ShuffleVector:
943 Op0 = (OpNo == 0) ? Op : getOperand(0);
944 Op1 = (OpNo == 1) ? Op : getOperand(1);
945 Op2 = (OpNo == 2) ? Op : getOperand(2);
946 return ConstantExpr::getShuffleVector(Op0, Op1, Op2);
Chris Lattner7c1018a2006-07-14 19:37:40 +0000947 case Instruction::GetElementPtr: {
Chris Lattnerb5d70302007-02-19 20:01:23 +0000948 SmallVector<Constant*, 8> Ops;
Dan Gohman12fce772008-05-15 19:50:34 +0000949 Ops.resize(getNumOperands()-1);
Chris Lattner7c1018a2006-07-14 19:37:40 +0000950 for (unsigned i = 1, e = getNumOperands(); i != e; ++i)
Dan Gohman12fce772008-05-15 19:50:34 +0000951 Ops[i-1] = getOperand(i);
Chris Lattner7c1018a2006-07-14 19:37:40 +0000952 if (OpNo == 0)
Jay Foad2f5fc8c2011-07-21 15:15:37 +0000953 return
954 ConstantExpr::getGetElementPtr(Op, Ops,
955 cast<GEPOperator>(this)->isInBounds());
Chris Lattner7c1018a2006-07-14 19:37:40 +0000956 Ops[OpNo-1] = Op;
Jay Foad2f5fc8c2011-07-21 15:15:37 +0000957 return
958 ConstantExpr::getGetElementPtr(getOperand(0), Ops,
959 cast<GEPOperator>(this)->isInBounds());
Chris Lattner7c1018a2006-07-14 19:37:40 +0000960 }
Chris Lattner7c1018a2006-07-14 19:37:40 +0000961 default:
962 assert(getNumOperands() == 2 && "Must be binary operator?");
Chris Lattner227816342006-07-14 22:20:01 +0000963 Op0 = (OpNo == 0) ? Op : getOperand(0);
964 Op1 = (OpNo == 1) ? Op : getOperand(1);
Chris Lattnerb9c86512009-12-29 02:14:09 +0000965 return ConstantExpr::get(getOpcode(), Op0, Op1, SubclassOptionalData);
Chris Lattner227816342006-07-14 22:20:01 +0000966 }
967}
968
969/// getWithOperands - This returns the current constant expression with the
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000970/// operands replaced with the specified values. The specified array must
971/// have the same number of operands as our current one.
Chris Lattner227816342006-07-14 22:20:01 +0000972Constant *ConstantExpr::
Chris Lattner229907c2011-07-18 04:54:35 +0000973getWithOperands(ArrayRef<Constant*> Ops, Type *Ty) const {
Jay Foad5c984e562011-04-13 13:46:01 +0000974 assert(Ops.size() == getNumOperands() && "Operand count mismatch!");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000975 bool AnyChange = Ty != getType();
976 for (unsigned i = 0; i != Ops.size(); ++i)
Chris Lattner227816342006-07-14 22:20:01 +0000977 AnyChange |= Ops[i] != getOperand(i);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000978
Chris Lattner227816342006-07-14 22:20:01 +0000979 if (!AnyChange) // No operands changed, return self.
980 return const_cast<ConstantExpr*>(this);
981
982 switch (getOpcode()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000983 case Instruction::Trunc:
984 case Instruction::ZExt:
985 case Instruction::SExt:
986 case Instruction::FPTrunc:
987 case Instruction::FPExt:
988 case Instruction::UIToFP:
989 case Instruction::SIToFP:
990 case Instruction::FPToUI:
991 case Instruction::FPToSI:
992 case Instruction::PtrToInt:
993 case Instruction::IntToPtr:
994 case Instruction::BitCast:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000995 return ConstantExpr::getCast(getOpcode(), Ops[0], Ty);
Chris Lattner227816342006-07-14 22:20:01 +0000996 case Instruction::Select:
997 return ConstantExpr::getSelect(Ops[0], Ops[1], Ops[2]);
998 case Instruction::InsertElement:
999 return ConstantExpr::getInsertElement(Ops[0], Ops[1], Ops[2]);
1000 case Instruction::ExtractElement:
1001 return ConstantExpr::getExtractElement(Ops[0], Ops[1]);
1002 case Instruction::ShuffleVector:
1003 return ConstantExpr::getShuffleVector(Ops[0], Ops[1], Ops[2]);
Chris Lattnerb5d70302007-02-19 20:01:23 +00001004 case Instruction::GetElementPtr:
Jay Foad2f5fc8c2011-07-21 15:15:37 +00001005 return
1006 ConstantExpr::getGetElementPtr(Ops[0], Ops.slice(1),
1007 cast<GEPOperator>(this)->isInBounds());
Reid Spencer266e42b2006-12-23 06:05:41 +00001008 case Instruction::ICmp:
1009 case Instruction::FCmp:
1010 return ConstantExpr::getCompare(getPredicate(), Ops[0], Ops[1]);
Chris Lattner227816342006-07-14 22:20:01 +00001011 default:
1012 assert(getNumOperands() == 2 && "Must be binary operator?");
Chris Lattnerb9c86512009-12-29 02:14:09 +00001013 return ConstantExpr::get(getOpcode(), Ops[0], Ops[1], SubclassOptionalData);
Chris Lattner7c1018a2006-07-14 19:37:40 +00001014 }
1015}
1016
Chris Lattner2f7c9632001-06-06 20:29:01 +00001017
1018//===----------------------------------------------------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +00001019// isValueValidForType implementations
1020
Chris Lattner229907c2011-07-18 04:54:35 +00001021bool ConstantInt::isValueValidForType(Type *Ty, uint64_t Val) {
Chris Lattner8326bd82012-01-26 00:42:34 +00001022 unsigned NumBits = Ty->getIntegerBitWidth(); // assert okay
1023 if (Ty->isIntegerTy(1))
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001024 return Val == 0 || Val == 1;
Reid Spencerd7a00d72007-02-05 23:47:56 +00001025 if (NumBits >= 64)
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001026 return true; // always true, has to fit in largest type
1027 uint64_t Max = (1ll << NumBits) - 1;
1028 return Val <= Max;
Reid Spencere7334722006-12-19 01:28:19 +00001029}
1030
Chris Lattner229907c2011-07-18 04:54:35 +00001031bool ConstantInt::isValueValidForType(Type *Ty, int64_t Val) {
Chris Lattner8326bd82012-01-26 00:42:34 +00001032 unsigned NumBits = Ty->getIntegerBitWidth();
1033 if (Ty->isIntegerTy(1))
Reid Spencera94d3942007-01-19 21:13:56 +00001034 return Val == 0 || Val == 1 || Val == -1;
Reid Spencerd7a00d72007-02-05 23:47:56 +00001035 if (NumBits >= 64)
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001036 return true; // always true, has to fit in largest type
1037 int64_t Min = -(1ll << (NumBits-1));
1038 int64_t Max = (1ll << (NumBits-1)) - 1;
1039 return (Val >= Min && Val <= Max);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001040}
1041
Chris Lattner229907c2011-07-18 04:54:35 +00001042bool ConstantFP::isValueValidForType(Type *Ty, const APFloat& Val) {
Dale Johannesend246b2c2007-08-30 00:23:21 +00001043 // convert modifies in place, so make a copy.
1044 APFloat Val2 = APFloat(Val);
Dale Johannesen4f0bd682008-10-09 23:00:39 +00001045 bool losesInfo;
Chris Lattner6b727592004-06-17 18:19:28 +00001046 switch (Ty->getTypeID()) {
Chris Lattner2f7c9632001-06-06 20:29:01 +00001047 default:
1048 return false; // These can't be represented as floating point!
1049
Dale Johannesend246b2c2007-08-30 00:23:21 +00001050 // FIXME rounding mode needs to be more flexible
Dan Gohman518cda42011-12-17 00:04:22 +00001051 case Type::HalfTyID: {
1052 if (&Val2.getSemantics() == &APFloat::IEEEhalf)
1053 return true;
1054 Val2.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven, &losesInfo);
1055 return !losesInfo;
1056 }
Dale Johannesen4f0bd682008-10-09 23:00:39 +00001057 case Type::FloatTyID: {
1058 if (&Val2.getSemantics() == &APFloat::IEEEsingle)
1059 return true;
1060 Val2.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven, &losesInfo);
1061 return !losesInfo;
1062 }
1063 case Type::DoubleTyID: {
Dan Gohman518cda42011-12-17 00:04:22 +00001064 if (&Val2.getSemantics() == &APFloat::IEEEhalf ||
1065 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen4f0bd682008-10-09 23:00:39 +00001066 &Val2.getSemantics() == &APFloat::IEEEdouble)
1067 return true;
1068 Val2.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, &losesInfo);
1069 return !losesInfo;
1070 }
Dale Johannesenbdad8092007-08-09 22:51:36 +00001071 case Type::X86_FP80TyID:
Dan Gohman518cda42011-12-17 00:04:22 +00001072 return &Val2.getSemantics() == &APFloat::IEEEhalf ||
1073 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen028084e2007-09-12 03:30:33 +00001074 &Val2.getSemantics() == &APFloat::IEEEdouble ||
1075 &Val2.getSemantics() == &APFloat::x87DoubleExtended;
Dale Johannesenbdad8092007-08-09 22:51:36 +00001076 case Type::FP128TyID:
Dan Gohman518cda42011-12-17 00:04:22 +00001077 return &Val2.getSemantics() == &APFloat::IEEEhalf ||
1078 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen028084e2007-09-12 03:30:33 +00001079 &Val2.getSemantics() == &APFloat::IEEEdouble ||
1080 &Val2.getSemantics() == &APFloat::IEEEquad;
Dale Johannesen007aa372007-10-11 18:07:22 +00001081 case Type::PPC_FP128TyID:
Dan Gohman518cda42011-12-17 00:04:22 +00001082 return &Val2.getSemantics() == &APFloat::IEEEhalf ||
1083 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen007aa372007-10-11 18:07:22 +00001084 &Val2.getSemantics() == &APFloat::IEEEdouble ||
1085 &Val2.getSemantics() == &APFloat::PPCDoubleDouble;
Chris Lattner2f7c9632001-06-06 20:29:01 +00001086 }
Chris Lattneraa2372562006-05-24 17:04:05 +00001087}
Chris Lattner9655e542001-07-20 19:16:02 +00001088
Chris Lattner030af792012-01-24 05:42:11 +00001089
Chris Lattner49d855c2001-09-07 16:46:31 +00001090//===----------------------------------------------------------------------===//
Chris Lattner49d855c2001-09-07 16:46:31 +00001091// Factory Function Implementation
1092
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001093ConstantAggregateZero *ConstantAggregateZero::get(Type *Ty) {
Chris Lattner13ee7952010-08-28 04:09:24 +00001094 assert((Ty->isStructTy() || Ty->isArrayTy() || Ty->isVectorTy()) &&
Owen Andersonb292b8c2009-07-30 23:03:37 +00001095 "Cannot create an aggregate zero of non-aggregate type!");
1096
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001097 ConstantAggregateZero *&Entry = Ty->getContext().pImpl->CAZConstants[Ty];
1098 if (Entry == 0)
1099 Entry = new ConstantAggregateZero(Ty);
1100
1101 return Entry;
Owen Andersonb292b8c2009-07-30 23:03:37 +00001102}
1103
Chris Lattner030af792012-01-24 05:42:11 +00001104/// destroyConstant - Remove the constant from the constant table.
Dan Gohman92b551b2009-03-03 02:55:14 +00001105///
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001106void ConstantAggregateZero::destroyConstant() {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001107 getContext().pImpl->CAZConstants.erase(getType());
Chris Lattner9fba3da2004-02-15 05:53:04 +00001108 destroyConstantImpl();
1109}
1110
Dan Gohman92b551b2009-03-03 02:55:14 +00001111/// destroyConstant - Remove the constant from the constant table...
1112///
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001113void ConstantArray::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001114 getType()->getContext().pImpl->ArrayConstants.remove(this);
Chris Lattner98fa07b2003-05-23 20:03:32 +00001115 destroyConstantImpl();
1116}
1117
Reid Spencer2546b762007-01-26 07:37:34 +00001118/// isString - This method returns true if the array is an array of i8, and
1119/// if the elements of the array are all ConstantInt's.
Chris Lattnere8dfcca2004-01-14 17:06:38 +00001120bool ConstantArray::isString() const {
Reid Spencer2546b762007-01-26 07:37:34 +00001121 // Check the element type for i8...
Duncan Sands9dff9be2010-02-15 16:12:20 +00001122 if (!getType()->getElementType()->isIntegerTy(8))
Chris Lattnere8dfcca2004-01-14 17:06:38 +00001123 return false;
1124 // Check the elements to make sure they are all integers, not constant
1125 // expressions.
1126 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
1127 if (!isa<ConstantInt>(getOperand(i)))
1128 return false;
1129 return true;
1130}
1131
Evan Cheng3763c5b2006-10-26 19:15:05 +00001132/// isCString - This method returns true if the array is a string (see
Dan Gohman92b551b2009-03-03 02:55:14 +00001133/// isString) and it ends in a null byte \\0 and does not contains any other
Evan Cheng3763c5b2006-10-26 19:15:05 +00001134/// null bytes except its terminator.
Owen Andersone4dcecd2009-07-13 21:27:19 +00001135bool ConstantArray::isCString() const {
Reid Spencer2546b762007-01-26 07:37:34 +00001136 // Check the element type for i8...
Duncan Sands9dff9be2010-02-15 16:12:20 +00001137 if (!getType()->getElementType()->isIntegerTy(8))
Evan Chenge974da62006-10-26 21:48:03 +00001138 return false;
Owen Andersone4dcecd2009-07-13 21:27:19 +00001139
Evan Chenge974da62006-10-26 21:48:03 +00001140 // Last element must be a null.
Owen Andersone4dcecd2009-07-13 21:27:19 +00001141 if (!getOperand(getNumOperands()-1)->isNullValue())
Evan Chenge974da62006-10-26 21:48:03 +00001142 return false;
1143 // Other elements must be non-null integers.
1144 for (unsigned i = 0, e = getNumOperands()-1; i != e; ++i) {
1145 if (!isa<ConstantInt>(getOperand(i)))
Evan Cheng3763c5b2006-10-26 19:15:05 +00001146 return false;
Owen Andersone4dcecd2009-07-13 21:27:19 +00001147 if (getOperand(i)->isNullValue())
Evan Chenge974da62006-10-26 21:48:03 +00001148 return false;
1149 }
Evan Cheng3763c5b2006-10-26 19:15:05 +00001150 return true;
1151}
1152
1153
Jay Foad2a31eb42011-06-28 08:24:19 +00001154/// convertToString - Helper function for getAsString() and getAsCString().
Chris Lattnerd04e32d2011-07-17 06:01:30 +00001155static std::string convertToString(const User *U, unsigned len) {
Jay Foad2a31eb42011-06-28 08:24:19 +00001156 std::string Result;
1157 Result.reserve(len);
1158 for (unsigned i = 0; i != len; ++i)
1159 Result.push_back((char)cast<ConstantInt>(U->getOperand(i))->getZExtValue());
1160 return Result;
1161}
1162
1163/// getAsString - If this array is isString(), then this method converts the
1164/// array to an std::string and returns it. Otherwise, it asserts out.
Dan Gohman92b551b2009-03-03 02:55:14 +00001165///
Chris Lattner81fabb02002-08-26 17:53:56 +00001166std::string ConstantArray::getAsString() const {
Chris Lattnere8dfcca2004-01-14 17:06:38 +00001167 assert(isString() && "Not a string!");
Jay Foad2a31eb42011-06-28 08:24:19 +00001168 return convertToString(this, getNumOperands());
1169}
1170
1171
1172/// getAsCString - If this array is isCString(), then this method converts the
1173/// array (without the trailing null byte) to an std::string and returns it.
1174/// Otherwise, it asserts out.
1175///
1176std::string ConstantArray::getAsCString() const {
1177 assert(isCString() && "Not a string!");
1178 return convertToString(this, getNumOperands() - 1);
Chris Lattner81fabb02002-08-26 17:53:56 +00001179}
1180
1181
Chris Lattner3462ae32001-12-03 22:26:30 +00001182//---- ConstantStruct::get() implementation...
Chris Lattner49d855c2001-09-07 16:46:31 +00001183//
Chris Lattnerb50d1352003-10-05 00:17:43 +00001184
Chris Lattnerd7a73302001-10-13 06:57:33 +00001185// destroyConstant - Remove the constant from the constant table...
Chris Lattner883ad0b2001-10-03 15:39:36 +00001186//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001187void ConstantStruct::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001188 getType()->getContext().pImpl->StructConstants.remove(this);
Chris Lattnerd7a73302001-10-13 06:57:33 +00001189 destroyConstantImpl();
1190}
Chris Lattner883ad0b2001-10-03 15:39:36 +00001191
Brian Gaeke02209042004-08-20 06:00:58 +00001192// destroyConstant - Remove the constant from the constant table...
1193//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001194void ConstantVector::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001195 getType()->getContext().pImpl->VectorConstants.remove(this);
Brian Gaeke02209042004-08-20 06:00:58 +00001196 destroyConstantImpl();
1197}
1198
Dan Gohman07159202007-10-17 17:51:30 +00001199/// getSplatValue - If this is a splat constant, where all of the
1200/// elements have the same value, return that value. Otherwise return null.
Duncan Sandscf0ff032011-02-01 08:39:12 +00001201Constant *ConstantVector::getSplatValue() const {
Dan Gohman07159202007-10-17 17:51:30 +00001202 // Check out first element.
1203 Constant *Elt = getOperand(0);
1204 // Then make sure all remaining elements point to the same value.
1205 for (unsigned I = 1, E = getNumOperands(); I < E; ++I)
Chris Lattnerd04e32d2011-07-17 06:01:30 +00001206 if (getOperand(I) != Elt)
1207 return 0;
Dan Gohman07159202007-10-17 17:51:30 +00001208 return Elt;
1209}
1210
Chris Lattner31b132c2009-10-28 00:01:44 +00001211//---- ConstantPointerNull::get() implementation.
Chris Lattnerd7a73302001-10-13 06:57:33 +00001212//
Chris Lattner98fa07b2003-05-23 20:03:32 +00001213
Chris Lattner229907c2011-07-18 04:54:35 +00001214ConstantPointerNull *ConstantPointerNull::get(PointerType *Ty) {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001215 ConstantPointerNull *&Entry = Ty->getContext().pImpl->CPNConstants[Ty];
1216 if (Entry == 0)
1217 Entry = new ConstantPointerNull(Ty);
1218
1219 return Entry;
Chris Lattner883ad0b2001-10-03 15:39:36 +00001220}
1221
Chris Lattner0c6e0b92002-08-18 00:40:04 +00001222// destroyConstant - Remove the constant from the constant table...
1223//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001224void ConstantPointerNull::destroyConstant() {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001225 getContext().pImpl->CPNConstants.erase(getType());
1226 // Free the constant and any dangling references to it.
Chris Lattner0c6e0b92002-08-18 00:40:04 +00001227 destroyConstantImpl();
1228}
1229
1230
Chris Lattner31b132c2009-10-28 00:01:44 +00001231//---- UndefValue::get() implementation.
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001232//
1233
Chris Lattner229907c2011-07-18 04:54:35 +00001234UndefValue *UndefValue::get(Type *Ty) {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001235 UndefValue *&Entry = Ty->getContext().pImpl->UVConstants[Ty];
1236 if (Entry == 0)
1237 Entry = new UndefValue(Ty);
1238
1239 return Entry;
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001240}
1241
1242// destroyConstant - Remove the constant from the constant table.
1243//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001244void UndefValue::destroyConstant() {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001245 // Free the constant and any dangling references to it.
1246 getContext().pImpl->UVConstants.erase(getType());
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001247 destroyConstantImpl();
1248}
1249
Chris Lattner31b132c2009-10-28 00:01:44 +00001250//---- BlockAddress::get() implementation.
1251//
1252
1253BlockAddress *BlockAddress::get(BasicBlock *BB) {
1254 assert(BB->getParent() != 0 && "Block must have a parent");
1255 return get(BB->getParent(), BB);
1256}
1257
1258BlockAddress *BlockAddress::get(Function *F, BasicBlock *BB) {
1259 BlockAddress *&BA =
1260 F->getContext().pImpl->BlockAddresses[std::make_pair(F, BB)];
1261 if (BA == 0)
1262 BA = new BlockAddress(F, BB);
1263
1264 assert(BA->getFunction() == F && "Basic block moved between functions");
1265 return BA;
1266}
1267
1268BlockAddress::BlockAddress(Function *F, BasicBlock *BB)
1269: Constant(Type::getInt8PtrTy(F->getContext()), Value::BlockAddressVal,
1270 &Op<0>(), 2) {
Chris Lattnerc559a9f2009-11-01 03:03:03 +00001271 setOperand(0, F);
1272 setOperand(1, BB);
Chris Lattneraa99c942009-11-01 01:27:45 +00001273 BB->AdjustBlockAddressRefCount(1);
Chris Lattner31b132c2009-10-28 00:01:44 +00001274}
1275
1276
1277// destroyConstant - Remove the constant from the constant table.
1278//
1279void BlockAddress::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001280 getFunction()->getType()->getContext().pImpl
Chris Lattner31b132c2009-10-28 00:01:44 +00001281 ->BlockAddresses.erase(std::make_pair(getFunction(), getBasicBlock()));
Chris Lattneraa99c942009-11-01 01:27:45 +00001282 getBasicBlock()->AdjustBlockAddressRefCount(-1);
Chris Lattner31b132c2009-10-28 00:01:44 +00001283 destroyConstantImpl();
1284}
1285
1286void BlockAddress::replaceUsesOfWithOnConstant(Value *From, Value *To, Use *U) {
1287 // This could be replacing either the Basic Block or the Function. In either
1288 // case, we have to remove the map entry.
1289 Function *NewF = getFunction();
1290 BasicBlock *NewBB = getBasicBlock();
1291
1292 if (U == &Op<0>())
1293 NewF = cast<Function>(To);
1294 else
1295 NewBB = cast<BasicBlock>(To);
1296
1297 // See if the 'new' entry already exists, if not, just update this in place
1298 // and return early.
1299 BlockAddress *&NewBA =
1300 getContext().pImpl->BlockAddresses[std::make_pair(NewF, NewBB)];
1301 if (NewBA == 0) {
Chris Lattnerc559a9f2009-11-01 03:03:03 +00001302 getBasicBlock()->AdjustBlockAddressRefCount(-1);
1303
Chris Lattner31b132c2009-10-28 00:01:44 +00001304 // Remove the old entry, this can't cause the map to rehash (just a
1305 // tombstone will get added).
1306 getContext().pImpl->BlockAddresses.erase(std::make_pair(getFunction(),
1307 getBasicBlock()));
1308 NewBA = this;
Chris Lattnerc559a9f2009-11-01 03:03:03 +00001309 setOperand(0, NewF);
1310 setOperand(1, NewBB);
1311 getBasicBlock()->AdjustBlockAddressRefCount(1);
Chris Lattner31b132c2009-10-28 00:01:44 +00001312 return;
1313 }
1314
1315 // Otherwise, I do need to replace this with an existing value.
1316 assert(NewBA != this && "I didn't contain From!");
1317
1318 // Everyone using this now uses the replacement.
Chris Lattneraf1783f2011-07-15 06:18:52 +00001319 replaceAllUsesWith(NewBA);
Chris Lattner31b132c2009-10-28 00:01:44 +00001320
1321 destroyConstant();
1322}
1323
1324//---- ConstantExpr::get() implementations.
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001325//
Reid Spencer8d9336d2006-12-31 05:26:44 +00001326
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001327/// This is a utility function to handle folding of casts and lookup of the
Duncan Sands7d6c8ae2008-03-30 19:38:55 +00001328/// cast in the ExprConstants map. It is used by the various get* methods below.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001329static inline Constant *getFoldedCast(
Chris Lattner229907c2011-07-18 04:54:35 +00001330 Instruction::CastOps opc, Constant *C, Type *Ty) {
Chris Lattner815ae2b2003-10-07 22:19:19 +00001331 assert(Ty->isFirstClassType() && "Cannot cast to an aggregate type!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001332 // Fold a few common cases
Chris Lattnerf5edeeb2010-02-01 20:48:08 +00001333 if (Constant *FC = ConstantFoldCastInstruction(opc, C, Ty))
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001334 return FC;
Chris Lattneracdbe712003-04-17 19:24:48 +00001335
Owen Anderson1584a292009-08-04 20:25:11 +00001336 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
1337
Vikram S. Adve4c485332002-07-15 18:19:33 +00001338 // Look up the constant in the table first to ensure uniqueness
Chris Lattner2b383d2e2003-05-13 21:37:02 +00001339 std::vector<Constant*> argVec(1, C);
Reid Spenceree3c9912006-12-04 05:19:50 +00001340 ExprMapKeyType Key(opc, argVec);
Owen Anderson2d7231d2009-06-17 18:40:29 +00001341
Owen Anderson1584a292009-08-04 20:25:11 +00001342 return pImpl->ExprConstants.getOrCreate(Ty, Key);
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001343}
Reid Spencerf37dc652006-12-05 19:14:13 +00001344
Chris Lattner229907c2011-07-18 04:54:35 +00001345Constant *ConstantExpr::getCast(unsigned oc, Constant *C, Type *Ty) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001346 Instruction::CastOps opc = Instruction::CastOps(oc);
1347 assert(Instruction::isCast(opc) && "opcode out of range");
1348 assert(C && Ty && "Null arguments to getCast");
Chris Lattner37bc78a2010-01-26 21:51:43 +00001349 assert(CastInst::castIsValid(opc, C, Ty) && "Invalid constantexpr cast!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001350
1351 switch (opc) {
Chris Lattner37bc78a2010-01-26 21:51:43 +00001352 default:
1353 llvm_unreachable("Invalid cast opcode");
Chris Lattner37bc78a2010-01-26 21:51:43 +00001354 case Instruction::Trunc: return getTrunc(C, Ty);
1355 case Instruction::ZExt: return getZExt(C, Ty);
1356 case Instruction::SExt: return getSExt(C, Ty);
1357 case Instruction::FPTrunc: return getFPTrunc(C, Ty);
1358 case Instruction::FPExt: return getFPExtend(C, Ty);
1359 case Instruction::UIToFP: return getUIToFP(C, Ty);
1360 case Instruction::SIToFP: return getSIToFP(C, Ty);
1361 case Instruction::FPToUI: return getFPToUI(C, Ty);
1362 case Instruction::FPToSI: return getFPToSI(C, Ty);
1363 case Instruction::PtrToInt: return getPtrToInt(C, Ty);
1364 case Instruction::IntToPtr: return getIntToPtr(C, Ty);
1365 case Instruction::BitCast: return getBitCast(C, Ty);
Chris Lattner1ece6f82005-01-01 15:59:57 +00001366 }
Reid Spencerf37dc652006-12-05 19:14:13 +00001367}
1368
Chris Lattner229907c2011-07-18 04:54:35 +00001369Constant *ConstantExpr::getZExtOrBitCast(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001370 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001371 return getBitCast(C, Ty);
1372 return getZExt(C, Ty);
Reid Spencer5c140882006-12-04 20:17:56 +00001373}
1374
Chris Lattner229907c2011-07-18 04:54:35 +00001375Constant *ConstantExpr::getSExtOrBitCast(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001376 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001377 return getBitCast(C, Ty);
1378 return getSExt(C, Ty);
Reid Spencer5c140882006-12-04 20:17:56 +00001379}
1380
Chris Lattner229907c2011-07-18 04:54:35 +00001381Constant *ConstantExpr::getTruncOrBitCast(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001382 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001383 return getBitCast(C, Ty);
1384 return getTrunc(C, Ty);
Reid Spencer5c140882006-12-04 20:17:56 +00001385}
1386
Chris Lattner229907c2011-07-18 04:54:35 +00001387Constant *ConstantExpr::getPointerCast(Constant *S, Type *Ty) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001388 assert(S->getType()->isPointerTy() && "Invalid cast");
1389 assert((Ty->isIntegerTy() || Ty->isPointerTy()) && "Invalid cast");
Reid Spencerbc245a02006-12-05 03:25:26 +00001390
Duncan Sands9dff9be2010-02-15 16:12:20 +00001391 if (Ty->isIntegerTy())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001392 return getPtrToInt(S, Ty);
1393 return getBitCast(S, Ty);
Reid Spencerbc245a02006-12-05 03:25:26 +00001394}
1395
Chris Lattner229907c2011-07-18 04:54:35 +00001396Constant *ConstantExpr::getIntegerCast(Constant *C, Type *Ty,
Reid Spencer56521c42006-12-12 00:51:07 +00001397 bool isSigned) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001398 assert(C->getType()->isIntOrIntVectorTy() &&
1399 Ty->isIntOrIntVectorTy() && "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001400 unsigned SrcBits = C->getType()->getScalarSizeInBits();
1401 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer56521c42006-12-12 00:51:07 +00001402 Instruction::CastOps opcode =
1403 (SrcBits == DstBits ? Instruction::BitCast :
1404 (SrcBits > DstBits ? Instruction::Trunc :
1405 (isSigned ? Instruction::SExt : Instruction::ZExt)));
1406 return getCast(opcode, C, Ty);
1407}
1408
Chris Lattner229907c2011-07-18 04:54:35 +00001409Constant *ConstantExpr::getFPCast(Constant *C, Type *Ty) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001410 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer56521c42006-12-12 00:51:07 +00001411 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001412 unsigned SrcBits = C->getType()->getScalarSizeInBits();
1413 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencerca104e82006-12-12 05:38:50 +00001414 if (SrcBits == DstBits)
1415 return C; // Avoid a useless cast
Reid Spencer56521c42006-12-12 00:51:07 +00001416 Instruction::CastOps opcode =
Jay Foad9f32cfd2011-01-27 14:44:55 +00001417 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt);
Reid Spencer56521c42006-12-12 00:51:07 +00001418 return getCast(opcode, C, Ty);
1419}
1420
Chris Lattner229907c2011-07-18 04:54:35 +00001421Constant *ConstantExpr::getTrunc(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001422#ifndef NDEBUG
1423 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1424 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1425#endif
1426 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001427 assert(C->getType()->isIntOrIntVectorTy() && "Trunc operand must be integer");
1428 assert(Ty->isIntOrIntVectorTy() && "Trunc produces only integral");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001429 assert(C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001430 "SrcTy must be larger than DestTy for Trunc!");
1431
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001432 return getFoldedCast(Instruction::Trunc, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001433}
1434
Chris Lattner229907c2011-07-18 04:54:35 +00001435Constant *ConstantExpr::getSExt(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001436#ifndef NDEBUG
1437 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1438 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1439#endif
1440 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001441 assert(C->getType()->isIntOrIntVectorTy() && "SExt operand must be integral");
1442 assert(Ty->isIntOrIntVectorTy() && "SExt produces only integer");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001443 assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001444 "SrcTy must be smaller than DestTy for SExt!");
1445
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001446 return getFoldedCast(Instruction::SExt, C, Ty);
Chris Lattnerdd284742004-04-04 23:20:30 +00001447}
1448
Chris Lattner229907c2011-07-18 04:54:35 +00001449Constant *ConstantExpr::getZExt(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001450#ifndef NDEBUG
1451 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1452 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1453#endif
1454 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001455 assert(C->getType()->isIntOrIntVectorTy() && "ZEXt operand must be integral");
1456 assert(Ty->isIntOrIntVectorTy() && "ZExt produces only integer");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001457 assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001458 "SrcTy must be smaller than DestTy for ZExt!");
1459
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001460 return getFoldedCast(Instruction::ZExt, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001461}
1462
Chris Lattner229907c2011-07-18 04:54:35 +00001463Constant *ConstantExpr::getFPTrunc(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001464#ifndef NDEBUG
1465 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1466 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1467#endif
1468 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001469 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001470 C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001471 "This is an illegal floating point truncation!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001472 return getFoldedCast(Instruction::FPTrunc, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001473}
1474
Chris Lattner229907c2011-07-18 04:54:35 +00001475Constant *ConstantExpr::getFPExtend(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001476#ifndef NDEBUG
1477 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1478 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1479#endif
1480 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001481 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001482 C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001483 "This is an illegal floating point extension!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001484 return getFoldedCast(Instruction::FPExt, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001485}
1486
Chris Lattner229907c2011-07-18 04:54:35 +00001487Constant *ConstantExpr::getUIToFP(Constant *C, Type *Ty) {
Devang Pateld26344d2008-11-03 23:20:04 +00001488#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001489 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1490 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001491#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001492 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001493 assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00001494 "This is an illegal uint to floating point cast!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001495 return getFoldedCast(Instruction::UIToFP, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001496}
1497
Chris Lattner229907c2011-07-18 04:54:35 +00001498Constant *ConstantExpr::getSIToFP(Constant *C, Type *Ty) {
Devang Pateld26344d2008-11-03 23:20:04 +00001499#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001500 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1501 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001502#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001503 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001504 assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001505 "This is an illegal sint to floating point cast!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001506 return getFoldedCast(Instruction::SIToFP, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001507}
1508
Chris Lattner229907c2011-07-18 04:54:35 +00001509Constant *ConstantExpr::getFPToUI(Constant *C, Type *Ty) {
Devang Pateld26344d2008-11-03 23:20:04 +00001510#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001511 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1512 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001513#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001514 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001515 assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00001516 "This is an illegal floating point to uint cast!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001517 return getFoldedCast(Instruction::FPToUI, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001518}
1519
Chris Lattner229907c2011-07-18 04:54:35 +00001520Constant *ConstantExpr::getFPToSI(Constant *C, Type *Ty) {
Devang Pateld26344d2008-11-03 23:20:04 +00001521#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001522 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1523 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001524#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001525 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001526 assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00001527 "This is an illegal floating point to sint cast!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001528 return getFoldedCast(Instruction::FPToSI, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001529}
1530
Chris Lattner229907c2011-07-18 04:54:35 +00001531Constant *ConstantExpr::getPtrToInt(Constant *C, Type *DstTy) {
Nadav Rotem3924cb02011-12-05 06:29:09 +00001532 assert(C->getType()->getScalarType()->isPointerTy() &&
1533 "PtrToInt source must be pointer or pointer vector");
1534 assert(DstTy->getScalarType()->isIntegerTy() &&
1535 "PtrToInt destination must be integer or integer vector");
Chris Lattner8a3df542012-01-25 01:32:59 +00001536 assert(isa<VectorType>(C->getType()) == isa<VectorType>(DstTy));
Nick Lewyckyff509622012-01-25 03:20:12 +00001537 if (isa<VectorType>(C->getType()))
Chris Lattner8326bd82012-01-26 00:42:34 +00001538 assert(C->getType()->getVectorNumElements()==DstTy->getVectorNumElements()&&
Chris Lattner8a3df542012-01-25 01:32:59 +00001539 "Invalid cast between a different number of vector elements");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001540 return getFoldedCast(Instruction::PtrToInt, C, DstTy);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001541}
1542
Chris Lattner229907c2011-07-18 04:54:35 +00001543Constant *ConstantExpr::getIntToPtr(Constant *C, Type *DstTy) {
Nadav Rotem3924cb02011-12-05 06:29:09 +00001544 assert(C->getType()->getScalarType()->isIntegerTy() &&
1545 "IntToPtr source must be integer or integer vector");
1546 assert(DstTy->getScalarType()->isPointerTy() &&
1547 "IntToPtr destination must be a pointer or pointer vector");
Chris Lattner8a3df542012-01-25 01:32:59 +00001548 assert(isa<VectorType>(C->getType()) == isa<VectorType>(DstTy));
Nick Lewyckyff509622012-01-25 03:20:12 +00001549 if (isa<VectorType>(C->getType()))
Chris Lattner8326bd82012-01-26 00:42:34 +00001550 assert(C->getType()->getVectorNumElements()==DstTy->getVectorNumElements()&&
Chris Lattner8a3df542012-01-25 01:32:59 +00001551 "Invalid cast between a different number of vector elements");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001552 return getFoldedCast(Instruction::IntToPtr, C, DstTy);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001553}
1554
Chris Lattner229907c2011-07-18 04:54:35 +00001555Constant *ConstantExpr::getBitCast(Constant *C, Type *DstTy) {
Chris Lattner37bc78a2010-01-26 21:51:43 +00001556 assert(CastInst::castIsValid(Instruction::BitCast, C, DstTy) &&
1557 "Invalid constantexpr bitcast!");
Chris Lattnercbeda872009-03-21 06:55:54 +00001558
1559 // It is common to ask for a bitcast of a value to its own type, handle this
1560 // speedily.
1561 if (C->getType() == DstTy) return C;
1562
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001563 return getFoldedCast(Instruction::BitCast, C, DstTy);
Chris Lattnerdd284742004-04-04 23:20:30 +00001564}
1565
Chris Lattner887ecac2011-07-09 18:23:52 +00001566Constant *ConstantExpr::get(unsigned Opcode, Constant *C1, Constant *C2,
1567 unsigned Flags) {
1568 // Check the operands for consistency first.
Reid Spencer7eb55b32006-11-02 01:53:59 +00001569 assert(Opcode >= Instruction::BinaryOpsBegin &&
1570 Opcode < Instruction::BinaryOpsEnd &&
Chris Lattner38a9bcd2003-05-21 17:49:25 +00001571 "Invalid opcode in binary constant expression");
1572 assert(C1->getType() == C2->getType() &&
1573 "Operand types in binary constant expression should match");
Owen Anderson61794042009-06-17 20:10:08 +00001574
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001575#ifndef NDEBUG
1576 switch (Opcode) {
Dan Gohmana5b96452009-06-04 22:49:04 +00001577 case Instruction::Add:
Reid Spencer7eb55b32006-11-02 01:53:59 +00001578 case Instruction::Sub:
Dan Gohmana5b96452009-06-04 22:49:04 +00001579 case Instruction::Mul:
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001580 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001581 assert(C1->getType()->isIntOrIntVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001582 "Tried to create an integer operation on a non-integer type!");
1583 break;
1584 case Instruction::FAdd:
1585 case Instruction::FSub:
1586 case Instruction::FMul:
1587 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001588 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001589 "Tried to create a floating-point operation on a "
1590 "non-floating-point type!");
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001591 break;
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001592 case Instruction::UDiv:
1593 case Instruction::SDiv:
1594 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001595 assert(C1->getType()->isIntOrIntVectorTy() &&
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001596 "Tried to create an arithmetic operation on a non-arithmetic type!");
1597 break;
1598 case Instruction::FDiv:
1599 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001600 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001601 "Tried to create an arithmetic operation on a non-arithmetic type!");
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001602 break;
Reid Spencer7eb55b32006-11-02 01:53:59 +00001603 case Instruction::URem:
1604 case Instruction::SRem:
1605 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001606 assert(C1->getType()->isIntOrIntVectorTy() &&
Reid Spencer7eb55b32006-11-02 01:53:59 +00001607 "Tried to create an arithmetic operation on a non-arithmetic type!");
1608 break;
1609 case Instruction::FRem:
1610 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001611 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001612 "Tried to create an arithmetic operation on a non-arithmetic type!");
Reid Spencer7eb55b32006-11-02 01:53:59 +00001613 break;
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001614 case Instruction::And:
1615 case Instruction::Or:
1616 case Instruction::Xor:
1617 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001618 assert(C1->getType()->isIntOrIntVectorTy() &&
Misha Brukman3852f652005-01-27 06:46:38 +00001619 "Tried to create a logical operation on a non-integral type!");
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001620 break;
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001621 case Instruction::Shl:
Reid Spencerfdff9382006-11-08 06:47:33 +00001622 case Instruction::LShr:
1623 case Instruction::AShr:
Reid Spencer2341c222007-02-02 02:16:23 +00001624 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001625 assert(C1->getType()->isIntOrIntVectorTy() &&
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001626 "Tried to create a shift operation on a non-integer type!");
1627 break;
1628 default:
1629 break;
1630 }
1631#endif
1632
Chris Lattner887ecac2011-07-09 18:23:52 +00001633 if (Constant *FC = ConstantFoldBinaryInstruction(Opcode, C1, C2))
1634 return FC; // Fold a few common cases.
1635
1636 std::vector<Constant*> argVec(1, C1);
1637 argVec.push_back(C2);
1638 ExprMapKeyType Key(Opcode, argVec, 0, Flags);
1639
1640 LLVMContextImpl *pImpl = C1->getContext().pImpl;
1641 return pImpl->ExprConstants.getOrCreate(C1->getType(), Key);
Reid Spencera009d0d2006-12-04 21:35:24 +00001642}
1643
Chris Lattner229907c2011-07-18 04:54:35 +00001644Constant *ConstantExpr::getSizeOf(Type* Ty) {
Owen Anderson487375e2009-07-29 18:55:55 +00001645 // sizeof is implemented as: (i64) gep (Ty*)null, 1
1646 // Note that a non-inbounds gep is used, as null isn't within any object.
Owen Anderson55f1c092009-08-13 21:58:54 +00001647 Constant *GEPIdx = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
Owen Anderson487375e2009-07-29 18:55:55 +00001648 Constant *GEP = getGetElementPtr(
Jay Foaded8db7d2011-07-21 14:31:17 +00001649 Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx);
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001650 return getPtrToInt(GEP,
1651 Type::getInt64Ty(Ty->getContext()));
Owen Anderson487375e2009-07-29 18:55:55 +00001652}
1653
Chris Lattner229907c2011-07-18 04:54:35 +00001654Constant *ConstantExpr::getAlignOf(Type* Ty) {
Dan Gohmancf913832010-01-28 02:15:55 +00001655 // alignof is implemented as: (i64) gep ({i1,Ty}*)null, 0, 1
Dan Gohman50c09d02009-08-11 17:57:01 +00001656 // Note that a non-inbounds gep is used, as null isn't within any object.
Chris Lattner229907c2011-07-18 04:54:35 +00001657 Type *AligningTy =
Chris Lattnerf3f545e2011-06-18 22:48:56 +00001658 StructType::get(Type::getInt1Ty(Ty->getContext()), Ty, NULL);
Owen Anderson5a1acd92009-07-31 20:28:14 +00001659 Constant *NullPtr = Constant::getNullValue(AligningTy->getPointerTo());
Dan Gohmana9be7392010-01-28 02:43:22 +00001660 Constant *Zero = ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0);
Owen Anderson55f1c092009-08-13 21:58:54 +00001661 Constant *One = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
Owen Anderson487375e2009-07-29 18:55:55 +00001662 Constant *Indices[2] = { Zero, One };
Jay Foaded8db7d2011-07-21 14:31:17 +00001663 Constant *GEP = getGetElementPtr(NullPtr, Indices);
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001664 return getPtrToInt(GEP,
1665 Type::getInt64Ty(Ty->getContext()));
Owen Anderson487375e2009-07-29 18:55:55 +00001666}
1667
Chris Lattner229907c2011-07-18 04:54:35 +00001668Constant *ConstantExpr::getOffsetOf(StructType* STy, unsigned FieldNo) {
Dan Gohmanede94e62010-02-01 16:37:38 +00001669 return getOffsetOf(STy, ConstantInt::get(Type::getInt32Ty(STy->getContext()),
1670 FieldNo));
1671}
1672
Chris Lattner229907c2011-07-18 04:54:35 +00001673Constant *ConstantExpr::getOffsetOf(Type* Ty, Constant *FieldNo) {
Dan Gohmanff3af7252009-08-16 21:26:11 +00001674 // offsetof is implemented as: (i64) gep (Ty*)null, 0, FieldNo
1675 // Note that a non-inbounds gep is used, as null isn't within any object.
1676 Constant *GEPIdx[] = {
Dan Gohmanede94e62010-02-01 16:37:38 +00001677 ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0),
1678 FieldNo
Dan Gohmanff3af7252009-08-16 21:26:11 +00001679 };
1680 Constant *GEP = getGetElementPtr(
Jay Foaded8db7d2011-07-21 14:31:17 +00001681 Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx);
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001682 return getPtrToInt(GEP,
1683 Type::getInt64Ty(Ty->getContext()));
Dan Gohmanff3af7252009-08-16 21:26:11 +00001684}
Owen Anderson487375e2009-07-29 18:55:55 +00001685
Chris Lattner887ecac2011-07-09 18:23:52 +00001686Constant *ConstantExpr::getCompare(unsigned short Predicate,
1687 Constant *C1, Constant *C2) {
Reid Spencera009d0d2006-12-04 21:35:24 +00001688 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Chris Lattner887ecac2011-07-09 18:23:52 +00001689
1690 switch (Predicate) {
1691 default: llvm_unreachable("Invalid CmpInst predicate");
1692 case CmpInst::FCMP_FALSE: case CmpInst::FCMP_OEQ: case CmpInst::FCMP_OGT:
1693 case CmpInst::FCMP_OGE: case CmpInst::FCMP_OLT: case CmpInst::FCMP_OLE:
1694 case CmpInst::FCMP_ONE: case CmpInst::FCMP_ORD: case CmpInst::FCMP_UNO:
1695 case CmpInst::FCMP_UEQ: case CmpInst::FCMP_UGT: case CmpInst::FCMP_UGE:
1696 case CmpInst::FCMP_ULT: case CmpInst::FCMP_ULE: case CmpInst::FCMP_UNE:
1697 case CmpInst::FCMP_TRUE:
1698 return getFCmp(Predicate, C1, C2);
1699
1700 case CmpInst::ICMP_EQ: case CmpInst::ICMP_NE: case CmpInst::ICMP_UGT:
1701 case CmpInst::ICMP_UGE: case CmpInst::ICMP_ULT: case CmpInst::ICMP_ULE:
1702 case CmpInst::ICMP_SGT: case CmpInst::ICMP_SGE: case CmpInst::ICMP_SLT:
1703 case CmpInst::ICMP_SLE:
1704 return getICmp(Predicate, C1, C2);
1705 }
Chris Lattner29ca2c62004-08-04 18:50:09 +00001706}
1707
Chris Lattner887ecac2011-07-09 18:23:52 +00001708Constant *ConstantExpr::getSelect(Constant *C, Constant *V1, Constant *V2) {
Chris Lattner41632132008-12-29 00:16:12 +00001709 assert(!SelectInst::areInvalidOperands(C, V1, V2)&&"Invalid select operands");
Chris Lattner6e415c02004-03-12 05:54:04 +00001710
Chris Lattner887ecac2011-07-09 18:23:52 +00001711 if (Constant *SC = ConstantFoldSelectInstruction(C, V1, V2))
1712 return SC; // Fold common cases
Chris Lattner6e415c02004-03-12 05:54:04 +00001713
1714 std::vector<Constant*> argVec(3, C);
1715 argVec[1] = V1;
1716 argVec[2] = V2;
Reid Spenceree3c9912006-12-04 05:19:50 +00001717 ExprMapKeyType Key(Instruction::Select, argVec);
Owen Anderson61794042009-06-17 20:10:08 +00001718
Chris Lattner887ecac2011-07-09 18:23:52 +00001719 LLVMContextImpl *pImpl = C->getContext().pImpl;
1720 return pImpl->ExprConstants.getOrCreate(V1->getType(), Key);
Chris Lattner6e415c02004-03-12 05:54:04 +00001721}
1722
Jay Foaded8db7d2011-07-21 14:31:17 +00001723Constant *ConstantExpr::getGetElementPtr(Constant *C, ArrayRef<Value *> Idxs,
1724 bool InBounds) {
1725 if (Constant *FC = ConstantFoldGetElementPtr(C, InBounds, Idxs))
Chris Lattner94c8d292011-02-11 05:34:33 +00001726 return FC; // Fold a few common cases.
Dan Gohman1b849082009-09-07 23:54:19 +00001727
Chris Lattner887ecac2011-07-09 18:23:52 +00001728 // Get the result type of the getelementptr!
Jay Foadd1b78492011-07-25 09:48:08 +00001729 Type *Ty = GetElementPtrInst::getIndexedType(C->getType(), Idxs);
Chris Lattner887ecac2011-07-09 18:23:52 +00001730 assert(Ty && "GEP indices invalid!");
Chris Lattner8326bd82012-01-26 00:42:34 +00001731 unsigned AS = C->getType()->getPointerAddressSpace();
Chris Lattner887ecac2011-07-09 18:23:52 +00001732 Type *ReqTy = Ty->getPointerTo(AS);
1733
Duncan Sands19d0b472010-02-16 11:11:14 +00001734 assert(C->getType()->isPointerTy() &&
Dan Gohman1b849082009-09-07 23:54:19 +00001735 "Non-pointer type for constant GetElementPtr expression");
1736 // Look up the constant in the table first to ensure uniqueness
1737 std::vector<Constant*> ArgVec;
Jay Foaded8db7d2011-07-21 14:31:17 +00001738 ArgVec.reserve(1 + Idxs.size());
Dan Gohman1b849082009-09-07 23:54:19 +00001739 ArgVec.push_back(C);
Jay Foaded8db7d2011-07-21 14:31:17 +00001740 for (unsigned i = 0, e = Idxs.size(); i != e; ++i)
Dan Gohman1b849082009-09-07 23:54:19 +00001741 ArgVec.push_back(cast<Constant>(Idxs[i]));
1742 const ExprMapKeyType Key(Instruction::GetElementPtr, ArgVec, 0,
Chris Lattner94c8d292011-02-11 05:34:33 +00001743 InBounds ? GEPOperator::IsInBounds : 0);
Chris Lattner887ecac2011-07-09 18:23:52 +00001744
1745 LLVMContextImpl *pImpl = C->getContext().pImpl;
Dan Gohman1b849082009-09-07 23:54:19 +00001746 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
1747}
1748
Reid Spenceree3c9912006-12-04 05:19:50 +00001749Constant *
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001750ConstantExpr::getICmp(unsigned short pred, Constant *LHS, Constant *RHS) {
Reid Spenceree3c9912006-12-04 05:19:50 +00001751 assert(LHS->getType() == RHS->getType());
1752 assert(pred >= ICmpInst::FIRST_ICMP_PREDICATE &&
1753 pred <= ICmpInst::LAST_ICMP_PREDICATE && "Invalid ICmp Predicate");
1754
Chris Lattnerf5edeeb2010-02-01 20:48:08 +00001755 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
Reid Spenceree3c9912006-12-04 05:19:50 +00001756 return FC; // Fold a few common cases...
1757
1758 // Look up the constant in the table first to ensure uniqueness
1759 std::vector<Constant*> ArgVec;
1760 ArgVec.push_back(LHS);
1761 ArgVec.push_back(RHS);
Reid Spencerb1537492006-12-24 18:42:29 +00001762 // Get the key type with both the opcode and predicate
Reid Spenceree3c9912006-12-04 05:19:50 +00001763 const ExprMapKeyType Key(Instruction::ICmp, ArgVec, pred);
Owen Anderson61794042009-06-17 20:10:08 +00001764
Chris Lattner229907c2011-07-18 04:54:35 +00001765 Type *ResultTy = Type::getInt1Ty(LHS->getContext());
1766 if (VectorType *VT = dyn_cast<VectorType>(LHS->getType()))
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001767 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
1768
Owen Anderson1584a292009-08-04 20:25:11 +00001769 LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl;
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001770 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
Reid Spenceree3c9912006-12-04 05:19:50 +00001771}
1772
1773Constant *
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001774ConstantExpr::getFCmp(unsigned short pred, Constant *LHS, Constant *RHS) {
Reid Spenceree3c9912006-12-04 05:19:50 +00001775 assert(LHS->getType() == RHS->getType());
1776 assert(pred <= FCmpInst::LAST_FCMP_PREDICATE && "Invalid FCmp Predicate");
1777
Chris Lattnerf5edeeb2010-02-01 20:48:08 +00001778 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
Reid Spenceree3c9912006-12-04 05:19:50 +00001779 return FC; // Fold a few common cases...
1780
1781 // Look up the constant in the table first to ensure uniqueness
1782 std::vector<Constant*> ArgVec;
1783 ArgVec.push_back(LHS);
1784 ArgVec.push_back(RHS);
Reid Spencerb1537492006-12-24 18:42:29 +00001785 // Get the key type with both the opcode and predicate
Reid Spenceree3c9912006-12-04 05:19:50 +00001786 const ExprMapKeyType Key(Instruction::FCmp, ArgVec, pred);
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001787
Chris Lattner229907c2011-07-18 04:54:35 +00001788 Type *ResultTy = Type::getInt1Ty(LHS->getContext());
1789 if (VectorType *VT = dyn_cast<VectorType>(LHS->getType()))
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001790 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
1791
Owen Anderson1584a292009-08-04 20:25:11 +00001792 LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl;
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001793 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
Reid Spenceree3c9912006-12-04 05:19:50 +00001794}
1795
Robert Bocchino23004482006-01-10 19:05:34 +00001796Constant *ConstantExpr::getExtractElement(Constant *Val, Constant *Idx) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001797 assert(Val->getType()->isVectorTy() &&
Reid Spencer09575ba2007-02-15 03:39:18 +00001798 "Tried to create extractelement operation on non-vector type!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001799 assert(Idx->getType()->isIntegerTy(32) &&
Reid Spencer2546b762007-01-26 07:37:34 +00001800 "Extractelement index must be i32 type!");
Chris Lattner887ecac2011-07-09 18:23:52 +00001801
1802 if (Constant *FC = ConstantFoldExtractElementInstruction(Val, Idx))
Chris Lattner09660c92009-12-30 20:25:09 +00001803 return FC; // Fold a few common cases.
Chris Lattner887ecac2011-07-09 18:23:52 +00001804
Robert Bocchinoca27f032006-01-17 20:07:22 +00001805 // Look up the constant in the table first to ensure uniqueness
1806 std::vector<Constant*> ArgVec(1, Val);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001807 ArgVec.push_back(Idx);
Chris Lattner887ecac2011-07-09 18:23:52 +00001808 const ExprMapKeyType Key(Instruction::ExtractElement,ArgVec);
Owen Anderson61794042009-06-17 20:10:08 +00001809
Chris Lattner887ecac2011-07-09 18:23:52 +00001810 LLVMContextImpl *pImpl = Val->getContext().pImpl;
Chris Lattner8326bd82012-01-26 00:42:34 +00001811 Type *ReqTy = Val->getType()->getVectorElementType();
Owen Anderson1584a292009-08-04 20:25:11 +00001812 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001813}
1814
1815Constant *ConstantExpr::getInsertElement(Constant *Val, Constant *Elt,
1816 Constant *Idx) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001817 assert(Val->getType()->isVectorTy() &&
Reid Spencer09575ba2007-02-15 03:39:18 +00001818 "Tried to create insertelement operation on non-vector type!");
Chris Lattner8326bd82012-01-26 00:42:34 +00001819 assert(Elt->getType() == Val->getType()->getVectorElementType() &&
1820 "Insertelement types must match!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001821 assert(Idx->getType()->isIntegerTy(32) &&
Reid Spencer2546b762007-01-26 07:37:34 +00001822 "Insertelement index must be i32 type!");
Robert Bocchinoca27f032006-01-17 20:07:22 +00001823
Chris Lattner887ecac2011-07-09 18:23:52 +00001824 if (Constant *FC = ConstantFoldInsertElementInstruction(Val, Elt, Idx))
1825 return FC; // Fold a few common cases.
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001826 // Look up the constant in the table first to ensure uniqueness
Chris Lattner887ecac2011-07-09 18:23:52 +00001827 std::vector<Constant*> ArgVec(1, Val);
1828 ArgVec.push_back(Elt);
1829 ArgVec.push_back(Idx);
1830 const ExprMapKeyType Key(Instruction::InsertElement,ArgVec);
Owen Anderson61794042009-06-17 20:10:08 +00001831
Chris Lattner887ecac2011-07-09 18:23:52 +00001832 LLVMContextImpl *pImpl = Val->getContext().pImpl;
1833 return pImpl->ExprConstants.getOrCreate(Val->getType(), Key);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001834}
1835
1836Constant *ConstantExpr::getShuffleVector(Constant *V1, Constant *V2,
1837 Constant *Mask) {
1838 assert(ShuffleVectorInst::isValidOperands(V1, V2, Mask) &&
1839 "Invalid shuffle vector constant expr operands!");
Nate Begeman94aa38d2009-02-12 21:28:33 +00001840
Chris Lattner887ecac2011-07-09 18:23:52 +00001841 if (Constant *FC = ConstantFoldShuffleVectorInstruction(V1, V2, Mask))
1842 return FC; // Fold a few common cases.
1843
Chris Lattner8326bd82012-01-26 00:42:34 +00001844 unsigned NElts = Mask->getType()->getVectorNumElements();
1845 Type *EltTy = V1->getType()->getVectorElementType();
Chris Lattner229907c2011-07-18 04:54:35 +00001846 Type *ShufTy = VectorType::get(EltTy, NElts);
Chris Lattner887ecac2011-07-09 18:23:52 +00001847
1848 // Look up the constant in the table first to ensure uniqueness
1849 std::vector<Constant*> ArgVec(1, V1);
1850 ArgVec.push_back(V2);
1851 ArgVec.push_back(Mask);
1852 const ExprMapKeyType Key(Instruction::ShuffleVector,ArgVec);
1853
1854 LLVMContextImpl *pImpl = ShufTy->getContext().pImpl;
1855 return pImpl->ExprConstants.getOrCreate(ShufTy, Key);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001856}
1857
Chris Lattner887ecac2011-07-09 18:23:52 +00001858Constant *ConstantExpr::getInsertValue(Constant *Agg, Constant *Val,
Jay Foad57aa6362011-07-13 10:26:04 +00001859 ArrayRef<unsigned> Idxs) {
1860 assert(ExtractValueInst::getIndexedType(Agg->getType(),
1861 Idxs) == Val->getType() &&
Dan Gohman12fce772008-05-15 19:50:34 +00001862 "insertvalue indices invalid!");
Dan Gohman0752bff2008-05-23 00:36:11 +00001863 assert(Agg->getType()->isFirstClassType() &&
Chris Lattner6ebfbf52011-07-12 05:26:21 +00001864 "Non-first-class type for constant insertvalue expression");
Jay Foad57aa6362011-07-13 10:26:04 +00001865 Constant *FC = ConstantFoldInsertValueInstruction(Agg, Val, Idxs);
Chris Lattner6ebfbf52011-07-12 05:26:21 +00001866 assert(FC && "insertvalue constant expr couldn't be folded!");
Dan Gohmand5d24f62008-07-21 23:30:30 +00001867 return FC;
Dan Gohman12fce772008-05-15 19:50:34 +00001868}
1869
Chris Lattner887ecac2011-07-09 18:23:52 +00001870Constant *ConstantExpr::getExtractValue(Constant *Agg,
Jay Foad57aa6362011-07-13 10:26:04 +00001871 ArrayRef<unsigned> Idxs) {
Dan Gohman0752bff2008-05-23 00:36:11 +00001872 assert(Agg->getType()->isFirstClassType() &&
Chris Lattner887ecac2011-07-09 18:23:52 +00001873 "Tried to create extractelement operation on non-first-class type!");
Dan Gohman12fce772008-05-15 19:50:34 +00001874
Chris Lattner229907c2011-07-18 04:54:35 +00001875 Type *ReqTy = ExtractValueInst::getIndexedType(Agg->getType(), Idxs);
Chandler Carruth9db56b82011-07-10 09:45:35 +00001876 (void)ReqTy;
Chris Lattner887ecac2011-07-09 18:23:52 +00001877 assert(ReqTy && "extractvalue indices invalid!");
1878
Dan Gohman0752bff2008-05-23 00:36:11 +00001879 assert(Agg->getType()->isFirstClassType() &&
1880 "Non-first-class type for constant extractvalue expression");
Jay Foad57aa6362011-07-13 10:26:04 +00001881 Constant *FC = ConstantFoldExtractValueInstruction(Agg, Idxs);
Dan Gohmand5d24f62008-07-21 23:30:30 +00001882 assert(FC && "ExtractValue constant expr couldn't be folded!");
1883 return FC;
Dan Gohman12fce772008-05-15 19:50:34 +00001884}
1885
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001886Constant *ConstantExpr::getNeg(Constant *C, bool HasNUW, bool HasNSW) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001887 assert(C->getType()->isIntOrIntVectorTy() &&
Owen Anderson487375e2009-07-29 18:55:55 +00001888 "Cannot NEG a nonintegral value!");
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001889 return getSub(ConstantFP::getZeroValueForNegation(C->getType()),
1890 C, HasNUW, HasNSW);
Owen Anderson487375e2009-07-29 18:55:55 +00001891}
1892
Chris Lattnera676c0f2011-02-07 16:40:21 +00001893Constant *ConstantExpr::getFNeg(Constant *C) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001894 assert(C->getType()->isFPOrFPVectorTy() &&
Owen Anderson487375e2009-07-29 18:55:55 +00001895 "Cannot FNEG a non-floating-point value!");
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001896 return getFSub(ConstantFP::getZeroValueForNegation(C->getType()), C);
Owen Anderson487375e2009-07-29 18:55:55 +00001897}
1898
Chris Lattnera676c0f2011-02-07 16:40:21 +00001899Constant *ConstantExpr::getNot(Constant *C) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001900 assert(C->getType()->isIntOrIntVectorTy() &&
Owen Anderson487375e2009-07-29 18:55:55 +00001901 "Cannot NOT a nonintegral value!");
Owen Anderson5a1acd92009-07-31 20:28:14 +00001902 return get(Instruction::Xor, C, Constant::getAllOnesValue(C->getType()));
Owen Anderson487375e2009-07-29 18:55:55 +00001903}
1904
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001905Constant *ConstantExpr::getAdd(Constant *C1, Constant *C2,
1906 bool HasNUW, bool HasNSW) {
1907 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
1908 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
1909 return get(Instruction::Add, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00001910}
1911
Chris Lattnera676c0f2011-02-07 16:40:21 +00001912Constant *ConstantExpr::getFAdd(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001913 return get(Instruction::FAdd, C1, C2);
1914}
1915
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001916Constant *ConstantExpr::getSub(Constant *C1, Constant *C2,
1917 bool HasNUW, bool HasNSW) {
1918 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
1919 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
1920 return get(Instruction::Sub, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00001921}
1922
Chris Lattnera676c0f2011-02-07 16:40:21 +00001923Constant *ConstantExpr::getFSub(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001924 return get(Instruction::FSub, C1, C2);
1925}
1926
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001927Constant *ConstantExpr::getMul(Constant *C1, Constant *C2,
1928 bool HasNUW, bool HasNSW) {
1929 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
1930 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
1931 return get(Instruction::Mul, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00001932}
1933
Chris Lattnera676c0f2011-02-07 16:40:21 +00001934Constant *ConstantExpr::getFMul(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001935 return get(Instruction::FMul, C1, C2);
1936}
1937
Chris Lattner0d75eac2011-02-09 16:43:07 +00001938Constant *ConstantExpr::getUDiv(Constant *C1, Constant *C2, bool isExact) {
1939 return get(Instruction::UDiv, C1, C2,
1940 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00001941}
1942
Chris Lattner0d75eac2011-02-09 16:43:07 +00001943Constant *ConstantExpr::getSDiv(Constant *C1, Constant *C2, bool isExact) {
1944 return get(Instruction::SDiv, C1, C2,
1945 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00001946}
1947
Chris Lattnera676c0f2011-02-07 16:40:21 +00001948Constant *ConstantExpr::getFDiv(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001949 return get(Instruction::FDiv, C1, C2);
1950}
1951
Chris Lattnera676c0f2011-02-07 16:40:21 +00001952Constant *ConstantExpr::getURem(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001953 return get(Instruction::URem, C1, C2);
1954}
1955
Chris Lattnera676c0f2011-02-07 16:40:21 +00001956Constant *ConstantExpr::getSRem(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001957 return get(Instruction::SRem, C1, C2);
1958}
1959
Chris Lattnera676c0f2011-02-07 16:40:21 +00001960Constant *ConstantExpr::getFRem(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001961 return get(Instruction::FRem, C1, C2);
1962}
1963
Chris Lattnera676c0f2011-02-07 16:40:21 +00001964Constant *ConstantExpr::getAnd(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001965 return get(Instruction::And, C1, C2);
1966}
1967
Chris Lattnera676c0f2011-02-07 16:40:21 +00001968Constant *ConstantExpr::getOr(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001969 return get(Instruction::Or, C1, C2);
1970}
1971
Chris Lattnera676c0f2011-02-07 16:40:21 +00001972Constant *ConstantExpr::getXor(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001973 return get(Instruction::Xor, C1, C2);
1974}
1975
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001976Constant *ConstantExpr::getShl(Constant *C1, Constant *C2,
1977 bool HasNUW, bool HasNSW) {
1978 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
1979 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
1980 return get(Instruction::Shl, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00001981}
1982
Chris Lattner0d75eac2011-02-09 16:43:07 +00001983Constant *ConstantExpr::getLShr(Constant *C1, Constant *C2, bool isExact) {
1984 return get(Instruction::LShr, C1, C2,
1985 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00001986}
1987
Chris Lattner0d75eac2011-02-09 16:43:07 +00001988Constant *ConstantExpr::getAShr(Constant *C1, Constant *C2, bool isExact) {
1989 return get(Instruction::AShr, C1, C2,
1990 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00001991}
1992
Vikram S. Adve4c485332002-07-15 18:19:33 +00001993// destroyConstant - Remove the constant from the constant table...
1994//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001995void ConstantExpr::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001996 getType()->getContext().pImpl->ExprConstants.remove(this);
Vikram S. Adve4c485332002-07-15 18:19:33 +00001997 destroyConstantImpl();
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001998}
1999
Chris Lattner3cd8c562002-07-30 18:54:25 +00002000const char *ConstantExpr::getOpcodeName() const {
2001 return Instruction::getOpcodeName(getOpcode());
Vikram S. Adve4e537b22002-07-14 23:13:17 +00002002}
Reid Spencer1ebe1ab2004-07-17 23:48:33 +00002003
Chris Lattnera3b94ba2010-03-30 20:48:48 +00002004
2005
2006GetElementPtrConstantExpr::
2007GetElementPtrConstantExpr(Constant *C, const std::vector<Constant*> &IdxList,
Chris Lattner229907c2011-07-18 04:54:35 +00002008 Type *DestTy)
Chris Lattnera3b94ba2010-03-30 20:48:48 +00002009 : ConstantExpr(DestTy, Instruction::GetElementPtr,
2010 OperandTraits<GetElementPtrConstantExpr>::op_end(this)
2011 - (IdxList.size()+1), IdxList.size()+1) {
2012 OperandList[0] = C;
2013 for (unsigned i = 0, E = IdxList.size(); i != E; ++i)
2014 OperandList[i+1] = IdxList[i];
2015}
2016
Chris Lattner3756b912012-01-23 22:57:10 +00002017//===----------------------------------------------------------------------===//
2018// ConstantData* implementations
2019
2020void ConstantDataArray::anchor() {}
2021void ConstantDataVector::anchor() {}
2022
Chris Lattnere4f3f102012-01-24 04:43:41 +00002023/// getElementType - Return the element type of the array/vector.
2024Type *ConstantDataSequential::getElementType() const {
2025 return getType()->getElementType();
2026}
2027
Chris Lattner5d4497b2012-01-24 09:31:43 +00002028StringRef ConstantDataSequential::getRawDataValues() const {
Chris Lattner00245f42012-01-24 13:41:11 +00002029 return StringRef(DataElements, getNumElements()*getElementByteSize());
Chris Lattner5d4497b2012-01-24 09:31:43 +00002030}
2031
Chris Lattner030af792012-01-24 05:42:11 +00002032/// isElementTypeCompatible - Return true if a ConstantDataSequential can be
2033/// formed with a vector or array of the specified element type.
2034/// ConstantDataArray only works with normal float and int types that are
2035/// stored densely in memory, not with things like i42 or x86_f80.
2036bool ConstantDataSequential::isElementTypeCompatible(const Type *Ty) {
Chris Lattnere4f3f102012-01-24 04:43:41 +00002037 if (Ty->isFloatTy() || Ty->isDoubleTy()) return true;
2038 if (const IntegerType *IT = dyn_cast<IntegerType>(Ty)) {
2039 switch (IT->getBitWidth()) {
2040 case 8:
2041 case 16:
2042 case 32:
2043 case 64:
2044 return true;
2045 default: break;
2046 }
2047 }
2048 return false;
2049}
2050
Chris Lattner00245f42012-01-24 13:41:11 +00002051/// getNumElements - Return the number of elements in the array or vector.
2052unsigned ConstantDataSequential::getNumElements() const {
Chris Lattner8a3df542012-01-25 01:32:59 +00002053 if (ArrayType *AT = dyn_cast<ArrayType>(getType()))
2054 return AT->getNumElements();
Chris Lattner8326bd82012-01-26 00:42:34 +00002055 return getType()->getVectorNumElements();
Chris Lattner00245f42012-01-24 13:41:11 +00002056}
2057
2058
Chris Lattnere4f3f102012-01-24 04:43:41 +00002059/// getElementByteSize - Return the size in bytes of the elements in the data.
2060uint64_t ConstantDataSequential::getElementByteSize() const {
2061 return getElementType()->getPrimitiveSizeInBits()/8;
2062}
2063
2064/// getElementPointer - Return the start of the specified element.
2065const char *ConstantDataSequential::getElementPointer(unsigned Elt) const {
Chris Lattner00245f42012-01-24 13:41:11 +00002066 assert(Elt < getNumElements() && "Invalid Elt");
Chris Lattnere4f3f102012-01-24 04:43:41 +00002067 return DataElements+Elt*getElementByteSize();
2068}
2069
2070
Chris Lattner3756b912012-01-23 22:57:10 +00002071/// isAllZeros - return true if the array is empty or all zeros.
2072static bool isAllZeros(StringRef Arr) {
2073 for (StringRef::iterator I = Arr.begin(), E = Arr.end(); I != E; ++I)
2074 if (*I != 0)
2075 return false;
2076 return true;
2077}
Chris Lattner030af792012-01-24 05:42:11 +00002078
Chris Lattner3756b912012-01-23 22:57:10 +00002079/// getImpl - This is the underlying implementation of all of the
2080/// ConstantDataSequential::get methods. They all thunk down to here, providing
2081/// the correct element type. We take the bytes in as an StringRef because
2082/// we *want* an underlying "char*" to avoid TBAA type punning violations.
2083Constant *ConstantDataSequential::getImpl(StringRef Elements, Type *Ty) {
Chris Lattner8326bd82012-01-26 00:42:34 +00002084 assert(isElementTypeCompatible(Ty->getSequentialElementType()));
Chris Lattner139822f2012-01-24 14:17:05 +00002085 // If the elements are all zero or there are no elements, return a CAZ, which
2086 // is more dense and canonical.
Chris Lattner3756b912012-01-23 22:57:10 +00002087 if (isAllZeros(Elements))
2088 return ConstantAggregateZero::get(Ty);
2089
2090 // Do a lookup to see if we have already formed one of these.
2091 StringMap<ConstantDataSequential*>::MapEntryTy &Slot =
2092 Ty->getContext().pImpl->CDSConstants.GetOrCreateValue(Elements);
2093
2094 // The bucket can point to a linked list of different CDS's that have the same
2095 // body but different types. For example, 0,0,0,1 could be a 4 element array
2096 // of i8, or a 1-element array of i32. They'll both end up in the same
2097 /// StringMap bucket, linked up by their Next pointers. Walk the list.
2098 ConstantDataSequential **Entry = &Slot.getValue();
2099 for (ConstantDataSequential *Node = *Entry; Node != 0;
2100 Entry = &Node->Next, Node = *Entry)
2101 if (Node->getType() == Ty)
2102 return Node;
2103
2104 // Okay, we didn't get a hit. Create a node of the right class, link it in,
2105 // and return it.
2106 if (isa<ArrayType>(Ty))
2107 return *Entry = new ConstantDataArray(Ty, Slot.getKeyData());
2108
2109 assert(isa<VectorType>(Ty));
2110 return *Entry = new ConstantDataVector(Ty, Slot.getKeyData());
2111}
2112
2113void ConstantDataSequential::destroyConstant() {
Chris Lattner3756b912012-01-23 22:57:10 +00002114 // Remove the constant from the StringMap.
2115 StringMap<ConstantDataSequential*> &CDSConstants =
2116 getType()->getContext().pImpl->CDSConstants;
2117
2118 StringMap<ConstantDataSequential*>::iterator Slot =
Chris Lattner5d4497b2012-01-24 09:31:43 +00002119 CDSConstants.find(getRawDataValues());
Chris Lattner3756b912012-01-23 22:57:10 +00002120
2121 assert(Slot != CDSConstants.end() && "CDS not found in uniquing table");
2122
2123 ConstantDataSequential **Entry = &Slot->getValue();
2124
2125 // Remove the entry from the hash table.
2126 if ((*Entry)->Next == 0) {
2127 // If there is only one value in the bucket (common case) it must be this
2128 // entry, and removing the entry should remove the bucket completely.
2129 assert((*Entry) == this && "Hash mismatch in ConstantDataSequential");
2130 getContext().pImpl->CDSConstants.erase(Slot);
2131 } else {
2132 // Otherwise, there are multiple entries linked off the bucket, unlink the
2133 // node we care about but keep the bucket around.
2134 for (ConstantDataSequential *Node = *Entry; ;
2135 Entry = &Node->Next, Node = *Entry) {
2136 assert(Node && "Didn't find entry in its uniquing hash table!");
2137 // If we found our entry, unlink it from the list and we're done.
2138 if (Node == this) {
2139 *Entry = Node->Next;
2140 break;
2141 }
2142 }
2143 }
2144
2145 // If we were part of a list, make sure that we don't delete the list that is
2146 // still owned by the uniquing map.
2147 Next = 0;
2148
2149 // Finally, actually delete it.
2150 destroyConstantImpl();
2151}
2152
2153/// get() constructors - Return a constant with array type with an element
2154/// count and element type matching the ArrayRef passed in. Note that this
2155/// can return a ConstantAggregateZero object.
Chris Lattner20683932012-01-24 14:04:40 +00002156Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint8_t> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002157 Type *Ty = ArrayType::get(Type::getInt8Ty(Context), Elts.size());
2158 return getImpl(StringRef((char*)Elts.data(), Elts.size()*1), Ty);
2159}
Chris Lattner20683932012-01-24 14:04:40 +00002160Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint16_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002161 Type *Ty = ArrayType::get(Type::getInt16Ty(Context), Elts.size());
2162 return getImpl(StringRef((char*)Elts.data(), Elts.size()*2), Ty);
2163}
Chris Lattner20683932012-01-24 14:04:40 +00002164Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint32_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002165 Type *Ty = ArrayType::get(Type::getInt32Ty(Context), Elts.size());
2166 return getImpl(StringRef((char*)Elts.data(), Elts.size()*4), Ty);
2167}
Chris Lattner20683932012-01-24 14:04:40 +00002168Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint64_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002169 Type *Ty = ArrayType::get(Type::getInt64Ty(Context), Elts.size());
2170 return getImpl(StringRef((char*)Elts.data(), Elts.size()*8), Ty);
2171}
Chris Lattner20683932012-01-24 14:04:40 +00002172Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<float> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002173 Type *Ty = ArrayType::get(Type::getFloatTy(Context), Elts.size());
2174 return getImpl(StringRef((char*)Elts.data(), Elts.size()*4), Ty);
2175}
Chris Lattner20683932012-01-24 14:04:40 +00002176Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<double> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002177 Type *Ty = ArrayType::get(Type::getDoubleTy(Context), Elts.size());
2178 return getImpl(StringRef((char*)Elts.data(), Elts.size()*8), Ty);
2179}
2180
Chris Lattner20683932012-01-24 14:04:40 +00002181/// getString - This method constructs a CDS and initializes it with a text
2182/// string. The default behavior (AddNull==true) causes a null terminator to
2183/// be placed at the end of the array (increasing the length of the string by
2184/// one more than the StringRef would normally indicate. Pass AddNull=false
2185/// to disable this behavior.
2186Constant *ConstantDataArray::getString(LLVMContext &Context,
2187 StringRef Str, bool AddNull) {
2188 if (!AddNull)
2189 return get(Context, ArrayRef<uint8_t>((uint8_t*)Str.data(), Str.size()));
2190
2191 SmallVector<uint8_t, 64> ElementVals;
2192 ElementVals.append(Str.begin(), Str.end());
2193 ElementVals.push_back(0);
2194 return get(Context, ElementVals);
2195}
Chris Lattner3756b912012-01-23 22:57:10 +00002196
2197/// get() constructors - Return a constant with vector type with an element
2198/// count and element type matching the ArrayRef passed in. Note that this
2199/// can return a ConstantAggregateZero object.
Chris Lattner20683932012-01-24 14:04:40 +00002200Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint8_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002201 Type *Ty = VectorType::get(Type::getInt8Ty(Context), Elts.size());
2202 return getImpl(StringRef((char*)Elts.data(), Elts.size()*1), Ty);
2203}
Chris Lattner20683932012-01-24 14:04:40 +00002204Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint16_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002205 Type *Ty = VectorType::get(Type::getInt16Ty(Context), Elts.size());
2206 return getImpl(StringRef((char*)Elts.data(), Elts.size()*2), Ty);
2207}
Chris Lattner20683932012-01-24 14:04:40 +00002208Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint32_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002209 Type *Ty = VectorType::get(Type::getInt32Ty(Context), Elts.size());
2210 return getImpl(StringRef((char*)Elts.data(), Elts.size()*4), Ty);
2211}
Chris Lattner20683932012-01-24 14:04:40 +00002212Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint64_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002213 Type *Ty = VectorType::get(Type::getInt64Ty(Context), Elts.size());
2214 return getImpl(StringRef((char*)Elts.data(), Elts.size()*8), Ty);
2215}
Chris Lattner20683932012-01-24 14:04:40 +00002216Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<float> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002217 Type *Ty = VectorType::get(Type::getFloatTy(Context), Elts.size());
2218 return getImpl(StringRef((char*)Elts.data(), Elts.size()*4), Ty);
2219}
Chris Lattner20683932012-01-24 14:04:40 +00002220Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<double> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002221 Type *Ty = VectorType::get(Type::getDoubleTy(Context), Elts.size());
2222 return getImpl(StringRef((char*)Elts.data(), Elts.size()*8), Ty);
2223}
2224
Chris Lattnere9eed292012-01-25 05:19:54 +00002225Constant *ConstantDataVector::getSplat(unsigned NumElts, Constant *V) {
2226 assert(isElementTypeCompatible(V->getType()) &&
2227 "Element type not compatible with ConstantData");
2228 if (ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
2229 if (CI->getType()->isIntegerTy(8)) {
2230 SmallVector<uint8_t, 16> Elts(NumElts, CI->getZExtValue());
2231 return get(V->getContext(), Elts);
2232 }
2233 if (CI->getType()->isIntegerTy(16)) {
2234 SmallVector<uint16_t, 16> Elts(NumElts, CI->getZExtValue());
2235 return get(V->getContext(), Elts);
2236 }
2237 if (CI->getType()->isIntegerTy(32)) {
2238 SmallVector<uint32_t, 16> Elts(NumElts, CI->getZExtValue());
2239 return get(V->getContext(), Elts);
2240 }
2241 assert(CI->getType()->isIntegerTy(64) && "Unsupported ConstantData type");
2242 SmallVector<uint64_t, 16> Elts(NumElts, CI->getZExtValue());
2243 return get(V->getContext(), Elts);
2244 }
2245
2246 ConstantFP *CFP = cast<ConstantFP>(V);
2247 if (CFP->getType()->isFloatTy()) {
2248 SmallVector<float, 16> Elts(NumElts, CFP->getValueAPF().convertToFloat());
2249 return get(V->getContext(), Elts);
2250 }
2251 assert(CFP->getType()->isDoubleTy() && "Unsupported ConstantData type");
2252 SmallVector<double, 16> Elts(NumElts, CFP->getValueAPF().convertToDouble());
2253 return get(V->getContext(), Elts);
2254}
2255
2256
Chris Lattnere4f3f102012-01-24 04:43:41 +00002257/// getElementAsInteger - If this is a sequential container of integers (of
2258/// any size), return the specified element in the low bits of a uint64_t.
2259uint64_t ConstantDataSequential::getElementAsInteger(unsigned Elt) const {
2260 assert(isa<IntegerType>(getElementType()) &&
2261 "Accessor can only be used when element is an integer");
2262 const char *EltPtr = getElementPointer(Elt);
2263
2264 // The data is stored in host byte order, make sure to cast back to the right
2265 // type to load with the right endianness.
Chris Lattner8326bd82012-01-26 00:42:34 +00002266 switch (getElementType()->getIntegerBitWidth()) {
Chris Lattnere4f3f102012-01-24 04:43:41 +00002267 default: assert(0 && "Invalid bitwidth for CDS");
2268 case 8: return *(uint8_t*)EltPtr;
2269 case 16: return *(uint16_t*)EltPtr;
2270 case 32: return *(uint32_t*)EltPtr;
2271 case 64: return *(uint64_t*)EltPtr;
2272 }
2273}
2274
2275/// getElementAsAPFloat - If this is a sequential container of floating point
2276/// type, return the specified element as an APFloat.
2277APFloat ConstantDataSequential::getElementAsAPFloat(unsigned Elt) const {
2278 const char *EltPtr = getElementPointer(Elt);
2279
2280 switch (getElementType()->getTypeID()) {
Nick Lewyckyff509622012-01-25 03:20:12 +00002281 default:
2282 assert(0 && "Accessor can only be used when element is float/double!");
Chris Lattnere4f3f102012-01-24 04:43:41 +00002283 case Type::FloatTyID: return APFloat(*(float*)EltPtr);
2284 case Type::DoubleTyID: return APFloat(*(double*)EltPtr);
2285 }
2286}
2287
2288/// getElementAsFloat - If this is an sequential container of floats, return
2289/// the specified element as a float.
2290float ConstantDataSequential::getElementAsFloat(unsigned Elt) const {
2291 assert(getElementType()->isFloatTy() &&
2292 "Accessor can only be used when element is a 'float'");
2293 return *(float*)getElementPointer(Elt);
2294}
2295
2296/// getElementAsDouble - If this is an sequential container of doubles, return
2297/// the specified element as a float.
2298double ConstantDataSequential::getElementAsDouble(unsigned Elt) const {
2299 assert(getElementType()->isDoubleTy() &&
2300 "Accessor can only be used when element is a 'float'");
2301 return *(double*)getElementPointer(Elt);
2302}
2303
2304/// getElementAsConstant - Return a Constant for a specified index's element.
2305/// Note that this has to compute a new constant to return, so it isn't as
2306/// efficient as getElementAsInteger/Float/Double.
2307Constant *ConstantDataSequential::getElementAsConstant(unsigned Elt) const {
2308 if (getElementType()->isFloatTy() || getElementType()->isDoubleTy())
2309 return ConstantFP::get(getContext(), getElementAsAPFloat(Elt));
2310
2311 return ConstantInt::get(getElementType(), getElementAsInteger(Elt));
2312}
2313
Chris Lattner5dd4d872012-01-24 09:01:07 +00002314/// isString - This method returns true if this is an array of i8.
2315bool ConstantDataSequential::isString() const {
2316 return isa<ArrayType>(getType()) && getElementType()->isIntegerTy(8);
2317}
Chris Lattner3756b912012-01-23 22:57:10 +00002318
Chris Lattner5dd4d872012-01-24 09:01:07 +00002319/// isCString - This method returns true if the array "isString", ends with a
2320/// nul byte, and does not contains any other nul bytes.
2321bool ConstantDataSequential::isCString() const {
2322 if (!isString())
2323 return false;
2324
2325 StringRef Str = getAsString();
2326
2327 // The last value must be nul.
2328 if (Str.back() != 0) return false;
2329
2330 // Other elements must be non-nul.
2331 return Str.drop_back().find(0) == StringRef::npos;
2332}
Chris Lattner3756b912012-01-23 22:57:10 +00002333
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002334/// getSplatValue - If this is a splat constant, meaning that all of the
2335/// elements have the same value, return that value. Otherwise return NULL.
2336Constant *ConstantDataVector::getSplatValue() const {
2337 const char *Base = getRawDataValues().data();
2338
2339 // Compare elements 1+ to the 0'th element.
2340 unsigned EltSize = getElementByteSize();
2341 for (unsigned i = 1, e = getNumElements(); i != e; ++i)
2342 if (memcmp(Base, Base+i*EltSize, EltSize))
2343 return 0;
2344
2345 // If they're all the same, return the 0th one as a representative.
2346 return getElementAsConstant(0);
2347}
Chris Lattnera3b94ba2010-03-30 20:48:48 +00002348
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002349//===----------------------------------------------------------------------===//
2350// replaceUsesOfWithOnConstant implementations
2351
Chris Lattner913849b2007-08-21 00:55:23 +00002352/// replaceUsesOfWithOnConstant - Update this constant array to change uses of
2353/// 'From' to be uses of 'To'. This must update the uniquing data structures
2354/// etc.
2355///
2356/// Note that we intentionally replace all uses of From with To here. Consider
2357/// a large array that uses 'From' 1000 times. By handling this case all here,
2358/// ConstantArray::replaceUsesOfWithOnConstant is only invoked once, and that
2359/// single invocation handles all 1000 uses. Handling them one at a time would
2360/// work, but would be really slow because it would have to unique each updated
2361/// array instance.
Chris Lattner31b132c2009-10-28 00:01:44 +00002362///
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002363void ConstantArray::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattner7a1450d2005-10-04 18:13:04 +00002364 Use *U) {
Owen Andersonc2c79322009-07-28 18:32:17 +00002365 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2366 Constant *ToC = cast<Constant>(To);
2367
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002368 LLVMContextImpl *pImpl = getType()->getContext().pImpl;
Owen Andersonc2c79322009-07-28 18:32:17 +00002369
Dan Gohmane4532f32009-09-15 15:58:07 +00002370 std::pair<LLVMContextImpl::ArrayConstantsTy::MapKey, ConstantArray*> Lookup;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002371 Lookup.first.first = cast<ArrayType>(getType());
Owen Andersonc2c79322009-07-28 18:32:17 +00002372 Lookup.second = this;
2373
2374 std::vector<Constant*> &Values = Lookup.first.second;
2375 Values.reserve(getNumOperands()); // Build replacement array.
2376
2377 // Fill values with the modified operands of the constant array. Also,
2378 // compute whether this turns into an all-zeros array.
Owen Andersonc2c79322009-07-28 18:32:17 +00002379 unsigned NumUpdated = 0;
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002380
2381 // Keep track of whether all the values in the array are "ToC".
2382 bool AllSame = true;
2383 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2384 Constant *Val = cast<Constant>(O->get());
2385 if (Val == From) {
2386 Val = ToC;
2387 ++NumUpdated;
Owen Andersonc2c79322009-07-28 18:32:17 +00002388 }
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002389 Values.push_back(Val);
2390 AllSame = Val == ToC;
Owen Andersonc2c79322009-07-28 18:32:17 +00002391 }
2392
2393 Constant *Replacement = 0;
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002394 if (AllSame && ToC->isNullValue()) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002395 Replacement = ConstantAggregateZero::get(getType());
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002396 } else if (AllSame && isa<UndefValue>(ToC)) {
2397 Replacement = UndefValue::get(getType());
Owen Andersonc2c79322009-07-28 18:32:17 +00002398 } else {
2399 // Check to see if we have this array type already.
Owen Andersonc2c79322009-07-28 18:32:17 +00002400 bool Exists;
2401 LLVMContextImpl::ArrayConstantsTy::MapTy::iterator I =
2402 pImpl->ArrayConstants.InsertOrGetItem(Lookup, Exists);
2403
2404 if (Exists) {
Devang Patelf7188322009-09-03 01:39:20 +00002405 Replacement = I->second;
Owen Andersonc2c79322009-07-28 18:32:17 +00002406 } else {
2407 // Okay, the new shape doesn't exist in the system yet. Instead of
2408 // creating a new constant array, inserting it, replaceallusesof'ing the
2409 // old with the new, then deleting the old... just update the current one
2410 // in place!
2411 pImpl->ArrayConstants.MoveConstantToNewSlot(this, I);
2412
2413 // Update to the new value. Optimize for the case when we have a single
2414 // operand that we're changing, but handle bulk updates efficiently.
2415 if (NumUpdated == 1) {
2416 unsigned OperandToUpdate = U - OperandList;
2417 assert(getOperand(OperandToUpdate) == From &&
2418 "ReplaceAllUsesWith broken!");
2419 setOperand(OperandToUpdate, ToC);
2420 } else {
2421 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
2422 if (getOperand(i) == From)
2423 setOperand(i, ToC);
2424 }
2425 return;
2426 }
2427 }
Chris Lattnerb64419a2005-10-03 22:51:37 +00002428
2429 // Otherwise, I do need to replace this with an existing value.
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002430 assert(Replacement != this && "I didn't contain From!");
2431
Chris Lattner7a1450d2005-10-04 18:13:04 +00002432 // Everyone using this now uses the replacement.
Chris Lattneraf1783f2011-07-15 06:18:52 +00002433 replaceAllUsesWith(Replacement);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002434
2435 // Delete the old constant!
2436 destroyConstant();
2437}
2438
2439void ConstantStruct::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattner7a1450d2005-10-04 18:13:04 +00002440 Use *U) {
Owen Anderson45308b52009-07-27 22:29:26 +00002441 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2442 Constant *ToC = cast<Constant>(To);
2443
2444 unsigned OperandToUpdate = U-OperandList;
2445 assert(getOperand(OperandToUpdate) == From && "ReplaceAllUsesWith broken!");
2446
Dan Gohmane4532f32009-09-15 15:58:07 +00002447 std::pair<LLVMContextImpl::StructConstantsTy::MapKey, ConstantStruct*> Lookup;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002448 Lookup.first.first = cast<StructType>(getType());
Owen Anderson45308b52009-07-27 22:29:26 +00002449 Lookup.second = this;
2450 std::vector<Constant*> &Values = Lookup.first.second;
2451 Values.reserve(getNumOperands()); // Build replacement struct.
2452
2453
2454 // Fill values with the modified operands of the constant struct. Also,
2455 // compute whether this turns into an all-zeros struct.
2456 bool isAllZeros = false;
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002457 bool isAllUndef = false;
2458 if (ToC->isNullValue()) {
Owen Anderson45308b52009-07-27 22:29:26 +00002459 isAllZeros = true;
2460 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2461 Constant *Val = cast<Constant>(O->get());
2462 Values.push_back(Val);
2463 if (isAllZeros) isAllZeros = Val->isNullValue();
2464 }
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002465 } else if (isa<UndefValue>(ToC)) {
2466 isAllUndef = true;
2467 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2468 Constant *Val = cast<Constant>(O->get());
2469 Values.push_back(Val);
2470 if (isAllUndef) isAllUndef = isa<UndefValue>(Val);
2471 }
2472 } else {
2473 for (Use *O = OperandList, *E = OperandList + getNumOperands(); O != E; ++O)
2474 Values.push_back(cast<Constant>(O->get()));
Owen Anderson45308b52009-07-27 22:29:26 +00002475 }
2476 Values[OperandToUpdate] = ToC;
2477
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002478 LLVMContextImpl *pImpl = getContext().pImpl;
Owen Anderson45308b52009-07-27 22:29:26 +00002479
2480 Constant *Replacement = 0;
2481 if (isAllZeros) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002482 Replacement = ConstantAggregateZero::get(getType());
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002483 } else if (isAllUndef) {
2484 Replacement = UndefValue::get(getType());
Owen Anderson45308b52009-07-27 22:29:26 +00002485 } else {
Chris Lattner718da702010-07-17 06:13:52 +00002486 // Check to see if we have this struct type already.
Owen Anderson45308b52009-07-27 22:29:26 +00002487 bool Exists;
2488 LLVMContextImpl::StructConstantsTy::MapTy::iterator I =
2489 pImpl->StructConstants.InsertOrGetItem(Lookup, Exists);
2490
2491 if (Exists) {
Devang Patelf7188322009-09-03 01:39:20 +00002492 Replacement = I->second;
Owen Anderson45308b52009-07-27 22:29:26 +00002493 } else {
2494 // Okay, the new shape doesn't exist in the system yet. Instead of
2495 // creating a new constant struct, inserting it, replaceallusesof'ing the
2496 // old with the new, then deleting the old... just update the current one
2497 // in place!
2498 pImpl->StructConstants.MoveConstantToNewSlot(this, I);
2499
2500 // Update to the new value.
2501 setOperand(OperandToUpdate, ToC);
2502 return;
2503 }
2504 }
2505
2506 assert(Replacement != this && "I didn't contain From!");
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002507
Chris Lattner7a1450d2005-10-04 18:13:04 +00002508 // Everyone using this now uses the replacement.
Chris Lattneraf1783f2011-07-15 06:18:52 +00002509 replaceAllUsesWith(Replacement);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002510
2511 // Delete the old constant!
2512 destroyConstant();
2513}
2514
Reid Spencerd84d35b2007-02-15 02:26:10 +00002515void ConstantVector::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattner7a1450d2005-10-04 18:13:04 +00002516 Use *U) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002517 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2518
2519 std::vector<Constant*> Values;
2520 Values.reserve(getNumOperands()); // Build replacement array...
2521 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
2522 Constant *Val = getOperand(i);
2523 if (Val == From) Val = cast<Constant>(To);
2524 Values.push_back(Val);
2525 }
2526
Jay Foadb8a8bed32011-06-22 09:10:19 +00002527 Constant *Replacement = get(Values);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002528 assert(Replacement != this && "I didn't contain From!");
2529
Chris Lattner7a1450d2005-10-04 18:13:04 +00002530 // Everyone using this now uses the replacement.
Chris Lattneraf1783f2011-07-15 06:18:52 +00002531 replaceAllUsesWith(Replacement);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002532
2533 // Delete the old constant!
2534 destroyConstant();
2535}
2536
2537void ConstantExpr::replaceUsesOfWithOnConstant(Value *From, Value *ToV,
Chris Lattner7a1450d2005-10-04 18:13:04 +00002538 Use *U) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002539 assert(isa<Constant>(ToV) && "Cannot make Constant refer to non-constant!");
2540 Constant *To = cast<Constant>(ToV);
2541
2542 Constant *Replacement = 0;
2543 if (getOpcode() == Instruction::GetElementPtr) {
Chris Lattnerb5d70302007-02-19 20:01:23 +00002544 SmallVector<Constant*, 8> Indices;
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002545 Constant *Pointer = getOperand(0);
2546 Indices.reserve(getNumOperands()-1);
2547 if (Pointer == From) Pointer = To;
2548
2549 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
2550 Constant *Val = getOperand(i);
2551 if (Val == From) Val = To;
2552 Indices.push_back(Val);
2553 }
Jay Foaded8db7d2011-07-21 14:31:17 +00002554 Replacement = ConstantExpr::getGetElementPtr(Pointer, Indices,
Chris Lattner603af182011-02-11 05:37:21 +00002555 cast<GEPOperator>(this)->isInBounds());
Dan Gohman12fce772008-05-15 19:50:34 +00002556 } else if (getOpcode() == Instruction::ExtractValue) {
Dan Gohman12fce772008-05-15 19:50:34 +00002557 Constant *Agg = getOperand(0);
Dan Gohman12fce772008-05-15 19:50:34 +00002558 if (Agg == From) Agg = To;
2559
Jay Foad0091fe82011-04-13 15:22:40 +00002560 ArrayRef<unsigned> Indices = getIndices();
Jay Foad57aa6362011-07-13 10:26:04 +00002561 Replacement = ConstantExpr::getExtractValue(Agg, Indices);
Dan Gohman12fce772008-05-15 19:50:34 +00002562 } else if (getOpcode() == Instruction::InsertValue) {
Dan Gohman12fce772008-05-15 19:50:34 +00002563 Constant *Agg = getOperand(0);
2564 Constant *Val = getOperand(1);
Dan Gohman12fce772008-05-15 19:50:34 +00002565 if (Agg == From) Agg = To;
2566 if (Val == From) Val = To;
2567
Jay Foad0091fe82011-04-13 15:22:40 +00002568 ArrayRef<unsigned> Indices = getIndices();
Jay Foad57aa6362011-07-13 10:26:04 +00002569 Replacement = ConstantExpr::getInsertValue(Agg, Val, Indices);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002570 } else if (isCast()) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002571 assert(getOperand(0) == From && "Cast only has one use!");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002572 Replacement = ConstantExpr::getCast(getOpcode(), To, getType());
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002573 } else if (getOpcode() == Instruction::Select) {
2574 Constant *C1 = getOperand(0);
2575 Constant *C2 = getOperand(1);
2576 Constant *C3 = getOperand(2);
2577 if (C1 == From) C1 = To;
2578 if (C2 == From) C2 = To;
2579 if (C3 == From) C3 = To;
2580 Replacement = ConstantExpr::getSelect(C1, C2, C3);
Robert Bocchino23004482006-01-10 19:05:34 +00002581 } else if (getOpcode() == Instruction::ExtractElement) {
2582 Constant *C1 = getOperand(0);
2583 Constant *C2 = getOperand(1);
2584 if (C1 == From) C1 = To;
2585 if (C2 == From) C2 = To;
2586 Replacement = ConstantExpr::getExtractElement(C1, C2);
Chris Lattnera93b4b52006-04-08 05:09:48 +00002587 } else if (getOpcode() == Instruction::InsertElement) {
2588 Constant *C1 = getOperand(0);
2589 Constant *C2 = getOperand(1);
2590 Constant *C3 = getOperand(1);
2591 if (C1 == From) C1 = To;
2592 if (C2 == From) C2 = To;
2593 if (C3 == From) C3 = To;
2594 Replacement = ConstantExpr::getInsertElement(C1, C2, C3);
2595 } else if (getOpcode() == Instruction::ShuffleVector) {
2596 Constant *C1 = getOperand(0);
2597 Constant *C2 = getOperand(1);
2598 Constant *C3 = getOperand(2);
2599 if (C1 == From) C1 = To;
2600 if (C2 == From) C2 = To;
2601 if (C3 == From) C3 = To;
2602 Replacement = ConstantExpr::getShuffleVector(C1, C2, C3);
Reid Spenceree3c9912006-12-04 05:19:50 +00002603 } else if (isCompare()) {
2604 Constant *C1 = getOperand(0);
2605 Constant *C2 = getOperand(1);
2606 if (C1 == From) C1 = To;
2607 if (C2 == From) C2 = To;
2608 if (getOpcode() == Instruction::ICmp)
2609 Replacement = ConstantExpr::getICmp(getPredicate(), C1, C2);
Chris Lattnereab49262008-07-14 05:17:31 +00002610 else {
Nick Lewyckya21d3da2009-07-08 03:04:38 +00002611 assert(getOpcode() == Instruction::FCmp);
2612 Replacement = ConstantExpr::getFCmp(getPredicate(), C1, C2);
Chris Lattnereab49262008-07-14 05:17:31 +00002613 }
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002614 } else if (getNumOperands() == 2) {
2615 Constant *C1 = getOperand(0);
2616 Constant *C2 = getOperand(1);
2617 if (C1 == From) C1 = To;
2618 if (C2 == From) C2 = To;
Chris Lattnerb9c86512009-12-29 02:14:09 +00002619 Replacement = ConstantExpr::get(getOpcode(), C1, C2, SubclassOptionalData);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002620 } else {
Torok Edwinfbcc6632009-07-14 16:55:14 +00002621 llvm_unreachable("Unknown ConstantExpr type!");
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002622 }
2623
2624 assert(Replacement != this && "I didn't contain From!");
2625
Chris Lattner7a1450d2005-10-04 18:13:04 +00002626 // Everyone using this now uses the replacement.
Chris Lattneraf1783f2011-07-15 06:18:52 +00002627 replaceAllUsesWith(Replacement);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002628
2629 // Delete the old constant!
2630 destroyConstant();
Matthijs Kooijmanba5d7ef2008-07-03 07:46:41 +00002631}