LLVM 19.0.0git
SPIRVDuplicatesTracker.h
Go to the documentation of this file.
1//===-- SPIRVDuplicatesTracker.h - SPIR-V Duplicates Tracker ----*- C++ -*-===//
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// General infrastructure for keeping track of the values that according to
10// the SPIR-V binary layout should be global to the whole module.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_LIB_TARGET_SPIRV_SPIRVDUPLICATESTRACKER_H
15#define LLVM_LIB_TARGET_SPIRV_SPIRVDUPLICATESTRACKER_H
16
19#include "llvm/ADT/DenseMap.h"
20#include "llvm/ADT/MapVector.h"
23
24#include <type_traits>
25
26namespace llvm {
27namespace SPIRV {
28// NOTE: using MapVector instead of DenseMap because it helps getting
29// everything ordered in a stable manner for a price of extra (NumKeys)*PtrSize
30// memory and expensive removals which do not happen anyway.
31class DTSortableEntry : public MapVector<const MachineFunction *, Register> {
33
34 struct FlagsTy {
35 unsigned IsFunc : 1;
36 unsigned IsGV : 1;
37 // NOTE: bit-field default init is a C++20 feature.
38 FlagsTy() : IsFunc(0), IsGV(0) {}
39 };
40 FlagsTy Flags;
41
42public:
43 // Common hoisting utility doesn't support function, because their hoisting
44 // require hoisting of params as well.
45 bool getIsFunc() const { return Flags.IsFunc; }
46 bool getIsGV() const { return Flags.IsGV; }
47 void setIsFunc(bool V) { Flags.IsFunc = V; }
48 void setIsGV(bool V) { Flags.IsGV = V; }
49
50 const SmallVector<DTSortableEntry *, 2> &getDeps() const { return Deps; }
52};
53
63 STK_Last = -1
64 };
66
67 unsigned Hash;
68
71
72 unsigned getHash() const { return Hash; }
73
75};
76
78 union ImageAttrs {
79 struct BitFlags {
80 unsigned Dim : 3;
81 unsigned Depth : 2;
82 unsigned Arrayed : 1;
83 unsigned MS : 1;
84 unsigned Sampled : 2;
85 unsigned ImageFormat : 6;
86 unsigned AQ : 2;
88 unsigned Val;
89 };
90
91 ImageTypeDescriptor(const Type *SampledTy, unsigned Dim, unsigned Depth,
92 unsigned Arrayed, unsigned MS, unsigned Sampled,
93 unsigned ImageFormat, unsigned AQ = 0)
95 ImageAttrs Attrs;
96 Attrs.Val = 0;
97 Attrs.Flags.Dim = Dim;
98 Attrs.Flags.Depth = Depth;
99 Attrs.Flags.Arrayed = Arrayed;
100 Attrs.Flags.MS = MS;
101 Attrs.Flags.Sampled = Sampled;
102 Attrs.Flags.ImageFormat = ImageFormat;
103 Attrs.Flags.AQ = AQ;
104 Hash = (DenseMapInfo<Type *>().getHashValue(SampledTy) & 0xffff) ^
105 ((Attrs.Val << 8) | Kind);
106 }
107
108 static bool classof(const SpecialTypeDescriptor *TD) {
109 return TD->Kind == SpecialTypeKind::STK_Image;
110 }
111};
112
114 SampledImageTypeDescriptor(const Type *SampledTy, const MachineInstr *ImageTy)
116 assert(ImageTy->getOpcode() == SPIRV::OpTypeImage);
118 SampledTy, ImageTy->getOperand(2).getImm(),
119 ImageTy->getOperand(3).getImm(), ImageTy->getOperand(4).getImm(),
120 ImageTy->getOperand(5).getImm(), ImageTy->getOperand(6).getImm(),
121 ImageTy->getOperand(7).getImm(), ImageTy->getOperand(8).getImm());
122 Hash = TD.getHash() ^ Kind;
123 }
124
125 static bool classof(const SpecialTypeDescriptor *TD) {
127 }
128};
129
133 Hash = Kind;
134 }
135
136 static bool classof(const SpecialTypeDescriptor *TD) {
138 }
139};
140
142
145 Hash = (AQ << 8) | Kind;
146 }
147
148 static bool classof(const SpecialTypeDescriptor *TD) {
149 return TD->Kind == SpecialTypeKind::STK_Pipe;
150 }
151};
152
154
157 Hash = Kind;
158 }
159
160 static bool classof(const SpecialTypeDescriptor *TD) {
162 }
163};
164
167 unsigned AddressSpace;
168
173 Hash = (DenseMapInfo<Type *>().getHashValue(ElementType) & 0xffff) ^
174 ((AddressSpace << 8) | Kind);
175 }
176
177 static bool classof(const SpecialTypeDescriptor *TD) {
179 }
180};
181} // namespace SPIRV
182
183template <> struct DenseMapInfo<SPIRV::SpecialTypeDescriptor> {
187 }
190 }
192 return Val.getHash();
193 }
196 return getHashValue(LHS) == getHashValue(RHS);
197 }
198};
199
200template <typename KeyTy> class SPIRVDuplicatesTrackerBase {
201public:
202 // NOTE: using MapVector instead of DenseMap helps getting everything ordered
203 // in a stable manner for a price of extra (NumKeys)*PtrSize memory and
204 // expensive removals which don't happen anyway.
206
207private:
208 StorageTy Storage;
209
210public:
211 void add(KeyTy V, const MachineFunction *MF, Register R) {
212 if (find(V, MF).isValid())
213 return;
214
215 Storage[V][MF] = R;
216 if (std::is_same<Function,
217 typename std::remove_const<
218 typename std::remove_pointer<KeyTy>::type>::type>() ||
219 std::is_same<Argument,
220 typename std::remove_const<
221 typename std::remove_pointer<KeyTy>::type>::type>())
222 Storage[V].setIsFunc(true);
223 if (std::is_same<GlobalVariable,
224 typename std::remove_const<
225 typename std::remove_pointer<KeyTy>::type>::type>())
226 Storage[V].setIsGV(true);
227 }
228
229 Register find(KeyTy V, const MachineFunction *MF) const {
230 auto iter = Storage.find(V);
231 if (iter != Storage.end()) {
232 auto Map = iter->second;
233 auto iter2 = Map.find(MF);
234 if (iter2 != Map.end())
235 return iter2->second;
236 }
237 return Register();
238 }
239
240 const StorageTy &getAllUses() const { return Storage; }
241
242private:
243 StorageTy &getAllUses() { return Storage; }
244
245 // The friend class needs to have access to the internal storage
246 // to be able to build dependency graph, can't declare only one
247 // function a 'friend' due to the incomplete declaration at this point
248 // and mutual dependency problems.
250};
251
252template <typename T>
254
255template <>
256class SPIRVDuplicatesTracker<SPIRV::SpecialTypeDescriptor>
257 : public SPIRVDuplicatesTrackerBase<SPIRV::SpecialTypeDescriptor> {};
258
267
268 // NOTE: using MOs instead of regs to get rid of MF dependency to be able
269 // to use flat data structure.
270 // NOTE: replacing DenseMap with MapVector doesn't affect overall correctness
271 // but makes LITs more stable, should prefer DenseMap still due to
272 // significant perf difference.
273 using SPIRVReg2EntryTy =
275
276 template <typename T>
277 void prebuildReg2Entry(SPIRVDuplicatesTracker<T> &DT,
278 SPIRVReg2EntryTy &Reg2Entry);
279
280public:
281 void buildDepsGraph(std::vector<SPIRV::DTSortableEntry *> &Graph,
282 MachineModuleInfo *MMI);
283
284 void add(const Type *Ty, const MachineFunction *MF, Register R) {
285 TT.add(Ty, MF, R);
286 }
287
288 void add(const Type *PointerElementType, unsigned AddressSpace,
289 const MachineFunction *MF, Register R) {
290 ST.add(SPIRV::PointerTypeDescriptor(PointerElementType, AddressSpace), MF,
291 R);
292 }
293
294 void add(const Constant *C, const MachineFunction *MF, Register R) {
295 CT.add(C, MF, R);
296 }
297
298 void add(const GlobalVariable *GV, const MachineFunction *MF, Register R) {
299 GT.add(GV, MF, R);
300 }
301
302 void add(const Function *F, const MachineFunction *MF, Register R) {
303 FT.add(F, MF, R);
304 }
305
306 void add(const Argument *Arg, const MachineFunction *MF, Register R) {
307 AT.add(Arg, MF, R);
308 }
309
310 void add(const MachineInstr *MI, const MachineFunction *MF, Register R) {
311 MT.add(MI, MF, R);
312 }
313
315 Register R) {
316 ST.add(TD, MF, R);
317 }
318
319 Register find(const Type *Ty, const MachineFunction *MF) {
320 return TT.find(const_cast<Type *>(Ty), MF);
321 }
322
323 Register find(const Type *PointerElementType, unsigned AddressSpace,
324 const MachineFunction *MF) {
325 return ST.find(
326 SPIRV::PointerTypeDescriptor(PointerElementType, AddressSpace), MF);
327 }
328
330 return CT.find(const_cast<Constant *>(C), MF);
331 }
332
334 return GT.find(const_cast<GlobalVariable *>(GV), MF);
335 }
336
338 return FT.find(const_cast<Function *>(F), MF);
339 }
340
341 Register find(const Argument *Arg, const MachineFunction *MF) {
342 return AT.find(const_cast<Argument *>(Arg), MF);
343 }
344
346 return MT.find(const_cast<MachineInstr *>(MI), MF);
347 }
348
350 const MachineFunction *MF) {
351 return ST.find(TD, MF);
352 }
353
354 const SPIRVDuplicatesTracker<Type> *getTypes() { return &TT; }
355};
356} // namespace llvm
357#endif // LLVM_LIB_TARGET_SPIRV_SPIRVDUPLICATESTRACKER_H
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
This file defines the DenseMap class.
IRTranslator LLVM IR MI
#define F(x, y, z)
Definition: MD5.cpp:55
This file declares the MachineIRBuilder class.
This file implements a map that provides insertion order iteration.
static bool isValid(const char C)
Returns true if C is a valid mangled character: <0-9a-zA-Z_>.
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
Value * RHS
Value * LHS
This class represents an incoming formal argument to a Function.
Definition: Argument.h:31
This is an important base class in LLVM.
Definition: Constant.h:41
Representation of each machine instruction.
Definition: MachineInstr.h:69
unsigned getOpcode() const
Returns the opcode of this MachineInstr.
Definition: MachineInstr.h:546
const MachineOperand & getOperand(unsigned i) const
Definition: MachineInstr.h:556
This class contains meta information specific to a module.
int64_t getImm() const
This class implements a map that also provides access to all stored values in a deterministic order.
Definition: MapVector.h:36
iterator end()
Definition: MapVector.h:71
iterator find(const KeyT &Key)
Definition: MapVector.h:167
Wrapper class representing virtual and physical registers.
Definition: Register.h:19
void add(KeyTy V, const MachineFunction *MF, Register R)
Register find(KeyTy V, const MachineFunction *MF) const
MapVector< KeyTy, SPIRV::DTSortableEntry > StorageTy
const StorageTy & getAllUses() const
void add(const GlobalVariable *GV, const MachineFunction *MF, Register R)
Register find(const Function *F, const MachineFunction *MF)
void add(const SPIRV::SpecialTypeDescriptor &TD, const MachineFunction *MF, Register R)
void add(const Type *Ty, const MachineFunction *MF, Register R)
void add(const MachineInstr *MI, const MachineFunction *MF, Register R)
void add(const Function *F, const MachineFunction *MF, Register R)
Register find(const Type *Ty, const MachineFunction *MF)
void buildDepsGraph(std::vector< SPIRV::DTSortableEntry * > &Graph, MachineModuleInfo *MMI)
Register find(const Constant *C, const MachineFunction *MF)
void add(const Type *PointerElementType, unsigned AddressSpace, const MachineFunction *MF, Register R)
Register find(const Argument *Arg, const MachineFunction *MF)
void add(const Argument *Arg, const MachineFunction *MF, Register R)
Register find(const SPIRV::SpecialTypeDescriptor &TD, const MachineFunction *MF)
Register find(const Type *PointerElementType, unsigned AddressSpace, const MachineFunction *MF)
void add(const Constant *C, const MachineFunction *MF, Register R)
const SPIRVDuplicatesTracker< Type > * getTypes()
Register find(const GlobalVariable *GV, const MachineFunction *MF)
Register find(const MachineInstr *MI, const MachineFunction *MF)
const SmallVector< DTSortableEntry *, 2 > & getDeps() const
void addDep(DTSortableEntry *E)
void push_back(const T &Elt)
Definition: SmallVector.h:426
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Definition: SmallVector.h:1209
The instances of the Type class are immutable: once they are created, they are never changed.
Definition: Type.h:45
@ C
The default llvm calling convention, compatible with C.
Definition: CallingConv.h:34
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
AddressSpace
Definition: NVPTXBaseInfo.h:21
static SPIRV::SpecialTypeDescriptor getEmptyKey()
static SPIRV::SpecialTypeDescriptor getTombstoneKey()
static bool isEqual(SPIRV::SpecialTypeDescriptor LHS, SPIRV::SpecialTypeDescriptor RHS)
static unsigned getHashValue(SPIRV::SpecialTypeDescriptor Val)
An information struct used to provide DenseMap with the various necessary components for a given valu...
Definition: DenseMapInfo.h:50
static bool classof(const SpecialTypeDescriptor *TD)
ImageTypeDescriptor(const Type *SampledTy, unsigned Dim, unsigned Depth, unsigned Arrayed, unsigned MS, unsigned Sampled, unsigned ImageFormat, unsigned AQ=0)
static bool classof(const SpecialTypeDescriptor *TD)
static bool classof(const SpecialTypeDescriptor *TD)
PointerTypeDescriptor(const Type *ElementType, unsigned AddressSpace)
static bool classof(const SpecialTypeDescriptor *TD)
static bool classof(const SpecialTypeDescriptor *TD)
SampledImageTypeDescriptor(const Type *SampledTy, const MachineInstr *ImageTy)
static bool classof(const SpecialTypeDescriptor *TD)
struct llvm::SPIRV::ImageTypeDescriptor::ImageAttrs::BitFlags Flags