003 File Manager
Current Path:
/usr/src/contrib/llvm-project/llvm/include/llvm/MCA/Stages
usr
/
src
/
contrib
/
llvm-project
/
llvm
/
include
/
llvm
/
MCA
/
Stages
/
📁
..
📄
DispatchStage.h
(3.23 KB)
📄
EntryStage.h
(1.54 KB)
📄
ExecuteStage.h
(3.43 KB)
📄
InstructionTables.h
(1.43 KB)
📄
MicroOpQueueStage.h
(3.04 KB)
📄
RetireStage.h
(1.59 KB)
📄
Stage.h
(2.67 KB)
Editing: InstructionTables.h
//===--------------------- InstructionTables.h ------------------*- 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 a custom stage to generate instruction tables. /// See the description of command-line flag -instruction-tables in /// docs/CommandGuide/lvm-mca.rst /// //===----------------------------------------------------------------------===// #ifndef LLVM_MCA_INSTRUCTIONTABLES_H #define LLVM_MCA_INSTRUCTIONTABLES_H #include "llvm/ADT/SmallVector.h" #include "llvm/MC/MCSchedule.h" #include "llvm/MCA/HardwareUnits/Scheduler.h" #include "llvm/MCA/Stages/Stage.h" #include "llvm/MCA/Support.h" namespace llvm { namespace mca { class InstructionTables final : public Stage { const MCSchedModel &SM; SmallVector<std::pair<ResourceRef, ResourceCycles>, 4> UsedResources; SmallVector<uint64_t, 8> Masks; public: InstructionTables(const MCSchedModel &Model) : Stage(), SM(Model), Masks(Model.getNumProcResourceKinds()) { computeProcResourceMasks(Model, Masks); } bool hasWorkToComplete() const override { return false; } Error execute(InstRef &IR) override; }; } // namespace mca } // namespace llvm #endif // LLVM_MCA_INSTRUCTIONTABLES_H
Upload File
Create Folder