1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
|
//===-- Globals.cpp - Implement the GlobalValue & GlobalVariable class ----===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file implements the GlobalValue & GlobalVariable classes for the IR
// library.
//
//===----------------------------------------------------------------------===//
#include "llvm/IR/GlobalValue.h"
#include "llvm/ADT/SmallPtrSet.h"
#include "llvm/IR/Constants.h"
#include "llvm/IR/DerivedTypes.h"
#include "llvm/IR/GlobalAlias.h"
#include "llvm/IR/GlobalVariable.h"
#include "llvm/IR/Module.h"
#include "llvm/Support/ErrorHandling.h"
#include "llvm/Support/LeakDetector.h"
using namespace llvm;
//===----------------------------------------------------------------------===//
// GlobalValue Class
//===----------------------------------------------------------------------===//
bool GlobalValue::isMaterializable() const {
return getParent() && getParent()->isMaterializable(this);
}
bool GlobalValue::isDematerializable() const {
return getParent() && getParent()->isDematerializable(this);
}
bool GlobalValue::Materialize(std::string *ErrInfo) {
return getParent()->Materialize(this, ErrInfo);
}
void GlobalValue::Dematerialize() {
getParent()->Dematerialize(this);
}
/// Override destroyConstant to make sure it doesn't get called on
/// GlobalValue's because they shouldn't be treated like other constants.
void GlobalValue::destroyConstant() {
llvm_unreachable("You can't GV->destroyConstant()!");
}
// @LOCALMOD-BEGIN
// Extract the version information from GV.
static void ExtractVersion(const GlobalValue *GV,
StringRef *Name,
StringRef *Ver,
bool *IsDefault) {
// The version information is stored in the GlobalValue's name, e.g.:
//
// GV Name Name Ver IsDefault
// ------------------------------------
// foo@@V1 --> foo V1 true
// bar@V2 --> bar V2 false
// baz --> baz false
StringRef GVName = GV->getName();
size_t atpos = GVName.find("@");
if (atpos == StringRef::npos) {
*Name = GVName;
*Ver = "";
*IsDefault = false;
return;
}
*Name = GVName.substr(0, atpos);
++atpos;
if (atpos < GVName.size() && GVName[atpos] == '@') {
*IsDefault = true;
++atpos;
} else {
*IsDefault = false;
}
*Ver = GVName.substr(atpos);
}
// Set the version information on GV.
static void SetVersion(Module *M,
GlobalValue *GV,
StringRef Ver,
bool IsDefault) {
StringRef Name;
StringRef PrevVersion;
bool PrevIsDefault;
ExtractVersion(GV, &Name, &PrevVersion, &PrevIsDefault);
// If this symbol already has a version, make sure it matches.
if (!PrevVersion.empty()) {
if (!PrevVersion.equals(Ver) || PrevIsDefault != IsDefault) {
llvm_unreachable("Trying to override symbol version info!");
}
return;
}
// If there's no version to set, there's nothing to do.
if (Ver.empty())
return;
// Make sure the versioned symbol name doesn't already exist.
std::string NewName = Name.str() + (IsDefault ? "@@" : "@") + Ver.str();
if (M->getNamedValue(NewName)) {
// It may make sense to do this as long as one of the globals being
// merged is only a declaration. But since this situation seems to be
// a corner case, for now it is unimplemented.
llvm_unreachable("Merging unversioned global into "
"existing versioned global is unimplemented");
}
GV->setName(NewName);
}
StringRef GlobalValue::getUnversionedName() const {
StringRef Name;
StringRef Ver;
bool IsDefaultVersion;
ExtractVersion(this, &Name, &Ver, &IsDefaultVersion);
return Name;
}
StringRef GlobalValue::getVersion() const {
StringRef Name;
StringRef Ver;
bool IsDefaultVersion;
ExtractVersion(this, &Name, &Ver, &IsDefaultVersion);
return Ver;
}
bool GlobalValue::isDefaultVersion() const {
StringRef Name;
StringRef Ver;
bool IsDefaultVersion;
ExtractVersion(this, &Name, &Ver, &IsDefaultVersion);
// It is an error to call this function on an unversioned symbol.
assert(!Ver.empty());
return IsDefaultVersion;
}
void GlobalValue::setVersionDef(StringRef Version, bool IsDefault) {
// This call only makes sense for definitions.
assert(!isDeclaration());
SetVersion(Parent, this, Version, IsDefault);
}
void GlobalValue::setNeeded(StringRef Version, StringRef DynFile) {
// This call makes sense on declarations or
// available-externally definitions.
// TODO(pdox): If this is a definition, should we turn it
// into a declaration here?
assert(isDeclaration() || hasAvailableExternallyLinkage());
SetVersion(Parent, this, Version, false);
Parent->addNeededRecord(DynFile, this);
}
// @LOCALMOD-END
/// copyAttributesFrom - copy all additional attributes (those not needed to
/// create a GlobalValue) from the GlobalValue Src to this one.
void GlobalValue::copyAttributesFrom(const GlobalValue *Src) {
setAlignment(Src->getAlignment());
setSection(Src->getSection());
setVisibility(Src->getVisibility());
setUnnamedAddr(Src->hasUnnamedAddr());
}
void GlobalValue::setAlignment(unsigned Align) {
assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
assert(Align <= MaximumAlignment &&
"Alignment is greater than MaximumAlignment!");
Alignment = Log2_32(Align) + 1;
assert(getAlignment() == Align && "Alignment representation error!");
}
bool GlobalValue::isDeclaration() const {
// Globals are definitions if they have an initializer.
if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(this))
return GV->getNumOperands() == 0;
// Functions are definitions if they have a body.
if (const Function *F = dyn_cast<Function>(this))
return F->empty();
// Aliases are always definitions.
assert(isa<GlobalAlias>(this));
return false;
}
//===----------------------------------------------------------------------===//
// GlobalVariable Implementation
//===----------------------------------------------------------------------===//
GlobalVariable::GlobalVariable(Type *Ty, bool constant, LinkageTypes Link,
Constant *InitVal,
const Twine &Name, ThreadLocalMode TLMode,
unsigned AddressSpace,
bool isExternallyInitialized)
: GlobalValue(PointerType::get(Ty, AddressSpace),
Value::GlobalVariableVal,
OperandTraits<GlobalVariable>::op_begin(this),
InitVal != 0, Link, Name),
isConstantGlobal(constant), threadLocalMode(TLMode),
isExternallyInitializedConstant(isExternallyInitialized) {
if (InitVal) {
assert(InitVal->getType() == Ty &&
"Initializer should be the same type as the GlobalVariable!");
Op<0>() = InitVal;
}
LeakDetector::addGarbageObject(this);
}
GlobalVariable::GlobalVariable(Module &M, Type *Ty, bool constant,
LinkageTypes Link, Constant *InitVal,
const Twine &Name,
GlobalVariable *Before, ThreadLocalMode TLMode,
unsigned AddressSpace,
bool isExternallyInitialized)
: GlobalValue(PointerType::get(Ty, AddressSpace),
Value::GlobalVariableVal,
OperandTraits<GlobalVariable>::op_begin(this),
InitVal != 0, Link, Name),
isConstantGlobal(constant), threadLocalMode(TLMode),
isExternallyInitializedConstant(isExternallyInitialized) {
if (InitVal) {
assert(InitVal->getType() == Ty &&
"Initializer should be the same type as the GlobalVariable!");
Op<0>() = InitVal;
}
LeakDetector::addGarbageObject(this);
if (Before)
Before->getParent()->getGlobalList().insert(Before, this);
else
M.getGlobalList().push_back(this);
}
void GlobalVariable::setParent(Module *parent) {
if (getParent())
LeakDetector::addGarbageObject(this);
Parent = parent;
if (getParent())
LeakDetector::removeGarbageObject(this);
}
void GlobalVariable::removeFromParent() {
getParent()->getGlobalList().remove(this);
}
void GlobalVariable::eraseFromParent() {
getParent()->getGlobalList().erase(this);
}
void GlobalVariable::replaceUsesOfWithOnConstant(Value *From, Value *To,
Use *U) {
// If you call this, then you better know this GVar has a constant
// initializer worth replacing. Enforce that here.
assert(getNumOperands() == 1 &&
"Attempt to replace uses of Constants on a GVar with no initializer");
// And, since you know it has an initializer, the From value better be
// the initializer :)
assert(getOperand(0) == From &&
"Attempt
|