blob: 6c8bd12bb215538153fb34f12c9e0297f2de6f2d [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//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source 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 Lattner5a945e32004-01-12 21:13:12 +000015#include "ConstantFolding.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 Lattner2f7c9632001-06-06 20:29:01 +000019#include "llvm/SymbolTable.h"
Chris Lattnerd7a73302001-10-13 06:57:33 +000020#include "llvm/Module.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000021#include "llvm/ADT/StringExtras.h"
Jim Laskeyb74c6662005-08-17 19:34:49 +000022#include "llvm/Support/MathExtras.h"
Chris Lattner2f7c9632001-06-06 20:29:01 +000023#include <algorithm>
Reid Spencercf394bf2004-07-04 11:51:24 +000024#include <iostream>
Chris Lattner189d19f2003-11-21 20:23:48 +000025using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000026
Chris Lattner3462ae32001-12-03 22:26:30 +000027ConstantBool *ConstantBool::True = new ConstantBool(true);
28ConstantBool *ConstantBool::False = new ConstantBool(false);
Chris Lattner2f7c9632001-06-06 20:29:01 +000029
Chris Lattner9655e542001-07-20 19:16:02 +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))
47 std::cerr << "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 Lattnerb1585a92002-08-13 17:50:20 +000063// Static constructor to create a '0' constant of arbitrary type...
64Constant *Constant::getNullValue(const Type *Ty) {
Chris Lattner6b727592004-06-17 18:19:28 +000065 switch (Ty->getTypeID()) {
Chris Lattner3e88ef92003-10-03 19:34:51 +000066 case Type::BoolTyID: {
67 static Constant *NullBool = ConstantBool::get(false);
68 return NullBool;
69 }
70 case Type::SByteTyID: {
71 static Constant *NullSByte = ConstantSInt::get(Type::SByteTy, 0);
72 return NullSByte;
73 }
74 case Type::UByteTyID: {
75 static Constant *NullUByte = ConstantUInt::get(Type::UByteTy, 0);
76 return NullUByte;
77 }
78 case Type::ShortTyID: {
79 static Constant *NullShort = ConstantSInt::get(Type::ShortTy, 0);
80 return NullShort;
81 }
82 case Type::UShortTyID: {
83 static Constant *NullUShort = ConstantUInt::get(Type::UShortTy, 0);
84 return NullUShort;
85 }
86 case Type::IntTyID: {
87 static Constant *NullInt = ConstantSInt::get(Type::IntTy, 0);
88 return NullInt;
89 }
90 case Type::UIntTyID: {
91 static Constant *NullUInt = ConstantUInt::get(Type::UIntTy, 0);
92 return NullUInt;
93 }
94 case Type::LongTyID: {
95 static Constant *NullLong = ConstantSInt::get(Type::LongTy, 0);
96 return NullLong;
97 }
98 case Type::ULongTyID: {
99 static Constant *NullULong = ConstantUInt::get(Type::ULongTy, 0);
100 return NullULong;
101 }
Chris Lattnerb1585a92002-08-13 17:50:20 +0000102
Chris Lattner3e88ef92003-10-03 19:34:51 +0000103 case Type::FloatTyID: {
104 static Constant *NullFloat = ConstantFP::get(Type::FloatTy, 0);
105 return NullFloat;
106 }
107 case Type::DoubleTyID: {
108 static Constant *NullDouble = ConstantFP::get(Type::DoubleTy, 0);
109 return NullDouble;
110 }
Chris Lattnerb1585a92002-08-13 17:50:20 +0000111
Misha Brukmanb1c93172005-04-21 23:48:37 +0000112 case Type::PointerTyID:
Chris Lattnerb1585a92002-08-13 17:50:20 +0000113 return ConstantPointerNull::get(cast<PointerType>(Ty));
Chris Lattner3e88ef92003-10-03 19:34:51 +0000114
Chris Lattner9fba3da2004-02-15 05:53:04 +0000115 case Type::StructTyID:
116 case Type::ArrayTyID:
Brian Gaeke02209042004-08-20 06:00:58 +0000117 case Type::PackedTyID:
Chris Lattner9fba3da2004-02-15 05:53:04 +0000118 return ConstantAggregateZero::get(Ty);
Chris Lattnerb1585a92002-08-13 17:50:20 +0000119 default:
Reid Spencercf394bf2004-07-04 11:51:24 +0000120 // Function, Label, or Opaque type?
121 assert(!"Cannot create a null constant of that type!");
Chris Lattnerb1585a92002-08-13 17:50:20 +0000122 return 0;
123 }
124}
125
126// Static constructor to create the maximum constant of an integral type...
127ConstantIntegral *ConstantIntegral::getMaxValue(const Type *Ty) {
Chris Lattner6b727592004-06-17 18:19:28 +0000128 switch (Ty->getTypeID()) {
Chris Lattnerb1585a92002-08-13 17:50:20 +0000129 case Type::BoolTyID: return ConstantBool::True;
130 case Type::SByteTyID:
131 case Type::ShortTyID:
132 case Type::IntTyID:
133 case Type::LongTyID: {
Misha Brukmanb1c93172005-04-21 23:48:37 +0000134 // Calculate 011111111111111...
Chris Lattnerb1585a92002-08-13 17:50:20 +0000135 unsigned TypeBits = Ty->getPrimitiveSize()*8;
136 int64_t Val = INT64_MAX; // All ones
137 Val >>= 64-TypeBits; // Shift out unwanted 1 bits...
138 return ConstantSInt::get(Ty, Val);
139 }
140
141 case Type::UByteTyID:
142 case Type::UShortTyID:
143 case Type::UIntTyID:
144 case Type::ULongTyID: return getAllOnesValue(Ty);
145
Chris Lattner31408f72002-08-14 17:12:13 +0000146 default: return 0;
Chris Lattnerb1585a92002-08-13 17:50:20 +0000147 }
148}
149
150// Static constructor to create the minimum constant for an integral type...
151ConstantIntegral *ConstantIntegral::getMinValue(const Type *Ty) {
Chris Lattner6b727592004-06-17 18:19:28 +0000152 switch (Ty->getTypeID()) {
Chris Lattnerb1585a92002-08-13 17:50:20 +0000153 case Type::BoolTyID: return ConstantBool::False;
154 case Type::SByteTyID:
155 case Type::ShortTyID:
156 case Type::IntTyID:
157 case Type::LongTyID: {
Misha Brukmanb1c93172005-04-21 23:48:37 +0000158 // Calculate 1111111111000000000000
Chris Lattnerb1585a92002-08-13 17:50:20 +0000159 unsigned TypeBits = Ty->getPrimitiveSize()*8;
160 int64_t Val = -1; // All ones
161 Val <<= TypeBits-1; // Shift over to the right spot
162 return ConstantSInt::get(Ty, Val);
163 }
164
165 case Type::UByteTyID:
166 case Type::UShortTyID:
167 case Type::UIntTyID:
168 case Type::ULongTyID: return ConstantUInt::get(Ty, 0);
169
Chris Lattner31408f72002-08-14 17:12:13 +0000170 default: return 0;
Chris Lattnerb1585a92002-08-13 17:50:20 +0000171 }
172}
173
174// Static constructor to create an integral constant with all bits set
175ConstantIntegral *ConstantIntegral::getAllOnesValue(const Type *Ty) {
Chris Lattner6b727592004-06-17 18:19:28 +0000176 switch (Ty->getTypeID()) {
Chris Lattnerb1585a92002-08-13 17:50:20 +0000177 case Type::BoolTyID: return ConstantBool::True;
178 case Type::SByteTyID:
179 case Type::ShortTyID:
180 case Type::IntTyID:
181 case Type::LongTyID: return ConstantSInt::get(Ty, -1);
182
183 case Type::UByteTyID:
184 case Type::UShortTyID:
185 case Type::UIntTyID:
186 case Type::ULongTyID: {
187 // Calculate ~0 of the right type...
188 unsigned TypeBits = Ty->getPrimitiveSize()*8;
189 uint64_t Val = ~0ULL; // All ones
190 Val >>= 64-TypeBits; // Shift out unwanted 1 bits...
191 return ConstantUInt::get(Ty, Val);
192 }
Chris Lattner31408f72002-08-14 17:12:13 +0000193 default: return 0;
Chris Lattnerb1585a92002-08-13 17:50:20 +0000194 }
195}
196
Chris Lattner83e5d392003-03-10 22:39:02 +0000197bool ConstantUInt::isAllOnesValue() const {
198 unsigned TypeBits = getType()->getPrimitiveSize()*8;
199 uint64_t Val = ~0ULL; // All ones
200 Val >>= 64-TypeBits; // Shift out inappropriate bits
201 return getValue() == Val;
202}
203
Chris Lattnerb1585a92002-08-13 17:50:20 +0000204
Chris Lattner2f7c9632001-06-06 20:29:01 +0000205//===----------------------------------------------------------------------===//
Chris Lattner3462ae32001-12-03 22:26:30 +0000206// ConstantXXX Classes
Chris Lattner2f7c9632001-06-06 20:29:01 +0000207//===----------------------------------------------------------------------===//
208
209//===----------------------------------------------------------------------===//
210// Normal Constructors
211
Chris Lattnere7e139e2005-09-27 06:09:08 +0000212ConstantIntegral::ConstantIntegral(const Type *Ty, ValueTy VT, uint64_t V)
213 : Constant(Ty, VT, 0, 0) {
Chris Lattner265eb642004-06-21 12:12:12 +0000214 Val.Unsigned = V;
Chris Lattner2f7c9632001-06-06 20:29:01 +0000215}
Chris Lattner49d855c2001-09-07 16:46:31 +0000216
Chris Lattnere7e139e2005-09-27 06:09:08 +0000217ConstantBool::ConstantBool(bool V)
218 : ConstantIntegral(Type::BoolTy, ConstantBoolVal, V) {
Chris Lattner265eb642004-06-21 12:12:12 +0000219}
220
Chris Lattnere7e139e2005-09-27 06:09:08 +0000221ConstantInt::ConstantInt(const Type *Ty, ValueTy VT, uint64_t V)
222 : ConstantIntegral(Ty, VT, V) {
Chris Lattner7309d662001-07-21 19:16:08 +0000223}
Chris Lattner2f7c9632001-06-06 20:29:01 +0000224
Chris Lattnere7e139e2005-09-27 06:09:08 +0000225ConstantSInt::ConstantSInt(const Type *Ty, int64_t V)
226 : ConstantInt(Ty, ConstantSIntVal, V) {
Chris Lattner236c1292002-09-11 01:21:04 +0000227 assert(Ty->isInteger() && Ty->isSigned() &&
Reid Spencerf064bb22005-03-09 15:19:41 +0000228 "Illegal type for signed integer constant!");
Chris Lattner9655e542001-07-20 19:16:02 +0000229 assert(isValueValidForType(Ty, V) && "Value too large for type!");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000230}
231
Chris Lattnere7e139e2005-09-27 06:09:08 +0000232ConstantUInt::ConstantUInt(const Type *Ty, uint64_t V)
233 : ConstantInt(Ty, ConstantUIntVal, V) {
Chris Lattner236c1292002-09-11 01:21:04 +0000234 assert(Ty->isInteger() && Ty->isUnsigned() &&
235 "Illegal type for unsigned integer constant!");
Chris Lattner9655e542001-07-20 19:16:02 +0000236 assert(isValueValidForType(Ty, V) && "Value too large for type!");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000237}
238
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000239ConstantFP::ConstantFP(const Type *Ty, double V)
Chris Lattnere7e139e2005-09-27 06:09:08 +0000240 : Constant(Ty, ConstantFPVal, 0, 0) {
Chris Lattner9655e542001-07-20 19:16:02 +0000241 assert(isValueValidForType(Ty, V) && "Value too large for type!");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000242 Val = V;
243}
244
Chris Lattner3462ae32001-12-03 22:26:30 +0000245ConstantArray::ConstantArray(const ArrayType *T,
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000246 const std::vector<Constant*> &V)
Chris Lattnere7e139e2005-09-27 06:09:08 +0000247 : Constant(T, ConstantArrayVal, new Use[V.size()], V.size()) {
Alkis Evlogimenos0507ffe2004-09-15 02:32:15 +0000248 assert(V.size() == T->getNumElements() &&
249 "Invalid initializer vector for constant array");
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000250 Use *OL = OperandList;
Chris Lattner0144fad2005-10-03 21:56:24 +0000251 for (std::vector<Constant*>::const_iterator I = V.begin(), E = V.end();
252 I != E; ++I, ++OL) {
253 Constant *E = *I;
254 assert((E->getType() == T->getElementType() ||
Alkis Evlogimenoscb031d92004-09-10 04:16:59 +0000255 (T->isAbstract() &&
Chris Lattner0144fad2005-10-03 21:56:24 +0000256 E->getType()->getTypeID() == T->getElementType()->getTypeID())) &&
Alkis Evlogimenoscb031d92004-09-10 04:16:59 +0000257 "Initializer for array element doesn't match array element type!");
Chris Lattner0144fad2005-10-03 21:56:24 +0000258 OL->init(E, this);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000259 }
260}
261
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000262ConstantArray::~ConstantArray() {
263 delete [] OperandList;
264}
265
Chris Lattner3462ae32001-12-03 22:26:30 +0000266ConstantStruct::ConstantStruct(const StructType *T,
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000267 const std::vector<Constant*> &V)
Chris Lattnere7e139e2005-09-27 06:09:08 +0000268 : Constant(T, ConstantStructVal, new Use[V.size()], V.size()) {
Chris Lattnerac6db752004-02-09 04:37:31 +0000269 assert(V.size() == T->getNumElements() &&
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000270 "Invalid initializer vector for constant structure");
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000271 Use *OL = OperandList;
Chris Lattner0144fad2005-10-03 21:56:24 +0000272 for (std::vector<Constant*>::const_iterator I = V.begin(), E = V.end();
273 I != E; ++I, ++OL) {
274 Constant *E = *I;
275 assert((E->getType() == T->getElementType(I-V.begin()) ||
276 ((T->getElementType(I-V.begin())->isAbstract() ||
277 E->getType()->isAbstract()) &&
278 T->getElementType(I-V.begin())->getTypeID() ==
279 E->getType()->getTypeID())) &&
Chris Lattner93c8f142003-06-02 17:42:47 +0000280 "Initializer for struct element doesn't match struct element type!");
Chris Lattner0144fad2005-10-03 21:56:24 +0000281 OL->init(E, this);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000282 }
283}
284
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000285ConstantStruct::~ConstantStruct() {
286 delete [] OperandList;
287}
288
289
Brian Gaeke02209042004-08-20 06:00:58 +0000290ConstantPacked::ConstantPacked(const PackedType *T,
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000291 const std::vector<Constant*> &V)
Chris Lattnere7e139e2005-09-27 06:09:08 +0000292 : Constant(T, ConstantPackedVal, new Use[V.size()], V.size()) {
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000293 Use *OL = OperandList;
Chris Lattner0144fad2005-10-03 21:56:24 +0000294 for (std::vector<Constant*>::const_iterator I = V.begin(), E = V.end();
295 I != E; ++I, ++OL) {
296 Constant *E = *I;
297 assert((E->getType() == T->getElementType() ||
Alkis Evlogimenoscb031d92004-09-10 04:16:59 +0000298 (T->isAbstract() &&
Chris Lattner0144fad2005-10-03 21:56:24 +0000299 E->getType()->getTypeID() == T->getElementType()->getTypeID())) &&
Alkis Evlogimenoscb031d92004-09-10 04:16:59 +0000300 "Initializer for packed element doesn't match packed element type!");
Chris Lattner0144fad2005-10-03 21:56:24 +0000301 OL->init(E, this);
Brian Gaeke02209042004-08-20 06:00:58 +0000302 }
303}
304
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000305ConstantPacked::~ConstantPacked() {
306 delete [] OperandList;
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000307}
308
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000309/// UnaryConstantExpr - This class is private to Constants.cpp, and is used
310/// behind the scenes to implement unary constant exprs.
311class UnaryConstantExpr : public ConstantExpr {
312 Use Op;
313public:
314 UnaryConstantExpr(unsigned Opcode, Constant *C, const Type *Ty)
315 : ConstantExpr(Ty, Opcode, &Op, 1), Op(C, this) {}
316};
Chris Lattner6e415c02004-03-12 05:54:04 +0000317
Chris Lattner22ced562003-06-22 20:48:30 +0000318static bool isSetCC(unsigned Opcode) {
319 return Opcode == Instruction::SetEQ || Opcode == Instruction::SetNE ||
320 Opcode == Instruction::SetLT || Opcode == Instruction::SetGT ||
321 Opcode == Instruction::SetLE || Opcode == Instruction::SetGE;
322}
323
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000324/// BinaryConstantExpr - This class is private to Constants.cpp, and is used
325/// behind the scenes to implement binary constant exprs.
326class BinaryConstantExpr : public ConstantExpr {
327 Use Ops[2];
328public:
329 BinaryConstantExpr(unsigned Opcode, Constant *C1, Constant *C2)
330 : ConstantExpr(isSetCC(Opcode) ? Type::BoolTy : C1->getType(),
331 Opcode, Ops, 2) {
332 Ops[0].init(C1, this);
333 Ops[1].init(C2, this);
334 }
335};
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000336
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000337/// SelectConstantExpr - This class is private to Constants.cpp, and is used
338/// behind the scenes to implement select constant exprs.
339class SelectConstantExpr : public ConstantExpr {
340 Use Ops[3];
341public:
342 SelectConstantExpr(Constant *C1, Constant *C2, Constant *C3)
343 : ConstantExpr(C2->getType(), Instruction::Select, Ops, 3) {
344 Ops[0].init(C1, this);
345 Ops[1].init(C2, this);
346 Ops[2].init(C3, this);
347 }
348};
349
350/// GetElementPtrConstantExpr - This class is private to Constants.cpp, and is
351/// used behind the scenes to implement getelementpr constant exprs.
352struct GetElementPtrConstantExpr : public ConstantExpr {
353 GetElementPtrConstantExpr(Constant *C, const std::vector<Constant*> &IdxList,
354 const Type *DestTy)
355 : ConstantExpr(DestTy, Instruction::GetElementPtr,
356 new Use[IdxList.size()+1], IdxList.size()+1) {
357 OperandList[0].init(C, this);
358 for (unsigned i = 0, E = IdxList.size(); i != E; ++i)
359 OperandList[i+1].init(IdxList[i], this);
360 }
361 ~GetElementPtrConstantExpr() {
Misha Brukmanb1c93172005-04-21 23:48:37 +0000362 delete [] OperandList;
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000363 }
364};
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000365
Chris Lattner817175f2004-03-29 02:37:53 +0000366/// ConstantExpr::get* - Return some common constants without having to
367/// specify the full Instruction::OPCODE identifier.
368///
369Constant *ConstantExpr::getNeg(Constant *C) {
Chris Lattner3cdc27c2004-03-29 19:51:24 +0000370 if (!C->getType()->isFloatingPoint())
371 return get(Instruction::Sub, getNullValue(C->getType()), C);
372 else
373 return get(Instruction::Sub, ConstantFP::get(C->getType(), -0.0), C);
Chris Lattner817175f2004-03-29 02:37:53 +0000374}
375Constant *ConstantExpr::getNot(Constant *C) {
376 assert(isa<ConstantIntegral>(C) && "Cannot NOT a nonintegral type!");
377 return get(Instruction::Xor, C,
378 ConstantIntegral::getAllOnesValue(C->getType()));
379}
380Constant *ConstantExpr::getAdd(Constant *C1, Constant *C2) {
381 return get(Instruction::Add, C1, C2);
382}
383Constant *ConstantExpr::getSub(Constant *C1, Constant *C2) {
384 return get(Instruction::Sub, C1, C2);
385}
386Constant *ConstantExpr::getMul(Constant *C1, Constant *C2) {
387 return get(Instruction::Mul, C1, C2);
388}
389Constant *ConstantExpr::getDiv(Constant *C1, Constant *C2) {
390 return get(Instruction::Div, C1, C2);
391}
392Constant *ConstantExpr::getRem(Constant *C1, Constant *C2) {
393 return get(Instruction::Rem, C1, C2);
394}
395Constant *ConstantExpr::getAnd(Constant *C1, Constant *C2) {
396 return get(Instruction::And, C1, C2);
397}
398Constant *ConstantExpr::getOr(Constant *C1, Constant *C2) {
399 return get(Instruction::Or, C1, C2);
400}
401Constant *ConstantExpr::getXor(Constant *C1, Constant *C2) {
402 return get(Instruction::Xor, C1, C2);
403}
404Constant *ConstantExpr::getSetEQ(Constant *C1, Constant *C2) {
405 return get(Instruction::SetEQ, C1, C2);
406}
407Constant *ConstantExpr::getSetNE(Constant *C1, Constant *C2) {
408 return get(Instruction::SetNE, C1, C2);
409}
410Constant *ConstantExpr::getSetLT(Constant *C1, Constant *C2) {
411 return get(Instruction::SetLT, C1, C2);
412}
413Constant *ConstantExpr::getSetGT(Constant *C1, Constant *C2) {
414 return get(Instruction::SetGT, C1, C2);
415}
416Constant *ConstantExpr::getSetLE(Constant *C1, Constant *C2) {
417 return get(Instruction::SetLE, C1, C2);
418}
419Constant *ConstantExpr::getSetGE(Constant *C1, Constant *C2) {
420 return get(Instruction::SetGE, C1, C2);
421}
422Constant *ConstantExpr::getShl(Constant *C1, Constant *C2) {
423 return get(Instruction::Shl, C1, C2);
424}
425Constant *ConstantExpr::getShr(Constant *C1, Constant *C2) {
426 return get(Instruction::Shr, C1, C2);
427}
428
Chris Lattnerdb8bdba2004-05-25 05:32:43 +0000429Constant *ConstantExpr::getUShr(Constant *C1, Constant *C2) {
430 if (C1->getType()->isUnsigned()) return getShr(C1, C2);
431 return getCast(getShr(getCast(C1,
432 C1->getType()->getUnsignedVersion()), C2), C1->getType());
433}
Chris Lattner817175f2004-03-29 02:37:53 +0000434
Chris Lattnerdb8bdba2004-05-25 05:32:43 +0000435Constant *ConstantExpr::getSShr(Constant *C1, Constant *C2) {
436 if (C1->getType()->isSigned()) return getShr(C1, C2);
437 return getCast(getShr(getCast(C1,
438 C1->getType()->getSignedVersion()), C2), C1->getType());
439}
Chris Lattner60e0dd72001-10-03 06:12:09 +0000440
Chris Lattner2f7c9632001-06-06 20:29:01 +0000441
442//===----------------------------------------------------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +0000443// isValueValidForType implementations
444
Chris Lattner3462ae32001-12-03 22:26:30 +0000445bool ConstantSInt::isValueValidForType(const Type *Ty, int64_t Val) {
Chris Lattner6b727592004-06-17 18:19:28 +0000446 switch (Ty->getTypeID()) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000447 default:
448 return false; // These can't be represented as integers!!!
Chris Lattner2f7c9632001-06-06 20:29:01 +0000449 // Signed types...
450 case Type::SByteTyID:
451 return (Val <= INT8_MAX && Val >= INT8_MIN);
452 case Type::ShortTyID:
453 return (Val <= INT16_MAX && Val >= INT16_MIN);
454 case Type::IntTyID:
Chris Lattner74248512004-06-08 23:21:39 +0000455 return (Val <= int(INT32_MAX) && Val >= int(INT32_MIN));
Chris Lattner2f7c9632001-06-06 20:29:01 +0000456 case Type::LongTyID:
457 return true; // This is the largest type...
458 }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000459}
460
Chris Lattner3462ae32001-12-03 22:26:30 +0000461bool ConstantUInt::isValueValidForType(const Type *Ty, uint64_t Val) {
Chris Lattner6b727592004-06-17 18:19:28 +0000462 switch (Ty->getTypeID()) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000463 default:
464 return false; // These can't be represented as integers!!!
465
466 // Unsigned types...
467 case Type::UByteTyID:
468 return (Val <= UINT8_MAX);
469 case Type::UShortTyID:
470 return (Val <= UINT16_MAX);
471 case Type::UIntTyID:
472 return (Val <= UINT32_MAX);
473 case Type::ULongTyID:
474 return true; // This is the largest type...
475 }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000476}
477
Chris Lattner3462ae32001-12-03 22:26:30 +0000478bool ConstantFP::isValueValidForType(const Type *Ty, double Val) {
Chris Lattner6b727592004-06-17 18:19:28 +0000479 switch (Ty->getTypeID()) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000480 default:
481 return false; // These can't be represented as floating point!
482
Reid Spencerb95f8ab2004-12-07 07:38:08 +0000483 // TODO: Figure out how to test if a double can be cast to a float!
Chris Lattner2f7c9632001-06-06 20:29:01 +0000484 case Type::FloatTyID:
Chris Lattner2f7c9632001-06-06 20:29:01 +0000485 case Type::DoubleTyID:
486 return true; // This is the largest type...
487 }
488};
Chris Lattner9655e542001-07-20 19:16:02 +0000489
Chris Lattner49d855c2001-09-07 16:46:31 +0000490//===----------------------------------------------------------------------===//
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000491// replaceUsesOfWithOnConstant implementations
492
Chris Lattnerc27038d2003-08-29 05:36:46 +0000493void ConstantArray::replaceUsesOfWithOnConstant(Value *From, Value *To,
494 bool DisableChecking) {
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000495 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
496
497 std::vector<Constant*> Values;
Alkis Evlogimenosf0cc8142004-08-04 08:02:59 +0000498 Values.reserve(getNumOperands()); // Build replacement array...
499 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
500 Constant *Val = getOperand(i);
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000501 if (Val == From) Val = cast<Constant>(To);
502 Values.push_back(Val);
503 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000504
Chris Lattnerc75bf522004-02-15 04:05:58 +0000505 Constant *Replacement = ConstantArray::get(getType(), Values);
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000506 assert(Replacement != this && "I didn't contain From!");
507
508 // Everyone using this now uses the replacement...
Chris Lattnerc27038d2003-08-29 05:36:46 +0000509 if (DisableChecking)
510 uncheckedReplaceAllUsesWith(Replacement);
511 else
512 replaceAllUsesWith(Replacement);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000513
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000514 // Delete the old constant!
Misha Brukmanb1c93172005-04-21 23:48:37 +0000515 destroyConstant();
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000516}
517
Chris Lattnerc27038d2003-08-29 05:36:46 +0000518void ConstantStruct::replaceUsesOfWithOnConstant(Value *From, Value *To,
519 bool DisableChecking) {
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000520 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
521
522 std::vector<Constant*> Values;
Alkis Evlogimenosf0cc8142004-08-04 08:02:59 +0000523 Values.reserve(getNumOperands()); // Build replacement array...
524 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
525 Constant *Val = getOperand(i);
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000526 if (Val == From) Val = cast<Constant>(To);
527 Values.push_back(Val);
528 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000529
Chris Lattner37a716f2004-02-15 04:07:32 +0000530 Constant *Replacement = ConstantStruct::get(getType(), Values);
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000531 assert(Replacement != this && "I didn't contain From!");
532
533 // Everyone using this now uses the replacement...
Chris Lattnerc27038d2003-08-29 05:36:46 +0000534 if (DisableChecking)
535 uncheckedReplaceAllUsesWith(Replacement);
536 else
537 replaceAllUsesWith(Replacement);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000538
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000539 // Delete the old constant!
540 destroyConstant();
541}
542
Brian Gaeke02209042004-08-20 06:00:58 +0000543void ConstantPacked::replaceUsesOfWithOnConstant(Value *From, Value *To,
544 bool DisableChecking) {
545 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
546
547 std::vector<Constant*> Values;
548 Values.reserve(getNumOperands()); // Build replacement array...
549 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
550 Constant *Val = getOperand(i);
551 if (Val == From) Val = cast<Constant>(To);
552 Values.push_back(Val);
553 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000554
Brian Gaeke02209042004-08-20 06:00:58 +0000555 Constant *Replacement = ConstantPacked::get(getType(), Values);
556 assert(Replacement != this && "I didn't contain From!");
557
558 // Everyone using this now uses the replacement...
559 if (DisableChecking)
560 uncheckedReplaceAllUsesWith(Replacement);
561 else
562 replaceAllUsesWith(Replacement);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000563
Brian Gaeke02209042004-08-20 06:00:58 +0000564 // Delete the old constant!
Misha Brukmanb1c93172005-04-21 23:48:37 +0000565 destroyConstant();
Brian Gaeke02209042004-08-20 06:00:58 +0000566}
567
Chris Lattnerc27038d2003-08-29 05:36:46 +0000568void ConstantExpr::replaceUsesOfWithOnConstant(Value *From, Value *ToV,
569 bool DisableChecking) {
Chris Lattner55ed6562003-05-14 17:51:05 +0000570 assert(isa<Constant>(ToV) && "Cannot make Constant refer to non-constant!");
571 Constant *To = cast<Constant>(ToV);
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000572
Chris Lattner46b3d302003-04-16 22:40:51 +0000573 Constant *Replacement = 0;
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000574 if (getOpcode() == Instruction::GetElementPtr) {
575 std::vector<Constant*> Indices;
Chris Lattner55ed6562003-05-14 17:51:05 +0000576 Constant *Pointer = getOperand(0);
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000577 Indices.reserve(getNumOperands()-1);
Chris Lattner55ed6562003-05-14 17:51:05 +0000578 if (Pointer == From) Pointer = To;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000579
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000580 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
Chris Lattner55ed6562003-05-14 17:51:05 +0000581 Constant *Val = getOperand(i);
582 if (Val == From) Val = To;
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000583 Indices.push_back(Val);
584 }
585 Replacement = ConstantExpr::getGetElementPtr(Pointer, Indices);
586 } else if (getOpcode() == Instruction::Cast) {
587 assert(getOperand(0) == From && "Cast only has one use!");
Chris Lattner55ed6562003-05-14 17:51:05 +0000588 Replacement = ConstantExpr::getCast(To, getType());
Chris Lattner467cb2b2004-03-31 02:56:11 +0000589 } else if (getOpcode() == Instruction::Select) {
590 Constant *C1 = getOperand(0);
591 Constant *C2 = getOperand(1);
592 Constant *C3 = getOperand(2);
593 if (C1 == From) C1 = To;
594 if (C2 == From) C2 = To;
595 if (C3 == From) C3 = To;
596 Replacement = ConstantExpr::getSelect(C1, C2, C3);
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000597 } else if (getNumOperands() == 2) {
Chris Lattner55ed6562003-05-14 17:51:05 +0000598 Constant *C1 = getOperand(0);
599 Constant *C2 = getOperand(1);
600 if (C1 == From) C1 = To;
601 if (C2 == From) C2 = To;
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000602 Replacement = ConstantExpr::get(getOpcode(), C1, C2);
603 } else {
604 assert(0 && "Unknown ConstantExpr type!");
605 return;
606 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000607
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000608 assert(Replacement != this && "I didn't contain From!");
609
610 // Everyone using this now uses the replacement...
Chris Lattnerc27038d2003-08-29 05:36:46 +0000611 if (DisableChecking)
612 uncheckedReplaceAllUsesWith(Replacement);
613 else
614 replaceAllUsesWith(Replacement);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000615
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000616 // Delete the old constant!
617 destroyConstant();
618}
619
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000620//===----------------------------------------------------------------------===//
Chris Lattner49d855c2001-09-07 16:46:31 +0000621// Factory Function Implementation
622
Chris Lattner98fa07b2003-05-23 20:03:32 +0000623// ConstantCreator - A class that is used to create constants by
624// ValueMap*. This class should be partially specialized if there is
625// something strange that needs to be done to interface to the ctor for the
626// constant.
627//
Chris Lattner189d19f2003-11-21 20:23:48 +0000628namespace llvm {
629 template<class ConstantClass, class TypeClass, class ValType>
630 struct ConstantCreator {
631 static ConstantClass *create(const TypeClass *Ty, const ValType &V) {
632 return new ConstantClass(Ty, V);
633 }
634 };
Misha Brukmanb1c93172005-04-21 23:48:37 +0000635
Chris Lattner189d19f2003-11-21 20:23:48 +0000636 template<class ConstantClass, class TypeClass>
637 struct ConvertConstantType {
638 static void convert(ConstantClass *OldC, const TypeClass *NewTy) {
639 assert(0 && "This type cannot be converted!\n");
640 abort();
641 }
642 };
643}
Chris Lattnerb50d1352003-10-05 00:17:43 +0000644
Chris Lattner98fa07b2003-05-23 20:03:32 +0000645namespace {
646 template<class ValType, class TypeClass, class ConstantClass>
Chris Lattnerb50d1352003-10-05 00:17:43 +0000647 class ValueMap : public AbstractTypeUser {
648 typedef std::pair<const TypeClass*, ValType> MapKey;
649 typedef std::map<MapKey, ConstantClass *> MapTy;
650 typedef typename MapTy::iterator MapIterator;
651 MapTy Map;
652
653 typedef std::map<const TypeClass*, MapIterator> AbstractTypeMapTy;
654 AbstractTypeMapTy AbstractTypeMap;
Chris Lattner99a669b2004-11-19 16:39:44 +0000655
656 friend void Constant::clearAllValueMaps();
657 private:
658 void clear(std::vector<Constant *> &Constants) {
659 for(MapIterator I = Map.begin(); I != Map.end(); ++I)
660 Constants.push_back(I->second);
661 Map.clear();
662 AbstractTypeMap.clear();
663 }
664
Chris Lattner98fa07b2003-05-23 20:03:32 +0000665 public:
666 // getOrCreate - Return the specified constant from the map, creating it if
667 // necessary.
668 ConstantClass *getOrCreate(const TypeClass *Ty, const ValType &V) {
Chris Lattnerb50d1352003-10-05 00:17:43 +0000669 MapKey Lookup(Ty, V);
670 MapIterator I = Map.lower_bound(Lookup);
Chris Lattner98fa07b2003-05-23 20:03:32 +0000671 if (I != Map.end() && I->first == Lookup)
672 return I->second; // Is it in the map?
673
674 // If no preexisting value, create one now...
675 ConstantClass *Result =
676 ConstantCreator<ConstantClass,TypeClass,ValType>::create(Ty, V);
677
Chris Lattnerb50d1352003-10-05 00:17:43 +0000678
679 /// FIXME: why does this assert fail when loading 176.gcc?
680 //assert(Result->getType() == Ty && "Type specified is not correct!");
681 I = Map.insert(I, std::make_pair(MapKey(Ty, V), Result));
682
683 // If the type of the constant is abstract, make sure that an entry exists
684 // for it in the AbstractTypeMap.
685 if (Ty->isAbstract()) {
686 typename AbstractTypeMapTy::iterator TI =
687 AbstractTypeMap.lower_bound(Ty);
688
689 if (TI == AbstractTypeMap.end() || TI->first != Ty) {
690 // Add ourselves to the ATU list of the type.
691 cast<DerivedType>(Ty)->addAbstractTypeUser(this);
692
693 AbstractTypeMap.insert(TI, std::make_pair(Ty, I));
694 }
695 }
Chris Lattner98fa07b2003-05-23 20:03:32 +0000696 return Result;
697 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000698
Chris Lattner98fa07b2003-05-23 20:03:32 +0000699 void remove(ConstantClass *CP) {
Chris Lattner3e650af2004-08-04 04:48:01 +0000700 MapIterator I = Map.find(MapKey((TypeClass*)CP->getRawType(),
701 getValType(CP)));
Chris Lattner20a4dab2004-08-04 22:26:13 +0000702 if (I == Map.end() || I->second != CP) {
703 // FIXME: This should not use a linear scan. If this gets to be a
704 // performance problem, someone should look at this.
705 for (I = Map.begin(); I != Map.end() && I->second != CP; ++I)
706 /* empty */;
707 }
708
Chris Lattnerb50d1352003-10-05 00:17:43 +0000709 assert(I != Map.end() && "Constant not found in constant table!");
Chris Lattner3e650af2004-08-04 04:48:01 +0000710 assert(I->second == CP && "Didn't find correct element?");
Chris Lattnerb50d1352003-10-05 00:17:43 +0000711
712 // Now that we found the entry, make sure this isn't the entry that
713 // the AbstractTypeMap points to.
714 const TypeClass *Ty = I->first.first;
715 if (Ty->isAbstract()) {
716 assert(AbstractTypeMap.count(Ty) &&
717 "Abstract type not in AbstractTypeMap?");
718 MapIterator &ATMEntryIt = AbstractTypeMap[Ty];
719 if (ATMEntryIt == I) {
720 // Yes, we are removing the representative entry for this type.
721 // See if there are any other entries of the same type.
722 MapIterator TmpIt = ATMEntryIt;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000723
Chris Lattnerb50d1352003-10-05 00:17:43 +0000724 // First check the entry before this one...
725 if (TmpIt != Map.begin()) {
726 --TmpIt;
727 if (TmpIt->first.first != Ty) // Not the same type, move back...
728 ++TmpIt;
729 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000730
Chris Lattnerb50d1352003-10-05 00:17:43 +0000731 // If we didn't find the same type, try to move forward...
732 if (TmpIt == ATMEntryIt) {
733 ++TmpIt;
734 if (TmpIt == Map.end() || TmpIt->first.first != Ty)
735 --TmpIt; // No entry afterwards with the same type
736 }
737
738 // If there is another entry in the map of the same abstract type,
739 // update the AbstractTypeMap entry now.
740 if (TmpIt != ATMEntryIt) {
741 ATMEntryIt = TmpIt;
742 } else {
743 // Otherwise, we are removing the last instance of this type
744 // from the table. Remove from the ATM, and from user list.
745 cast<DerivedType>(Ty)->removeAbstractTypeUser(this);
746 AbstractTypeMap.erase(Ty);
747 }
Chris Lattner98fa07b2003-05-23 20:03:32 +0000748 }
Chris Lattnerb50d1352003-10-05 00:17:43 +0000749 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000750
Chris Lattnerb50d1352003-10-05 00:17:43 +0000751 Map.erase(I);
752 }
753
754 void refineAbstractType(const DerivedType *OldTy, const Type *NewTy) {
Misha Brukmanb1c93172005-04-21 23:48:37 +0000755 typename AbstractTypeMapTy::iterator I =
Chris Lattnerb50d1352003-10-05 00:17:43 +0000756 AbstractTypeMap.find(cast<TypeClass>(OldTy));
757
758 assert(I != AbstractTypeMap.end() &&
759 "Abstract type not in AbstractTypeMap?");
760
761 // Convert a constant at a time until the last one is gone. The last one
762 // leaving will remove() itself, causing the AbstractTypeMapEntry to be
763 // eliminated eventually.
764 do {
765 ConvertConstantType<ConstantClass,
766 TypeClass>::convert(I->second->second,
767 cast<TypeClass>(NewTy));
768
769 I = AbstractTypeMap.find(cast<TypeClass>(OldTy));
770 } while (I != AbstractTypeMap.end());
771 }
772
773 // If the type became concrete without being refined to any other existing
774 // type, we just remove ourselves from the ATU list.
775 void typeBecameConcrete(const DerivedType *AbsTy) {
776 AbsTy->removeAbstractTypeUser(this);
777 }
778
779 void dump() const {
780 std::cerr << "Constant.cpp: ValueMap\n";
Chris Lattner98fa07b2003-05-23 20:03:32 +0000781 }
782 };
783}
784
Chris Lattner3462ae32001-12-03 22:26:30 +0000785//---- ConstantUInt::get() and ConstantSInt::get() implementations...
Chris Lattner49d855c2001-09-07 16:46:31 +0000786//
Chris Lattner98fa07b2003-05-23 20:03:32 +0000787static ValueMap< int64_t, Type, ConstantSInt> SIntConstants;
788static ValueMap<uint64_t, Type, ConstantUInt> UIntConstants;
Chris Lattner49d855c2001-09-07 16:46:31 +0000789
Chris Lattner3462ae32001-12-03 22:26:30 +0000790ConstantSInt *ConstantSInt::get(const Type *Ty, int64_t V) {
Chris Lattner98fa07b2003-05-23 20:03:32 +0000791 return SIntConstants.getOrCreate(Ty, V);
Chris Lattner49d855c2001-09-07 16:46:31 +0000792}
793
Chris Lattner3462ae32001-12-03 22:26:30 +0000794ConstantUInt *ConstantUInt::get(const Type *Ty, uint64_t V) {
Chris Lattner98fa07b2003-05-23 20:03:32 +0000795 return UIntConstants.getOrCreate(Ty, V);
Chris Lattner49d855c2001-09-07 16:46:31 +0000796}
797
Chris Lattner3462ae32001-12-03 22:26:30 +0000798ConstantInt *ConstantInt::get(const Type *Ty, unsigned char V) {
Chris Lattner49d855c2001-09-07 16:46:31 +0000799 assert(V <= 127 && "Can only be used with very small positive constants!");
Chris Lattner3462ae32001-12-03 22:26:30 +0000800 if (Ty->isSigned()) return ConstantSInt::get(Ty, V);
801 return ConstantUInt::get(Ty, V);
Chris Lattner49d855c2001-09-07 16:46:31 +0000802}
803
Chris Lattner3462ae32001-12-03 22:26:30 +0000804//---- ConstantFP::get() implementation...
Chris Lattner49d855c2001-09-07 16:46:31 +0000805//
Chris Lattnerac80ea42004-02-01 22:49:04 +0000806namespace llvm {
807 template<>
808 struct ConstantCreator<ConstantFP, Type, uint64_t> {
809 static ConstantFP *create(const Type *Ty, uint64_t V) {
810 assert(Ty == Type::DoubleTy);
Jim Laskeyb74c6662005-08-17 19:34:49 +0000811 return new ConstantFP(Ty, BitsToDouble(V));
Chris Lattnerac80ea42004-02-01 22:49:04 +0000812 }
813 };
814 template<>
815 struct ConstantCreator<ConstantFP, Type, uint32_t> {
816 static ConstantFP *create(const Type *Ty, uint32_t V) {
817 assert(Ty == Type::FloatTy);
Jim Laskeyb74c6662005-08-17 19:34:49 +0000818 return new ConstantFP(Ty, BitsToFloat(V));
Chris Lattnerac80ea42004-02-01 22:49:04 +0000819 }
820 };
821}
822
823static ValueMap<uint64_t, Type, ConstantFP> DoubleConstants;
824static ValueMap<uint32_t, Type, ConstantFP> FloatConstants;
Chris Lattner49d855c2001-09-07 16:46:31 +0000825
Jim Laskey8ad8f712005-08-17 20:06:22 +0000826bool ConstantFP::isNullValue() const {
827 return DoubleToBits(Val) == 0;
828}
829
830bool ConstantFP::isExactlyValue(double V) const {
831 return DoubleToBits(V) == DoubleToBits(Val);
832}
833
834
Chris Lattner3462ae32001-12-03 22:26:30 +0000835ConstantFP *ConstantFP::get(const Type *Ty, double V) {
Chris Lattner241ed4c2004-01-23 00:55:21 +0000836 if (Ty == Type::FloatTy) {
837 // Force the value through memory to normalize it.
Jim Laskeyb74c6662005-08-17 19:34:49 +0000838 return FloatConstants.getOrCreate(Ty, FloatToBits(V));
Chris Lattnerac80ea42004-02-01 22:49:04 +0000839 } else {
840 assert(Ty == Type::DoubleTy);
Jim Laskeyb74c6662005-08-17 19:34:49 +0000841 return DoubleConstants.getOrCreate(Ty, DoubleToBits(V));
Chris Lattner241ed4c2004-01-23 00:55:21 +0000842 }
Chris Lattner49d855c2001-09-07 16:46:31 +0000843}
844
Chris Lattner9fba3da2004-02-15 05:53:04 +0000845//---- ConstantAggregateZero::get() implementation...
846//
847namespace llvm {
848 // ConstantAggregateZero does not take extra "value" argument...
849 template<class ValType>
850 struct ConstantCreator<ConstantAggregateZero, Type, ValType> {
851 static ConstantAggregateZero *create(const Type *Ty, const ValType &V){
852 return new ConstantAggregateZero(Ty);
853 }
854 };
855
856 template<>
857 struct ConvertConstantType<ConstantAggregateZero, Type> {
858 static void convert(ConstantAggregateZero *OldC, const Type *NewTy) {
859 // Make everyone now use a constant of the new type...
860 Constant *New = ConstantAggregateZero::get(NewTy);
861 assert(New != OldC && "Didn't replace constant??");
862 OldC->uncheckedReplaceAllUsesWith(New);
863 OldC->destroyConstant(); // This constant is now dead, destroy it.
864 }
865 };
866}
867
868static ValueMap<char, Type, ConstantAggregateZero> AggZeroConstants;
869
Chris Lattner3e650af2004-08-04 04:48:01 +0000870static char getValType(ConstantAggregateZero *CPZ) { return 0; }
871
Chris Lattner9fba3da2004-02-15 05:53:04 +0000872Constant *ConstantAggregateZero::get(const Type *Ty) {
873 return AggZeroConstants.getOrCreate(Ty, 0);
874}
875
876// destroyConstant - Remove the constant from the constant table...
877//
878void ConstantAggregateZero::destroyConstant() {
879 AggZeroConstants.remove(this);
880 destroyConstantImpl();
881}
882
883void ConstantAggregateZero::replaceUsesOfWithOnConstant(Value *From, Value *To,
884 bool DisableChecking) {
885 assert(0 && "No uses!");
886 abort();
887}
888
889
890
Chris Lattner3462ae32001-12-03 22:26:30 +0000891//---- ConstantArray::get() implementation...
Chris Lattner49d855c2001-09-07 16:46:31 +0000892//
Chris Lattner189d19f2003-11-21 20:23:48 +0000893namespace llvm {
894 template<>
895 struct ConvertConstantType<ConstantArray, ArrayType> {
896 static void convert(ConstantArray *OldC, const ArrayType *NewTy) {
897 // Make everyone now use a constant of the new type...
898 std::vector<Constant*> C;
899 for (unsigned i = 0, e = OldC->getNumOperands(); i != e; ++i)
900 C.push_back(cast<Constant>(OldC->getOperand(i)));
901 Constant *New = ConstantArray::get(NewTy, C);
902 assert(New != OldC && "Didn't replace constant??");
903 OldC->uncheckedReplaceAllUsesWith(New);
904 OldC->destroyConstant(); // This constant is now dead, destroy it.
905 }
906 };
907}
Chris Lattnerb50d1352003-10-05 00:17:43 +0000908
Chris Lattner3e650af2004-08-04 04:48:01 +0000909static std::vector<Constant*> getValType(ConstantArray *CA) {
910 std::vector<Constant*> Elements;
911 Elements.reserve(CA->getNumOperands());
912 for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i)
913 Elements.push_back(cast<Constant>(CA->getOperand(i)));
914 return Elements;
915}
916
Chris Lattner98fa07b2003-05-23 20:03:32 +0000917static ValueMap<std::vector<Constant*>, ArrayType,
918 ConstantArray> ArrayConstants;
Chris Lattner49d855c2001-09-07 16:46:31 +0000919
Chris Lattner015e8212004-02-15 04:14:47 +0000920Constant *ConstantArray::get(const ArrayType *Ty,
Chris Lattner9fba3da2004-02-15 05:53:04 +0000921 const std::vector<Constant*> &V) {
922 // If this is an all-zero array, return a ConstantAggregateZero object
923 if (!V.empty()) {
924 Constant *C = V[0];
925 if (!C->isNullValue())
926 return ArrayConstants.getOrCreate(Ty, V);
927 for (unsigned i = 1, e = V.size(); i != e; ++i)
928 if (V[i] != C)
929 return ArrayConstants.getOrCreate(Ty, V);
930 }
931 return ConstantAggregateZero::get(Ty);
Chris Lattner49d855c2001-09-07 16:46:31 +0000932}
933
Chris Lattner98fa07b2003-05-23 20:03:32 +0000934// destroyConstant - Remove the constant from the constant table...
935//
936void ConstantArray::destroyConstant() {
937 ArrayConstants.remove(this);
938 destroyConstantImpl();
939}
940
Chris Lattner3462ae32001-12-03 22:26:30 +0000941// ConstantArray::get(const string&) - Return an array that is initialized to
Chris Lattner8f80fe02001-10-14 23:54:12 +0000942// contain the specified string. A null terminator is added to the specified
943// string so that it may be used in a natural way...
944//
Chris Lattner015e8212004-02-15 04:14:47 +0000945Constant *ConstantArray::get(const std::string &Str) {
Chris Lattner7f74a562002-01-20 22:54:45 +0000946 std::vector<Constant*> ElementVals;
Chris Lattner8f80fe02001-10-14 23:54:12 +0000947
948 for (unsigned i = 0; i < Str.length(); ++i)
Chris Lattnerbec9b0b2001-12-14 16:41:18 +0000949 ElementVals.push_back(ConstantSInt::get(Type::SByteTy, Str[i]));
Chris Lattner8f80fe02001-10-14 23:54:12 +0000950
951 // Add a null terminator to the string...
Chris Lattnerbec9b0b2001-12-14 16:41:18 +0000952 ElementVals.push_back(ConstantSInt::get(Type::SByteTy, 0));
Chris Lattner8f80fe02001-10-14 23:54:12 +0000953
Chris Lattnerbec9b0b2001-12-14 16:41:18 +0000954 ArrayType *ATy = ArrayType::get(Type::SByteTy, Str.length()+1);
Chris Lattner3462ae32001-12-03 22:26:30 +0000955 return ConstantArray::get(ATy, ElementVals);
Vikram S. Adve34410432001-10-14 23:17:20 +0000956}
957
Chris Lattnere8dfcca2004-01-14 17:06:38 +0000958/// isString - This method returns true if the array is an array of sbyte or
959/// ubyte, and if the elements of the array are all ConstantInt's.
960bool ConstantArray::isString() const {
961 // Check the element type for sbyte or ubyte...
Chris Lattnere8701f62004-01-14 17:51:53 +0000962 if (getType()->getElementType() != Type::UByteTy &&
Chris Lattnere8dfcca2004-01-14 17:06:38 +0000963 getType()->getElementType() != Type::SByteTy)
964 return false;
965 // Check the elements to make sure they are all integers, not constant
966 // expressions.
967 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
968 if (!isa<ConstantInt>(getOperand(i)))
969 return false;
970 return true;
971}
972
Chris Lattner81fabb02002-08-26 17:53:56 +0000973// getAsString - If the sub-element type of this array is either sbyte or ubyte,
974// then this method converts the array to an std::string and returns it.
975// Otherwise, it asserts out.
976//
977std::string ConstantArray::getAsString() const {
Chris Lattnere8dfcca2004-01-14 17:06:38 +0000978 assert(isString() && "Not a string!");
Chris Lattner81fabb02002-08-26 17:53:56 +0000979 std::string Result;
Chris Lattner6077c312003-07-23 15:22:26 +0000980 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
981 Result += (char)cast<ConstantInt>(getOperand(i))->getRawValue();
Chris Lattner81fabb02002-08-26 17:53:56 +0000982 return Result;
983}
984
985
Chris Lattner3462ae32001-12-03 22:26:30 +0000986//---- ConstantStruct::get() implementation...
Chris Lattner49d855c2001-09-07 16:46:31 +0000987//
Chris Lattnerb50d1352003-10-05 00:17:43 +0000988
Chris Lattner189d19f2003-11-21 20:23:48 +0000989namespace llvm {
990 template<>
991 struct ConvertConstantType<ConstantStruct, StructType> {
992 static void convert(ConstantStruct *OldC, const StructType *NewTy) {
993 // Make everyone now use a constant of the new type...
994 std::vector<Constant*> C;
995 for (unsigned i = 0, e = OldC->getNumOperands(); i != e; ++i)
996 C.push_back(cast<Constant>(OldC->getOperand(i)));
997 Constant *New = ConstantStruct::get(NewTy, C);
998 assert(New != OldC && "Didn't replace constant??");
Misha Brukmanb1c93172005-04-21 23:48:37 +0000999
Chris Lattner189d19f2003-11-21 20:23:48 +00001000 OldC->uncheckedReplaceAllUsesWith(New);
1001 OldC->destroyConstant(); // This constant is now dead, destroy it.
1002 }
1003 };
1004}
Chris Lattnerb50d1352003-10-05 00:17:43 +00001005
Misha Brukmanb1c93172005-04-21 23:48:37 +00001006static ValueMap<std::vector<Constant*>, StructType,
Chris Lattner98fa07b2003-05-23 20:03:32 +00001007 ConstantStruct> StructConstants;
Chris Lattner49d855c2001-09-07 16:46:31 +00001008
Chris Lattner3e650af2004-08-04 04:48:01 +00001009static std::vector<Constant*> getValType(ConstantStruct *CS) {
1010 std::vector<Constant*> Elements;
1011 Elements.reserve(CS->getNumOperands());
1012 for (unsigned i = 0, e = CS->getNumOperands(); i != e; ++i)
1013 Elements.push_back(cast<Constant>(CS->getOperand(i)));
1014 return Elements;
1015}
1016
Chris Lattner015e8212004-02-15 04:14:47 +00001017Constant *ConstantStruct::get(const StructType *Ty,
1018 const std::vector<Constant*> &V) {
Chris Lattner9fba3da2004-02-15 05:53:04 +00001019 // Create a ConstantAggregateZero value if all elements are zeros...
1020 for (unsigned i = 0, e = V.size(); i != e; ++i)
1021 if (!V[i]->isNullValue())
1022 return StructConstants.getOrCreate(Ty, V);
1023
1024 return ConstantAggregateZero::get(Ty);
Chris Lattner49d855c2001-09-07 16:46:31 +00001025}
Chris Lattner883ad0b2001-10-03 15:39:36 +00001026
Chris Lattnerd6108ca2004-07-12 20:35:11 +00001027Constant *ConstantStruct::get(const std::vector<Constant*> &V) {
1028 std::vector<const Type*> StructEls;
1029 StructEls.reserve(V.size());
1030 for (unsigned i = 0, e = V.size(); i != e; ++i)
1031 StructEls.push_back(V[i]->getType());
1032 return get(StructType::get(StructEls), V);
1033}
1034
Chris Lattnerd7a73302001-10-13 06:57:33 +00001035// destroyConstant - Remove the constant from the constant table...
Chris Lattner883ad0b2001-10-03 15:39:36 +00001036//
Chris Lattner3462ae32001-12-03 22:26:30 +00001037void ConstantStruct::destroyConstant() {
Chris Lattnerd7a73302001-10-13 06:57:33 +00001038 StructConstants.remove(this);
1039 destroyConstantImpl();
1040}
Chris Lattner883ad0b2001-10-03 15:39:36 +00001041
Brian Gaeke02209042004-08-20 06:00:58 +00001042//---- ConstantPacked::get() implementation...
1043//
1044namespace llvm {
1045 template<>
1046 struct ConvertConstantType<ConstantPacked, PackedType> {
1047 static void convert(ConstantPacked *OldC, const PackedType *NewTy) {
1048 // Make everyone now use a constant of the new type...
1049 std::vector<Constant*> C;
1050 for (unsigned i = 0, e = OldC->getNumOperands(); i != e; ++i)
1051 C.push_back(cast<Constant>(OldC->getOperand(i)));
1052 Constant *New = ConstantPacked::get(NewTy, C);
1053 assert(New != OldC && "Didn't replace constant??");
1054 OldC->uncheckedReplaceAllUsesWith(New);
1055 OldC->destroyConstant(); // This constant is now dead, destroy it.
1056 }
1057 };
1058}
1059
1060static std::vector<Constant*> getValType(ConstantPacked *CP) {
1061 std::vector<Constant*> Elements;
1062 Elements.reserve(CP->getNumOperands());
1063 for (unsigned i = 0, e = CP->getNumOperands(); i != e; ++i)
1064 Elements.push_back(CP->getOperand(i));
1065 return Elements;
1066}
1067
1068static ValueMap<std::vector<Constant*>, PackedType,
1069 ConstantPacked> PackedConstants;
1070
1071Constant *ConstantPacked::get(const PackedType *Ty,
1072 const std::vector<Constant*> &V) {
1073 // If this is an all-zero packed, return a ConstantAggregateZero object
1074 if (!V.empty()) {
1075 Constant *C = V[0];
1076 if (!C->isNullValue())
1077 return PackedConstants.getOrCreate(Ty, V);
1078 for (unsigned i = 1, e = V.size(); i != e; ++i)
1079 if (V[i] != C)
1080 return PackedConstants.getOrCreate(Ty, V);
1081 }
1082 return ConstantAggregateZero::get(Ty);
1083}
1084
1085Constant *ConstantPacked::get(const std::vector<Constant*> &V) {
1086 assert(!V.empty() && "Cannot infer type if V is empty");
1087 return get(PackedType::get(V.front()->getType(),V.size()), V);
1088}
1089
1090// destroyConstant - Remove the constant from the constant table...
1091//
1092void ConstantPacked::destroyConstant() {
1093 PackedConstants.remove(this);
1094 destroyConstantImpl();
1095}
1096
Chris Lattner3462ae32001-12-03 22:26:30 +00001097//---- ConstantPointerNull::get() implementation...
Chris Lattnerd7a73302001-10-13 06:57:33 +00001098//
Chris Lattner98fa07b2003-05-23 20:03:32 +00001099
Chris Lattner189d19f2003-11-21 20:23:48 +00001100namespace llvm {
1101 // ConstantPointerNull does not take extra "value" argument...
1102 template<class ValType>
1103 struct ConstantCreator<ConstantPointerNull, PointerType, ValType> {
1104 static ConstantPointerNull *create(const PointerType *Ty, const ValType &V){
1105 return new ConstantPointerNull(Ty);
1106 }
1107 };
Chris Lattner98fa07b2003-05-23 20:03:32 +00001108
Chris Lattner189d19f2003-11-21 20:23:48 +00001109 template<>
1110 struct ConvertConstantType<ConstantPointerNull, PointerType> {
1111 static void convert(ConstantPointerNull *OldC, const PointerType *NewTy) {
1112 // Make everyone now use a constant of the new type...
1113 Constant *New = ConstantPointerNull::get(NewTy);
1114 assert(New != OldC && "Didn't replace constant??");
1115 OldC->uncheckedReplaceAllUsesWith(New);
1116 OldC->destroyConstant(); // This constant is now dead, destroy it.
1117 }
1118 };
1119}
Chris Lattnerb50d1352003-10-05 00:17:43 +00001120
Chris Lattner98fa07b2003-05-23 20:03:32 +00001121static ValueMap<char, PointerType, ConstantPointerNull> NullPtrConstants;
Chris Lattnerd7a73302001-10-13 06:57:33 +00001122
Chris Lattner3e650af2004-08-04 04:48:01 +00001123static char getValType(ConstantPointerNull *) {
1124 return 0;
1125}
1126
1127
Chris Lattner3462ae32001-12-03 22:26:30 +00001128ConstantPointerNull *ConstantPointerNull::get(const PointerType *Ty) {
Chris Lattner98fa07b2003-05-23 20:03:32 +00001129 return NullPtrConstants.getOrCreate(Ty, 0);
Chris Lattner883ad0b2001-10-03 15:39:36 +00001130}
1131
Chris Lattner0c6e0b92002-08-18 00:40:04 +00001132// destroyConstant - Remove the constant from the constant table...
1133//
1134void ConstantPointerNull::destroyConstant() {
1135 NullPtrConstants.remove(this);
1136 destroyConstantImpl();
1137}
1138
1139
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001140//---- UndefValue::get() implementation...
1141//
1142
1143namespace llvm {
1144 // UndefValue does not take extra "value" argument...
1145 template<class ValType>
1146 struct ConstantCreator<UndefValue, Type, ValType> {
1147 static UndefValue *create(const Type *Ty, const ValType &V) {
1148 return new UndefValue(Ty);
1149 }
1150 };
1151
1152 template<>
1153 struct ConvertConstantType<UndefValue, Type> {
1154 static void convert(UndefValue *OldC, const Type *NewTy) {
1155 // Make everyone now use a constant of the new type.
1156 Constant *New = UndefValue::get(NewTy);
1157 assert(New != OldC && "Didn't replace constant??");
1158 OldC->uncheckedReplaceAllUsesWith(New);
1159 OldC->destroyConstant(); // This constant is now dead, destroy it.
1160 }
1161 };
1162}
1163
1164static ValueMap<char, Type, UndefValue> UndefValueConstants;
1165
1166static char getValType(UndefValue *) {
1167 return 0;
1168}
1169
1170
1171UndefValue *UndefValue::get(const Type *Ty) {
1172 return UndefValueConstants.getOrCreate(Ty, 0);
1173}
1174
1175// destroyConstant - Remove the constant from the constant table.
1176//
1177void UndefValue::destroyConstant() {
1178 UndefValueConstants.remove(this);
1179 destroyConstantImpl();
1180}
1181
1182
1183
1184
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001185//---- ConstantExpr::get() implementations...
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001186//
Chris Lattner2b383d2e2003-05-13 21:37:02 +00001187typedef std::pair<unsigned, std::vector<Constant*> > ExprMapKeyType;
Chris Lattner98fa07b2003-05-23 20:03:32 +00001188
Chris Lattner189d19f2003-11-21 20:23:48 +00001189namespace llvm {
1190 template<>
1191 struct ConstantCreator<ConstantExpr, Type, ExprMapKeyType> {
1192 static ConstantExpr *create(const Type *Ty, const ExprMapKeyType &V) {
1193 if (V.first == Instruction::Cast)
Chris Lattnerd0df99c2005-01-29 00:34:39 +00001194 return new UnaryConstantExpr(Instruction::Cast, V.second[0], Ty);
Chris Lattner189d19f2003-11-21 20:23:48 +00001195 if ((V.first >= Instruction::BinaryOpsBegin &&
1196 V.first < Instruction::BinaryOpsEnd) ||
1197 V.first == Instruction::Shl || V.first == Instruction::Shr)
Chris Lattnerd0df99c2005-01-29 00:34:39 +00001198 return new BinaryConstantExpr(V.first, V.second[0], V.second[1]);
Chris Lattnerb7897ce2004-03-30 22:51:03 +00001199 if (V.first == Instruction::Select)
Chris Lattnerd0df99c2005-01-29 00:34:39 +00001200 return new SelectConstantExpr(V.second[0], V.second[1], V.second[2]);
Misha Brukmanb1c93172005-04-21 23:48:37 +00001201
Chris Lattner189d19f2003-11-21 20:23:48 +00001202 assert(V.first == Instruction::GetElementPtr && "Invalid ConstantExpr!");
Misha Brukmanb1c93172005-04-21 23:48:37 +00001203
Chris Lattner189d19f2003-11-21 20:23:48 +00001204 std::vector<Constant*> IdxList(V.second.begin()+1, V.second.end());
Chris Lattnerd0df99c2005-01-29 00:34:39 +00001205 return new GetElementPtrConstantExpr(V.second[0], IdxList, Ty);
Chris Lattnerb50d1352003-10-05 00:17:43 +00001206 }
Chris Lattner189d19f2003-11-21 20:23:48 +00001207 };
Chris Lattnerb50d1352003-10-05 00:17:43 +00001208
Chris Lattner189d19f2003-11-21 20:23:48 +00001209 template<>
1210 struct ConvertConstantType<ConstantExpr, Type> {
1211 static void convert(ConstantExpr *OldC, const Type *NewTy) {
1212 Constant *New;
1213 switch (OldC->getOpcode()) {
1214 case Instruction::Cast:
1215 New = ConstantExpr::getCast(OldC->getOperand(0), NewTy);
1216 break;
Chris Lattner6e415c02004-03-12 05:54:04 +00001217 case Instruction::Select:
1218 New = ConstantExpr::getSelectTy(NewTy, OldC->getOperand(0),
1219 OldC->getOperand(1),
1220 OldC->getOperand(2));
1221 break;
Chris Lattner189d19f2003-11-21 20:23:48 +00001222 case Instruction::Shl:
1223 case Instruction::Shr:
1224 New = ConstantExpr::getShiftTy(NewTy, OldC->getOpcode(),
1225 OldC->getOperand(0), OldC->getOperand(1));
1226 break;
1227 default:
1228 assert(OldC->getOpcode() >= Instruction::BinaryOpsBegin &&
1229 OldC->getOpcode() < Instruction::BinaryOpsEnd);
1230 New = ConstantExpr::getTy(NewTy, OldC->getOpcode(), OldC->getOperand(0),
1231 OldC->getOperand(1));
1232 break;
1233 case Instruction::GetElementPtr:
Misha Brukmanb1c93172005-04-21 23:48:37 +00001234 // Make everyone now use a constant of the new type...
Chris Lattner13128ab2004-10-11 22:52:25 +00001235 std::vector<Value*> Idx(OldC->op_begin()+1, OldC->op_end());
1236 New = ConstantExpr::getGetElementPtrTy(NewTy, OldC->getOperand(0), Idx);
Chris Lattner189d19f2003-11-21 20:23:48 +00001237 break;
1238 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00001239
Chris Lattner189d19f2003-11-21 20:23:48 +00001240 assert(New != OldC && "Didn't replace constant??");
1241 OldC->uncheckedReplaceAllUsesWith(New);
1242 OldC->destroyConstant(); // This constant is now dead, destroy it.
1243 }
1244 };
1245} // end namespace llvm
Chris Lattnerb50d1352003-10-05 00:17:43 +00001246
1247
Chris Lattner3e650af2004-08-04 04:48:01 +00001248static ExprMapKeyType getValType(ConstantExpr *CE) {
1249 std::vector<Constant*> Operands;
1250 Operands.reserve(CE->getNumOperands());
1251 for (unsigned i = 0, e = CE->getNumOperands(); i != e; ++i)
1252 Operands.push_back(cast<Constant>(CE->getOperand(i)));
1253 return ExprMapKeyType(CE->getOpcode(), Operands);
1254}
1255
Chris Lattner98fa07b2003-05-23 20:03:32 +00001256static ValueMap<ExprMapKeyType, Type, ConstantExpr> ExprConstants;
Vikram S. Adve4c485332002-07-15 18:19:33 +00001257
Chris Lattner46b3d302003-04-16 22:40:51 +00001258Constant *ConstantExpr::getCast(Constant *C, const Type *Ty) {
Chris Lattner815ae2b2003-10-07 22:19:19 +00001259 assert(Ty->isFirstClassType() && "Cannot cast to an aggregate type!");
1260
Chris Lattneracdbe712003-04-17 19:24:48 +00001261 if (Constant *FC = ConstantFoldCastInstruction(C, Ty))
1262 return FC; // Fold a few common cases...
1263
Vikram S. Adve4c485332002-07-15 18:19:33 +00001264 // Look up the constant in the table first to ensure uniqueness
Chris Lattner2b383d2e2003-05-13 21:37:02 +00001265 std::vector<Constant*> argVec(1, C);
Chris Lattner98fa07b2003-05-23 20:03:32 +00001266 ExprMapKeyType Key = std::make_pair(Instruction::Cast, argVec);
1267 return ExprConstants.getOrCreate(Ty, Key);
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001268}
Chris Lattnerd7a73302001-10-13 06:57:33 +00001269
Chris Lattnerdd284742004-04-04 23:20:30 +00001270Constant *ConstantExpr::getSignExtend(Constant *C, const Type *Ty) {
Chris Lattner1ece6f82005-01-01 15:59:57 +00001271 assert(C->getType()->isIntegral() && Ty->isIntegral() &&
Chris Lattnerdd284742004-04-04 23:20:30 +00001272 C->getType()->getPrimitiveSize() <= Ty->getPrimitiveSize() &&
1273 "This is an illegal sign extension!");
Chris Lattner1ece6f82005-01-01 15:59:57 +00001274 if (C->getType() != Type::BoolTy) {
1275 C = ConstantExpr::getCast(C, C->getType()->getSignedVersion());
1276 return ConstantExpr::getCast(C, Ty);
1277 } else {
1278 if (C == ConstantBool::True)
1279 return ConstantIntegral::getAllOnesValue(Ty);
1280 else
1281 return ConstantIntegral::getNullValue(Ty);
1282 }
Chris Lattnerdd284742004-04-04 23:20:30 +00001283}
1284
1285Constant *ConstantExpr::getZeroExtend(Constant *C, const Type *Ty) {
Chris Lattner1ece6f82005-01-01 15:59:57 +00001286 assert(C->getType()->isIntegral() && Ty->isIntegral() &&
Chris Lattnerdd284742004-04-04 23:20:30 +00001287 C->getType()->getPrimitiveSize() <= Ty->getPrimitiveSize() &&
1288 "This is an illegal zero extension!");
Chris Lattner1ece6f82005-01-01 15:59:57 +00001289 if (C->getType() != Type::BoolTy)
1290 C = ConstantExpr::getCast(C, C->getType()->getUnsignedVersion());
Chris Lattnerdd284742004-04-04 23:20:30 +00001291 return ConstantExpr::getCast(C, Ty);
1292}
1293
Alkis Evlogimenosda5de052004-10-24 01:41:10 +00001294Constant *ConstantExpr::getSizeOf(const Type *Ty) {
Chris Lattneracc4e542004-12-13 19:48:51 +00001295 // sizeof is implemented as: (ulong) gep (Ty*)null, 1
Alkis Evlogimenosda5de052004-10-24 01:41:10 +00001296 return getCast(
Chris Lattneracc4e542004-12-13 19:48:51 +00001297 getGetElementPtr(getNullValue(PointerType::get(Ty)),
1298 std::vector<Constant*>(1, ConstantInt::get(Type::UIntTy, 1))),
1299 Type::ULongTy);
Alkis Evlogimenosda5de052004-10-24 01:41:10 +00001300}
1301
Alkis Evlogimenos9160d5f2005-03-19 11:40:31 +00001302Constant *ConstantExpr::getPtrPtrFromArrayPtr(Constant *C) {
1303 // pointer from array is implemented as: getelementptr arr ptr, 0, 0
1304 static std::vector<Constant*> Indices(2, ConstantUInt::get(Type::UIntTy, 0));
1305
1306 return ConstantExpr::getGetElementPtr(C, Indices);
1307}
1308
Chris Lattnerb50d1352003-10-05 00:17:43 +00001309Constant *ConstantExpr::getTy(const Type *ReqTy, unsigned Opcode,
1310 Constant *C1, Constant *C2) {
Chris Lattner5645e8a2004-01-12 19:04:55 +00001311 if (Opcode == Instruction::Shl || Opcode == Instruction::Shr)
1312 return getShiftTy(ReqTy, Opcode, C1, C2);
Chris Lattner38a9bcd2003-05-21 17:49:25 +00001313 // Check the operands for consistency first
1314 assert((Opcode >= Instruction::BinaryOpsBegin &&
1315 Opcode < Instruction::BinaryOpsEnd) &&
1316 "Invalid opcode in binary constant expression");
1317 assert(C1->getType() == C2->getType() &&
1318 "Operand types in binary constant expression should match");
Chris Lattnerb50d1352003-10-05 00:17:43 +00001319
Chris Lattner29ca2c62004-08-04 18:50:09 +00001320 if (ReqTy == C1->getType() || (Instruction::isRelational(Opcode) &&
1321 ReqTy == Type::BoolTy))
Chris Lattnerb50d1352003-10-05 00:17:43 +00001322 if (Constant *FC = ConstantFoldBinaryInstruction(Opcode, C1, C2))
1323 return FC; // Fold a few common cases...
Chris Lattneracdbe712003-04-17 19:24:48 +00001324
Chris Lattner2b383d2e2003-05-13 21:37:02 +00001325 std::vector<Constant*> argVec(1, C1); argVec.push_back(C2);
Chris Lattner98fa07b2003-05-23 20:03:32 +00001326 ExprMapKeyType Key = std::make_pair(Opcode, argVec);
Chris Lattnerb50d1352003-10-05 00:17:43 +00001327 return ExprConstants.getOrCreate(ReqTy, Key);
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001328}
1329
Chris Lattner29ca2c62004-08-04 18:50:09 +00001330Constant *ConstantExpr::get(unsigned Opcode, Constant *C1, Constant *C2) {
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001331#ifndef NDEBUG
1332 switch (Opcode) {
1333 case Instruction::Add: case Instruction::Sub:
1334 case Instruction::Mul: case Instruction::Div:
1335 case Instruction::Rem:
1336 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Misha Brukmanb1c93172005-04-21 23:48:37 +00001337 assert((C1->getType()->isInteger() || C1->getType()->isFloatingPoint()) &&
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001338 "Tried to create an arithmetic operation on a non-arithmetic type!");
1339 break;
1340 case Instruction::And:
1341 case Instruction::Or:
1342 case Instruction::Xor:
1343 assert(C1->getType() == C2->getType() && "Op types should be identical!");
1344 assert(C1->getType()->isIntegral() &&
Misha Brukman3852f652005-01-27 06:46:38 +00001345 "Tried to create a logical operation on a non-integral type!");
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001346 break;
1347 case Instruction::SetLT: case Instruction::SetGT: case Instruction::SetLE:
1348 case Instruction::SetGE: case Instruction::SetEQ: case Instruction::SetNE:
1349 assert(C1->getType() == C2->getType() && "Op types should be identical!");
1350 break;
1351 case Instruction::Shl:
1352 case Instruction::Shr:
1353 assert(C2->getType() == Type::UByteTy && "Shift should be by ubyte!");
1354 assert(C1->getType()->isInteger() &&
1355 "Tried to create a shift operation on a non-integer type!");
1356 break;
1357 default:
1358 break;
1359 }
1360#endif
1361
Chris Lattner29ca2c62004-08-04 18:50:09 +00001362 if (Instruction::isRelational(Opcode))
1363 return getTy(Type::BoolTy, Opcode, C1, C2);
1364 else
1365 return getTy(C1->getType(), Opcode, C1, C2);
1366}
1367
Chris Lattner6e415c02004-03-12 05:54:04 +00001368Constant *ConstantExpr::getSelectTy(const Type *ReqTy, Constant *C,
1369 Constant *V1, Constant *V2) {
1370 assert(C->getType() == Type::BoolTy && "Select condition must be bool!");
1371 assert(V1->getType() == V2->getType() && "Select value types must match!");
1372 assert(V1->getType()->isFirstClassType() && "Cannot select aggregate type!");
1373
1374 if (ReqTy == V1->getType())
1375 if (Constant *SC = ConstantFoldSelectInstruction(C, V1, V2))
1376 return SC; // Fold common cases
1377
1378 std::vector<Constant*> argVec(3, C);
1379 argVec[1] = V1;
1380 argVec[2] = V2;
1381 ExprMapKeyType Key = std::make_pair(Instruction::Select, argVec);
1382 return ExprConstants.getOrCreate(ReqTy, Key);
1383}
1384
Chris Lattner9eb2b522004-01-12 19:12:58 +00001385/// getShiftTy - Return a shift left or shift right constant expr
Chris Lattnerb50d1352003-10-05 00:17:43 +00001386Constant *ConstantExpr::getShiftTy(const Type *ReqTy, unsigned Opcode,
1387 Constant *C1, Constant *C2) {
Chris Lattner38a9bcd2003-05-21 17:49:25 +00001388 // Check the operands for consistency first
1389 assert((Opcode == Instruction::Shl ||
1390 Opcode == Instruction::Shr) &&
1391 "Invalid opcode in binary constant expression");
1392 assert(C1->getType()->isIntegral() && C2->getType() == Type::UByteTy &&
1393 "Invalid operand types for Shift constant expr!");
1394
Chris Lattner0bba7712004-01-12 20:40:42 +00001395 if (Constant *FC = ConstantFoldBinaryInstruction(Opcode, C1, C2))
Chris Lattner38a9bcd2003-05-21 17:49:25 +00001396 return FC; // Fold a few common cases...
1397
1398 // Look up the constant in the table first to ensure uniqueness
1399 std::vector<Constant*> argVec(1, C1); argVec.push_back(C2);
Chris Lattner98fa07b2003-05-23 20:03:32 +00001400 ExprMapKeyType Key = std::make_pair(Opcode, argVec);
Chris Lattnerb50d1352003-10-05 00:17:43 +00001401 return ExprConstants.getOrCreate(ReqTy, Key);
Chris Lattner38a9bcd2003-05-21 17:49:25 +00001402}
1403
1404
Chris Lattnerb50d1352003-10-05 00:17:43 +00001405Constant *ConstantExpr::getGetElementPtrTy(const Type *ReqTy, Constant *C,
Chris Lattner13128ab2004-10-11 22:52:25 +00001406 const std::vector<Value*> &IdxList) {
1407 assert(GetElementPtrInst::getIndexedType(C->getType(), IdxList, true) &&
Chris Lattner04b60fe2004-02-16 20:46:13 +00001408 "GEP indices invalid!");
1409
Chris Lattneracdbe712003-04-17 19:24:48 +00001410 if (Constant *FC = ConstantFoldGetElementPtr(C, IdxList))
1411 return FC; // Fold a few common cases...
Chris Lattner04b60fe2004-02-16 20:46:13 +00001412
Chris Lattnerb50d1352003-10-05 00:17:43 +00001413 assert(isa<PointerType>(C->getType()) &&
Chris Lattner98fa07b2003-05-23 20:03:32 +00001414 "Non-pointer type for constant GetElementPtr expression");
Vikram S. Adve4c485332002-07-15 18:19:33 +00001415 // Look up the constant in the table first to ensure uniqueness
Chris Lattner13128ab2004-10-11 22:52:25 +00001416 std::vector<Constant*> ArgVec;
1417 ArgVec.reserve(IdxList.size()+1);
1418 ArgVec.push_back(C);
1419 for (unsigned i = 0, e = IdxList.size(); i != e; ++i)
1420 ArgVec.push_back(cast<Constant>(IdxList[i]));
1421 const ExprMapKeyType &Key = std::make_pair(Instruction::GetElementPtr,ArgVec);
Chris Lattnerb50d1352003-10-05 00:17:43 +00001422 return ExprConstants.getOrCreate(ReqTy, Key);
Vikram S. Adve4c485332002-07-15 18:19:33 +00001423}
1424
Chris Lattnerb50d1352003-10-05 00:17:43 +00001425Constant *ConstantExpr::getGetElementPtr(Constant *C,
1426 const std::vector<Constant*> &IdxList){
1427 // Get the result type of the getelementptr!
1428 std::vector<Value*> VIdxList(IdxList.begin(), IdxList.end());
1429
1430 const Type *Ty = GetElementPtrInst::getIndexedType(C->getType(), VIdxList,
1431 true);
1432 assert(Ty && "GEP indices invalid!");
Chris Lattner13128ab2004-10-11 22:52:25 +00001433 return getGetElementPtrTy(PointerType::get(Ty), C, VIdxList);
1434}
1435
1436Constant *ConstantExpr::getGetElementPtr(Constant *C,
1437 const std::vector<Value*> &IdxList) {
1438 // Get the result type of the getelementptr!
1439 const Type *Ty = GetElementPtrInst::getIndexedType(C->getType(), IdxList,
1440 true);
1441 assert(Ty && "GEP indices invalid!");
Chris Lattnerb50d1352003-10-05 00:17:43 +00001442 return getGetElementPtrTy(PointerType::get(Ty), C, IdxList);
1443}
1444
1445
Vikram S. Adve4c485332002-07-15 18:19:33 +00001446// destroyConstant - Remove the constant from the constant table...
1447//
1448void ConstantExpr::destroyConstant() {
1449 ExprConstants.remove(this);
1450 destroyConstantImpl();
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001451}
1452
Chris Lattner3cd8c562002-07-30 18:54:25 +00001453const char *ConstantExpr::getOpcodeName() const {
1454 return Instruction::getOpcodeName(getOpcode());
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001455}
Reid Spencer1ebe1ab2004-07-17 23:48:33 +00001456
Chris Lattner99a669b2004-11-19 16:39:44 +00001457/// clearAllValueMaps - This method frees all internal memory used by the
1458/// constant subsystem, which can be used in environments where this memory
1459/// is otherwise reported as a leak.
1460void Constant::clearAllValueMaps() {
1461 std::vector<Constant *> Constants;
1462
1463 DoubleConstants.clear(Constants);
1464 FloatConstants.clear(Constants);
1465 SIntConstants.clear(Constants);
1466 UIntConstants.clear(Constants);
1467 AggZeroConstants.clear(Constants);
1468 ArrayConstants.clear(Constants);
1469 StructConstants.clear(Constants);
1470 PackedConstants.clear(Constants);
1471 NullPtrConstants.clear(Constants);
1472 UndefValueConstants.clear(Constants);
1473 ExprConstants.clear(Constants);
1474
Misha Brukmanb1c93172005-04-21 23:48:37 +00001475 for (std::vector<Constant *>::iterator I = Constants.begin(),
Chris Lattner99a669b2004-11-19 16:39:44 +00001476 E = Constants.end(); I != E; ++I)
1477 (*I)->dropAllReferences();
1478 for (std::vector<Constant *>::iterator I = Constants.begin(),
1479 E = Constants.end(); I != E; ++I)
1480 (*I)->destroyConstantImpl();
1481 Constants.clear();
1482}