LLVM 19.0.0git
RegAllocScore.cpp
Go to the documentation of this file.
1//===- RegAllocScore.cpp - evaluate regalloc policy quality ---------------===//
2//
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
6//
7//===----------------------------------------------------------------------===//
8/// Calculate a measure of the register allocation policy quality. This is used
9/// to construct a reward for the training of the ML-driven allocation policy.
10/// Currently, the score is the sum of the machine basic block frequency-weighed
11/// number of loads, stores, copies, and remat instructions, each factored with
12/// a relative weight.
13//===----------------------------------------------------------------------===//
14
15#include "RegAllocScore.h"
24#include "llvm/MC/MCInstrDesc.h"
26
27using namespace llvm;
28cl::opt<double> CopyWeight("regalloc-copy-weight", cl::init(0.2), cl::Hidden);
29cl::opt<double> LoadWeight("regalloc-load-weight", cl::init(4.0), cl::Hidden);
30cl::opt<double> StoreWeight("regalloc-store-weight", cl::init(1.0), cl::Hidden);
31cl::opt<double> CheapRematWeight("regalloc-cheap-remat-weight", cl::init(0.2),
33cl::opt<double> ExpensiveRematWeight("regalloc-expensive-remat-weight",
34 cl::init(1.0), cl::Hidden);
35#define DEBUG_TYPE "regalloc-score"
36
38 CopyCounts += Other.copyCounts();
39 LoadCounts += Other.loadCounts();
40 StoreCounts += Other.storeCounts();
41 LoadStoreCounts += Other.loadStoreCounts();
42 CheapRematCounts += Other.cheapRematCounts();
43 ExpensiveRematCounts += Other.expensiveRematCounts();
44 return *this;
45}
46
48 return copyCounts() == Other.copyCounts() &&
49 loadCounts() == Other.loadCounts() &&
50 storeCounts() == Other.storeCounts() &&
51 loadStoreCounts() == Other.loadStoreCounts() &&
52 cheapRematCounts() == Other.cheapRematCounts() &&
53 expensiveRematCounts() == Other.expensiveRematCounts();
54}
55
57 return !(*this == Other);
58}
59
61 double Ret = 0.0;
62 Ret += CopyWeight * copyCounts();
63 Ret += LoadWeight * loadCounts();
64 Ret += StoreWeight * storeCounts();
68
69 return Ret;
70}
71
74 const MachineBlockFrequencyInfo &MBFI) {
76 MF,
77 [&](const MachineBasicBlock &MBB) {
79 },
80 [&](const MachineInstr &MI) {
82 MI);
83 });
84}
85
87 const MachineFunction &MF,
88 llvm::function_ref<double(const MachineBasicBlock &)> GetBBFreq,
89 llvm::function_ref<bool(const MachineInstr &)>
90 IsTriviallyRematerializable) {
92
93 for (const MachineBasicBlock &MBB : MF) {
94 double BlockFreqRelativeToEntrypoint = GetBBFreq(MBB);
95 RegAllocScore MBBScore;
96
97 for (const MachineInstr &MI : MBB) {
98 if (MI.isDebugInstr() || MI.isKill() || MI.isInlineAsm()) {
99 continue;
100 }
101 if (MI.isCopy()) {
102 MBBScore.onCopy(BlockFreqRelativeToEntrypoint);
103 } else if (IsTriviallyRematerializable(MI)) {
104 if (MI.getDesc().isAsCheapAsAMove()) {
105 MBBScore.onCheapRemat(BlockFreqRelativeToEntrypoint);
106 } else {
107 MBBScore.onExpensiveRemat(BlockFreqRelativeToEntrypoint);
108 }
109 } else if (MI.mayLoad() && MI.mayStore()) {
110 MBBScore.onLoadStore(BlockFreqRelativeToEntrypoint);
111 } else if (MI.mayLoad()) {
112 MBBScore.onLoad(BlockFreqRelativeToEntrypoint);
113 } else if (MI.mayStore()) {
114 MBBScore.onStore(BlockFreqRelativeToEntrypoint);
115 }
116 }
117 Total += MBBScore;
118 }
119 return Total;
120}
MachineBasicBlock & MBB
std::optional< std::vector< StOtherPiece > > Other
Definition: ELFYAML.cpp:1291
IRTranslator LLVM IR MI
cl::opt< double > CheapRematWeight("regalloc-cheap-remat-weight", cl::init(0.2), cl::Hidden)
cl::opt< double > StoreWeight("regalloc-store-weight", cl::init(1.0), cl::Hidden)
cl::opt< double > CopyWeight("regalloc-copy-weight", cl::init(0.2), cl::Hidden)
cl::opt< double > ExpensiveRematWeight("regalloc-expensive-remat-weight", cl::init(1.0), cl::Hidden)
cl::opt< double > LoadWeight("regalloc-load-weight", cl::init(4.0), cl::Hidden)
MachineBlockFrequencyInfo pass uses BlockFrequencyInfoImpl implementation to estimate machine basic b...
double getBlockFreqRelativeToEntryBlock(const MachineBasicBlock *MBB) const
Compute the frequency of the block, relative to the entry block.
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
Representation of each machine instruction.
Definition: MachineInstr.h:69
Regalloc score.
Definition: RegAllocScore.h:28
bool operator==(const RegAllocScore &Other) const
double copyCounts() const
Definition: RegAllocScore.h:40
void onLoadStore(double Freq)
Definition: RegAllocScore.h:50
RegAllocScore & operator+=(const RegAllocScore &Other)
void onCheapRemat(double Freq)
Definition: RegAllocScore.h:52
bool operator!=(const RegAllocScore &Other) const
double cheapRematCounts() const
Definition: RegAllocScore.h:45
void onStore(double Freq)
Definition: RegAllocScore.h:49
double storeCounts() const
Definition: RegAllocScore.h:42
double getScore() const
void onExpensiveRemat(double Freq)
Definition: RegAllocScore.h:51
double expensiveRematCounts() const
Definition: RegAllocScore.h:44
void onCopy(double Freq)
Definition: RegAllocScore.h:47
double loadStoreCounts() const
Definition: RegAllocScore.h:43
void onLoad(double Freq)
Definition: RegAllocScore.h:48
double loadCounts() const
Definition: RegAllocScore.h:41
bool isTriviallyReMaterializable(const MachineInstr &MI) const
Return true if the instruction is trivially rematerializable, meaning it has no side effects and requ...
virtual const TargetInstrInfo * getInstrInfo() const
An efficient, type-erasing, non-owning reference to a callable.
initializer< Ty > init(const Ty &Val)
Definition: CommandLine.h:450
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
RegAllocScore calculateRegAllocScore(const MachineFunction &MF, const MachineBlockFrequencyInfo &MBFI)
Calculate a score.
@ Other
Any other memory.