-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[HLSL] Implement the Root Signature Parser for Descriptor Tables #126569
Labels
HLSL
HLSL Language Support
Comments
This was referenced Feb 10, 2025
7 tasks
This was referenced Mar 5, 2025
inbelic
added a commit
that referenced
this issue
Mar 31, 2025
…ty clauses (#133302) - defines the Parser class and an initial set of helper methods to support consuming tokens. functionality is demonstrated through a simple empty descriptor table test case - defines an initial in-memory representation of a DescriptorTable - implements a test harness that will be used to validate the correct diagnostics are generated. it will construct a dummy pre-processor with diagnostics consumer to do so Implements the first part of #126569
llvm-sync bot
pushed a commit
to arm/arm-toolchain
that referenced
this issue
Mar 31, 2025
…le with empty clauses (#133302) - defines the Parser class and an initial set of helper methods to support consuming tokens. functionality is demonstrated through a simple empty descriptor table test case - defines an initial in-memory representation of a DescriptorTable - implements a test harness that will be used to validate the correct diagnostics are generated. it will construct a dummy pre-processor with diagnostics consumer to do so Implements the first part of llvm/llvm-project#126569
inbelic
added a commit
to inbelic/llvm-project
that referenced
this issue
Mar 31, 2025
…ty clauses (llvm#133302) - defines the Parser class and an initial set of helper methods to support consuming tokens. functionality is demonstrated through a simple empty descriptor table test case - defines an initial in-memory representation of a DescriptorTable - implements a test harness that will be used to validate the correct diagnostics are generated. it will construct a dummy pre-processor with diagnostics consumer to do so Implements the first part of llvm#126569
inbelic
added a commit
to inbelic/llvm-project
that referenced
this issue
Apr 1, 2025
…ty clauses (llvm#133302) - defines the Parser class and an initial set of helper methods to support consuming tokens. functionality is demonstrated through a simple empty descriptor table test case - defines an initial in-memory representation of a DescriptorTable - implements a test harness that will be used to validate the correct diagnostics are generated. it will construct a dummy pre-processor with diagnostics consumer to do so Implements the first part of llvm#126569
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This issues handles the implementation of parsing the root signature in its token form into the in-memory representation of
RootElement
s. Specifically, it handles all Descriptor Table related tokens and parses these into theDescriptorTable
andDescriptorTableClause
struct representation.This will define all the helper methods of Root Signature Parser needed for the other Root Element types and so it constitutes the "first 90%" of work for implementing the complete parser.
Note that this parser definition will be completely self-contained and can be invoked externally when creating the
HLSLRootSignatureAttr
This issue is dependent on #126563
AC:
RootElement
,DescriptorTable
andDescriptorTableClause
inHLSLRootSignatures.h
RootSignatureParser
and provide a publicParse
that will take an inputRootSignatureLexer
and generate a list ofRootElement
sRootElements
ParseHLSLRootSignatureTest.cpp
The text was updated successfully, but these errors were encountered: