LLVM 23.0.0git
DXILResource.h
Go to the documentation of this file.
1//===- DXILResource.h - Representations of DXIL resources -------*- 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#ifndef LLVM_ANALYSIS_DXILRESOURCE_H
10#define LLVM_ANALYSIS_DXILRESOURCE_H
11
12#include "llvm/ADT/MapVector.h"
14#include "llvm/ADT/StringRef.h"
18#include "llvm/IR/PassManager.h"
19#include "llvm/Pass.h"
23#include <cstdint>
24
25namespace llvm {
26class CallInst;
27class DataLayout;
28class LLVMContext;
29class MDTuple;
30class Value;
31
33
34namespace dxil {
35
36// Returns the resource name from dx_resource_handlefrombinding or
37// dx_resource_handlefromimplicitbinding call
38LLVM_ABI StringRef getResourceNameFromBindingCall(CallInst *CI);
39
40/// The dx.RawBuffer target extension type
41///
42/// `target("dx.RawBuffer", Type, IsWriteable, IsROV)`
43class RawBufferExtType : public TargetExtType {
44public:
45 RawBufferExtType() = delete;
48
49 bool isStructured() const {
50 // TODO: We need to be more prescriptive here, but since there's some debate
51 // over whether byte address buffer should have a void type or an i8 type,
52 // accept either for now.
53 Type *Ty = getTypeParameter(0);
54 return !Ty->isVoidTy() && !Ty->isIntegerTy(8);
55 }
56
58 return isStructured() ? getTypeParameter(0) : nullptr;
59 }
60 bool isWriteable() const { return getIntParameter(0); }
61 bool isROV() const { return getIntParameter(1); }
62
63 static bool classof(const TargetExtType *T) {
64 return T->getName() == "dx.RawBuffer";
65 }
66 static bool classof(const Type *T) {
68 }
69};
70
71/// The dx.TypedBuffer target extension type
72///
73/// `target("dx.TypedBuffer", Type, IsWriteable, IsROV, IsSigned)`
74class TypedBufferExtType : public TargetExtType {
75public:
79
80 Type *getResourceType() const { return getTypeParameter(0); }
81 bool isWriteable() const { return getIntParameter(0); }
82 bool isROV() const { return getIntParameter(1); }
83 bool isSigned() const { return getIntParameter(2); }
84
85 static bool classof(const TargetExtType *T) {
86 return T->getName() == "dx.TypedBuffer";
87 }
88 static bool classof(const Type *T) {
90 }
91};
92
93/// The dx.Texture target extension type
94///
95/// `target("dx.Texture", Type, IsWriteable, IsROV, IsSigned, Dimension)`
96class TextureExtType : public TargetExtType {
97public:
98 TextureExtType() = delete;
99 TextureExtType(const TextureExtType &) = delete;
101
102 Type *getResourceType() const { return getTypeParameter(0); }
103 bool isWriteable() const { return getIntParameter(0); }
104 bool isROV() const { return getIntParameter(1); }
105 bool isSigned() const { return getIntParameter(2); }
107 return static_cast<dxil::ResourceKind>(getIntParameter(3));
108 }
109
110 static bool classof(const TargetExtType *T) {
111 return T->getName() == "dx.Texture";
112 }
113 static bool classof(const Type *T) {
115 }
116};
117
118/// The dx.MSTexture target extension type
119///
120/// `target("dx.MSTexture", Type, IsWriteable, Samples, IsSigned, Dimension)`
121class MSTextureExtType : public TargetExtType {
122public:
126
127 Type *getResourceType() const { return getTypeParameter(0); }
128 bool isWriteable() const { return getIntParameter(0); }
130 bool isSigned() const { return getIntParameter(2); }
132 return static_cast<dxil::ResourceKind>(getIntParameter(3));
133 }
134
135 static bool classof(const TargetExtType *T) {
136 return T->getName() == "dx.MSTexture";
137 }
138 static bool classof(const Type *T) {
140 }
141};
142
143/// The dx.FeedbackTexture target extension type
144///
145/// `target("dx.FeedbackTexture", FeedbackType, Dimension)`
146class FeedbackTextureExtType : public TargetExtType {
147public:
151
156 return static_cast<dxil::ResourceKind>(getIntParameter(1));
157 }
158
159 static bool classof(const TargetExtType *T) {
160 return T->getName() == "dx.FeedbackTexture";
161 }
162 static bool classof(const Type *T) {
164 }
165};
166
167/// The dx.CBuffer target extension type
168///
169/// `target("dx.CBuffer", <Type>, ...)`
170class CBufferExtType : public TargetExtType {
171public:
172 CBufferExtType() = delete;
175
176 Type *getResourceType() const { return getTypeParameter(0); }
177
178 static bool classof(const TargetExtType *T) {
179 return T->getName() == "dx.CBuffer";
180 }
181 static bool classof(const Type *T) {
183 }
184};
185
186/// The dx.Sampler target extension type
187///
188/// `target("dx.Sampler", SamplerType)`
189class SamplerExtType : public TargetExtType {
190public:
191 SamplerExtType() = delete;
194
196 return static_cast<dxil::SamplerType>(getIntParameter(0));
197 }
198
199 static bool classof(const TargetExtType *T) {
200 return T->getName() == "dx.Sampler";
201 }
202 static bool classof(const Type *T) {
204 }
205};
206
207class AnyResourceExtType : public TargetExtType {
208public:
212
214 // Sampler and feedback resources do not have an underlying type.
216 return nullptr;
217 // All other resources store the type in a parameter.
218 return getTypeParameter(0);
219 }
220
227
228 static bool classof(const Type *T) {
230 }
231};
232
233/// The dx.Layout target extension type
234///
235/// `target("dx.Layout", <Type>, <size>, [offsets...])`
236class LayoutExtType : public TargetExtType {
237public:
238 LayoutExtType() = delete;
239 LayoutExtType(const LayoutExtType &) = delete;
241
242 Type *getWrappedType() const { return getTypeParameter(0); }
243 uint32_t getSize() const { return getIntParameter(0); }
244 uint32_t getOffsetOfElement(int I) const { return getIntParameter(I + 1); }
245
246 static bool classof(const TargetExtType *T) {
247 return T->getName() == "dx.Layout";
248 }
249 static bool classof(const Type *T) {
251 }
252};
253
254/// The dx.Padding target extension type
255///
256/// `target("dx.Padding", NumBytes)`
257class PaddingExtType : public TargetExtType {
258public:
259 PaddingExtType() = delete;
262
263 unsigned getNumBytes() const { return getIntParameter(0); }
264
265 static bool classof(const TargetExtType *T) {
266 return T->getName() == "dx.Padding";
267 }
268 static bool classof(const Type *T) {
270 }
271};
272
273//===----------------------------------------------------------------------===//
274
276public:
277 struct UAVInfo {
278 bool IsROV;
279
280 bool operator==(const UAVInfo &RHS) const { return IsROV == RHS.IsROV; }
281 bool operator!=(const UAVInfo &RHS) const { return !(*this == RHS); }
282 bool operator<(const UAVInfo &RHS) const { return IsROV < RHS.IsROV; }
283 };
284
285 struct StructInfo {
287 // Note: we store an integer here rather than using `MaybeAlign` because in
288 // GCC 7 MaybeAlign isn't trivial so having one in this union would delete
289 // our move constructor.
290 // See https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2018/p0602r4.html
292
293 bool operator==(const StructInfo &RHS) const {
294 return std::tie(Stride, AlignLog2) == std::tie(RHS.Stride, RHS.AlignLog2);
295 }
296 bool operator!=(const StructInfo &RHS) const { return !(*this == RHS); }
297 bool operator<(const StructInfo &RHS) const {
298 return std::tie(Stride, AlignLog2) < std::tie(RHS.Stride, RHS.AlignLog2);
299 }
300 };
301
302 struct TypedInfo {
306
307 bool operator==(const TypedInfo &RHS) const {
308 return std::tie(ElementTy, ElementCount) ==
309 std::tie(RHS.ElementTy, RHS.ElementCount);
310 }
311 bool operator!=(const TypedInfo &RHS) const { return !(*this == RHS); }
312 bool operator<(const TypedInfo &RHS) const {
313 return std::tie(ElementTy, ElementCount) <
314 std::tie(RHS.ElementTy, RHS.ElementCount);
315 }
316 };
317
318private:
319 TargetExtType *HandleTy;
320
323
324public:
326 const dxil::ResourceClass RC,
327 const dxil::ResourceKind Kind);
330
331 TargetExtType *getHandleTy() const { return HandleTy; }
333
334 // Conditions to check before accessing specific views.
335 LLVM_ABI bool isUAV() const;
336 LLVM_ABI bool isCBuffer() const;
337 LLVM_ABI bool isSampler() const;
338 LLVM_ABI bool isStruct() const;
339 LLVM_ABI bool isTyped() const;
340 LLVM_ABI bool isFeedback() const;
341 LLVM_ABI bool isMultiSample() const;
342
343 // Views into the type.
344 LLVM_ABI UAVInfo getUAV() const;
347 LLVM_ABI StructInfo getStruct(const DataLayout &DL) const;
348 LLVM_ABI TypedInfo getTyped() const;
351
353 dxil::ResourceKind getResourceKind() const { return Kind; }
354
355 LLVM_ABI bool operator==(const ResourceTypeInfo &RHS) const;
356 bool operator!=(const ResourceTypeInfo &RHS) const { return !(*this == RHS); }
357 LLVM_ABI bool operator<(const ResourceTypeInfo &RHS) const;
358
359 LLVM_ABI void print(raw_ostream &OS, const DataLayout &DL) const;
360};
361
362//===----------------------------------------------------------------------===//
363
370
372public:
378
379 bool operator==(const ResourceBinding &RHS) const {
380 return std::tie(RecordID, Space, LowerBound, Size) ==
381 std::tie(RHS.RecordID, RHS.Space, RHS.LowerBound, RHS.Size);
382 }
383 bool operator!=(const ResourceBinding &RHS) const {
384 return !(*this == RHS);
385 }
386 bool operator<(const ResourceBinding &RHS) const {
387 // a size of 0 indicates unbounded. Accounting for when the size is 0
388 // guarantees a well ordered results.
389 const bool LHSIsUnbounded = Size == 0;
390 const bool RHSIsUnbounded = RHS.Size == 0;
391 return std::tie(RecordID, Space, LowerBound, LHSIsUnbounded, Size) <
392 std::tie(RHS.RecordID, RHS.Space, RHS.LowerBound, RHSIsUnbounded,
393 RHS.Size);
394 }
395 bool overlapsWith(const ResourceBinding &RHS) const {
396 if (Space != RHS.Space)
397 return false;
398 if (Size == 0)
399 return LowerBound < RHS.LowerBound;
400 return LowerBound + Size - 1 >= RHS.LowerBound;
401 }
402 };
403
404private:
405 ResourceBinding Binding;
406 TargetExtType *HandleTy;
407 StringRef Name;
408 GlobalVariable *Symbol = nullptr;
409
410public:
411 bool GloballyCoherent = false;
413
414 ResourceInfo(uint32_t RecordID, uint32_t Space, uint32_t LowerBound,
415 uint32_t Size, TargetExtType *HandleTy, StringRef Name = "",
416 GlobalVariable *Symbol = nullptr)
417 : Binding{RecordID, Space, LowerBound, Size}, HandleTy(HandleTy),
418 Name(Name), Symbol(Symbol) {}
419
420 void setBindingID(unsigned ID) { Binding.RecordID = ID; }
421
425
426 const ResourceBinding &getBinding() const { return Binding; }
427 TargetExtType *getHandleTy() const { return HandleTy; }
428 StringRef getName() const { return Name; }
429
430 bool hasSymbol() const { return Symbol; }
433
434 LLVM_ABI std::pair<uint32_t, uint32_t>
436
437 bool operator==(const ResourceInfo &RHS) const {
438 return std::tie(Binding, HandleTy, Symbol, Name) ==
439 std::tie(RHS.Binding, RHS.HandleTy, RHS.Symbol, RHS.Name);
440 }
441 bool operator!=(const ResourceInfo &RHS) const { return !(*this == RHS); }
442 bool operator<(const ResourceInfo &RHS) const {
443 return Binding < RHS.Binding;
444 }
445
447 const DataLayout &DL) const;
448};
449
450} // namespace dxil
451
452//===----------------------------------------------------------------------===//
453
456
457public:
458 LLVM_ABI bool invalidate(Module &M, const PreservedAnalyses &PA,
459 ModuleAnalysisManager::Invalidator &Inv);
460
462 auto It = Infos.find(Ty);
463 if (It != Infos.end())
464 return It->second;
465 auto [NewIt, Inserted] = Infos.try_emplace(Ty, Ty);
466 return NewIt->second;
467 }
468};
469
471 : public AnalysisInfoMixin<DXILResourceTypeAnalysis> {
473
474 LLVM_ABI static AnalysisKey Key;
475
476public:
478
480 // Running the pass just generates an empty map, which will be filled when
481 // users of the pass query the results.
482 return Result();
483 }
484};
485
488
489 virtual void anchor();
490
491public:
492 static char ID;
494
496 const DXILResourceTypeMap &getResourceTypeMap() const { return DRTM; }
497};
498
500
501//===----------------------------------------------------------------------===//
502
504 using CallMapTy = DenseMap<CallInst *, unsigned>;
505
507 CallMapTy CallMap;
508 unsigned FirstUAV = 0;
509 unsigned FirstCBuffer = 0;
510 unsigned FirstSampler = 0;
511 bool HasInvalidDirection = false;
512
513 /// Populate all the resource instance data.
514 void populate(Module &M, DXILResourceTypeMap &DRTM);
515 /// Populate the map given the resource binding calls in the given module.
516 void populateResourceInfos(Module &M, DXILResourceTypeMap &DRTM);
517 /// Analyze and populate the directions of the resource counters.
518 void populateCounterDirections(Module &M);
519
520 /// Resolves a resource handle into a vector of ResourceInfos that
521 /// represent the possible unique creations of the handle. Certain cases are
522 /// ambiguous so multiple creation instructions may be returned. The resulting
523 /// ResourceInfo can be used to depuplicate unique handles that
524 /// reference the same resource
526
527public:
530
531 iterator begin() { return Infos.begin(); }
532 const_iterator begin() const { return Infos.begin(); }
533 iterator end() { return Infos.end(); }
534 const_iterator end() const { return Infos.end(); }
535
536 bool empty() const { return Infos.empty(); }
537
539 auto Pos = CallMap.find(Key);
540 return Pos == CallMap.end() ? Infos.end() : (Infos.begin() + Pos->second);
541 }
542
544 auto Pos = CallMap.find(Key);
545 return Pos == CallMap.end() ? Infos.end() : (Infos.begin() + Pos->second);
546 }
547
548 iterator srv_begin() { return begin(); }
549 const_iterator srv_begin() const { return begin(); }
550 iterator srv_end() { return begin() + FirstUAV; }
551 const_iterator srv_end() const { return begin() + FirstUAV; }
556
557 iterator uav_begin() { return begin() + FirstUAV; }
558 const_iterator uav_begin() const { return begin() + FirstUAV; }
559 iterator uav_end() { return begin() + FirstCBuffer; }
560 const_iterator uav_end() const { return begin() + FirstCBuffer; }
565
566 iterator cbuffer_begin() { return begin() + FirstCBuffer; }
567 const_iterator cbuffer_begin() const { return begin() + FirstCBuffer; }
568 iterator cbuffer_end() { return begin() + FirstSampler; }
569 const_iterator cbuffer_end() const { return begin() + FirstSampler; }
576
577 iterator sampler_begin() { return begin() + FirstSampler; }
578 const_iterator sampler_begin() const { return begin() + FirstSampler; }
579 iterator sampler_end() { return end(); }
580 const_iterator sampler_end() const { return end(); }
587
589 : iterator_adaptor_base<call_iterator, CallMapTy::iterator> {
590 call_iterator() = default;
593
594 CallInst *operator*() const { return I->first; }
595 };
596
597 call_iterator call_begin() { return call_iterator(CallMap.begin()); }
598 call_iterator call_end() { return call_iterator(CallMap.end()); }
602
603 bool hasInvalidCounterDirection() const { return HasInvalidDirection; }
604
606 const DataLayout &DL) const;
607
610};
611
612class DXILResourceAnalysis : public AnalysisInfoMixin<DXILResourceAnalysis> {
614
615 LLVM_ABI static AnalysisKey Key;
616
617public:
619
620 /// Gather resource info for the module \c M.
622};
623
624/// Printer pass for the \c DXILResourceAnalysis results.
625class DXILResourcePrinterPass : public PassInfoMixin<DXILResourcePrinterPass> {
626 raw_ostream &OS;
627
628public:
629 explicit DXILResourcePrinterPass(raw_ostream &OS) : OS(OS) {}
630
632
633 static bool isRequired() { return true; }
634};
635
637 std::unique_ptr<DXILResourceMap> Map;
639
640public:
641 static char ID; // Class identification, replacement for typeinfo
642
645
646 const DXILResourceMap &getResourceMap() const { return *Map; }
647 DXILResourceMap &getResourceMap() { return *Map; }
648
649 void getAnalysisUsage(AnalysisUsage &AU) const override;
650 bool runOnModule(Module &M) override;
651 void releaseMemory() override;
652
653 void print(raw_ostream &OS, const Module *M) const override;
654 void dump() const;
655};
656
658
659//===----------------------------------------------------------------------===//
660
661// DXILResourceBindingInfo stores the results of DXILResourceBindingAnalysis
662// which analyses all llvm.dx.resource.handlefrombinding calls in the module
663// and puts together lists of used virtual register spaces and available
664// virtual register slot ranges for each binding type.
665// It also stores additional information found during the analysis such as
666// whether the module uses implicit bindings or if any of the bindings overlap.
667//
668// This information will be used in DXILResourceImplicitBindings pass to assign
669// register slots to resources with implicit bindings, and in a
670// post-optimization validation pass that will raise diagnostic about
671// overlapping bindings.
673 hlsl::BindingInfo Bindings;
674 bool HasImplicitBinding = false;
675 bool HasOverlappingBinding = false;
676
677 // Populate the resource binding info given explicit resource binding calls
678 // in the module.
679 void populate(Module &M, DXILResourceTypeMap &DRTM);
680
681public:
682 bool hasImplicitBinding() const { return HasImplicitBinding; }
683 void setHasImplicitBinding(bool Value) { HasImplicitBinding = Value; }
684 bool hasOverlappingBinding() const { return HasOverlappingBinding; }
685 void setHasOverlappingBinding(bool Value) { HasOverlappingBinding = Value; }
686
687 std::optional<uint32_t> findAvailableBinding(dxil::ResourceClass RC,
688 uint32_t Space, int32_t Size) {
689 return Bindings.findAvailableBinding(RC, Space, Size);
690 }
691
694};
695
697 : public AnalysisInfoMixin<DXILResourceBindingAnalysis> {
699
700 LLVM_ABI static AnalysisKey Key;
701
702public:
704
706};
707
709 std::unique_ptr<DXILResourceBindingInfo> BindingInfo;
710
711public:
712 static char ID;
713
716
717 DXILResourceBindingInfo &getBindingInfo() { return *BindingInfo; }
718 const DXILResourceBindingInfo &getBindingInfo() const { return *BindingInfo; }
719
720 void getAnalysisUsage(AnalysisUsage &AU) const override;
721 bool runOnModule(Module &M) override;
722 void releaseMemory() override;
723};
724
726
727} // namespace llvm
728
729#endif // LLVM_ANALYSIS_DXILRESOURCE_H
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
static void print(raw_ostream &Out, object::Archive::Kind Kind, T Val)
#define LLVM_ABI
Definition Compiler.h:213
DXIL Resource Implicit Binding
This header defines various interfaces for pass management in LLVM.
#define I(x, y, z)
Definition MD5.cpp:57
This file implements a map that provides insertion order iteration.
#define T
This file defines the SmallVector class.
Value * RHS
Represent the analysis usage information of a pass.
This class represents a function call, abstracting a target machine's calling convention.
LLVM_ABI DXILResourceMap run(Module &M, ModuleAnalysisManager &AM)
Gather resource info for the module M.
DXILResourceBindingInfo Result
LLVM_ABI DXILResourceBindingInfo run(Module &M, ModuleAnalysisManager &AM)
friend class DXILResourceBindingWrapperPass
void setHasImplicitBinding(bool Value)
std::optional< uint32_t > findAvailableBinding(dxil::ResourceClass RC, uint32_t Space, int32_t Size)
friend class DXILResourceBindingAnalysis
void setHasOverlappingBinding(bool Value)
const DXILResourceBindingInfo & getBindingInfo() const
DXILResourceBindingInfo & getBindingInfo()
const_iterator sampler_end() const
iterator find(const CallInst *Key)
bool hasInvalidCounterDirection() const
const_iterator find(const CallInst *Key) const
iterator_range< iterator > samplers()
iterator_range< const_iterator > uavs() const
friend class DXILResourceAnalysis
const_iterator cbuffer_end() const
iterator_range< const_iterator > srvs() const
call_iterator call_begin()
const_iterator uav_begin() const
const_iterator begin() const
iterator_range< const_iterator > samplers() const
LLVM_ABI void print(raw_ostream &OS, DXILResourceTypeMap &DRTM, const DataLayout &DL) const
call_iterator call_end()
const_iterator srv_begin() const
iterator_range< iterator > srvs()
iterator_range< iterator > cbuffers()
iterator_range< iterator > uavs()
iterator_range< call_iterator > calls()
const_iterator uav_end() const
const_iterator sampler_begin() const
SmallVector< dxil::ResourceInfo >::iterator iterator
friend class DXILResourceWrapperPass
const_iterator cbuffer_begin() const
const_iterator srv_end() const
iterator_range< const_iterator > cbuffers() const
SmallVector< dxil::ResourceInfo >::const_iterator const_iterator
const_iterator end() const
DXILResourcePrinterPass(raw_ostream &OS)
LLVM_ABI PreservedAnalyses run(Module &M, ModuleAnalysisManager &AM)
DXILResourceTypeMap run(Module &M, ModuleAnalysisManager &AM)
dxil::ResourceTypeInfo & operator[](TargetExtType *Ty)
LLVM_ABI bool invalidate(Module &M, const PreservedAnalyses &PA, ModuleAnalysisManager::Invalidator &Inv)
DXILResourceTypeMap & getResourceTypeMap()
const DXILResourceTypeMap & getResourceTypeMap() const
DXILResourceMap & getResourceMap()
const DXILResourceMap & getResourceMap() const
A parsed version of the target data layout string in and methods for querying it.
Definition DataLayout.h:64
DenseMapIterator< KeyT, ValueT, KeyInfoT, BucketT > iterator
Definition DenseMap.h:74
ImmutablePass(char &pid)
Definition Pass.h:287
This is an important class for using LLVM in a threaded context.
Definition LLVMContext.h:68
Tuple of metadata.
Definition Metadata.h:1500
ModulePass class - This class is used to implement unstructured interprocedural optimizations and ana...
Definition Pass.h:255
ModulePass(char &pid)
Definition Pass.h:257
A Module instance is used to store all the information related to an LLVM module.
Definition Module.h:67
A set of analyses that are preserved following a run of a transformation pass.
Definition Analysis.h:112
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
Class to represent struct types.
Class to represent target extensions types, which are generally unintrospectable from target-independ...
Type * getTypeParameter(unsigned i) const
unsigned getIntParameter(unsigned i) const
Type(LLVMContext &C, TypeID tid)
Definition Type.h:95
LLVM Value Representation.
Definition Value.h:75
static bool classof(const Type *T)
AnyResourceExtType & operator=(const AnyResourceExtType &)=delete
static bool classof(const TargetExtType *T)
AnyResourceExtType(const AnyResourceExtType &)=delete
static bool classof(const TargetExtType *T)
CBufferExtType & operator=(const CBufferExtType &)=delete
CBufferExtType(const CBufferExtType &)=delete
static bool classof(const Type *T)
Type * getResourceType() const
dxil::SamplerFeedbackType getFeedbackType() const
FeedbackTextureExtType(const FeedbackTextureExtType &)=delete
dxil::ResourceKind getDimension() const
FeedbackTextureExtType & operator=(const FeedbackTextureExtType &)=delete
static bool classof(const TargetExtType *T)
static bool classof(const Type *T)
static bool classof(const Type *T)
LayoutExtType(const LayoutExtType &)=delete
uint32_t getSize() const
LayoutExtType & operator=(const LayoutExtType &)=delete
static bool classof(const TargetExtType *T)
uint32_t getOffsetOfElement(int I) const
Type * getWrappedType() const
dxil::ResourceKind getDimension() const
MSTextureExtType(const MSTextureExtType &)=delete
static bool classof(const TargetExtType *T)
uint32_t getSampleCount() const
static bool classof(const Type *T)
MSTextureExtType & operator=(const MSTextureExtType &)=delete
static bool classof(const TargetExtType *T)
PaddingExtType & operator=(const PaddingExtType &)=delete
PaddingExtType(const PaddingExtType &)=delete
unsigned getNumBytes() const
static bool classof(const Type *T)
static bool classof(const TargetExtType *T)
RawBufferExtType(const RawBufferExtType &)=delete
static bool classof(const Type *T)
RawBufferExtType & operator=(const RawBufferExtType &)=delete
StringRef getName() const
bool operator<(const ResourceInfo &RHS) const
bool operator!=(const ResourceInfo &RHS) const
TargetExtType * getHandleTy() const
LLVM_ABI std::pair< uint32_t, uint32_t > getAnnotateProps(Module &M, dxil::ResourceTypeInfo &RTI) const
LLVM_ABI void print(raw_ostream &OS, dxil::ResourceTypeInfo &RTI, const DataLayout &DL) const
ResourceInfo(uint32_t RecordID, uint32_t Space, uint32_t LowerBound, uint32_t Size, TargetExtType *HandleTy, StringRef Name="", GlobalVariable *Symbol=nullptr)
void setBindingID(unsigned ID)
bool operator==(const ResourceInfo &RHS) const
const ResourceBinding & getBinding() const
LLVM_ABI GlobalVariable * createSymbol(Module &M, StructType *Ty)
LLVM_ABI MDTuple * getAsMetadata(Module &M, dxil::ResourceTypeInfo &RTI) const
ResourceCounterDirection CounterDirection
dxil::ResourceClass getResourceClass() const
LLVM_ABI uint32_t getMultiSampleCount() const
LLVM_ABI uint32_t getCBufferSize(const DataLayout &DL) const
LLVM_ABI bool operator<(const ResourceTypeInfo &RHS) const
LLVM_ABI bool isUAV() const
LLVM_ABI bool isMultiSample() const
LLVM_ABI bool isSampler() const
LLVM_ABI bool isTyped() const
LLVM_ABI dxil::SamplerType getSamplerType() const
LLVM_ABI ResourceTypeInfo(TargetExtType *HandleTy, const dxil::ResourceClass RC, const dxil::ResourceKind Kind)
LLVM_ABI bool isCBuffer() const
LLVM_ABI TypedInfo getTyped() const
bool operator!=(const ResourceTypeInfo &RHS) const
LLVM_ABI StructType * createElementStruct(StringRef CBufferName="")
TargetExtType * getHandleTy() const
LLVM_ABI bool isFeedback() const
ResourceTypeInfo(TargetExtType *HandleTy)
LLVM_ABI UAVInfo getUAV() const
LLVM_ABI StructInfo getStruct(const DataLayout &DL) const
LLVM_ABI bool isStruct() const
LLVM_ABI dxil::SamplerFeedbackType getFeedbackType() const
LLVM_ABI bool operator==(const ResourceTypeInfo &RHS) const
dxil::ResourceKind getResourceKind() const
LLVM_ABI void print(raw_ostream &OS, const DataLayout &DL) const
SamplerExtType(const SamplerExtType &)=delete
static bool classof(const Type *T)
dxil::SamplerType getSamplerType() const
SamplerExtType & operator=(const SamplerExtType &)=delete
static bool classof(const TargetExtType *T)
static bool classof(const TargetExtType *T)
dxil::ResourceKind getDimension() const
Type * getResourceType() const
TextureExtType & operator=(const TextureExtType &)=delete
TextureExtType(const TextureExtType &)=delete
static bool classof(const Type *T)
TypedBufferExtType & operator=(const TypedBufferExtType &)=delete
static bool classof(const TargetExtType *T)
TypedBufferExtType(const TypedBufferExtType &)=delete
static bool classof(const Type *T)
BindingInfo represents the ranges of bindings and free space for each dxil::ResourceClass.
Definition HLSLBinding.h:46
A range adaptor for a pair of iterators.
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition raw_ostream.h:53
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition CallingConv.h:24
ResourceKind
The kind of resource for an SRV or UAV resource.
Definition DXILABI.h:44
SamplerFeedbackType
Definition DXILABI.h:104
ElementType
The element type of an SRV or UAV resource.
Definition DXILABI.h:68
LLVM_ABI StringRef getResourceNameFromBindingCall(CallInst *CI)
This is an optimization pass for GlobalISel generic memory operations.
Definition Types.h:26
void dump(const SparseBitVector< ElementSize > &LHS, raw_ostream &out)
LLVM_ABI ModulePass * createDXILResourceBindingWrapperPassPass()
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
LLVM_ABI ModulePass * createDXILResourceTypeWrapperPassPass()
bool isa(const From &Val)
isa<X> - Return true if the parameter to the template is an instance of one of the template type argu...
Definition Casting.h:547
LLVM_ATTRIBUTE_VISIBILITY_DEFAULT AnalysisKey InnerAnalysisManagerProxy< AnalysisManagerT, IRUnitT, ExtraArgTs... >::Key
OutputIt move(R &&Range, OutputIt Out)
Provide wrappers to std::move which take ranges instead of having to pass begin/end explicitly.
Definition STLExtras.h:1917
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:559
LLVM_ABI ModulePass * createDXILResourceWrapperPassPass()
AnalysisManager< Module > ModuleAnalysisManager
Convenience typedef for the Module analysis manager.
Definition MIRParser.h:39
Implement std::hash so that hash_code can be used in STL containers.
Definition BitVector.h:870
A CRTP mix-in that provides informational APIs needed for analysis passes.
Definition PassManager.h:93
A special type used by analysis passes to provide an address that identifies that particular analysis...
Definition Analysis.h:29
call_iterator(CallMapTy::iterator Iter)
A CRTP mix-in to automatically provide informational APIs needed for passes.
Definition PassManager.h:70
bool operator!=(const ResourceBinding &RHS) const
bool operator==(const ResourceBinding &RHS) const
bool overlapsWith(const ResourceBinding &RHS) const
bool operator<(const ResourceBinding &RHS) const
bool operator==(const StructInfo &RHS) const
bool operator!=(const StructInfo &RHS) const
bool operator<(const StructInfo &RHS) const
bool operator<(const TypedInfo &RHS) const
bool operator==(const TypedInfo &RHS) const
bool operator!=(const TypedInfo &RHS) const
bool operator!=(const UAVInfo &RHS) const
bool operator==(const UAVInfo &RHS) const
bool operator<(const UAVInfo &RHS) const