HomeSort by relevance Sort by last modified time
    Searched refs:def_inst (Results 1 - 8 of 8) sorted by null

  /external/deqp-deps/SPIRV-Tools/source/opt/
eliminate_dead_constant_pass.cpp 72 Instruction* def_inst = local
74 // If the use_count does not have any count for the def_inst,
75 // def_inst must not be a constant, and should be ignored here.
76 if (!use_counts.count(def_inst)) {
81 SPIRV_ASSERT(consumer(), use_counts[def_inst] > 0);
82 --use_counts[def_inst];
83 if (!use_counts[def_inst]) {
84 working_list.insert(def_inst);
function.h 43 // |def_inst|.
44 inline explicit Function(std::unique_ptr<Instruction> def_inst);
151 inline Function::Function(std::unique_ptr<Instruction> def_inst)
152 : def_inst_(std::move(def_inst)), end_inst_() {}
  /external/swiftshader/third_party/SPIRV-Tools/source/opt/
eliminate_dead_constant_pass.cpp 72 Instruction* def_inst = local
74 // If the use_count does not have any count for the def_inst,
75 // def_inst must not be a constant, and should be ignored here.
76 if (!use_counts.count(def_inst)) {
81 SPIRV_ASSERT(consumer(), use_counts[def_inst] > 0);
82 --use_counts[def_inst];
83 if (!use_counts[def_inst]) {
84 working_list.insert(def_inst);
function.h 43 // |def_inst|.
44 inline explicit Function(std::unique_ptr<Instruction> def_inst);
155 inline Function::Function(std::unique_ptr<Instruction> def_inst)
156 : def_inst_(std::move(def_inst)), end_inst_() {}
  /external/deqp-deps/SPIRV-Tools/source/comp/
markv_codec.cpp 215 const val::Instruction* def_inst = FindDef(inst_.words[4]); local
216 assert(def_inst);
217 assert(def_inst->opcode() == SpvOpTypeFunction);
218 for (uint32_t i = 3; i < def_inst->words().size(); ++i) {
219 remaining_function_parameter_types_.push_back(def_inst->word(i));
  /external/swiftshader/third_party/SPIRV-Tools/source/comp/
markv_codec.cpp 215 const val::Instruction* def_inst = FindDef(inst_.words[4]); local
216 assert(def_inst);
217 assert(def_inst->opcode() == SpvOpTypeFunction);
218 for (uint32_t i = 3; i < def_inst->words().size(); ++i) {
219 remaining_function_parameter_types_.push_back(def_inst->word(i));
  /external/deqp-deps/SPIRV-Tools/source/link/
linker.cpp 419 const Instruction* def_inst = def_use_manager.GetDef(id); local
420 if (def_inst == nullptr)
424 if (def_inst->opcode() == SpvOpVariable) {
425 symbol_info.type_id = def_inst->type_id();
426 } else if (def_inst->opcode() == SpvOpFunction) {
427 symbol_info.type_id = def_inst->GetSingleWordInOperand(1u);
  /external/swiftshader/third_party/SPIRV-Tools/source/link/
linker.cpp 419 const Instruction* def_inst = def_use_manager.GetDef(id); local
420 if (def_inst == nullptr)
424 if (def_inst->opcode() == SpvOpVariable) {
425 symbol_info.type_id = def_inst->type_id();
426 } else if (def_inst->opcode() == SpvOpFunction) {
427 symbol_info.type_id = def_inst->GetSingleWordInOperand(1u);

Completed in 760 milliseconds