Home
last modified time | relevance | path

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

/external/vulkan-validation-layers/layers/
Dshader_validation.cpp368 auto b_insn = b->get_def(b_type); in TypesMatch() local
370 assert(b_insn != b->end()); in TypesMatch()
378 if (b_arrayed && b_insn.opcode() == spv::OpTypeArray) { in TypesMatch()
380 return TypesMatch(a, b, a_type, b_insn.word(2), a_arrayed, false, relaxed); in TypesMatch()
383 if (a_insn.opcode() == spv::OpTypeVector && relaxed && IsNarrowNumericType(b_insn)) { in TypesMatch()
387 if (a_insn.opcode() != b_insn.opcode()) { in TypesMatch()
393 return TypesMatch(a, b, a_insn.word(3), b_insn.word(3), a_arrayed, b_arrayed, relaxed); in TypesMatch()
406 return a_insn.word(2) == b_insn.word(2) && a_insn.word(3) == b_insn.word(3); in TypesMatch()
409 return a_insn.word(2) == b_insn.word(2); in TypesMatch()
412 … if (!TypesMatch(a, b, a_insn.word(2), b_insn.word(2), a_arrayed, b_arrayed, false)) return false; in TypesMatch()
[all …]