Files
swift-mirror/lib/SILOptimizer/UtilityPasses/CallerAnalysisPrinter.cpp
Xin Tong fd353df19e Remove some of unneeded functionality in CallerAnalysis
We really only need the analysis to tell whether a function has caller
inside the module or not. We do not need to know the callsites.

Remove them for now to make the analysis more memory efficient.

Add a note to indicate it can be extended.
2016-03-17 21:16:24 -07:00

48 lines
1.6 KiB
C++

//===--- CallerAnalysisPrinter.cpp - Caller Analysis test pass -----------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2016 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
//
// This pass prints all the callsites of every function in the module.
//
//===----------------------------------------------------------------------===//
#include "swift/SILOptimizer/Analysis/CallerAnalysis.h"
#include "swift/Basic/DemangleWrappers.h"
#include "swift/SIL/SILFunction.h"
#include "swift/SIL/SILModule.h"
#include "swift/SILOptimizer/PassManager/Transforms.h"
#include "llvm/Support/raw_ostream.h"
using namespace swift;
#define DEBUG_TYPE "caller-analysis-printer"
namespace {
class CallerAnalysisPrinterPass : public SILModuleTransform {
/// The entry point to the transformation.
void run() override {
auto *CA = getAnalysis<CallerAnalysis>();
for (auto &F : *getModule()) {
const char *hasCaller = CA->hasCaller(&F) ? "true" : "false";
llvm::outs() << "Function " << F.getName() << " has caller: " << hasCaller << "\n";
}
}
StringRef getName() override { return "Caller Analysis Printer"; }
};
} // end anonymous namespace
SILTransform *swift::createCallerAnalysisPrinter() {
return new CallerAnalysisPrinterPass();
}