-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
/
Copy pathllvm-final-gc-lowering.cpp
268 lines (233 loc) · 9.91 KB
/
llvm-final-gc-lowering.cpp
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
// This file is a part of Julia. License is MIT: https://julialang.org/license
#include "llvm-gc-interface-passes.h"
#define DEBUG_TYPE "final_gc_lowering"
STATISTIC(NewGCFrameCount, "Number of lowered newGCFrameFunc intrinsics");
STATISTIC(PushGCFrameCount, "Number of lowered pushGCFrameFunc intrinsics");
STATISTIC(PopGCFrameCount, "Number of lowered popGCFrameFunc intrinsics");
STATISTIC(GetGCFrameSlotCount, "Number of lowered getGCFrameSlotFunc intrinsics");
STATISTIC(QueueGCRootCount, "Number of lowered queueGCRootFunc intrinsics");
STATISTIC(SafepointCount, "Number of lowered safepoint intrinsics");
void FinalLowerGC::lowerNewGCFrame(CallInst *target, Function &F)
{
++NewGCFrameCount;
assert(target->arg_size() == 1);
unsigned nRoots = cast<ConstantInt>(target->getArgOperand(0))->getLimitedValue(INT_MAX);
// Create the GC frame.
IRBuilder<> builder(target);
auto gcframe_alloca = builder.CreateAlloca(T_prjlvalue, ConstantInt::get(Type::getInt32Ty(F.getContext()), nRoots + 2));
gcframe_alloca->setAlignment(Align(16));
// addrspacecast as needed for non-0 alloca addrspace
auto gcframe = cast<Instruction>(builder.CreateAddrSpaceCast(gcframe_alloca, PointerType::getUnqual(T_prjlvalue->getContext())));
gcframe->takeName(target);
// Zero out the GC frame.
auto ptrsize = F.getParent()->getDataLayout().getPointerSize();
builder.CreateMemSet(gcframe, Constant::getNullValue(Type::getInt8Ty(F.getContext())), ptrsize * (nRoots + 2), Align(16), tbaa_gcframe);
target->replaceAllUsesWith(gcframe);
target->eraseFromParent();
}
void FinalLowerGC::lowerPushGCFrame(CallInst *target, Function &F)
{
++PushGCFrameCount;
assert(target->arg_size() == 2);
auto gcframe = target->getArgOperand(0);
unsigned nRoots = cast<ConstantInt>(target->getArgOperand(1))->getLimitedValue(INT_MAX);
IRBuilder<> builder(target);
StoreInst *inst = builder.CreateAlignedStore(
ConstantInt::get(T_size, JL_GC_ENCODE_PUSHARGS(nRoots)),
builder.CreateConstInBoundsGEP1_32(T_prjlvalue, gcframe, 0, "frame.nroots"),// GEP of 0 becomes a noop and eats the name
Align(sizeof(void*)));
inst->setMetadata(LLVMContext::MD_tbaa, tbaa_gcframe);
auto T_ppjlvalue = JuliaType::get_ppjlvalue_ty(F.getContext());
inst = builder.CreateAlignedStore(
builder.CreateAlignedLoad(T_ppjlvalue, pgcstack, Align(sizeof(void*)), "task.gcstack"),
builder.CreatePointerCast(
builder.CreateConstInBoundsGEP1_32(T_prjlvalue, gcframe, 1, "frame.prev"),
PointerType::get(T_ppjlvalue, 0)),
Align(sizeof(void*)));
inst->setMetadata(LLVMContext::MD_tbaa, tbaa_gcframe);
builder.CreateAlignedStore(
gcframe,
pgcstack,
Align(sizeof(void*)));
target->eraseFromParent();
}
void FinalLowerGC::lowerPopGCFrame(CallInst *target, Function &F)
{
++PopGCFrameCount;
assert(target->arg_size() == 1);
auto gcframe = target->getArgOperand(0);
IRBuilder<> builder(target);
Instruction *gcpop =
cast<Instruction>(builder.CreateConstInBoundsGEP1_32(T_prjlvalue, gcframe, 1));
Instruction *inst = builder.CreateAlignedLoad(T_prjlvalue, gcpop, Align(sizeof(void*)), "frame.prev");
inst->setMetadata(LLVMContext::MD_tbaa, tbaa_gcframe);
inst = builder.CreateAlignedStore(
inst,
pgcstack,
Align(sizeof(void*)));
inst->setMetadata(LLVMContext::MD_tbaa, tbaa_gcframe);
target->eraseFromParent();
}
void FinalLowerGC::lowerGetGCFrameSlot(CallInst *target, Function &F)
{
++GetGCFrameSlotCount;
assert(target->arg_size() == 2);
auto gcframe = target->getArgOperand(0);
auto index = target->getArgOperand(1);
// Initialize an IR builder.
IRBuilder<> builder(target);
// The first two slots are reserved, so we'll add two to the index.
index = builder.CreateAdd(index, ConstantInt::get(Type::getInt32Ty(F.getContext()), 2));
// Lower the intrinsic as a GEP.
auto gep = builder.CreateInBoundsGEP(T_prjlvalue, gcframe, index);
gep->takeName(target);
target->replaceAllUsesWith(gep);
target->eraseFromParent();
}
void FinalLowerGC::lowerQueueGCRoot(CallInst *target, Function &F)
{
++QueueGCRootCount;
assert(target->arg_size() == 1);
target->setCalledFunction(queueRootFunc);
}
void FinalLowerGC::lowerSafepoint(CallInst *target, Function &F)
{
++SafepointCount;
assert(target->arg_size() == 1);
IRBuilder<> builder(target);
Value* signal_page = target->getOperand(0);
builder.CreateLoad(T_size, signal_page, true);
target->eraseFromParent();
}
static bool hasUse(const JuliaPassContext &ctx, const jl_intrinsics::IntrinsicDescription &v)
{
auto Intr = ctx.getOrNull(v);
return Intr && !Intr->use_empty();
}
bool FinalLowerGC::shouldRunFinalGC()
{
bool should_run = 0;
should_run |= hasUse(*this, jl_intrinsics::newGCFrame);
should_run |= hasUse(*this, jl_intrinsics::getGCFrameSlot);
should_run |= hasUse(*this, jl_intrinsics::pushGCFrame);
should_run |= hasUse(*this, jl_intrinsics::popGCFrame);
should_run |= hasUse(*this, jl_intrinsics::GCAllocBytes);
should_run |= hasUse(*this, jl_intrinsics::queueGCRoot);
should_run |= hasUse(*this, jl_intrinsics::safepoint);
should_run |= (write_barrier_func && !write_barrier_func->use_empty());
return should_run;
}
bool FinalLowerGC::runOnFunction(Function &F)
{
initAll(*F.getParent());
pgcstack = getPGCstack(F);
auto gc_alloc_bytes = getOrNull(jl_intrinsics::GCAllocBytes);
if (!pgcstack || !shouldRunFinalGC())
goto verify_skip;
LLVM_DEBUG(dbgs() << "FINAL GC LOWERING: Processing function " << F.getName() << "\n");
queueRootFunc = getOrDeclare(jl_well_known::GCQueueRoot);
smallAllocFunc = getOrDeclare(jl_well_known::GCSmallAlloc);
bigAllocFunc = getOrDeclare(jl_well_known::GCBigAlloc);
allocTypedFunc = getOrDeclare(jl_well_known::GCAllocTyped);
T_size = F.getParent()->getDataLayout().getIntPtrType(F.getContext());
// The replacement for these may require creating new BasicBlocks
// which messes up the loop below. Process them first
if (gc_alloc_bytes) {
for (auto it = gc_alloc_bytes->user_begin(); it != gc_alloc_bytes->user_end(); ) {
if (auto *CI = dyn_cast<CallInst>(*it)) {
assert(CI->getCalledOperand() == gc_alloc_bytes);
auto newI = lowerGCAllocBytes(CI, F);
if (newI != CI) {
++it;
CI->replaceAllUsesWith(newI);
CI->eraseFromParent();
continue;
}
}
++it;
}
}
// Write barriers should always be processed first since they may
// insert julia.queue_gc_root intrinsics
if (write_barrier_func) {
for (auto it = write_barrier_func->user_begin(); it != write_barrier_func->user_end(); ) {
if (auto *CI = dyn_cast<CallInst>(*it)) {
assert(CI->getCalledOperand() == write_barrier_func);
lowerWriteBarrier(CI, F);
++it;
CI->eraseFromParent();
continue;
}
++it;
}
}
// Lower all calls to supported intrinsics.
for (auto &BB : F) {
for (auto &I : make_early_inc_range(BB)) {
auto *CI = dyn_cast<CallInst>(&I);
if (!CI)
continue;
Value *callee = CI->getCalledOperand();
assert(callee);
#define LOWER_INTRINSIC(INTRINSIC, LOWER_INTRINSIC_FUNC) \
do { \
auto intrinsic = getOrNull(jl_intrinsics::INTRINSIC); \
if (intrinsic == callee) { \
LOWER_INTRINSIC_FUNC(CI, F); \
} \
} while (0)
LOWER_INTRINSIC(newGCFrame, lowerNewGCFrame);
LOWER_INTRINSIC(getGCFrameSlot, lowerGetGCFrameSlot);
LOWER_INTRINSIC(pushGCFrame, lowerPushGCFrame);
LOWER_INTRINSIC(popGCFrame, lowerPopGCFrame);
LOWER_INTRINSIC(queueGCRoot, lowerQueueGCRoot);
LOWER_INTRINSIC(safepoint, lowerSafepoint);
#undef LOWER_INTRINSIC
}
}
return true;
// Verify that skipping was in fact correct
verify_skip:
#ifdef JL_VERIFY_PASSES
for (auto &BB : F) {
for (auto &I : make_early_inc_range(BB)) {
auto *CI = dyn_cast<CallInst>(&I);
if (!CI)
continue;
Value *callee = CI->getCalledOperand();
assert(callee);
if (write_barrier_func == callee) {
errs() << "Final-GC-lowering didn't eliminate all write barriers from '" << F.getName() << "', dumping entire module!\n\n";
errs() << *F.getParent() << "\n";
abort();
}
auto IS_INTRINSIC = [&](auto intrinsic) {
auto intrinsic2 = getOrNull(intrinsic);
if (intrinsic2 == callee) {
errs() << "Final-GC-lowering didn't eliminate all intrinsics from '" << F.getName() << "', dumping entire module!\n\n";
errs() << *F.getParent() << "\n";
abort();
}
};
IS_INTRINSIC(jl_intrinsics::newGCFrame);
IS_INTRINSIC(jl_intrinsics::pushGCFrame);
IS_INTRINSIC(jl_intrinsics::popGCFrame);
IS_INTRINSIC(jl_intrinsics::getGCFrameSlot);
IS_INTRINSIC(jl_intrinsics::GCAllocBytes);
IS_INTRINSIC(jl_intrinsics::queueGCRoot);
IS_INTRINSIC(jl_intrinsics::safepoint);
}
}
#endif
return false;
}
PreservedAnalyses FinalLowerGCPass::run(Function &F, FunctionAnalysisManager &AM)
{
if (FinalLowerGC().runOnFunction(F)) {
#ifdef JL_VERIFY_PASSES
assert(!verifyLLVMIR(F));
#endif
return PreservedAnalyses::allInSet<CFGAnalyses>();
}
return PreservedAnalyses::all();
}