Initial stub implementation of SpirvShader

This will eventually replace Shader and related subclasses. The
interesting bit here is the instruction iterator, which allows fairly
safe access to the instruction stream without needing the rest of the
code to care too much about the physical layout.

Bug: b/120799499

Change-Id: Id0d94c4b807ddb1e4325de147ca1f651171779b7
Reviewed-on: https://swiftshader-review.googlesource.com/c/23049
Reviewed-by: Corentin Wallez <cwallez@google.com>
Reviewed-by: Alexis Hétu <sugoi@google.com>
Tested-by: Chris Forbes <chrisforbes@google.com>
diff --git a/src/Vulkan/vulkan.vcxproj b/src/Vulkan/vulkan.vcxproj
index 410fadf..32abd27 100644
--- a/src/Vulkan/vulkan.vcxproj
+++ b/src/Vulkan/vulkan.vcxproj
@@ -145,6 +145,7 @@
     <ClCompile Include="..\Pipeline\SetupRoutine.cpp" />

     <ClCompile Include="..\Pipeline\Shader.cpp" />

     <ClCompile Include="..\Pipeline\ShaderCore.cpp" />

+    <ClCompile Include="..\Pipeline\SpirvShader.cpp" />

     <ClCompile Include="..\Pipeline\VertexProgram.cpp" />

     <ClCompile Include="..\Pipeline\VertexRoutine.cpp" />

     <ClCompile Include="..\Pipeline\VertexShader.cpp" />

@@ -251,6 +252,7 @@
     <ClInclude Include="..\Pipeline\SetupRoutine.hpp" />

     <ClInclude Include="..\Pipeline\Shader.hpp" />

     <ClInclude Include="..\Pipeline\ShaderCore.hpp" />

+    <ClInclude Include="..\Pipeline\SpirvShader.hpp" />

     <ClInclude Include="..\Pipeline\VertexPipeline.hpp" />

     <ClInclude Include="..\Pipeline\VertexProgram.hpp" />

     <ClInclude Include="..\Pipeline\VertexRoutine.hpp" />

@@ -319,4 +321,4 @@
   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />

   <ImportGroup Label="ExtensionTargets">

   </ImportGroup>

-</Project>
\ No newline at end of file
+</Project>