[llvm-branch-commits] [clang] [llvm] [HLSL][RootSignature] Implement Parsing of Descriptor Tables (PR #122982)

Chris B via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Thu Jan 23 14:17:29 PST 2025


https://github.com/llvm-beanz commented:

I think that the way you're breaking up this change is sub-optimal from a review perspective. You've added a lot of code that partially handles parsing a very complex root signature. The problem is that to complete this implementation you're going to go back over this code over and over again fleshing it out, and from a reviewer's perspective we're going to need to keep paging back in extra context.

If instead you started with a much simpler root signature (even just an empty one), but implement more complete handling for it, we can review that and incrementally build up without revisiting the same code over and over again in each subsequent patch.

https://github.com/llvm/llvm-project/pull/122982


More information about the llvm-branch-commits mailing list