tzh
2024-08-22 c7d0944258c7d0943aa7b2211498fd612971ce27
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
//===--------------------- InstructionTables.h ------------------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
/// \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_TOOLS_LLVM_MCA_INSTRUCTIONTABLES_H
#define LLVM_TOOLS_LLVM_MCA_INSTRUCTIONTABLES_H
 
#include "InstrBuilder.h"
#include "Scheduler.h"
#include "Stage.h"
#include "View.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/MC/MCSchedule.h"
 
namespace mca {
 
class InstructionTables : public Stage {
  const llvm::MCSchedModel &SM;
  InstrBuilder &IB;
  llvm::SmallVector<std::pair<ResourceRef, double>, 4> UsedResources;
 
public:
  InstructionTables(const llvm::MCSchedModel &Model, InstrBuilder &Builder)
      : Stage(), SM(Model), IB(Builder) {}
 
  bool hasWorkToComplete() const override final { return false; }
  bool execute(InstRef &IR) override final;
};
} // namespace mca
 
#endif