blob: 9ffa5aa93e2f60ca7ac97651107fee768278cfcd [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 Lattner3462ae32001-12-03 22:26:30 +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 Lattner33e93b82007-02-27 03:05:06 +000015#include "ConstantFold.h"
Chris Lattner2f7c9632001-06-06 20:29:01 +000016#include "llvm/DerivedTypes.h"
Reid Spencer1ebe1ab2004-07-17 23:48:33 +000017#include "llvm/GlobalValue.h"
Misha Brukman63b38bd2004-07-29 17:30:56 +000018#include "llvm/Instructions.h"
Nick Lewyckyb8f9b7a2009-05-10 20:57:05 +000019#include "llvm/MDNode.h"
Chris Lattnerd7a73302001-10-13 06:57:33 +000020#include "llvm/Module.h"
Nick Lewycky49f89192009-04-04 07:22:01 +000021#include "llvm/ADT/FoldingSet.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000022#include "llvm/ADT/StringExtras.h"
Nick Lewycky49f89192009-04-04 07:22:01 +000023#include "llvm/ADT/StringMap.h"
Chris Lattner3d27be12006-08-27 12:54:02 +000024#include "llvm/Support/Compiler.h"
Bill Wendling6a462f12006-11-17 08:03:48 +000025#include "llvm/Support/Debug.h"
Chris Lattner69edc982006-09-28 00:35:06 +000026#include "llvm/Support/ManagedStatic.h"
Bill Wendling6a462f12006-11-17 08:03:48 +000027#include "llvm/Support/MathExtras.h"
Owen Anderson2d7231d2009-06-17 18:40:29 +000028#include "llvm/Support/Threading.h"
29#include "llvm/System/RWMutex.h"
Chris Lattnera80bf0b2007-02-20 06:39:57 +000030#include "llvm/ADT/DenseMap.h"
Chris Lattnerb5d70302007-02-19 20:01:23 +000031#include "llvm/ADT/SmallVector.h"
Chris Lattner2f7c9632001-06-06 20:29:01 +000032#include <algorithm>
Reid Spencer3aaaa0b2007-02-05 20:47:22 +000033#include <map>
Chris Lattner189d19f2003-11-21 20:23:48 +000034using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000035
Chris Lattner2f7c9632001-06-06 20:29:01 +000036//===----------------------------------------------------------------------===//
Chris Lattner3462ae32001-12-03 22:26:30 +000037// Constant Class
Chris Lattner2f7c9632001-06-06 20:29:01 +000038//===----------------------------------------------------------------------===//
39
Owen Anderson2d7231d2009-06-17 18:40:29 +000040ManagedStatic<sys::RWMutex> ConstantsLock;
41
Chris Lattner3462ae32001-12-03 22:26:30 +000042void Constant::destroyConstantImpl() {
43 // When a Constant is destroyed, there may be lingering
Chris Lattnerd7a73302001-10-13 06:57:33 +000044 // references to the constant by other constants in the constant pool. These
Misha Brukmanbe372b92003-08-21 22:14:26 +000045 // constants are implicitly dependent on the module that is being deleted,
Chris Lattnerd7a73302001-10-13 06:57:33 +000046 // but they don't know that. Because we only find out when the CPV is
47 // deleted, we must now notify all of our users (that should only be
Chris Lattner3462ae32001-12-03 22:26:30 +000048 // Constants) that they are, in fact, invalid now and should be deleted.
Chris Lattnerd7a73302001-10-13 06:57:33 +000049 //
50 while (!use_empty()) {
51 Value *V = use_back();
52#ifndef NDEBUG // Only in -g mode...
Chris Lattnerd9f4ac662002-07-18 00:14:50 +000053 if (!isa<Constant>(V))
Bill Wendling6a462f12006-11-17 08:03:48 +000054 DOUT << "While deleting: " << *this
55 << "\n\nUse still stuck around after Def is destroyed: "
56 << *V << "\n\n";
Chris Lattnerd7a73302001-10-13 06:57:33 +000057#endif
Vikram S. Adve4e537b22002-07-14 23:13:17 +000058 assert(isa<Constant>(V) && "References remain to Constant being destroyed");
Reid Spencer1ebe1ab2004-07-17 23:48:33 +000059 Constant *CV = cast<Constant>(V);
60 CV->destroyConstant();
Chris Lattnerd7a73302001-10-13 06:57:33 +000061
62 // The constant should remove itself from our use list...
Vikram S. Adve4e537b22002-07-14 23:13:17 +000063 assert((use_empty() || use_back() != V) && "Constant not removed!");
Chris Lattnerd7a73302001-10-13 06:57:33 +000064 }
65
66 // Value has no outstanding references it is safe to delete it now...
67 delete this;
Chris Lattner38569342001-10-01 20:11:19 +000068}
Chris Lattner2f7c9632001-06-06 20:29:01 +000069
Chris Lattner23dd1f62006-10-20 00:27:06 +000070/// canTrap - Return true if evaluation of this constant could trap. This is
71/// true for things like constant expressions that could divide by zero.
72bool Constant::canTrap() const {
73 assert(getType()->isFirstClassType() && "Cannot evaluate aggregate vals!");
74 // The only thing that could possibly trap are constant exprs.
75 const ConstantExpr *CE = dyn_cast<ConstantExpr>(this);
76 if (!CE) return false;
77
78 // ConstantExpr traps if any operands can trap.
79 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
80 if (getOperand(i)->canTrap())
81 return true;
82
83 // Otherwise, only specific operations can trap.
84 switch (CE->getOpcode()) {
85 default:
86 return false;
Reid Spencer7e80b0b2006-10-26 06:15:43 +000087 case Instruction::UDiv:
88 case Instruction::SDiv:
89 case Instruction::FDiv:
Reid Spencer7eb55b32006-11-02 01:53:59 +000090 case Instruction::URem:
91 case Instruction::SRem:
92 case Instruction::FRem:
Chris Lattner23dd1f62006-10-20 00:27:06 +000093 // Div and rem can trap if the RHS is not known to be non-zero.
94 if (!isa<ConstantInt>(getOperand(1)) || getOperand(1)->isNullValue())
95 return true;
96 return false;
97 }
98}
99
Anton Korobeynikov7437b592009-03-29 17:13:18 +0000100/// ContainsRelocations - Return true if the constant value contains relocations
101/// which cannot be resolved at compile time. Kind argument is used to filter
102/// only 'interesting' sorts of relocations.
103bool Constant::ContainsRelocations(unsigned Kind) const {
104 if (const GlobalValue* GV = dyn_cast<GlobalValue>(this)) {
105 bool isLocal = GV->hasLocalLinkage();
106 if ((Kind & Reloc::Local) && isLocal) {
107 // Global has local linkage and 'local' kind of relocations are
108 // requested
109 return true;
110 }
111
112 if ((Kind & Reloc::Global) && !isLocal) {
113 // Global has non-local linkage and 'global' kind of relocations are
114 // requested
115 return true;
116 }
Anton Korobeynikov255a3cb2009-03-30 15:28:21 +0000117
118 return false;
Anton Korobeynikov7437b592009-03-29 17:13:18 +0000119 }
120
Evan Chengf9e003b2007-03-08 00:59:12 +0000121 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Anton Korobeynikovd5e8e932009-03-30 15:28:00 +0000122 if (getOperand(i)->ContainsRelocations(Kind))
Evan Chengf9e003b2007-03-08 00:59:12 +0000123 return true;
Anton Korobeynikov7437b592009-03-29 17:13:18 +0000124
Evan Chengf9e003b2007-03-08 00:59:12 +0000125 return false;
126}
127
Chris Lattnerb1585a92002-08-13 17:50:20 +0000128// Static constructor to create a '0' constant of arbitrary type...
129Constant *Constant::getNullValue(const Type *Ty) {
Dale Johannesen98d3a082007-09-14 22:26:36 +0000130 static uint64_t zero[2] = {0, 0};
Chris Lattner6b727592004-06-17 18:19:28 +0000131 switch (Ty->getTypeID()) {
Chris Lattnerdbcb0d32007-02-20 05:46:39 +0000132 case Type::IntegerTyID:
133 return ConstantInt::get(Ty, 0);
134 case Type::FloatTyID:
Chris Lattnerb5b3e312008-04-09 00:45:01 +0000135 return ConstantFP::get(APFloat(APInt(32, 0)));
Chris Lattnerdbcb0d32007-02-20 05:46:39 +0000136 case Type::DoubleTyID:
Chris Lattnerb5b3e312008-04-09 00:45:01 +0000137 return ConstantFP::get(APFloat(APInt(64, 0)));
Dale Johannesenbdad8092007-08-09 22:51:36 +0000138 case Type::X86_FP80TyID:
Chris Lattnerb5b3e312008-04-09 00:45:01 +0000139 return ConstantFP::get(APFloat(APInt(80, 2, zero)));
Dale Johannesenbdad8092007-08-09 22:51:36 +0000140 case Type::FP128TyID:
Chris Lattnerb5b3e312008-04-09 00:45:01 +0000141 return ConstantFP::get(APFloat(APInt(128, 2, zero), true));
Dale Johannesen98d3a082007-09-14 22:26:36 +0000142 case Type::PPC_FP128TyID:
Chris Lattnerb5b3e312008-04-09 00:45:01 +0000143 return ConstantFP::get(APFloat(APInt(128, 2, zero)));
Misha Brukmanb1c93172005-04-21 23:48:37 +0000144 case Type::PointerTyID:
Chris Lattnerb1585a92002-08-13 17:50:20 +0000145 return ConstantPointerNull::get(cast<PointerType>(Ty));
Chris Lattner9fba3da2004-02-15 05:53:04 +0000146 case Type::StructTyID:
147 case Type::ArrayTyID:
Reid Spencerd84d35b2007-02-15 02:26:10 +0000148 case Type::VectorTyID:
Chris Lattner9fba3da2004-02-15 05:53:04 +0000149 return ConstantAggregateZero::get(Ty);
Chris Lattnerb1585a92002-08-13 17:50:20 +0000150 default:
Reid Spencercf394bf2004-07-04 11:51:24 +0000151 // Function, Label, or Opaque type?
152 assert(!"Cannot create a null constant of that type!");
Chris Lattnerb1585a92002-08-13 17:50:20 +0000153 return 0;
154 }
155}
156
Chris Lattner72e39582007-06-15 06:10:53 +0000157Constant *Constant::getAllOnesValue(const Type *Ty) {
158 if (const IntegerType* ITy = dyn_cast<IntegerType>(Ty))
159 return ConstantInt::get(APInt::getAllOnesValue(ITy->getBitWidth()));
160 return ConstantVector::getAllOnesValue(cast<VectorType>(Ty));
161}
Chris Lattnerb1585a92002-08-13 17:50:20 +0000162
163// Static constructor to create an integral constant with all bits set
Zhou Sheng75b871f2007-01-11 12:24:14 +0000164ConstantInt *ConstantInt::getAllOnesValue(const Type *Ty) {
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000165 if (const IntegerType* ITy = dyn_cast<IntegerType>(Ty))
Reid Spencerd1bbfa52007-03-01 19:30:34 +0000166 return ConstantInt::get(APInt::getAllOnesValue(ITy->getBitWidth()));
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000167 return 0;
Chris Lattnerb1585a92002-08-13 17:50:20 +0000168}
169
Dan Gohman30978072007-05-24 14:36:04 +0000170/// @returns the value for a vector integer constant of the given type that
Chris Lattnerecab54c2007-01-04 01:49:26 +0000171/// has all its bits set to true.
172/// @brief Get the all ones value
Reid Spencerd84d35b2007-02-15 02:26:10 +0000173ConstantVector *ConstantVector::getAllOnesValue(const VectorType *Ty) {
Chris Lattnerecab54c2007-01-04 01:49:26 +0000174 std::vector<Constant*> Elts;
175 Elts.resize(Ty->getNumElements(),
Zhou Sheng75b871f2007-01-11 12:24:14 +0000176 ConstantInt::getAllOnesValue(Ty->getElementType()));
Dan Gohman30978072007-05-24 14:36:04 +0000177 assert(Elts[0] && "Not a vector integer type!");
Reid Spencerd84d35b2007-02-15 02:26:10 +0000178 return cast<ConstantVector>(ConstantVector::get(Elts));
Chris Lattnerecab54c2007-01-04 01:49:26 +0000179}
180
181
Chris Lattner2105d662008-07-10 00:28:11 +0000182/// getVectorElements - This method, which is only valid on constant of vector
183/// type, returns the elements of the vector in the specified smallvector.
Chris Lattnerc5098a22008-07-14 05:10:41 +0000184/// This handles breaking down a vector undef into undef elements, etc. For
185/// constant exprs and other cases we can't handle, we return an empty vector.
Chris Lattner2105d662008-07-10 00:28:11 +0000186void Constant::getVectorElements(SmallVectorImpl<Constant*> &Elts) const {
187 assert(isa<VectorType>(getType()) && "Not a vector constant!");
188
189 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this)) {
190 for (unsigned i = 0, e = CV->getNumOperands(); i != e; ++i)
191 Elts.push_back(CV->getOperand(i));
192 return;
193 }
194
195 const VectorType *VT = cast<VectorType>(getType());
196 if (isa<ConstantAggregateZero>(this)) {
197 Elts.assign(VT->getNumElements(),
198 Constant::getNullValue(VT->getElementType()));
199 return;
200 }
201
Chris Lattnerc5098a22008-07-14 05:10:41 +0000202 if (isa<UndefValue>(this)) {
203 Elts.assign(VT->getNumElements(), UndefValue::get(VT->getElementType()));
204 return;
205 }
206
207 // Unknown type, must be constant expr etc.
Chris Lattner2105d662008-07-10 00:28:11 +0000208}
209
210
211
Chris Lattner2f7c9632001-06-06 20:29:01 +0000212//===----------------------------------------------------------------------===//
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000213// ConstantInt
Chris Lattner2f7c9632001-06-06 20:29:01 +0000214//===----------------------------------------------------------------------===//
215
Reid Spencerb31bffe2007-02-26 23:54:03 +0000216ConstantInt::ConstantInt(const IntegerType *Ty, const APInt& V)
Chris Lattner5db2f472007-02-20 05:55:46 +0000217 : Constant(Ty, ConstantIntVal, 0, 0), Val(V) {
Reid Spencerb31bffe2007-02-26 23:54:03 +0000218 assert(V.getBitWidth() == Ty->getBitWidth() && "Invalid constant for type");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000219}
220
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000221ConstantInt *ConstantInt::TheTrueVal = 0;
222ConstantInt *ConstantInt::TheFalseVal = 0;
223
224namespace llvm {
225 void CleanupTrueFalse(void *) {
226 ConstantInt::ResetTrueFalse();
227 }
228}
229
230static ManagedCleanup<llvm::CleanupTrueFalse> TrueFalseCleanup;
231
232ConstantInt *ConstantInt::CreateTrueFalseVals(bool WhichOne) {
233 assert(TheTrueVal == 0 && TheFalseVal == 0);
234 TheTrueVal = get(Type::Int1Ty, 1);
235 TheFalseVal = get(Type::Int1Ty, 0);
236
237 // Ensure that llvm_shutdown nulls out TheTrueVal/TheFalseVal.
238 TrueFalseCleanup.Register();
239
240 return WhichOne ? TheTrueVal : TheFalseVal;
241}
242
243
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000244namespace {
Reid Spencerb31bffe2007-02-26 23:54:03 +0000245 struct DenseMapAPIntKeyInfo {
246 struct KeyTy {
247 APInt val;
248 const Type* type;
249 KeyTy(const APInt& V, const Type* Ty) : val(V), type(Ty) {}
250 KeyTy(const KeyTy& that) : val(that.val), type(that.type) {}
251 bool operator==(const KeyTy& that) const {
252 return type == that.type && this->val == that.val;
253 }
254 bool operator!=(const KeyTy& that) const {
255 return !this->operator==(that);
256 }
257 };
258 static inline KeyTy getEmptyKey() { return KeyTy(APInt(1,0), 0); }
259 static inline KeyTy getTombstoneKey() { return KeyTy(APInt(1,1), 0); }
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000260 static unsigned getHashValue(const KeyTy &Key) {
Chris Lattner0625bd62007-09-17 18:34:04 +0000261 return DenseMapInfo<void*>::getHashValue(Key.type) ^
Reid Spencerb31bffe2007-02-26 23:54:03 +0000262 Key.val.getHashValue();
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000263 }
Chris Lattner0625bd62007-09-17 18:34:04 +0000264 static bool isEqual(const KeyTy &LHS, const KeyTy &RHS) {
265 return LHS == RHS;
266 }
Dale Johannesena719a602007-08-24 00:56:33 +0000267 static bool isPod() { return false; }
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000268 };
269}
270
271
Reid Spencerb31bffe2007-02-26 23:54:03 +0000272typedef DenseMap<DenseMapAPIntKeyInfo::KeyTy, ConstantInt*,
273 DenseMapAPIntKeyInfo> IntMapTy;
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000274static ManagedStatic<IntMapTy> IntConstants;
275
Dan Gohman7ccc52f2009-06-15 22:12:54 +0000276ConstantInt *ConstantInt::get(const IntegerType *Ty,
277 uint64_t V, bool isSigned) {
278 return get(APInt(Ty->getBitWidth(), V, isSigned));
279}
280
281Constant *ConstantInt::get(const Type *Ty, uint64_t V, bool isSigned) {
282 Constant *C = get(cast<IntegerType>(Ty->getScalarType()), V, isSigned);
283
284 // For vectors, broadcast the value.
285 if (const VectorType *VTy = dyn_cast<VectorType>(Ty))
286 return
287 ConstantVector::get(std::vector<Constant *>(VTy->getNumElements(), C));
288
289 return C;
Reid Spencerb31bffe2007-02-26 23:54:03 +0000290}
291
Reid Spencerd1bbfa52007-03-01 19:30:34 +0000292// Get a ConstantInt from an APInt. Note that the value stored in the DenseMap
Dan Gohmanb3efe032008-02-07 02:30:40 +0000293// as the key, is a DenseMapAPIntKeyInfo::KeyTy which has provided the
Reid Spencerb31bffe2007-02-26 23:54:03 +0000294// operator== and operator!= to ensure that the DenseMap doesn't attempt to
295// compare APInt's of different widths, which would violate an APInt class
296// invariant which generates an assertion.
Reid Spencerd1bbfa52007-03-01 19:30:34 +0000297ConstantInt *ConstantInt::get(const APInt& V) {
298 // Get the corresponding integer type for the bit width of the value.
299 const IntegerType *ITy = IntegerType::get(V.getBitWidth());
Reid Spencerb31bffe2007-02-26 23:54:03 +0000300 // get an existing value or the insertion position
Reid Spencerd1bbfa52007-03-01 19:30:34 +0000301 DenseMapAPIntKeyInfo::KeyTy Key(V, ITy);
Owen Anderson2d7231d2009-06-17 18:40:29 +0000302
303 if (llvm_is_multithreaded()) {
304 ConstantsLock->reader_acquire();
305 ConstantInt *&Slot = (*IntConstants)[Key];
306 ConstantsLock->reader_release();
307
308 if (!Slot) {
Owen Anderson65c5cd72009-06-17 20:34:43 +0000309 sys::ScopedWriter Writer(&*ConstantsLock);
Owen Anderson2d7231d2009-06-17 18:40:29 +0000310 ConstantInt *&Slot = (*IntConstants)[Key];
311 if (!Slot) {
312 Slot = new ConstantInt(ITy, V);
313 }
Owen Anderson2d7231d2009-06-17 18:40:29 +0000314 }
315
Reid Spencerb31bffe2007-02-26 23:54:03 +0000316 return Slot;
Owen Anderson2d7231d2009-06-17 18:40:29 +0000317 } else {
318 ConstantInt *&Slot = (*IntConstants)[Key];
319 // if it exists, return it.
320 if (Slot)
321 return Slot;
322 // otherwise create a new one, insert it, and return it.
323 return Slot = new ConstantInt(ITy, V);
324 }
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000325}
326
Dan Gohman7ccc52f2009-06-15 22:12:54 +0000327Constant *ConstantInt::get(const Type *Ty, const APInt &V) {
328 ConstantInt *C = ConstantInt::get(V);
329 assert(C->getType() == Ty->getScalarType() &&
330 "ConstantInt type doesn't match the type implied by its value!");
331
332 // For vectors, broadcast the value.
333 if (const VectorType *VTy = dyn_cast<VectorType>(Ty))
334 return
335 ConstantVector::get(std::vector<Constant *>(VTy->getNumElements(), C));
336
337 return C;
338}
339
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000340//===----------------------------------------------------------------------===//
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000341// ConstantFP
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000342//===----------------------------------------------------------------------===//
343
Chris Lattner98bd9392008-04-09 06:38:30 +0000344static const fltSemantics *TypeToFloatSemantics(const Type *Ty) {
345 if (Ty == Type::FloatTy)
346 return &APFloat::IEEEsingle;
347 if (Ty == Type::DoubleTy)
348 return &APFloat::IEEEdouble;
349 if (Ty == Type::X86_FP80Ty)
350 return &APFloat::x87DoubleExtended;
351 else if (Ty == Type::FP128Ty)
352 return &APFloat::IEEEquad;
353
354 assert(Ty == Type::PPC_FP128Ty && "Unknown FP format");
355 return &APFloat::PPCDoubleDouble;
356}
357
Dale Johannesend246b2c2007-08-30 00:23:21 +0000358ConstantFP::ConstantFP(const Type *Ty, const APFloat& V)
359 : Constant(Ty, ConstantFPVal, 0, 0), Val(V) {
Chris Lattner98bd9392008-04-09 06:38:30 +0000360 assert(&V.getSemantics() == TypeToFloatSemantics(Ty) &&
361 "FP type Mismatch");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000362}
363
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000364bool ConstantFP::isNullValue() const {
Dale Johannesena719a602007-08-24 00:56:33 +0000365 return Val.isZero() && !Val.isNegative();
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000366}
367
Dale Johannesen98d3a082007-09-14 22:26:36 +0000368ConstantFP *ConstantFP::getNegativeZero(const Type *Ty) {
369 APFloat apf = cast <ConstantFP>(Constant::getNullValue(Ty))->getValueAPF();
370 apf.changeSign();
Chris Lattnerb5b3e312008-04-09 00:45:01 +0000371 return ConstantFP::get(apf);
Dale Johannesen98d3a082007-09-14 22:26:36 +0000372}
373
Dale Johannesend246b2c2007-08-30 00:23:21 +0000374bool ConstantFP::isExactlyValue(const APFloat& V) const {
375 return Val.bitwiseIsEqual(V);
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000376}
377
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000378namespace {
Dale Johannesena719a602007-08-24 00:56:33 +0000379 struct DenseMapAPFloatKeyInfo {
Dale Johannesenbdea32d2007-08-24 22:09:56 +0000380 struct KeyTy {
381 APFloat val;
382 KeyTy(const APFloat& V) : val(V){}
383 KeyTy(const KeyTy& that) : val(that.val) {}
384 bool operator==(const KeyTy& that) const {
385 return this->val.bitwiseIsEqual(that.val);
386 }
387 bool operator!=(const KeyTy& that) const {
388 return !this->operator==(that);
389 }
390 };
391 static inline KeyTy getEmptyKey() {
392 return KeyTy(APFloat(APFloat::Bogus,1));
Reid Spencerb31bffe2007-02-26 23:54:03 +0000393 }
Dale Johannesenbdea32d2007-08-24 22:09:56 +0000394 static inline KeyTy getTombstoneKey() {
395 return KeyTy(APFloat(APFloat::Bogus,2));
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000396 }
Dale Johannesenbdea32d2007-08-24 22:09:56 +0000397 static unsigned getHashValue(const KeyTy &Key) {
398 return Key.val.getHashValue();
Dale Johannesena719a602007-08-24 00:56:33 +0000399 }
Chris Lattner0625bd62007-09-17 18:34:04 +0000400 static bool isEqual(const KeyTy &LHS, const KeyTy &RHS) {
401 return LHS == RHS;
402 }
Dale Johannesena719a602007-08-24 00:56:33 +0000403 static bool isPod() { return false; }
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000404 };
405}
406
407//---- ConstantFP::get() implementation...
408//
Dale Johannesenbdea32d2007-08-24 22:09:56 +0000409typedef DenseMap<DenseMapAPFloatKeyInfo::KeyTy, ConstantFP*,
Dale Johannesena719a602007-08-24 00:56:33 +0000410 DenseMapAPFloatKeyInfo> FPMapTy;
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000411
Dale Johannesena719a602007-08-24 00:56:33 +0000412static ManagedStatic<FPMapTy> FPConstants;
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000413
Chris Lattnerb5b3e312008-04-09 00:45:01 +0000414ConstantFP *ConstantFP::get(const APFloat &V) {
Dale Johannesend246b2c2007-08-30 00:23:21 +0000415 DenseMapAPFloatKeyInfo::KeyTy Key(V);
Chris Lattnerb5b3e312008-04-09 00:45:01 +0000416
Owen Anderson2d7231d2009-06-17 18:40:29 +0000417 if (llvm_is_multithreaded()) {
418 ConstantsLock->reader_acquire();
419 ConstantFP *&Slot = (*FPConstants)[Key];
420 ConstantsLock->reader_release();
421
422 if (!Slot) {
Owen Anderson65c5cd72009-06-17 20:34:43 +0000423 sys::ScopedWriter Writer(&*ConstantsLock);
Owen Anderson2d7231d2009-06-17 18:40:29 +0000424 Slot = (*FPConstants)[Key];
425 if (!Slot) {
426 const Type *Ty;
427 if (&V.getSemantics() == &APFloat::IEEEsingle)
428 Ty = Type::FloatTy;
429 else if (&V.getSemantics() == &APFloat::IEEEdouble)
430 Ty = Type::DoubleTy;
431 else if (&V.getSemantics() == &APFloat::x87DoubleExtended)
432 Ty = Type::X86_FP80Ty;
433 else if (&V.getSemantics() == &APFloat::IEEEquad)
434 Ty = Type::FP128Ty;
435 else {
436 assert(&V.getSemantics() == &APFloat::PPCDoubleDouble &&
437 "Unknown FP format");
438 Ty = Type::PPC_FP128Ty;
439 }
440
441 Slot = new ConstantFP(Ty, V);
442 }
Owen Anderson2d7231d2009-06-17 18:40:29 +0000443 }
444
445 return Slot;
446 } else {
447 ConstantFP *&Slot = (*FPConstants)[Key];
448 if (Slot) return Slot;
449
450 const Type *Ty;
451 if (&V.getSemantics() == &APFloat::IEEEsingle)
452 Ty = Type::FloatTy;
453 else if (&V.getSemantics() == &APFloat::IEEEdouble)
454 Ty = Type::DoubleTy;
455 else if (&V.getSemantics() == &APFloat::x87DoubleExtended)
456 Ty = Type::X86_FP80Ty;
457 else if (&V.getSemantics() == &APFloat::IEEEquad)
458 Ty = Type::FP128Ty;
459 else {
460 assert(&V.getSemantics() == &APFloat::PPCDoubleDouble &&
461 "Unknown FP format");
462 Ty = Type::PPC_FP128Ty;
463 }
464
465 return Slot = new ConstantFP(Ty, V);
Chris Lattnerb5b3e312008-04-09 00:45:01 +0000466 }
Dale Johannesend246b2c2007-08-30 00:23:21 +0000467}
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000468
Chris Lattner98bd9392008-04-09 06:38:30 +0000469/// get() - This returns a constant fp for the specified value in the
470/// specified type. This should only be used for simple constant values like
471/// 2.0/1.0 etc, that are known-valid both as double and as the target format.
Dan Gohman7ccc52f2009-06-15 22:12:54 +0000472Constant *ConstantFP::get(const Type *Ty, double V) {
Chris Lattner98bd9392008-04-09 06:38:30 +0000473 APFloat FV(V);
Dale Johannesen4f0bd682008-10-09 23:00:39 +0000474 bool ignored;
Dan Gohman7ccc52f2009-06-15 22:12:54 +0000475 FV.convert(*TypeToFloatSemantics(Ty->getScalarType()),
476 APFloat::rmNearestTiesToEven, &ignored);
477 Constant *C = get(FV);
478
479 // For vectors, broadcast the value.
480 if (const VectorType *VTy = dyn_cast<VectorType>(Ty))
481 return
482 ConstantVector::get(std::vector<Constant *>(VTy->getNumElements(), C));
483
484 return C;
Chris Lattner98bd9392008-04-09 06:38:30 +0000485}
486
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000487//===----------------------------------------------------------------------===//
488// ConstantXXX Classes
489//===----------------------------------------------------------------------===//
490
491
Chris Lattner3462ae32001-12-03 22:26:30 +0000492ConstantArray::ConstantArray(const ArrayType *T,
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000493 const std::vector<Constant*> &V)
Gabor Greiff6caff662008-05-10 08:32:32 +0000494 : Constant(T, ConstantArrayVal,
495 OperandTraits<ConstantArray>::op_end(this) - V.size(),
496 V.size()) {
Alkis Evlogimenos0507ffe2004-09-15 02:32:15 +0000497 assert(V.size() == T->getNumElements() &&
498 "Invalid initializer vector for constant array");
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000499 Use *OL = OperandList;
Chris Lattner0144fad2005-10-03 21:56:24 +0000500 for (std::vector<Constant*>::const_iterator I = V.begin(), E = V.end();
501 I != E; ++I, ++OL) {
Chris Lattner20a24452005-10-07 05:23:36 +0000502 Constant *C = *I;
503 assert((C->getType() == T->getElementType() ||
Alkis Evlogimenoscb031d92004-09-10 04:16:59 +0000504 (T->isAbstract() &&
Chris Lattner20a24452005-10-07 05:23:36 +0000505 C->getType()->getTypeID() == T->getElementType()->getTypeID())) &&
Alkis Evlogimenoscb031d92004-09-10 04:16:59 +0000506 "Initializer for array element doesn't match array element type!");
Gabor Greif2d3024d2008-05-26 21:33:52 +0000507 *OL = C;
Chris Lattner2f7c9632001-06-06 20:29:01 +0000508 }
509}
510
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000511
Chris Lattner3462ae32001-12-03 22:26:30 +0000512ConstantStruct::ConstantStruct(const StructType *T,
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000513 const std::vector<Constant*> &V)
Gabor Greiff6caff662008-05-10 08:32:32 +0000514 : Constant(T, ConstantStructVal,
515 OperandTraits<ConstantStruct>::op_end(this) - V.size(),
516 V.size()) {
Chris Lattnerac6db752004-02-09 04:37:31 +0000517 assert(V.size() == T->getNumElements() &&
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000518 "Invalid initializer vector for constant structure");
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000519 Use *OL = OperandList;
Chris Lattner0144fad2005-10-03 21:56:24 +0000520 for (std::vector<Constant*>::const_iterator I = V.begin(), E = V.end();
521 I != E; ++I, ++OL) {
Chris Lattner20a24452005-10-07 05:23:36 +0000522 Constant *C = *I;
523 assert((C->getType() == T->getElementType(I-V.begin()) ||
Chris Lattner0144fad2005-10-03 21:56:24 +0000524 ((T->getElementType(I-V.begin())->isAbstract() ||
Chris Lattner20a24452005-10-07 05:23:36 +0000525 C->getType()->isAbstract()) &&
Chris Lattner0144fad2005-10-03 21:56:24 +0000526 T->getElementType(I-V.begin())->getTypeID() ==
Chris Lattner20a24452005-10-07 05:23:36 +0000527 C->getType()->getTypeID())) &&
Chris Lattner93c8f142003-06-02 17:42:47 +0000528 "Initializer for struct element doesn't match struct element type!");
Gabor Greif2d3024d2008-05-26 21:33:52 +0000529 *OL = C;
Chris Lattner2f7c9632001-06-06 20:29:01 +0000530 }
531}
532
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000533
Reid Spencerd84d35b2007-02-15 02:26:10 +0000534ConstantVector::ConstantVector(const VectorType *T,
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000535 const std::vector<Constant*> &V)
Gabor Greiff6caff662008-05-10 08:32:32 +0000536 : Constant(T, ConstantVectorVal,
537 OperandTraits<ConstantVector>::op_end(this) - V.size(),
538 V.size()) {
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000539 Use *OL = OperandList;
Chris Lattner0144fad2005-10-03 21:56:24 +0000540 for (std::vector<Constant*>::const_iterator I = V.begin(), E = V.end();
541 I != E; ++I, ++OL) {
Chris Lattner20a24452005-10-07 05:23:36 +0000542 Constant *C = *I;
543 assert((C->getType() == T->getElementType() ||
Alkis Evlogimenoscb031d92004-09-10 04:16:59 +0000544 (T->isAbstract() &&
Chris Lattner20a24452005-10-07 05:23:36 +0000545 C->getType()->getTypeID() == T->getElementType()->getTypeID())) &&
Dan Gohman30978072007-05-24 14:36:04 +0000546 "Initializer for vector element doesn't match vector element type!");
Gabor Greif2d3024d2008-05-26 21:33:52 +0000547 *OL = C;
Brian Gaeke02209042004-08-20 06:00:58 +0000548 }
549}
550
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000551
Gabor Greiff6caff662008-05-10 08:32:32 +0000552namespace llvm {
Gordon Henriksen14a55692007-12-10 02:14:30 +0000553// We declare several classes private to this file, so use an anonymous
554// namespace
555namespace {
Reid Spencer10fbf0e2006-12-03 05:48:19 +0000556
Gordon Henriksen14a55692007-12-10 02:14:30 +0000557/// UnaryConstantExpr - This class is private to Constants.cpp, and is used
558/// behind the scenes to implement unary constant exprs.
559class VISIBILITY_HIDDEN UnaryConstantExpr : public ConstantExpr {
Gabor Greife9ecc682008-04-06 20:25:17 +0000560 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
Gordon Henriksen14a55692007-12-10 02:14:30 +0000561public:
Gabor Greife9ecc682008-04-06 20:25:17 +0000562 // allocate space for exactly one operand
563 void *operator new(size_t s) {
564 return User::operator new(s, 1);
565 }
Gordon Henriksen14a55692007-12-10 02:14:30 +0000566 UnaryConstantExpr(unsigned Opcode, Constant *C, const Type *Ty)
Gabor Greiff6caff662008-05-10 08:32:32 +0000567 : ConstantExpr(Ty, Opcode, &Op<0>(), 1) {
568 Op<0>() = C;
569 }
570 /// Transparently provide more efficient getOperand methods.
571 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Gordon Henriksen14a55692007-12-10 02:14:30 +0000572};
Reid Spencer10fbf0e2006-12-03 05:48:19 +0000573
Gordon Henriksen14a55692007-12-10 02:14:30 +0000574/// BinaryConstantExpr - This class is private to Constants.cpp, and is used
575/// behind the scenes to implement binary constant exprs.
576class VISIBILITY_HIDDEN BinaryConstantExpr : public ConstantExpr {
Gabor Greife9ecc682008-04-06 20:25:17 +0000577 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
Gordon Henriksen14a55692007-12-10 02:14:30 +0000578public:
Gabor Greife9ecc682008-04-06 20:25:17 +0000579 // allocate space for exactly two operands
580 void *operator new(size_t s) {
581 return User::operator new(s, 2);
582 }
Gordon Henriksen14a55692007-12-10 02:14:30 +0000583 BinaryConstantExpr(unsigned Opcode, Constant *C1, Constant *C2)
Gabor Greiff6caff662008-05-10 08:32:32 +0000584 : ConstantExpr(C1->getType(), Opcode, &Op<0>(), 2) {
Gabor Greif2d3024d2008-05-26 21:33:52 +0000585 Op<0>() = C1;
586 Op<1>() = C2;
Gordon Henriksen14a55692007-12-10 02:14:30 +0000587 }
Gabor Greiff6caff662008-05-10 08:32:32 +0000588 /// Transparently provide more efficient getOperand methods.
589 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Gordon Henriksen14a55692007-12-10 02:14:30 +0000590};
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000591
Gordon Henriksen14a55692007-12-10 02:14:30 +0000592/// SelectConstantExpr - This class is private to Constants.cpp, and is used
593/// behind the scenes to implement select constant exprs.
594class VISIBILITY_HIDDEN SelectConstantExpr : public ConstantExpr {
Gabor Greife9ecc682008-04-06 20:25:17 +0000595 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
Gordon Henriksen14a55692007-12-10 02:14:30 +0000596public:
Gabor Greife9ecc682008-04-06 20:25:17 +0000597 // allocate space for exactly three operands
598 void *operator new(size_t s) {
599 return User::operator new(s, 3);
600 }
Gordon Henriksen14a55692007-12-10 02:14:30 +0000601 SelectConstantExpr(Constant *C1, Constant *C2, Constant *C3)
Gabor Greiff6caff662008-05-10 08:32:32 +0000602 : ConstantExpr(C2->getType(), Instruction::Select, &Op<0>(), 3) {
Gabor Greif2d3024d2008-05-26 21:33:52 +0000603 Op<0>() = C1;
604 Op<1>() = C2;
605 Op<2>() = C3;
Gordon Henriksen14a55692007-12-10 02:14:30 +0000606 }
Gabor Greiff6caff662008-05-10 08:32:32 +0000607 /// Transparently provide more efficient getOperand methods.
608 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Gordon Henriksen14a55692007-12-10 02:14:30 +0000609};
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000610
Gordon Henriksen14a55692007-12-10 02:14:30 +0000611/// ExtractElementConstantExpr - This class is private to
612/// Constants.cpp, and is used behind the scenes to implement
613/// extractelement constant exprs.
614class VISIBILITY_HIDDEN ExtractElementConstantExpr : public ConstantExpr {
Gabor Greife9ecc682008-04-06 20:25:17 +0000615 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
Gordon Henriksen14a55692007-12-10 02:14:30 +0000616public:
Gabor Greife9ecc682008-04-06 20:25:17 +0000617 // allocate space for exactly two operands
618 void *operator new(size_t s) {
619 return User::operator new(s, 2);
620 }
Gordon Henriksen14a55692007-12-10 02:14:30 +0000621 ExtractElementConstantExpr(Constant *C1, Constant *C2)
622 : ConstantExpr(cast<VectorType>(C1->getType())->getElementType(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000623 Instruction::ExtractElement, &Op<0>(), 2) {
Gabor Greif2d3024d2008-05-26 21:33:52 +0000624 Op<0>() = C1;
625 Op<1>() = C2;
Gordon Henriksen14a55692007-12-10 02:14:30 +0000626 }
Gabor Greiff6caff662008-05-10 08:32:32 +0000627 /// Transparently provide more efficient getOperand methods.
628 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Gordon Henriksen14a55692007-12-10 02:14:30 +0000629};
Robert Bocchino23004482006-01-10 19:05:34 +0000630
Gordon Henriksen14a55692007-12-10 02:14:30 +0000631/// InsertElementConstantExpr - This class is private to
632/// Constants.cpp, and is used behind the scenes to implement
633/// insertelement constant exprs.
634class VISIBILITY_HIDDEN InsertElementConstantExpr : public ConstantExpr {
Gabor Greife9ecc682008-04-06 20:25:17 +0000635 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
Gordon Henriksen14a55692007-12-10 02:14:30 +0000636public:
Gabor Greife9ecc682008-04-06 20:25:17 +0000637 // allocate space for exactly three operands
638 void *operator new(size_t s) {
639 return User::operator new(s, 3);
640 }
Gordon Henriksen14a55692007-12-10 02:14:30 +0000641 InsertElementConstantExpr(Constant *C1, Constant *C2, Constant *C3)
642 : ConstantExpr(C1->getType(), Instruction::InsertElement,
Gabor Greiff6caff662008-05-10 08:32:32 +0000643 &Op<0>(), 3) {
Gabor Greif2d3024d2008-05-26 21:33:52 +0000644 Op<0>() = C1;
645 Op<1>() = C2;
646 Op<2>() = C3;
Gordon Henriksen14a55692007-12-10 02:14:30 +0000647 }
Gabor Greiff6caff662008-05-10 08:32:32 +0000648 /// Transparently provide more efficient getOperand methods.
649 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Gordon Henriksen14a55692007-12-10 02:14:30 +0000650};
Robert Bocchinoca27f032006-01-17 20:07:22 +0000651
Gordon Henriksen14a55692007-12-10 02:14:30 +0000652/// ShuffleVectorConstantExpr - This class is private to
653/// Constants.cpp, and is used behind the scenes to implement
654/// shufflevector constant exprs.
655class VISIBILITY_HIDDEN ShuffleVectorConstantExpr : public ConstantExpr {
Gabor Greife9ecc682008-04-06 20:25:17 +0000656 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
Gordon Henriksen14a55692007-12-10 02:14:30 +0000657public:
Gabor Greife9ecc682008-04-06 20:25:17 +0000658 // allocate space for exactly three operands
659 void *operator new(size_t s) {
660 return User::operator new(s, 3);
661 }
Gordon Henriksen14a55692007-12-10 02:14:30 +0000662 ShuffleVectorConstantExpr(Constant *C1, Constant *C2, Constant *C3)
Nate Begeman94aa38d2009-02-12 21:28:33 +0000663 : ConstantExpr(VectorType::get(
664 cast<VectorType>(C1->getType())->getElementType(),
665 cast<VectorType>(C3->getType())->getNumElements()),
666 Instruction::ShuffleVector,
Gabor Greiff6caff662008-05-10 08:32:32 +0000667 &Op<0>(), 3) {
Gabor Greif2d3024d2008-05-26 21:33:52 +0000668 Op<0>() = C1;
669 Op<1>() = C2;
670 Op<2>() = C3;
Gordon Henriksen14a55692007-12-10 02:14:30 +0000671 }
Gabor Greiff6caff662008-05-10 08:32:32 +0000672 /// Transparently provide more efficient getOperand methods.
673 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Gordon Henriksen14a55692007-12-10 02:14:30 +0000674};
675
Dan Gohman12fce772008-05-15 19:50:34 +0000676/// ExtractValueConstantExpr - This class is private to
677/// Constants.cpp, and is used behind the scenes to implement
678/// extractvalue constant exprs.
679class VISIBILITY_HIDDEN ExtractValueConstantExpr : public ConstantExpr {
Dan Gohman1ecaf452008-05-31 00:58:22 +0000680 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
Dan Gohman12fce772008-05-15 19:50:34 +0000681public:
Dan Gohman1ecaf452008-05-31 00:58:22 +0000682 // allocate space for exactly one operand
683 void *operator new(size_t s) {
684 return User::operator new(s, 1);
Dan Gohman12fce772008-05-15 19:50:34 +0000685 }
Dan Gohman1ecaf452008-05-31 00:58:22 +0000686 ExtractValueConstantExpr(Constant *Agg,
687 const SmallVector<unsigned, 4> &IdxList,
688 const Type *DestTy)
689 : ConstantExpr(DestTy, Instruction::ExtractValue, &Op<0>(), 1),
690 Indices(IdxList) {
691 Op<0>() = Agg;
692 }
693
Dan Gohman7bb04502008-05-31 19:09:08 +0000694 /// Indices - These identify which value to extract.
Dan Gohman1ecaf452008-05-31 00:58:22 +0000695 const SmallVector<unsigned, 4> Indices;
696
Dan Gohman12fce772008-05-15 19:50:34 +0000697 /// Transparently provide more efficient getOperand methods.
698 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
699};
700
701/// InsertValueConstantExpr - This class is private to
702/// Constants.cpp, and is used behind the scenes to implement
703/// insertvalue constant exprs.
704class VISIBILITY_HIDDEN InsertValueConstantExpr : public ConstantExpr {
Dan Gohman1ecaf452008-05-31 00:58:22 +0000705 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
Dan Gohman12fce772008-05-15 19:50:34 +0000706public:
Dan Gohman1ecaf452008-05-31 00:58:22 +0000707 // allocate space for exactly one operand
708 void *operator new(size_t s) {
709 return User::operator new(s, 2);
Dan Gohman12fce772008-05-15 19:50:34 +0000710 }
Dan Gohman1ecaf452008-05-31 00:58:22 +0000711 InsertValueConstantExpr(Constant *Agg, Constant *Val,
712 const SmallVector<unsigned, 4> &IdxList,
713 const Type *DestTy)
714 : ConstantExpr(DestTy, Instruction::InsertValue, &Op<0>(), 2),
715 Indices(IdxList) {
716 Op<0>() = Agg;
717 Op<1>() = Val;
718 }
719
Dan Gohman7bb04502008-05-31 19:09:08 +0000720 /// Indices - These identify the position for the insertion.
Dan Gohman1ecaf452008-05-31 00:58:22 +0000721 const SmallVector<unsigned, 4> Indices;
722
Dan Gohman12fce772008-05-15 19:50:34 +0000723 /// Transparently provide more efficient getOperand methods.
724 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
725};
726
727
Gordon Henriksen14a55692007-12-10 02:14:30 +0000728/// GetElementPtrConstantExpr - This class is private to Constants.cpp, and is
729/// used behind the scenes to implement getelementpr constant exprs.
Gabor Greife9ecc682008-04-06 20:25:17 +0000730class VISIBILITY_HIDDEN GetElementPtrConstantExpr : public ConstantExpr {
Gordon Henriksen14a55692007-12-10 02:14:30 +0000731 GetElementPtrConstantExpr(Constant *C, const std::vector<Constant*> &IdxList,
Gabor Greiff6caff662008-05-10 08:32:32 +0000732 const Type *DestTy);
Gabor Greife9ecc682008-04-06 20:25:17 +0000733public:
Gabor Greif697e94c2008-05-15 10:04:30 +0000734 static GetElementPtrConstantExpr *Create(Constant *C,
735 const std::vector<Constant*>&IdxList,
Gabor Greiff6caff662008-05-10 08:32:32 +0000736 const Type *DestTy) {
Gabor Greif697e94c2008-05-15 10:04:30 +0000737 return new(IdxList.size() + 1)
738 GetElementPtrConstantExpr(C, IdxList, DestTy);
Gabor Greife9ecc682008-04-06 20:25:17 +0000739 }
Gabor Greiff6caff662008-05-10 08:32:32 +0000740 /// Transparently provide more efficient getOperand methods.
741 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Gordon Henriksen14a55692007-12-10 02:14:30 +0000742};
743
744// CompareConstantExpr - This class is private to Constants.cpp, and is used
745// behind the scenes to implement ICmp and FCmp constant expressions. This is
746// needed in order to store the predicate value for these instructions.
747struct VISIBILITY_HIDDEN CompareConstantExpr : public ConstantExpr {
Gabor Greife9ecc682008-04-06 20:25:17 +0000748 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
749 // allocate space for exactly two operands
750 void *operator new(size_t s) {
751 return User::operator new(s, 2);
752 }
Gordon Henriksen14a55692007-12-10 02:14:30 +0000753 unsigned short predicate;
Nate Begemand2195702008-05-12 19:01:56 +0000754 CompareConstantExpr(const Type *ty, Instruction::OtherOps opc,
755 unsigned short pred, Constant* LHS, Constant* RHS)
756 : ConstantExpr(ty, opc, &Op<0>(), 2), predicate(pred) {
Gabor Greif2d3024d2008-05-26 21:33:52 +0000757 Op<0>() = LHS;
758 Op<1>() = RHS;
Gordon Henriksen14a55692007-12-10 02:14:30 +0000759 }
Gabor Greiff6caff662008-05-10 08:32:32 +0000760 /// Transparently provide more efficient getOperand methods.
761 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Gordon Henriksen14a55692007-12-10 02:14:30 +0000762};
763
764} // end anonymous namespace
765
Gabor Greiff6caff662008-05-10 08:32:32 +0000766template <>
767struct OperandTraits<UnaryConstantExpr> : FixedNumOperandTraits<1> {
768};
769DEFINE_TRANSPARENT_OPERAND_ACCESSORS(UnaryConstantExpr, Value)
770
771template <>
772struct OperandTraits<BinaryConstantExpr> : FixedNumOperandTraits<2> {
773};
774DEFINE_TRANSPARENT_OPERAND_ACCESSORS(BinaryConstantExpr, Value)
775
776template <>
777struct OperandTraits<SelectConstantExpr> : FixedNumOperandTraits<3> {
778};
779DEFINE_TRANSPARENT_OPERAND_ACCESSORS(SelectConstantExpr, Value)
780
781template <>
782struct OperandTraits<ExtractElementConstantExpr> : FixedNumOperandTraits<2> {
783};
784DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ExtractElementConstantExpr, Value)
785
786template <>
787struct OperandTraits<InsertElementConstantExpr> : FixedNumOperandTraits<3> {
788};
789DEFINE_TRANSPARENT_OPERAND_ACCESSORS(InsertElementConstantExpr, Value)
790
791template <>
792struct OperandTraits<ShuffleVectorConstantExpr> : FixedNumOperandTraits<3> {
793};
794DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ShuffleVectorConstantExpr, Value)
795
Dan Gohman12fce772008-05-15 19:50:34 +0000796template <>
Dan Gohman1ecaf452008-05-31 00:58:22 +0000797struct OperandTraits<ExtractValueConstantExpr> : FixedNumOperandTraits<1> {
Dan Gohman12fce772008-05-15 19:50:34 +0000798};
Dan Gohman12fce772008-05-15 19:50:34 +0000799DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ExtractValueConstantExpr, Value)
800
801template <>
Dan Gohman1ecaf452008-05-31 00:58:22 +0000802struct OperandTraits<InsertValueConstantExpr> : FixedNumOperandTraits<2> {
Dan Gohman12fce772008-05-15 19:50:34 +0000803};
Dan Gohman12fce772008-05-15 19:50:34 +0000804DEFINE_TRANSPARENT_OPERAND_ACCESSORS(InsertValueConstantExpr, Value)
805
Gabor Greiff6caff662008-05-10 08:32:32 +0000806template <>
807struct OperandTraits<GetElementPtrConstantExpr> : VariadicOperandTraits<1> {
808};
809
810GetElementPtrConstantExpr::GetElementPtrConstantExpr
811 (Constant *C,
812 const std::vector<Constant*> &IdxList,
813 const Type *DestTy)
814 : ConstantExpr(DestTy, Instruction::GetElementPtr,
815 OperandTraits<GetElementPtrConstantExpr>::op_end(this)
816 - (IdxList.size()+1),
817 IdxList.size()+1) {
Gabor Greif2d3024d2008-05-26 21:33:52 +0000818 OperandList[0] = C;
Gabor Greiff6caff662008-05-10 08:32:32 +0000819 for (unsigned i = 0, E = IdxList.size(); i != E; ++i)
Gabor Greif2d3024d2008-05-26 21:33:52 +0000820 OperandList[i+1] = IdxList[i];
Gabor Greiff6caff662008-05-10 08:32:32 +0000821}
822
823DEFINE_TRANSPARENT_OPERAND_ACCESSORS(GetElementPtrConstantExpr, Value)
824
825
826template <>
827struct OperandTraits<CompareConstantExpr> : FixedNumOperandTraits<2> {
828};
829DEFINE_TRANSPARENT_OPERAND_ACCESSORS(CompareConstantExpr, Value)
830
831
832} // End llvm namespace
833
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000834
835// Utility function for determining if a ConstantExpr is a CastOp or not. This
836// can't be inline because we don't want to #include Instruction.h into
837// Constant.h
838bool ConstantExpr::isCast() const {
839 return Instruction::isCast(getOpcode());
840}
841
Reid Spenceree3c9912006-12-04 05:19:50 +0000842bool ConstantExpr::isCompare() const {
Chris Lattnereab49262008-07-14 05:17:31 +0000843 return getOpcode() == Instruction::ICmp || getOpcode() == Instruction::FCmp ||
844 getOpcode() == Instruction::VICmp || getOpcode() == Instruction::VFCmp;
Reid Spenceree3c9912006-12-04 05:19:50 +0000845}
846
Dan Gohman1ecaf452008-05-31 00:58:22 +0000847bool ConstantExpr::hasIndices() const {
848 return getOpcode() == Instruction::ExtractValue ||
849 getOpcode() == Instruction::InsertValue;
850}
851
852const SmallVector<unsigned, 4> &ConstantExpr::getIndices() const {
853 if (const ExtractValueConstantExpr *EVCE =
854 dyn_cast<ExtractValueConstantExpr>(this))
855 return EVCE->Indices;
Dan Gohmana469bdb2008-06-23 16:39:44 +0000856
857 return cast<InsertValueConstantExpr>(this)->Indices;
Dan Gohman1ecaf452008-05-31 00:58:22 +0000858}
859
Chris Lattner817175f2004-03-29 02:37:53 +0000860/// ConstantExpr::get* - Return some common constants without having to
861/// specify the full Instruction::OPCODE identifier.
862///
863Constant *ConstantExpr::getNeg(Constant *C) {
Dan Gohmana5b96452009-06-04 22:49:04 +0000864 // API compatibility: Adjust integer opcodes to floating-point opcodes.
865 if (C->getType()->isFPOrFPVector())
866 return getFNeg(C);
867 assert(C->getType()->isIntOrIntVector() &&
868 "Cannot NEG a nonintegral value!");
Reid Spencer2eadb532007-01-21 00:29:26 +0000869 return get(Instruction::Sub,
870 ConstantExpr::getZeroValueForNegationExpr(C->getType()),
871 C);
Chris Lattner817175f2004-03-29 02:37:53 +0000872}
Dan Gohmana5b96452009-06-04 22:49:04 +0000873Constant *ConstantExpr::getFNeg(Constant *C) {
874 assert(C->getType()->isFPOrFPVector() &&
875 "Cannot FNEG a non-floating-point value!");
876 return get(Instruction::FSub,
877 ConstantExpr::getZeroValueForNegationExpr(C->getType()),
878 C);
879}
Chris Lattner817175f2004-03-29 02:37:53 +0000880Constant *ConstantExpr::getNot(Constant *C) {
Dan Gohmana5b96452009-06-04 22:49:04 +0000881 assert(C->getType()->isIntOrIntVector() &&
882 "Cannot NOT a nonintegral value!");
Chris Lattner817175f2004-03-29 02:37:53 +0000883 return get(Instruction::Xor, C,
Dale Johannesen47a5ef32008-08-21 21:20:09 +0000884 Constant::getAllOnesValue(C->getType()));
Chris Lattner817175f2004-03-29 02:37:53 +0000885}
886Constant *ConstantExpr::getAdd(Constant *C1, Constant *C2) {
887 return get(Instruction::Add, C1, C2);
888}
Dan Gohmana5b96452009-06-04 22:49:04 +0000889Constant *ConstantExpr::getFAdd(Constant *C1, Constant *C2) {
890 return get(Instruction::FAdd, C1, C2);
891}
Chris Lattner817175f2004-03-29 02:37:53 +0000892Constant *ConstantExpr::getSub(Constant *C1, Constant *C2) {
893 return get(Instruction::Sub, C1, C2);
894}
Dan Gohmana5b96452009-06-04 22:49:04 +0000895Constant *ConstantExpr::getFSub(Constant *C1, Constant *C2) {
896 return get(Instruction::FSub, C1, C2);
897}
Chris Lattner817175f2004-03-29 02:37:53 +0000898Constant *ConstantExpr::getMul(Constant *C1, Constant *C2) {
899 return get(Instruction::Mul, C1, C2);
900}
Dan Gohmana5b96452009-06-04 22:49:04 +0000901Constant *ConstantExpr::getFMul(Constant *C1, Constant *C2) {
902 return get(Instruction::FMul, C1, C2);
903}
Reid Spencer7e80b0b2006-10-26 06:15:43 +0000904Constant *ConstantExpr::getUDiv(Constant *C1, Constant *C2) {
905 return get(Instruction::UDiv, C1, C2);
906}
907Constant *ConstantExpr::getSDiv(Constant *C1, Constant *C2) {
908 return get(Instruction::SDiv, C1, C2);
909}
910Constant *ConstantExpr::getFDiv(Constant *C1, Constant *C2) {
911 return get(Instruction::FDiv, C1, C2);
Chris Lattner817175f2004-03-29 02:37:53 +0000912}
Reid Spencer7eb55b32006-11-02 01:53:59 +0000913Constant *ConstantExpr::getURem(Constant *C1, Constant *C2) {
914 return get(Instruction::URem, C1, C2);
915}
916Constant *ConstantExpr::getSRem(Constant *C1, Constant *C2) {
917 return get(Instruction::SRem, C1, C2);
918}
919Constant *ConstantExpr::getFRem(Constant *C1, Constant *C2) {
920 return get(Instruction::FRem, C1, C2);
Chris Lattner817175f2004-03-29 02:37:53 +0000921}
922Constant *ConstantExpr::getAnd(Constant *C1, Constant *C2) {
923 return get(Instruction::And, C1, C2);
924}
925Constant *ConstantExpr::getOr(Constant *C1, Constant *C2) {
926 return get(Instruction::Or, C1, C2);
927}
928Constant *ConstantExpr::getXor(Constant *C1, Constant *C2) {
929 return get(Instruction::Xor, C1, C2);
930}
Reid Spencer10fbf0e2006-12-03 05:48:19 +0000931unsigned ConstantExpr::getPredicate() const {
Nate Begemand2195702008-05-12 19:01:56 +0000932 assert(getOpcode() == Instruction::FCmp ||
933 getOpcode() == Instruction::ICmp ||
934 getOpcode() == Instruction::VFCmp ||
935 getOpcode() == Instruction::VICmp);
Chris Lattneref650092007-10-18 16:26:24 +0000936 return ((const CompareConstantExpr*)this)->predicate;
Reid Spencer10fbf0e2006-12-03 05:48:19 +0000937}
Chris Lattner817175f2004-03-29 02:37:53 +0000938Constant *ConstantExpr::getShl(Constant *C1, Constant *C2) {
939 return get(Instruction::Shl, C1, C2);
940}
Reid Spencerfdff9382006-11-08 06:47:33 +0000941Constant *ConstantExpr::getLShr(Constant *C1, Constant *C2) {
942 return get(Instruction::LShr, C1, C2);
Chris Lattner817175f2004-03-29 02:37:53 +0000943}
Reid Spencerfdff9382006-11-08 06:47:33 +0000944Constant *ConstantExpr::getAShr(Constant *C1, Constant *C2) {
945 return get(Instruction::AShr, C1, C2);
Chris Lattnerdb8bdba2004-05-25 05:32:43 +0000946}
Chris Lattner60e0dd72001-10-03 06:12:09 +0000947
Chris Lattner7c1018a2006-07-14 19:37:40 +0000948/// getWithOperandReplaced - Return a constant expression identical to this
949/// one, but with the specified operand set to the specified value.
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000950Constant *
951ConstantExpr::getWithOperandReplaced(unsigned OpNo, Constant *Op) const {
Chris Lattner7c1018a2006-07-14 19:37:40 +0000952 assert(OpNo < getNumOperands() && "Operand num is out of range!");
953 assert(Op->getType() == getOperand(OpNo)->getType() &&
954 "Replacing operand with value of different type!");
Chris Lattner227816342006-07-14 22:20:01 +0000955 if (getOperand(OpNo) == Op)
956 return const_cast<ConstantExpr*>(this);
Chris Lattner7c1018a2006-07-14 19:37:40 +0000957
Chris Lattner227816342006-07-14 22:20:01 +0000958 Constant *Op0, *Op1, *Op2;
Chris Lattner7c1018a2006-07-14 19:37:40 +0000959 switch (getOpcode()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000960 case Instruction::Trunc:
961 case Instruction::ZExt:
962 case Instruction::SExt:
963 case Instruction::FPTrunc:
964 case Instruction::FPExt:
965 case Instruction::UIToFP:
966 case Instruction::SIToFP:
967 case Instruction::FPToUI:
968 case Instruction::FPToSI:
969 case Instruction::PtrToInt:
970 case Instruction::IntToPtr:
971 case Instruction::BitCast:
972 return ConstantExpr::getCast(getOpcode(), Op, getType());
Chris Lattner227816342006-07-14 22:20:01 +0000973 case Instruction::Select:
974 Op0 = (OpNo == 0) ? Op : getOperand(0);
975 Op1 = (OpNo == 1) ? Op : getOperand(1);
976 Op2 = (OpNo == 2) ? Op : getOperand(2);
977 return ConstantExpr::getSelect(Op0, Op1, Op2);
978 case Instruction::InsertElement:
979 Op0 = (OpNo == 0) ? Op : getOperand(0);
980 Op1 = (OpNo == 1) ? Op : getOperand(1);
981 Op2 = (OpNo == 2) ? Op : getOperand(2);
982 return ConstantExpr::getInsertElement(Op0, Op1, Op2);
983 case Instruction::ExtractElement:
984 Op0 = (OpNo == 0) ? Op : getOperand(0);
985 Op1 = (OpNo == 1) ? Op : getOperand(1);
986 return ConstantExpr::getExtractElement(Op0, Op1);
987 case Instruction::ShuffleVector:
988 Op0 = (OpNo == 0) ? Op : getOperand(0);
989 Op1 = (OpNo == 1) ? Op : getOperand(1);
990 Op2 = (OpNo == 2) ? Op : getOperand(2);
991 return ConstantExpr::getShuffleVector(Op0, Op1, Op2);
Chris Lattner7c1018a2006-07-14 19:37:40 +0000992 case Instruction::GetElementPtr: {
Chris Lattnerb5d70302007-02-19 20:01:23 +0000993 SmallVector<Constant*, 8> Ops;
Dan Gohman12fce772008-05-15 19:50:34 +0000994 Ops.resize(getNumOperands()-1);
Chris Lattner7c1018a2006-07-14 19:37:40 +0000995 for (unsigned i = 1, e = getNumOperands(); i != e; ++i)
Dan Gohman12fce772008-05-15 19:50:34 +0000996 Ops[i-1] = getOperand(i);
Chris Lattner7c1018a2006-07-14 19:37:40 +0000997 if (OpNo == 0)
Chris Lattnerb5d70302007-02-19 20:01:23 +0000998 return ConstantExpr::getGetElementPtr(Op, &Ops[0], Ops.size());
Chris Lattner7c1018a2006-07-14 19:37:40 +0000999 Ops[OpNo-1] = Op;
Chris Lattnerb5d70302007-02-19 20:01:23 +00001000 return ConstantExpr::getGetElementPtr(getOperand(0), &Ops[0], Ops.size());
Chris Lattner7c1018a2006-07-14 19:37:40 +00001001 }
Chris Lattner7c1018a2006-07-14 19:37:40 +00001002 default:
1003 assert(getNumOperands() == 2 && "Must be binary operator?");
Chris Lattner227816342006-07-14 22:20:01 +00001004 Op0 = (OpNo == 0) ? Op : getOperand(0);
1005 Op1 = (OpNo == 1) ? Op : getOperand(1);
1006 return ConstantExpr::get(getOpcode(), Op0, Op1);
1007 }
1008}
1009
1010/// getWithOperands - This returns the current constant expression with the
1011/// operands replaced with the specified values. The specified operands must
1012/// match count and type with the existing ones.
1013Constant *ConstantExpr::
Chris Lattnerb078e282008-08-20 22:27:40 +00001014getWithOperands(Constant* const *Ops, unsigned NumOps) const {
1015 assert(NumOps == getNumOperands() && "Operand count mismatch!");
Chris Lattner227816342006-07-14 22:20:01 +00001016 bool AnyChange = false;
Chris Lattnerb078e282008-08-20 22:27:40 +00001017 for (unsigned i = 0; i != NumOps; ++i) {
Chris Lattner227816342006-07-14 22:20:01 +00001018 assert(Ops[i]->getType() == getOperand(i)->getType() &&
1019 "Operand type mismatch!");
1020 AnyChange |= Ops[i] != getOperand(i);
1021 }
1022 if (!AnyChange) // No operands changed, return self.
1023 return const_cast<ConstantExpr*>(this);
1024
1025 switch (getOpcode()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001026 case Instruction::Trunc:
1027 case Instruction::ZExt:
1028 case Instruction::SExt:
1029 case Instruction::FPTrunc:
1030 case Instruction::FPExt:
1031 case Instruction::UIToFP:
1032 case Instruction::SIToFP:
1033 case Instruction::FPToUI:
1034 case Instruction::FPToSI:
1035 case Instruction::PtrToInt:
1036 case Instruction::IntToPtr:
1037 case Instruction::BitCast:
1038 return ConstantExpr::getCast(getOpcode(), Ops[0], getType());
Chris Lattner227816342006-07-14 22:20:01 +00001039 case Instruction::Select:
1040 return ConstantExpr::getSelect(Ops[0], Ops[1], Ops[2]);
1041 case Instruction::InsertElement:
1042 return ConstantExpr::getInsertElement(Ops[0], Ops[1], Ops[2]);
1043 case Instruction::ExtractElement:
1044 return ConstantExpr::getExtractElement(Ops[0], Ops[1]);
1045 case Instruction::ShuffleVector:
1046 return ConstantExpr::getShuffleVector(Ops[0], Ops[1], Ops[2]);
Chris Lattnerb5d70302007-02-19 20:01:23 +00001047 case Instruction::GetElementPtr:
Chris Lattnerb078e282008-08-20 22:27:40 +00001048 return ConstantExpr::getGetElementPtr(Ops[0], &Ops[1], NumOps-1);
Reid Spencer266e42b2006-12-23 06:05:41 +00001049 case Instruction::ICmp:
1050 case Instruction::FCmp:
Nate Begeman098cc6f2008-07-25 17:56:27 +00001051 case Instruction::VICmp:
1052 case Instruction::VFCmp:
Reid Spencer266e42b2006-12-23 06:05:41 +00001053 return ConstantExpr::getCompare(getPredicate(), Ops[0], Ops[1]);
Chris Lattner227816342006-07-14 22:20:01 +00001054 default:
1055 assert(getNumOperands() == 2 && "Must be binary operator?");
1056 return ConstantExpr::get(getOpcode(), Ops[0], Ops[1]);
Chris Lattner7c1018a2006-07-14 19:37:40 +00001057 }
1058}
1059
Chris Lattner2f7c9632001-06-06 20:29:01 +00001060
1061//===----------------------------------------------------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +00001062// isValueValidForType implementations
1063
Reid Spencere7334722006-12-19 01:28:19 +00001064bool ConstantInt::isValueValidForType(const Type *Ty, uint64_t Val) {
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001065 unsigned NumBits = cast<IntegerType>(Ty)->getBitWidth(); // assert okay
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001066 if (Ty == Type::Int1Ty)
1067 return Val == 0 || Val == 1;
Reid Spencerd7a00d72007-02-05 23:47:56 +00001068 if (NumBits >= 64)
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001069 return true; // always true, has to fit in largest type
1070 uint64_t Max = (1ll << NumBits) - 1;
1071 return Val <= Max;
Reid Spencere7334722006-12-19 01:28:19 +00001072}
1073
Reid Spencere0fc4df2006-10-20 07:07:24 +00001074bool ConstantInt::isValueValidForType(const Type *Ty, int64_t Val) {
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001075 unsigned NumBits = cast<IntegerType>(Ty)->getBitWidth(); // assert okay
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001076 if (Ty == Type::Int1Ty)
Reid Spencera94d3942007-01-19 21:13:56 +00001077 return Val == 0 || Val == 1 || Val == -1;
Reid Spencerd7a00d72007-02-05 23:47:56 +00001078 if (NumBits >= 64)
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001079 return true; // always true, has to fit in largest type
1080 int64_t Min = -(1ll << (NumBits-1));
1081 int64_t Max = (1ll << (NumBits-1)) - 1;
1082 return (Val >= Min && Val <= Max);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001083}
1084
Dale Johannesend246b2c2007-08-30 00:23:21 +00001085bool ConstantFP::isValueValidForType(const Type *Ty, const APFloat& Val) {
1086 // convert modifies in place, so make a copy.
1087 APFloat Val2 = APFloat(Val);
Dale Johannesen4f0bd682008-10-09 23:00:39 +00001088 bool losesInfo;
Chris Lattner6b727592004-06-17 18:19:28 +00001089 switch (Ty->getTypeID()) {
Chris Lattner2f7c9632001-06-06 20:29:01 +00001090 default:
1091 return false; // These can't be represented as floating point!
1092
Dale Johannesend246b2c2007-08-30 00:23:21 +00001093 // FIXME rounding mode needs to be more flexible
Dale Johannesen4f0bd682008-10-09 23:00:39 +00001094 case Type::FloatTyID: {
1095 if (&Val2.getSemantics() == &APFloat::IEEEsingle)
1096 return true;
1097 Val2.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven, &losesInfo);
1098 return !losesInfo;
1099 }
1100 case Type::DoubleTyID: {
1101 if (&Val2.getSemantics() == &APFloat::IEEEsingle ||
1102 &Val2.getSemantics() == &APFloat::IEEEdouble)
1103 return true;
1104 Val2.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, &losesInfo);
1105 return !losesInfo;
1106 }
Dale Johannesenbdad8092007-08-09 22:51:36 +00001107 case Type::X86_FP80TyID:
Dale Johannesen028084e2007-09-12 03:30:33 +00001108 return &Val2.getSemantics() == &APFloat::IEEEsingle ||
1109 &Val2.getSemantics() == &APFloat::IEEEdouble ||
1110 &Val2.getSemantics() == &APFloat::x87DoubleExtended;
Dale Johannesenbdad8092007-08-09 22:51:36 +00001111 case Type::FP128TyID:
Dale Johannesen028084e2007-09-12 03:30:33 +00001112 return &Val2.getSemantics() == &APFloat::IEEEsingle ||
1113 &Val2.getSemantics() == &APFloat::IEEEdouble ||
1114 &Val2.getSemantics() == &APFloat::IEEEquad;
Dale Johannesen007aa372007-10-11 18:07:22 +00001115 case Type::PPC_FP128TyID:
1116 return &Val2.getSemantics() == &APFloat::IEEEsingle ||
1117 &Val2.getSemantics() == &APFloat::IEEEdouble ||
1118 &Val2.getSemantics() == &APFloat::PPCDoubleDouble;
Chris Lattner2f7c9632001-06-06 20:29:01 +00001119 }
Chris Lattneraa2372562006-05-24 17:04:05 +00001120}
Chris Lattner9655e542001-07-20 19:16:02 +00001121
Chris Lattner49d855c2001-09-07 16:46:31 +00001122//===----------------------------------------------------------------------===//
Chris Lattner49d855c2001-09-07 16:46:31 +00001123// Factory Function Implementation
1124
Gabor Greiff6caff662008-05-10 08:32:32 +00001125
1126// The number of operands for each ConstantCreator::create method is
1127// determined by the ConstantTraits template.
Chris Lattner98fa07b2003-05-23 20:03:32 +00001128// ConstantCreator - A class that is used to create constants by
1129// ValueMap*. This class should be partially specialized if there is
1130// something strange that needs to be done to interface to the ctor for the
1131// constant.
1132//
Chris Lattner189d19f2003-11-21 20:23:48 +00001133namespace llvm {
Gabor Greiff6caff662008-05-10 08:32:32 +00001134 template<class ValType>
1135 struct ConstantTraits;
1136
1137 template<typename T, typename Alloc>
1138 struct VISIBILITY_HIDDEN ConstantTraits< std::vector<T, Alloc> > {
1139 static unsigned uses(const std::vector<T, Alloc>& v) {
1140 return v.size();
1141 }
1142 };
1143
Chris Lattner189d19f2003-11-21 20:23:48 +00001144 template<class ConstantClass, class TypeClass, class ValType>
Chris Lattner02157b02006-06-28 21:38:54 +00001145 struct VISIBILITY_HIDDEN ConstantCreator {
Chris Lattner189d19f2003-11-21 20:23:48 +00001146 static ConstantClass *create(const TypeClass *Ty, const ValType &V) {
Gabor Greiff6caff662008-05-10 08:32:32 +00001147 return new(ConstantTraits<ValType>::uses(V)) ConstantClass(Ty, V);
Chris Lattner189d19f2003-11-21 20:23:48 +00001148 }
1149 };
Misha Brukmanb1c93172005-04-21 23:48:37 +00001150
Chris Lattner189d19f2003-11-21 20:23:48 +00001151 template<class ConstantClass, class TypeClass>
Chris Lattner02157b02006-06-28 21:38:54 +00001152 struct VISIBILITY_HIDDEN ConvertConstantType {
Chris Lattner189d19f2003-11-21 20:23:48 +00001153 static void convert(ConstantClass *OldC, const TypeClass *NewTy) {
1154 assert(0 && "This type cannot be converted!\n");
1155 abort();
1156 }
1157 };
Chris Lattnerb50d1352003-10-05 00:17:43 +00001158
Chris Lattner935aa922005-10-04 17:48:46 +00001159 template<class ValType, class TypeClass, class ConstantClass,
1160 bool HasLargeKey = false /*true for arrays and structs*/ >
Chris Lattner02157b02006-06-28 21:38:54 +00001161 class VISIBILITY_HIDDEN ValueMap : public AbstractTypeUser {
Chris Lattnerb64419a2005-10-03 22:51:37 +00001162 public:
Jim Laskeyc03caef2006-07-17 17:38:29 +00001163 typedef std::pair<const Type*, ValType> MapKey;
1164 typedef std::map<MapKey, Constant *> MapTy;
1165 typedef std::map<Constant*, typename MapTy::iterator> InverseMapTy;
1166 typedef std::map<const Type*, typename MapTy::iterator> AbstractTypeMapTy;
Chris Lattnerb64419a2005-10-03 22:51:37 +00001167 private:
Chris Lattner5bbf60a52005-10-04 16:52:46 +00001168 /// Map - This is the main map from the element descriptor to the Constants.
1169 /// This is the primary way we avoid creating two of the same shape
1170 /// constant.
Chris Lattnerb50d1352003-10-05 00:17:43 +00001171 MapTy Map;
Chris Lattner935aa922005-10-04 17:48:46 +00001172
1173 /// InverseMap - If "HasLargeKey" is true, this contains an inverse mapping
1174 /// from the constants to their element in Map. This is important for
1175 /// removal of constants from the array, which would otherwise have to scan
1176 /// through the map with very large keys.
Jim Laskeyc03caef2006-07-17 17:38:29 +00001177 InverseMapTy InverseMap;
Chris Lattnerb50d1352003-10-05 00:17:43 +00001178
Jim Laskeyc03caef2006-07-17 17:38:29 +00001179 /// AbstractTypeMap - Map for abstract type constants.
1180 ///
Chris Lattnerb50d1352003-10-05 00:17:43 +00001181 AbstractTypeMapTy AbstractTypeMap;
Chris Lattner99a669b2004-11-19 16:39:44 +00001182
Chris Lattner98fa07b2003-05-23 20:03:32 +00001183 public:
Owen Anderson61794042009-06-17 20:10:08 +00001184 // NOTE: This function is not locked. It is the caller's responsibility
1185 // to enforce proper synchronization.
Jim Laskeyc03caef2006-07-17 17:38:29 +00001186 typename MapTy::iterator map_end() { return Map.end(); }
Chris Lattnerb64419a2005-10-03 22:51:37 +00001187
1188 /// InsertOrGetItem - Return an iterator for the specified element.
1189 /// If the element exists in the map, the returned iterator points to the
1190 /// entry and Exists=true. If not, the iterator points to the newly
1191 /// inserted entry and returns Exists=false. Newly inserted entries have
1192 /// I->second == 0, and should be filled in.
Owen Anderson61794042009-06-17 20:10:08 +00001193 /// NOTE: This function is not locked. It is the caller's responsibility
1194 // to enforce proper synchronization.
Jim Laskeyc03caef2006-07-17 17:38:29 +00001195 typename MapTy::iterator InsertOrGetItem(std::pair<MapKey, Constant *>
1196 &InsertVal,
Chris Lattnerb64419a2005-10-03 22:51:37 +00001197 bool &Exists) {
Jim Laskeyc03caef2006-07-17 17:38:29 +00001198 std::pair<typename MapTy::iterator, bool> IP = Map.insert(InsertVal);
Chris Lattnerb64419a2005-10-03 22:51:37 +00001199 Exists = !IP.second;
1200 return IP.first;
1201 }
Chris Lattner5bbf60a52005-10-04 16:52:46 +00001202
Chris Lattner935aa922005-10-04 17:48:46 +00001203private:
Jim Laskeyc03caef2006-07-17 17:38:29 +00001204 typename MapTy::iterator FindExistingElement(ConstantClass *CP) {
Chris Lattner935aa922005-10-04 17:48:46 +00001205 if (HasLargeKey) {
Jim Laskeyc03caef2006-07-17 17:38:29 +00001206 typename InverseMapTy::iterator IMI = InverseMap.find(CP);
Chris Lattner935aa922005-10-04 17:48:46 +00001207 assert(IMI != InverseMap.end() && IMI->second != Map.end() &&
1208 IMI->second->second == CP &&
1209 "InverseMap corrupt!");
1210 return IMI->second;
1211 }
1212
Jim Laskeyc03caef2006-07-17 17:38:29 +00001213 typename MapTy::iterator I =
Dan Gohmane955c482008-08-05 14:45:15 +00001214 Map.find(MapKey(static_cast<const TypeClass*>(CP->getRawType()),
1215 getValType(CP)));
Chris Lattner5bbf60a52005-10-04 16:52:46 +00001216 if (I == Map.end() || I->second != CP) {
1217 // FIXME: This should not use a linear scan. If this gets to be a
1218 // performance problem, someone should look at this.
1219 for (I = Map.begin(); I != Map.end() && I->second != CP; ++I)
1220 /* empty */;
1221 }
Chris Lattner935aa922005-10-04 17:48:46 +00001222 return I;
1223 }
1224public:
1225
Chris Lattnerb64419a2005-10-03 22:51:37 +00001226 /// getOrCreate - Return the specified constant from the map, creating it if
1227 /// necessary.
Chris Lattner98fa07b2003-05-23 20:03:32 +00001228 ConstantClass *getOrCreate(const TypeClass *Ty, const ValType &V) {
Chris Lattnerb50d1352003-10-05 00:17:43 +00001229 MapKey Lookup(Ty, V);
Owen Anderson61794042009-06-17 20:10:08 +00001230 if (llvm_is_multithreaded()) {
1231 ConstantClass* Result = 0;
1232
1233 ConstantsLock->reader_acquire();
1234 typename MapTy::iterator I = Map.find(Lookup);
1235 // Is it in the map?
1236 if (I != Map.end())
1237 Result = static_cast<ConstantClass *>(I->second);
1238 ConstantsLock->reader_release();
1239
1240 if (!Result) {
Owen Anderson65c5cd72009-06-17 20:34:43 +00001241 sys::ScopedWriter Writer(&*ConstantsLock);
Owen Anderson61794042009-06-17 20:10:08 +00001242 I = Map.find(Lookup);
1243 // Is it in the map?
1244 if (I != Map.end())
1245 Result = static_cast<ConstantClass *>(I->second);
1246 if (!Result) {
1247 // If no preexisting value, create one now...
1248 Result =
1249 ConstantCreator<ConstantClass,TypeClass,ValType>::create(Ty, V);
Chris Lattner98fa07b2003-05-23 20:03:32 +00001250
Owen Anderson61794042009-06-17 20:10:08 +00001251 assert(Result->getType() == Ty && "Type specified is not correct!");
1252 I = Map.insert(I, std::make_pair(MapKey(Ty, V), Result));
Chris Lattner98fa07b2003-05-23 20:03:32 +00001253
Owen Anderson61794042009-06-17 20:10:08 +00001254 if (HasLargeKey) // Remember the reverse mapping if needed.
1255 InverseMap.insert(std::make_pair(Result, I));
Chris Lattnerb50d1352003-10-05 00:17:43 +00001256
Owen Anderson61794042009-06-17 20:10:08 +00001257 // If the type of the constant is abstract, make sure that an entry
1258 // exists for it in the AbstractTypeMap.
1259 if (Ty->isAbstract()) {
1260 typename AbstractTypeMapTy::iterator TI =
1261 AbstractTypeMap.find(Ty);
Chris Lattnerb50d1352003-10-05 00:17:43 +00001262
Owen Anderson61794042009-06-17 20:10:08 +00001263 if (TI == AbstractTypeMap.end()) {
1264 // Add ourselves to the ATU list of the type.
1265 cast<DerivedType>(Ty)->addAbstractTypeUser(this);
Chris Lattnerb50d1352003-10-05 00:17:43 +00001266
Owen Anderson61794042009-06-17 20:10:08 +00001267 AbstractTypeMap.insert(TI, std::make_pair(Ty, I));
1268 }
1269 }
1270 }
Chris Lattnerb50d1352003-10-05 00:17:43 +00001271 }
Owen Anderson61794042009-06-17 20:10:08 +00001272
1273 return Result;
1274 } else {
1275 typename MapTy::iterator I = Map.find(Lookup);
1276 // Is it in the map?
1277 if (I != Map.end())
1278 return static_cast<ConstantClass *>(I->second);
1279
1280 // If no preexisting value, create one now...
1281 ConstantClass *Result =
1282 ConstantCreator<ConstantClass,TypeClass,ValType>::create(Ty, V);
1283
1284 assert(Result->getType() == Ty && "Type specified is not correct!");
1285 I = Map.insert(I, std::make_pair(MapKey(Ty, V), Result));
1286
1287 if (HasLargeKey) // Remember the reverse mapping if needed.
1288 InverseMap.insert(std::make_pair(Result, I));
1289
1290 // If the type of the constant is abstract, make sure that an entry
1291 // exists for it in the AbstractTypeMap.
1292 if (Ty->isAbstract()) {
1293 typename AbstractTypeMapTy::iterator TI = AbstractTypeMap.find(Ty);
1294
1295 if (TI == AbstractTypeMap.end()) {
1296 // Add ourselves to the ATU list of the type.
1297 cast<DerivedType>(Ty)->addAbstractTypeUser(this);
1298
1299 AbstractTypeMap.insert(TI, std::make_pair(Ty, I));
1300 }
1301 }
1302 return Result;
Chris Lattnerb50d1352003-10-05 00:17:43 +00001303 }
Chris Lattner98fa07b2003-05-23 20:03:32 +00001304 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00001305
Chris Lattner98fa07b2003-05-23 20:03:32 +00001306 void remove(ConstantClass *CP) {
Owen Anderson61794042009-06-17 20:10:08 +00001307 if (llvm_is_multithreaded()) ConstantsLock->writer_acquire();
Jim Laskeyc03caef2006-07-17 17:38:29 +00001308 typename MapTy::iterator I = FindExistingElement(CP);
Chris Lattnerb50d1352003-10-05 00:17:43 +00001309 assert(I != Map.end() && "Constant not found in constant table!");
Chris Lattner3e650af2004-08-04 04:48:01 +00001310 assert(I->second == CP && "Didn't find correct element?");
Chris Lattnerb50d1352003-10-05 00:17:43 +00001311
Chris Lattner935aa922005-10-04 17:48:46 +00001312 if (HasLargeKey) // Remember the reverse mapping if needed.
1313 InverseMap.erase(CP);
1314
Chris Lattnerb50d1352003-10-05 00:17:43 +00001315 // Now that we found the entry, make sure this isn't the entry that
1316 // the AbstractTypeMap points to.
Jim Laskeyc03caef2006-07-17 17:38:29 +00001317 const TypeClass *Ty = static_cast<const TypeClass *>(I->first.first);
Chris Lattnerb50d1352003-10-05 00:17:43 +00001318 if (Ty->isAbstract()) {
1319 assert(AbstractTypeMap.count(Ty) &&
1320 "Abstract type not in AbstractTypeMap?");
Jim Laskeyc03caef2006-07-17 17:38:29 +00001321 typename MapTy::iterator &ATMEntryIt = AbstractTypeMap[Ty];
Chris Lattnerb50d1352003-10-05 00:17:43 +00001322 if (ATMEntryIt == I) {
1323 // Yes, we are removing the representative entry for this type.
1324 // See if there are any other entries of the same type.
Jim Laskeyc03caef2006-07-17 17:38:29 +00001325 typename MapTy::iterator TmpIt = ATMEntryIt;
Misha Brukmanb1c93172005-04-21 23:48:37 +00001326
Chris Lattnerb50d1352003-10-05 00:17:43 +00001327 // First check the entry before this one...
1328 if (TmpIt != Map.begin()) {
1329 --TmpIt;
1330 if (TmpIt->first.first != Ty) // Not the same type, move back...
1331 ++TmpIt;
1332 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00001333
Chris Lattnerb50d1352003-10-05 00:17:43 +00001334 // If we didn't find the same type, try to move forward...
1335 if (TmpIt == ATMEntryIt) {
1336 ++TmpIt;
1337 if (TmpIt == Map.end() || TmpIt->first.first != Ty)
1338 --TmpIt; // No entry afterwards with the same type
1339 }
1340
1341 // If there is another entry in the map of the same abstract type,
1342 // update the AbstractTypeMap entry now.
1343 if (TmpIt != ATMEntryIt) {
1344 ATMEntryIt = TmpIt;
1345 } else {
1346 // Otherwise, we are removing the last instance of this type
1347 // from the table. Remove from the ATM, and from user list.
1348 cast<DerivedType>(Ty)->removeAbstractTypeUser(this);
1349 AbstractTypeMap.erase(Ty);
1350 }
Chris Lattner98fa07b2003-05-23 20:03:32 +00001351 }
Chris Lattnerb50d1352003-10-05 00:17:43 +00001352 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00001353
Chris Lattnerb50d1352003-10-05 00:17:43 +00001354 Map.erase(I);
Owen Anderson61794042009-06-17 20:10:08 +00001355
1356 if (llvm_is_multithreaded()) ConstantsLock->writer_release();
Chris Lattnerb50d1352003-10-05 00:17:43 +00001357 }
1358
Chris Lattner3b793c62005-10-04 21:35:50 +00001359
1360 /// MoveConstantToNewSlot - If we are about to change C to be the element
1361 /// specified by I, update our internal data structures to reflect this
1362 /// fact.
Owen Anderson61794042009-06-17 20:10:08 +00001363 /// NOTE: This function is not locked. It is the responsibility of the
1364 /// caller to enforce proper synchronization if using this method.
Jim Laskeyc03caef2006-07-17 17:38:29 +00001365 void MoveConstantToNewSlot(ConstantClass *C, typename MapTy::iterator I) {
Chris Lattner3b793c62005-10-04 21:35:50 +00001366 // First, remove the old location of the specified constant in the map.
Jim Laskeyc03caef2006-07-17 17:38:29 +00001367 typename MapTy::iterator OldI = FindExistingElement(C);
Chris Lattner3b793c62005-10-04 21:35:50 +00001368 assert(OldI != Map.end() && "Constant not found in constant table!");
1369 assert(OldI->second == C && "Didn't find correct element?");
1370
1371 // If this constant is the representative element for its abstract type,
1372 // update the AbstractTypeMap so that the representative element is I.
1373 if (C->getType()->isAbstract()) {
1374 typename AbstractTypeMapTy::iterator ATI =
1375 AbstractTypeMap.find(C->getType());
1376 assert(ATI != AbstractTypeMap.end() &&
1377 "Abstract type not in AbstractTypeMap?");
1378 if (ATI->second == OldI)
1379 ATI->second = I;
1380 }
1381
1382 // Remove the old entry from the map.
1383 Map.erase(OldI);
1384
1385 // Update the inverse map so that we know that this constant is now
1386 // located at descriptor I.
1387 if (HasLargeKey) {
1388 assert(I->second == C && "Bad inversemap entry!");
1389 InverseMap[C] = I;
1390 }
1391 }
1392
Chris Lattnerb50d1352003-10-05 00:17:43 +00001393 void refineAbstractType(const DerivedType *OldTy, const Type *NewTy) {
Owen Anderson61794042009-06-17 20:10:08 +00001394 if (llvm_is_multithreaded()) ConstantsLock->writer_acquire();
Misha Brukmanb1c93172005-04-21 23:48:37 +00001395 typename AbstractTypeMapTy::iterator I =
Jim Laskeyc03caef2006-07-17 17:38:29 +00001396 AbstractTypeMap.find(cast<Type>(OldTy));
Chris Lattnerb50d1352003-10-05 00:17:43 +00001397
1398 assert(I != AbstractTypeMap.end() &&
1399 "Abstract type not in AbstractTypeMap?");
1400
1401 // Convert a constant at a time until the last one is gone. The last one
1402 // leaving will remove() itself, causing the AbstractTypeMapEntry to be
1403 // eliminated eventually.
1404 do {
1405 ConvertConstantType<ConstantClass,
Jim Laskeyc03caef2006-07-17 17:38:29 +00001406 TypeClass>::convert(
1407 static_cast<ConstantClass *>(I->second->second),
Chris Lattnerb50d1352003-10-05 00:17:43 +00001408 cast<TypeClass>(NewTy));
1409
Jim Laskeyc03caef2006-07-17 17:38:29 +00001410 I = AbstractTypeMap.find(cast<Type>(OldTy));
Chris Lattnerb50d1352003-10-05 00:17:43 +00001411 } while (I != AbstractTypeMap.end());
Owen Anderson61794042009-06-17 20:10:08 +00001412
1413 if (llvm_is_multithreaded()) ConstantsLock->writer_release();
Chris Lattnerb50d1352003-10-05 00:17:43 +00001414 }
1415
1416 // If the type became concrete without being refined to any other existing
1417 // type, we just remove ourselves from the ATU list.
1418 void typeBecameConcrete(const DerivedType *AbsTy) {
Owen Anderson65c5cd72009-06-17 20:34:43 +00001419 if (llvm_is_multithreaded()) {
1420 sys::ScopedWriter Writer(&*ConstantsLock);
1421 AbsTy->removeAbstractTypeUser(this);
1422 } else
1423 AbsTy->removeAbstractTypeUser(this);
Chris Lattnerb50d1352003-10-05 00:17:43 +00001424 }
1425
1426 void dump() const {
Bill Wendling6a462f12006-11-17 08:03:48 +00001427 DOUT << "Constant.cpp: ValueMap\n";
Chris Lattner98fa07b2003-05-23 20:03:32 +00001428 }
1429 };
1430}
1431
Chris Lattnera84df0a22006-09-28 23:36:21 +00001432
Chris Lattner28173502007-02-20 06:11:36 +00001433
Chris Lattner9fba3da2004-02-15 05:53:04 +00001434//---- ConstantAggregateZero::get() implementation...
1435//
1436namespace llvm {
1437 // ConstantAggregateZero does not take extra "value" argument...
1438 template<class ValType>
1439 struct ConstantCreator<ConstantAggregateZero, Type, ValType> {
1440 static ConstantAggregateZero *create(const Type *Ty, const ValType &V){
1441 return new ConstantAggregateZero(Ty);
1442 }
1443 };
1444
1445 template<>
1446 struct ConvertConstantType<ConstantAggregateZero, Type> {
1447 static void convert(ConstantAggregateZero *OldC, const Type *NewTy) {
1448 // Make everyone now use a constant of the new type...
1449 Constant *New = ConstantAggregateZero::get(NewTy);
1450 assert(New != OldC && "Didn't replace constant??");
1451 OldC->uncheckedReplaceAllUsesWith(New);
1452 OldC->destroyConstant(); // This constant is now dead, destroy it.
1453 }
1454 };
1455}
1456
Chris Lattner69edc982006-09-28 00:35:06 +00001457static ManagedStatic<ValueMap<char, Type,
1458 ConstantAggregateZero> > AggZeroConstants;
Chris Lattner9fba3da2004-02-15 05:53:04 +00001459
Chris Lattner3e650af2004-08-04 04:48:01 +00001460static char getValType(ConstantAggregateZero *CPZ) { return 0; }
1461
Dan Gohman8214fc12008-12-08 07:10:54 +00001462ConstantAggregateZero *ConstantAggregateZero::get(const Type *Ty) {
Reid Spencerd84d35b2007-02-15 02:26:10 +00001463 assert((isa<StructType>(Ty) || isa<ArrayType>(Ty) || isa<VectorType>(Ty)) &&
Chris Lattnerbfd0b6d2006-06-10 04:16:23 +00001464 "Cannot create an aggregate zero of non-aggregate type!");
Owen Anderson61794042009-06-17 20:10:08 +00001465
1466 // Implicitly locked.
1467 return AggZeroConstants->getOrCreate(Ty, 0);
Chris Lattner9fba3da2004-02-15 05:53:04 +00001468}
1469
Dan Gohman92b551b2009-03-03 02:55:14 +00001470/// destroyConstant - Remove the constant from the constant table...
1471///
Chris Lattner9fba3da2004-02-15 05:53:04 +00001472void ConstantAggregateZero::destroyConstant() {
Owen Anderson61794042009-06-17 20:10:08 +00001473 // Implicitly locked.
Chris Lattner69edc982006-09-28 00:35:06 +00001474 AggZeroConstants->remove(this);
Chris Lattner9fba3da2004-02-15 05:53:04 +00001475 destroyConstantImpl();
1476}
1477
Chris Lattner3462ae32001-12-03 22:26:30 +00001478//---- ConstantArray::get() implementation...
Chris Lattner49d855c2001-09-07 16:46:31 +00001479//
Chris Lattner189d19f2003-11-21 20:23:48 +00001480namespace llvm {
1481 template<>
1482 struct ConvertConstantType<ConstantArray, ArrayType> {
1483 static void convert(ConstantArray *OldC, const ArrayType *NewTy) {
1484 // Make everyone now use a constant of the new type...
1485 std::vector<Constant*> C;
1486 for (unsigned i = 0, e = OldC->getNumOperands(); i != e; ++i)
1487 C.push_back(cast<Constant>(OldC->getOperand(i)));
1488 Constant *New = ConstantArray::get(NewTy, C);
1489 assert(New != OldC && "Didn't replace constant??");
1490 OldC->uncheckedReplaceAllUsesWith(New);
1491 OldC->destroyConstant(); // This constant is now dead, destroy it.
1492 }
1493 };
1494}
Chris Lattnerb50d1352003-10-05 00:17:43 +00001495
Chris Lattner3e650af2004-08-04 04:48:01 +00001496static std::vector<Constant*> getValType(ConstantArray *CA) {
1497 std::vector<Constant*> Elements;
1498 Elements.reserve(CA->getNumOperands());
1499 for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i)
1500 Elements.push_back(cast<Constant>(CA->getOperand(i)));
1501 return Elements;
1502}
1503
Chris Lattnerb64419a2005-10-03 22:51:37 +00001504typedef ValueMap<std::vector<Constant*>, ArrayType,
Chris Lattner935aa922005-10-04 17:48:46 +00001505 ConstantArray, true /*largekey*/> ArrayConstantsTy;
Chris Lattner69edc982006-09-28 00:35:06 +00001506static ManagedStatic<ArrayConstantsTy> ArrayConstants;
Chris Lattner49d855c2001-09-07 16:46:31 +00001507
Chris Lattner015e8212004-02-15 04:14:47 +00001508Constant *ConstantArray::get(const ArrayType *Ty,
Chris Lattner9fba3da2004-02-15 05:53:04 +00001509 const std::vector<Constant*> &V) {
1510 // If this is an all-zero array, return a ConstantAggregateZero object
1511 if (!V.empty()) {
1512 Constant *C = V[0];
Owen Anderson2d7231d2009-06-17 18:40:29 +00001513 if (!C->isNullValue()) {
Owen Anderson61794042009-06-17 20:10:08 +00001514 // Implicitly locked.
Chris Lattner69edc982006-09-28 00:35:06 +00001515 return ArrayConstants->getOrCreate(Ty, V);
Owen Anderson2d7231d2009-06-17 18:40:29 +00001516 }
Chris Lattner9fba3da2004-02-15 05:53:04 +00001517 for (unsigned i = 1, e = V.size(); i != e; ++i)
Owen Anderson2d7231d2009-06-17 18:40:29 +00001518 if (V[i] != C) {
Owen Anderson61794042009-06-17 20:10:08 +00001519 // Implicitly locked.
Chris Lattner69edc982006-09-28 00:35:06 +00001520 return ArrayConstants->getOrCreate(Ty, V);
Owen Anderson2d7231d2009-06-17 18:40:29 +00001521 }
Chris Lattner9fba3da2004-02-15 05:53:04 +00001522 }
Owen Anderson2d7231d2009-06-17 18:40:29 +00001523
Chris Lattner9fba3da2004-02-15 05:53:04 +00001524 return ConstantAggregateZero::get(Ty);
Chris Lattner49d855c2001-09-07 16:46:31 +00001525}
1526
Dan Gohman92b551b2009-03-03 02:55:14 +00001527/// destroyConstant - Remove the constant from the constant table...
1528///
Chris Lattner98fa07b2003-05-23 20:03:32 +00001529void ConstantArray::destroyConstant() {
Chris Lattner69edc982006-09-28 00:35:06 +00001530 ArrayConstants->remove(this);
Chris Lattner98fa07b2003-05-23 20:03:32 +00001531 destroyConstantImpl();
1532}
1533
Reid Spencer6f614532006-05-30 08:23:18 +00001534/// ConstantArray::get(const string&) - Return an array that is initialized to
1535/// contain the specified string. If length is zero then a null terminator is
1536/// added to the specified string so that it may be used in a natural way.
1537/// Otherwise, the length parameter specifies how much of the string to use
1538/// and it won't be null terminated.
1539///
Reid Spencer82ebaba2006-05-30 18:15:07 +00001540Constant *ConstantArray::get(const std::string &Str, bool AddNull) {
Chris Lattner7f74a562002-01-20 22:54:45 +00001541 std::vector<Constant*> ElementVals;
Reid Spencer82ebaba2006-05-30 18:15:07 +00001542 for (unsigned i = 0; i < Str.length(); ++i)
Reid Spencer8d9336d2006-12-31 05:26:44 +00001543 ElementVals.push_back(ConstantInt::get(Type::Int8Ty, Str[i]));
Chris Lattner8f80fe02001-10-14 23:54:12 +00001544
1545 // Add a null terminator to the string...
Reid Spencer82ebaba2006-05-30 18:15:07 +00001546 if (AddNull) {
Reid Spencer8d9336d2006-12-31 05:26:44 +00001547 ElementVals.push_back(ConstantInt::get(Type::Int8Ty, 0));
Reid Spencer6f614532006-05-30 08:23:18 +00001548 }
Chris Lattner8f80fe02001-10-14 23:54:12 +00001549
Reid Spencer8d9336d2006-12-31 05:26:44 +00001550 ArrayType *ATy = ArrayType::get(Type::Int8Ty, ElementVals.size());
Chris Lattner3462ae32001-12-03 22:26:30 +00001551 return ConstantArray::get(ATy, ElementVals);
Vikram S. Adve34410432001-10-14 23:17:20 +00001552}
1553
Reid Spencer2546b762007-01-26 07:37:34 +00001554/// isString - This method returns true if the array is an array of i8, and
1555/// if the elements of the array are all ConstantInt's.
Chris Lattnere8dfcca2004-01-14 17:06:38 +00001556bool ConstantArray::isString() const {
Reid Spencer2546b762007-01-26 07:37:34 +00001557 // Check the element type for i8...
Reid Spencer8d9336d2006-12-31 05:26:44 +00001558 if (getType()->getElementType() != Type::Int8Ty)
Chris Lattnere8dfcca2004-01-14 17:06:38 +00001559 return false;
1560 // Check the elements to make sure they are all integers, not constant
1561 // expressions.
1562 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
1563 if (!isa<ConstantInt>(getOperand(i)))
1564 return false;
1565 return true;
1566}
1567
Evan Cheng3763c5b2006-10-26 19:15:05 +00001568/// isCString - This method returns true if the array is a string (see
Dan Gohman92b551b2009-03-03 02:55:14 +00001569/// isString) and it ends in a null byte \\0 and does not contains any other
Evan Cheng3763c5b2006-10-26 19:15:05 +00001570/// null bytes except its terminator.
1571bool ConstantArray::isCString() const {
Reid Spencer2546b762007-01-26 07:37:34 +00001572 // Check the element type for i8...
Reid Spencer8d9336d2006-12-31 05:26:44 +00001573 if (getType()->getElementType() != Type::Int8Ty)
Evan Chenge974da62006-10-26 21:48:03 +00001574 return false;
1575 Constant *Zero = Constant::getNullValue(getOperand(0)->getType());
1576 // Last element must be a null.
1577 if (getOperand(getNumOperands()-1) != Zero)
1578 return false;
1579 // Other elements must be non-null integers.
1580 for (unsigned i = 0, e = getNumOperands()-1; i != e; ++i) {
1581 if (!isa<ConstantInt>(getOperand(i)))
Evan Cheng3763c5b2006-10-26 19:15:05 +00001582 return false;
Evan Chenge974da62006-10-26 21:48:03 +00001583 if (getOperand(i) == Zero)
1584 return false;
1585 }
Evan Cheng3763c5b2006-10-26 19:15:05 +00001586 return true;
1587}
1588
1589
Dan Gohman92b551b2009-03-03 02:55:14 +00001590/// getAsString - If the sub-element type of this array is i8
1591/// then this method converts the array to an std::string and returns it.
1592/// Otherwise, it asserts out.
1593///
Chris Lattner81fabb02002-08-26 17:53:56 +00001594std::string ConstantArray::getAsString() const {
Chris Lattnere8dfcca2004-01-14 17:06:38 +00001595 assert(isString() && "Not a string!");
Chris Lattner81fabb02002-08-26 17:53:56 +00001596 std::string Result;
Owen Anderson79c69bc2008-06-24 21:58:29 +00001597 Result.reserve(getNumOperands());
Chris Lattner6077c312003-07-23 15:22:26 +00001598 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Owen Andersonee9c30d2008-06-25 01:05:05 +00001599 Result.push_back((char)cast<ConstantInt>(getOperand(i))->getZExtValue());
Chris Lattner81fabb02002-08-26 17:53:56 +00001600 return Result;
1601}
1602
1603
Chris Lattner3462ae32001-12-03 22:26:30 +00001604//---- ConstantStruct::get() implementation...
Chris Lattner49d855c2001-09-07 16:46:31 +00001605//
Chris Lattnerb50d1352003-10-05 00:17:43 +00001606
Chris Lattner189d19f2003-11-21 20:23:48 +00001607namespace llvm {
1608 template<>
1609 struct ConvertConstantType<ConstantStruct, StructType> {
1610 static void convert(ConstantStruct *OldC, const StructType *NewTy) {
1611 // Make everyone now use a constant of the new type...
1612 std::vector<Constant*> C;
1613 for (unsigned i = 0, e = OldC->getNumOperands(); i != e; ++i)
1614 C.push_back(cast<Constant>(OldC->getOperand(i)));
1615 Constant *New = ConstantStruct::get(NewTy, C);
1616 assert(New != OldC && "Didn't replace constant??");
Misha Brukmanb1c93172005-04-21 23:48:37 +00001617
Chris Lattner189d19f2003-11-21 20:23:48 +00001618 OldC->uncheckedReplaceAllUsesWith(New);
1619 OldC->destroyConstant(); // This constant is now dead, destroy it.
1620 }
1621 };
1622}
Chris Lattnerb50d1352003-10-05 00:17:43 +00001623
Chris Lattner8760ec72005-10-04 01:17:50 +00001624typedef ValueMap<std::vector<Constant*>, StructType,
Chris Lattner935aa922005-10-04 17:48:46 +00001625 ConstantStruct, true /*largekey*/> StructConstantsTy;
Chris Lattner69edc982006-09-28 00:35:06 +00001626static ManagedStatic<StructConstantsTy> StructConstants;
Chris Lattner49d855c2001-09-07 16:46:31 +00001627
Chris Lattner3e650af2004-08-04 04:48:01 +00001628static std::vector<Constant*> getValType(ConstantStruct *CS) {
1629 std::vector<Constant*> Elements;
1630 Elements.reserve(CS->getNumOperands());
1631 for (unsigned i = 0, e = CS->getNumOperands(); i != e; ++i)
1632 Elements.push_back(cast<Constant>(CS->getOperand(i)));
1633 return Elements;
1634}
1635
Chris Lattner015e8212004-02-15 04:14:47 +00001636Constant *ConstantStruct::get(const StructType *Ty,
1637 const std::vector<Constant*> &V) {
Chris Lattner9fba3da2004-02-15 05:53:04 +00001638 // Create a ConstantAggregateZero value if all elements are zeros...
1639 for (unsigned i = 0, e = V.size(); i != e; ++i)
Owen Anderson61794042009-06-17 20:10:08 +00001640 if (!V[i]->isNullValue())
1641 // Implicitly locked.
1642 return StructConstants->getOrCreate(Ty, V);
Chris Lattner9fba3da2004-02-15 05:53:04 +00001643
1644 return ConstantAggregateZero::get(Ty);
Chris Lattner49d855c2001-09-07 16:46:31 +00001645}
Chris Lattner883ad0b2001-10-03 15:39:36 +00001646
Andrew Lenharthdcb3c972006-12-08 18:06:16 +00001647Constant *ConstantStruct::get(const std::vector<Constant*> &V, bool packed) {
Chris Lattnerd6108ca2004-07-12 20:35:11 +00001648 std::vector<const Type*> StructEls;
1649 StructEls.reserve(V.size());
1650 for (unsigned i = 0, e = V.size(); i != e; ++i)
1651 StructEls.push_back(V[i]->getType());
Andrew Lenharthdcb3c972006-12-08 18:06:16 +00001652 return get(StructType::get(StructEls, packed), V);
Chris Lattnerd6108ca2004-07-12 20:35:11 +00001653}
1654
Chris Lattnerd7a73302001-10-13 06:57:33 +00001655// destroyConstant - Remove the constant from the constant table...
Chris Lattner883ad0b2001-10-03 15:39:36 +00001656//
Chris Lattner3462ae32001-12-03 22:26:30 +00001657void ConstantStruct::destroyConstant() {
Chris Lattner69edc982006-09-28 00:35:06 +00001658 StructConstants->remove(this);
Chris Lattnerd7a73302001-10-13 06:57:33 +00001659 destroyConstantImpl();
1660}
Chris Lattner883ad0b2001-10-03 15:39:36 +00001661
Reid Spencerd84d35b2007-02-15 02:26:10 +00001662//---- ConstantVector::get() implementation...
Brian Gaeke02209042004-08-20 06:00:58 +00001663//
1664namespace llvm {
1665 template<>
Reid Spencerd84d35b2007-02-15 02:26:10 +00001666 struct ConvertConstantType<ConstantVector, VectorType> {
1667 static void convert(ConstantVector *OldC, const VectorType *NewTy) {
Brian Gaeke02209042004-08-20 06:00:58 +00001668 // Make everyone now use a constant of the new type...
1669 std::vector<Constant*> C;
1670 for (unsigned i = 0, e = OldC->getNumOperands(); i != e; ++i)
1671 C.push_back(cast<Constant>(OldC->getOperand(i)));
Reid Spencerd84d35b2007-02-15 02:26:10 +00001672 Constant *New = ConstantVector::get(NewTy, C);
Brian Gaeke02209042004-08-20 06:00:58 +00001673 assert(New != OldC && "Didn't replace constant??");
1674 OldC->uncheckedReplaceAllUsesWith(New);
1675 OldC->destroyConstant(); // This constant is now dead, destroy it.
1676 }
1677 };
1678}
1679
Reid Spencerd84d35b2007-02-15 02:26:10 +00001680static std::vector<Constant*> getValType(ConstantVector *CP) {
Brian Gaeke02209042004-08-20 06:00:58 +00001681 std::vector<Constant*> Elements;
1682 Elements.reserve(CP->getNumOperands());
1683 for (unsigned i = 0, e = CP->getNumOperands(); i != e; ++i)
1684 Elements.push_back(CP->getOperand(i));
1685 return Elements;
1686}
1687
Reid Spencerd84d35b2007-02-15 02:26:10 +00001688static ManagedStatic<ValueMap<std::vector<Constant*>, VectorType,
Reid Spencer09575ba2007-02-15 03:39:18 +00001689 ConstantVector> > VectorConstants;
Brian Gaeke02209042004-08-20 06:00:58 +00001690
Reid Spencerd84d35b2007-02-15 02:26:10 +00001691Constant *ConstantVector::get(const VectorType *Ty,
Brian Gaeke02209042004-08-20 06:00:58 +00001692 const std::vector<Constant*> &V) {
Chris Lattnerd977c072008-07-10 00:44:03 +00001693 assert(!V.empty() && "Vectors can't be empty");
1694 // If this is an all-undef or alll-zero vector, return a
1695 // ConstantAggregateZero or UndefValue.
1696 Constant *C = V[0];
1697 bool isZero = C->isNullValue();
1698 bool isUndef = isa<UndefValue>(C);
1699
1700 if (isZero || isUndef) {
Brian Gaeke02209042004-08-20 06:00:58 +00001701 for (unsigned i = 1, e = V.size(); i != e; ++i)
Chris Lattnerd977c072008-07-10 00:44:03 +00001702 if (V[i] != C) {
1703 isZero = isUndef = false;
1704 break;
1705 }
Brian Gaeke02209042004-08-20 06:00:58 +00001706 }
Chris Lattnerd977c072008-07-10 00:44:03 +00001707
1708 if (isZero)
1709 return ConstantAggregateZero::get(Ty);
1710 if (isUndef)
1711 return UndefValue::get(Ty);
Owen Anderson61794042009-06-17 20:10:08 +00001712
1713 // Implicitly locked.
1714 return VectorConstants->getOrCreate(Ty, V);
Brian Gaeke02209042004-08-20 06:00:58 +00001715}
1716
Reid Spencerd84d35b2007-02-15 02:26:10 +00001717Constant *ConstantVector::get(const std::vector<Constant*> &V) {
Brian Gaeke02209042004-08-20 06:00:58 +00001718 assert(!V.empty() && "Cannot infer type if V is empty");
Reid Spencerd84d35b2007-02-15 02:26:10 +00001719 return get(VectorType::get(V.front()->getType(),V.size()), V);
Brian Gaeke02209042004-08-20 06:00:58 +00001720}
1721
1722// destroyConstant - Remove the constant from the constant table...
1723//
Reid Spencerd84d35b2007-02-15 02:26:10 +00001724void ConstantVector::destroyConstant() {
Owen Anderson65c5cd72009-06-17 20:34:43 +00001725
1726 if (llvm_is_multithreaded()) {
1727 sys::ScopedWriter Write(&*ConstantsLock);
1728 VectorConstants->remove(this);
1729 } else
1730 VectorConstants->remove(this);
Brian Gaeke02209042004-08-20 06:00:58 +00001731 destroyConstantImpl();
1732}
1733
Dan Gohman30978072007-05-24 14:36:04 +00001734/// This function will return true iff every element in this vector constant
Jim Laskeyf0478822007-01-12 22:39:14 +00001735/// is set to all ones.
1736/// @returns true iff this constant's emements are all set to all ones.
1737/// @brief Determine if the value is all ones.
Reid Spencerd84d35b2007-02-15 02:26:10 +00001738bool ConstantVector::isAllOnesValue() const {
Jim Laskeyf0478822007-01-12 22:39:14 +00001739 // Check out first element.
1740 const Constant *Elt = getOperand(0);
1741 const ConstantInt *CI = dyn_cast<ConstantInt>(Elt);
1742 if (!CI || !CI->isAllOnesValue()) return false;
1743 // Then make sure all remaining elements point to the same value.
1744 for (unsigned I = 1, E = getNumOperands(); I < E; ++I) {
1745 if (getOperand(I) != Elt) return false;
1746 }
1747 return true;
1748}
1749
Dan Gohman07159202007-10-17 17:51:30 +00001750/// getSplatValue - If this is a splat constant, where all of the
1751/// elements have the same value, return that value. Otherwise return null.
1752Constant *ConstantVector::getSplatValue() {
1753 // Check out first element.
1754 Constant *Elt = getOperand(0);
1755 // Then make sure all remaining elements point to the same value.
1756 for (unsigned I = 1, E = getNumOperands(); I < E; ++I)
1757 if (getOperand(I) != Elt) return 0;
1758 return Elt;
1759}
1760
Chris Lattner3462ae32001-12-03 22:26:30 +00001761//---- ConstantPointerNull::get() implementation...
Chris Lattnerd7a73302001-10-13 06:57:33 +00001762//
Chris Lattner98fa07b2003-05-23 20:03:32 +00001763
Chris Lattner189d19f2003-11-21 20:23:48 +00001764namespace llvm {
1765 // ConstantPointerNull does not take extra "value" argument...
1766 template<class ValType>
1767 struct ConstantCreator<ConstantPointerNull, PointerType, ValType> {
1768 static ConstantPointerNull *create(const PointerType *Ty, const ValType &V){
1769 return new ConstantPointerNull(Ty);
1770 }
1771 };
Chris Lattner98fa07b2003-05-23 20:03:32 +00001772
Chris Lattner189d19f2003-11-21 20:23:48 +00001773 template<>
1774 struct ConvertConstantType<ConstantPointerNull, PointerType> {
1775 static void convert(ConstantPointerNull *OldC, const PointerType *NewTy) {
1776 // Make everyone now use a constant of the new type...
1777 Constant *New = ConstantPointerNull::get(NewTy);
1778 assert(New != OldC && "Didn't replace constant??");
1779 OldC->uncheckedReplaceAllUsesWith(New);
1780 OldC->destroyConstant(); // This constant is now dead, destroy it.
1781 }
1782 };
1783}
Chris Lattnerb50d1352003-10-05 00:17:43 +00001784
Chris Lattner69edc982006-09-28 00:35:06 +00001785static ManagedStatic<ValueMap<char, PointerType,
1786 ConstantPointerNull> > NullPtrConstants;
Chris Lattnerd7a73302001-10-13 06:57:33 +00001787
Chris Lattner3e650af2004-08-04 04:48:01 +00001788static char getValType(ConstantPointerNull *) {
1789 return 0;
1790}
1791
1792
Chris Lattner3462ae32001-12-03 22:26:30 +00001793ConstantPointerNull *ConstantPointerNull::get(const PointerType *Ty) {
Owen Anderson61794042009-06-17 20:10:08 +00001794 // Implicitly locked.
1795 return NullPtrConstants->getOrCreate(Ty, 0);
Chris Lattner883ad0b2001-10-03 15:39:36 +00001796}
1797
Chris Lattner0c6e0b92002-08-18 00:40:04 +00001798// destroyConstant - Remove the constant from the constant table...
1799//
1800void ConstantPointerNull::destroyConstant() {
Owen Anderson65c5cd72009-06-17 20:34:43 +00001801 if (llvm_is_multithreaded()) {
1802 sys::ScopedWriter Writer(&*ConstantsLock);
1803 NullPtrConstants->remove(this);
1804 } else
1805 NullPtrConstants->remove(this);
Chris Lattner0c6e0b92002-08-18 00:40:04 +00001806 destroyConstantImpl();
1807}
1808
1809
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001810//---- UndefValue::get() implementation...
1811//
1812
1813namespace llvm {
1814 // UndefValue does not take extra "value" argument...
1815 template<class ValType>
1816 struct ConstantCreator<UndefValue, Type, ValType> {
1817 static UndefValue *create(const Type *Ty, const ValType &V) {
1818 return new UndefValue(Ty);
1819 }
1820 };
1821
1822 template<>
1823 struct ConvertConstantType<UndefValue, Type> {
1824 static void convert(UndefValue *OldC, const Type *NewTy) {
1825 // Make everyone now use a constant of the new type.
1826 Constant *New = UndefValue::get(NewTy);
1827 assert(New != OldC && "Didn't replace constant??");
1828 OldC->uncheckedReplaceAllUsesWith(New);
1829 OldC->destroyConstant(); // This constant is now dead, destroy it.
1830 }
1831 };
1832}
1833
Chris Lattner69edc982006-09-28 00:35:06 +00001834static ManagedStatic<ValueMap<char, Type, UndefValue> > UndefValueConstants;
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001835
1836static char getValType(UndefValue *) {
1837 return 0;
1838}
1839
1840
1841UndefValue *UndefValue::get(const Type *Ty) {
Owen Anderson61794042009-06-17 20:10:08 +00001842 // Implicitly locked.
1843 return UndefValueConstants->getOrCreate(Ty, 0);
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001844}
1845
1846// destroyConstant - Remove the constant from the constant table.
1847//
1848void UndefValue::destroyConstant() {
Owen Anderson61794042009-06-17 20:10:08 +00001849 // Implicitly locked.
Chris Lattner69edc982006-09-28 00:35:06 +00001850 UndefValueConstants->remove(this);
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001851 destroyConstantImpl();
1852}
1853
Nick Lewycky49f89192009-04-04 07:22:01 +00001854//---- MDString::get() implementation
1855//
1856
1857MDString::MDString(const char *begin, const char *end)
Nick Lewyckyadbc2842009-05-30 05:06:04 +00001858 : Constant(Type::MetadataTy, MDStringVal, 0, 0),
Nick Lewycky49f89192009-04-04 07:22:01 +00001859 StrBegin(begin), StrEnd(end) {}
1860
1861static ManagedStatic<StringMap<MDString*> > MDStringCache;
1862
1863MDString *MDString::get(const char *StrBegin, const char *StrEnd) {
Owen Anderson65c5cd72009-06-17 20:34:43 +00001864 if (llvm_is_multithreaded()) {
1865 sys::ScopedWriter Writer(&*ConstantsLock);
1866 StringMapEntry<MDString *> &Entry = MDStringCache->GetOrCreateValue(
1867 StrBegin, StrEnd);
1868 MDString *&S = Entry.getValue();
1869 if (!S) S = new MDString(Entry.getKeyData(),
1870 Entry.getKeyData() + Entry.getKeyLength());
1871
1872 return S;
1873 } else {
1874 StringMapEntry<MDString *> &Entry = MDStringCache->GetOrCreateValue(
1875 StrBegin, StrEnd);
1876 MDString *&S = Entry.getValue();
1877 if (!S) S = new MDString(Entry.getKeyData(),
1878 Entry.getKeyData() + Entry.getKeyLength());
1879
1880 return S;
1881 }
Nick Lewycky49f89192009-04-04 07:22:01 +00001882}
1883
1884void MDString::destroyConstant() {
Owen Anderson65c5cd72009-06-17 20:34:43 +00001885 if (llvm_is_multithreaded()) {
1886 sys::ScopedWriter Writer(&*ConstantsLock);
1887 MDStringCache->erase(MDStringCache->find(StrBegin, StrEnd));
1888 } else
1889 MDStringCache->erase(MDStringCache->find(StrBegin, StrEnd));
1890
Nick Lewycky49f89192009-04-04 07:22:01 +00001891 destroyConstantImpl();
1892}
1893
1894//---- MDNode::get() implementation
1895//
1896
1897static ManagedStatic<FoldingSet<MDNode> > MDNodeSet;
1898
Nick Lewyckyb8f9b7a2009-05-10 20:57:05 +00001899MDNode::MDNode(Value*const* Vals, unsigned NumVals)
Nick Lewyckyadbc2842009-05-30 05:06:04 +00001900 : Constant(Type::MetadataTy, MDNodeVal, 0, 0) {
Nick Lewyckyb8f9b7a2009-05-10 20:57:05 +00001901 for (unsigned i = 0; i != NumVals; ++i)
1902 Node.push_back(ElementVH(Vals[i], this));
Nick Lewycky49f89192009-04-04 07:22:01 +00001903}
1904
Nick Lewyckyb8f9b7a2009-05-10 20:57:05 +00001905void MDNode::Profile(FoldingSetNodeID &ID) const {
1906 for (const_elem_iterator I = elem_begin(), E = elem_end(); I != E; ++I)
Nick Lewycky49f89192009-04-04 07:22:01 +00001907 ID.AddPointer(*I);
1908}
1909
Nick Lewyckyb8f9b7a2009-05-10 20:57:05 +00001910MDNode *MDNode::get(Value*const* Vals, unsigned NumVals) {
Nick Lewycky49f89192009-04-04 07:22:01 +00001911 FoldingSetNodeID ID;
1912 for (unsigned i = 0; i != NumVals; ++i)
1913 ID.AddPointer(Vals[i]);
1914
Owen Anderson2d7231d2009-06-17 18:40:29 +00001915 if (llvm_is_multithreaded()) {
1916 ConstantsLock->reader_acquire();
1917 void *InsertPoint;
1918 MDNode *N = MDNodeSet->FindNodeOrInsertPos(ID, InsertPoint);
1919 ConstantsLock->reader_release();
1920
1921 if (!N) {
Owen Anderson65c5cd72009-06-17 20:34:43 +00001922 sys::ScopedWriter Writer(&*ConstantsLock);
Owen Anderson2d7231d2009-06-17 18:40:29 +00001923 N = MDNodeSet->FindNodeOrInsertPos(ID, InsertPoint);
1924 if (!N) {
1925 // InsertPoint will have been set by the FindNodeOrInsertPos call.
1926 MDNode *N = new(0) MDNode(Vals, NumVals);
1927 MDNodeSet->InsertNode(N, InsertPoint);
1928 }
Owen Anderson2d7231d2009-06-17 18:40:29 +00001929 }
1930
Nick Lewycky49f89192009-04-04 07:22:01 +00001931 return N;
Owen Anderson2d7231d2009-06-17 18:40:29 +00001932 } else {
1933 void *InsertPoint;
1934 if (MDNode *N = MDNodeSet->FindNodeOrInsertPos(ID, InsertPoint))
1935 return N;
Nick Lewycky49f89192009-04-04 07:22:01 +00001936
Owen Anderson2d7231d2009-06-17 18:40:29 +00001937 // InsertPoint will have been set by the FindNodeOrInsertPos call.
1938 MDNode *N = new(0) MDNode(Vals, NumVals);
1939 MDNodeSet->InsertNode(N, InsertPoint);
1940 return N;
1941 }
Nick Lewycky49f89192009-04-04 07:22:01 +00001942}
1943
1944void MDNode::destroyConstant() {
Owen Anderson65c5cd72009-06-17 20:34:43 +00001945 if (llvm_is_multithreaded()) {
1946 sys::ScopedWriter Writer(&*ConstantsLock);
1947 MDNodeSet->RemoveNode(this);
1948 } else
1949 MDNodeSet->RemoveNode(this);
1950
Nick Lewycky49f89192009-04-04 07:22:01 +00001951 destroyConstantImpl();
1952}
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001953
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001954//---- ConstantExpr::get() implementations...
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001955//
Reid Spencer8d9336d2006-12-31 05:26:44 +00001956
Dan Gohmand78c4002008-05-13 00:00:25 +00001957namespace {
1958
Reid Spenceree3c9912006-12-04 05:19:50 +00001959struct ExprMapKeyType {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001960 typedef SmallVector<unsigned, 4> IndexList;
1961
1962 ExprMapKeyType(unsigned opc,
1963 const std::vector<Constant*> &ops,
1964 unsigned short pred = 0,
1965 const IndexList &inds = IndexList())
1966 : opcode(opc), predicate(pred), operands(ops), indices(inds) {}
Reid Spencerdba6aa42006-12-04 18:38:05 +00001967 uint16_t opcode;
1968 uint16_t predicate;
Reid Spenceree3c9912006-12-04 05:19:50 +00001969 std::vector<Constant*> operands;
Dan Gohman1ecaf452008-05-31 00:58:22 +00001970 IndexList indices;
Reid Spenceree3c9912006-12-04 05:19:50 +00001971 bool operator==(const ExprMapKeyType& that) const {
1972 return this->opcode == that.opcode &&
1973 this->predicate == that.predicate &&
Bill Wendling97f7de82008-10-26 00:19:56 +00001974 this->operands == that.operands &&
Dan Gohman1ecaf452008-05-31 00:58:22 +00001975 this->indices == that.indices;
Reid Spenceree3c9912006-12-04 05:19:50 +00001976 }
1977 bool operator<(const ExprMapKeyType & that) const {
1978 return this->opcode < that.opcode ||
1979 (this->opcode == that.opcode && this->predicate < that.predicate) ||
1980 (this->opcode == that.opcode && this->predicate == that.predicate &&
Dan Gohman1ecaf452008-05-31 00:58:22 +00001981 this->operands < that.operands) ||
1982 (this->opcode == that.opcode && this->predicate == that.predicate &&
1983 this->operands == that.operands && this->indices < that.indices);
Reid Spenceree3c9912006-12-04 05:19:50 +00001984 }
1985
1986 bool operator!=(const ExprMapKeyType& that) const {
1987 return !(*this == that);
1988 }
1989};
Chris Lattner98fa07b2003-05-23 20:03:32 +00001990
Dan Gohmand78c4002008-05-13 00:00:25 +00001991}
1992
Chris Lattner189d19f2003-11-21 20:23:48 +00001993namespace llvm {
1994 template<>
1995 struct ConstantCreator<ConstantExpr, Type, ExprMapKeyType> {
Reid Spencer10fbf0e2006-12-03 05:48:19 +00001996 static ConstantExpr *create(const Type *Ty, const ExprMapKeyType &V,
1997 unsigned short pred = 0) {
Reid Spenceree3c9912006-12-04 05:19:50 +00001998 if (Instruction::isCast(V.opcode))
1999 return new UnaryConstantExpr(V.opcode, V.operands[0], Ty);
2000 if ((V.opcode >= Instruction::BinaryOpsBegin &&
Reid Spencer2341c222007-02-02 02:16:23 +00002001 V.opcode < Instruction::BinaryOpsEnd))
Reid Spenceree3c9912006-12-04 05:19:50 +00002002 return new BinaryConstantExpr(V.opcode, V.operands[0], V.operands[1]);
2003 if (V.opcode == Instruction::Select)
2004 return new SelectConstantExpr(V.operands[0], V.operands[1],
2005 V.operands[2]);
2006 if (V.opcode == Instruction::ExtractElement)
2007 return new ExtractElementConstantExpr(V.operands[0], V.operands[1]);
2008 if (V.opcode == Instruction::InsertElement)
2009 return new InsertElementConstantExpr(V.operands[0], V.operands[1],
2010 V.operands[2]);
2011 if (V.opcode == Instruction::ShuffleVector)
2012 return new ShuffleVectorConstantExpr(V.operands[0], V.operands[1],
2013 V.operands[2]);
Dan Gohman1ecaf452008-05-31 00:58:22 +00002014 if (V.opcode == Instruction::InsertValue)
2015 return new InsertValueConstantExpr(V.operands[0], V.operands[1],
2016 V.indices, Ty);
2017 if (V.opcode == Instruction::ExtractValue)
2018 return new ExtractValueConstantExpr(V.operands[0], V.indices, Ty);
Reid Spenceree3c9912006-12-04 05:19:50 +00002019 if (V.opcode == Instruction::GetElementPtr) {
2020 std::vector<Constant*> IdxList(V.operands.begin()+1, V.operands.end());
Gabor Greife9ecc682008-04-06 20:25:17 +00002021 return GetElementPtrConstantExpr::Create(V.operands[0], IdxList, Ty);
Reid Spenceree3c9912006-12-04 05:19:50 +00002022 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00002023
Reid Spenceree3c9912006-12-04 05:19:50 +00002024 // The compare instructions are weird. We have to encode the predicate
2025 // value and it is combined with the instruction opcode by multiplying
2026 // the opcode by one hundred. We must decode this to get the predicate.
2027 if (V.opcode == Instruction::ICmp)
Nate Begemand2195702008-05-12 19:01:56 +00002028 return new CompareConstantExpr(Ty, Instruction::ICmp, V.predicate,
Reid Spenceree3c9912006-12-04 05:19:50 +00002029 V.operands[0], V.operands[1]);
2030 if (V.opcode == Instruction::FCmp)
Nate Begemand2195702008-05-12 19:01:56 +00002031 return new CompareConstantExpr(Ty, Instruction::FCmp, V.predicate,
2032 V.operands[0], V.operands[1]);
2033 if (V.opcode == Instruction::VICmp)
2034 return new CompareConstantExpr(Ty, Instruction::VICmp, V.predicate,
2035 V.operands[0], V.operands[1]);
2036 if (V.opcode == Instruction::VFCmp)
2037 return new CompareConstantExpr(Ty, Instruction::VFCmp, V.predicate,
Reid Spenceree3c9912006-12-04 05:19:50 +00002038 V.operands[0], V.operands[1]);
2039 assert(0 && "Invalid ConstantExpr!");
Jeff Cohen9f469632006-12-15 21:47:01 +00002040 return 0;
Chris Lattnerb50d1352003-10-05 00:17:43 +00002041 }
Chris Lattner189d19f2003-11-21 20:23:48 +00002042 };
Chris Lattnerb50d1352003-10-05 00:17:43 +00002043
Chris Lattner189d19f2003-11-21 20:23:48 +00002044 template<>
2045 struct ConvertConstantType<ConstantExpr, Type> {
2046 static void convert(ConstantExpr *OldC, const Type *NewTy) {
2047 Constant *New;
2048 switch (OldC->getOpcode()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002049 case Instruction::Trunc:
2050 case Instruction::ZExt:
2051 case Instruction::SExt:
2052 case Instruction::FPTrunc:
2053 case Instruction::FPExt:
2054 case Instruction::UIToFP:
2055 case Instruction::SIToFP:
2056 case Instruction::FPToUI:
2057 case Instruction::FPToSI:
2058 case Instruction::PtrToInt:
2059 case Instruction::IntToPtr:
2060 case Instruction::BitCast:
Reid Spencerbb65ebf2006-12-12 23:36:14 +00002061 New = ConstantExpr::getCast(OldC->getOpcode(), OldC->getOperand(0),
2062 NewTy);
Chris Lattner189d19f2003-11-21 20:23:48 +00002063 break;
Chris Lattner6e415c02004-03-12 05:54:04 +00002064 case Instruction::Select:
2065 New = ConstantExpr::getSelectTy(NewTy, OldC->getOperand(0),
2066 OldC->getOperand(1),
2067 OldC->getOperand(2));
2068 break;
Chris Lattner189d19f2003-11-21 20:23:48 +00002069 default:
2070 assert(OldC->getOpcode() >= Instruction::BinaryOpsBegin &&
Reid Spencer7eb55b32006-11-02 01:53:59 +00002071 OldC->getOpcode() < Instruction::BinaryOpsEnd);
Chris Lattner189d19f2003-11-21 20:23:48 +00002072 New = ConstantExpr::getTy(NewTy, OldC->getOpcode(), OldC->getOperand(0),
2073 OldC->getOperand(1));
2074 break;
2075 case Instruction::GetElementPtr:
Misha Brukmanb1c93172005-04-21 23:48:37 +00002076 // Make everyone now use a constant of the new type...
Chris Lattner13128ab2004-10-11 22:52:25 +00002077 std::vector<Value*> Idx(OldC->op_begin()+1, OldC->op_end());
Chris Lattner302116a2007-01-31 04:40:28 +00002078 New = ConstantExpr::getGetElementPtrTy(NewTy, OldC->getOperand(0),
2079 &Idx[0], Idx.size());
Chris Lattner189d19f2003-11-21 20:23:48 +00002080 break;
2081 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00002082
Chris Lattner189d19f2003-11-21 20:23:48 +00002083 assert(New != OldC && "Didn't replace constant??");
2084 OldC->uncheckedReplaceAllUsesWith(New);
2085 OldC->destroyConstant(); // This constant is now dead, destroy it.
2086 }
2087 };
2088} // end namespace llvm
Chris Lattnerb50d1352003-10-05 00:17:43 +00002089
2090
Chris Lattner3e650af2004-08-04 04:48:01 +00002091static ExprMapKeyType getValType(ConstantExpr *CE) {
2092 std::vector<Constant*> Operands;
2093 Operands.reserve(CE->getNumOperands());
2094 for (unsigned i = 0, e = CE->getNumOperands(); i != e; ++i)
2095 Operands.push_back(cast<Constant>(CE->getOperand(i)));
Reid Spenceree3c9912006-12-04 05:19:50 +00002096 return ExprMapKeyType(CE->getOpcode(), Operands,
Dan Gohman1ecaf452008-05-31 00:58:22 +00002097 CE->isCompare() ? CE->getPredicate() : 0,
2098 CE->hasIndices() ?
2099 CE->getIndices() : SmallVector<unsigned, 4>());
Chris Lattner3e650af2004-08-04 04:48:01 +00002100}
2101
Chris Lattner69edc982006-09-28 00:35:06 +00002102static ManagedStatic<ValueMap<ExprMapKeyType, Type,
2103 ConstantExpr> > ExprConstants;
Vikram S. Adve4c485332002-07-15 18:19:33 +00002104
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002105/// This is a utility function to handle folding of casts and lookup of the
Duncan Sands7d6c8ae2008-03-30 19:38:55 +00002106/// cast in the ExprConstants map. It is used by the various get* methods below.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002107static inline Constant *getFoldedCast(
2108 Instruction::CastOps opc, Constant *C, const Type *Ty) {
Chris Lattner815ae2b2003-10-07 22:19:19 +00002109 assert(Ty->isFirstClassType() && "Cannot cast to an aggregate type!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002110 // Fold a few common cases
2111 if (Constant *FC = ConstantFoldCastInstruction(opc, C, Ty))
2112 return FC;
Chris Lattneracdbe712003-04-17 19:24:48 +00002113
Vikram S. Adve4c485332002-07-15 18:19:33 +00002114 // Look up the constant in the table first to ensure uniqueness
Chris Lattner2b383d2e2003-05-13 21:37:02 +00002115 std::vector<Constant*> argVec(1, C);
Reid Spenceree3c9912006-12-04 05:19:50 +00002116 ExprMapKeyType Key(opc, argVec);
Owen Anderson2d7231d2009-06-17 18:40:29 +00002117
Owen Anderson61794042009-06-17 20:10:08 +00002118 // Implicitly locked.
2119 return ExprConstants->getOrCreate(Ty, Key);
Vikram S. Adve4e537b22002-07-14 23:13:17 +00002120}
Reid Spencerf37dc652006-12-05 19:14:13 +00002121
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002122Constant *ConstantExpr::getCast(unsigned oc, Constant *C, const Type *Ty) {
2123 Instruction::CastOps opc = Instruction::CastOps(oc);
2124 assert(Instruction::isCast(opc) && "opcode out of range");
2125 assert(C && Ty && "Null arguments to getCast");
2126 assert(Ty->isFirstClassType() && "Cannot cast to an aggregate type!");
2127
2128 switch (opc) {
2129 default:
2130 assert(0 && "Invalid cast opcode");
2131 break;
2132 case Instruction::Trunc: return getTrunc(C, Ty);
Reid Spencerbb65ebf2006-12-12 23:36:14 +00002133 case Instruction::ZExt: return getZExt(C, Ty);
2134 case Instruction::SExt: return getSExt(C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002135 case Instruction::FPTrunc: return getFPTrunc(C, Ty);
2136 case Instruction::FPExt: return getFPExtend(C, Ty);
2137 case Instruction::UIToFP: return getUIToFP(C, Ty);
2138 case Instruction::SIToFP: return getSIToFP(C, Ty);
2139 case Instruction::FPToUI: return getFPToUI(C, Ty);
2140 case Instruction::FPToSI: return getFPToSI(C, Ty);
2141 case Instruction::PtrToInt: return getPtrToInt(C, Ty);
2142 case Instruction::IntToPtr: return getIntToPtr(C, Ty);
2143 case Instruction::BitCast: return getBitCast(C, Ty);
Chris Lattner1ece6f82005-01-01 15:59:57 +00002144 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002145 return 0;
Reid Spencerf37dc652006-12-05 19:14:13 +00002146}
2147
Reid Spencer5c140882006-12-04 20:17:56 +00002148Constant *ConstantExpr::getZExtOrBitCast(Constant *C, const Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002149 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Reid Spencer5c140882006-12-04 20:17:56 +00002150 return getCast(Instruction::BitCast, C, Ty);
2151 return getCast(Instruction::ZExt, C, Ty);
2152}
2153
2154Constant *ConstantExpr::getSExtOrBitCast(Constant *C, const Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002155 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Reid Spencer5c140882006-12-04 20:17:56 +00002156 return getCast(Instruction::BitCast, C, Ty);
2157 return getCast(Instruction::SExt, C, Ty);
2158}
2159
2160Constant *ConstantExpr::getTruncOrBitCast(Constant *C, const Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002161 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Reid Spencer5c140882006-12-04 20:17:56 +00002162 return getCast(Instruction::BitCast, C, Ty);
2163 return getCast(Instruction::Trunc, C, Ty);
2164}
2165
Reid Spencerbc245a02006-12-05 03:25:26 +00002166Constant *ConstantExpr::getPointerCast(Constant *S, const Type *Ty) {
2167 assert(isa<PointerType>(S->getType()) && "Invalid cast");
Chris Lattner03c49532007-01-15 02:27:26 +00002168 assert((Ty->isInteger() || isa<PointerType>(Ty)) && "Invalid cast");
Reid Spencerbc245a02006-12-05 03:25:26 +00002169
Chris Lattner03c49532007-01-15 02:27:26 +00002170 if (Ty->isInteger())
Reid Spencerbc245a02006-12-05 03:25:26 +00002171 return getCast(Instruction::PtrToInt, S, Ty);
2172 return getCast(Instruction::BitCast, S, Ty);
2173}
2174
Reid Spencer56521c42006-12-12 00:51:07 +00002175Constant *ConstantExpr::getIntegerCast(Constant *C, const Type *Ty,
2176 bool isSigned) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002177 assert(C->getType()->isIntOrIntVector() &&
2178 Ty->isIntOrIntVector() && "Invalid cast");
2179 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2180 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer56521c42006-12-12 00:51:07 +00002181 Instruction::CastOps opcode =
2182 (SrcBits == DstBits ? Instruction::BitCast :
2183 (SrcBits > DstBits ? Instruction::Trunc :
2184 (isSigned ? Instruction::SExt : Instruction::ZExt)));
2185 return getCast(opcode, C, Ty);
2186}
2187
2188Constant *ConstantExpr::getFPCast(Constant *C, const Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002189 assert(C->getType()->isFPOrFPVector() && Ty->isFPOrFPVector() &&
Reid Spencer56521c42006-12-12 00:51:07 +00002190 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002191 unsigned SrcBits = C->getType()->getScalarSizeInBits();
2192 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencerca104e82006-12-12 05:38:50 +00002193 if (SrcBits == DstBits)
2194 return C; // Avoid a useless cast
Reid Spencer56521c42006-12-12 00:51:07 +00002195 Instruction::CastOps opcode =
Reid Spencerca104e82006-12-12 05:38:50 +00002196 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt);
Reid Spencer56521c42006-12-12 00:51:07 +00002197 return getCast(opcode, C, Ty);
2198}
2199
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002200Constant *ConstantExpr::getTrunc(Constant *C, const Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002201#ifndef NDEBUG
2202 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
2203 bool toVec = Ty->getTypeID() == Type::VectorTyID;
2204#endif
2205 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
2206 assert(C->getType()->isIntOrIntVector() && "Trunc operand must be integer");
2207 assert(Ty->isIntOrIntVector() && "Trunc produces only integral");
2208 assert(C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002209 "SrcTy must be larger than DestTy for Trunc!");
2210
2211 return getFoldedCast(Instruction::Trunc, C, Ty);
2212}
2213
Reid Spencerbb65ebf2006-12-12 23:36:14 +00002214Constant *ConstantExpr::getSExt(Constant *C, const Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002215#ifndef NDEBUG
2216 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
2217 bool toVec = Ty->getTypeID() == Type::VectorTyID;
2218#endif
2219 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
2220 assert(C->getType()->isIntOrIntVector() && "SExt operand must be integral");
2221 assert(Ty->isIntOrIntVector() && "SExt produces only integer");
2222 assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002223 "SrcTy must be smaller than DestTy for SExt!");
2224
2225 return getFoldedCast(Instruction::SExt, C, Ty);
Chris Lattnerdd284742004-04-04 23:20:30 +00002226}
2227
Reid Spencerbb65ebf2006-12-12 23:36:14 +00002228Constant *ConstantExpr::getZExt(Constant *C, const Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002229#ifndef NDEBUG
2230 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
2231 bool toVec = Ty->getTypeID() == Type::VectorTyID;
2232#endif
2233 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
2234 assert(C->getType()->isIntOrIntVector() && "ZEXt operand must be integral");
2235 assert(Ty->isIntOrIntVector() && "ZExt produces only integer");
2236 assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002237 "SrcTy must be smaller than DestTy for ZExt!");
2238
2239 return getFoldedCast(Instruction::ZExt, C, Ty);
2240}
2241
2242Constant *ConstantExpr::getFPTrunc(Constant *C, const Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002243#ifndef NDEBUG
2244 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
2245 bool toVec = Ty->getTypeID() == Type::VectorTyID;
2246#endif
2247 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
2248 assert(C->getType()->isFPOrFPVector() && Ty->isFPOrFPVector() &&
2249 C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002250 "This is an illegal floating point truncation!");
2251 return getFoldedCast(Instruction::FPTrunc, C, Ty);
2252}
2253
2254Constant *ConstantExpr::getFPExtend(Constant *C, const Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00002255#ifndef NDEBUG
2256 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
2257 bool toVec = Ty->getTypeID() == Type::VectorTyID;
2258#endif
2259 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
2260 assert(C->getType()->isFPOrFPVector() && Ty->isFPOrFPVector() &&
2261 C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002262 "This is an illegal floating point extension!");
2263 return getFoldedCast(Instruction::FPExt, C, Ty);
2264}
2265
2266Constant *ConstantExpr::getUIToFP(Constant *C, const Type *Ty) {
Devang Pateld26344d2008-11-03 23:20:04 +00002267#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00002268 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
2269 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00002270#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00002271 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
2272 assert(C->getType()->isIntOrIntVector() && Ty->isFPOrFPVector() &&
2273 "This is an illegal uint to floating point cast!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002274 return getFoldedCast(Instruction::UIToFP, C, Ty);
2275}
2276
2277Constant *ConstantExpr::getSIToFP(Constant *C, const Type *Ty) {
Devang Pateld26344d2008-11-03 23:20:04 +00002278#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00002279 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
2280 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00002281#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00002282 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
2283 assert(C->getType()->isIntOrIntVector() && Ty->isFPOrFPVector() &&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002284 "This is an illegal sint to floating point cast!");
2285 return getFoldedCast(Instruction::SIToFP, C, Ty);
2286}
2287
2288Constant *ConstantExpr::getFPToUI(Constant *C, const Type *Ty) {
Devang Pateld26344d2008-11-03 23:20:04 +00002289#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00002290 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
2291 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00002292#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00002293 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
2294 assert(C->getType()->isFPOrFPVector() && Ty->isIntOrIntVector() &&
2295 "This is an illegal floating point to uint cast!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002296 return getFoldedCast(Instruction::FPToUI, C, Ty);
2297}
2298
2299Constant *ConstantExpr::getFPToSI(Constant *C, const Type *Ty) {
Devang Pateld26344d2008-11-03 23:20:04 +00002300#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00002301 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
2302 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00002303#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00002304 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
2305 assert(C->getType()->isFPOrFPVector() && Ty->isIntOrIntVector() &&
2306 "This is an illegal floating point to sint cast!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002307 return getFoldedCast(Instruction::FPToSI, C, Ty);
2308}
2309
2310Constant *ConstantExpr::getPtrToInt(Constant *C, const Type *DstTy) {
2311 assert(isa<PointerType>(C->getType()) && "PtrToInt source must be pointer");
Chris Lattner03c49532007-01-15 02:27:26 +00002312 assert(DstTy->isInteger() && "PtrToInt destination must be integral");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002313 return getFoldedCast(Instruction::PtrToInt, C, DstTy);
2314}
2315
2316Constant *ConstantExpr::getIntToPtr(Constant *C, const Type *DstTy) {
Chris Lattner03c49532007-01-15 02:27:26 +00002317 assert(C->getType()->isInteger() && "IntToPtr source must be integral");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002318 assert(isa<PointerType>(DstTy) && "IntToPtr destination must be a pointer");
2319 return getFoldedCast(Instruction::IntToPtr, C, DstTy);
2320}
2321
2322Constant *ConstantExpr::getBitCast(Constant *C, const Type *DstTy) {
2323 // BitCast implies a no-op cast of type only. No bits change. However, you
2324 // can't cast pointers to anything but pointers.
Devang Pateld26344d2008-11-03 23:20:04 +00002325#ifndef NDEBUG
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002326 const Type *SrcTy = C->getType();
2327 assert((isa<PointerType>(SrcTy) == isa<PointerType>(DstTy)) &&
Reid Spencer5c140882006-12-04 20:17:56 +00002328 "BitCast cannot cast pointer to non-pointer and vice versa");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002329
2330 // Now we know we're not dealing with mismatched pointer casts (ptr->nonptr
2331 // or nonptr->ptr). For all the other types, the cast is okay if source and
2332 // destination bit widths are identical.
2333 unsigned SrcBitSize = SrcTy->getPrimitiveSizeInBits();
2334 unsigned DstBitSize = DstTy->getPrimitiveSizeInBits();
Devang Pateld26344d2008-11-03 23:20:04 +00002335#endif
Chris Lattnere4086012009-03-08 04:06:26 +00002336 assert(SrcBitSize == DstBitSize && "BitCast requires types of same width");
Chris Lattnercbeda872009-03-21 06:55:54 +00002337
2338 // It is common to ask for a bitcast of a value to its own type, handle this
2339 // speedily.
2340 if (C->getType() == DstTy) return C;
2341
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002342 return getFoldedCast(Instruction::BitCast, C, DstTy);
Chris Lattnerdd284742004-04-04 23:20:30 +00002343}
2344
Duncan Sandsd334aca2009-05-21 15:52:21 +00002345Constant *ConstantExpr::getAlignOf(const Type *Ty) {
2346 // alignof is implemented as: (i64) gep ({i8,Ty}*)null, 0, 1
2347 const Type *AligningTy = StructType::get(Type::Int8Ty, Ty, NULL);
2348 Constant *NullPtr = getNullValue(AligningTy->getPointerTo());
2349 Constant *Zero = ConstantInt::get(Type::Int32Ty, 0);
2350 Constant *One = ConstantInt::get(Type::Int32Ty, 1);
2351 Constant *Indices[2] = { Zero, One };
2352 Constant *GEP = getGetElementPtr(NullPtr, Indices, 2);
2353 return getCast(Instruction::PtrToInt, GEP, Type::Int32Ty);
2354}
2355
Alkis Evlogimenosda5de052004-10-24 01:41:10 +00002356Constant *ConstantExpr::getSizeOf(const Type *Ty) {
Gordon Henriksen7ce31762007-10-06 14:29:36 +00002357 // sizeof is implemented as: (i64) gep (Ty*)null, 1
Chris Lattnerb5d70302007-02-19 20:01:23 +00002358 Constant *GEPIdx = ConstantInt::get(Type::Int32Ty, 1);
2359 Constant *GEP =
Christopher Lambedf07882007-12-17 01:12:55 +00002360 getGetElementPtr(getNullValue(PointerType::getUnqual(Ty)), &GEPIdx, 1);
Chris Lattnerb5d70302007-02-19 20:01:23 +00002361 return getCast(Instruction::PtrToInt, GEP, Type::Int64Ty);
Alkis Evlogimenos9160d5f2005-03-19 11:40:31 +00002362}
2363
Chris Lattnerb50d1352003-10-05 00:17:43 +00002364Constant *ConstantExpr::getTy(const Type *ReqTy, unsigned Opcode,
Reid Spencera009d0d2006-12-04 21:35:24 +00002365 Constant *C1, Constant *C2) {
Chris Lattner38a9bcd2003-05-21 17:49:25 +00002366 // Check the operands for consistency first
Reid Spencer7eb55b32006-11-02 01:53:59 +00002367 assert(Opcode >= Instruction::BinaryOpsBegin &&
2368 Opcode < Instruction::BinaryOpsEnd &&
Chris Lattner38a9bcd2003-05-21 17:49:25 +00002369 "Invalid opcode in binary constant expression");
2370 assert(C1->getType() == C2->getType() &&
2371 "Operand types in binary constant expression should match");
Chris Lattnerb50d1352003-10-05 00:17:43 +00002372
Reid Spencer542964f2007-01-11 18:21:29 +00002373 if (ReqTy == C1->getType() || ReqTy == Type::Int1Ty)
Chris Lattnerb50d1352003-10-05 00:17:43 +00002374 if (Constant *FC = ConstantFoldBinaryInstruction(Opcode, C1, C2))
2375 return FC; // Fold a few common cases...
Chris Lattneracdbe712003-04-17 19:24:48 +00002376
Chris Lattner2b383d2e2003-05-13 21:37:02 +00002377 std::vector<Constant*> argVec(1, C1); argVec.push_back(C2);
Reid Spencera009d0d2006-12-04 21:35:24 +00002378 ExprMapKeyType Key(Opcode, argVec);
Owen Anderson61794042009-06-17 20:10:08 +00002379
2380 // Implicitly locked.
2381 return ExprConstants->getOrCreate(ReqTy, Key);
Vikram S. Adve4e537b22002-07-14 23:13:17 +00002382}
2383
Reid Spencer266e42b2006-12-23 06:05:41 +00002384Constant *ConstantExpr::getCompareTy(unsigned short predicate,
Nate Begeman098cc6f2008-07-25 17:56:27 +00002385 Constant *C1, Constant *C2) {
2386 bool isVectorType = C1->getType()->getTypeID() == Type::VectorTyID;
Reid Spencer266e42b2006-12-23 06:05:41 +00002387 switch (predicate) {
2388 default: assert(0 && "Invalid CmpInst predicate");
Nate Begemanc96e2e42008-07-25 17:35:37 +00002389 case CmpInst::FCMP_FALSE: case CmpInst::FCMP_OEQ: case CmpInst::FCMP_OGT:
2390 case CmpInst::FCMP_OGE: case CmpInst::FCMP_OLT: case CmpInst::FCMP_OLE:
2391 case CmpInst::FCMP_ONE: case CmpInst::FCMP_ORD: case CmpInst::FCMP_UNO:
2392 case CmpInst::FCMP_UEQ: case CmpInst::FCMP_UGT: case CmpInst::FCMP_UGE:
2393 case CmpInst::FCMP_ULT: case CmpInst::FCMP_ULE: case CmpInst::FCMP_UNE:
2394 case CmpInst::FCMP_TRUE:
Nate Begeman098cc6f2008-07-25 17:56:27 +00002395 return isVectorType ? getVFCmp(predicate, C1, C2)
2396 : getFCmp(predicate, C1, C2);
Nate Begemanc96e2e42008-07-25 17:35:37 +00002397 case CmpInst::ICMP_EQ: case CmpInst::ICMP_NE: case CmpInst::ICMP_UGT:
2398 case CmpInst::ICMP_UGE: case CmpInst::ICMP_ULT: case CmpInst::ICMP_ULE:
2399 case CmpInst::ICMP_SGT: case CmpInst::ICMP_SGE: case CmpInst::ICMP_SLT:
2400 case CmpInst::ICMP_SLE:
Nate Begeman098cc6f2008-07-25 17:56:27 +00002401 return isVectorType ? getVICmp(predicate, C1, C2)
2402 : getICmp(predicate, C1, C2);
Reid Spencer266e42b2006-12-23 06:05:41 +00002403 }
Reid Spencera009d0d2006-12-04 21:35:24 +00002404}
2405
2406Constant *ConstantExpr::get(unsigned Opcode, Constant *C1, Constant *C2) {
Dan Gohmana5b96452009-06-04 22:49:04 +00002407 // API compatibility: Adjust integer opcodes to floating-point opcodes.
2408 if (C1->getType()->isFPOrFPVector()) {
2409 if (Opcode == Instruction::Add) Opcode = Instruction::FAdd;
2410 else if (Opcode == Instruction::Sub) Opcode = Instruction::FSub;
2411 else if (Opcode == Instruction::Mul) Opcode = Instruction::FMul;
2412 }
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00002413#ifndef NDEBUG
2414 switch (Opcode) {
Dan Gohmana5b96452009-06-04 22:49:04 +00002415 case Instruction::Add:
Reid Spencer7eb55b32006-11-02 01:53:59 +00002416 case Instruction::Sub:
Dan Gohmana5b96452009-06-04 22:49:04 +00002417 case Instruction::Mul:
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00002418 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Dan Gohmana5b96452009-06-04 22:49:04 +00002419 assert(C1->getType()->isIntOrIntVector() &&
2420 "Tried to create an integer operation on a non-integer type!");
2421 break;
2422 case Instruction::FAdd:
2423 case Instruction::FSub:
2424 case Instruction::FMul:
2425 assert(C1->getType() == C2->getType() && "Op types should be identical!");
2426 assert(C1->getType()->isFPOrFPVector() &&
2427 "Tried to create a floating-point operation on a "
2428 "non-floating-point type!");
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00002429 break;
Reid Spencer7e80b0b2006-10-26 06:15:43 +00002430 case Instruction::UDiv:
2431 case Instruction::SDiv:
2432 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Dan Gohman7889f2b2009-06-15 22:25:12 +00002433 assert(C1->getType()->isIntOrIntVector() &&
Reid Spencer7e80b0b2006-10-26 06:15:43 +00002434 "Tried to create an arithmetic operation on a non-arithmetic type!");
2435 break;
2436 case Instruction::FDiv:
2437 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Dan Gohman7889f2b2009-06-15 22:25:12 +00002438 assert(C1->getType()->isFPOrFPVector() &&
2439 "Tried to create an arithmetic operation on a non-arithmetic type!");
Reid Spencer7e80b0b2006-10-26 06:15:43 +00002440 break;
Reid Spencer7eb55b32006-11-02 01:53:59 +00002441 case Instruction::URem:
2442 case Instruction::SRem:
2443 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Dan Gohman7889f2b2009-06-15 22:25:12 +00002444 assert(C1->getType()->isIntOrIntVector() &&
Reid Spencer7eb55b32006-11-02 01:53:59 +00002445 "Tried to create an arithmetic operation on a non-arithmetic type!");
2446 break;
2447 case Instruction::FRem:
2448 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Dan Gohman7889f2b2009-06-15 22:25:12 +00002449 assert(C1->getType()->isFPOrFPVector() &&
2450 "Tried to create an arithmetic operation on a non-arithmetic type!");
Reid Spencer7eb55b32006-11-02 01:53:59 +00002451 break;
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00002452 case Instruction::And:
2453 case Instruction::Or:
2454 case Instruction::Xor:
2455 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Dan Gohman7889f2b2009-06-15 22:25:12 +00002456 assert(C1->getType()->isIntOrIntVector() &&
Misha Brukman3852f652005-01-27 06:46:38 +00002457 "Tried to create a logical operation on a non-integral type!");
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00002458 break;
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00002459 case Instruction::Shl:
Reid Spencerfdff9382006-11-08 06:47:33 +00002460 case Instruction::LShr:
2461 case Instruction::AShr:
Reid Spencer2341c222007-02-02 02:16:23 +00002462 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Dan Gohman79975d52009-03-14 17:09:17 +00002463 assert(C1->getType()->isIntOrIntVector() &&
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00002464 "Tried to create a shift operation on a non-integer type!");
2465 break;
2466 default:
2467 break;
2468 }
2469#endif
2470
Reid Spencera009d0d2006-12-04 21:35:24 +00002471 return getTy(C1->getType(), Opcode, C1, C2);
2472}
2473
Reid Spencer266e42b2006-12-23 06:05:41 +00002474Constant *ConstantExpr::getCompare(unsigned short pred,
Reid Spencera009d0d2006-12-04 21:35:24 +00002475 Constant *C1, Constant *C2) {
2476 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Reid Spencer266e42b2006-12-23 06:05:41 +00002477 return getCompareTy(pred, C1, C2);
Chris Lattner29ca2c62004-08-04 18:50:09 +00002478}
2479
Chris Lattner6e415c02004-03-12 05:54:04 +00002480Constant *ConstantExpr::getSelectTy(const Type *ReqTy, Constant *C,
2481 Constant *V1, Constant *V2) {
Chris Lattner41632132008-12-29 00:16:12 +00002482 assert(!SelectInst::areInvalidOperands(C, V1, V2)&&"Invalid select operands");
Chris Lattner6e415c02004-03-12 05:54:04 +00002483
2484 if (ReqTy == V1->getType())
2485 if (Constant *SC = ConstantFoldSelectInstruction(C, V1, V2))
2486 return SC; // Fold common cases
2487
2488 std::vector<Constant*> argVec(3, C);
2489 argVec[1] = V1;
2490 argVec[2] = V2;
Reid Spenceree3c9912006-12-04 05:19:50 +00002491 ExprMapKeyType Key(Instruction::Select, argVec);
Owen Anderson61794042009-06-17 20:10:08 +00002492
2493 // Implicitly locked.
2494 return ExprConstants->getOrCreate(ReqTy, Key);
Chris Lattner6e415c02004-03-12 05:54:04 +00002495}
2496
Chris Lattnerb50d1352003-10-05 00:17:43 +00002497Constant *ConstantExpr::getGetElementPtrTy(const Type *ReqTy, Constant *C,
Chris Lattner302116a2007-01-31 04:40:28 +00002498 Value* const *Idxs,
2499 unsigned NumIdx) {
Dan Gohman12fce772008-05-15 19:50:34 +00002500 assert(GetElementPtrInst::getIndexedType(C->getType(), Idxs,
2501 Idxs+NumIdx) ==
2502 cast<PointerType>(ReqTy)->getElementType() &&
2503 "GEP indices invalid!");
Chris Lattner04b60fe2004-02-16 20:46:13 +00002504
Chris Lattner302116a2007-01-31 04:40:28 +00002505 if (Constant *FC = ConstantFoldGetElementPtr(C, (Constant**)Idxs, NumIdx))
Chris Lattneracdbe712003-04-17 19:24:48 +00002506 return FC; // Fold a few common cases...
Chris Lattner04b60fe2004-02-16 20:46:13 +00002507
Chris Lattnerb50d1352003-10-05 00:17:43 +00002508 assert(isa<PointerType>(C->getType()) &&
Chris Lattner98fa07b2003-05-23 20:03:32 +00002509 "Non-pointer type for constant GetElementPtr expression");
Vikram S. Adve4c485332002-07-15 18:19:33 +00002510 // Look up the constant in the table first to ensure uniqueness
Chris Lattner13128ab2004-10-11 22:52:25 +00002511 std::vector<Constant*> ArgVec;
Chris Lattner302116a2007-01-31 04:40:28 +00002512 ArgVec.reserve(NumIdx+1);
Chris Lattner13128ab2004-10-11 22:52:25 +00002513 ArgVec.push_back(C);
Chris Lattner302116a2007-01-31 04:40:28 +00002514 for (unsigned i = 0; i != NumIdx; ++i)
2515 ArgVec.push_back(cast<Constant>(Idxs[i]));
2516 const ExprMapKeyType Key(Instruction::GetElementPtr, ArgVec);
Owen Anderson61794042009-06-17 20:10:08 +00002517
2518 // Implicitly locked.
2519 return ExprConstants->getOrCreate(ReqTy, Key);
Vikram S. Adve4c485332002-07-15 18:19:33 +00002520}
2521
Chris Lattner302116a2007-01-31 04:40:28 +00002522Constant *ConstantExpr::getGetElementPtr(Constant *C, Value* const *Idxs,
2523 unsigned NumIdx) {
Chris Lattnerb50d1352003-10-05 00:17:43 +00002524 // Get the result type of the getelementptr!
Chris Lattner302116a2007-01-31 04:40:28 +00002525 const Type *Ty =
Dan Gohman12fce772008-05-15 19:50:34 +00002526 GetElementPtrInst::getIndexedType(C->getType(), Idxs, Idxs+NumIdx);
Chris Lattnerb50d1352003-10-05 00:17:43 +00002527 assert(Ty && "GEP indices invalid!");
Christopher Lamb54dd24c2007-12-11 08:59:05 +00002528 unsigned As = cast<PointerType>(C->getType())->getAddressSpace();
2529 return getGetElementPtrTy(PointerType::get(Ty, As), C, Idxs, NumIdx);
Chris Lattner13128ab2004-10-11 22:52:25 +00002530}
2531
Chris Lattner302116a2007-01-31 04:40:28 +00002532Constant *ConstantExpr::getGetElementPtr(Constant *C, Constant* const *Idxs,
2533 unsigned NumIdx) {
2534 return getGetElementPtr(C, (Value* const *)Idxs, NumIdx);
Chris Lattnerb50d1352003-10-05 00:17:43 +00002535}
2536
Chris Lattner302116a2007-01-31 04:40:28 +00002537
Reid Spenceree3c9912006-12-04 05:19:50 +00002538Constant *
2539ConstantExpr::getICmp(unsigned short pred, Constant* LHS, Constant* RHS) {
2540 assert(LHS->getType() == RHS->getType());
2541 assert(pred >= ICmpInst::FIRST_ICMP_PREDICATE &&
2542 pred <= ICmpInst::LAST_ICMP_PREDICATE && "Invalid ICmp Predicate");
2543
Reid Spencer266e42b2006-12-23 06:05:41 +00002544 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
Reid Spenceree3c9912006-12-04 05:19:50 +00002545 return FC; // Fold a few common cases...
2546
2547 // Look up the constant in the table first to ensure uniqueness
2548 std::vector<Constant*> ArgVec;
2549 ArgVec.push_back(LHS);
2550 ArgVec.push_back(RHS);
Reid Spencerb1537492006-12-24 18:42:29 +00002551 // Get the key type with both the opcode and predicate
Reid Spenceree3c9912006-12-04 05:19:50 +00002552 const ExprMapKeyType Key(Instruction::ICmp, ArgVec, pred);
Owen Anderson61794042009-06-17 20:10:08 +00002553
2554 // Implicitly locked.
2555 return ExprConstants->getOrCreate(Type::Int1Ty, Key);
Reid Spenceree3c9912006-12-04 05:19:50 +00002556}
2557
2558Constant *
2559ConstantExpr::getFCmp(unsigned short pred, Constant* LHS, Constant* RHS) {
2560 assert(LHS->getType() == RHS->getType());
2561 assert(pred <= FCmpInst::LAST_FCMP_PREDICATE && "Invalid FCmp Predicate");
2562
Reid Spencer266e42b2006-12-23 06:05:41 +00002563 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
Reid Spenceree3c9912006-12-04 05:19:50 +00002564 return FC; // Fold a few common cases...
2565
2566 // Look up the constant in the table first to ensure uniqueness
2567 std::vector<Constant*> ArgVec;
2568 ArgVec.push_back(LHS);
2569 ArgVec.push_back(RHS);
Reid Spencerb1537492006-12-24 18:42:29 +00002570 // Get the key type with both the opcode and predicate
Reid Spenceree3c9912006-12-04 05:19:50 +00002571 const ExprMapKeyType Key(Instruction::FCmp, ArgVec, pred);
Owen Anderson61794042009-06-17 20:10:08 +00002572
2573 // Implicitly locked.
2574 return ExprConstants->getOrCreate(Type::Int1Ty, Key);
Reid Spenceree3c9912006-12-04 05:19:50 +00002575}
2576
Nate Begemand2195702008-05-12 19:01:56 +00002577Constant *
2578ConstantExpr::getVICmp(unsigned short pred, Constant* LHS, Constant* RHS) {
Chris Lattnereab49262008-07-14 05:17:31 +00002579 assert(isa<VectorType>(LHS->getType()) && LHS->getType() == RHS->getType() &&
Nate Begemand2195702008-05-12 19:01:56 +00002580 "Tried to create vicmp operation on non-vector type!");
Nate Begemand2195702008-05-12 19:01:56 +00002581 assert(pred >= ICmpInst::FIRST_ICMP_PREDICATE &&
2582 pred <= ICmpInst::LAST_ICMP_PREDICATE && "Invalid VICmp Predicate");
2583
Nate Begemanac7f3d92008-05-12 19:23:22 +00002584 const VectorType *VTy = cast<VectorType>(LHS->getType());
Nate Begemand2195702008-05-12 19:01:56 +00002585 const Type *EltTy = VTy->getElementType();
2586 unsigned NumElts = VTy->getNumElements();
2587
Chris Lattnereab49262008-07-14 05:17:31 +00002588 // See if we can fold the element-wise comparison of the LHS and RHS.
2589 SmallVector<Constant *, 16> LHSElts, RHSElts;
2590 LHS->getVectorElements(LHSElts);
2591 RHS->getVectorElements(RHSElts);
2592
2593 if (!LHSElts.empty() && !RHSElts.empty()) {
2594 SmallVector<Constant *, 16> Elts;
2595 for (unsigned i = 0; i != NumElts; ++i) {
2596 Constant *FC = ConstantFoldCompareInstruction(pred, LHSElts[i],
2597 RHSElts[i]);
2598 if (ConstantInt *FCI = dyn_cast_or_null<ConstantInt>(FC)) {
2599 if (FCI->getZExtValue())
2600 Elts.push_back(ConstantInt::getAllOnesValue(EltTy));
2601 else
2602 Elts.push_back(ConstantInt::get(EltTy, 0ULL));
2603 } else if (FC && isa<UndefValue>(FC)) {
2604 Elts.push_back(UndefValue::get(EltTy));
2605 } else {
2606 break;
2607 }
Nate Begemand2195702008-05-12 19:01:56 +00002608 }
Chris Lattnereab49262008-07-14 05:17:31 +00002609 if (Elts.size() == NumElts)
2610 return ConstantVector::get(&Elts[0], Elts.size());
Nate Begemand2195702008-05-12 19:01:56 +00002611 }
Nate Begemand2195702008-05-12 19:01:56 +00002612
2613 // Look up the constant in the table first to ensure uniqueness
2614 std::vector<Constant*> ArgVec;
2615 ArgVec.push_back(LHS);
2616 ArgVec.push_back(RHS);
2617 // Get the key type with both the opcode and predicate
2618 const ExprMapKeyType Key(Instruction::VICmp, ArgVec, pred);
Owen Anderson61794042009-06-17 20:10:08 +00002619
2620 // Implicitly locked.
2621 return ExprConstants->getOrCreate(LHS->getType(), Key);
Nate Begemand2195702008-05-12 19:01:56 +00002622}
2623
2624Constant *
2625ConstantExpr::getVFCmp(unsigned short pred, Constant* LHS, Constant* RHS) {
2626 assert(isa<VectorType>(LHS->getType()) &&
2627 "Tried to create vfcmp operation on non-vector type!");
2628 assert(LHS->getType() == RHS->getType());
2629 assert(pred <= FCmpInst::LAST_FCMP_PREDICATE && "Invalid VFCmp Predicate");
2630
2631 const VectorType *VTy = cast<VectorType>(LHS->getType());
2632 unsigned NumElts = VTy->getNumElements();
2633 const Type *EltTy = VTy->getElementType();
2634 const Type *REltTy = IntegerType::get(EltTy->getPrimitiveSizeInBits());
2635 const Type *ResultTy = VectorType::get(REltTy, NumElts);
2636
Chris Lattnereab49262008-07-14 05:17:31 +00002637 // See if we can fold the element-wise comparison of the LHS and RHS.
2638 SmallVector<Constant *, 16> LHSElts, RHSElts;
2639 LHS->getVectorElements(LHSElts);
2640 RHS->getVectorElements(RHSElts);
2641
2642 if (!LHSElts.empty() && !RHSElts.empty()) {
2643 SmallVector<Constant *, 16> Elts;
2644 for (unsigned i = 0; i != NumElts; ++i) {
2645 Constant *FC = ConstantFoldCompareInstruction(pred, LHSElts[i],
2646 RHSElts[i]);
2647 if (ConstantInt *FCI = dyn_cast_or_null<ConstantInt>(FC)) {
2648 if (FCI->getZExtValue())
2649 Elts.push_back(ConstantInt::getAllOnesValue(REltTy));
2650 else
2651 Elts.push_back(ConstantInt::get(REltTy, 0ULL));
2652 } else if (FC && isa<UndefValue>(FC)) {
2653 Elts.push_back(UndefValue::get(REltTy));
2654 } else {
2655 break;
2656 }
Nate Begemand2195702008-05-12 19:01:56 +00002657 }
Chris Lattnereab49262008-07-14 05:17:31 +00002658 if (Elts.size() == NumElts)
2659 return ConstantVector::get(&Elts[0], Elts.size());
Nate Begemand2195702008-05-12 19:01:56 +00002660 }
Nate Begemand2195702008-05-12 19:01:56 +00002661
2662 // Look up the constant in the table first to ensure uniqueness
2663 std::vector<Constant*> ArgVec;
2664 ArgVec.push_back(LHS);
2665 ArgVec.push_back(RHS);
2666 // Get the key type with both the opcode and predicate
2667 const ExprMapKeyType Key(Instruction::VFCmp, ArgVec, pred);
Owen Anderson61794042009-06-17 20:10:08 +00002668
2669 // Implicitly locked.
2670 return ExprConstants->getOrCreate(ResultTy, Key);
Nate Begemand2195702008-05-12 19:01:56 +00002671}
2672
Robert Bocchino23004482006-01-10 19:05:34 +00002673Constant *ConstantExpr::getExtractElementTy(const Type *ReqTy, Constant *Val,
2674 Constant *Idx) {
Robert Bocchinode7f1c92006-01-10 20:03:46 +00002675 if (Constant *FC = ConstantFoldExtractElementInstruction(Val, Idx))
2676 return FC; // Fold a few common cases...
Robert Bocchino23004482006-01-10 19:05:34 +00002677 // Look up the constant in the table first to ensure uniqueness
2678 std::vector<Constant*> ArgVec(1, Val);
2679 ArgVec.push_back(Idx);
Reid Spenceree3c9912006-12-04 05:19:50 +00002680 const ExprMapKeyType Key(Instruction::ExtractElement,ArgVec);
Owen Anderson61794042009-06-17 20:10:08 +00002681
2682 // Implicitly locked.
2683 return ExprConstants->getOrCreate(ReqTy, Key);
Robert Bocchino23004482006-01-10 19:05:34 +00002684}
2685
2686Constant *ConstantExpr::getExtractElement(Constant *Val, Constant *Idx) {
Reid Spencerd84d35b2007-02-15 02:26:10 +00002687 assert(isa<VectorType>(Val->getType()) &&
Reid Spencer09575ba2007-02-15 03:39:18 +00002688 "Tried to create extractelement operation on non-vector type!");
Reid Spencer8d9336d2006-12-31 05:26:44 +00002689 assert(Idx->getType() == Type::Int32Ty &&
Reid Spencer2546b762007-01-26 07:37:34 +00002690 "Extractelement index must be i32 type!");
Reid Spencerd84d35b2007-02-15 02:26:10 +00002691 return getExtractElementTy(cast<VectorType>(Val->getType())->getElementType(),
Robert Bocchino23004482006-01-10 19:05:34 +00002692 Val, Idx);
2693}
Chris Lattnerb50d1352003-10-05 00:17:43 +00002694
Robert Bocchinoca27f032006-01-17 20:07:22 +00002695Constant *ConstantExpr::getInsertElementTy(const Type *ReqTy, Constant *Val,
2696 Constant *Elt, Constant *Idx) {
2697 if (Constant *FC = ConstantFoldInsertElementInstruction(Val, Elt, Idx))
2698 return FC; // Fold a few common cases...
2699 // Look up the constant in the table first to ensure uniqueness
2700 std::vector<Constant*> ArgVec(1, Val);
2701 ArgVec.push_back(Elt);
2702 ArgVec.push_back(Idx);
Reid Spenceree3c9912006-12-04 05:19:50 +00002703 const ExprMapKeyType Key(Instruction::InsertElement,ArgVec);
Owen Anderson61794042009-06-17 20:10:08 +00002704
2705 // Implicitly locked.
2706 return ExprConstants->getOrCreate(ReqTy, Key);
Robert Bocchinoca27f032006-01-17 20:07:22 +00002707}
2708
2709Constant *ConstantExpr::getInsertElement(Constant *Val, Constant *Elt,
2710 Constant *Idx) {
Reid Spencerd84d35b2007-02-15 02:26:10 +00002711 assert(isa<VectorType>(Val->getType()) &&
Reid Spencer09575ba2007-02-15 03:39:18 +00002712 "Tried to create insertelement operation on non-vector type!");
Reid Spencerd84d35b2007-02-15 02:26:10 +00002713 assert(Elt->getType() == cast<VectorType>(Val->getType())->getElementType()
Robert Bocchinoca27f032006-01-17 20:07:22 +00002714 && "Insertelement types must match!");
Reid Spencer8d9336d2006-12-31 05:26:44 +00002715 assert(Idx->getType() == Type::Int32Ty &&
Reid Spencer2546b762007-01-26 07:37:34 +00002716 "Insertelement index must be i32 type!");
Gordon Henriksenb52d1ed2008-08-30 15:41:51 +00002717 return getInsertElementTy(Val->getType(), Val, Elt, Idx);
Robert Bocchinoca27f032006-01-17 20:07:22 +00002718}
2719
Chris Lattnerbbe0a422006-04-08 01:18:18 +00002720Constant *ConstantExpr::getShuffleVectorTy(const Type *ReqTy, Constant *V1,
2721 Constant *V2, Constant *Mask) {
2722 if (Constant *FC = ConstantFoldShuffleVectorInstruction(V1, V2, Mask))
2723 return FC; // Fold a few common cases...
2724 // Look up the constant in the table first to ensure uniqueness
2725 std::vector<Constant*> ArgVec(1, V1);
2726 ArgVec.push_back(V2);
2727 ArgVec.push_back(Mask);
Reid Spenceree3c9912006-12-04 05:19:50 +00002728 const ExprMapKeyType Key(Instruction::ShuffleVector,ArgVec);
Owen Anderson61794042009-06-17 20:10:08 +00002729
2730 // Implicitly locked.
2731 return ExprConstants->getOrCreate(ReqTy, Key);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00002732}
2733
2734Constant *ConstantExpr::getShuffleVector(Constant *V1, Constant *V2,
2735 Constant *Mask) {
2736 assert(ShuffleVectorInst::isValidOperands(V1, V2, Mask) &&
2737 "Invalid shuffle vector constant expr operands!");
Nate Begeman94aa38d2009-02-12 21:28:33 +00002738
2739 unsigned NElts = cast<VectorType>(Mask->getType())->getNumElements();
2740 const Type *EltTy = cast<VectorType>(V1->getType())->getElementType();
2741 const Type *ShufTy = VectorType::get(EltTy, NElts);
2742 return getShuffleVectorTy(ShufTy, V1, V2, Mask);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00002743}
2744
Dan Gohman12fce772008-05-15 19:50:34 +00002745Constant *ConstantExpr::getInsertValueTy(const Type *ReqTy, Constant *Agg,
2746 Constant *Val,
Dan Gohman1ecaf452008-05-31 00:58:22 +00002747 const unsigned *Idxs, unsigned NumIdx) {
Dan Gohman12fce772008-05-15 19:50:34 +00002748 assert(ExtractValueInst::getIndexedType(Agg->getType(), Idxs,
2749 Idxs+NumIdx) == Val->getType() &&
2750 "insertvalue indices invalid!");
2751 assert(Agg->getType() == ReqTy &&
2752 "insertvalue type invalid!");
Dan Gohman0752bff2008-05-23 00:36:11 +00002753 assert(Agg->getType()->isFirstClassType() &&
2754 "Non-first-class type for constant InsertValue expression");
Dan Gohmand5d24f62008-07-21 23:30:30 +00002755 Constant *FC = ConstantFoldInsertValueInstruction(Agg, Val, Idxs, NumIdx);
2756 assert(FC && "InsertValue constant expr couldn't be folded!");
2757 return FC;
Dan Gohman12fce772008-05-15 19:50:34 +00002758}
2759
2760Constant *ConstantExpr::getInsertValue(Constant *Agg, Constant *Val,
Dan Gohman1ecaf452008-05-31 00:58:22 +00002761 const unsigned *IdxList, unsigned NumIdx) {
Dan Gohman0752bff2008-05-23 00:36:11 +00002762 assert(Agg->getType()->isFirstClassType() &&
2763 "Tried to create insertelement operation on non-first-class type!");
Dan Gohman12fce772008-05-15 19:50:34 +00002764
Dan Gohman0752bff2008-05-23 00:36:11 +00002765 const Type *ReqTy = Agg->getType();
Devang Pateld26344d2008-11-03 23:20:04 +00002766#ifndef NDEBUG
Dan Gohman0752bff2008-05-23 00:36:11 +00002767 const Type *ValTy =
Dan Gohman12fce772008-05-15 19:50:34 +00002768 ExtractValueInst::getIndexedType(Agg->getType(), IdxList, IdxList+NumIdx);
Devang Pateld26344d2008-11-03 23:20:04 +00002769#endif
Dan Gohman0752bff2008-05-23 00:36:11 +00002770 assert(ValTy == Val->getType() && "insertvalue indices invalid!");
Dan Gohman12fce772008-05-15 19:50:34 +00002771 return getInsertValueTy(ReqTy, Agg, Val, IdxList, NumIdx);
2772}
2773
2774Constant *ConstantExpr::getExtractValueTy(const Type *ReqTy, Constant *Agg,
Dan Gohman1ecaf452008-05-31 00:58:22 +00002775 const unsigned *Idxs, unsigned NumIdx) {
Dan Gohman12fce772008-05-15 19:50:34 +00002776 assert(ExtractValueInst::getIndexedType(Agg->getType(), Idxs,
2777 Idxs+NumIdx) == ReqTy &&
2778 "extractvalue indices invalid!");
Dan Gohman0752bff2008-05-23 00:36:11 +00002779 assert(Agg->getType()->isFirstClassType() &&
2780 "Non-first-class type for constant extractvalue expression");
Dan Gohmand5d24f62008-07-21 23:30:30 +00002781 Constant *FC = ConstantFoldExtractValueInstruction(Agg, Idxs, NumIdx);
2782 assert(FC && "ExtractValue constant expr couldn't be folded!");
2783 return FC;
Dan Gohman12fce772008-05-15 19:50:34 +00002784}
2785
2786Constant *ConstantExpr::getExtractValue(Constant *Agg,
Dan Gohman1ecaf452008-05-31 00:58:22 +00002787 const unsigned *IdxList, unsigned NumIdx) {
Dan Gohman0752bff2008-05-23 00:36:11 +00002788 assert(Agg->getType()->isFirstClassType() &&
2789 "Tried to create extractelement operation on non-first-class type!");
Dan Gohman12fce772008-05-15 19:50:34 +00002790
2791 const Type *ReqTy =
2792 ExtractValueInst::getIndexedType(Agg->getType(), IdxList, IdxList+NumIdx);
2793 assert(ReqTy && "extractvalue indices invalid!");
2794 return getExtractValueTy(ReqTy, Agg, IdxList, NumIdx);
2795}
2796
Reid Spencer2eadb532007-01-21 00:29:26 +00002797Constant *ConstantExpr::getZeroValueForNegationExpr(const Type *Ty) {
Reid Spencerd84d35b2007-02-15 02:26:10 +00002798 if (const VectorType *PTy = dyn_cast<VectorType>(Ty))
Reid Spencer6598ca82007-01-21 02:29:10 +00002799 if (PTy->getElementType()->isFloatingPoint()) {
2800 std::vector<Constant*> zeros(PTy->getNumElements(),
Dale Johannesen98d3a082007-09-14 22:26:36 +00002801 ConstantFP::getNegativeZero(PTy->getElementType()));
Reid Spencerd84d35b2007-02-15 02:26:10 +00002802 return ConstantVector::get(PTy, zeros);
Reid Spencer6598ca82007-01-21 02:29:10 +00002803 }
Reid Spencer2eadb532007-01-21 00:29:26 +00002804
Dale Johannesen98d3a082007-09-14 22:26:36 +00002805 if (Ty->isFloatingPoint())
2806 return ConstantFP::getNegativeZero(Ty);
Reid Spencer2eadb532007-01-21 00:29:26 +00002807
2808 return Constant::getNullValue(Ty);
2809}
2810
Vikram S. Adve4c485332002-07-15 18:19:33 +00002811// destroyConstant - Remove the constant from the constant table...
2812//
2813void ConstantExpr::destroyConstant() {
Owen Anderson65c5cd72009-06-17 20:34:43 +00002814 if (llvm_is_multithreaded()) {
2815 sys::ScopedWriter Writer(&*ConstantsLock);
2816 ExprConstants->remove(this);
2817 } else
2818 ExprConstants->remove(this);
2819
Vikram S. Adve4c485332002-07-15 18:19:33 +00002820 destroyConstantImpl();
Vikram S. Adve4e537b22002-07-14 23:13:17 +00002821}
2822
Chris Lattner3cd8c562002-07-30 18:54:25 +00002823const char *ConstantExpr::getOpcodeName() const {
2824 return Instruction::getOpcodeName(getOpcode());
Vikram S. Adve4e537b22002-07-14 23:13:17 +00002825}
Reid Spencer1ebe1ab2004-07-17 23:48:33 +00002826
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002827//===----------------------------------------------------------------------===//
2828// replaceUsesOfWithOnConstant implementations
2829
Chris Lattner913849b2007-08-21 00:55:23 +00002830/// replaceUsesOfWithOnConstant - Update this constant array to change uses of
2831/// 'From' to be uses of 'To'. This must update the uniquing data structures
2832/// etc.
2833///
2834/// Note that we intentionally replace all uses of From with To here. Consider
2835/// a large array that uses 'From' 1000 times. By handling this case all here,
2836/// ConstantArray::replaceUsesOfWithOnConstant is only invoked once, and that
2837/// single invocation handles all 1000 uses. Handling them one at a time would
2838/// work, but would be really slow because it would have to unique each updated
2839/// array instance.
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002840void ConstantArray::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattner7a1450d2005-10-04 18:13:04 +00002841 Use *U) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002842 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
Chris Lattner8760ec72005-10-04 01:17:50 +00002843 Constant *ToC = cast<Constant>(To);
Chris Lattnerdff59112005-10-04 18:47:09 +00002844
Jim Laskeyc03caef2006-07-17 17:38:29 +00002845 std::pair<ArrayConstantsTy::MapKey, Constant*> Lookup;
Chris Lattnerb64419a2005-10-03 22:51:37 +00002846 Lookup.first.first = getType();
2847 Lookup.second = this;
Chris Lattnerdff59112005-10-04 18:47:09 +00002848
Chris Lattnerb64419a2005-10-03 22:51:37 +00002849 std::vector<Constant*> &Values = Lookup.first.second;
2850 Values.reserve(getNumOperands()); // Build replacement array.
Chris Lattnerdff59112005-10-04 18:47:09 +00002851
Chris Lattner8760ec72005-10-04 01:17:50 +00002852 // Fill values with the modified operands of the constant array. Also,
2853 // compute whether this turns into an all-zeros array.
Chris Lattnerdff59112005-10-04 18:47:09 +00002854 bool isAllZeros = false;
Chris Lattner913849b2007-08-21 00:55:23 +00002855 unsigned NumUpdated = 0;
Chris Lattnerdff59112005-10-04 18:47:09 +00002856 if (!ToC->isNullValue()) {
Chris Lattner913849b2007-08-21 00:55:23 +00002857 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2858 Constant *Val = cast<Constant>(O->get());
2859 if (Val == From) {
2860 Val = ToC;
2861 ++NumUpdated;
2862 }
2863 Values.push_back(Val);
2864 }
Chris Lattnerdff59112005-10-04 18:47:09 +00002865 } else {
2866 isAllZeros = true;
2867 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2868 Constant *Val = cast<Constant>(O->get());
Chris Lattner913849b2007-08-21 00:55:23 +00002869 if (Val == From) {
2870 Val = ToC;
2871 ++NumUpdated;
2872 }
Chris Lattnerdff59112005-10-04 18:47:09 +00002873 Values.push_back(Val);
2874 if (isAllZeros) isAllZeros = Val->isNullValue();
2875 }
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002876 }
2877
Chris Lattnerb64419a2005-10-03 22:51:37 +00002878 Constant *Replacement = 0;
2879 if (isAllZeros) {
2880 Replacement = ConstantAggregateZero::get(getType());
2881 } else {
2882 // Check to see if we have this array type already.
Owen Anderson65c5cd72009-06-17 20:34:43 +00002883 sys::ScopedWriter Writer(&*ConstantsLock);
Chris Lattnerb64419a2005-10-03 22:51:37 +00002884 bool Exists;
Jim Laskeyc03caef2006-07-17 17:38:29 +00002885 ArrayConstantsTy::MapTy::iterator I =
Chris Lattner69edc982006-09-28 00:35:06 +00002886 ArrayConstants->InsertOrGetItem(Lookup, Exists);
Chris Lattnerb64419a2005-10-03 22:51:37 +00002887
2888 if (Exists) {
2889 Replacement = I->second;
2890 } else {
2891 // Okay, the new shape doesn't exist in the system yet. Instead of
2892 // creating a new constant array, inserting it, replaceallusesof'ing the
2893 // old with the new, then deleting the old... just update the current one
2894 // in place!
Chris Lattner69edc982006-09-28 00:35:06 +00002895 ArrayConstants->MoveConstantToNewSlot(this, I);
Chris Lattnerb64419a2005-10-03 22:51:37 +00002896
Chris Lattner913849b2007-08-21 00:55:23 +00002897 // Update to the new value. Optimize for the case when we have a single
2898 // operand that we're changing, but handle bulk updates efficiently.
2899 if (NumUpdated == 1) {
2900 unsigned OperandToUpdate = U-OperandList;
2901 assert(getOperand(OperandToUpdate) == From &&
2902 "ReplaceAllUsesWith broken!");
2903 setOperand(OperandToUpdate, ToC);
2904 } else {
2905 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
2906 if (getOperand(i) == From)
2907 setOperand(i, ToC);
2908 }
Chris Lattnerb64419a2005-10-03 22:51:37 +00002909 return;
2910 }
2911 }
2912
2913 // Otherwise, I do need to replace this with an existing value.
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002914 assert(Replacement != this && "I didn't contain From!");
2915
Chris Lattner7a1450d2005-10-04 18:13:04 +00002916 // Everyone using this now uses the replacement.
2917 uncheckedReplaceAllUsesWith(Replacement);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002918
2919 // Delete the old constant!
2920 destroyConstant();
2921}
2922
2923void ConstantStruct::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattner7a1450d2005-10-04 18:13:04 +00002924 Use *U) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002925 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
Chris Lattner8760ec72005-10-04 01:17:50 +00002926 Constant *ToC = cast<Constant>(To);
2927
Chris Lattnerdff59112005-10-04 18:47:09 +00002928 unsigned OperandToUpdate = U-OperandList;
2929 assert(getOperand(OperandToUpdate) == From && "ReplaceAllUsesWith broken!");
2930
Jim Laskeyc03caef2006-07-17 17:38:29 +00002931 std::pair<StructConstantsTy::MapKey, Constant*> Lookup;
Chris Lattner8760ec72005-10-04 01:17:50 +00002932 Lookup.first.first = getType();
2933 Lookup.second = this;
2934 std::vector<Constant*> &Values = Lookup.first.second;
2935 Values.reserve(getNumOperands()); // Build replacement struct.
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002936
Chris Lattnerdff59112005-10-04 18:47:09 +00002937
Chris Lattner8760ec72005-10-04 01:17:50 +00002938 // Fill values with the modified operands of the constant struct. Also,
2939 // compute whether this turns into an all-zeros struct.
Chris Lattnerdff59112005-10-04 18:47:09 +00002940 bool isAllZeros = false;
2941 if (!ToC->isNullValue()) {
2942 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O)
2943 Values.push_back(cast<Constant>(O->get()));
2944 } else {
2945 isAllZeros = true;
2946 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2947 Constant *Val = cast<Constant>(O->get());
2948 Values.push_back(Val);
2949 if (isAllZeros) isAllZeros = Val->isNullValue();
2950 }
Chris Lattner8760ec72005-10-04 01:17:50 +00002951 }
Chris Lattnerdff59112005-10-04 18:47:09 +00002952 Values[OperandToUpdate] = ToC;
2953
Chris Lattner8760ec72005-10-04 01:17:50 +00002954 Constant *Replacement = 0;
2955 if (isAllZeros) {
2956 Replacement = ConstantAggregateZero::get(getType());
2957 } else {
2958 // Check to see if we have this array type already.
Owen Anderson65c5cd72009-06-17 20:34:43 +00002959 sys::ScopedWriter Writer(&*ConstantsLock);
Chris Lattner8760ec72005-10-04 01:17:50 +00002960 bool Exists;
Jim Laskeyc03caef2006-07-17 17:38:29 +00002961 StructConstantsTy::MapTy::iterator I =
Chris Lattner69edc982006-09-28 00:35:06 +00002962 StructConstants->InsertOrGetItem(Lookup, Exists);
Chris Lattner8760ec72005-10-04 01:17:50 +00002963
2964 if (Exists) {
2965 Replacement = I->second;
2966 } else {
2967 // Okay, the new shape doesn't exist in the system yet. Instead of
2968 // creating a new constant struct, inserting it, replaceallusesof'ing the
2969 // old with the new, then deleting the old... just update the current one
2970 // in place!
Chris Lattner69edc982006-09-28 00:35:06 +00002971 StructConstants->MoveConstantToNewSlot(this, I);
Chris Lattner8760ec72005-10-04 01:17:50 +00002972
Chris Lattnerdff59112005-10-04 18:47:09 +00002973 // Update to the new value.
2974 setOperand(OperandToUpdate, ToC);
Chris Lattner8760ec72005-10-04 01:17:50 +00002975 return;
2976 }
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002977 }
2978
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002979 assert(Replacement != this && "I didn't contain From!");
2980
Chris Lattner7a1450d2005-10-04 18:13:04 +00002981 // Everyone using this now uses the replacement.
2982 uncheckedReplaceAllUsesWith(Replacement);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002983
2984 // Delete the old constant!
2985 destroyConstant();
2986}
2987
Reid Spencerd84d35b2007-02-15 02:26:10 +00002988void ConstantVector::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattner7a1450d2005-10-04 18:13:04 +00002989 Use *U) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002990 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2991
2992 std::vector<Constant*> Values;
2993 Values.reserve(getNumOperands()); // Build replacement array...
2994 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
2995 Constant *Val = getOperand(i);
2996 if (Val == From) Val = cast<Constant>(To);
2997 Values.push_back(Val);
2998 }
2999
Reid Spencerd84d35b2007-02-15 02:26:10 +00003000 Constant *Replacement = ConstantVector::get(getType(), Values);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00003001 assert(Replacement != this && "I didn't contain From!");
3002
Chris Lattner7a1450d2005-10-04 18:13:04 +00003003 // Everyone using this now uses the replacement.
3004 uncheckedReplaceAllUsesWith(Replacement);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00003005
3006 // Delete the old constant!
3007 destroyConstant();
3008}
3009
3010void ConstantExpr::replaceUsesOfWithOnConstant(Value *From, Value *ToV,
Chris Lattner7a1450d2005-10-04 18:13:04 +00003011 Use *U) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00003012 assert(isa<Constant>(ToV) && "Cannot make Constant refer to non-constant!");
3013 Constant *To = cast<Constant>(ToV);
3014
3015 Constant *Replacement = 0;
3016 if (getOpcode() == Instruction::GetElementPtr) {
Chris Lattnerb5d70302007-02-19 20:01:23 +00003017 SmallVector<Constant*, 8> Indices;
Chris Lattnerc4062ba2005-10-03 21:58:36 +00003018 Constant *Pointer = getOperand(0);
3019 Indices.reserve(getNumOperands()-1);
3020 if (Pointer == From) Pointer = To;
3021
3022 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
3023 Constant *Val = getOperand(i);
3024 if (Val == From) Val = To;
3025 Indices.push_back(Val);
3026 }
Chris Lattnerb5d70302007-02-19 20:01:23 +00003027 Replacement = ConstantExpr::getGetElementPtr(Pointer,
3028 &Indices[0], Indices.size());
Dan Gohman12fce772008-05-15 19:50:34 +00003029 } else if (getOpcode() == Instruction::ExtractValue) {
Dan Gohman12fce772008-05-15 19:50:34 +00003030 Constant *Agg = getOperand(0);
Dan Gohman12fce772008-05-15 19:50:34 +00003031 if (Agg == From) Agg = To;
3032
Dan Gohman1ecaf452008-05-31 00:58:22 +00003033 const SmallVector<unsigned, 4> &Indices = getIndices();
Dan Gohman12fce772008-05-15 19:50:34 +00003034 Replacement = ConstantExpr::getExtractValue(Agg,
3035 &Indices[0], Indices.size());
3036 } else if (getOpcode() == Instruction::InsertValue) {
Dan Gohman12fce772008-05-15 19:50:34 +00003037 Constant *Agg = getOperand(0);
3038 Constant *Val = getOperand(1);
Dan Gohman12fce772008-05-15 19:50:34 +00003039 if (Agg == From) Agg = To;
3040 if (Val == From) Val = To;
3041
Dan Gohman1ecaf452008-05-31 00:58:22 +00003042 const SmallVector<unsigned, 4> &Indices = getIndices();
Dan Gohman12fce772008-05-15 19:50:34 +00003043 Replacement = ConstantExpr::getInsertValue(Agg, Val,
3044 &Indices[0], Indices.size());
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003045 } else if (isCast()) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00003046 assert(getOperand(0) == From && "Cast only has one use!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00003047 Replacement = ConstantExpr::getCast(getOpcode(), To, getType());
Chris Lattnerc4062ba2005-10-03 21:58:36 +00003048 } else if (getOpcode() == Instruction::Select) {
3049 Constant *C1 = getOperand(0);
3050 Constant *C2 = getOperand(1);
3051 Constant *C3 = getOperand(2);
3052 if (C1 == From) C1 = To;
3053 if (C2 == From) C2 = To;
3054 if (C3 == From) C3 = To;
3055 Replacement = ConstantExpr::getSelect(C1, C2, C3);
Robert Bocchino23004482006-01-10 19:05:34 +00003056 } else if (getOpcode() == Instruction::ExtractElement) {
3057 Constant *C1 = getOperand(0);
3058 Constant *C2 = getOperand(1);
3059 if (C1 == From) C1 = To;
3060 if (C2 == From) C2 = To;
3061 Replacement = ConstantExpr::getExtractElement(C1, C2);
Chris Lattnera93b4b52006-04-08 05:09:48 +00003062 } else if (getOpcode() == Instruction::InsertElement) {
3063 Constant *C1 = getOperand(0);
3064 Constant *C2 = getOperand(1);
3065 Constant *C3 = getOperand(1);
3066 if (C1 == From) C1 = To;
3067 if (C2 == From) C2 = To;
3068 if (C3 == From) C3 = To;
3069 Replacement = ConstantExpr::getInsertElement(C1, C2, C3);
3070 } else if (getOpcode() == Instruction::ShuffleVector) {
3071 Constant *C1 = getOperand(0);
3072 Constant *C2 = getOperand(1);
3073 Constant *C3 = getOperand(2);
3074 if (C1 == From) C1 = To;
3075 if (C2 == From) C2 = To;
3076 if (C3 == From) C3 = To;
3077 Replacement = ConstantExpr::getShuffleVector(C1, C2, C3);
Reid Spenceree3c9912006-12-04 05:19:50 +00003078 } else if (isCompare()) {
3079 Constant *C1 = getOperand(0);
3080 Constant *C2 = getOperand(1);
3081 if (C1 == From) C1 = To;
3082 if (C2 == From) C2 = To;
3083 if (getOpcode() == Instruction::ICmp)
3084 Replacement = ConstantExpr::getICmp(getPredicate(), C1, C2);
Chris Lattnereab49262008-07-14 05:17:31 +00003085 else if (getOpcode() == Instruction::FCmp)
Reid Spenceree3c9912006-12-04 05:19:50 +00003086 Replacement = ConstantExpr::getFCmp(getPredicate(), C1, C2);
Chris Lattnereab49262008-07-14 05:17:31 +00003087 else if (getOpcode() == Instruction::VICmp)
3088 Replacement = ConstantExpr::getVICmp(getPredicate(), C1, C2);
3089 else {
3090 assert(getOpcode() == Instruction::VFCmp);
3091 Replacement = ConstantExpr::getVFCmp(getPredicate(), C1, C2);
3092 }
Chris Lattnerc4062ba2005-10-03 21:58:36 +00003093 } else if (getNumOperands() == 2) {
3094 Constant *C1 = getOperand(0);
3095 Constant *C2 = getOperand(1);
3096 if (C1 == From) C1 = To;
3097 if (C2 == From) C2 = To;
3098 Replacement = ConstantExpr::get(getOpcode(), C1, C2);
3099 } else {
3100 assert(0 && "Unknown ConstantExpr type!");
3101 return;
3102 }
3103
3104 assert(Replacement != this && "I didn't contain From!");
3105
Chris Lattner7a1450d2005-10-04 18:13:04 +00003106 // Everyone using this now uses the replacement.
3107 uncheckedReplaceAllUsesWith(Replacement);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00003108
3109 // Delete the old constant!
3110 destroyConstant();
Matthijs Kooijmanba5d7ef2008-07-03 07:46:41 +00003111}
Nick Lewycky49f89192009-04-04 07:22:01 +00003112
Nick Lewyckyb8f9b7a2009-05-10 20:57:05 +00003113void MDNode::replaceElement(Value *From, Value *To) {
3114 SmallVector<Value*, 4> Values;
3115 Values.reserve(getNumElements()); // Build replacement array...
3116 for (unsigned i = 0, e = getNumElements(); i != e; ++i) {
3117 Value *Val = getElement(i);
3118 if (Val == From) Val = To;
Nick Lewycky49f89192009-04-04 07:22:01 +00003119 Values.push_back(Val);
3120 }
Nick Lewyckyb8f9b7a2009-05-10 20:57:05 +00003121
3122 MDNode *Replacement = MDNode::get(&Values[0], Values.size());
Nick Lewycky49f89192009-04-04 07:22:01 +00003123 assert(Replacement != this && "I didn't contain From!");
Nick Lewyckyb8f9b7a2009-05-10 20:57:05 +00003124
Nick Lewycky49f89192009-04-04 07:22:01 +00003125 uncheckedReplaceAllUsesWith(Replacement);
Nick Lewyckyb8f9b7a2009-05-10 20:57:05 +00003126
Nick Lewycky49f89192009-04-04 07:22:01 +00003127 destroyConstant();
3128}