Skip to content
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

Open
4 tasks
inbelic opened this issue Feb 10, 2025 · 0 comments
Open
4 tasks

[HLSL] Implement the Root Signature Parser for Descriptor Tables #126569

inbelic opened this issue Feb 10, 2025 · 0 comments
Assignees
Labels
HLSL HLSL Language Support

Comments

@inbelic
Copy link
Contributor

inbelic commented Feb 10, 2025

This issues handles the implementation of parsing the root signature in its token form into the in-memory representation of RootElements. Specifically, it handles all Descriptor Table related tokens and parses these into the DescriptorTable and DescriptorTableClause 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:

  • Define the in-memory representation of RootElement, DescriptorTable and DescriptorTableClause in HLSLRootSignatures.h
  • Define RootSignatureParser and provide a public Parse that will take an input RootSignatureLexer and generate a list of RootElements
  • Implement the internal methods and helper methods required to parse the different types of RootElements
  • Add unit testing in ParseHLSLRootSignatureTest.cpp
@inbelic inbelic added the HLSL HLSL Language Support label Feb 10, 2025
@inbelic inbelic self-assigned this Feb 10, 2025
@inbelic inbelic moved this to Planning in HLSL Support Feb 10, 2025
@damyanp damyanp moved this from Planning to Needs Review in HLSL Support Feb 10, 2025
@inbelic inbelic moved this from Needs Review to Planning in HLSL Support Feb 11, 2025
@damyanp damyanp moved this from Planning to Active in HLSL Support Feb 11, 2025
@damyanp damyanp moved this from Active to Needs Review in HLSL Support Feb 11, 2025
@inbelic inbelic moved this from Needs Review to Active in HLSL Support Mar 25, 2025
@inbelic inbelic moved this from Active to Needs Review in HLSL Support Mar 27, 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
Labels
HLSL HLSL Language Support
Projects
Status: Needs Review
Development

Successfully merging a pull request may close this issue.

1 participant