mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
This follows the model of dominance info and allows me to create reachability methods on SILBasicBlock without creating dependencies from swiftSIL to swiftSILAnalysis. Swift SVN r21866
56 lines
1.5 KiB
C++
56 lines
1.5 KiB
C++
//===------------ LoopInfoPrinter.h - Print SIL Loop Info -*- C++ -*-------===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2014 - 2015 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "swift/SILAnalysis/LoopAnalysis.h"
|
|
#include "swift/SILPasses/Passes.h"
|
|
#include "swift/SILPasses/Transforms.h"
|
|
#include "swift/SIL/SILModule.h"
|
|
#include "swift/SIL/SILVisitor.h"
|
|
#include "llvm/ADT/Statistic.h"
|
|
|
|
using namespace swift;
|
|
|
|
namespace {
|
|
|
|
class LoopInfoPrinter : public SILFunctionTransform {
|
|
|
|
StringRef getName() override { return "SIL Loop Information Printer"; }
|
|
|
|
/// The entry point to the transformation.
|
|
void run() override {
|
|
SILLoopAnalysis *LA = PM->getAnalysis<SILLoopAnalysis>();
|
|
assert(LA);
|
|
SILFunction *F = getFunction();
|
|
assert(F);
|
|
SILLoopInfo *LI = LA->getLoopInfo(F);
|
|
assert(LI);
|
|
|
|
if (LI->empty()) {
|
|
llvm::errs() << "No loops in " << F->getName() << "\n";
|
|
return;
|
|
}
|
|
|
|
llvm::errs() << "Loops in " << F->getName() << "\n";
|
|
for (auto *LoopIt : *LI) {
|
|
LoopIt->dump();
|
|
}
|
|
}
|
|
};
|
|
|
|
} // end anonymous namespace
|
|
|
|
|
|
SILTransform *swift::createLoopInfoPrinter() {
|
|
return new LoopInfoPrinter();
|
|
}
|
|
|