-
Notifications
You must be signed in to change notification settings - Fork 10.5k
/
Copy pathGenThunk.cpp
539 lines (441 loc) · 17.8 KB
/
GenThunk.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
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
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
//===--- GenThunk.cpp - IR Generation for Method Dispatch Thunks ----------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
//
// This file implements IR generation for class and protocol method dispatch
// thunks, which are used in resilient builds to hide vtable and witness table
// offsets from clients.
//
//===----------------------------------------------------------------------===//
#include "Callee.h"
#include "CallEmission.h"
#include "ClassMetadataVisitor.h"
#include "ConstantBuilder.h"
#include "Explosion.h"
#include "GenCall.h"
#include "GenClass.h"
#include "GenDecl.h"
#include "GenHeap.h"
#include "GenOpaque.h"
#include "GenPointerAuth.h"
#include "GenProto.h"
#include "GenType.h"
#include "IRGenFunction.h"
#include "IRGenModule.h"
#include "LoadableTypeInfo.h"
#include "MetadataLayout.h"
#include "NativeConventionSchema.h"
#include "ProtocolInfo.h"
#include "Signature.h"
#include "swift/AST/GenericEnvironment.h"
#include "swift/AST/PrettyStackTrace.h"
#include "swift/IRGen/Linking.h"
#include "swift/SIL/SILDeclRef.h"
#include "llvm/IR/Function.h"
using namespace swift;
using namespace irgen;
/// Find the entry point for a method dispatch thunk.
llvm::Function *
IRGenModule::getAddrOfDispatchThunk(SILDeclRef declRef,
ForDefinition_t forDefinition) {
LinkEntity entity = LinkEntity::forDispatchThunk(declRef);
llvm::Function *&entry = GlobalFuncs[entity];
if (entry) {
if (forDefinition) updateLinkageForDefinition(*this, entry, entity);
return entry;
}
auto fnType = getSILModule().Types.getConstantFunctionType(
getMaximalTypeExpansionContext(), declRef);
Signature signature = getSignature(fnType);
LinkInfo link = LinkInfo::get(*this, entity, forDefinition);
entry = createFunction(*this, link, signature);
return entry;
}
namespace {
class IRGenThunk {
IRGenFunction &IGF;
SILDeclRef declRef;
TypeExpansionContext expansionContext;
CanSILFunctionType origTy;
CanSILFunctionType substTy;
SubstitutionMap subMap;
bool isAsync;
bool isCoroutine;
bool isWitnessMethod;
Optional<AsyncContextLayout> asyncLayout;
// Initialized by prepareArguments()
llvm::Value *indirectReturnSlot = nullptr;
llvm::Value *selfValue = nullptr;
llvm::Value *errorResult = nullptr;
WitnessMetadata witnessMetadata;
Explosion params;
void prepareArguments();
Callee lookupMethod();
public:
IRGenThunk(IRGenFunction &IGF, SILDeclRef declRef);
void emit();
};
} // end namespace
IRGenThunk::IRGenThunk(IRGenFunction &IGF, SILDeclRef declRef)
: IGF(IGF), declRef(declRef),
expansionContext(IGF.IGM.getMaximalTypeExpansionContext()) {
auto &Types = IGF.IGM.getSILModule().Types;
origTy = Types.getConstantFunctionType(expansionContext, declRef);
if (auto *genericEnv = Types.getConstantGenericEnvironment(declRef))
subMap = genericEnv->getForwardingSubstitutionMap();
substTy = origTy->substGenericArgs(
IGF.IGM.getSILModule(), subMap, expansionContext);
isAsync = origTy->isAsync();
isCoroutine = origTy->isCoroutine();
auto *decl = cast<AbstractFunctionDecl>(declRef.getDecl());
isWitnessMethod = isa<ProtocolDecl>(decl->getDeclContext());
if (isAsync) {
asyncLayout.emplace(irgen::getAsyncContextLayout(
IGF.IGM, origTy, substTy, subMap, /*suppress generics*/ false));
}
}
// FIXME: This duplicates the structure of CallEmission. It should be
// possible to refactor some code and simplify this drastically, since
// conceptually all we're doing is forwarding the arguments verbatim
// using the sync or async calling convention.
void IRGenThunk::prepareArguments() {
if (isAsync) {
assert(!isCoroutine);
assert(asyncLayout->hasLocalContext());
auto context = asyncLayout->emitCastTo(IGF, IGF.getAsyncContext());
auto localContextAddr =
asyncLayout->getLocalContextLayout().project(
IGF, context, llvm::None);
selfValue = IGF.Builder.CreateLoad(localContextAddr);
if (isWitnessMethod) {
assert(asyncLayout->hasTrailingWitnesses());
auto context = asyncLayout->emitCastTo(
IGF, IGF.getAsyncContext());
auto metadataAddr =
asyncLayout->getSelfMetadataLayout().project(
IGF, context, llvm::None);
witnessMetadata.SelfMetadata = IGF.Builder.CreateLoad(metadataAddr);
auto wtableAddr =
asyncLayout->getSelfWitnessTableLayout().project(
IGF, context, llvm::None);
witnessMetadata.SelfWitnessTable = IGF.Builder.CreateLoad(wtableAddr);
}
if (origTy->hasErrorResult()) {
auto errorLayout = asyncLayout->getErrorLayout();
Address pointerToAddress =
errorLayout.project(IGF, context, /*offsets*/ llvm::None);
auto load = IGF.Builder.CreateLoad(pointerToAddress);
auto addr = Address(load, IGF.IGM.getPointerAlignment());
IGF.setCallerErrorResultSlot(addr.getAddress());
}
for (unsigned i = 0, e = asyncLayout->getIndirectReturnCount(); i < e; ++i) {
Address addr = asyncLayout->getIndirectReturnLayout(i).project(
IGF, context, llvm::None);
params.add(IGF.Builder.CreateLoad(addr));
}
for (unsigned i = 0, e = asyncLayout->getArgumentCount(); i < e; ++i) {
auto layout = asyncLayout->getArgumentLayout(i);
Address addr = layout.project(IGF, context, llvm::None);
auto &ti = cast<LoadableTypeInfo>(layout.getType());
ti.loadAsTake(IGF, addr, params);
}
if (asyncLayout->hasBindings()) {
Address addr = asyncLayout->getBindingsLayout().project(
IGF, context, llvm::None);
asyncLayout->getBindings().save(IGF, addr, params);
}
} else {
Explosion original = IGF.collectParameters();
if (isWitnessMethod) {
witnessMetadata.SelfWitnessTable = original.takeLast();
witnessMetadata.SelfMetadata = original.takeLast();
}
if (origTy->hasErrorResult()) {
errorResult = original.takeLast();
IGF.setCallerErrorResultSlot(errorResult);
}
if (isCoroutine) {
original.transferInto(params, 1);
}
selfValue = original.takeLast();
// Prepare indirect results, if any.
SILFunctionConventions conv(origTy, IGF.getSILModule());
SILType directResultType = conv.getSILResultType(expansionContext);
auto &directResultTL = IGF.IGM.getTypeInfo(directResultType);
auto &schema = directResultTL.nativeReturnValueSchema(IGF.IGM);
if (schema.requiresIndirect()) {
indirectReturnSlot = original.claimNext();
}
original.transferInto(params, conv.getNumIndirectSILResults());
// Prepare each parameter.
for (auto param : origTy->getParameters().drop_back()) {
auto paramType = conv.getSILType(param, expansionContext);
// If the SIL parameter isn't passed indirectly, we need to map it
// to an explosion.
if (paramType.isObject()) {
auto ¶mTI = IGF.getTypeInfo(paramType);
auto &loadableParamTI = cast<LoadableTypeInfo>(paramTI);
auto &nativeSchema = loadableParamTI.nativeParameterValueSchema(IGF.IGM);
unsigned size = nativeSchema.size();
Explosion nativeParam;
if (nativeSchema.requiresIndirect()) {
// If the explosion must be passed indirectly, load the value from the
// indirect address.
Address paramAddr =
loadableParamTI.getAddressForPointer(original.claimNext());
loadableParamTI.loadAsTake(IGF, paramAddr, nativeParam);
} else {
if (!nativeSchema.empty()) {
// Otherwise, we map from the native convention to the type's explosion
// schema.
Explosion paramExplosion;
original.transferInto(paramExplosion, size);
nativeParam = nativeSchema.mapFromNative(IGF.IGM, IGF, paramExplosion,
paramType);
}
}
nativeParam.transferInto(params, nativeParam.size());
} else {
params.add(original.claimNext());
}
}
// Anything else, just pass along. This will include things like
// generic arguments.
params.add(original.claimAll());
}
}
Callee IRGenThunk::lookupMethod() {
CalleeInfo info(origTy, substTy, subMap);
// Protocol case.
if (isWitnessMethod) {
// Find the witness we're interested in.
auto *wtable = witnessMetadata.SelfWitnessTable;
auto witness = emitWitnessMethodValue(IGF, wtable, declRef);
return Callee(std::move(info), witness, selfValue);
}
// Class case.
// Load the metadata, or use the 'self' value if we have a static method.
auto selfTy = origTy->getSelfParameter().getSILStorageType(
IGF.IGM.getSILModule(), origTy, expansionContext);
// If 'self' is an instance, load the class metadata.
llvm::Value *metadata;
if (selfTy.is<MetatypeType>()) {
metadata = selfValue;
} else {
metadata = emitHeapMetadataRefForHeapObject(IGF, selfValue, selfTy,
/*suppress cast*/ true);
}
// Find the method we're interested in.
auto method = emitVirtualMethodValue(IGF, metadata, declRef, origTy);
return Callee(std::move(info), method, selfValue);
}
void IRGenThunk::emit() {
PrettyStackTraceDecl stackTraceRAII("emitting dispatch thunk for",
declRef.getDecl());
GenericContextScope scope(IGF.IGM, origTy->getInvocationGenericSignature());
if (isAsync) {
IGF.setupAsync();
auto entity = LinkEntity::forDispatchThunk(declRef);
emitAsyncFunctionEntry(IGF, *asyncLayout, entity);
emitAsyncFunctionPointer(IGF.IGM, IGF.CurFn, entity,
asyncLayout->getSize());
}
prepareArguments();
auto callee = lookupMethod();
std::unique_ptr<CallEmission> emission =
getCallEmission(IGF, callee.getSwiftContext(), std::move(callee));
emission->begin();
emission->setArgs(params, /*isOutlined=*/false, &witnessMetadata);
if (isCoroutine) {
assert(!isAsync);
auto *result = emission->emitCoroutineAsOrdinaryFunction();
emission->end();
IGF.Builder.CreateRet(result);
return;
}
Explosion result;
// Determine if the result is returned indirectly.
SILFunctionConventions conv(origTy, IGF.getSILModule());
SILType directResultType = conv.getSILResultType(expansionContext);
auto &directResultTL = IGF.IGM.getTypeInfo(directResultType);
auto &schema = directResultTL.nativeReturnValueSchema(IGF.IGM);
if (schema.requiresIndirect()) {
Address indirectReturnAddr(indirectReturnSlot,
directResultTL.getBestKnownAlignment());
emission->emitToMemory(indirectReturnAddr,
cast<LoadableTypeInfo>(directResultTL), false);
} else {
emission->emitToExplosion(result, /*isOutlined=*/false);
}
llvm::Value *errorValue = nullptr;
if (isAsync && origTy->hasErrorResult()) {
SILType errorType = conv.getSILErrorType(expansionContext);
Address calleeErrorSlot = emission->getCalleeErrorSlot(
errorType, /*isCalleeAsync=*/origTy->isAsync());
errorValue = IGF.Builder.CreateLoad(calleeErrorSlot);
}
emission->end();
if (isAsync && errorValue) {
IGF.Builder.CreateStore(errorValue, IGF.getCallerErrorResultSlot());
}
if (isAsync) {
emitAsyncReturn(IGF, *asyncLayout, origTy, result);
IGF.emitCoroutineOrAsyncExit();
return;
}
// Return the result.
if (result.empty()) {
IGF.Builder.CreateRetVoid();
return;
}
auto resultTy = conv.getSILResultType(expansionContext);
resultTy = resultTy.subst(IGF.getSILModule(), subMap);
IGF.emitScalarReturn(resultTy, resultTy, result,
/*swiftCCReturn=*/false,
/*isOutlined=*/false);
}
void IRGenModule::emitDispatchThunk(SILDeclRef declRef) {
auto *f = getAddrOfDispatchThunk(declRef, ForDefinition);
if (!f->isDeclaration()) {
return;
}
IRGenFunction IGF(*this, f);
IRGenThunk(IGF, declRef).emit();
}
llvm::Constant *
IRGenModule::getAddrOfAsyncFunctionPointer(LinkEntity entity) {
return getAddrOfLLVMVariable(
LinkEntity::forAsyncFunctionPointer(entity),
NotForDefinition, DebugTypeInfo());
}
llvm::Constant *
IRGenModule::getAddrOfAsyncFunctionPointer(SILFunction *function) {
(void)getAddrOfSILFunction(function, NotForDefinition);
return getAddrOfAsyncFunctionPointer(
LinkEntity::forSILFunction(function));
}
llvm::Constant *IRGenModule::defineAsyncFunctionPointer(LinkEntity entity,
ConstantInit init) {
auto asyncEntity = LinkEntity::forAsyncFunctionPointer(entity);
auto *var = cast<llvm::GlobalVariable>(
getAddrOfLLVMVariable(asyncEntity, init, DebugTypeInfo()));
setTrueConstGlobal(var);
return var;
}
SILFunction *
IRGenModule::getSILFunctionForAsyncFunctionPointer(llvm::Constant *afp) {
for (auto &entry : GlobalVars) {
if (entry.getSecond() == afp) {
auto entity = entry.getFirst();
return entity.getSILFunction();
}
}
return nullptr;
}
llvm::GlobalValue *IRGenModule::defineMethodDescriptor(SILDeclRef declRef,
NominalTypeDecl *nominalDecl,
llvm::Constant *definition) {
auto entity = LinkEntity::forMethodDescriptor(declRef);
return defineAlias(entity, definition);
}
/// Get or create a method descriptor variable.
llvm::Constant *
IRGenModule::getAddrOfMethodDescriptor(SILDeclRef declRef,
ForDefinition_t forDefinition) {
assert(forDefinition == NotForDefinition);
assert(declRef.getOverriddenWitnessTableEntry() == declRef &&
"Overriding protocol requirements do not have method descriptors");
LinkEntity entity = LinkEntity::forMethodDescriptor(declRef);
return getAddrOfLLVMVariable(entity, forDefinition, DebugTypeInfo());
}
/// Fetch the method lookup function for a resilient class.
llvm::Function *
IRGenModule::getAddrOfMethodLookupFunction(ClassDecl *classDecl,
ForDefinition_t forDefinition) {
IRGen.noteUseOfTypeMetadata(classDecl);
LinkEntity entity = LinkEntity::forMethodLookupFunction(classDecl);
llvm::Function *&entry = GlobalFuncs[entity];
if (entry) {
if (forDefinition) updateLinkageForDefinition(*this, entry, entity);
return entry;
}
llvm::Type *params[] = {
TypeMetadataPtrTy,
MethodDescriptorStructTy->getPointerTo()
};
auto fnType = llvm::FunctionType::get(Int8PtrTy, params, false);
Signature signature(fnType, llvm::AttributeList(), SwiftCC);
LinkInfo link = LinkInfo::get(*this, entity, forDefinition);
entry = createFunction(*this, link, signature);
return entry;
}
void IRGenModule::emitMethodLookupFunction(ClassDecl *classDecl) {
auto *f = getAddrOfMethodLookupFunction(classDecl, ForDefinition);
if (!f->isDeclaration()) {
assert(IRGen.isLazilyReemittingNominalTypeDescriptor(classDecl));
return;
}
IRGenFunction IGF(*this, f);
auto params = IGF.collectParameters();
auto *metadata = params.claimNext();
auto *method = params.claimNext();
auto *description = getAddrOfTypeContextDescriptor(classDecl,
RequireMetadata);
// Check for lookups of nonoverridden methods first.
class LookUpNonoverriddenMethods
: public ClassMetadataScanner<LookUpNonoverriddenMethods> {
IRGenFunction &IGF;
llvm::Value *methodArg;
public:
LookUpNonoverriddenMethods(IRGenFunction &IGF,
ClassDecl *classDecl,
llvm::Value *methodArg)
: ClassMetadataScanner(IGF.IGM, classDecl), IGF(IGF),
methodArg(methodArg) {}
void noteNonoverriddenMethod(SILDeclRef method) {
// The method lookup function would be used only for `super.` calls
// from other modules, so we only need to look at public-visibility
// methods here.
if (!hasPublicVisibility(method.getLinkage(NotForDefinition))) {
return;
}
auto methodDesc = IGM.getAddrOfMethodDescriptor(method, NotForDefinition);
auto isMethod = IGF.Builder.CreateICmpEQ(methodArg, methodDesc);
auto falseBB = IGF.createBasicBlock("");
auto trueBB = IGF.createBasicBlock("");
IGF.Builder.CreateCondBr(isMethod, trueBB, falseBB);
IGF.Builder.emitBlock(trueBB);
// Since this method is nonoverridden, we can produce a static result.
auto entry = VTable->getEntry(IGM.getSILModule(), method);
llvm::Value *impl = IGM.getAddrOfSILFunction(entry->getImplementation(),
NotForDefinition);
// Sign using the discriminator we would include in the method
// descriptor.
if (auto &schema = IGM.getOptions().PointerAuth.SwiftClassMethods) {
auto discriminator =
PointerAuthInfo::getOtherDiscriminator(IGM, schema, method);
impl = emitPointerAuthSign(IGF, impl,
PointerAuthInfo(schema.getKey(), discriminator));
}
impl = IGF.Builder.CreateBitCast(impl, IGM.Int8PtrTy);
IGF.Builder.CreateRet(impl);
IGF.Builder.emitBlock(falseBB);
// Continue emission on the false branch.
}
void noteResilientSuperclass() {}
void noteStartOfImmediateMembers(ClassDecl *clas) {}
};
LookUpNonoverriddenMethods(IGF, classDecl, method).layout();
// Use the runtime to look up vtable entries.
auto *result = IGF.Builder.CreateCall(getLookUpClassMethodFn(),
{metadata, method, description});
IGF.Builder.CreateRet(result);
}