Home
last modified time | relevance | path

Searched refs:spirvbin_t (Results 1 – 8 of 8) sorted by relevance

/external/deqp-deps/glslang/gtests/
DRemap.FromFile.cpp88 … { "remap.basic.none.frag", "main", Source::GLSL, spv::spirvbin_t::NONE },
89 …{ "remap.basic.everything.frag", "main", Source::GLSL, spv::spirvbin_t::DO_EVERYTHING…
90 … { "remap.basic.dcefunc.frag", "main", Source::GLSL, spv::spirvbin_t::DCE_FUNCS },
91 … { "remap.basic.strip.frag", "main", Source::GLSL, spv::spirvbin_t::STRIP },
92 …{ "remap.specconst.comp", "main", Source::GLSL, spv::spirvbin_t::DO_EVERYTHING…
93 … { "remap.switch.none.frag", "main", Source::GLSL, spv::spirvbin_t::NONE },
94 …{ "remap.switch.everything.frag", "main", Source::GLSL, spv::spirvbin_t::DO_EVERYTHING…
95 … { "remap.literal64.none.spv", "main", Source::GLSL, spv::spirvbin_t::NONE },
96 …{ "remap.literal64.everything.spv", "main", Source::GLSL, spv::spirvbin_t::DO_EVERYTHING…
97 … { "remap.if.none.frag", "main", Source::GLSL, spv::spirvbin_t::NONE },
[all …]
DTestFixture.h341 const unsigned int remapOptions = spv::spirvbin_t::NONE)
362 spv::spirvbin_t(0 /*verbosity*/).remap(spirv_binary, remapOptions);
381 const unsigned int remapOptions = spv::spirvbin_t::NONE)
386 spv::spirvbin_t(0 /*verbosity*/).remap(spirv_binary, remapOptions);
561 const unsigned int remapOptions = spv::spirvbin_t::NONE)
587 const unsigned int remapOptions = spv::spirvbin_t::NONE)
/external/deqp-deps/glslang/StandAlone/
Dspirv-remap.cpp165 spv::spirvbin_t(verbosity).remap(spv, opts); in execute()
186 options = spv::spirvbin_t::NONE; in parseCmdLine()
238 options = options | spv::spirvbin_t::DO_EVERYTHING; in parseCmdLine()
241 options = options | spv::spirvbin_t::STRIP; in parseCmdLine()
245 options = options | spv::spirvbin_t::STRIP; in parseCmdLine()
253 options = (options | spv::spirvbin_t::DCE_ALL); in parseCmdLine()
256 options = (options | spv::spirvbin_t::DCE_ALL); in parseCmdLine()
259 options = (options | spv::spirvbin_t::DCE_FUNCS); in parseCmdLine()
262 options = (options | spv::spirvbin_t::DCE_TYPES); in parseCmdLine()
272 options = (options | spv::spirvbin_t::MAP_ALL); in parseCmdLine()
[all …]
/external/deqp-deps/glslang/SPIRV/
DSPVRemapper.cpp50 spirvbin_t::errorfn_t spirvbin_t::errorHandler = [](const std::string&) { exit(5); }; in __anon30c19a6c0102()
52 spirvbin_t::logfn_t spirvbin_t::logHandler = [](const std::string&) { }; in __anon30c19a6c0202()
55 void spirvbin_t::msg(int minVerbosity, int indent, const std::string& txt) const in msg()
62 std::uint32_t spirvbin_t::asOpCodeHash(unsigned word) in asOpCodeHash()
78 spirvbin_t::range_t spirvbin_t::literalRange(spv::Op opCode) const in literalRange()
97 spirvbin_t::range_t spirvbin_t::typeRange(spv::Op opCode) const in typeRange()
118 spirvbin_t::range_t spirvbin_t::constRange(spv::Op opCode) const in constRange()
133 unsigned spirvbin_t::typeSizeInWords(spv::Id id) const in typeSizeInWords()
151 unsigned spirvbin_t::idTypeSizeInWords(spv::Id id) const in idTypeSizeInWords()
163 bool spirvbin_t::isStripOp(spv::Op opCode) const in isStripOp()
[all …]
DSPVRemapper.h82 class spirvbin_t : public spirvbin_base_t
85 spirvbin_t(int /*verbose = 0*/) { } in spirvbin_t() function
112 class spirvbin_t : public spirvbin_base_t
115spirvbin_t(int verbose = 0) : entryPoint(spv::NoResult), largestNewId(0), verbose(verbose), errorL… in entryPoint()
118 virtual ~spirvbin_t() { } in ~spirvbin_t()
229 spirvbin_t& process(instfn_t, idfn_t, unsigned begin = 0, unsigned end = 0);
/external/deqp-deps/glslang/
DREADME-spirv-remap.txt68 class spirvbin_t
72 spirvbin_t(int verbose = 0); // construct
92 It is safe to instantiate one spirvbin_t per thread and process a different
101 member, so need only be set up once, not once per spirvbin_t instance.
122 These are bits defined under spv::spirvbin_t::, and can be
/external/vulkan-validation-layers/tests/
Dvktestframework.cpp820 spv::spirvbin_t(0).remap(spirv, spv::spirvbin_t::ALL_BUT_STRIP); in GLSLtoSPV()
824 spv::spirvbin_t(0).remap(spirv, spv::spirvbin_t::STRIP); in GLSLtoSPV()
828 spv::spirvbin_t(0).remap(spirv, spv::spirvbin_t::DO_EVERYTHING); in GLSLtoSPV()
/external/deqp/external/vulkancts/framework/vulkan/
DvkShaderToSpirV.cpp355 spv::spirvbin_t remapper; in stripSpirVDebugInfo()