1 //===- LoopAccessAnalysisPrinter.cpp - Loop Access Analysis Printer --------==//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #include "llvm/Transforms/Scalar/LoopAccessAnalysisPrinter.h"
10 #include "llvm/Analysis/LoopAccessAnalysis.h"
13 #define DEBUG_TYPE "loop-accesses"
16 LoopAccessInfoPrinterPass::run(Loop
&L
, LoopAnalysisManager
&AM
,
17 LoopStandardAnalysisResults
&AR
, LPMUpdater
&) {
18 Function
&F
= *L
.getHeader()->getParent();
19 auto &LAI
= AM
.getResult
<LoopAccessAnalysis
>(L
, AR
);
20 OS
<< "Loop access info in function '" << F
.getName() << "':\n";
21 OS
.indent(2) << L
.getHeader()->getName() << ":\n";
23 return PreservedAnalyses::all();