003 File Manager
Current Path:
/usr/src/contrib/llvm-project/llvm/tools/llvm-mca
usr
/
src
/
contrib
/
llvm-project
/
llvm
/
tools
/
llvm-mca
/
📁
..
📄
CodeRegion.cpp
(3.99 KB)
📄
CodeRegion.h
(4.03 KB)
📄
CodeRegionGenerator.cpp
(4.75 KB)
📄
CodeRegionGenerator.h
(2.39 KB)
📄
PipelinePrinter.cpp
(772 B)
📄
PipelinePrinter.h
(1.6 KB)
📁
Views
📄
llvm-mca.cpp
(19.95 KB)
Editing: PipelinePrinter.cpp
//===--------------------- PipelinePrinter.cpp ------------------*- C++ -*-===// // // 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 // //===----------------------------------------------------------------------===// /// \file /// /// This file implements the PipelinePrinter interface. /// //===----------------------------------------------------------------------===// #include "PipelinePrinter.h" #include "Views/View.h" namespace llvm { namespace mca { void PipelinePrinter::printReport(llvm::raw_ostream &OS) const { for (const auto &V : Views) V->printView(OS); } } // namespace mca. } // namespace llvm
Upload File
Create Folder