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
|
//===--- AccessStorageDumper.cpp - Dump accessed storage ----------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2020 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
//
//===----------------------------------------------------------------------===//
#define DEBUG_TYPE "sil-accessed-storage-dumper"
#include "swift/SIL/MemAccessUtils.h"
#include "swift/SIL/PrettyStackTrace.h"
#include "swift/SIL/SILFunction.h"
#include "swift/SIL/SILInstruction.h"
#include "swift/SIL/SILValue.h"
#include "swift/SILOptimizer/PassManager/Passes.h"
#include "swift/SILOptimizer/PassManager/Transforms.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/Debug.h"
using namespace swift;
static llvm::cl::opt<bool> EnableDumpUses(
"enable-access-storage-dump-uses", llvm::cl::init(false),
llvm::cl::desc("With --sil-access-storage-dumper, dump all uses"));
namespace {
/// Dumps sorage information for each access.
class AccessStorageDumper : public SILModuleTransform {
llvm::SmallVector<Operand *, 32> uses;
void dumpAccessStorage(Operand *operand) {
SILFunction *function = operand->getParentFunction();
// Print storage itself first, for comparison against AccessPath. They can
// differ in rare cases of unidentified storage with phis.
AccessStorage::compute(operand->get()).print(llvm::outs());
// Now print the access path and base.
auto pathAndBase = AccessPathWithBase::compute(operand->get());
pathAndBase.print(llvm::outs());
// If enable-accessed-storage-dump-uses is set, dump all types of uses.
auto accessPath = pathAndBase.accessPath;
if (!accessPath.isValid() || !EnableDumpUses)
return;
uses.clear();
accessPath.collectUses(uses, AccessUseType::Exact, function);
llvm::outs() << "Exact Uses {\n";
for (auto *useOperand : uses) {
llvm::outs() << *useOperand->getUser() << " ";
auto usePath = AccessPath::compute(useOperand->get());
usePath.printPath(llvm::outs());
assert(accessPath == usePath
&& "access path does not match use access path");
}
llvm::outs() << "}\n";
uses.clear();
accessPath.collectUses(uses, AccessUseType::Inner, function);
llvm::outs() << "Inner Uses {\n";
for (auto *useOperand : uses) {
llvm::outs() << *useOperand->getUser() << " ";
auto usePath = AccessPath::compute(useOperand->get());
usePath.printPath(llvm::outs());
assert(accessPath.contains(usePath)
&& "access path does not contain use access path");
}
llvm::outs() << "}\n";
uses.clear();
accessPath.collectUses(uses, AccessUseType::Overlapping, function);
llvm::outs() << "Overlapping Uses {\n";
for (auto *useOperand : uses) {
llvm::outs() << *useOperand->getUser() << " ";
auto usePath = AccessPath::compute(useOperand->get());
usePath.printPath(llvm::outs());
assert(accessPath.mayOverlap(usePath)
&& "access path does not overlap with use access path");
}
llvm::outs() << "}\n";
}
void run() override {
for (auto &fn : *getModule()) {
llvm::outs() << "@" << fn.getName() << "\n";
if (fn.empty()) {
llvm::outs() << "<unknown>\n";
continue;
}
PrettyStackTraceSILFunction functionDumper("...", &fn);
for (auto &bb : fn) {
for (auto &inst : bb) {
if (inst.mayReadOrWriteMemory()) {
llvm::outs() << "###For MemOp: " << inst;
visitAccessedAddress(&inst, [this](Operand *operand) {
dumpAccessStorage(operand);
});
}
}
}
}
}
};
} // end anonymous namespace
SILTransform *swift::createAccessStorageDumper() {
return new AccessStorageDumper();
}
|