vkd3d-shader/d3dbc: Compile HLSL to d3dbc through vsir, part 2.
2 unresolved threads
2 unresolved threads
Compare changes
Second part of the hlsl->vsir->d3dbc translation. The remaining patches are in my hlsl2vsir5 branch.
For good or bad, I coded this translation using a per-intruction-type approach rather than a per-field approach, specifically, this means that every patch takes care of translating one hlsl instruction type at the time rather than translating one of the fields in sm1_instruction to vsir_instruction.
This per-intruction-type approach is more complicated than the alternative as both the vsir_program and the hlsl_block must coexist at the same time until everything is translated. This is achieved by introducing the hlsl_ir_vsir_instruction_ref instruction node type, which can be introduced like every other hlsl_ir_node in the hlsl_block but points to an instruction in the vsir_program.
But bear with me!
This node type is completely removed in one of the last patches of the translation (fcasas/vkd3d@e547cdc7) and so are the other HLSL constructs in d3dbc.c. So the oddity goes away in the end.
At least, this approach has some upsides: