Home
last modified time | relevance | path

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

/external/deqp-deps/SPIRV-Tools/source/opt/
Ddef_use_manager.cpp27 const uint32_t def_id = inst->result_id(); in AnalyzeInstDef() local
28 if (def_id != 0) { in AnalyzeInstDef()
29 auto iter = id_to_def_.find(def_id); in AnalyzeInstDef()
35 id_to_def_[def_id] = inst; in AnalyzeInstDef()
77 const uint32_t def_id = inst->result_id(); in UpdateDefUse() local
78 if (def_id != 0) { in UpdateDefUse()
79 auto iter = id_to_def_.find(def_id); in UpdateDefUse()
Dcfg.cpp248 uint32_t def_id = phi->GetSingleWordInOperand(i); in SplitLoopHeader() local
251 header_phi_ops.push_back({SPV_OPERAND_TYPE_ID, {def_id}}); in SplitLoopHeader()
254 preheader_phi_ops.push_back(def_id); in SplitLoopHeader()
Dloop_utils.cpp391 uint32_t def_id = phi->GetSingleWordInOperand(i); in CreateLoopDedicatedExits() local
394 exit_phi_op.push_back(def_id); in CreateLoopDedicatedExits()
397 new_phi_op.push_back(def_id); in CreateLoopDedicatedExits()
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/opt/
Ddef_use_manager.cpp27 const uint32_t def_id = inst->result_id(); in AnalyzeInstDef() local
28 if (def_id != 0) { in AnalyzeInstDef()
29 auto iter = id_to_def_.find(def_id); in AnalyzeInstDef()
35 id_to_def_[def_id] = inst; in AnalyzeInstDef()
77 const uint32_t def_id = inst->result_id(); in UpdateDefUse() local
78 if (def_id != 0) { in UpdateDefUse()
79 auto iter = id_to_def_.find(def_id); in UpdateDefUse()
Dcfg.cpp248 uint32_t def_id = phi->GetSingleWordInOperand(i); in SplitLoopHeader() local
251 header_phi_ops.push_back({SPV_OPERAND_TYPE_ID, {def_id}}); in SplitLoopHeader()
254 preheader_phi_ops.push_back(def_id); in SplitLoopHeader()
Dloop_utils.cpp391 uint32_t def_id = phi->GetSingleWordInOperand(i); in CreateLoopDedicatedExits() local
394 exit_phi_op.push_back(def_id); in CreateLoopDedicatedExits()
397 new_phi_op.push_back(def_id); in CreateLoopDedicatedExits()
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Ddef_use_manager.cpp27 const uint32_t def_id = inst->result_id(); in AnalyzeInstDef() local
28 if (def_id != 0) { in AnalyzeInstDef()
29 auto iter = id_to_def_.find(def_id); in AnalyzeInstDef()
35 id_to_def_[def_id] = inst; in AnalyzeInstDef()
77 const uint32_t def_id = inst->result_id(); in UpdateDefUse() local
78 if (def_id != 0) { in UpdateDefUse()
79 auto iter = id_to_def_.find(def_id); in UpdateDefUse()
Dcfg.cpp248 uint32_t def_id = phi->GetSingleWordInOperand(i); in SplitLoopHeader() local
251 header_phi_ops.push_back({SPV_OPERAND_TYPE_ID, {def_id}}); in SplitLoopHeader()
254 preheader_phi_ops.push_back(def_id); in SplitLoopHeader()
Dloop_utils.cpp391 uint32_t def_id = phi->GetSingleWordInOperand(i); in CreateLoopDedicatedExits() local
394 exit_phi_op.push_back(def_id); in CreateLoopDedicatedExits()
397 new_phi_op.push_back(def_id); in CreateLoopDedicatedExits()
/external/libabigail/src/
Dabg-reader.cc4490 string def_id; in build_class_decl() local
4493 def_id = CHAR_STR(s); in build_class_decl()
4495 if (!def_id.empty()) in build_class_decl()
4497 decl_base_sptr d = is_decl(ctxt.get_type_decl(def_id)); in build_class_decl()
4898 string def_id; in build_union_decl() local
4901 def_id = CHAR_STR(s); in build_union_decl()
4903 if (!def_id.empty()) in build_union_decl()
4906 dynamic_pointer_cast<class_decl>(ctxt.get_type_decl(def_id)); in build_union_decl()
/external/mesa3d/src/amd/compiler/
Daco_register_allocation.cpp2085 unsigned def_id = instr->definitions[0].tempId(); in register_allocation() local
2086 auto it = ctx.affinities.find(def_id); in register_allocation()