LLVM 23.0.0git
X86TileConfig.cpp
Go to the documentation of this file.
1//===-- X86TileConfig.cpp - Tile Register Configure----------------------===//
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//
9/// \file Pass to config the shape of AMX physical registers
10/// AMX register need to be configured before use. In X86PreTileConfig pass
11/// the pldtilecfg instruction is inserted, however at that time we don't
12/// know the shape of each physical tile registers, because the register
13/// allocation is not done yet. This pass runs after egister allocation
14/// pass. It collects the shape information of each physical tile register
15/// and store the shape in the stack slot that is allocated for load config
16/// to tile config register.
17//
18//===----------------------------------------------------------------------===//
19
20#include "X86.h"
21#include "X86InstrBuilder.h"
23#include "X86Subtarget.h"
29#include "llvm/CodeGen/Passes.h"
35
36using namespace llvm;
37
38#define DEBUG_TYPE "x86-tile-config"
39
40namespace {
41
42struct X86TileConfigLegacy : public MachineFunctionPass {
43
44 X86TileConfigLegacy() : MachineFunctionPass(ID) {}
45
46 /// Return the pass name.
47 StringRef getPassName() const override { return "Tile Register Configure"; }
48
49 /// X86TileConfig analysis usage.
50 void getAnalysisUsage(AnalysisUsage &AU) const override {
51 AU.setPreservesAll();
55 }
56
57 /// Perform register allocation.
58 bool runOnMachineFunction(MachineFunction &MF) override;
59
60 MachineFunctionProperties getRequiredProperties() const override {
61 return MachineFunctionProperties().setNoPHIs();
62 }
63
64 static char ID;
65};
66
67} // end anonymous namespace
68
69char X86TileConfigLegacy::ID = 0;
70
71INITIALIZE_PASS_BEGIN(X86TileConfigLegacy, DEBUG_TYPE,
72 "Tile Register Configure", false, false)
74INITIALIZE_PASS_END(X86TileConfigLegacy, DEBUG_TYPE, "Tile Register Configure",
76
78 llvm::function_ref<LiveIntervals *()> GetLIs,
79 llvm::function_ref<VirtRegMap *()> GetVRM) {
81 // Early exit in the common case of non-AMX code.
83 return false;
84
85 const X86Subtarget &ST = MF.getSubtarget<X86Subtarget>();
86 const X86RegisterInfo *TRI = ST.getRegisterInfo();
87 const TargetInstrInfo *TII = ST.getInstrInfo();
88 MachineRegisterInfo &MRI = MF.getRegInfo();
89 LiveIntervals &LIS = *GetLIs();
90 VirtRegMap &VRM = *GetVRM();
91
92 if (VRM.isShapeMapEmpty())
93 return false;
94
95 int SS = INT_MAX;
96 for (MachineBasicBlock &MBB : MF) {
97 for (MachineInstr &MI : MBB) {
98 if (MI.getOpcode() == X86::PLDTILECFGV) {
99 SS = MI.getOperand(0).getIndex();
100 break;
101 }
102 }
103 if (SS != INT_MAX)
104 break;
105 }
106 // Didn't find PLDTILECFGV, just return false;
107 if (SS == INT_MAX)
108 return false;
109
110 // Try to find a point to insert MIs for constant shapes.
111 // Here we are leveraging the palette id inserted in PreRA pass.
112 unsigned ConstPos = 0;
113 MachineInstr *ConstMI = nullptr;
114 for (MachineInstr &MI : MF.front()) {
115 if (MI.getOpcode() == X86::MOV8mi && SS == MI.getOperand(0).getIndex()) {
116 ConstMI = &MI;
117 break;
118 }
119 ++ConstPos;
120 }
121 assert(ConstMI && "Cannot find an insertion point");
122
123 unsigned AMXRegNum = TRI->getRegClass(X86::TILERegClassID)->getNumRegs();
124 SmallVector<Register, 8> Phys2Virt(AMXRegNum, 0);
125 for (unsigned I = 0, E = MRI.getNumVirtRegs(); I != E; ++I) {
127 if (MRI.reg_nodbg_empty(VirtReg))
128 continue;
129 if (!TRI->isTileRegisterClass(MRI.getRegClass(VirtReg)))
130 continue;
131 MCRegister PhysReg = VRM.getPhys(VirtReg);
132 if (!PhysReg)
133 continue;
134 unsigned Index = PhysReg - X86::TMM0;
135 if (!Phys2Virt[Index])
136 Phys2Virt[Index] = VirtReg;
137 }
138
139 // Fill in the shape of each tile physical register.
140 for (unsigned I = 0; I < AMXRegNum; ++I) {
141 if (!Phys2Virt[I])
142 continue;
143 DebugLoc DL;
144 bool IsRow = true;
145 MachineInstr *NewMI = nullptr;
146 ShapeT Shape = VRM.getShape(Phys2Virt[I]);
147 for (auto &R : {Shape.getRow()->getReg(), Shape.getCol()->getReg()}) {
148 // Here is the data format for the tile config.
149 // 0 palette
150 // 1 start_row
151 // 2-15 reserved, must be zero
152 // 16-17 tile0.colsb Tile 0 bytes per row.
153 // 18-19 tile1.colsb Tile 1 bytes per row.
154 // 20-21 tile2.colsb Tile 2 bytes per row.
155 // ... (sequence continues)
156 // 30-31 tile7.colsb Tile 7 bytes per row.
157 // 32-47 reserved, must be zero
158 // 48 tile0.rows Tile 0 rows.
159 // 49 tile1.rows Tile 1 rows.
160 // 50 tile2.rows Tile 2 rows.
161 // ... (sequence continues)
162 // 55 tile7.rows Tile 7 rows.
163 // 56-63 reserved, must be zero
164 int64_t Imm = INT64_MAX;
165 int Offset = IsRow ? 48 + I : 16 + I * 2;
166 for (auto &DefMI : MRI.def_instructions(R)) {
167 MachineBasicBlock &MBB = *DefMI.getParent();
168 if (DefMI.isMoveImmediate()) {
169 if (Imm != INT64_MAX) {
170 // FIXME: We should handle this case in future.
171 assert(Imm == DefMI.getOperand(1).getImm() &&
172 "Cannot initialize with different shapes");
173 continue;
174 }
175 if (DefMI.getOperand(1).isImm()) {
176 Imm = DefMI.getOperand(1).getImm();
177 } else {
178 assert(DefMI.getOpcode() == X86::MOV32r0 &&
179 "The opcode is assumed to be MOV32r0 if the operand is not "
180 "immediate.");
181 Imm = 0;
182 }
183
184 NewMI = addFrameReference(
185 BuildMI(MF.front(), ++ConstMI->getIterator(), DL,
186 TII->get(IsRow ? X86::MOV8mi : X86::MOV16mi)),
187 SS, Offset)
188 .addImm(Imm);
189 ConstMI = NewMI;
190 LIS.InsertMachineInstrInMaps(*NewMI);
191 } else {
192 unsigned SubIdx = IsRow ? X86::sub_8bit : X86::sub_16bit;
193 unsigned RegSize = TRI->getRegSizeInBits(*MRI.getRegClass(R));
194 if ((IsRow && RegSize == 8) || (!IsRow && RegSize == 16))
195 SubIdx = 0;
196 auto Iter = DefMI.getIterator();
197 if (&MBB == &MF.front() &&
198 (unsigned)std::distance(MBB.instr_begin(), Iter) < ConstPos)
199 Iter = ConstMI->getIterator();
200 NewMI = addFrameReference(
201 BuildMI(MBB, ++Iter, DL,
202 TII->get(IsRow ? X86::MOV8mr : X86::MOV16mr)),
203 SS, Offset)
204 .addReg(R, 0, SubIdx);
205 SlotIndex SIdx = LIS.InsertMachineInstrInMaps(*NewMI);
206 LIS.extendToIndices(LIS.getInterval(R), {SIdx.getRegSlot()});
207 }
208 }
209 IsRow = false;
210 }
211 }
212 return true;
213}
214
216 return new X86TileConfigLegacy();
217}
218
219bool X86TileConfigLegacy::runOnMachineFunction(MachineFunction &MF) {
220 return tileConfig(
221 MF,
222 [this]() { return &getAnalysis<LiveIntervalsWrapperPass>().getLIS(); },
223 [this]() { return &getAnalysis<VirtRegMapWrapperLegacy>().getVRM(); });
224}
225
228 bool Changed = tileConfig(
229 MF, [&MFAM, &MF]() { return &MFAM.getResult<LiveIntervalsAnalysis>(MF); },
230 [&MFAM, &MF]() { return &MFAM.getResult<VirtRegMapAnalysis>(MF); });
234}
unsigned const MachineRegisterInfo * MRI
MachineInstrBuilder MachineInstrBuilder & DefMI
unsigned RegSize
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
MachineBasicBlock & MBB
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
#define DEBUG_TYPE
const HexagonInstrInfo * TII
IRTranslator LLVM IR MI
#define I(x, y, z)
Definition MD5.cpp:57
Register const TargetRegisterInfo * TRI
#define INITIALIZE_PASS_DEPENDENCY(depName)
Definition PassSupport.h:42
#define INITIALIZE_PASS_END(passName, arg, name, cfg, analysis)
Definition PassSupport.h:44
#define INITIALIZE_PASS_BEGIN(passName, arg, name, cfg, analysis)
Definition PassSupport.h:39
Tile Register static false bool tileConfig(MachineFunction &MF, llvm::function_ref< LiveIntervals *()> GetLIs, llvm::function_ref< VirtRegMap *()> GetVRM)
PassT::Result & getResult(IRUnitT &IR, ExtraArgTs... ExtraArgs)
Get the result of an analysis pass for a given IR unit.
Represent the analysis usage information of a pass.
AnalysisUsage & addRequired()
void setPreservesAll()
Set by analyses that do not transform their input at all.
Represents analyses that only rely on functions' control flow.
Definition Analysis.h:73
A debug info location.
Definition DebugLoc.h:123
FunctionPass class - This class is used to implement most global optimizations.
Definition Pass.h:314
Wrapper class representing physical registers. Should be passed by value.
Definition MCRegister.h:41
MachineFunctionPass - This class adapts the FunctionPass interface to allow convenient creation of pa...
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - Subclasses that override getAnalysisUsage must call this.
Properties which a MachineFunction may have at a given point in time.
const MachineInstrBuilder & addImm(int64_t Val) const
Add a new immediate operand.
const MachineInstrBuilder & addReg(Register RegNo, unsigned flags=0, unsigned SubReg=0) const
Add a new virtual register operand.
Representation of each machine instruction.
Register getReg() const
getReg - Returns the register number.
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
A set of analyses that are preserved following a run of a transformation pass.
Definition Analysis.h:112
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
Definition Analysis.h:118
PreservedAnalyses & preserveSet()
Mark an analysis set as preserved.
Definition Analysis.h:151
Wrapper class representing virtual and physical registers.
Definition Register.h:20
static Register index2VirtReg(unsigned Index)
Convert a 0-based index to a virtual register number.
Definition Register.h:72
MachineOperand * getRow() const
MachineOperand * getCol() const
SlotIndex - An opaque wrapper around machine indexes.
Definition SlotIndexes.h:66
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
StringRef - Represent a constant reference to a string, i.e.
Definition StringRef.h:55
TargetInstrInfo - Interface to description of machine instruction set.
ShapeT getShape(Register virtReg) const
Definition VirtRegMap.h:106
MCRegister getPhys(Register virtReg) const
returns the physical register mapped to the specified virtual register
Definition VirtRegMap.h:91
bool isShapeMapEmpty() const
Definition VirtRegMap.h:100
X86MachineFunctionInfo - This class is derived from MachineFunction and contains private X86 target-s...
AMXProgModelEnum getAMXProgModel() const
PreservedAnalyses run(MachineFunction &MF, MachineFunctionAnalysisManager &MFAM)
An efficient, type-erasing, non-owning reference to a callable.
self_iterator getIterator()
Definition ilist_node.h:123
Changed
#define INT64_MAX
Definition DataTypes.h:71
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition CallingConv.h:24
This is an optimization pass for GlobalISel generic memory operations.
Definition Types.h:26
@ Offset
Definition DWP.cpp:532
MachineInstrBuilder BuildMI(MachineFunction &MF, const MIMetadata &MIMD, const MCInstrDesc &MCID)
Builder interface. Specify how to create the initial instruction itself.
FunctionPass * createX86TileConfigLegacyPass()
static const MachineInstrBuilder & addFrameReference(const MachineInstrBuilder &MIB, int FI, int Offset=0, bool mem=true)
addFrameReference - This function is used to add a reference to the base of an abstract object on the...
AnalysisManager< MachineFunction > MachineFunctionAnalysisManager
LLVM_ABI PreservedAnalyses getMachineFunctionPassPreservedAnalyses()
Returns the minimum set of Analyses that all machine function passes must preserve.