blob: 39c0a8c70107f5c551f574db91eee3e6449cef88 [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"
Chris Lattnerd7a73302001-10-13 06:57:33 +000019#include "llvm/Module.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000020#include "llvm/ADT/StringExtras.h"
Chris Lattner3d27be12006-08-27 12:54:02 +000021#include "llvm/Support/Compiler.h"
Bill Wendling6a462f12006-11-17 08:03:48 +000022#include "llvm/Support/Debug.h"
Chris Lattner69edc982006-09-28 00:35:06 +000023#include "llvm/Support/ManagedStatic.h"
Bill Wendling6a462f12006-11-17 08:03:48 +000024#include "llvm/Support/MathExtras.h"
Chris Lattnera80bf0b2007-02-20 06:39:57 +000025#include "llvm/ADT/DenseMap.h"
Chris Lattnerb5d70302007-02-19 20:01:23 +000026#include "llvm/ADT/SmallVector.h"
Chris Lattner2f7c9632001-06-06 20:29:01 +000027#include <algorithm>
Reid Spencer3aaaa0b2007-02-05 20:47:22 +000028#include <map>
Chris Lattner189d19f2003-11-21 20:23:48 +000029using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000030
Chris Lattner2f7c9632001-06-06 20:29:01 +000031//===----------------------------------------------------------------------===//
Chris Lattner3462ae32001-12-03 22:26:30 +000032// Constant Class
Chris Lattner2f7c9632001-06-06 20:29:01 +000033//===----------------------------------------------------------------------===//
34
Chris Lattner3462ae32001-12-03 22:26:30 +000035void Constant::destroyConstantImpl() {
36 // When a Constant is destroyed, there may be lingering
Chris Lattnerd7a73302001-10-13 06:57:33 +000037 // references to the constant by other constants in the constant pool. These
Misha Brukmanbe372b92003-08-21 22:14:26 +000038 // constants are implicitly dependent on the module that is being deleted,
Chris Lattnerd7a73302001-10-13 06:57:33 +000039 // but they don't know that. Because we only find out when the CPV is
40 // deleted, we must now notify all of our users (that should only be
Chris Lattner3462ae32001-12-03 22:26:30 +000041 // Constants) that they are, in fact, invalid now and should be deleted.
Chris Lattnerd7a73302001-10-13 06:57:33 +000042 //
43 while (!use_empty()) {
44 Value *V = use_back();
45#ifndef NDEBUG // Only in -g mode...
Chris Lattnerd9f4ac662002-07-18 00:14:50 +000046 if (!isa<Constant>(V))
Bill Wendling6a462f12006-11-17 08:03:48 +000047 DOUT << "While deleting: " << *this
48 << "\n\nUse still stuck around after Def is destroyed: "
49 << *V << "\n\n";
Chris Lattnerd7a73302001-10-13 06:57:33 +000050#endif
Vikram S. Adve4e537b22002-07-14 23:13:17 +000051 assert(isa<Constant>(V) && "References remain to Constant being destroyed");
Reid Spencer1ebe1ab2004-07-17 23:48:33 +000052 Constant *CV = cast<Constant>(V);
53 CV->destroyConstant();
Chris Lattnerd7a73302001-10-13 06:57:33 +000054
55 // The constant should remove itself from our use list...
Vikram S. Adve4e537b22002-07-14 23:13:17 +000056 assert((use_empty() || use_back() != V) && "Constant not removed!");
Chris Lattnerd7a73302001-10-13 06:57:33 +000057 }
58
59 // Value has no outstanding references it is safe to delete it now...
60 delete this;
Chris Lattner38569342001-10-01 20:11:19 +000061}
Chris Lattner2f7c9632001-06-06 20:29:01 +000062
Chris Lattner23dd1f62006-10-20 00:27:06 +000063/// canTrap - Return true if evaluation of this constant could trap. This is
64/// true for things like constant expressions that could divide by zero.
65bool Constant::canTrap() const {
66 assert(getType()->isFirstClassType() && "Cannot evaluate aggregate vals!");
67 // The only thing that could possibly trap are constant exprs.
68 const ConstantExpr *CE = dyn_cast<ConstantExpr>(this);
69 if (!CE) return false;
70
71 // ConstantExpr traps if any operands can trap.
72 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
73 if (getOperand(i)->canTrap())
74 return true;
75
76 // Otherwise, only specific operations can trap.
77 switch (CE->getOpcode()) {
78 default:
79 return false;
Reid Spencer7e80b0b2006-10-26 06:15:43 +000080 case Instruction::UDiv:
81 case Instruction::SDiv:
82 case Instruction::FDiv:
Reid Spencer7eb55b32006-11-02 01:53:59 +000083 case Instruction::URem:
84 case Instruction::SRem:
85 case Instruction::FRem:
Chris Lattner23dd1f62006-10-20 00:27:06 +000086 // Div and rem can trap if the RHS is not known to be non-zero.
87 if (!isa<ConstantInt>(getOperand(1)) || getOperand(1)->isNullValue())
88 return true;
89 return false;
90 }
91}
92
Evan Chengf9e003b2007-03-08 00:59:12 +000093/// ContaintsRelocations - Return true if the constant value contains
94/// relocations which cannot be resolved at compile time.
95bool Constant::ContainsRelocations() const {
96 if (isa<GlobalValue>(this))
97 return true;
98 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
99 if (getOperand(i)->ContainsRelocations())
100 return true;
101 return false;
102}
103
Chris Lattnerb1585a92002-08-13 17:50:20 +0000104// Static constructor to create a '0' constant of arbitrary type...
105Constant *Constant::getNullValue(const Type *Ty) {
Dale Johannesen98d3a082007-09-14 22:26:36 +0000106 static uint64_t zero[2] = {0, 0};
Chris Lattner6b727592004-06-17 18:19:28 +0000107 switch (Ty->getTypeID()) {
Chris Lattnerdbcb0d32007-02-20 05:46:39 +0000108 case Type::IntegerTyID:
109 return ConstantInt::get(Ty, 0);
110 case Type::FloatTyID:
Chris Lattnerb5b3e312008-04-09 00:45:01 +0000111 return ConstantFP::get(APFloat(APInt(32, 0)));
Chris Lattnerdbcb0d32007-02-20 05:46:39 +0000112 case Type::DoubleTyID:
Chris Lattnerb5b3e312008-04-09 00:45:01 +0000113 return ConstantFP::get(APFloat(APInt(64, 0)));
Dale Johannesenbdad8092007-08-09 22:51:36 +0000114 case Type::X86_FP80TyID:
Chris Lattnerb5b3e312008-04-09 00:45:01 +0000115 return ConstantFP::get(APFloat(APInt(80, 2, zero)));
Dale Johannesenbdad8092007-08-09 22:51:36 +0000116 case Type::FP128TyID:
Chris Lattnerb5b3e312008-04-09 00:45:01 +0000117 return ConstantFP::get(APFloat(APInt(128, 2, zero), true));
Dale Johannesen98d3a082007-09-14 22:26:36 +0000118 case Type::PPC_FP128TyID:
Chris Lattnerb5b3e312008-04-09 00:45:01 +0000119 return ConstantFP::get(APFloat(APInt(128, 2, zero)));
Misha Brukmanb1c93172005-04-21 23:48:37 +0000120 case Type::PointerTyID:
Chris Lattnerb1585a92002-08-13 17:50:20 +0000121 return ConstantPointerNull::get(cast<PointerType>(Ty));
Chris Lattner9fba3da2004-02-15 05:53:04 +0000122 case Type::StructTyID:
123 case Type::ArrayTyID:
Reid Spencerd84d35b2007-02-15 02:26:10 +0000124 case Type::VectorTyID:
Chris Lattner9fba3da2004-02-15 05:53:04 +0000125 return ConstantAggregateZero::get(Ty);
Chris Lattnerb1585a92002-08-13 17:50:20 +0000126 default:
Reid Spencercf394bf2004-07-04 11:51:24 +0000127 // Function, Label, or Opaque type?
128 assert(!"Cannot create a null constant of that type!");
Chris Lattnerb1585a92002-08-13 17:50:20 +0000129 return 0;
130 }
131}
132
Chris Lattner72e39582007-06-15 06:10:53 +0000133Constant *Constant::getAllOnesValue(const Type *Ty) {
134 if (const IntegerType* ITy = dyn_cast<IntegerType>(Ty))
135 return ConstantInt::get(APInt::getAllOnesValue(ITy->getBitWidth()));
136 return ConstantVector::getAllOnesValue(cast<VectorType>(Ty));
137}
Chris Lattnerb1585a92002-08-13 17:50:20 +0000138
139// Static constructor to create an integral constant with all bits set
Zhou Sheng75b871f2007-01-11 12:24:14 +0000140ConstantInt *ConstantInt::getAllOnesValue(const Type *Ty) {
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000141 if (const IntegerType* ITy = dyn_cast<IntegerType>(Ty))
Reid Spencerd1bbfa52007-03-01 19:30:34 +0000142 return ConstantInt::get(APInt::getAllOnesValue(ITy->getBitWidth()));
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000143 return 0;
Chris Lattnerb1585a92002-08-13 17:50:20 +0000144}
145
Dan Gohman30978072007-05-24 14:36:04 +0000146/// @returns the value for a vector integer constant of the given type that
Chris Lattnerecab54c2007-01-04 01:49:26 +0000147/// has all its bits set to true.
148/// @brief Get the all ones value
Reid Spencerd84d35b2007-02-15 02:26:10 +0000149ConstantVector *ConstantVector::getAllOnesValue(const VectorType *Ty) {
Chris Lattnerecab54c2007-01-04 01:49:26 +0000150 std::vector<Constant*> Elts;
151 Elts.resize(Ty->getNumElements(),
Zhou Sheng75b871f2007-01-11 12:24:14 +0000152 ConstantInt::getAllOnesValue(Ty->getElementType()));
Dan Gohman30978072007-05-24 14:36:04 +0000153 assert(Elts[0] && "Not a vector integer type!");
Reid Spencerd84d35b2007-02-15 02:26:10 +0000154 return cast<ConstantVector>(ConstantVector::get(Elts));
Chris Lattnerecab54c2007-01-04 01:49:26 +0000155}
156
157
Chris Lattner2f7c9632001-06-06 20:29:01 +0000158//===----------------------------------------------------------------------===//
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000159// ConstantInt
Chris Lattner2f7c9632001-06-06 20:29:01 +0000160//===----------------------------------------------------------------------===//
161
Reid Spencerb31bffe2007-02-26 23:54:03 +0000162ConstantInt::ConstantInt(const IntegerType *Ty, const APInt& V)
Chris Lattner5db2f472007-02-20 05:55:46 +0000163 : Constant(Ty, ConstantIntVal, 0, 0), Val(V) {
Reid Spencerb31bffe2007-02-26 23:54:03 +0000164 assert(V.getBitWidth() == Ty->getBitWidth() && "Invalid constant for type");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000165}
166
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000167ConstantInt *ConstantInt::TheTrueVal = 0;
168ConstantInt *ConstantInt::TheFalseVal = 0;
169
170namespace llvm {
171 void CleanupTrueFalse(void *) {
172 ConstantInt::ResetTrueFalse();
173 }
174}
175
176static ManagedCleanup<llvm::CleanupTrueFalse> TrueFalseCleanup;
177
178ConstantInt *ConstantInt::CreateTrueFalseVals(bool WhichOne) {
179 assert(TheTrueVal == 0 && TheFalseVal == 0);
180 TheTrueVal = get(Type::Int1Ty, 1);
181 TheFalseVal = get(Type::Int1Ty, 0);
182
183 // Ensure that llvm_shutdown nulls out TheTrueVal/TheFalseVal.
184 TrueFalseCleanup.Register();
185
186 return WhichOne ? TheTrueVal : TheFalseVal;
187}
188
189
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000190namespace {
Reid Spencerb31bffe2007-02-26 23:54:03 +0000191 struct DenseMapAPIntKeyInfo {
192 struct KeyTy {
193 APInt val;
194 const Type* type;
195 KeyTy(const APInt& V, const Type* Ty) : val(V), type(Ty) {}
196 KeyTy(const KeyTy& that) : val(that.val), type(that.type) {}
197 bool operator==(const KeyTy& that) const {
198 return type == that.type && this->val == that.val;
199 }
200 bool operator!=(const KeyTy& that) const {
201 return !this->operator==(that);
202 }
203 };
204 static inline KeyTy getEmptyKey() { return KeyTy(APInt(1,0), 0); }
205 static inline KeyTy getTombstoneKey() { return KeyTy(APInt(1,1), 0); }
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000206 static unsigned getHashValue(const KeyTy &Key) {
Chris Lattner0625bd62007-09-17 18:34:04 +0000207 return DenseMapInfo<void*>::getHashValue(Key.type) ^
Reid Spencerb31bffe2007-02-26 23:54:03 +0000208 Key.val.getHashValue();
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000209 }
Chris Lattner0625bd62007-09-17 18:34:04 +0000210 static bool isEqual(const KeyTy &LHS, const KeyTy &RHS) {
211 return LHS == RHS;
212 }
Dale Johannesena719a602007-08-24 00:56:33 +0000213 static bool isPod() { return false; }
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000214 };
215}
216
217
Reid Spencerb31bffe2007-02-26 23:54:03 +0000218typedef DenseMap<DenseMapAPIntKeyInfo::KeyTy, ConstantInt*,
219 DenseMapAPIntKeyInfo> IntMapTy;
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000220static ManagedStatic<IntMapTy> IntConstants;
221
Reid Spencer362fb292007-03-19 20:39:08 +0000222ConstantInt *ConstantInt::get(const Type *Ty, uint64_t V, bool isSigned) {
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000223 const IntegerType *ITy = cast<IntegerType>(Ty);
Reid Spencer362fb292007-03-19 20:39:08 +0000224 return get(APInt(ITy->getBitWidth(), V, isSigned));
Reid Spencerb31bffe2007-02-26 23:54:03 +0000225}
226
Reid Spencerd1bbfa52007-03-01 19:30:34 +0000227// Get a ConstantInt from an APInt. Note that the value stored in the DenseMap
Dan Gohmanb3efe032008-02-07 02:30:40 +0000228// as the key, is a DenseMapAPIntKeyInfo::KeyTy which has provided the
Reid Spencerb31bffe2007-02-26 23:54:03 +0000229// operator== and operator!= to ensure that the DenseMap doesn't attempt to
230// compare APInt's of different widths, which would violate an APInt class
231// invariant which generates an assertion.
Reid Spencerd1bbfa52007-03-01 19:30:34 +0000232ConstantInt *ConstantInt::get(const APInt& V) {
233 // Get the corresponding integer type for the bit width of the value.
234 const IntegerType *ITy = IntegerType::get(V.getBitWidth());
Reid Spencerb31bffe2007-02-26 23:54:03 +0000235 // get an existing value or the insertion position
Reid Spencerd1bbfa52007-03-01 19:30:34 +0000236 DenseMapAPIntKeyInfo::KeyTy Key(V, ITy);
Reid Spencerb31bffe2007-02-26 23:54:03 +0000237 ConstantInt *&Slot = (*IntConstants)[Key];
238 // if it exists, return it.
239 if (Slot)
240 return Slot;
241 // otherwise create a new one, insert it, and return it.
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000242 return Slot = new ConstantInt(ITy, V);
243}
244
245//===----------------------------------------------------------------------===//
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000246// ConstantFP
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000247//===----------------------------------------------------------------------===//
248
Chris Lattner98bd9392008-04-09 06:38:30 +0000249static const fltSemantics *TypeToFloatSemantics(const Type *Ty) {
250 if (Ty == Type::FloatTy)
251 return &APFloat::IEEEsingle;
252 if (Ty == Type::DoubleTy)
253 return &APFloat::IEEEdouble;
254 if (Ty == Type::X86_FP80Ty)
255 return &APFloat::x87DoubleExtended;
256 else if (Ty == Type::FP128Ty)
257 return &APFloat::IEEEquad;
258
259 assert(Ty == Type::PPC_FP128Ty && "Unknown FP format");
260 return &APFloat::PPCDoubleDouble;
261}
262
Dale Johannesend246b2c2007-08-30 00:23:21 +0000263ConstantFP::ConstantFP(const Type *Ty, const APFloat& V)
264 : Constant(Ty, ConstantFPVal, 0, 0), Val(V) {
Chris Lattner98bd9392008-04-09 06:38:30 +0000265 assert(&V.getSemantics() == TypeToFloatSemantics(Ty) &&
266 "FP type Mismatch");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000267}
268
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000269bool ConstantFP::isNullValue() const {
Dale Johannesena719a602007-08-24 00:56:33 +0000270 return Val.isZero() && !Val.isNegative();
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000271}
272
Dale Johannesen98d3a082007-09-14 22:26:36 +0000273ConstantFP *ConstantFP::getNegativeZero(const Type *Ty) {
274 APFloat apf = cast <ConstantFP>(Constant::getNullValue(Ty))->getValueAPF();
275 apf.changeSign();
Chris Lattnerb5b3e312008-04-09 00:45:01 +0000276 return ConstantFP::get(apf);
Dale Johannesen98d3a082007-09-14 22:26:36 +0000277}
278
Dale Johannesend246b2c2007-08-30 00:23:21 +0000279bool ConstantFP::isExactlyValue(const APFloat& V) const {
280 return Val.bitwiseIsEqual(V);
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000281}
282
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000283namespace {
Dale Johannesena719a602007-08-24 00:56:33 +0000284 struct DenseMapAPFloatKeyInfo {
Dale Johannesenbdea32d2007-08-24 22:09:56 +0000285 struct KeyTy {
286 APFloat val;
287 KeyTy(const APFloat& V) : val(V){}
288 KeyTy(const KeyTy& that) : val(that.val) {}
289 bool operator==(const KeyTy& that) const {
290 return this->val.bitwiseIsEqual(that.val);
291 }
292 bool operator!=(const KeyTy& that) const {
293 return !this->operator==(that);
294 }
295 };
296 static inline KeyTy getEmptyKey() {
297 return KeyTy(APFloat(APFloat::Bogus,1));
Reid Spencerb31bffe2007-02-26 23:54:03 +0000298 }
Dale Johannesenbdea32d2007-08-24 22:09:56 +0000299 static inline KeyTy getTombstoneKey() {
300 return KeyTy(APFloat(APFloat::Bogus,2));
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000301 }
Dale Johannesenbdea32d2007-08-24 22:09:56 +0000302 static unsigned getHashValue(const KeyTy &Key) {
303 return Key.val.getHashValue();
Dale Johannesena719a602007-08-24 00:56:33 +0000304 }
Chris Lattner0625bd62007-09-17 18:34:04 +0000305 static bool isEqual(const KeyTy &LHS, const KeyTy &RHS) {
306 return LHS == RHS;
307 }
Dale Johannesena719a602007-08-24 00:56:33 +0000308 static bool isPod() { return false; }
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000309 };
310}
311
312//---- ConstantFP::get() implementation...
313//
Dale Johannesenbdea32d2007-08-24 22:09:56 +0000314typedef DenseMap<DenseMapAPFloatKeyInfo::KeyTy, ConstantFP*,
Dale Johannesena719a602007-08-24 00:56:33 +0000315 DenseMapAPFloatKeyInfo> FPMapTy;
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000316
Dale Johannesena719a602007-08-24 00:56:33 +0000317static ManagedStatic<FPMapTy> FPConstants;
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000318
Chris Lattnerb5b3e312008-04-09 00:45:01 +0000319ConstantFP *ConstantFP::get(const APFloat &V) {
Dale Johannesend246b2c2007-08-30 00:23:21 +0000320 DenseMapAPFloatKeyInfo::KeyTy Key(V);
321 ConstantFP *&Slot = (*FPConstants)[Key];
322 if (Slot) return Slot;
Chris Lattnerb5b3e312008-04-09 00:45:01 +0000323
324 const Type *Ty;
325 if (&V.getSemantics() == &APFloat::IEEEsingle)
326 Ty = Type::FloatTy;
327 else if (&V.getSemantics() == &APFloat::IEEEdouble)
328 Ty = Type::DoubleTy;
329 else if (&V.getSemantics() == &APFloat::x87DoubleExtended)
330 Ty = Type::X86_FP80Ty;
331 else if (&V.getSemantics() == &APFloat::IEEEquad)
332 Ty = Type::FP128Ty;
333 else {
334 assert(&V.getSemantics() == &APFloat::PPCDoubleDouble&&"Unknown FP format");
335 Ty = Type::PPC_FP128Ty;
336 }
337
Dale Johannesend246b2c2007-08-30 00:23:21 +0000338 return Slot = new ConstantFP(Ty, V);
339}
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000340
Chris Lattner98bd9392008-04-09 06:38:30 +0000341/// get() - This returns a constant fp for the specified value in the
342/// specified type. This should only be used for simple constant values like
343/// 2.0/1.0 etc, that are known-valid both as double and as the target format.
344ConstantFP *ConstantFP::get(const Type *Ty, double V) {
345 APFloat FV(V);
346 FV.convert(*TypeToFloatSemantics(Ty), APFloat::rmNearestTiesToEven);
347 return get(FV);
348}
349
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000350//===----------------------------------------------------------------------===//
351// ConstantXXX Classes
352//===----------------------------------------------------------------------===//
353
354
Chris Lattner3462ae32001-12-03 22:26:30 +0000355ConstantArray::ConstantArray(const ArrayType *T,
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000356 const std::vector<Constant*> &V)
Gabor Greiff6caff662008-05-10 08:32:32 +0000357 : Constant(T, ConstantArrayVal,
358 OperandTraits<ConstantArray>::op_end(this) - V.size(),
359 V.size()) {
Alkis Evlogimenos0507ffe2004-09-15 02:32:15 +0000360 assert(V.size() == T->getNumElements() &&
361 "Invalid initializer vector for constant array");
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000362 Use *OL = OperandList;
Chris Lattner0144fad2005-10-03 21:56:24 +0000363 for (std::vector<Constant*>::const_iterator I = V.begin(), E = V.end();
364 I != E; ++I, ++OL) {
Chris Lattner20a24452005-10-07 05:23:36 +0000365 Constant *C = *I;
366 assert((C->getType() == T->getElementType() ||
Alkis Evlogimenoscb031d92004-09-10 04:16:59 +0000367 (T->isAbstract() &&
Chris Lattner20a24452005-10-07 05:23:36 +0000368 C->getType()->getTypeID() == T->getElementType()->getTypeID())) &&
Alkis Evlogimenoscb031d92004-09-10 04:16:59 +0000369 "Initializer for array element doesn't match array element type!");
Gabor Greif2d3024d2008-05-26 21:33:52 +0000370 *OL = C;
Chris Lattner2f7c9632001-06-06 20:29:01 +0000371 }
372}
373
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000374
Chris Lattner3462ae32001-12-03 22:26:30 +0000375ConstantStruct::ConstantStruct(const StructType *T,
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000376 const std::vector<Constant*> &V)
Gabor Greiff6caff662008-05-10 08:32:32 +0000377 : Constant(T, ConstantStructVal,
378 OperandTraits<ConstantStruct>::op_end(this) - V.size(),
379 V.size()) {
Chris Lattnerac6db752004-02-09 04:37:31 +0000380 assert(V.size() == T->getNumElements() &&
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000381 "Invalid initializer vector for constant structure");
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000382 Use *OL = OperandList;
Chris Lattner0144fad2005-10-03 21:56:24 +0000383 for (std::vector<Constant*>::const_iterator I = V.begin(), E = V.end();
384 I != E; ++I, ++OL) {
Chris Lattner20a24452005-10-07 05:23:36 +0000385 Constant *C = *I;
386 assert((C->getType() == T->getElementType(I-V.begin()) ||
Chris Lattner0144fad2005-10-03 21:56:24 +0000387 ((T->getElementType(I-V.begin())->isAbstract() ||
Chris Lattner20a24452005-10-07 05:23:36 +0000388 C->getType()->isAbstract()) &&
Chris Lattner0144fad2005-10-03 21:56:24 +0000389 T->getElementType(I-V.begin())->getTypeID() ==
Chris Lattner20a24452005-10-07 05:23:36 +0000390 C->getType()->getTypeID())) &&
Chris Lattner93c8f142003-06-02 17:42:47 +0000391 "Initializer for struct element doesn't match struct element type!");
Gabor Greif2d3024d2008-05-26 21:33:52 +0000392 *OL = C;
Chris Lattner2f7c9632001-06-06 20:29:01 +0000393 }
394}
395
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000396
Reid Spencerd84d35b2007-02-15 02:26:10 +0000397ConstantVector::ConstantVector(const VectorType *T,
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000398 const std::vector<Constant*> &V)
Gabor Greiff6caff662008-05-10 08:32:32 +0000399 : Constant(T, ConstantVectorVal,
400 OperandTraits<ConstantVector>::op_end(this) - V.size(),
401 V.size()) {
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000402 Use *OL = OperandList;
Chris Lattner0144fad2005-10-03 21:56:24 +0000403 for (std::vector<Constant*>::const_iterator I = V.begin(), E = V.end();
404 I != E; ++I, ++OL) {
Chris Lattner20a24452005-10-07 05:23:36 +0000405 Constant *C = *I;
406 assert((C->getType() == T->getElementType() ||
Alkis Evlogimenoscb031d92004-09-10 04:16:59 +0000407 (T->isAbstract() &&
Chris Lattner20a24452005-10-07 05:23:36 +0000408 C->getType()->getTypeID() == T->getElementType()->getTypeID())) &&
Dan Gohman30978072007-05-24 14:36:04 +0000409 "Initializer for vector element doesn't match vector element type!");
Gabor Greif2d3024d2008-05-26 21:33:52 +0000410 *OL = C;
Brian Gaeke02209042004-08-20 06:00:58 +0000411 }
412}
413
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000414
Gabor Greiff6caff662008-05-10 08:32:32 +0000415namespace llvm {
Gordon Henriksen14a55692007-12-10 02:14:30 +0000416// We declare several classes private to this file, so use an anonymous
417// namespace
418namespace {
Reid Spencer10fbf0e2006-12-03 05:48:19 +0000419
Gordon Henriksen14a55692007-12-10 02:14:30 +0000420/// UnaryConstantExpr - This class is private to Constants.cpp, and is used
421/// behind the scenes to implement unary constant exprs.
422class VISIBILITY_HIDDEN UnaryConstantExpr : public ConstantExpr {
Gabor Greife9ecc682008-04-06 20:25:17 +0000423 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
Gordon Henriksen14a55692007-12-10 02:14:30 +0000424public:
Gabor Greife9ecc682008-04-06 20:25:17 +0000425 // allocate space for exactly one operand
426 void *operator new(size_t s) {
427 return User::operator new(s, 1);
428 }
Gordon Henriksen14a55692007-12-10 02:14:30 +0000429 UnaryConstantExpr(unsigned Opcode, Constant *C, const Type *Ty)
Gabor Greiff6caff662008-05-10 08:32:32 +0000430 : ConstantExpr(Ty, Opcode, &Op<0>(), 1) {
431 Op<0>() = C;
432 }
433 /// Transparently provide more efficient getOperand methods.
434 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Gordon Henriksen14a55692007-12-10 02:14:30 +0000435};
Reid Spencer10fbf0e2006-12-03 05:48:19 +0000436
Gordon Henriksen14a55692007-12-10 02:14:30 +0000437/// BinaryConstantExpr - This class is private to Constants.cpp, and is used
438/// behind the scenes to implement binary constant exprs.
439class VISIBILITY_HIDDEN BinaryConstantExpr : public ConstantExpr {
Gabor Greife9ecc682008-04-06 20:25:17 +0000440 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
Gordon Henriksen14a55692007-12-10 02:14:30 +0000441public:
Gabor Greife9ecc682008-04-06 20:25:17 +0000442 // allocate space for exactly two operands
443 void *operator new(size_t s) {
444 return User::operator new(s, 2);
445 }
Gordon Henriksen14a55692007-12-10 02:14:30 +0000446 BinaryConstantExpr(unsigned Opcode, Constant *C1, Constant *C2)
Gabor Greiff6caff662008-05-10 08:32:32 +0000447 : ConstantExpr(C1->getType(), Opcode, &Op<0>(), 2) {
Gabor Greif2d3024d2008-05-26 21:33:52 +0000448 Op<0>() = C1;
449 Op<1>() = C2;
Gordon Henriksen14a55692007-12-10 02:14:30 +0000450 }
Gabor Greiff6caff662008-05-10 08:32:32 +0000451 /// Transparently provide more efficient getOperand methods.
452 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Gordon Henriksen14a55692007-12-10 02:14:30 +0000453};
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000454
Gordon Henriksen14a55692007-12-10 02:14:30 +0000455/// SelectConstantExpr - This class is private to Constants.cpp, and is used
456/// behind the scenes to implement select constant exprs.
457class VISIBILITY_HIDDEN SelectConstantExpr : public ConstantExpr {
Gabor Greife9ecc682008-04-06 20:25:17 +0000458 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
Gordon Henriksen14a55692007-12-10 02:14:30 +0000459public:
Gabor Greife9ecc682008-04-06 20:25:17 +0000460 // allocate space for exactly three operands
461 void *operator new(size_t s) {
462 return User::operator new(s, 3);
463 }
Gordon Henriksen14a55692007-12-10 02:14:30 +0000464 SelectConstantExpr(Constant *C1, Constant *C2, Constant *C3)
Gabor Greiff6caff662008-05-10 08:32:32 +0000465 : ConstantExpr(C2->getType(), Instruction::Select, &Op<0>(), 3) {
Gabor Greif2d3024d2008-05-26 21:33:52 +0000466 Op<0>() = C1;
467 Op<1>() = C2;
468 Op<2>() = C3;
Gordon Henriksen14a55692007-12-10 02:14:30 +0000469 }
Gabor Greiff6caff662008-05-10 08:32:32 +0000470 /// Transparently provide more efficient getOperand methods.
471 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Gordon Henriksen14a55692007-12-10 02:14:30 +0000472};
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000473
Gordon Henriksen14a55692007-12-10 02:14:30 +0000474/// ExtractElementConstantExpr - This class is private to
475/// Constants.cpp, and is used behind the scenes to implement
476/// extractelement constant exprs.
477class VISIBILITY_HIDDEN ExtractElementConstantExpr : public ConstantExpr {
Gabor Greife9ecc682008-04-06 20:25:17 +0000478 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
Gordon Henriksen14a55692007-12-10 02:14:30 +0000479public:
Gabor Greife9ecc682008-04-06 20:25:17 +0000480 // allocate space for exactly two operands
481 void *operator new(size_t s) {
482 return User::operator new(s, 2);
483 }
Gordon Henriksen14a55692007-12-10 02:14:30 +0000484 ExtractElementConstantExpr(Constant *C1, Constant *C2)
485 : ConstantExpr(cast<VectorType>(C1->getType())->getElementType(),
Gabor Greiff6caff662008-05-10 08:32:32 +0000486 Instruction::ExtractElement, &Op<0>(), 2) {
Gabor Greif2d3024d2008-05-26 21:33:52 +0000487 Op<0>() = C1;
488 Op<1>() = C2;
Gordon Henriksen14a55692007-12-10 02:14:30 +0000489 }
Gabor Greiff6caff662008-05-10 08:32:32 +0000490 /// Transparently provide more efficient getOperand methods.
491 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Gordon Henriksen14a55692007-12-10 02:14:30 +0000492};
Robert Bocchino23004482006-01-10 19:05:34 +0000493
Gordon Henriksen14a55692007-12-10 02:14:30 +0000494/// InsertElementConstantExpr - This class is private to
495/// Constants.cpp, and is used behind the scenes to implement
496/// insertelement constant exprs.
497class VISIBILITY_HIDDEN InsertElementConstantExpr : public ConstantExpr {
Gabor Greife9ecc682008-04-06 20:25:17 +0000498 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
Gordon Henriksen14a55692007-12-10 02:14:30 +0000499public:
Gabor Greife9ecc682008-04-06 20:25:17 +0000500 // allocate space for exactly three operands
501 void *operator new(size_t s) {
502 return User::operator new(s, 3);
503 }
Gordon Henriksen14a55692007-12-10 02:14:30 +0000504 InsertElementConstantExpr(Constant *C1, Constant *C2, Constant *C3)
505 : ConstantExpr(C1->getType(), Instruction::InsertElement,
Gabor Greiff6caff662008-05-10 08:32:32 +0000506 &Op<0>(), 3) {
Gabor Greif2d3024d2008-05-26 21:33:52 +0000507 Op<0>() = C1;
508 Op<1>() = C2;
509 Op<2>() = C3;
Gordon Henriksen14a55692007-12-10 02:14:30 +0000510 }
Gabor Greiff6caff662008-05-10 08:32:32 +0000511 /// Transparently provide more efficient getOperand methods.
512 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Gordon Henriksen14a55692007-12-10 02:14:30 +0000513};
Robert Bocchinoca27f032006-01-17 20:07:22 +0000514
Gordon Henriksen14a55692007-12-10 02:14:30 +0000515/// ShuffleVectorConstantExpr - This class is private to
516/// Constants.cpp, and is used behind the scenes to implement
517/// shufflevector constant exprs.
518class VISIBILITY_HIDDEN ShuffleVectorConstantExpr : public ConstantExpr {
Gabor Greife9ecc682008-04-06 20:25:17 +0000519 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
Gordon Henriksen14a55692007-12-10 02:14:30 +0000520public:
Gabor Greife9ecc682008-04-06 20:25:17 +0000521 // allocate space for exactly three operands
522 void *operator new(size_t s) {
523 return User::operator new(s, 3);
524 }
Gordon Henriksen14a55692007-12-10 02:14:30 +0000525 ShuffleVectorConstantExpr(Constant *C1, Constant *C2, Constant *C3)
526 : ConstantExpr(C1->getType(), Instruction::ShuffleVector,
Gabor Greiff6caff662008-05-10 08:32:32 +0000527 &Op<0>(), 3) {
Gabor Greif2d3024d2008-05-26 21:33:52 +0000528 Op<0>() = C1;
529 Op<1>() = C2;
530 Op<2>() = C3;
Gordon Henriksen14a55692007-12-10 02:14:30 +0000531 }
Gabor Greiff6caff662008-05-10 08:32:32 +0000532 /// Transparently provide more efficient getOperand methods.
533 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Gordon Henriksen14a55692007-12-10 02:14:30 +0000534};
535
Dan Gohman12fce772008-05-15 19:50:34 +0000536/// ExtractValueConstantExpr - This class is private to
537/// Constants.cpp, and is used behind the scenes to implement
538/// extractvalue constant exprs.
539class VISIBILITY_HIDDEN ExtractValueConstantExpr : public ConstantExpr {
Dan Gohman1ecaf452008-05-31 00:58:22 +0000540 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
Dan Gohman12fce772008-05-15 19:50:34 +0000541public:
Dan Gohman1ecaf452008-05-31 00:58:22 +0000542 // allocate space for exactly one operand
543 void *operator new(size_t s) {
544 return User::operator new(s, 1);
Dan Gohman12fce772008-05-15 19:50:34 +0000545 }
Dan Gohman1ecaf452008-05-31 00:58:22 +0000546 ExtractValueConstantExpr(Constant *Agg,
547 const SmallVector<unsigned, 4> &IdxList,
548 const Type *DestTy)
549 : ConstantExpr(DestTy, Instruction::ExtractValue, &Op<0>(), 1),
550 Indices(IdxList) {
551 Op<0>() = Agg;
552 }
553
Dan Gohman7bb04502008-05-31 19:09:08 +0000554 /// Indices - These identify which value to extract.
Dan Gohman1ecaf452008-05-31 00:58:22 +0000555 const SmallVector<unsigned, 4> Indices;
556
Dan Gohman12fce772008-05-15 19:50:34 +0000557 /// Transparently provide more efficient getOperand methods.
558 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
559};
560
561/// InsertValueConstantExpr - This class is private to
562/// Constants.cpp, and is used behind the scenes to implement
563/// insertvalue constant exprs.
564class VISIBILITY_HIDDEN InsertValueConstantExpr : public ConstantExpr {
Dan Gohman1ecaf452008-05-31 00:58:22 +0000565 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
Dan Gohman12fce772008-05-15 19:50:34 +0000566public:
Dan Gohman1ecaf452008-05-31 00:58:22 +0000567 // allocate space for exactly one operand
568 void *operator new(size_t s) {
569 return User::operator new(s, 2);
Dan Gohman12fce772008-05-15 19:50:34 +0000570 }
Dan Gohman1ecaf452008-05-31 00:58:22 +0000571 InsertValueConstantExpr(Constant *Agg, Constant *Val,
572 const SmallVector<unsigned, 4> &IdxList,
573 const Type *DestTy)
574 : ConstantExpr(DestTy, Instruction::InsertValue, &Op<0>(), 2),
575 Indices(IdxList) {
576 Op<0>() = Agg;
577 Op<1>() = Val;
578 }
579
Dan Gohman7bb04502008-05-31 19:09:08 +0000580 /// Indices - These identify the position for the insertion.
Dan Gohman1ecaf452008-05-31 00:58:22 +0000581 const SmallVector<unsigned, 4> Indices;
582
Dan Gohman12fce772008-05-15 19:50:34 +0000583 /// Transparently provide more efficient getOperand methods.
584 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
585};
586
587
Gordon Henriksen14a55692007-12-10 02:14:30 +0000588/// GetElementPtrConstantExpr - This class is private to Constants.cpp, and is
589/// used behind the scenes to implement getelementpr constant exprs.
Gabor Greife9ecc682008-04-06 20:25:17 +0000590class VISIBILITY_HIDDEN GetElementPtrConstantExpr : public ConstantExpr {
Gordon Henriksen14a55692007-12-10 02:14:30 +0000591 GetElementPtrConstantExpr(Constant *C, const std::vector<Constant*> &IdxList,
Gabor Greiff6caff662008-05-10 08:32:32 +0000592 const Type *DestTy);
Gabor Greife9ecc682008-04-06 20:25:17 +0000593public:
Gabor Greif697e94c2008-05-15 10:04:30 +0000594 static GetElementPtrConstantExpr *Create(Constant *C,
595 const std::vector<Constant*>&IdxList,
Gabor Greiff6caff662008-05-10 08:32:32 +0000596 const Type *DestTy) {
Gabor Greif697e94c2008-05-15 10:04:30 +0000597 return new(IdxList.size() + 1)
598 GetElementPtrConstantExpr(C, IdxList, DestTy);
Gabor Greife9ecc682008-04-06 20:25:17 +0000599 }
Gabor Greiff6caff662008-05-10 08:32:32 +0000600 /// Transparently provide more efficient getOperand methods.
601 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Gordon Henriksen14a55692007-12-10 02:14:30 +0000602};
603
604// CompareConstantExpr - This class is private to Constants.cpp, and is used
605// behind the scenes to implement ICmp and FCmp constant expressions. This is
606// needed in order to store the predicate value for these instructions.
607struct VISIBILITY_HIDDEN CompareConstantExpr : public ConstantExpr {
Gabor Greife9ecc682008-04-06 20:25:17 +0000608 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
609 // allocate space for exactly two operands
610 void *operator new(size_t s) {
611 return User::operator new(s, 2);
612 }
Gordon Henriksen14a55692007-12-10 02:14:30 +0000613 unsigned short predicate;
Nate Begemand2195702008-05-12 19:01:56 +0000614 CompareConstantExpr(const Type *ty, Instruction::OtherOps opc,
615 unsigned short pred, Constant* LHS, Constant* RHS)
616 : ConstantExpr(ty, opc, &Op<0>(), 2), predicate(pred) {
Gabor Greif2d3024d2008-05-26 21:33:52 +0000617 Op<0>() = LHS;
618 Op<1>() = RHS;
Gordon Henriksen14a55692007-12-10 02:14:30 +0000619 }
Gabor Greiff6caff662008-05-10 08:32:32 +0000620 /// Transparently provide more efficient getOperand methods.
621 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Gordon Henriksen14a55692007-12-10 02:14:30 +0000622};
623
624} // end anonymous namespace
625
Gabor Greiff6caff662008-05-10 08:32:32 +0000626template <>
627struct OperandTraits<UnaryConstantExpr> : FixedNumOperandTraits<1> {
628};
629DEFINE_TRANSPARENT_OPERAND_ACCESSORS(UnaryConstantExpr, Value)
630
631template <>
632struct OperandTraits<BinaryConstantExpr> : FixedNumOperandTraits<2> {
633};
634DEFINE_TRANSPARENT_OPERAND_ACCESSORS(BinaryConstantExpr, Value)
635
636template <>
637struct OperandTraits<SelectConstantExpr> : FixedNumOperandTraits<3> {
638};
639DEFINE_TRANSPARENT_OPERAND_ACCESSORS(SelectConstantExpr, Value)
640
641template <>
642struct OperandTraits<ExtractElementConstantExpr> : FixedNumOperandTraits<2> {
643};
644DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ExtractElementConstantExpr, Value)
645
646template <>
647struct OperandTraits<InsertElementConstantExpr> : FixedNumOperandTraits<3> {
648};
649DEFINE_TRANSPARENT_OPERAND_ACCESSORS(InsertElementConstantExpr, Value)
650
651template <>
652struct OperandTraits<ShuffleVectorConstantExpr> : FixedNumOperandTraits<3> {
653};
654DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ShuffleVectorConstantExpr, Value)
655
Dan Gohman12fce772008-05-15 19:50:34 +0000656template <>
Dan Gohman1ecaf452008-05-31 00:58:22 +0000657struct OperandTraits<ExtractValueConstantExpr> : FixedNumOperandTraits<1> {
Dan Gohman12fce772008-05-15 19:50:34 +0000658};
Dan Gohman12fce772008-05-15 19:50:34 +0000659DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ExtractValueConstantExpr, Value)
660
661template <>
Dan Gohman1ecaf452008-05-31 00:58:22 +0000662struct OperandTraits<InsertValueConstantExpr> : FixedNumOperandTraits<2> {
Dan Gohman12fce772008-05-15 19:50:34 +0000663};
Dan Gohman12fce772008-05-15 19:50:34 +0000664DEFINE_TRANSPARENT_OPERAND_ACCESSORS(InsertValueConstantExpr, Value)
665
Gabor Greiff6caff662008-05-10 08:32:32 +0000666template <>
667struct OperandTraits<GetElementPtrConstantExpr> : VariadicOperandTraits<1> {
668};
669
670GetElementPtrConstantExpr::GetElementPtrConstantExpr
671 (Constant *C,
672 const std::vector<Constant*> &IdxList,
673 const Type *DestTy)
674 : ConstantExpr(DestTy, Instruction::GetElementPtr,
675 OperandTraits<GetElementPtrConstantExpr>::op_end(this)
676 - (IdxList.size()+1),
677 IdxList.size()+1) {
Gabor Greif2d3024d2008-05-26 21:33:52 +0000678 OperandList[0] = C;
Gabor Greiff6caff662008-05-10 08:32:32 +0000679 for (unsigned i = 0, E = IdxList.size(); i != E; ++i)
Gabor Greif2d3024d2008-05-26 21:33:52 +0000680 OperandList[i+1] = IdxList[i];
Gabor Greiff6caff662008-05-10 08:32:32 +0000681}
682
683DEFINE_TRANSPARENT_OPERAND_ACCESSORS(GetElementPtrConstantExpr, Value)
684
685
686template <>
687struct OperandTraits<CompareConstantExpr> : FixedNumOperandTraits<2> {
688};
689DEFINE_TRANSPARENT_OPERAND_ACCESSORS(CompareConstantExpr, Value)
690
691
692} // End llvm namespace
693
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000694
695// Utility function for determining if a ConstantExpr is a CastOp or not. This
696// can't be inline because we don't want to #include Instruction.h into
697// Constant.h
698bool ConstantExpr::isCast() const {
699 return Instruction::isCast(getOpcode());
700}
701
Reid Spenceree3c9912006-12-04 05:19:50 +0000702bool ConstantExpr::isCompare() const {
703 return getOpcode() == Instruction::ICmp || getOpcode() == Instruction::FCmp;
704}
705
Dan Gohman1ecaf452008-05-31 00:58:22 +0000706bool ConstantExpr::hasIndices() const {
707 return getOpcode() == Instruction::ExtractValue ||
708 getOpcode() == Instruction::InsertValue;
709}
710
711const SmallVector<unsigned, 4> &ConstantExpr::getIndices() const {
712 if (const ExtractValueConstantExpr *EVCE =
713 dyn_cast<ExtractValueConstantExpr>(this))
714 return EVCE->Indices;
Dan Gohmana469bdb2008-06-23 16:39:44 +0000715
716 return cast<InsertValueConstantExpr>(this)->Indices;
Dan Gohman1ecaf452008-05-31 00:58:22 +0000717}
718
Chris Lattner817175f2004-03-29 02:37:53 +0000719/// ConstantExpr::get* - Return some common constants without having to
720/// specify the full Instruction::OPCODE identifier.
721///
722Constant *ConstantExpr::getNeg(Constant *C) {
Reid Spencer2eadb532007-01-21 00:29:26 +0000723 return get(Instruction::Sub,
724 ConstantExpr::getZeroValueForNegationExpr(C->getType()),
725 C);
Chris Lattner817175f2004-03-29 02:37:53 +0000726}
727Constant *ConstantExpr::getNot(Constant *C) {
Gordon Henriksen7ce31762007-10-06 14:29:36 +0000728 assert(isa<IntegerType>(C->getType()) && "Cannot NOT a nonintegral value!");
Chris Lattner817175f2004-03-29 02:37:53 +0000729 return get(Instruction::Xor, C,
Zhou Sheng75b871f2007-01-11 12:24:14 +0000730 ConstantInt::getAllOnesValue(C->getType()));
Chris Lattner817175f2004-03-29 02:37:53 +0000731}
732Constant *ConstantExpr::getAdd(Constant *C1, Constant *C2) {
733 return get(Instruction::Add, C1, C2);
734}
735Constant *ConstantExpr::getSub(Constant *C1, Constant *C2) {
736 return get(Instruction::Sub, C1, C2);
737}
738Constant *ConstantExpr::getMul(Constant *C1, Constant *C2) {
739 return get(Instruction::Mul, C1, C2);
740}
Reid Spencer7e80b0b2006-10-26 06:15:43 +0000741Constant *ConstantExpr::getUDiv(Constant *C1, Constant *C2) {
742 return get(Instruction::UDiv, C1, C2);
743}
744Constant *ConstantExpr::getSDiv(Constant *C1, Constant *C2) {
745 return get(Instruction::SDiv, C1, C2);
746}
747Constant *ConstantExpr::getFDiv(Constant *C1, Constant *C2) {
748 return get(Instruction::FDiv, C1, C2);
Chris Lattner817175f2004-03-29 02:37:53 +0000749}
Reid Spencer7eb55b32006-11-02 01:53:59 +0000750Constant *ConstantExpr::getURem(Constant *C1, Constant *C2) {
751 return get(Instruction::URem, C1, C2);
752}
753Constant *ConstantExpr::getSRem(Constant *C1, Constant *C2) {
754 return get(Instruction::SRem, C1, C2);
755}
756Constant *ConstantExpr::getFRem(Constant *C1, Constant *C2) {
757 return get(Instruction::FRem, C1, C2);
Chris Lattner817175f2004-03-29 02:37:53 +0000758}
759Constant *ConstantExpr::getAnd(Constant *C1, Constant *C2) {
760 return get(Instruction::And, C1, C2);
761}
762Constant *ConstantExpr::getOr(Constant *C1, Constant *C2) {
763 return get(Instruction::Or, C1, C2);
764}
765Constant *ConstantExpr::getXor(Constant *C1, Constant *C2) {
766 return get(Instruction::Xor, C1, C2);
767}
Reid Spencer10fbf0e2006-12-03 05:48:19 +0000768unsigned ConstantExpr::getPredicate() const {
Nate Begemand2195702008-05-12 19:01:56 +0000769 assert(getOpcode() == Instruction::FCmp ||
770 getOpcode() == Instruction::ICmp ||
771 getOpcode() == Instruction::VFCmp ||
772 getOpcode() == Instruction::VICmp);
Chris Lattneref650092007-10-18 16:26:24 +0000773 return ((const CompareConstantExpr*)this)->predicate;
Reid Spencer10fbf0e2006-12-03 05:48:19 +0000774}
Chris Lattner817175f2004-03-29 02:37:53 +0000775Constant *ConstantExpr::getShl(Constant *C1, Constant *C2) {
776 return get(Instruction::Shl, C1, C2);
777}
Reid Spencerfdff9382006-11-08 06:47:33 +0000778Constant *ConstantExpr::getLShr(Constant *C1, Constant *C2) {
779 return get(Instruction::LShr, C1, C2);
Chris Lattner817175f2004-03-29 02:37:53 +0000780}
Reid Spencerfdff9382006-11-08 06:47:33 +0000781Constant *ConstantExpr::getAShr(Constant *C1, Constant *C2) {
782 return get(Instruction::AShr, C1, C2);
Chris Lattnerdb8bdba2004-05-25 05:32:43 +0000783}
Chris Lattner60e0dd72001-10-03 06:12:09 +0000784
Chris Lattner7c1018a2006-07-14 19:37:40 +0000785/// getWithOperandReplaced - Return a constant expression identical to this
786/// one, but with the specified operand set to the specified value.
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000787Constant *
788ConstantExpr::getWithOperandReplaced(unsigned OpNo, Constant *Op) const {
Chris Lattner7c1018a2006-07-14 19:37:40 +0000789 assert(OpNo < getNumOperands() && "Operand num is out of range!");
790 assert(Op->getType() == getOperand(OpNo)->getType() &&
791 "Replacing operand with value of different type!");
Chris Lattner227816342006-07-14 22:20:01 +0000792 if (getOperand(OpNo) == Op)
793 return const_cast<ConstantExpr*>(this);
Chris Lattner7c1018a2006-07-14 19:37:40 +0000794
Chris Lattner227816342006-07-14 22:20:01 +0000795 Constant *Op0, *Op1, *Op2;
Chris Lattner7c1018a2006-07-14 19:37:40 +0000796 switch (getOpcode()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000797 case Instruction::Trunc:
798 case Instruction::ZExt:
799 case Instruction::SExt:
800 case Instruction::FPTrunc:
801 case Instruction::FPExt:
802 case Instruction::UIToFP:
803 case Instruction::SIToFP:
804 case Instruction::FPToUI:
805 case Instruction::FPToSI:
806 case Instruction::PtrToInt:
807 case Instruction::IntToPtr:
808 case Instruction::BitCast:
809 return ConstantExpr::getCast(getOpcode(), Op, getType());
Chris Lattner227816342006-07-14 22:20:01 +0000810 case Instruction::Select:
811 Op0 = (OpNo == 0) ? Op : getOperand(0);
812 Op1 = (OpNo == 1) ? Op : getOperand(1);
813 Op2 = (OpNo == 2) ? Op : getOperand(2);
814 return ConstantExpr::getSelect(Op0, Op1, Op2);
815 case Instruction::InsertElement:
816 Op0 = (OpNo == 0) ? Op : getOperand(0);
817 Op1 = (OpNo == 1) ? Op : getOperand(1);
818 Op2 = (OpNo == 2) ? Op : getOperand(2);
819 return ConstantExpr::getInsertElement(Op0, Op1, Op2);
820 case Instruction::ExtractElement:
821 Op0 = (OpNo == 0) ? Op : getOperand(0);
822 Op1 = (OpNo == 1) ? Op : getOperand(1);
823 return ConstantExpr::getExtractElement(Op0, Op1);
824 case Instruction::ShuffleVector:
825 Op0 = (OpNo == 0) ? Op : getOperand(0);
826 Op1 = (OpNo == 1) ? Op : getOperand(1);
827 Op2 = (OpNo == 2) ? Op : getOperand(2);
828 return ConstantExpr::getShuffleVector(Op0, Op1, Op2);
Dan Gohman12fce772008-05-15 19:50:34 +0000829 case Instruction::InsertValue: {
Dan Gohmana469bdb2008-06-23 16:39:44 +0000830 const SmallVector<unsigned, 4> &Indices = getIndices();
Dan Gohman1ecaf452008-05-31 00:58:22 +0000831 Op0 = (OpNo == 0) ? Op : getOperand(0);
832 Op1 = (OpNo == 1) ? Op : getOperand(1);
833 return ConstantExpr::getInsertValue(Op0, Op1,
834 &Indices[0], Indices.size());
Dan Gohman12fce772008-05-15 19:50:34 +0000835 }
836 case Instruction::ExtractValue: {
Dan Gohman1ecaf452008-05-31 00:58:22 +0000837 assert(OpNo == 0 && "ExtractaValue has only one operand!");
Dan Gohmana469bdb2008-06-23 16:39:44 +0000838 const SmallVector<unsigned, 4> &Indices = getIndices();
Dan Gohman1ecaf452008-05-31 00:58:22 +0000839 return
840 ConstantExpr::getExtractValue(Op, &Indices[0], Indices.size());
Dan Gohman12fce772008-05-15 19:50:34 +0000841 }
Chris Lattner7c1018a2006-07-14 19:37:40 +0000842 case Instruction::GetElementPtr: {
Chris Lattnerb5d70302007-02-19 20:01:23 +0000843 SmallVector<Constant*, 8> Ops;
Dan Gohman12fce772008-05-15 19:50:34 +0000844 Ops.resize(getNumOperands()-1);
Chris Lattner7c1018a2006-07-14 19:37:40 +0000845 for (unsigned i = 1, e = getNumOperands(); i != e; ++i)
Dan Gohman12fce772008-05-15 19:50:34 +0000846 Ops[i-1] = getOperand(i);
Chris Lattner7c1018a2006-07-14 19:37:40 +0000847 if (OpNo == 0)
Chris Lattnerb5d70302007-02-19 20:01:23 +0000848 return ConstantExpr::getGetElementPtr(Op, &Ops[0], Ops.size());
Chris Lattner7c1018a2006-07-14 19:37:40 +0000849 Ops[OpNo-1] = Op;
Chris Lattnerb5d70302007-02-19 20:01:23 +0000850 return ConstantExpr::getGetElementPtr(getOperand(0), &Ops[0], Ops.size());
Chris Lattner7c1018a2006-07-14 19:37:40 +0000851 }
Chris Lattner7c1018a2006-07-14 19:37:40 +0000852 default:
853 assert(getNumOperands() == 2 && "Must be binary operator?");
Chris Lattner227816342006-07-14 22:20:01 +0000854 Op0 = (OpNo == 0) ? Op : getOperand(0);
855 Op1 = (OpNo == 1) ? Op : getOperand(1);
856 return ConstantExpr::get(getOpcode(), Op0, Op1);
857 }
858}
859
860/// getWithOperands - This returns the current constant expression with the
861/// operands replaced with the specified values. The specified operands must
862/// match count and type with the existing ones.
863Constant *ConstantExpr::
864getWithOperands(const std::vector<Constant*> &Ops) const {
865 assert(Ops.size() == getNumOperands() && "Operand count mismatch!");
866 bool AnyChange = false;
867 for (unsigned i = 0, e = Ops.size(); i != e; ++i) {
868 assert(Ops[i]->getType() == getOperand(i)->getType() &&
869 "Operand type mismatch!");
870 AnyChange |= Ops[i] != getOperand(i);
871 }
872 if (!AnyChange) // No operands changed, return self.
873 return const_cast<ConstantExpr*>(this);
874
875 switch (getOpcode()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000876 case Instruction::Trunc:
877 case Instruction::ZExt:
878 case Instruction::SExt:
879 case Instruction::FPTrunc:
880 case Instruction::FPExt:
881 case Instruction::UIToFP:
882 case Instruction::SIToFP:
883 case Instruction::FPToUI:
884 case Instruction::FPToSI:
885 case Instruction::PtrToInt:
886 case Instruction::IntToPtr:
887 case Instruction::BitCast:
888 return ConstantExpr::getCast(getOpcode(), Ops[0], getType());
Chris Lattner227816342006-07-14 22:20:01 +0000889 case Instruction::Select:
890 return ConstantExpr::getSelect(Ops[0], Ops[1], Ops[2]);
891 case Instruction::InsertElement:
892 return ConstantExpr::getInsertElement(Ops[0], Ops[1], Ops[2]);
893 case Instruction::ExtractElement:
894 return ConstantExpr::getExtractElement(Ops[0], Ops[1]);
895 case Instruction::ShuffleVector:
896 return ConstantExpr::getShuffleVector(Ops[0], Ops[1], Ops[2]);
Dan Gohman1ecaf452008-05-31 00:58:22 +0000897 case Instruction::InsertValue: {
Dan Gohmana469bdb2008-06-23 16:39:44 +0000898 const SmallVector<unsigned, 4> &Indices = getIndices();
Dan Gohman1ecaf452008-05-31 00:58:22 +0000899 return ConstantExpr::getInsertValue(Ops[0], Ops[1],
900 &Indices[0], Indices.size());
901 }
902 case Instruction::ExtractValue: {
Dan Gohmana469bdb2008-06-23 16:39:44 +0000903 const SmallVector<unsigned, 4> &Indices = getIndices();
Dan Gohman1ecaf452008-05-31 00:58:22 +0000904 return ConstantExpr::getExtractValue(Ops[0],
905 &Indices[0], Indices.size());
906 }
Chris Lattnerb5d70302007-02-19 20:01:23 +0000907 case Instruction::GetElementPtr:
908 return ConstantExpr::getGetElementPtr(Ops[0], &Ops[1], Ops.size()-1);
Reid Spencer266e42b2006-12-23 06:05:41 +0000909 case Instruction::ICmp:
910 case Instruction::FCmp:
911 return ConstantExpr::getCompare(getPredicate(), Ops[0], Ops[1]);
Chris Lattner227816342006-07-14 22:20:01 +0000912 default:
913 assert(getNumOperands() == 2 && "Must be binary operator?");
914 return ConstantExpr::get(getOpcode(), Ops[0], Ops[1]);
Chris Lattner7c1018a2006-07-14 19:37:40 +0000915 }
916}
917
Chris Lattner2f7c9632001-06-06 20:29:01 +0000918
919//===----------------------------------------------------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +0000920// isValueValidForType implementations
921
Reid Spencere7334722006-12-19 01:28:19 +0000922bool ConstantInt::isValueValidForType(const Type *Ty, uint64_t Val) {
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000923 unsigned NumBits = cast<IntegerType>(Ty)->getBitWidth(); // assert okay
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000924 if (Ty == Type::Int1Ty)
925 return Val == 0 || Val == 1;
Reid Spencerd7a00d72007-02-05 23:47:56 +0000926 if (NumBits >= 64)
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000927 return true; // always true, has to fit in largest type
928 uint64_t Max = (1ll << NumBits) - 1;
929 return Val <= Max;
Reid Spencere7334722006-12-19 01:28:19 +0000930}
931
Reid Spencere0fc4df2006-10-20 07:07:24 +0000932bool ConstantInt::isValueValidForType(const Type *Ty, int64_t Val) {
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000933 unsigned NumBits = cast<IntegerType>(Ty)->getBitWidth(); // assert okay
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000934 if (Ty == Type::Int1Ty)
Reid Spencera94d3942007-01-19 21:13:56 +0000935 return Val == 0 || Val == 1 || Val == -1;
Reid Spencerd7a00d72007-02-05 23:47:56 +0000936 if (NumBits >= 64)
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000937 return true; // always true, has to fit in largest type
938 int64_t Min = -(1ll << (NumBits-1));
939 int64_t Max = (1ll << (NumBits-1)) - 1;
940 return (Val >= Min && Val <= Max);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000941}
942
Dale Johannesend246b2c2007-08-30 00:23:21 +0000943bool ConstantFP::isValueValidForType(const Type *Ty, const APFloat& Val) {
944 // convert modifies in place, so make a copy.
945 APFloat Val2 = APFloat(Val);
Chris Lattner6b727592004-06-17 18:19:28 +0000946 switch (Ty->getTypeID()) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000947 default:
948 return false; // These can't be represented as floating point!
949
Dale Johannesend246b2c2007-08-30 00:23:21 +0000950 // FIXME rounding mode needs to be more flexible
Chris Lattner2f7c9632001-06-06 20:29:01 +0000951 case Type::FloatTyID:
Dale Johannesend246b2c2007-08-30 00:23:21 +0000952 return &Val2.getSemantics() == &APFloat::IEEEsingle ||
953 Val2.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven) ==
954 APFloat::opOK;
Chris Lattner2f7c9632001-06-06 20:29:01 +0000955 case Type::DoubleTyID:
Dale Johannesend246b2c2007-08-30 00:23:21 +0000956 return &Val2.getSemantics() == &APFloat::IEEEsingle ||
957 &Val2.getSemantics() == &APFloat::IEEEdouble ||
958 Val2.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven) ==
959 APFloat::opOK;
Dale Johannesenbdad8092007-08-09 22:51:36 +0000960 case Type::X86_FP80TyID:
Dale Johannesen028084e2007-09-12 03:30:33 +0000961 return &Val2.getSemantics() == &APFloat::IEEEsingle ||
962 &Val2.getSemantics() == &APFloat::IEEEdouble ||
963 &Val2.getSemantics() == &APFloat::x87DoubleExtended;
Dale Johannesenbdad8092007-08-09 22:51:36 +0000964 case Type::FP128TyID:
Dale Johannesen028084e2007-09-12 03:30:33 +0000965 return &Val2.getSemantics() == &APFloat::IEEEsingle ||
966 &Val2.getSemantics() == &APFloat::IEEEdouble ||
967 &Val2.getSemantics() == &APFloat::IEEEquad;
Dale Johannesen007aa372007-10-11 18:07:22 +0000968 case Type::PPC_FP128TyID:
969 return &Val2.getSemantics() == &APFloat::IEEEsingle ||
970 &Val2.getSemantics() == &APFloat::IEEEdouble ||
971 &Val2.getSemantics() == &APFloat::PPCDoubleDouble;
Chris Lattner2f7c9632001-06-06 20:29:01 +0000972 }
Chris Lattneraa2372562006-05-24 17:04:05 +0000973}
Chris Lattner9655e542001-07-20 19:16:02 +0000974
Chris Lattner49d855c2001-09-07 16:46:31 +0000975//===----------------------------------------------------------------------===//
Chris Lattner49d855c2001-09-07 16:46:31 +0000976// Factory Function Implementation
977
Gabor Greiff6caff662008-05-10 08:32:32 +0000978
979// The number of operands for each ConstantCreator::create method is
980// determined by the ConstantTraits template.
Chris Lattner98fa07b2003-05-23 20:03:32 +0000981// ConstantCreator - A class that is used to create constants by
982// ValueMap*. This class should be partially specialized if there is
983// something strange that needs to be done to interface to the ctor for the
984// constant.
985//
Chris Lattner189d19f2003-11-21 20:23:48 +0000986namespace llvm {
Gabor Greiff6caff662008-05-10 08:32:32 +0000987 template<class ValType>
988 struct ConstantTraits;
989
990 template<typename T, typename Alloc>
991 struct VISIBILITY_HIDDEN ConstantTraits< std::vector<T, Alloc> > {
992 static unsigned uses(const std::vector<T, Alloc>& v) {
993 return v.size();
994 }
995 };
996
Chris Lattner189d19f2003-11-21 20:23:48 +0000997 template<class ConstantClass, class TypeClass, class ValType>
Chris Lattner02157b02006-06-28 21:38:54 +0000998 struct VISIBILITY_HIDDEN ConstantCreator {
Chris Lattner189d19f2003-11-21 20:23:48 +0000999 static ConstantClass *create(const TypeClass *Ty, const ValType &V) {
Gabor Greiff6caff662008-05-10 08:32:32 +00001000 return new(ConstantTraits<ValType>::uses(V)) ConstantClass(Ty, V);
Chris Lattner189d19f2003-11-21 20:23:48 +00001001 }
1002 };
Misha Brukmanb1c93172005-04-21 23:48:37 +00001003
Chris Lattner189d19f2003-11-21 20:23:48 +00001004 template<class ConstantClass, class TypeClass>
Chris Lattner02157b02006-06-28 21:38:54 +00001005 struct VISIBILITY_HIDDEN ConvertConstantType {
Chris Lattner189d19f2003-11-21 20:23:48 +00001006 static void convert(ConstantClass *OldC, const TypeClass *NewTy) {
1007 assert(0 && "This type cannot be converted!\n");
1008 abort();
1009 }
1010 };
Chris Lattnerb50d1352003-10-05 00:17:43 +00001011
Chris Lattner935aa922005-10-04 17:48:46 +00001012 template<class ValType, class TypeClass, class ConstantClass,
1013 bool HasLargeKey = false /*true for arrays and structs*/ >
Chris Lattner02157b02006-06-28 21:38:54 +00001014 class VISIBILITY_HIDDEN ValueMap : public AbstractTypeUser {
Chris Lattnerb64419a2005-10-03 22:51:37 +00001015 public:
Jim Laskeyc03caef2006-07-17 17:38:29 +00001016 typedef std::pair<const Type*, ValType> MapKey;
1017 typedef std::map<MapKey, Constant *> MapTy;
1018 typedef std::map<Constant*, typename MapTy::iterator> InverseMapTy;
1019 typedef std::map<const Type*, typename MapTy::iterator> AbstractTypeMapTy;
Chris Lattnerb64419a2005-10-03 22:51:37 +00001020 private:
Chris Lattner5bbf60a52005-10-04 16:52:46 +00001021 /// Map - This is the main map from the element descriptor to the Constants.
1022 /// This is the primary way we avoid creating two of the same shape
1023 /// constant.
Chris Lattnerb50d1352003-10-05 00:17:43 +00001024 MapTy Map;
Chris Lattner935aa922005-10-04 17:48:46 +00001025
1026 /// InverseMap - If "HasLargeKey" is true, this contains an inverse mapping
1027 /// from the constants to their element in Map. This is important for
1028 /// removal of constants from the array, which would otherwise have to scan
1029 /// through the map with very large keys.
Jim Laskeyc03caef2006-07-17 17:38:29 +00001030 InverseMapTy InverseMap;
Chris Lattnerb50d1352003-10-05 00:17:43 +00001031
Jim Laskeyc03caef2006-07-17 17:38:29 +00001032 /// AbstractTypeMap - Map for abstract type constants.
1033 ///
Chris Lattnerb50d1352003-10-05 00:17:43 +00001034 AbstractTypeMapTy AbstractTypeMap;
Chris Lattner99a669b2004-11-19 16:39:44 +00001035
Chris Lattner98fa07b2003-05-23 20:03:32 +00001036 public:
Jim Laskeyc03caef2006-07-17 17:38:29 +00001037 typename MapTy::iterator map_end() { return Map.end(); }
Chris Lattnerb64419a2005-10-03 22:51:37 +00001038
1039 /// InsertOrGetItem - Return an iterator for the specified element.
1040 /// If the element exists in the map, the returned iterator points to the
1041 /// entry and Exists=true. If not, the iterator points to the newly
1042 /// inserted entry and returns Exists=false. Newly inserted entries have
1043 /// I->second == 0, and should be filled in.
Jim Laskeyc03caef2006-07-17 17:38:29 +00001044 typename MapTy::iterator InsertOrGetItem(std::pair<MapKey, Constant *>
1045 &InsertVal,
Chris Lattnerb64419a2005-10-03 22:51:37 +00001046 bool &Exists) {
Jim Laskeyc03caef2006-07-17 17:38:29 +00001047 std::pair<typename MapTy::iterator, bool> IP = Map.insert(InsertVal);
Chris Lattnerb64419a2005-10-03 22:51:37 +00001048 Exists = !IP.second;
1049 return IP.first;
1050 }
Chris Lattner5bbf60a52005-10-04 16:52:46 +00001051
Chris Lattner935aa922005-10-04 17:48:46 +00001052private:
Jim Laskeyc03caef2006-07-17 17:38:29 +00001053 typename MapTy::iterator FindExistingElement(ConstantClass *CP) {
Chris Lattner935aa922005-10-04 17:48:46 +00001054 if (HasLargeKey) {
Jim Laskeyc03caef2006-07-17 17:38:29 +00001055 typename InverseMapTy::iterator IMI = InverseMap.find(CP);
Chris Lattner935aa922005-10-04 17:48:46 +00001056 assert(IMI != InverseMap.end() && IMI->second != Map.end() &&
1057 IMI->second->second == CP &&
1058 "InverseMap corrupt!");
1059 return IMI->second;
1060 }
1061
Jim Laskeyc03caef2006-07-17 17:38:29 +00001062 typename MapTy::iterator I =
Chris Lattner935aa922005-10-04 17:48:46 +00001063 Map.find(MapKey((TypeClass*)CP->getRawType(), getValType(CP)));
Chris Lattner5bbf60a52005-10-04 16:52:46 +00001064 if (I == Map.end() || I->second != CP) {
1065 // FIXME: This should not use a linear scan. If this gets to be a
1066 // performance problem, someone should look at this.
1067 for (I = Map.begin(); I != Map.end() && I->second != CP; ++I)
1068 /* empty */;
1069 }
Chris Lattner935aa922005-10-04 17:48:46 +00001070 return I;
1071 }
1072public:
1073
Chris Lattnerb64419a2005-10-03 22:51:37 +00001074 /// getOrCreate - Return the specified constant from the map, creating it if
1075 /// necessary.
Chris Lattner98fa07b2003-05-23 20:03:32 +00001076 ConstantClass *getOrCreate(const TypeClass *Ty, const ValType &V) {
Chris Lattnerb50d1352003-10-05 00:17:43 +00001077 MapKey Lookup(Ty, V);
Jim Laskeyc03caef2006-07-17 17:38:29 +00001078 typename MapTy::iterator I = Map.lower_bound(Lookup);
Reid Spencere0fc4df2006-10-20 07:07:24 +00001079 // Is it in the map?
Chris Lattner98fa07b2003-05-23 20:03:32 +00001080 if (I != Map.end() && I->first == Lookup)
Reid Spencere0fc4df2006-10-20 07:07:24 +00001081 return static_cast<ConstantClass *>(I->second);
Chris Lattner98fa07b2003-05-23 20:03:32 +00001082
1083 // If no preexisting value, create one now...
1084 ConstantClass *Result =
1085 ConstantCreator<ConstantClass,TypeClass,ValType>::create(Ty, V);
1086
Chris Lattnerb50d1352003-10-05 00:17:43 +00001087 /// FIXME: why does this assert fail when loading 176.gcc?
1088 //assert(Result->getType() == Ty && "Type specified is not correct!");
1089 I = Map.insert(I, std::make_pair(MapKey(Ty, V), Result));
1090
Chris Lattner935aa922005-10-04 17:48:46 +00001091 if (HasLargeKey) // Remember the reverse mapping if needed.
1092 InverseMap.insert(std::make_pair(Result, I));
1093
Chris Lattnerb50d1352003-10-05 00:17:43 +00001094 // If the type of the constant is abstract, make sure that an entry exists
1095 // for it in the AbstractTypeMap.
1096 if (Ty->isAbstract()) {
1097 typename AbstractTypeMapTy::iterator TI =
1098 AbstractTypeMap.lower_bound(Ty);
1099
1100 if (TI == AbstractTypeMap.end() || TI->first != Ty) {
1101 // Add ourselves to the ATU list of the type.
1102 cast<DerivedType>(Ty)->addAbstractTypeUser(this);
1103
1104 AbstractTypeMap.insert(TI, std::make_pair(Ty, I));
1105 }
1106 }
Chris Lattner98fa07b2003-05-23 20:03:32 +00001107 return Result;
1108 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00001109
Chris Lattner98fa07b2003-05-23 20:03:32 +00001110 void remove(ConstantClass *CP) {
Jim Laskeyc03caef2006-07-17 17:38:29 +00001111 typename MapTy::iterator I = FindExistingElement(CP);
Chris Lattnerb50d1352003-10-05 00:17:43 +00001112 assert(I != Map.end() && "Constant not found in constant table!");
Chris Lattner3e650af2004-08-04 04:48:01 +00001113 assert(I->second == CP && "Didn't find correct element?");
Chris Lattnerb50d1352003-10-05 00:17:43 +00001114
Chris Lattner935aa922005-10-04 17:48:46 +00001115 if (HasLargeKey) // Remember the reverse mapping if needed.
1116 InverseMap.erase(CP);
1117
Chris Lattnerb50d1352003-10-05 00:17:43 +00001118 // Now that we found the entry, make sure this isn't the entry that
1119 // the AbstractTypeMap points to.
Jim Laskeyc03caef2006-07-17 17:38:29 +00001120 const TypeClass *Ty = static_cast<const TypeClass *>(I->first.first);
Chris Lattnerb50d1352003-10-05 00:17:43 +00001121 if (Ty->isAbstract()) {
1122 assert(AbstractTypeMap.count(Ty) &&
1123 "Abstract type not in AbstractTypeMap?");
Jim Laskeyc03caef2006-07-17 17:38:29 +00001124 typename MapTy::iterator &ATMEntryIt = AbstractTypeMap[Ty];
Chris Lattnerb50d1352003-10-05 00:17:43 +00001125 if (ATMEntryIt == I) {
1126 // Yes, we are removing the representative entry for this type.
1127 // See if there are any other entries of the same type.
Jim Laskeyc03caef2006-07-17 17:38:29 +00001128 typename MapTy::iterator TmpIt = ATMEntryIt;
Misha Brukmanb1c93172005-04-21 23:48:37 +00001129
Chris Lattnerb50d1352003-10-05 00:17:43 +00001130 // First check the entry before this one...
1131 if (TmpIt != Map.begin()) {
1132 --TmpIt;
1133 if (TmpIt->first.first != Ty) // Not the same type, move back...
1134 ++TmpIt;
1135 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00001136
Chris Lattnerb50d1352003-10-05 00:17:43 +00001137 // If we didn't find the same type, try to move forward...
1138 if (TmpIt == ATMEntryIt) {
1139 ++TmpIt;
1140 if (TmpIt == Map.end() || TmpIt->first.first != Ty)
1141 --TmpIt; // No entry afterwards with the same type
1142 }
1143
1144 // If there is another entry in the map of the same abstract type,
1145 // update the AbstractTypeMap entry now.
1146 if (TmpIt != ATMEntryIt) {
1147 ATMEntryIt = TmpIt;
1148 } else {
1149 // Otherwise, we are removing the last instance of this type
1150 // from the table. Remove from the ATM, and from user list.
1151 cast<DerivedType>(Ty)->removeAbstractTypeUser(this);
1152 AbstractTypeMap.erase(Ty);
1153 }
Chris Lattner98fa07b2003-05-23 20:03:32 +00001154 }
Chris Lattnerb50d1352003-10-05 00:17:43 +00001155 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00001156
Chris Lattnerb50d1352003-10-05 00:17:43 +00001157 Map.erase(I);
1158 }
1159
Chris Lattner3b793c62005-10-04 21:35:50 +00001160
1161 /// MoveConstantToNewSlot - If we are about to change C to be the element
1162 /// specified by I, update our internal data structures to reflect this
1163 /// fact.
Jim Laskeyc03caef2006-07-17 17:38:29 +00001164 void MoveConstantToNewSlot(ConstantClass *C, typename MapTy::iterator I) {
Chris Lattner3b793c62005-10-04 21:35:50 +00001165 // First, remove the old location of the specified constant in the map.
Jim Laskeyc03caef2006-07-17 17:38:29 +00001166 typename MapTy::iterator OldI = FindExistingElement(C);
Chris Lattner3b793c62005-10-04 21:35:50 +00001167 assert(OldI != Map.end() && "Constant not found in constant table!");
1168 assert(OldI->second == C && "Didn't find correct element?");
1169
1170 // If this constant is the representative element for its abstract type,
1171 // update the AbstractTypeMap so that the representative element is I.
1172 if (C->getType()->isAbstract()) {
1173 typename AbstractTypeMapTy::iterator ATI =
1174 AbstractTypeMap.find(C->getType());
1175 assert(ATI != AbstractTypeMap.end() &&
1176 "Abstract type not in AbstractTypeMap?");
1177 if (ATI->second == OldI)
1178 ATI->second = I;
1179 }
1180
1181 // Remove the old entry from the map.
1182 Map.erase(OldI);
1183
1184 // Update the inverse map so that we know that this constant is now
1185 // located at descriptor I.
1186 if (HasLargeKey) {
1187 assert(I->second == C && "Bad inversemap entry!");
1188 InverseMap[C] = I;
1189 }
1190 }
1191
Chris Lattnerb50d1352003-10-05 00:17:43 +00001192 void refineAbstractType(const DerivedType *OldTy, const Type *NewTy) {
Misha Brukmanb1c93172005-04-21 23:48:37 +00001193 typename AbstractTypeMapTy::iterator I =
Jim Laskeyc03caef2006-07-17 17:38:29 +00001194 AbstractTypeMap.find(cast<Type>(OldTy));
Chris Lattnerb50d1352003-10-05 00:17:43 +00001195
1196 assert(I != AbstractTypeMap.end() &&
1197 "Abstract type not in AbstractTypeMap?");
1198
1199 // Convert a constant at a time until the last one is gone. The last one
1200 // leaving will remove() itself, causing the AbstractTypeMapEntry to be
1201 // eliminated eventually.
1202 do {
1203 ConvertConstantType<ConstantClass,
Jim Laskeyc03caef2006-07-17 17:38:29 +00001204 TypeClass>::convert(
1205 static_cast<ConstantClass *>(I->second->second),
Chris Lattnerb50d1352003-10-05 00:17:43 +00001206 cast<TypeClass>(NewTy));
1207
Jim Laskeyc03caef2006-07-17 17:38:29 +00001208 I = AbstractTypeMap.find(cast<Type>(OldTy));
Chris Lattnerb50d1352003-10-05 00:17:43 +00001209 } while (I != AbstractTypeMap.end());
1210 }
1211
1212 // If the type became concrete without being refined to any other existing
1213 // type, we just remove ourselves from the ATU list.
1214 void typeBecameConcrete(const DerivedType *AbsTy) {
1215 AbsTy->removeAbstractTypeUser(this);
1216 }
1217
1218 void dump() const {
Bill Wendling6a462f12006-11-17 08:03:48 +00001219 DOUT << "Constant.cpp: ValueMap\n";
Chris Lattner98fa07b2003-05-23 20:03:32 +00001220 }
1221 };
1222}
1223
Chris Lattnera84df0a22006-09-28 23:36:21 +00001224
Chris Lattner28173502007-02-20 06:11:36 +00001225
Chris Lattner9fba3da2004-02-15 05:53:04 +00001226//---- ConstantAggregateZero::get() implementation...
1227//
1228namespace llvm {
1229 // ConstantAggregateZero does not take extra "value" argument...
1230 template<class ValType>
1231 struct ConstantCreator<ConstantAggregateZero, Type, ValType> {
1232 static ConstantAggregateZero *create(const Type *Ty, const ValType &V){
1233 return new ConstantAggregateZero(Ty);
1234 }
1235 };
1236
1237 template<>
1238 struct ConvertConstantType<ConstantAggregateZero, Type> {
1239 static void convert(ConstantAggregateZero *OldC, const Type *NewTy) {
1240 // Make everyone now use a constant of the new type...
1241 Constant *New = ConstantAggregateZero::get(NewTy);
1242 assert(New != OldC && "Didn't replace constant??");
1243 OldC->uncheckedReplaceAllUsesWith(New);
1244 OldC->destroyConstant(); // This constant is now dead, destroy it.
1245 }
1246 };
1247}
1248
Chris Lattner69edc982006-09-28 00:35:06 +00001249static ManagedStatic<ValueMap<char, Type,
1250 ConstantAggregateZero> > AggZeroConstants;
Chris Lattner9fba3da2004-02-15 05:53:04 +00001251
Chris Lattner3e650af2004-08-04 04:48:01 +00001252static char getValType(ConstantAggregateZero *CPZ) { return 0; }
1253
Chris Lattner9fba3da2004-02-15 05:53:04 +00001254Constant *ConstantAggregateZero::get(const Type *Ty) {
Reid Spencerd84d35b2007-02-15 02:26:10 +00001255 assert((isa<StructType>(Ty) || isa<ArrayType>(Ty) || isa<VectorType>(Ty)) &&
Chris Lattnerbfd0b6d2006-06-10 04:16:23 +00001256 "Cannot create an aggregate zero of non-aggregate type!");
Chris Lattner69edc982006-09-28 00:35:06 +00001257 return AggZeroConstants->getOrCreate(Ty, 0);
Chris Lattner9fba3da2004-02-15 05:53:04 +00001258}
1259
1260// destroyConstant - Remove the constant from the constant table...
1261//
1262void ConstantAggregateZero::destroyConstant() {
Chris Lattner69edc982006-09-28 00:35:06 +00001263 AggZeroConstants->remove(this);
Chris Lattner9fba3da2004-02-15 05:53:04 +00001264 destroyConstantImpl();
1265}
1266
Chris Lattner3462ae32001-12-03 22:26:30 +00001267//---- ConstantArray::get() implementation...
Chris Lattner49d855c2001-09-07 16:46:31 +00001268//
Chris Lattner189d19f2003-11-21 20:23:48 +00001269namespace llvm {
1270 template<>
1271 struct ConvertConstantType<ConstantArray, ArrayType> {
1272 static void convert(ConstantArray *OldC, const ArrayType *NewTy) {
1273 // Make everyone now use a constant of the new type...
1274 std::vector<Constant*> C;
1275 for (unsigned i = 0, e = OldC->getNumOperands(); i != e; ++i)
1276 C.push_back(cast<Constant>(OldC->getOperand(i)));
1277 Constant *New = ConstantArray::get(NewTy, C);
1278 assert(New != OldC && "Didn't replace constant??");
1279 OldC->uncheckedReplaceAllUsesWith(New);
1280 OldC->destroyConstant(); // This constant is now dead, destroy it.
1281 }
1282 };
1283}
Chris Lattnerb50d1352003-10-05 00:17:43 +00001284
Chris Lattner3e650af2004-08-04 04:48:01 +00001285static std::vector<Constant*> getValType(ConstantArray *CA) {
1286 std::vector<Constant*> Elements;
1287 Elements.reserve(CA->getNumOperands());
1288 for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i)
1289 Elements.push_back(cast<Constant>(CA->getOperand(i)));
1290 return Elements;
1291}
1292
Chris Lattnerb64419a2005-10-03 22:51:37 +00001293typedef ValueMap<std::vector<Constant*>, ArrayType,
Chris Lattner935aa922005-10-04 17:48:46 +00001294 ConstantArray, true /*largekey*/> ArrayConstantsTy;
Chris Lattner69edc982006-09-28 00:35:06 +00001295static ManagedStatic<ArrayConstantsTy> ArrayConstants;
Chris Lattner49d855c2001-09-07 16:46:31 +00001296
Chris Lattner015e8212004-02-15 04:14:47 +00001297Constant *ConstantArray::get(const ArrayType *Ty,
Chris Lattner9fba3da2004-02-15 05:53:04 +00001298 const std::vector<Constant*> &V) {
1299 // If this is an all-zero array, return a ConstantAggregateZero object
1300 if (!V.empty()) {
1301 Constant *C = V[0];
1302 if (!C->isNullValue())
Chris Lattner69edc982006-09-28 00:35:06 +00001303 return ArrayConstants->getOrCreate(Ty, V);
Chris Lattner9fba3da2004-02-15 05:53:04 +00001304 for (unsigned i = 1, e = V.size(); i != e; ++i)
1305 if (V[i] != C)
Chris Lattner69edc982006-09-28 00:35:06 +00001306 return ArrayConstants->getOrCreate(Ty, V);
Chris Lattner9fba3da2004-02-15 05:53:04 +00001307 }
1308 return ConstantAggregateZero::get(Ty);
Chris Lattner49d855c2001-09-07 16:46:31 +00001309}
1310
Chris Lattner98fa07b2003-05-23 20:03:32 +00001311// destroyConstant - Remove the constant from the constant table...
1312//
1313void ConstantArray::destroyConstant() {
Chris Lattner69edc982006-09-28 00:35:06 +00001314 ArrayConstants->remove(this);
Chris Lattner98fa07b2003-05-23 20:03:32 +00001315 destroyConstantImpl();
1316}
1317
Reid Spencer6f614532006-05-30 08:23:18 +00001318/// ConstantArray::get(const string&) - Return an array that is initialized to
1319/// contain the specified string. If length is zero then a null terminator is
1320/// added to the specified string so that it may be used in a natural way.
1321/// Otherwise, the length parameter specifies how much of the string to use
1322/// and it won't be null terminated.
1323///
Reid Spencer82ebaba2006-05-30 18:15:07 +00001324Constant *ConstantArray::get(const std::string &Str, bool AddNull) {
Chris Lattner7f74a562002-01-20 22:54:45 +00001325 std::vector<Constant*> ElementVals;
Reid Spencer82ebaba2006-05-30 18:15:07 +00001326 for (unsigned i = 0; i < Str.length(); ++i)
Reid Spencer8d9336d2006-12-31 05:26:44 +00001327 ElementVals.push_back(ConstantInt::get(Type::Int8Ty, Str[i]));
Chris Lattner8f80fe02001-10-14 23:54:12 +00001328
1329 // Add a null terminator to the string...
Reid Spencer82ebaba2006-05-30 18:15:07 +00001330 if (AddNull) {
Reid Spencer8d9336d2006-12-31 05:26:44 +00001331 ElementVals.push_back(ConstantInt::get(Type::Int8Ty, 0));
Reid Spencer6f614532006-05-30 08:23:18 +00001332 }
Chris Lattner8f80fe02001-10-14 23:54:12 +00001333
Reid Spencer8d9336d2006-12-31 05:26:44 +00001334 ArrayType *ATy = ArrayType::get(Type::Int8Ty, ElementVals.size());
Chris Lattner3462ae32001-12-03 22:26:30 +00001335 return ConstantArray::get(ATy, ElementVals);
Vikram S. Adve34410432001-10-14 23:17:20 +00001336}
1337
Reid Spencer2546b762007-01-26 07:37:34 +00001338/// isString - This method returns true if the array is an array of i8, and
1339/// if the elements of the array are all ConstantInt's.
Chris Lattnere8dfcca2004-01-14 17:06:38 +00001340bool ConstantArray::isString() const {
Reid Spencer2546b762007-01-26 07:37:34 +00001341 // Check the element type for i8...
Reid Spencer8d9336d2006-12-31 05:26:44 +00001342 if (getType()->getElementType() != Type::Int8Ty)
Chris Lattnere8dfcca2004-01-14 17:06:38 +00001343 return false;
1344 // Check the elements to make sure they are all integers, not constant
1345 // expressions.
1346 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
1347 if (!isa<ConstantInt>(getOperand(i)))
1348 return false;
1349 return true;
1350}
1351
Evan Cheng3763c5b2006-10-26 19:15:05 +00001352/// isCString - This method returns true if the array is a string (see
1353/// isString) and it ends in a null byte \0 and does not contains any other
1354/// null bytes except its terminator.
1355bool ConstantArray::isCString() const {
Reid Spencer2546b762007-01-26 07:37:34 +00001356 // Check the element type for i8...
Reid Spencer8d9336d2006-12-31 05:26:44 +00001357 if (getType()->getElementType() != Type::Int8Ty)
Evan Chenge974da62006-10-26 21:48:03 +00001358 return false;
1359 Constant *Zero = Constant::getNullValue(getOperand(0)->getType());
1360 // Last element must be a null.
1361 if (getOperand(getNumOperands()-1) != Zero)
1362 return false;
1363 // Other elements must be non-null integers.
1364 for (unsigned i = 0, e = getNumOperands()-1; i != e; ++i) {
1365 if (!isa<ConstantInt>(getOperand(i)))
Evan Cheng3763c5b2006-10-26 19:15:05 +00001366 return false;
Evan Chenge974da62006-10-26 21:48:03 +00001367 if (getOperand(i) == Zero)
1368 return false;
1369 }
Evan Cheng3763c5b2006-10-26 19:15:05 +00001370 return true;
1371}
1372
1373
Reid Spencer2546b762007-01-26 07:37:34 +00001374// getAsString - If the sub-element type of this array is i8
Chris Lattner81fabb02002-08-26 17:53:56 +00001375// then this method converts the array to an std::string and returns it.
1376// Otherwise, it asserts out.
1377//
1378std::string ConstantArray::getAsString() const {
Chris Lattnere8dfcca2004-01-14 17:06:38 +00001379 assert(isString() && "Not a string!");
Chris Lattner81fabb02002-08-26 17:53:56 +00001380 std::string Result;
Owen Anderson79c69bc2008-06-24 21:58:29 +00001381 Result.reserve(getNumOperands());
Chris Lattner6077c312003-07-23 15:22:26 +00001382 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Owen Anderson79c69bc2008-06-24 21:58:29 +00001383 Result[i] = (char)cast<ConstantInt>(getOperand(i))->getZExtValue();
Chris Lattner81fabb02002-08-26 17:53:56 +00001384 return Result;
1385}
1386
1387
Chris Lattner3462ae32001-12-03 22:26:30 +00001388//---- ConstantStruct::get() implementation...
Chris Lattner49d855c2001-09-07 16:46:31 +00001389//
Chris Lattnerb50d1352003-10-05 00:17:43 +00001390
Chris Lattner189d19f2003-11-21 20:23:48 +00001391namespace llvm {
1392 template<>
1393 struct ConvertConstantType<ConstantStruct, StructType> {
1394 static void convert(ConstantStruct *OldC, const StructType *NewTy) {
1395 // Make everyone now use a constant of the new type...
1396 std::vector<Constant*> C;
1397 for (unsigned i = 0, e = OldC->getNumOperands(); i != e; ++i)
1398 C.push_back(cast<Constant>(OldC->getOperand(i)));
1399 Constant *New = ConstantStruct::get(NewTy, C);
1400 assert(New != OldC && "Didn't replace constant??");
Misha Brukmanb1c93172005-04-21 23:48:37 +00001401
Chris Lattner189d19f2003-11-21 20:23:48 +00001402 OldC->uncheckedReplaceAllUsesWith(New);
1403 OldC->destroyConstant(); // This constant is now dead, destroy it.
1404 }
1405 };
1406}
Chris Lattnerb50d1352003-10-05 00:17:43 +00001407
Chris Lattner8760ec72005-10-04 01:17:50 +00001408typedef ValueMap<std::vector<Constant*>, StructType,
Chris Lattner935aa922005-10-04 17:48:46 +00001409 ConstantStruct, true /*largekey*/> StructConstantsTy;
Chris Lattner69edc982006-09-28 00:35:06 +00001410static ManagedStatic<StructConstantsTy> StructConstants;
Chris Lattner49d855c2001-09-07 16:46:31 +00001411
Chris Lattner3e650af2004-08-04 04:48:01 +00001412static std::vector<Constant*> getValType(ConstantStruct *CS) {
1413 std::vector<Constant*> Elements;
1414 Elements.reserve(CS->getNumOperands());
1415 for (unsigned i = 0, e = CS->getNumOperands(); i != e; ++i)
1416 Elements.push_back(cast<Constant>(CS->getOperand(i)));
1417 return Elements;
1418}
1419
Chris Lattner015e8212004-02-15 04:14:47 +00001420Constant *ConstantStruct::get(const StructType *Ty,
1421 const std::vector<Constant*> &V) {
Chris Lattner9fba3da2004-02-15 05:53:04 +00001422 // Create a ConstantAggregateZero value if all elements are zeros...
1423 for (unsigned i = 0, e = V.size(); i != e; ++i)
1424 if (!V[i]->isNullValue())
Chris Lattner69edc982006-09-28 00:35:06 +00001425 return StructConstants->getOrCreate(Ty, V);
Chris Lattner9fba3da2004-02-15 05:53:04 +00001426
1427 return ConstantAggregateZero::get(Ty);
Chris Lattner49d855c2001-09-07 16:46:31 +00001428}
Chris Lattner883ad0b2001-10-03 15:39:36 +00001429
Andrew Lenharthdcb3c972006-12-08 18:06:16 +00001430Constant *ConstantStruct::get(const std::vector<Constant*> &V, bool packed) {
Chris Lattnerd6108ca2004-07-12 20:35:11 +00001431 std::vector<const Type*> StructEls;
1432 StructEls.reserve(V.size());
1433 for (unsigned i = 0, e = V.size(); i != e; ++i)
1434 StructEls.push_back(V[i]->getType());
Andrew Lenharthdcb3c972006-12-08 18:06:16 +00001435 return get(StructType::get(StructEls, packed), V);
Chris Lattnerd6108ca2004-07-12 20:35:11 +00001436}
1437
Chris Lattnerd7a73302001-10-13 06:57:33 +00001438// destroyConstant - Remove the constant from the constant table...
Chris Lattner883ad0b2001-10-03 15:39:36 +00001439//
Chris Lattner3462ae32001-12-03 22:26:30 +00001440void ConstantStruct::destroyConstant() {
Chris Lattner69edc982006-09-28 00:35:06 +00001441 StructConstants->remove(this);
Chris Lattnerd7a73302001-10-13 06:57:33 +00001442 destroyConstantImpl();
1443}
Chris Lattner883ad0b2001-10-03 15:39:36 +00001444
Reid Spencerd84d35b2007-02-15 02:26:10 +00001445//---- ConstantVector::get() implementation...
Brian Gaeke02209042004-08-20 06:00:58 +00001446//
1447namespace llvm {
1448 template<>
Reid Spencerd84d35b2007-02-15 02:26:10 +00001449 struct ConvertConstantType<ConstantVector, VectorType> {
1450 static void convert(ConstantVector *OldC, const VectorType *NewTy) {
Brian Gaeke02209042004-08-20 06:00:58 +00001451 // Make everyone now use a constant of the new type...
1452 std::vector<Constant*> C;
1453 for (unsigned i = 0, e = OldC->getNumOperands(); i != e; ++i)
1454 C.push_back(cast<Constant>(OldC->getOperand(i)));
Reid Spencerd84d35b2007-02-15 02:26:10 +00001455 Constant *New = ConstantVector::get(NewTy, C);
Brian Gaeke02209042004-08-20 06:00:58 +00001456 assert(New != OldC && "Didn't replace constant??");
1457 OldC->uncheckedReplaceAllUsesWith(New);
1458 OldC->destroyConstant(); // This constant is now dead, destroy it.
1459 }
1460 };
1461}
1462
Reid Spencerd84d35b2007-02-15 02:26:10 +00001463static std::vector<Constant*> getValType(ConstantVector *CP) {
Brian Gaeke02209042004-08-20 06:00:58 +00001464 std::vector<Constant*> Elements;
1465 Elements.reserve(CP->getNumOperands());
1466 for (unsigned i = 0, e = CP->getNumOperands(); i != e; ++i)
1467 Elements.push_back(CP->getOperand(i));
1468 return Elements;
1469}
1470
Reid Spencerd84d35b2007-02-15 02:26:10 +00001471static ManagedStatic<ValueMap<std::vector<Constant*>, VectorType,
Reid Spencer09575ba2007-02-15 03:39:18 +00001472 ConstantVector> > VectorConstants;
Brian Gaeke02209042004-08-20 06:00:58 +00001473
Reid Spencerd84d35b2007-02-15 02:26:10 +00001474Constant *ConstantVector::get(const VectorType *Ty,
Brian Gaeke02209042004-08-20 06:00:58 +00001475 const std::vector<Constant*> &V) {
Dan Gohman30978072007-05-24 14:36:04 +00001476 // If this is an all-zero vector, return a ConstantAggregateZero object
Brian Gaeke02209042004-08-20 06:00:58 +00001477 if (!V.empty()) {
1478 Constant *C = V[0];
1479 if (!C->isNullValue())
Reid Spencer09575ba2007-02-15 03:39:18 +00001480 return VectorConstants->getOrCreate(Ty, V);
Brian Gaeke02209042004-08-20 06:00:58 +00001481 for (unsigned i = 1, e = V.size(); i != e; ++i)
1482 if (V[i] != C)
Reid Spencer09575ba2007-02-15 03:39:18 +00001483 return VectorConstants->getOrCreate(Ty, V);
Brian Gaeke02209042004-08-20 06:00:58 +00001484 }
1485 return ConstantAggregateZero::get(Ty);
1486}
1487
Reid Spencerd84d35b2007-02-15 02:26:10 +00001488Constant *ConstantVector::get(const std::vector<Constant*> &V) {
Brian Gaeke02209042004-08-20 06:00:58 +00001489 assert(!V.empty() && "Cannot infer type if V is empty");
Reid Spencerd84d35b2007-02-15 02:26:10 +00001490 return get(VectorType::get(V.front()->getType(),V.size()), V);
Brian Gaeke02209042004-08-20 06:00:58 +00001491}
1492
1493// destroyConstant - Remove the constant from the constant table...
1494//
Reid Spencerd84d35b2007-02-15 02:26:10 +00001495void ConstantVector::destroyConstant() {
Reid Spencer09575ba2007-02-15 03:39:18 +00001496 VectorConstants->remove(this);
Brian Gaeke02209042004-08-20 06:00:58 +00001497 destroyConstantImpl();
1498}
1499
Dan Gohman30978072007-05-24 14:36:04 +00001500/// This function will return true iff every element in this vector constant
Jim Laskeyf0478822007-01-12 22:39:14 +00001501/// is set to all ones.
1502/// @returns true iff this constant's emements are all set to all ones.
1503/// @brief Determine if the value is all ones.
Reid Spencerd84d35b2007-02-15 02:26:10 +00001504bool ConstantVector::isAllOnesValue() const {
Jim Laskeyf0478822007-01-12 22:39:14 +00001505 // Check out first element.
1506 const Constant *Elt = getOperand(0);
1507 const ConstantInt *CI = dyn_cast<ConstantInt>(Elt);
1508 if (!CI || !CI->isAllOnesValue()) return false;
1509 // Then make sure all remaining elements point to the same value.
1510 for (unsigned I = 1, E = getNumOperands(); I < E; ++I) {
1511 if (getOperand(I) != Elt) return false;
1512 }
1513 return true;
1514}
1515
Dan Gohman07159202007-10-17 17:51:30 +00001516/// getSplatValue - If this is a splat constant, where all of the
1517/// elements have the same value, return that value. Otherwise return null.
1518Constant *ConstantVector::getSplatValue() {
1519 // Check out first element.
1520 Constant *Elt = getOperand(0);
1521 // Then make sure all remaining elements point to the same value.
1522 for (unsigned I = 1, E = getNumOperands(); I < E; ++I)
1523 if (getOperand(I) != Elt) return 0;
1524 return Elt;
1525}
1526
Chris Lattner3462ae32001-12-03 22:26:30 +00001527//---- ConstantPointerNull::get() implementation...
Chris Lattnerd7a73302001-10-13 06:57:33 +00001528//
Chris Lattner98fa07b2003-05-23 20:03:32 +00001529
Chris Lattner189d19f2003-11-21 20:23:48 +00001530namespace llvm {
1531 // ConstantPointerNull does not take extra "value" argument...
1532 template<class ValType>
1533 struct ConstantCreator<ConstantPointerNull, PointerType, ValType> {
1534 static ConstantPointerNull *create(const PointerType *Ty, const ValType &V){
1535 return new ConstantPointerNull(Ty);
1536 }
1537 };
Chris Lattner98fa07b2003-05-23 20:03:32 +00001538
Chris Lattner189d19f2003-11-21 20:23:48 +00001539 template<>
1540 struct ConvertConstantType<ConstantPointerNull, PointerType> {
1541 static void convert(ConstantPointerNull *OldC, const PointerType *NewTy) {
1542 // Make everyone now use a constant of the new type...
1543 Constant *New = ConstantPointerNull::get(NewTy);
1544 assert(New != OldC && "Didn't replace constant??");
1545 OldC->uncheckedReplaceAllUsesWith(New);
1546 OldC->destroyConstant(); // This constant is now dead, destroy it.
1547 }
1548 };
1549}
Chris Lattnerb50d1352003-10-05 00:17:43 +00001550
Chris Lattner69edc982006-09-28 00:35:06 +00001551static ManagedStatic<ValueMap<char, PointerType,
1552 ConstantPointerNull> > NullPtrConstants;
Chris Lattnerd7a73302001-10-13 06:57:33 +00001553
Chris Lattner3e650af2004-08-04 04:48:01 +00001554static char getValType(ConstantPointerNull *) {
1555 return 0;
1556}
1557
1558
Chris Lattner3462ae32001-12-03 22:26:30 +00001559ConstantPointerNull *ConstantPointerNull::get(const PointerType *Ty) {
Chris Lattner69edc982006-09-28 00:35:06 +00001560 return NullPtrConstants->getOrCreate(Ty, 0);
Chris Lattner883ad0b2001-10-03 15:39:36 +00001561}
1562
Chris Lattner0c6e0b92002-08-18 00:40:04 +00001563// destroyConstant - Remove the constant from the constant table...
1564//
1565void ConstantPointerNull::destroyConstant() {
Chris Lattner69edc982006-09-28 00:35:06 +00001566 NullPtrConstants->remove(this);
Chris Lattner0c6e0b92002-08-18 00:40:04 +00001567 destroyConstantImpl();
1568}
1569
1570
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001571//---- UndefValue::get() implementation...
1572//
1573
1574namespace llvm {
1575 // UndefValue does not take extra "value" argument...
1576 template<class ValType>
1577 struct ConstantCreator<UndefValue, Type, ValType> {
1578 static UndefValue *create(const Type *Ty, const ValType &V) {
1579 return new UndefValue(Ty);
1580 }
1581 };
1582
1583 template<>
1584 struct ConvertConstantType<UndefValue, Type> {
1585 static void convert(UndefValue *OldC, const Type *NewTy) {
1586 // Make everyone now use a constant of the new type.
1587 Constant *New = UndefValue::get(NewTy);
1588 assert(New != OldC && "Didn't replace constant??");
1589 OldC->uncheckedReplaceAllUsesWith(New);
1590 OldC->destroyConstant(); // This constant is now dead, destroy it.
1591 }
1592 };
1593}
1594
Chris Lattner69edc982006-09-28 00:35:06 +00001595static ManagedStatic<ValueMap<char, Type, UndefValue> > UndefValueConstants;
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001596
1597static char getValType(UndefValue *) {
1598 return 0;
1599}
1600
1601
1602UndefValue *UndefValue::get(const Type *Ty) {
Chris Lattner69edc982006-09-28 00:35:06 +00001603 return UndefValueConstants->getOrCreate(Ty, 0);
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001604}
1605
1606// destroyConstant - Remove the constant from the constant table.
1607//
1608void UndefValue::destroyConstant() {
Chris Lattner69edc982006-09-28 00:35:06 +00001609 UndefValueConstants->remove(this);
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001610 destroyConstantImpl();
1611}
1612
1613
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001614//---- ConstantExpr::get() implementations...
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001615//
Reid Spencer8d9336d2006-12-31 05:26:44 +00001616
Dan Gohmand78c4002008-05-13 00:00:25 +00001617namespace {
1618
Reid Spenceree3c9912006-12-04 05:19:50 +00001619struct ExprMapKeyType {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001620 typedef SmallVector<unsigned, 4> IndexList;
1621
1622 ExprMapKeyType(unsigned opc,
1623 const std::vector<Constant*> &ops,
1624 unsigned short pred = 0,
1625 const IndexList &inds = IndexList())
1626 : opcode(opc), predicate(pred), operands(ops), indices(inds) {}
Reid Spencerdba6aa42006-12-04 18:38:05 +00001627 uint16_t opcode;
1628 uint16_t predicate;
Reid Spenceree3c9912006-12-04 05:19:50 +00001629 std::vector<Constant*> operands;
Dan Gohman1ecaf452008-05-31 00:58:22 +00001630 IndexList indices;
Reid Spenceree3c9912006-12-04 05:19:50 +00001631 bool operator==(const ExprMapKeyType& that) const {
1632 return this->opcode == that.opcode &&
1633 this->predicate == that.predicate &&
1634 this->operands == that.operands;
Dan Gohman1ecaf452008-05-31 00:58:22 +00001635 this->indices == that.indices;
Reid Spenceree3c9912006-12-04 05:19:50 +00001636 }
1637 bool operator<(const ExprMapKeyType & that) const {
1638 return this->opcode < that.opcode ||
1639 (this->opcode == that.opcode && this->predicate < that.predicate) ||
1640 (this->opcode == that.opcode && this->predicate == that.predicate &&
Dan Gohman1ecaf452008-05-31 00:58:22 +00001641 this->operands < that.operands) ||
1642 (this->opcode == that.opcode && this->predicate == that.predicate &&
1643 this->operands == that.operands && this->indices < that.indices);
Reid Spenceree3c9912006-12-04 05:19:50 +00001644 }
1645
1646 bool operator!=(const ExprMapKeyType& that) const {
1647 return !(*this == that);
1648 }
1649};
Chris Lattner98fa07b2003-05-23 20:03:32 +00001650
Dan Gohmand78c4002008-05-13 00:00:25 +00001651}
1652
Chris Lattner189d19f2003-11-21 20:23:48 +00001653namespace llvm {
1654 template<>
1655 struct ConstantCreator<ConstantExpr, Type, ExprMapKeyType> {
Reid Spencer10fbf0e2006-12-03 05:48:19 +00001656 static ConstantExpr *create(const Type *Ty, const ExprMapKeyType &V,
1657 unsigned short pred = 0) {
Reid Spenceree3c9912006-12-04 05:19:50 +00001658 if (Instruction::isCast(V.opcode))
1659 return new UnaryConstantExpr(V.opcode, V.operands[0], Ty);
1660 if ((V.opcode >= Instruction::BinaryOpsBegin &&
Reid Spencer2341c222007-02-02 02:16:23 +00001661 V.opcode < Instruction::BinaryOpsEnd))
Reid Spenceree3c9912006-12-04 05:19:50 +00001662 return new BinaryConstantExpr(V.opcode, V.operands[0], V.operands[1]);
1663 if (V.opcode == Instruction::Select)
1664 return new SelectConstantExpr(V.operands[0], V.operands[1],
1665 V.operands[2]);
1666 if (V.opcode == Instruction::ExtractElement)
1667 return new ExtractElementConstantExpr(V.operands[0], V.operands[1]);
1668 if (V.opcode == Instruction::InsertElement)
1669 return new InsertElementConstantExpr(V.operands[0], V.operands[1],
1670 V.operands[2]);
1671 if (V.opcode == Instruction::ShuffleVector)
1672 return new ShuffleVectorConstantExpr(V.operands[0], V.operands[1],
1673 V.operands[2]);
Dan Gohman1ecaf452008-05-31 00:58:22 +00001674 if (V.opcode == Instruction::InsertValue)
1675 return new InsertValueConstantExpr(V.operands[0], V.operands[1],
1676 V.indices, Ty);
1677 if (V.opcode == Instruction::ExtractValue)
1678 return new ExtractValueConstantExpr(V.operands[0], V.indices, Ty);
Reid Spenceree3c9912006-12-04 05:19:50 +00001679 if (V.opcode == Instruction::GetElementPtr) {
1680 std::vector<Constant*> IdxList(V.operands.begin()+1, V.operands.end());
Gabor Greife9ecc682008-04-06 20:25:17 +00001681 return GetElementPtrConstantExpr::Create(V.operands[0], IdxList, Ty);
Reid Spenceree3c9912006-12-04 05:19:50 +00001682 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00001683
Reid Spenceree3c9912006-12-04 05:19:50 +00001684 // The compare instructions are weird. We have to encode the predicate
1685 // value and it is combined with the instruction opcode by multiplying
1686 // the opcode by one hundred. We must decode this to get the predicate.
1687 if (V.opcode == Instruction::ICmp)
Nate Begemand2195702008-05-12 19:01:56 +00001688 return new CompareConstantExpr(Ty, Instruction::ICmp, V.predicate,
Reid Spenceree3c9912006-12-04 05:19:50 +00001689 V.operands[0], V.operands[1]);
1690 if (V.opcode == Instruction::FCmp)
Nate Begemand2195702008-05-12 19:01:56 +00001691 return new CompareConstantExpr(Ty, Instruction::FCmp, V.predicate,
1692 V.operands[0], V.operands[1]);
1693 if (V.opcode == Instruction::VICmp)
1694 return new CompareConstantExpr(Ty, Instruction::VICmp, V.predicate,
1695 V.operands[0], V.operands[1]);
1696 if (V.opcode == Instruction::VFCmp)
1697 return new CompareConstantExpr(Ty, Instruction::VFCmp, V.predicate,
Reid Spenceree3c9912006-12-04 05:19:50 +00001698 V.operands[0], V.operands[1]);
1699 assert(0 && "Invalid ConstantExpr!");
Jeff Cohen9f469632006-12-15 21:47:01 +00001700 return 0;
Chris Lattnerb50d1352003-10-05 00:17:43 +00001701 }
Chris Lattner189d19f2003-11-21 20:23:48 +00001702 };
Chris Lattnerb50d1352003-10-05 00:17:43 +00001703
Chris Lattner189d19f2003-11-21 20:23:48 +00001704 template<>
1705 struct ConvertConstantType<ConstantExpr, Type> {
1706 static void convert(ConstantExpr *OldC, const Type *NewTy) {
1707 Constant *New;
1708 switch (OldC->getOpcode()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001709 case Instruction::Trunc:
1710 case Instruction::ZExt:
1711 case Instruction::SExt:
1712 case Instruction::FPTrunc:
1713 case Instruction::FPExt:
1714 case Instruction::UIToFP:
1715 case Instruction::SIToFP:
1716 case Instruction::FPToUI:
1717 case Instruction::FPToSI:
1718 case Instruction::PtrToInt:
1719 case Instruction::IntToPtr:
1720 case Instruction::BitCast:
Reid Spencerbb65ebf2006-12-12 23:36:14 +00001721 New = ConstantExpr::getCast(OldC->getOpcode(), OldC->getOperand(0),
1722 NewTy);
Chris Lattner189d19f2003-11-21 20:23:48 +00001723 break;
Chris Lattner6e415c02004-03-12 05:54:04 +00001724 case Instruction::Select:
1725 New = ConstantExpr::getSelectTy(NewTy, OldC->getOperand(0),
1726 OldC->getOperand(1),
1727 OldC->getOperand(2));
1728 break;
Chris Lattner189d19f2003-11-21 20:23:48 +00001729 default:
1730 assert(OldC->getOpcode() >= Instruction::BinaryOpsBegin &&
Reid Spencer7eb55b32006-11-02 01:53:59 +00001731 OldC->getOpcode() < Instruction::BinaryOpsEnd);
Chris Lattner189d19f2003-11-21 20:23:48 +00001732 New = ConstantExpr::getTy(NewTy, OldC->getOpcode(), OldC->getOperand(0),
1733 OldC->getOperand(1));
1734 break;
1735 case Instruction::GetElementPtr:
Misha Brukmanb1c93172005-04-21 23:48:37 +00001736 // Make everyone now use a constant of the new type...
Chris Lattner13128ab2004-10-11 22:52:25 +00001737 std::vector<Value*> Idx(OldC->op_begin()+1, OldC->op_end());
Chris Lattner302116a2007-01-31 04:40:28 +00001738 New = ConstantExpr::getGetElementPtrTy(NewTy, OldC->getOperand(0),
1739 &Idx[0], Idx.size());
Chris Lattner189d19f2003-11-21 20:23:48 +00001740 break;
1741 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00001742
Chris Lattner189d19f2003-11-21 20:23:48 +00001743 assert(New != OldC && "Didn't replace constant??");
1744 OldC->uncheckedReplaceAllUsesWith(New);
1745 OldC->destroyConstant(); // This constant is now dead, destroy it.
1746 }
1747 };
1748} // end namespace llvm
Chris Lattnerb50d1352003-10-05 00:17:43 +00001749
1750
Chris Lattner3e650af2004-08-04 04:48:01 +00001751static ExprMapKeyType getValType(ConstantExpr *CE) {
1752 std::vector<Constant*> Operands;
1753 Operands.reserve(CE->getNumOperands());
1754 for (unsigned i = 0, e = CE->getNumOperands(); i != e; ++i)
1755 Operands.push_back(cast<Constant>(CE->getOperand(i)));
Reid Spenceree3c9912006-12-04 05:19:50 +00001756 return ExprMapKeyType(CE->getOpcode(), Operands,
Dan Gohman1ecaf452008-05-31 00:58:22 +00001757 CE->isCompare() ? CE->getPredicate() : 0,
1758 CE->hasIndices() ?
1759 CE->getIndices() : SmallVector<unsigned, 4>());
Chris Lattner3e650af2004-08-04 04:48:01 +00001760}
1761
Chris Lattner69edc982006-09-28 00:35:06 +00001762static ManagedStatic<ValueMap<ExprMapKeyType, Type,
1763 ConstantExpr> > ExprConstants;
Vikram S. Adve4c485332002-07-15 18:19:33 +00001764
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001765/// This is a utility function to handle folding of casts and lookup of the
Duncan Sands7d6c8ae2008-03-30 19:38:55 +00001766/// cast in the ExprConstants map. It is used by the various get* methods below.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001767static inline Constant *getFoldedCast(
1768 Instruction::CastOps opc, Constant *C, const Type *Ty) {
Chris Lattner815ae2b2003-10-07 22:19:19 +00001769 assert(Ty->isFirstClassType() && "Cannot cast to an aggregate type!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001770 // Fold a few common cases
1771 if (Constant *FC = ConstantFoldCastInstruction(opc, C, Ty))
1772 return FC;
Chris Lattneracdbe712003-04-17 19:24:48 +00001773
Vikram S. Adve4c485332002-07-15 18:19:33 +00001774 // Look up the constant in the table first to ensure uniqueness
Chris Lattner2b383d2e2003-05-13 21:37:02 +00001775 std::vector<Constant*> argVec(1, C);
Reid Spenceree3c9912006-12-04 05:19:50 +00001776 ExprMapKeyType Key(opc, argVec);
Chris Lattner69edc982006-09-28 00:35:06 +00001777 return ExprConstants->getOrCreate(Ty, Key);
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001778}
Reid Spencerf37dc652006-12-05 19:14:13 +00001779
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001780Constant *ConstantExpr::getCast(unsigned oc, Constant *C, const Type *Ty) {
1781 Instruction::CastOps opc = Instruction::CastOps(oc);
1782 assert(Instruction::isCast(opc) && "opcode out of range");
1783 assert(C && Ty && "Null arguments to getCast");
1784 assert(Ty->isFirstClassType() && "Cannot cast to an aggregate type!");
1785
1786 switch (opc) {
1787 default:
1788 assert(0 && "Invalid cast opcode");
1789 break;
1790 case Instruction::Trunc: return getTrunc(C, Ty);
Reid Spencerbb65ebf2006-12-12 23:36:14 +00001791 case Instruction::ZExt: return getZExt(C, Ty);
1792 case Instruction::SExt: return getSExt(C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001793 case Instruction::FPTrunc: return getFPTrunc(C, Ty);
1794 case Instruction::FPExt: return getFPExtend(C, Ty);
1795 case Instruction::UIToFP: return getUIToFP(C, Ty);
1796 case Instruction::SIToFP: return getSIToFP(C, Ty);
1797 case Instruction::FPToUI: return getFPToUI(C, Ty);
1798 case Instruction::FPToSI: return getFPToSI(C, Ty);
1799 case Instruction::PtrToInt: return getPtrToInt(C, Ty);
1800 case Instruction::IntToPtr: return getIntToPtr(C, Ty);
1801 case Instruction::BitCast: return getBitCast(C, Ty);
Chris Lattner1ece6f82005-01-01 15:59:57 +00001802 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001803 return 0;
Reid Spencerf37dc652006-12-05 19:14:13 +00001804}
1805
Reid Spencer5c140882006-12-04 20:17:56 +00001806Constant *ConstantExpr::getZExtOrBitCast(Constant *C, const Type *Ty) {
1807 if (C->getType()->getPrimitiveSizeInBits() == Ty->getPrimitiveSizeInBits())
1808 return getCast(Instruction::BitCast, C, Ty);
1809 return getCast(Instruction::ZExt, C, Ty);
1810}
1811
1812Constant *ConstantExpr::getSExtOrBitCast(Constant *C, const Type *Ty) {
1813 if (C->getType()->getPrimitiveSizeInBits() == Ty->getPrimitiveSizeInBits())
1814 return getCast(Instruction::BitCast, C, Ty);
1815 return getCast(Instruction::SExt, C, Ty);
1816}
1817
1818Constant *ConstantExpr::getTruncOrBitCast(Constant *C, const Type *Ty) {
1819 if (C->getType()->getPrimitiveSizeInBits() == Ty->getPrimitiveSizeInBits())
1820 return getCast(Instruction::BitCast, C, Ty);
1821 return getCast(Instruction::Trunc, C, Ty);
1822}
1823
Reid Spencerbc245a02006-12-05 03:25:26 +00001824Constant *ConstantExpr::getPointerCast(Constant *S, const Type *Ty) {
1825 assert(isa<PointerType>(S->getType()) && "Invalid cast");
Chris Lattner03c49532007-01-15 02:27:26 +00001826 assert((Ty->isInteger() || isa<PointerType>(Ty)) && "Invalid cast");
Reid Spencerbc245a02006-12-05 03:25:26 +00001827
Chris Lattner03c49532007-01-15 02:27:26 +00001828 if (Ty->isInteger())
Reid Spencerbc245a02006-12-05 03:25:26 +00001829 return getCast(Instruction::PtrToInt, S, Ty);
1830 return getCast(Instruction::BitCast, S, Ty);
1831}
1832
Reid Spencer56521c42006-12-12 00:51:07 +00001833Constant *ConstantExpr::getIntegerCast(Constant *C, const Type *Ty,
1834 bool isSigned) {
Chris Lattner03c49532007-01-15 02:27:26 +00001835 assert(C->getType()->isInteger() && Ty->isInteger() && "Invalid cast");
Reid Spencer56521c42006-12-12 00:51:07 +00001836 unsigned SrcBits = C->getType()->getPrimitiveSizeInBits();
1837 unsigned DstBits = Ty->getPrimitiveSizeInBits();
1838 Instruction::CastOps opcode =
1839 (SrcBits == DstBits ? Instruction::BitCast :
1840 (SrcBits > DstBits ? Instruction::Trunc :
1841 (isSigned ? Instruction::SExt : Instruction::ZExt)));
1842 return getCast(opcode, C, Ty);
1843}
1844
1845Constant *ConstantExpr::getFPCast(Constant *C, const Type *Ty) {
1846 assert(C->getType()->isFloatingPoint() && Ty->isFloatingPoint() &&
1847 "Invalid cast");
1848 unsigned SrcBits = C->getType()->getPrimitiveSizeInBits();
1849 unsigned DstBits = Ty->getPrimitiveSizeInBits();
Reid Spencerca104e82006-12-12 05:38:50 +00001850 if (SrcBits == DstBits)
1851 return C; // Avoid a useless cast
Reid Spencer56521c42006-12-12 00:51:07 +00001852 Instruction::CastOps opcode =
Reid Spencerca104e82006-12-12 05:38:50 +00001853 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt);
Reid Spencer56521c42006-12-12 00:51:07 +00001854 return getCast(opcode, C, Ty);
1855}
1856
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001857Constant *ConstantExpr::getTrunc(Constant *C, const Type *Ty) {
Chris Lattner03c49532007-01-15 02:27:26 +00001858 assert(C->getType()->isInteger() && "Trunc operand must be integer");
1859 assert(Ty->isInteger() && "Trunc produces only integral");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001860 assert(C->getType()->getPrimitiveSizeInBits() > Ty->getPrimitiveSizeInBits()&&
1861 "SrcTy must be larger than DestTy for Trunc!");
1862
1863 return getFoldedCast(Instruction::Trunc, C, Ty);
1864}
1865
Reid Spencerbb65ebf2006-12-12 23:36:14 +00001866Constant *ConstantExpr::getSExt(Constant *C, const Type *Ty) {
Chris Lattner03c49532007-01-15 02:27:26 +00001867 assert(C->getType()->isInteger() && "SEXt operand must be integral");
1868 assert(Ty->isInteger() && "SExt produces only integer");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001869 assert(C->getType()->getPrimitiveSizeInBits() < Ty->getPrimitiveSizeInBits()&&
1870 "SrcTy must be smaller than DestTy for SExt!");
1871
1872 return getFoldedCast(Instruction::SExt, C, Ty);
Chris Lattnerdd284742004-04-04 23:20:30 +00001873}
1874
Reid Spencerbb65ebf2006-12-12 23:36:14 +00001875Constant *ConstantExpr::getZExt(Constant *C, const Type *Ty) {
Chris Lattner03c49532007-01-15 02:27:26 +00001876 assert(C->getType()->isInteger() && "ZEXt operand must be integral");
1877 assert(Ty->isInteger() && "ZExt produces only integer");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001878 assert(C->getType()->getPrimitiveSizeInBits() < Ty->getPrimitiveSizeInBits()&&
1879 "SrcTy must be smaller than DestTy for ZExt!");
1880
1881 return getFoldedCast(Instruction::ZExt, C, Ty);
1882}
1883
1884Constant *ConstantExpr::getFPTrunc(Constant *C, const Type *Ty) {
1885 assert(C->getType()->isFloatingPoint() && Ty->isFloatingPoint() &&
1886 C->getType()->getPrimitiveSizeInBits() > Ty->getPrimitiveSizeInBits()&&
1887 "This is an illegal floating point truncation!");
1888 return getFoldedCast(Instruction::FPTrunc, C, Ty);
1889}
1890
1891Constant *ConstantExpr::getFPExtend(Constant *C, const Type *Ty) {
1892 assert(C->getType()->isFloatingPoint() && Ty->isFloatingPoint() &&
1893 C->getType()->getPrimitiveSizeInBits() < Ty->getPrimitiveSizeInBits()&&
1894 "This is an illegal floating point extension!");
1895 return getFoldedCast(Instruction::FPExt, C, Ty);
1896}
1897
1898Constant *ConstantExpr::getUIToFP(Constant *C, const Type *Ty) {
Nate Begemand4d45c22007-11-17 03:58:34 +00001899 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1900 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1901 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
1902 assert(C->getType()->isIntOrIntVector() && Ty->isFPOrFPVector() &&
1903 "This is an illegal uint to floating point cast!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001904 return getFoldedCast(Instruction::UIToFP, C, Ty);
1905}
1906
1907Constant *ConstantExpr::getSIToFP(Constant *C, const Type *Ty) {
Nate Begemand4d45c22007-11-17 03:58:34 +00001908 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1909 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1910 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
1911 assert(C->getType()->isIntOrIntVector() && Ty->isFPOrFPVector() &&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001912 "This is an illegal sint to floating point cast!");
1913 return getFoldedCast(Instruction::SIToFP, C, Ty);
1914}
1915
1916Constant *ConstantExpr::getFPToUI(Constant *C, const Type *Ty) {
Nate Begemand4d45c22007-11-17 03:58:34 +00001917 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1918 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1919 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
1920 assert(C->getType()->isFPOrFPVector() && Ty->isIntOrIntVector() &&
1921 "This is an illegal floating point to uint cast!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001922 return getFoldedCast(Instruction::FPToUI, C, Ty);
1923}
1924
1925Constant *ConstantExpr::getFPToSI(Constant *C, const Type *Ty) {
Nate Begemand4d45c22007-11-17 03:58:34 +00001926 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1927 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1928 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
1929 assert(C->getType()->isFPOrFPVector() && Ty->isIntOrIntVector() &&
1930 "This is an illegal floating point to sint cast!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001931 return getFoldedCast(Instruction::FPToSI, C, Ty);
1932}
1933
1934Constant *ConstantExpr::getPtrToInt(Constant *C, const Type *DstTy) {
1935 assert(isa<PointerType>(C->getType()) && "PtrToInt source must be pointer");
Chris Lattner03c49532007-01-15 02:27:26 +00001936 assert(DstTy->isInteger() && "PtrToInt destination must be integral");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001937 return getFoldedCast(Instruction::PtrToInt, C, DstTy);
1938}
1939
1940Constant *ConstantExpr::getIntToPtr(Constant *C, const Type *DstTy) {
Chris Lattner03c49532007-01-15 02:27:26 +00001941 assert(C->getType()->isInteger() && "IntToPtr source must be integral");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001942 assert(isa<PointerType>(DstTy) && "IntToPtr destination must be a pointer");
1943 return getFoldedCast(Instruction::IntToPtr, C, DstTy);
1944}
1945
1946Constant *ConstantExpr::getBitCast(Constant *C, const Type *DstTy) {
1947 // BitCast implies a no-op cast of type only. No bits change. However, you
1948 // can't cast pointers to anything but pointers.
1949 const Type *SrcTy = C->getType();
1950 assert((isa<PointerType>(SrcTy) == isa<PointerType>(DstTy)) &&
Reid Spencer5c140882006-12-04 20:17:56 +00001951 "BitCast cannot cast pointer to non-pointer and vice versa");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001952
1953 // Now we know we're not dealing with mismatched pointer casts (ptr->nonptr
1954 // or nonptr->ptr). For all the other types, the cast is okay if source and
1955 // destination bit widths are identical.
1956 unsigned SrcBitSize = SrcTy->getPrimitiveSizeInBits();
1957 unsigned DstBitSize = DstTy->getPrimitiveSizeInBits();
Reid Spencer5c140882006-12-04 20:17:56 +00001958 assert(SrcBitSize == DstBitSize && "BitCast requies types of same width");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001959 return getFoldedCast(Instruction::BitCast, C, DstTy);
Chris Lattnerdd284742004-04-04 23:20:30 +00001960}
1961
Alkis Evlogimenosda5de052004-10-24 01:41:10 +00001962Constant *ConstantExpr::getSizeOf(const Type *Ty) {
Gordon Henriksen7ce31762007-10-06 14:29:36 +00001963 // sizeof is implemented as: (i64) gep (Ty*)null, 1
Chris Lattnerb5d70302007-02-19 20:01:23 +00001964 Constant *GEPIdx = ConstantInt::get(Type::Int32Ty, 1);
1965 Constant *GEP =
Christopher Lambedf07882007-12-17 01:12:55 +00001966 getGetElementPtr(getNullValue(PointerType::getUnqual(Ty)), &GEPIdx, 1);
Chris Lattnerb5d70302007-02-19 20:01:23 +00001967 return getCast(Instruction::PtrToInt, GEP, Type::Int64Ty);
Alkis Evlogimenos9160d5f2005-03-19 11:40:31 +00001968}
1969
Chris Lattnerb50d1352003-10-05 00:17:43 +00001970Constant *ConstantExpr::getTy(const Type *ReqTy, unsigned Opcode,
Reid Spencera009d0d2006-12-04 21:35:24 +00001971 Constant *C1, Constant *C2) {
Chris Lattner38a9bcd2003-05-21 17:49:25 +00001972 // Check the operands for consistency first
Reid Spencer7eb55b32006-11-02 01:53:59 +00001973 assert(Opcode >= Instruction::BinaryOpsBegin &&
1974 Opcode < Instruction::BinaryOpsEnd &&
Chris Lattner38a9bcd2003-05-21 17:49:25 +00001975 "Invalid opcode in binary constant expression");
1976 assert(C1->getType() == C2->getType() &&
1977 "Operand types in binary constant expression should match");
Chris Lattnerb50d1352003-10-05 00:17:43 +00001978
Reid Spencer542964f2007-01-11 18:21:29 +00001979 if (ReqTy == C1->getType() || ReqTy == Type::Int1Ty)
Chris Lattnerb50d1352003-10-05 00:17:43 +00001980 if (Constant *FC = ConstantFoldBinaryInstruction(Opcode, C1, C2))
1981 return FC; // Fold a few common cases...
Chris Lattneracdbe712003-04-17 19:24:48 +00001982
Chris Lattner2b383d2e2003-05-13 21:37:02 +00001983 std::vector<Constant*> argVec(1, C1); argVec.push_back(C2);
Reid Spencera009d0d2006-12-04 21:35:24 +00001984 ExprMapKeyType Key(Opcode, argVec);
Chris Lattner69edc982006-09-28 00:35:06 +00001985 return ExprConstants->getOrCreate(ReqTy, Key);
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001986}
1987
Reid Spencer266e42b2006-12-23 06:05:41 +00001988Constant *ConstantExpr::getCompareTy(unsigned short predicate,
Reid Spencera009d0d2006-12-04 21:35:24 +00001989 Constant *C1, Constant *C2) {
Reid Spencer266e42b2006-12-23 06:05:41 +00001990 switch (predicate) {
1991 default: assert(0 && "Invalid CmpInst predicate");
1992 case FCmpInst::FCMP_FALSE: case FCmpInst::FCMP_OEQ: case FCmpInst::FCMP_OGT:
1993 case FCmpInst::FCMP_OGE: case FCmpInst::FCMP_OLT: case FCmpInst::FCMP_OLE:
1994 case FCmpInst::FCMP_ONE: case FCmpInst::FCMP_ORD: case FCmpInst::FCMP_UNO:
1995 case FCmpInst::FCMP_UEQ: case FCmpInst::FCMP_UGT: case FCmpInst::FCMP_UGE:
1996 case FCmpInst::FCMP_ULT: case FCmpInst::FCMP_ULE: case FCmpInst::FCMP_UNE:
1997 case FCmpInst::FCMP_TRUE:
1998 return getFCmp(predicate, C1, C2);
1999 case ICmpInst::ICMP_EQ: case ICmpInst::ICMP_NE: case ICmpInst::ICMP_UGT:
2000 case ICmpInst::ICMP_UGE: case ICmpInst::ICMP_ULT: case ICmpInst::ICMP_ULE:
2001 case ICmpInst::ICMP_SGT: case ICmpInst::ICMP_SGE: case ICmpInst::ICMP_SLT:
2002 case ICmpInst::ICMP_SLE:
2003 return getICmp(predicate, C1, C2);
2004 }
Reid Spencera009d0d2006-12-04 21:35:24 +00002005}
2006
2007Constant *ConstantExpr::get(unsigned Opcode, Constant *C1, Constant *C2) {
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00002008#ifndef NDEBUG
2009 switch (Opcode) {
Reid Spencer7eb55b32006-11-02 01:53:59 +00002010 case Instruction::Add:
2011 case Instruction::Sub:
Reid Spencer7e80b0b2006-10-26 06:15:43 +00002012 case Instruction::Mul:
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00002013 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Chris Lattner03c49532007-01-15 02:27:26 +00002014 assert((C1->getType()->isInteger() || C1->getType()->isFloatingPoint() ||
Reid Spencerd84d35b2007-02-15 02:26:10 +00002015 isa<VectorType>(C1->getType())) &&
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00002016 "Tried to create an arithmetic operation on a non-arithmetic type!");
2017 break;
Reid Spencer7e80b0b2006-10-26 06:15:43 +00002018 case Instruction::UDiv:
2019 case Instruction::SDiv:
2020 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Reid Spencerd84d35b2007-02-15 02:26:10 +00002021 assert((C1->getType()->isInteger() || (isa<VectorType>(C1->getType()) &&
2022 cast<VectorType>(C1->getType())->getElementType()->isInteger())) &&
Reid Spencer7e80b0b2006-10-26 06:15:43 +00002023 "Tried to create an arithmetic operation on a non-arithmetic type!");
2024 break;
2025 case Instruction::FDiv:
2026 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Reid Spencerd84d35b2007-02-15 02:26:10 +00002027 assert((C1->getType()->isFloatingPoint() || (isa<VectorType>(C1->getType())
2028 && cast<VectorType>(C1->getType())->getElementType()->isFloatingPoint()))
Reid Spencer7e80b0b2006-10-26 06:15:43 +00002029 && "Tried to create an arithmetic operation on a non-arithmetic type!");
2030 break;
Reid Spencer7eb55b32006-11-02 01:53:59 +00002031 case Instruction::URem:
2032 case Instruction::SRem:
2033 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Reid Spencerd84d35b2007-02-15 02:26:10 +00002034 assert((C1->getType()->isInteger() || (isa<VectorType>(C1->getType()) &&
2035 cast<VectorType>(C1->getType())->getElementType()->isInteger())) &&
Reid Spencer7eb55b32006-11-02 01:53:59 +00002036 "Tried to create an arithmetic operation on a non-arithmetic type!");
2037 break;
2038 case Instruction::FRem:
2039 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Reid Spencerd84d35b2007-02-15 02:26:10 +00002040 assert((C1->getType()->isFloatingPoint() || (isa<VectorType>(C1->getType())
2041 && cast<VectorType>(C1->getType())->getElementType()->isFloatingPoint()))
Reid Spencer7eb55b32006-11-02 01:53:59 +00002042 && "Tried to create an arithmetic operation on a non-arithmetic type!");
2043 break;
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00002044 case Instruction::And:
2045 case Instruction::Or:
2046 case Instruction::Xor:
2047 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Reid Spencerd84d35b2007-02-15 02:26:10 +00002048 assert((C1->getType()->isInteger() || isa<VectorType>(C1->getType())) &&
Misha Brukman3852f652005-01-27 06:46:38 +00002049 "Tried to create a logical operation on a non-integral type!");
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00002050 break;
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00002051 case Instruction::Shl:
Reid Spencerfdff9382006-11-08 06:47:33 +00002052 case Instruction::LShr:
2053 case Instruction::AShr:
Reid Spencer2341c222007-02-02 02:16:23 +00002054 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Chris Lattner03c49532007-01-15 02:27:26 +00002055 assert(C1->getType()->isInteger() &&
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00002056 "Tried to create a shift operation on a non-integer type!");
2057 break;
2058 default:
2059 break;
2060 }
2061#endif
2062
Reid Spencera009d0d2006-12-04 21:35:24 +00002063 return getTy(C1->getType(), Opcode, C1, C2);
2064}
2065
Reid Spencer266e42b2006-12-23 06:05:41 +00002066Constant *ConstantExpr::getCompare(unsigned short pred,
Reid Spencera009d0d2006-12-04 21:35:24 +00002067 Constant *C1, Constant *C2) {
2068 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Reid Spencer266e42b2006-12-23 06:05:41 +00002069 return getCompareTy(pred, C1, C2);
Chris Lattner29ca2c62004-08-04 18:50:09 +00002070}
2071
Chris Lattner6e415c02004-03-12 05:54:04 +00002072Constant *ConstantExpr::getSelectTy(const Type *ReqTy, Constant *C,
2073 Constant *V1, Constant *V2) {
Reid Spencer2546b762007-01-26 07:37:34 +00002074 assert(C->getType() == Type::Int1Ty && "Select condition must be i1!");
Chris Lattner6e415c02004-03-12 05:54:04 +00002075 assert(V1->getType() == V2->getType() && "Select value types must match!");
2076 assert(V1->getType()->isFirstClassType() && "Cannot select aggregate type!");
2077
2078 if (ReqTy == V1->getType())
2079 if (Constant *SC = ConstantFoldSelectInstruction(C, V1, V2))
2080 return SC; // Fold common cases
2081
2082 std::vector<Constant*> argVec(3, C);
2083 argVec[1] = V1;
2084 argVec[2] = V2;
Reid Spenceree3c9912006-12-04 05:19:50 +00002085 ExprMapKeyType Key(Instruction::Select, argVec);
Chris Lattner69edc982006-09-28 00:35:06 +00002086 return ExprConstants->getOrCreate(ReqTy, Key);
Chris Lattner6e415c02004-03-12 05:54:04 +00002087}
2088
Chris Lattnerb50d1352003-10-05 00:17:43 +00002089Constant *ConstantExpr::getGetElementPtrTy(const Type *ReqTy, Constant *C,
Chris Lattner302116a2007-01-31 04:40:28 +00002090 Value* const *Idxs,
2091 unsigned NumIdx) {
Dan Gohman12fce772008-05-15 19:50:34 +00002092 assert(GetElementPtrInst::getIndexedType(C->getType(), Idxs,
2093 Idxs+NumIdx) ==
2094 cast<PointerType>(ReqTy)->getElementType() &&
2095 "GEP indices invalid!");
Chris Lattner04b60fe2004-02-16 20:46:13 +00002096
Chris Lattner302116a2007-01-31 04:40:28 +00002097 if (Constant *FC = ConstantFoldGetElementPtr(C, (Constant**)Idxs, NumIdx))
Chris Lattneracdbe712003-04-17 19:24:48 +00002098 return FC; // Fold a few common cases...
Chris Lattner04b60fe2004-02-16 20:46:13 +00002099
Chris Lattnerb50d1352003-10-05 00:17:43 +00002100 assert(isa<PointerType>(C->getType()) &&
Chris Lattner98fa07b2003-05-23 20:03:32 +00002101 "Non-pointer type for constant GetElementPtr expression");
Vikram S. Adve4c485332002-07-15 18:19:33 +00002102 // Look up the constant in the table first to ensure uniqueness
Chris Lattner13128ab2004-10-11 22:52:25 +00002103 std::vector<Constant*> ArgVec;
Chris Lattner302116a2007-01-31 04:40:28 +00002104 ArgVec.reserve(NumIdx+1);
Chris Lattner13128ab2004-10-11 22:52:25 +00002105 ArgVec.push_back(C);
Chris Lattner302116a2007-01-31 04:40:28 +00002106 for (unsigned i = 0; i != NumIdx; ++i)
2107 ArgVec.push_back(cast<Constant>(Idxs[i]));
2108 const ExprMapKeyType Key(Instruction::GetElementPtr, ArgVec);
Chris Lattner69edc982006-09-28 00:35:06 +00002109 return ExprConstants->getOrCreate(ReqTy, Key);
Vikram S. Adve4c485332002-07-15 18:19:33 +00002110}
2111
Chris Lattner302116a2007-01-31 04:40:28 +00002112Constant *ConstantExpr::getGetElementPtr(Constant *C, Value* const *Idxs,
2113 unsigned NumIdx) {
Chris Lattnerb50d1352003-10-05 00:17:43 +00002114 // Get the result type of the getelementptr!
Chris Lattner302116a2007-01-31 04:40:28 +00002115 const Type *Ty =
Dan Gohman12fce772008-05-15 19:50:34 +00002116 GetElementPtrInst::getIndexedType(C->getType(), Idxs, Idxs+NumIdx);
Chris Lattnerb50d1352003-10-05 00:17:43 +00002117 assert(Ty && "GEP indices invalid!");
Christopher Lamb54dd24c2007-12-11 08:59:05 +00002118 unsigned As = cast<PointerType>(C->getType())->getAddressSpace();
2119 return getGetElementPtrTy(PointerType::get(Ty, As), C, Idxs, NumIdx);
Chris Lattner13128ab2004-10-11 22:52:25 +00002120}
2121
Chris Lattner302116a2007-01-31 04:40:28 +00002122Constant *ConstantExpr::getGetElementPtr(Constant *C, Constant* const *Idxs,
2123 unsigned NumIdx) {
2124 return getGetElementPtr(C, (Value* const *)Idxs, NumIdx);
Chris Lattnerb50d1352003-10-05 00:17:43 +00002125}
2126
Chris Lattner302116a2007-01-31 04:40:28 +00002127
Reid Spenceree3c9912006-12-04 05:19:50 +00002128Constant *
2129ConstantExpr::getICmp(unsigned short pred, Constant* LHS, Constant* RHS) {
2130 assert(LHS->getType() == RHS->getType());
2131 assert(pred >= ICmpInst::FIRST_ICMP_PREDICATE &&
2132 pred <= ICmpInst::LAST_ICMP_PREDICATE && "Invalid ICmp Predicate");
2133
Reid Spencer266e42b2006-12-23 06:05:41 +00002134 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
Reid Spenceree3c9912006-12-04 05:19:50 +00002135 return FC; // Fold a few common cases...
2136
2137 // Look up the constant in the table first to ensure uniqueness
2138 std::vector<Constant*> ArgVec;
2139 ArgVec.push_back(LHS);
2140 ArgVec.push_back(RHS);
Reid Spencerb1537492006-12-24 18:42:29 +00002141 // Get the key type with both the opcode and predicate
Reid Spenceree3c9912006-12-04 05:19:50 +00002142 const ExprMapKeyType Key(Instruction::ICmp, ArgVec, pred);
Reid Spencer542964f2007-01-11 18:21:29 +00002143 return ExprConstants->getOrCreate(Type::Int1Ty, Key);
Reid Spenceree3c9912006-12-04 05:19:50 +00002144}
2145
2146Constant *
2147ConstantExpr::getFCmp(unsigned short pred, Constant* LHS, Constant* RHS) {
2148 assert(LHS->getType() == RHS->getType());
2149 assert(pred <= FCmpInst::LAST_FCMP_PREDICATE && "Invalid FCmp Predicate");
2150
Reid Spencer266e42b2006-12-23 06:05:41 +00002151 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
Reid Spenceree3c9912006-12-04 05:19:50 +00002152 return FC; // Fold a few common cases...
2153
2154 // Look up the constant in the table first to ensure uniqueness
2155 std::vector<Constant*> ArgVec;
2156 ArgVec.push_back(LHS);
2157 ArgVec.push_back(RHS);
Reid Spencerb1537492006-12-24 18:42:29 +00002158 // Get the key type with both the opcode and predicate
Reid Spenceree3c9912006-12-04 05:19:50 +00002159 const ExprMapKeyType Key(Instruction::FCmp, ArgVec, pred);
Reid Spencer542964f2007-01-11 18:21:29 +00002160 return ExprConstants->getOrCreate(Type::Int1Ty, Key);
Reid Spenceree3c9912006-12-04 05:19:50 +00002161}
2162
Nate Begemand2195702008-05-12 19:01:56 +00002163Constant *
2164ConstantExpr::getVICmp(unsigned short pred, Constant* LHS, Constant* RHS) {
2165 assert(isa<VectorType>(LHS->getType()) &&
2166 "Tried to create vicmp operation on non-vector type!");
2167 assert(LHS->getType() == RHS->getType());
2168 assert(pred >= ICmpInst::FIRST_ICMP_PREDICATE &&
2169 pred <= ICmpInst::LAST_ICMP_PREDICATE && "Invalid VICmp Predicate");
2170
Nate Begemanac7f3d92008-05-12 19:23:22 +00002171 const VectorType *VTy = cast<VectorType>(LHS->getType());
Nate Begemand2195702008-05-12 19:01:56 +00002172 const Type *EltTy = VTy->getElementType();
2173 unsigned NumElts = VTy->getNumElements();
2174
2175 SmallVector<Constant *, 8> Elts;
2176 for (unsigned i = 0; i != NumElts; ++i) {
2177 Constant *FC = ConstantFoldCompareInstruction(pred, LHS->getOperand(i),
2178 RHS->getOperand(i));
2179 if (FC) {
2180 uint64_t Val = cast<ConstantInt>(FC)->getZExtValue();
2181 if (Val != 0ULL)
2182 Elts.push_back(ConstantInt::getAllOnesValue(EltTy));
2183 else
2184 Elts.push_back(ConstantInt::get(EltTy, 0ULL));
2185 }
2186 }
2187 if (Elts.size() == NumElts)
2188 return ConstantVector::get(&Elts[0], Elts.size());
2189
2190 // Look up the constant in the table first to ensure uniqueness
2191 std::vector<Constant*> ArgVec;
2192 ArgVec.push_back(LHS);
2193 ArgVec.push_back(RHS);
2194 // Get the key type with both the opcode and predicate
2195 const ExprMapKeyType Key(Instruction::VICmp, ArgVec, pred);
2196 return ExprConstants->getOrCreate(LHS->getType(), Key);
2197}
2198
2199Constant *
2200ConstantExpr::getVFCmp(unsigned short pred, Constant* LHS, Constant* RHS) {
2201 assert(isa<VectorType>(LHS->getType()) &&
2202 "Tried to create vfcmp operation on non-vector type!");
2203 assert(LHS->getType() == RHS->getType());
2204 assert(pred <= FCmpInst::LAST_FCMP_PREDICATE && "Invalid VFCmp Predicate");
2205
2206 const VectorType *VTy = cast<VectorType>(LHS->getType());
2207 unsigned NumElts = VTy->getNumElements();
2208 const Type *EltTy = VTy->getElementType();
2209 const Type *REltTy = IntegerType::get(EltTy->getPrimitiveSizeInBits());
2210 const Type *ResultTy = VectorType::get(REltTy, NumElts);
2211
2212 SmallVector<Constant *, 8> Elts;
2213 for (unsigned i = 0; i != NumElts; ++i) {
2214 Constant *FC = ConstantFoldCompareInstruction(pred, LHS->getOperand(i),
2215 RHS->getOperand(i));
2216 if (FC) {
2217 uint64_t Val = cast<ConstantInt>(FC)->getZExtValue();
2218 if (Val != 0ULL)
2219 Elts.push_back(ConstantInt::getAllOnesValue(REltTy));
2220 else
2221 Elts.push_back(ConstantInt::get(REltTy, 0ULL));
2222 }
2223 }
2224 if (Elts.size() == NumElts)
2225 return ConstantVector::get(&Elts[0], Elts.size());
2226
2227 // Look up the constant in the table first to ensure uniqueness
2228 std::vector<Constant*> ArgVec;
2229 ArgVec.push_back(LHS);
2230 ArgVec.push_back(RHS);
2231 // Get the key type with both the opcode and predicate
2232 const ExprMapKeyType Key(Instruction::VFCmp, ArgVec, pred);
2233 return ExprConstants->getOrCreate(ResultTy, Key);
2234}
2235
Robert Bocchino23004482006-01-10 19:05:34 +00002236Constant *ConstantExpr::getExtractElementTy(const Type *ReqTy, Constant *Val,
2237 Constant *Idx) {
Robert Bocchinode7f1c92006-01-10 20:03:46 +00002238 if (Constant *FC = ConstantFoldExtractElementInstruction(Val, Idx))
2239 return FC; // Fold a few common cases...
Robert Bocchino23004482006-01-10 19:05:34 +00002240 // Look up the constant in the table first to ensure uniqueness
2241 std::vector<Constant*> ArgVec(1, Val);
2242 ArgVec.push_back(Idx);
Reid Spenceree3c9912006-12-04 05:19:50 +00002243 const ExprMapKeyType Key(Instruction::ExtractElement,ArgVec);
Chris Lattner69edc982006-09-28 00:35:06 +00002244 return ExprConstants->getOrCreate(ReqTy, Key);
Robert Bocchino23004482006-01-10 19:05:34 +00002245}
2246
2247Constant *ConstantExpr::getExtractElement(Constant *Val, Constant *Idx) {
Reid Spencerd84d35b2007-02-15 02:26:10 +00002248 assert(isa<VectorType>(Val->getType()) &&
Reid Spencer09575ba2007-02-15 03:39:18 +00002249 "Tried to create extractelement operation on non-vector type!");
Reid Spencer8d9336d2006-12-31 05:26:44 +00002250 assert(Idx->getType() == Type::Int32Ty &&
Reid Spencer2546b762007-01-26 07:37:34 +00002251 "Extractelement index must be i32 type!");
Reid Spencerd84d35b2007-02-15 02:26:10 +00002252 return getExtractElementTy(cast<VectorType>(Val->getType())->getElementType(),
Robert Bocchino23004482006-01-10 19:05:34 +00002253 Val, Idx);
2254}
Chris Lattnerb50d1352003-10-05 00:17:43 +00002255
Robert Bocchinoca27f032006-01-17 20:07:22 +00002256Constant *ConstantExpr::getInsertElementTy(const Type *ReqTy, Constant *Val,
2257 Constant *Elt, Constant *Idx) {
2258 if (Constant *FC = ConstantFoldInsertElementInstruction(Val, Elt, Idx))
2259 return FC; // Fold a few common cases...
2260 // Look up the constant in the table first to ensure uniqueness
2261 std::vector<Constant*> ArgVec(1, Val);
2262 ArgVec.push_back(Elt);
2263 ArgVec.push_back(Idx);
Reid Spenceree3c9912006-12-04 05:19:50 +00002264 const ExprMapKeyType Key(Instruction::InsertElement,ArgVec);
Chris Lattner69edc982006-09-28 00:35:06 +00002265 return ExprConstants->getOrCreate(ReqTy, Key);
Robert Bocchinoca27f032006-01-17 20:07:22 +00002266}
2267
2268Constant *ConstantExpr::getInsertElement(Constant *Val, Constant *Elt,
2269 Constant *Idx) {
Reid Spencerd84d35b2007-02-15 02:26:10 +00002270 assert(isa<VectorType>(Val->getType()) &&
Reid Spencer09575ba2007-02-15 03:39:18 +00002271 "Tried to create insertelement operation on non-vector type!");
Reid Spencerd84d35b2007-02-15 02:26:10 +00002272 assert(Elt->getType() == cast<VectorType>(Val->getType())->getElementType()
Robert Bocchinoca27f032006-01-17 20:07:22 +00002273 && "Insertelement types must match!");
Reid Spencer8d9336d2006-12-31 05:26:44 +00002274 assert(Idx->getType() == Type::Int32Ty &&
Reid Spencer2546b762007-01-26 07:37:34 +00002275 "Insertelement index must be i32 type!");
Reid Spencerd84d35b2007-02-15 02:26:10 +00002276 return getInsertElementTy(cast<VectorType>(Val->getType())->getElementType(),
Robert Bocchinoca27f032006-01-17 20:07:22 +00002277 Val, Elt, Idx);
2278}
2279
Chris Lattnerbbe0a422006-04-08 01:18:18 +00002280Constant *ConstantExpr::getShuffleVectorTy(const Type *ReqTy, Constant *V1,
2281 Constant *V2, Constant *Mask) {
2282 if (Constant *FC = ConstantFoldShuffleVectorInstruction(V1, V2, Mask))
2283 return FC; // Fold a few common cases...
2284 // Look up the constant in the table first to ensure uniqueness
2285 std::vector<Constant*> ArgVec(1, V1);
2286 ArgVec.push_back(V2);
2287 ArgVec.push_back(Mask);
Reid Spenceree3c9912006-12-04 05:19:50 +00002288 const ExprMapKeyType Key(Instruction::ShuffleVector,ArgVec);
Chris Lattner69edc982006-09-28 00:35:06 +00002289 return ExprConstants->getOrCreate(ReqTy, Key);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00002290}
2291
2292Constant *ConstantExpr::getShuffleVector(Constant *V1, Constant *V2,
2293 Constant *Mask) {
2294 assert(ShuffleVectorInst::isValidOperands(V1, V2, Mask) &&
2295 "Invalid shuffle vector constant expr operands!");
2296 return getShuffleVectorTy(V1->getType(), V1, V2, Mask);
2297}
2298
Dan Gohman12fce772008-05-15 19:50:34 +00002299Constant *ConstantExpr::getInsertValueTy(const Type *ReqTy, Constant *Agg,
2300 Constant *Val,
Dan Gohman1ecaf452008-05-31 00:58:22 +00002301 const unsigned *Idxs, unsigned NumIdx) {
Dan Gohman12fce772008-05-15 19:50:34 +00002302 assert(ExtractValueInst::getIndexedType(Agg->getType(), Idxs,
2303 Idxs+NumIdx) == Val->getType() &&
2304 "insertvalue indices invalid!");
2305 assert(Agg->getType() == ReqTy &&
2306 "insertvalue type invalid!");
Dan Gohman0752bff2008-05-23 00:36:11 +00002307 assert(Agg->getType()->isFirstClassType() &&
2308 "Non-first-class type for constant InsertValue expression");
Dan Gohman3db11c22008-06-03 00:15:20 +00002309 if (Constant *FC = ConstantFoldInsertValueInstruction(Agg, Val, Idxs, NumIdx))
2310 return FC; // Fold a few common cases...
Dan Gohman12fce772008-05-15 19:50:34 +00002311 // Look up the constant in the table first to ensure uniqueness
2312 std::vector<Constant*> ArgVec;
Dan Gohman12fce772008-05-15 19:50:34 +00002313 ArgVec.push_back(Agg);
2314 ArgVec.push_back(Val);
Dan Gohman1ecaf452008-05-31 00:58:22 +00002315 SmallVector<unsigned, 4> Indices(Idxs, Idxs + NumIdx);
2316 const ExprMapKeyType Key(Instruction::InsertValue, ArgVec, 0, Indices);
Dan Gohman12fce772008-05-15 19:50:34 +00002317 return ExprConstants->getOrCreate(ReqTy, Key);
2318}
2319
2320Constant *ConstantExpr::getInsertValue(Constant *Agg, Constant *Val,
Dan Gohman1ecaf452008-05-31 00:58:22 +00002321 const unsigned *IdxList, unsigned NumIdx) {
Dan Gohman0752bff2008-05-23 00:36:11 +00002322 assert(Agg->getType()->isFirstClassType() &&
2323 "Tried to create insertelement operation on non-first-class type!");
Dan Gohman12fce772008-05-15 19:50:34 +00002324
Dan Gohman0752bff2008-05-23 00:36:11 +00002325 const Type *ReqTy = Agg->getType();
2326 const Type *ValTy =
Dan Gohman12fce772008-05-15 19:50:34 +00002327 ExtractValueInst::getIndexedType(Agg->getType(), IdxList, IdxList+NumIdx);
Dan Gohman0752bff2008-05-23 00:36:11 +00002328 assert(ValTy == Val->getType() && "insertvalue indices invalid!");
Dan Gohman12fce772008-05-15 19:50:34 +00002329 return getInsertValueTy(ReqTy, Agg, Val, IdxList, NumIdx);
2330}
2331
2332Constant *ConstantExpr::getExtractValueTy(const Type *ReqTy, Constant *Agg,
Dan Gohman1ecaf452008-05-31 00:58:22 +00002333 const unsigned *Idxs, unsigned NumIdx) {
Dan Gohman12fce772008-05-15 19:50:34 +00002334 assert(ExtractValueInst::getIndexedType(Agg->getType(), Idxs,
2335 Idxs+NumIdx) == ReqTy &&
2336 "extractvalue indices invalid!");
Dan Gohman0752bff2008-05-23 00:36:11 +00002337 assert(Agg->getType()->isFirstClassType() &&
2338 "Non-first-class type for constant extractvalue expression");
Dan Gohman3db11c22008-06-03 00:15:20 +00002339 if (Constant *FC = ConstantFoldExtractValueInstruction(Agg, Idxs, NumIdx))
2340 return FC; // Fold a few common cases...
Dan Gohman12fce772008-05-15 19:50:34 +00002341 // Look up the constant in the table first to ensure uniqueness
2342 std::vector<Constant*> ArgVec;
Dan Gohman12fce772008-05-15 19:50:34 +00002343 ArgVec.push_back(Agg);
Dan Gohman7bb04502008-05-31 19:09:08 +00002344 SmallVector<unsigned, 4> Indices(Idxs, Idxs + NumIdx);
Dan Gohman1ecaf452008-05-31 00:58:22 +00002345 const ExprMapKeyType Key(Instruction::ExtractValue, ArgVec, 0, Indices);
Dan Gohman12fce772008-05-15 19:50:34 +00002346 return ExprConstants->getOrCreate(ReqTy, Key);
2347}
2348
2349Constant *ConstantExpr::getExtractValue(Constant *Agg,
Dan Gohman1ecaf452008-05-31 00:58:22 +00002350 const unsigned *IdxList, unsigned NumIdx) {
Dan Gohman0752bff2008-05-23 00:36:11 +00002351 assert(Agg->getType()->isFirstClassType() &&
2352 "Tried to create extractelement operation on non-first-class type!");
Dan Gohman12fce772008-05-15 19:50:34 +00002353
2354 const Type *ReqTy =
2355 ExtractValueInst::getIndexedType(Agg->getType(), IdxList, IdxList+NumIdx);
2356 assert(ReqTy && "extractvalue indices invalid!");
2357 return getExtractValueTy(ReqTy, Agg, IdxList, NumIdx);
2358}
2359
Reid Spencer2eadb532007-01-21 00:29:26 +00002360Constant *ConstantExpr::getZeroValueForNegationExpr(const Type *Ty) {
Reid Spencerd84d35b2007-02-15 02:26:10 +00002361 if (const VectorType *PTy = dyn_cast<VectorType>(Ty))
Reid Spencer6598ca82007-01-21 02:29:10 +00002362 if (PTy->getElementType()->isFloatingPoint()) {
2363 std::vector<Constant*> zeros(PTy->getNumElements(),
Dale Johannesen98d3a082007-09-14 22:26:36 +00002364 ConstantFP::getNegativeZero(PTy->getElementType()));
Reid Spencerd84d35b2007-02-15 02:26:10 +00002365 return ConstantVector::get(PTy, zeros);
Reid Spencer6598ca82007-01-21 02:29:10 +00002366 }
Reid Spencer2eadb532007-01-21 00:29:26 +00002367
Dale Johannesen98d3a082007-09-14 22:26:36 +00002368 if (Ty->isFloatingPoint())
2369 return ConstantFP::getNegativeZero(Ty);
Reid Spencer2eadb532007-01-21 00:29:26 +00002370
2371 return Constant::getNullValue(Ty);
2372}
2373
Vikram S. Adve4c485332002-07-15 18:19:33 +00002374// destroyConstant - Remove the constant from the constant table...
2375//
2376void ConstantExpr::destroyConstant() {
Chris Lattner69edc982006-09-28 00:35:06 +00002377 ExprConstants->remove(this);
Vikram S. Adve4c485332002-07-15 18:19:33 +00002378 destroyConstantImpl();
Vikram S. Adve4e537b22002-07-14 23:13:17 +00002379}
2380
Chris Lattner3cd8c562002-07-30 18:54:25 +00002381const char *ConstantExpr::getOpcodeName() const {
2382 return Instruction::getOpcodeName(getOpcode());
Vikram S. Adve4e537b22002-07-14 23:13:17 +00002383}
Reid Spencer1ebe1ab2004-07-17 23:48:33 +00002384
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002385//===----------------------------------------------------------------------===//
2386// replaceUsesOfWithOnConstant implementations
2387
Chris Lattner913849b2007-08-21 00:55:23 +00002388/// replaceUsesOfWithOnConstant - Update this constant array to change uses of
2389/// 'From' to be uses of 'To'. This must update the uniquing data structures
2390/// etc.
2391///
2392/// Note that we intentionally replace all uses of From with To here. Consider
2393/// a large array that uses 'From' 1000 times. By handling this case all here,
2394/// ConstantArray::replaceUsesOfWithOnConstant is only invoked once, and that
2395/// single invocation handles all 1000 uses. Handling them one at a time would
2396/// work, but would be really slow because it would have to unique each updated
2397/// array instance.
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002398void ConstantArray::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattner7a1450d2005-10-04 18:13:04 +00002399 Use *U) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002400 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
Chris Lattner8760ec72005-10-04 01:17:50 +00002401 Constant *ToC = cast<Constant>(To);
Chris Lattnerdff59112005-10-04 18:47:09 +00002402
Jim Laskeyc03caef2006-07-17 17:38:29 +00002403 std::pair<ArrayConstantsTy::MapKey, Constant*> Lookup;
Chris Lattnerb64419a2005-10-03 22:51:37 +00002404 Lookup.first.first = getType();
2405 Lookup.second = this;
Chris Lattnerdff59112005-10-04 18:47:09 +00002406
Chris Lattnerb64419a2005-10-03 22:51:37 +00002407 std::vector<Constant*> &Values = Lookup.first.second;
2408 Values.reserve(getNumOperands()); // Build replacement array.
Chris Lattnerdff59112005-10-04 18:47:09 +00002409
Chris Lattner8760ec72005-10-04 01:17:50 +00002410 // Fill values with the modified operands of the constant array. Also,
2411 // compute whether this turns into an all-zeros array.
Chris Lattnerdff59112005-10-04 18:47:09 +00002412 bool isAllZeros = false;
Chris Lattner913849b2007-08-21 00:55:23 +00002413 unsigned NumUpdated = 0;
Chris Lattnerdff59112005-10-04 18:47:09 +00002414 if (!ToC->isNullValue()) {
Chris Lattner913849b2007-08-21 00:55:23 +00002415 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2416 Constant *Val = cast<Constant>(O->get());
2417 if (Val == From) {
2418 Val = ToC;
2419 ++NumUpdated;
2420 }
2421 Values.push_back(Val);
2422 }
Chris Lattnerdff59112005-10-04 18:47:09 +00002423 } else {
2424 isAllZeros = true;
2425 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2426 Constant *Val = cast<Constant>(O->get());
Chris Lattner913849b2007-08-21 00:55:23 +00002427 if (Val == From) {
2428 Val = ToC;
2429 ++NumUpdated;
2430 }
Chris Lattnerdff59112005-10-04 18:47:09 +00002431 Values.push_back(Val);
2432 if (isAllZeros) isAllZeros = Val->isNullValue();
2433 }
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002434 }
2435
Chris Lattnerb64419a2005-10-03 22:51:37 +00002436 Constant *Replacement = 0;
2437 if (isAllZeros) {
2438 Replacement = ConstantAggregateZero::get(getType());
2439 } else {
2440 // Check to see if we have this array type already.
2441 bool Exists;
Jim Laskeyc03caef2006-07-17 17:38:29 +00002442 ArrayConstantsTy::MapTy::iterator I =
Chris Lattner69edc982006-09-28 00:35:06 +00002443 ArrayConstants->InsertOrGetItem(Lookup, Exists);
Chris Lattnerb64419a2005-10-03 22:51:37 +00002444
2445 if (Exists) {
2446 Replacement = I->second;
2447 } else {
2448 // Okay, the new shape doesn't exist in the system yet. Instead of
2449 // creating a new constant array, inserting it, replaceallusesof'ing the
2450 // old with the new, then deleting the old... just update the current one
2451 // in place!
Chris Lattner69edc982006-09-28 00:35:06 +00002452 ArrayConstants->MoveConstantToNewSlot(this, I);
Chris Lattnerb64419a2005-10-03 22:51:37 +00002453
Chris Lattner913849b2007-08-21 00:55:23 +00002454 // Update to the new value. Optimize for the case when we have a single
2455 // operand that we're changing, but handle bulk updates efficiently.
2456 if (NumUpdated == 1) {
2457 unsigned OperandToUpdate = U-OperandList;
2458 assert(getOperand(OperandToUpdate) == From &&
2459 "ReplaceAllUsesWith broken!");
2460 setOperand(OperandToUpdate, ToC);
2461 } else {
2462 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
2463 if (getOperand(i) == From)
2464 setOperand(i, ToC);
2465 }
Chris Lattnerb64419a2005-10-03 22:51:37 +00002466 return;
2467 }
2468 }
2469
2470 // Otherwise, I do need to replace this with an existing value.
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002471 assert(Replacement != this && "I didn't contain From!");
2472
Chris Lattner7a1450d2005-10-04 18:13:04 +00002473 // Everyone using this now uses the replacement.
2474 uncheckedReplaceAllUsesWith(Replacement);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002475
2476 // Delete the old constant!
2477 destroyConstant();
2478}
2479
2480void ConstantStruct::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattner7a1450d2005-10-04 18:13:04 +00002481 Use *U) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002482 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
Chris Lattner8760ec72005-10-04 01:17:50 +00002483 Constant *ToC = cast<Constant>(To);
2484
Chris Lattnerdff59112005-10-04 18:47:09 +00002485 unsigned OperandToUpdate = U-OperandList;
2486 assert(getOperand(OperandToUpdate) == From && "ReplaceAllUsesWith broken!");
2487
Jim Laskeyc03caef2006-07-17 17:38:29 +00002488 std::pair<StructConstantsTy::MapKey, Constant*> Lookup;
Chris Lattner8760ec72005-10-04 01:17:50 +00002489 Lookup.first.first = getType();
2490 Lookup.second = this;
2491 std::vector<Constant*> &Values = Lookup.first.second;
2492 Values.reserve(getNumOperands()); // Build replacement struct.
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002493
Chris Lattnerdff59112005-10-04 18:47:09 +00002494
Chris Lattner8760ec72005-10-04 01:17:50 +00002495 // Fill values with the modified operands of the constant struct. Also,
2496 // compute whether this turns into an all-zeros struct.
Chris Lattnerdff59112005-10-04 18:47:09 +00002497 bool isAllZeros = false;
2498 if (!ToC->isNullValue()) {
2499 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O)
2500 Values.push_back(cast<Constant>(O->get()));
2501 } else {
2502 isAllZeros = true;
2503 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2504 Constant *Val = cast<Constant>(O->get());
2505 Values.push_back(Val);
2506 if (isAllZeros) isAllZeros = Val->isNullValue();
2507 }
Chris Lattner8760ec72005-10-04 01:17:50 +00002508 }
Chris Lattnerdff59112005-10-04 18:47:09 +00002509 Values[OperandToUpdate] = ToC;
2510
Chris Lattner8760ec72005-10-04 01:17:50 +00002511 Constant *Replacement = 0;
2512 if (isAllZeros) {
2513 Replacement = ConstantAggregateZero::get(getType());
2514 } else {
2515 // Check to see if we have this array type already.
2516 bool Exists;
Jim Laskeyc03caef2006-07-17 17:38:29 +00002517 StructConstantsTy::MapTy::iterator I =
Chris Lattner69edc982006-09-28 00:35:06 +00002518 StructConstants->InsertOrGetItem(Lookup, Exists);
Chris Lattner8760ec72005-10-04 01:17:50 +00002519
2520 if (Exists) {
2521 Replacement = I->second;
2522 } else {
2523 // Okay, the new shape doesn't exist in the system yet. Instead of
2524 // creating a new constant struct, inserting it, replaceallusesof'ing the
2525 // old with the new, then deleting the old... just update the current one
2526 // in place!
Chris Lattner69edc982006-09-28 00:35:06 +00002527 StructConstants->MoveConstantToNewSlot(this, I);
Chris Lattner8760ec72005-10-04 01:17:50 +00002528
Chris Lattnerdff59112005-10-04 18:47:09 +00002529 // Update to the new value.
2530 setOperand(OperandToUpdate, ToC);
Chris Lattner8760ec72005-10-04 01:17:50 +00002531 return;
2532 }
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002533 }
2534
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002535 assert(Replacement != this && "I didn't contain From!");
2536
Chris Lattner7a1450d2005-10-04 18:13:04 +00002537 // Everyone using this now uses the replacement.
2538 uncheckedReplaceAllUsesWith(Replacement);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002539
2540 // Delete the old constant!
2541 destroyConstant();
2542}
2543
Reid Spencerd84d35b2007-02-15 02:26:10 +00002544void ConstantVector::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattner7a1450d2005-10-04 18:13:04 +00002545 Use *U) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002546 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2547
2548 std::vector<Constant*> Values;
2549 Values.reserve(getNumOperands()); // Build replacement array...
2550 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
2551 Constant *Val = getOperand(i);
2552 if (Val == From) Val = cast<Constant>(To);
2553 Values.push_back(Val);
2554 }
2555
Reid Spencerd84d35b2007-02-15 02:26:10 +00002556 Constant *Replacement = ConstantVector::get(getType(), Values);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002557 assert(Replacement != this && "I didn't contain From!");
2558
Chris Lattner7a1450d2005-10-04 18:13:04 +00002559 // Everyone using this now uses the replacement.
2560 uncheckedReplaceAllUsesWith(Replacement);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002561
2562 // Delete the old constant!
2563 destroyConstant();
2564}
2565
2566void ConstantExpr::replaceUsesOfWithOnConstant(Value *From, Value *ToV,
Chris Lattner7a1450d2005-10-04 18:13:04 +00002567 Use *U) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002568 assert(isa<Constant>(ToV) && "Cannot make Constant refer to non-constant!");
2569 Constant *To = cast<Constant>(ToV);
2570
2571 Constant *Replacement = 0;
2572 if (getOpcode() == Instruction::GetElementPtr) {
Chris Lattnerb5d70302007-02-19 20:01:23 +00002573 SmallVector<Constant*, 8> Indices;
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002574 Constant *Pointer = getOperand(0);
2575 Indices.reserve(getNumOperands()-1);
2576 if (Pointer == From) Pointer = To;
2577
2578 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
2579 Constant *Val = getOperand(i);
2580 if (Val == From) Val = To;
2581 Indices.push_back(Val);
2582 }
Chris Lattnerb5d70302007-02-19 20:01:23 +00002583 Replacement = ConstantExpr::getGetElementPtr(Pointer,
2584 &Indices[0], Indices.size());
Dan Gohman12fce772008-05-15 19:50:34 +00002585 } else if (getOpcode() == Instruction::ExtractValue) {
Dan Gohman12fce772008-05-15 19:50:34 +00002586 Constant *Agg = getOperand(0);
Dan Gohman12fce772008-05-15 19:50:34 +00002587 if (Agg == From) Agg = To;
2588
Dan Gohman1ecaf452008-05-31 00:58:22 +00002589 const SmallVector<unsigned, 4> &Indices = getIndices();
Dan Gohman12fce772008-05-15 19:50:34 +00002590 Replacement = ConstantExpr::getExtractValue(Agg,
2591 &Indices[0], Indices.size());
2592 } else if (getOpcode() == Instruction::InsertValue) {
Dan Gohman12fce772008-05-15 19:50:34 +00002593 Constant *Agg = getOperand(0);
2594 Constant *Val = getOperand(1);
Dan Gohman12fce772008-05-15 19:50:34 +00002595 if (Agg == From) Agg = To;
2596 if (Val == From) Val = To;
2597
Dan Gohman1ecaf452008-05-31 00:58:22 +00002598 const SmallVector<unsigned, 4> &Indices = getIndices();
Dan Gohman12fce772008-05-15 19:50:34 +00002599 Replacement = ConstantExpr::getInsertValue(Agg, Val,
2600 &Indices[0], Indices.size());
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002601 } else if (isCast()) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002602 assert(getOperand(0) == From && "Cast only has one use!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00002603 Replacement = ConstantExpr::getCast(getOpcode(), To, getType());
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002604 } else if (getOpcode() == Instruction::Select) {
2605 Constant *C1 = getOperand(0);
2606 Constant *C2 = getOperand(1);
2607 Constant *C3 = getOperand(2);
2608 if (C1 == From) C1 = To;
2609 if (C2 == From) C2 = To;
2610 if (C3 == From) C3 = To;
2611 Replacement = ConstantExpr::getSelect(C1, C2, C3);
Robert Bocchino23004482006-01-10 19:05:34 +00002612 } else if (getOpcode() == Instruction::ExtractElement) {
2613 Constant *C1 = getOperand(0);
2614 Constant *C2 = getOperand(1);
2615 if (C1 == From) C1 = To;
2616 if (C2 == From) C2 = To;
2617 Replacement = ConstantExpr::getExtractElement(C1, C2);
Chris Lattnera93b4b52006-04-08 05:09:48 +00002618 } else if (getOpcode() == Instruction::InsertElement) {
2619 Constant *C1 = getOperand(0);
2620 Constant *C2 = getOperand(1);
2621 Constant *C3 = getOperand(1);
2622 if (C1 == From) C1 = To;
2623 if (C2 == From) C2 = To;
2624 if (C3 == From) C3 = To;
2625 Replacement = ConstantExpr::getInsertElement(C1, C2, C3);
2626 } else if (getOpcode() == Instruction::ShuffleVector) {
2627 Constant *C1 = getOperand(0);
2628 Constant *C2 = getOperand(1);
2629 Constant *C3 = getOperand(2);
2630 if (C1 == From) C1 = To;
2631 if (C2 == From) C2 = To;
2632 if (C3 == From) C3 = To;
2633 Replacement = ConstantExpr::getShuffleVector(C1, C2, C3);
Reid Spenceree3c9912006-12-04 05:19:50 +00002634 } else if (isCompare()) {
2635 Constant *C1 = getOperand(0);
2636 Constant *C2 = getOperand(1);
2637 if (C1 == From) C1 = To;
2638 if (C2 == From) C2 = To;
2639 if (getOpcode() == Instruction::ICmp)
2640 Replacement = ConstantExpr::getICmp(getPredicate(), C1, C2);
2641 else
2642 Replacement = ConstantExpr::getFCmp(getPredicate(), C1, C2);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002643 } else if (getNumOperands() == 2) {
2644 Constant *C1 = getOperand(0);
2645 Constant *C2 = getOperand(1);
2646 if (C1 == From) C1 = To;
2647 if (C2 == From) C2 = To;
2648 Replacement = ConstantExpr::get(getOpcode(), C1, C2);
2649 } else {
2650 assert(0 && "Unknown ConstantExpr type!");
2651 return;
2652 }
2653
2654 assert(Replacement != this && "I didn't contain From!");
2655
Chris Lattner7a1450d2005-10-04 18:13:04 +00002656 // Everyone using this now uses the replacement.
2657 uncheckedReplaceAllUsesWith(Replacement);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002658
2659 // Delete the old constant!
2660 destroyConstant();
2661}
2662
2663
Jim Laskey2698f0d2006-03-08 18:11:07 +00002664/// getStringValue - Turn an LLVM constant pointer that eventually points to a
2665/// global into a string value. Return an empty string if we can't do it.
Evan Cheng38280c02006-03-10 23:52:03 +00002666/// Parameter Chop determines if the result is chopped at the first null
2667/// terminator.
Jim Laskey2698f0d2006-03-08 18:11:07 +00002668///
Evan Cheng38280c02006-03-10 23:52:03 +00002669std::string Constant::getStringValue(bool Chop, unsigned Offset) {
Jim Laskey2698f0d2006-03-08 18:11:07 +00002670 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(this)) {
2671 if (GV->hasInitializer() && isa<ConstantArray>(GV->getInitializer())) {
2672 ConstantArray *Init = cast<ConstantArray>(GV->getInitializer());
2673 if (Init->isString()) {
2674 std::string Result = Init->getAsString();
2675 if (Offset < Result.size()) {
2676 // If we are pointing INTO The string, erase the beginning...
2677 Result.erase(Result.begin(), Result.begin()+Offset);
2678
2679 // Take off the null terminator, and any string fragments after it.
Evan Cheng38280c02006-03-10 23:52:03 +00002680 if (Chop) {
2681 std::string::size_type NullPos = Result.find_first_of((char)0);
2682 if (NullPos != std::string::npos)
2683 Result.erase(Result.begin()+NullPos, Result.end());
2684 }
Jim Laskey2698f0d2006-03-08 18:11:07 +00002685 return Result;
2686 }
2687 }
2688 }
Chris Lattner6ab19ed2007-11-01 02:30:35 +00002689 } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(this)) {
2690 if (CE->getOpcode() == Instruction::GetElementPtr) {
2691 // Turn a gep into the specified offset.
2692 if (CE->getNumOperands() == 3 &&
2693 cast<Constant>(CE->getOperand(1))->isNullValue() &&
2694 isa<ConstantInt>(CE->getOperand(2))) {
2695 Offset += cast<ConstantInt>(CE->getOperand(2))->getZExtValue();
2696 return CE->getOperand(0)->getStringValue(Chop, Offset);
Jim Laskey2698f0d2006-03-08 18:11:07 +00002697 }
2698 }
2699 }
2700 return "";
2701}