-
Notifications
You must be signed in to change notification settings - Fork 10.5k
/
Copy pathBasicCalleeAnalysis.cpp
103 lines (90 loc) · 3.71 KB
/
BasicCalleeAnalysis.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
//===--- BasicCalleeAnalysis.cpp - Determine callees per call site --------===//
//
// 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
//
//===----------------------------------------------------------------------===//
#include "swift/SILOptimizer/Analysis/BasicCalleeAnalysis.h"
#include "swift/AST/Decl.h"
#include "swift/AST/ProtocolConformance.h"
#include "swift/Basic/Statistic.h"
#include "swift/SIL/MemAccessUtils.h"
#include "swift/SIL/SILBridging.h"
#include "swift/SIL/SILModule.h"
#include "swift/SIL/Test.h"
#include "swift/SILOptimizer/OptimizerBridging.h"
#include "swift/SILOptimizer/PassManager/Transforms.h"
#include "swift/SILOptimizer/Utils/InstOptUtils.h"
#include "llvm/Support/Compiler.h"
#include <algorithm>
#define DEBUG_TYPE "BasicCalleeAnalysis"
using namespace swift;
void BasicCalleeAnalysis::dump() const {
print(llvm::errs());
}
void BasicCalleeAnalysis::print(llvm::raw_ostream &os) const {
if (!Cache) {
os << "<no cache>\n";
}
llvm::DenseSet<SILDeclRef> printed;
for (auto &VTable : M.getVTables()) {
for (const SILVTable::Entry &entry : VTable->getEntries()) {
if (printed.insert(entry.getMethod()).second) {
os << "callees for " << entry.getMethod() << ":\n";
Cache->getCalleeList(entry.getMethod()).print(os);
}
}
}
}
//===----------------------------------------------------------------------===//
// Swift Bridging
//===----------------------------------------------------------------------===//
static BridgedCalleeAnalysis::IsDeinitBarrierFn instructionIsDeinitBarrierFunction;
static BridgedCalleeAnalysis::GetMemBehvaiorFn getMemBehvaiorFunction = nullptr;
void BridgedCalleeAnalysis::registerAnalysis(IsDeinitBarrierFn instructionIsDeinitBarrierFn,
GetMemBehvaiorFn getMemBehvaiorFn) {
instructionIsDeinitBarrierFunction = instructionIsDeinitBarrierFn;
getMemBehvaiorFunction = getMemBehvaiorFn;
}
MemoryBehavior BasicCalleeAnalysis::
getMemoryBehavior(FullApplySite as, bool observeRetains) {
if (getMemBehvaiorFunction) {
auto b = getMemBehvaiorFunction({as.getInstruction()->asSILNode()},
observeRetains,
{this});
return (MemoryBehavior)b;
}
return MemoryBehavior::MayHaveSideEffects;
}
bool swift::isDeinitBarrier(SILInstruction *const instruction,
BasicCalleeAnalysis *bca) {
if (!instructionIsDeinitBarrierFunction || !bca) {
return mayBeDeinitBarrierNotConsideringSideEffects(instruction);
}
BridgedInstruction inst = {
cast<SILNode>(const_cast<SILInstruction *>(instruction))};
BridgedCalleeAnalysis analysis = {bca};
return instructionIsDeinitBarrierFunction(inst, analysis);
}
namespace swift::test {
// Arguments:
// - instruction
// Dumps:
// - instruction
// - whether it's a deinit barrier
static FunctionTest IsDeinitBarrierTest("is_deinit_barrier", [](auto &function,
auto &arguments,
auto &test) {
auto *instruction = arguments.takeInstruction();
auto *analysis = test.template getAnalysis<BasicCalleeAnalysis>();
auto isBarrier = isDeinitBarrier(instruction, analysis);
instruction->print(llvm::outs());
auto *boolString = isBarrier ? "true" : "false";
llvm::outs() << boolString << "\n";
});
} // namespace swift::test