|
15 | 15 | #include "swift/AST/Decl.h"
|
16 | 16 | #include "swift/AST/ProtocolConformance.h"
|
17 | 17 | #include "swift/Basic/Statistic.h"
|
18 |
| -#include "swift/SIL/SILModule.h" |
| 18 | +#include "swift/SIL/MemAccessUtils.h" |
| 19 | +#include "swift/SIL/SILBridging.h" |
19 | 20 | #include "swift/SIL/SILBridgingUtils.h"
|
| 21 | +#include "swift/SIL/SILModule.h" |
20 | 22 | #include "swift/SILOptimizer/OptimizerBridging.h"
|
21 | 23 | #include "swift/SILOptimizer/Utils/InstOptUtils.h"
|
22 | 24 | #include "llvm/Support/Compiler.h"
|
@@ -363,3 +365,41 @@ BridgedFunction BridgedFunctionArray_get(BridgedCalleeList callees,
|
363 | 365 | assert(index >= 0 && iter < cl.end());
|
364 | 366 | return {*iter};
|
365 | 367 | }
|
| 368 | + |
| 369 | +static InstructionIsDeinitBarrierFn instructionIsDeinitBarrierFunction; |
| 370 | + |
| 371 | +void CalleeAnalysis_register( |
| 372 | + InstructionIsDeinitBarrierFn instructionIsDeinitBarrierFn) { |
| 373 | + instructionIsDeinitBarrierFunction = instructionIsDeinitBarrierFn; |
| 374 | +} |
| 375 | + |
| 376 | +/// Implementation of mayBeDeinitBarrierNotConsideringSideEffects for use only |
| 377 | +/// during bootstrapping or in compilers that lack Swift sources. |
| 378 | +/// |
| 379 | +/// TODO: Remove. |
| 380 | +static bool |
| 381 | +isDeinitBarrierWithoutEffectsCpp(SILInstruction *const instruction) { |
| 382 | + auto mayLoadWeakOrUnowned = [](SILInstruction *const instruction) { |
| 383 | + return isa<LoadWeakInst>(instruction) || |
| 384 | + isa<LoadUnownedInst>(instruction) || |
| 385 | + isa<StrongCopyUnownedValueInst>(instruction) || |
| 386 | + isa<StrongCopyUnmanagedValueInst>(instruction); |
| 387 | + }; |
| 388 | + auto maySynchronize = [](SILInstruction *const instruction) { |
| 389 | + return isa<FullApplySite>(instruction) || isa<EndApplyInst>(instruction) || |
| 390 | + isa<AbortApplyInst>(instruction); |
| 391 | + }; |
| 392 | + return mayAccessPointer(instruction) || mayLoadWeakOrUnowned(instruction) || |
| 393 | + maySynchronize(instruction); |
| 394 | +} |
| 395 | + |
| 396 | +bool swift::isDeinitBarrier(SILInstruction *const instruction, |
| 397 | + BasicCalleeAnalysis *bca) { |
| 398 | + if (!instructionIsDeinitBarrierFunction) { |
| 399 | + return isDeinitBarrierWithoutEffectsCpp(instruction); |
| 400 | + } |
| 401 | + BridgedInstruction inst = { |
| 402 | + cast<SILNode>(const_cast<SILInstruction *>(instruction))}; |
| 403 | + BridgedCalleeAnalysis analysis = {bca}; |
| 404 | + return instructionIsDeinitBarrierFunction(inst, analysis); |
| 405 | +} |
0 commit comments