| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316 |
- // Copyright (C) 2009-2021, Panagiotis Christopoulos Charitos and contributors.
- // All rights reserved.
- // Code licensed under the BSD License.
- // http://www.anki3d.org/LICENSE
- #include <AnKi/ShaderCompiler/ShaderProgramDump.h>
- #include <AnKi/Util/Serializer.h>
- #include <AnKi/Util/StringList.h>
- #include <SprivCross/spirv_glsl.hpp>
- namespace anki {
- #define ANKI_TAB " "
- static void disassembleBlockInstance(const ShaderProgramBinaryBlockInstance& instance,
- const ShaderProgramBinaryBlock& block, StringListAuto& lines)
- {
- lines.pushBackSprintf(ANKI_TAB ANKI_TAB ANKI_TAB "%-32s set %4u binding %4u size %4u\n", block.m_name.getBegin(),
- block.m_set, block.m_binding, instance.m_size);
- for(U32 i = 0; i < instance.m_variableInstances.getSize(); ++i)
- {
- const ShaderProgramBinaryVariableInstance& varInstance = instance.m_variableInstances[i];
- const ShaderProgramBinaryVariable& var = block.m_variables[varInstance.m_index];
- lines.pushBackSprintf(ANKI_TAB ANKI_TAB ANKI_TAB ANKI_TAB "%-48s type %8s blockInfo %d,%d,%d,%d\n",
- var.m_name.getBegin(), shaderVariableDataTypeToString(var.m_type).cstr(),
- varInstance.m_blockInfo.m_offset, varInstance.m_blockInfo.m_arraySize,
- varInstance.m_blockInfo.m_arrayStride, varInstance.m_blockInfo.m_matrixStride);
- }
- }
- static void disassembleBlock(const ShaderProgramBinaryBlock& block, StringListAuto& lines)
- {
- lines.pushBackSprintf(ANKI_TAB "%-32s set %4u binding %4u\n", block.m_name.getBegin(), block.m_set,
- block.m_binding);
- for(const ShaderProgramBinaryVariable& var : block.m_variables)
- {
- lines.pushBackSprintf(ANKI_TAB ANKI_TAB "%-48s type %8s\n", var.m_name.getBegin(),
- shaderVariableDataTypeToString(var.m_type).cstr());
- }
- }
- void dumpShaderProgramBinary(const ShaderProgramBinary& binary, StringAuto& humanReadable)
- {
- GenericMemoryPoolAllocator<U8> alloc = humanReadable.getAllocator();
- StringListAuto lines(alloc);
- if(binary.m_libraryName[0])
- {
- lines.pushBack("**LIBRARY**\n");
- lines.pushBackSprintf(ANKI_TAB "%s\n", &binary.m_libraryName[0]);
- }
- if(binary.m_rayType != MAX_U32)
- {
- lines.pushBack("\n**RAY TYPE**\n");
- lines.pushBackSprintf(ANKI_TAB "%u\n", binary.m_rayType);
- }
- lines.pushBack("\n**MUTATORS**\n");
- if(binary.m_mutators.getSize() > 0)
- {
- for(const ShaderProgramBinaryMutator& mutator : binary.m_mutators)
- {
- lines.pushBackSprintf(ANKI_TAB "%-32s ", &mutator.m_name[0]);
- for(U32 i = 0; i < mutator.m_values.getSize(); ++i)
- {
- lines.pushBackSprintf((i < mutator.m_values.getSize() - 1) ? "%d," : "%d", mutator.m_values[i]);
- }
- lines.pushBack("\n");
- }
- }
- else
- {
- lines.pushBack(ANKI_TAB "N/A\n");
- }
- lines.pushBack("\n**UNIFORM BLOCKS**\n");
- if(binary.m_uniformBlocks.getSize() > 0)
- {
- for(const ShaderProgramBinaryBlock& block : binary.m_uniformBlocks)
- {
- disassembleBlock(block, lines);
- }
- }
- else
- {
- lines.pushBack(ANKI_TAB "N/A\n");
- }
- lines.pushBack("\n**STORAGE BLOCKS**\n");
- if(binary.m_storageBlocks.getSize() > 0)
- {
- for(const ShaderProgramBinaryBlock& block : binary.m_storageBlocks)
- {
- disassembleBlock(block, lines);
- }
- }
- else
- {
- lines.pushBack(ANKI_TAB "N/A\n");
- }
- lines.pushBack("\n**PUSH CONSTANTS**\n");
- if(binary.m_pushConstantBlock)
- {
- disassembleBlock(*binary.m_pushConstantBlock, lines);
- }
- else
- {
- lines.pushBack(ANKI_TAB "N/A\n");
- }
- lines.pushBack("\n**OPAQUE**\n");
- if(binary.m_opaques.getSize() > 0)
- {
- for(const ShaderProgramBinaryOpaque& o : binary.m_opaques)
- {
- lines.pushBackSprintf(ANKI_TAB "%-32s set %4u binding %4u type %12s\n", o.m_name.getBegin(), o.m_set,
- o.m_binding, shaderVariableDataTypeToString(o.m_type).cstr());
- }
- }
- else
- {
- lines.pushBack(ANKI_TAB "N/A\n");
- }
- lines.pushBack("\n**CONSTANTS**\n");
- if(binary.m_constants.getSize() > 0)
- {
- for(const ShaderProgramBinaryConstant& c : binary.m_constants)
- {
- lines.pushBackSprintf(ANKI_TAB "%-32s type %8s id %4u\n", c.m_name.getBegin(),
- shaderVariableDataTypeToString(c.m_type).cstr(), c.m_constantId);
- }
- }
- else
- {
- lines.pushBack(ANKI_TAB "N/A\n");
- }
- lines.pushBack("\n**STRUCTS**\n");
- if(binary.m_structs.getSize() > 0)
- {
- for(const ShaderProgramBinaryStruct& s : binary.m_structs)
- {
- lines.pushBackSprintf(ANKI_TAB "%-32s\n", s.m_name.getBegin());
- for(const ShaderProgramBinaryStructMember& member : s.m_members)
- {
- const CString typeStr = (member.m_type == ShaderVariableDataType::NONE)
- ? &binary.m_structs[member.m_structIndex].m_name[0]
- : shaderVariableDataTypeToString(member.m_type);
- lines.pushBackSprintf(ANKI_TAB ANKI_TAB "%-32s type %24s\n", member.m_name.getBegin(), typeStr.cstr());
- }
- }
- }
- else
- {
- lines.pushBack(ANKI_TAB "N/A\n");
- }
- lines.pushBack("\n**BINARIES**\n");
- U32 count = 0;
- for(const ShaderProgramBinaryCodeBlock& code : binary.m_codeBlocks)
- {
- spirv_cross::CompilerGLSL::Options options;
- options.vulkan_semantics = true;
- options.version = 460;
- const unsigned int* spvb = reinterpret_cast<const unsigned int*>(code.m_binary.getBegin());
- ANKI_ASSERT((code.m_binary.getSize() % (sizeof(unsigned int))) == 0);
- std::vector<unsigned int> spv(spvb, spvb + code.m_binary.getSize() / sizeof(unsigned int));
- spirv_cross::CompilerGLSL compiler(spv);
- compiler.set_common_options(options);
- std::string glsl = compiler.compile();
- StringListAuto sourceLines(alloc);
- sourceLines.splitString(glsl.c_str(), '\n');
- StringAuto newGlsl(alloc);
- sourceLines.join("\n" ANKI_TAB ANKI_TAB, newGlsl);
- lines.pushBackSprintf(ANKI_TAB "#%u \n" ANKI_TAB ANKI_TAB "%s\n", count++, newGlsl.cstr());
- }
- lines.pushBack("\n**SHADER VARIANTS**\n");
- count = 0;
- for(const ShaderProgramBinaryVariant& variant : binary.m_variants)
- {
- lines.pushBackSprintf(ANKI_TAB "#%u\n", count++);
- // Uniform blocks
- if(variant.m_uniformBlocks.getSize() > 0)
- {
- lines.pushBackSprintf(ANKI_TAB ANKI_TAB "Uniform blocks\n");
- for(const ShaderProgramBinaryBlockInstance& instance : variant.m_uniformBlocks)
- {
- disassembleBlockInstance(instance, binary.m_uniformBlocks[instance.m_index], lines);
- }
- }
- // Storage blocks
- if(variant.m_storageBlocks.getSize() > 0)
- {
- lines.pushBackSprintf(ANKI_TAB ANKI_TAB "Storage blocks\n");
- for(const ShaderProgramBinaryBlockInstance& instance : variant.m_storageBlocks)
- {
- disassembleBlockInstance(instance, binary.m_storageBlocks[instance.m_index], lines);
- }
- }
- // Opaque
- if(variant.m_opaques.getSize() > 0)
- {
- lines.pushBackSprintf(ANKI_TAB ANKI_TAB "Opaque\n");
- for(const ShaderProgramBinaryOpaqueInstance& instance : variant.m_opaques)
- {
- const ShaderProgramBinaryOpaque& o = binary.m_opaques[instance.m_index];
- lines.pushBackSprintf(ANKI_TAB ANKI_TAB ANKI_TAB "%-32s set %4u binding %4u type %12s arraySize %4u\n",
- o.m_name.getBegin(), o.m_set, o.m_binding,
- shaderVariableDataTypeToString(o.m_type).cstr(), instance.m_arraySize);
- }
- }
- // Push constants
- if(variant.m_pushConstantBlock)
- {
- lines.pushBackSprintf(ANKI_TAB ANKI_TAB "Push constants\n");
- disassembleBlockInstance(*variant.m_pushConstantBlock, *binary.m_pushConstantBlock, lines);
- }
- // Constants
- if(variant.m_constants.getSize() > 0)
- {
- lines.pushBackSprintf(ANKI_TAB ANKI_TAB "Specialization constants\n");
- for(const ShaderProgramBinaryConstantInstance& instance : variant.m_constants)
- {
- const ShaderProgramBinaryConstant& c = binary.m_constants[instance.m_index];
- lines.pushBackSprintf(ANKI_TAB ANKI_TAB ANKI_TAB "%-32s type %8s id %4u\n", c.m_name.getBegin(),
- shaderVariableDataTypeToString(c.m_type).cstr(), c.m_constantId);
- }
- }
- // Structs
- if(variant.m_structs.getSize() > 0)
- {
- lines.pushBackSprintf(ANKI_TAB ANKI_TAB "Structs\n");
- for(const ShaderProgramBinaryStructInstance& instance : variant.m_structs)
- {
- const ShaderProgramBinaryStruct& s = binary.m_structs[instance.m_index];
- lines.pushBackSprintf(ANKI_TAB ANKI_TAB ANKI_TAB "%-32s size %4u\n", s.m_name.getBegin(),
- instance.m_size);
- for(const ShaderProgramBinaryStructMemberInstance& memberInstance : instance.m_memberInstances)
- {
- const ShaderProgramBinaryStructMember& member = s.m_members[memberInstance.m_index];
- lines.pushBackSprintf(ANKI_TAB ANKI_TAB ANKI_TAB ANKI_TAB "%-32s offset %4u arraySize %4u\n",
- member.m_name.getBegin(), memberInstance.m_offset,
- memberInstance.m_arraySize);
- }
- }
- }
- // Binary indices
- lines.pushBack(ANKI_TAB ANKI_TAB "Binaries ");
- for(ShaderType shaderType : EnumIterable<ShaderType>())
- {
- if(variant.m_codeBlockIndices[shaderType] < MAX_U32)
- {
- lines.pushBackSprintf("%u", variant.m_codeBlockIndices[shaderType]);
- }
- else
- {
- lines.pushBack("-");
- }
- if(shaderType != ShaderType::LAST)
- {
- lines.pushBack(",");
- }
- }
- lines.pushBack("\n");
- }
- // Mutations
- lines.pushBack("\n**MUTATIONS**\n");
- count = 0;
- for(const ShaderProgramBinaryMutation& mutation : binary.m_mutations)
- {
- lines.pushBackSprintf(ANKI_TAB "#%-4u variantIndex %5u values (", count++, mutation.m_variantIndex);
- if(mutation.m_values.getSize() > 0)
- {
- for(U32 i = 0; i < mutation.m_values.getSize(); ++i)
- {
- lines.pushBackSprintf((i < mutation.m_values.getSize() - 1) ? "%s %4d, " : "%s %4d",
- binary.m_mutators[i].m_name.getBegin(), I32(mutation.m_values[i]));
- }
- lines.pushBack(")");
- }
- else
- {
- lines.pushBack("N/A)");
- }
- lines.pushBack("\n");
- }
- lines.join("", humanReadable);
- }
- #undef ANKI_TAB
- } // end namespace anki
|