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
|
//===- TestCFGLoopInfo.cpp - Test CFG loop info analysis ------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
//
// This file implements logic for testing the CFGLoopInfo analysis.
//
//===----------------------------------------------------------------------===//
#include "mlir/Analysis/CFGLoopInfo.h"
#include "mlir/IR/FunctionInterfaces.h"
#include "mlir/Pass/Pass.h"
using namespace mlir;
namespace {
/// A testing pass that applies the CFGLoopInfo analysis on a region and prints
/// the information it collected to llvm::errs().
struct TestCFGLoopInfo
: public PassWrapper<TestCFGLoopInfo, InterfacePass<FunctionOpInterface>> {
MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(TestCFGLoopInfo)
StringRef getArgument() const final { return "test-cfg-loop-info"; }
StringRef getDescription() const final {
return "Test the loop info analysis.";
}
void runOnOperation() override;
};
} // namespace
void TestCFGLoopInfo::runOnOperation() {
auto func = getOperation();
DominanceInfo &domInfo = getAnalysis<DominanceInfo>();
Region ®ion = func.getFunctionBody();
// Prints the label of the test.
llvm::errs() << "Testing : " << func.getNameAttr() << "\n";
if (region.empty()) {
llvm::errs() << "empty region\n";
return;
}
// Print all the block identifiers first such that the tests can match them.
llvm::errs() << "Blocks : ";
region.front().printAsOperand(llvm::errs());
for (auto &block : region.getBlocks()) {
llvm::errs() << ", ";
block.printAsOperand(llvm::errs());
}
llvm::errs() << "\n";
if (region.getBlocks().size() == 1) {
llvm::errs() << "no loops\n";
return;
}
llvm::DominatorTreeBase<mlir::Block, false> &domTree =
domInfo.getDomTree(®ion);
mlir::CFGLoopInfo loopInfo(domTree);
if (loopInfo.getTopLevelLoops().empty())
llvm::errs() << "no loops\n";
else
loopInfo.print(llvm::errs());
}
namespace mlir {
namespace test {
void registerTestCFGLoopInfoPass() { PassRegistration<TestCFGLoopInfo>(); }
} // namespace test
} // namespace mlir
|