Home
last modified time | relevance | path

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

/external/deqp-deps/SPIRV-Tools/source/opt/
Dinterp_fixup_pass.cpp47 Instruction* load_inst = ctx->get_def_use_mgr()->GetDef(op1_id); in ReplaceInternalInterpolate() local
48 if (load_inst->opcode() != SpvOpLoad) return false; in ReplaceInternalInterpolate()
50 Instruction* base_inst = load_inst->GetBaseAddress(); in ReplaceInternalInterpolate()
56 uint32_t ptr_id = load_inst->GetSingleWordInOperand(0); in ReplaceInternalInterpolate()
Dssa_rewrite_pass.cpp584 Instruction* load_inst = in ApplyReplacements() local
589 << load_inst->PrettyPrint( in ApplyReplacements()
600 pass_->context()->KillInst(load_inst); in ApplyReplacements()
Dcopy_prop_arrays.h192 Instruction* load_inst);
Dinstrument_pass.cpp219 Instruction* load_inst = builder->AddUnaryOp(type_id, SpvOpLoad, var_id); in GenVarLoad() local
220 return load_inst->result_id(); in GenVarLoad()
912 Instruction* load_inst = in GetDirectReadFunctionId() local
914 last_value_id = load_inst->result_id(); in GetDirectReadFunctionId()
Dinterface_var_sroa.cpp649 Instruction* load_inst = load.get(); in CreateLoad() local
650 context()->get_def_use_mgr()->AnalyzeInstDefUse(load_inst); in CreateLoad()
652 return load_inst; in CreateLoad()
Dcopy_prop_arrays.cpp240 CopyPropagateArrays::BuildMemoryObjectFromLoad(Instruction* load_inst) { in BuildMemoryObjectFromLoad() argument
245 load_inst->GetSingleWordInOperand(kLoadPointerInOperand)); in BuildMemoryObjectFromLoad()
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dinterp_fixup_pass.cpp46 Instruction* load_inst = ctx->get_def_use_mgr()->GetDef(op1_id); in ReplaceInternalInterpolate() local
47 if (load_inst->opcode() != spv::Op::OpLoad) return false; in ReplaceInternalInterpolate()
49 Instruction* base_inst = load_inst->GetBaseAddress(); in ReplaceInternalInterpolate()
55 uint32_t ptr_id = load_inst->GetSingleWordInOperand(0); in ReplaceInternalInterpolate()
Dssa_rewrite_pass.cpp583 Instruction* load_inst = in ApplyReplacements() local
588 << load_inst->PrettyPrint( in ApplyReplacements()
599 pass_->context()->KillInst(load_inst); in ApplyReplacements()
Dcopy_prop_arrays.h192 Instruction* load_inst);
Dinterface_var_sroa.cpp649 Instruction* load_inst = load.get(); in CreateLoad() local
650 context()->get_def_use_mgr()->AnalyzeInstDefUse(load_inst); in CreateLoad()
652 return load_inst; in CreateLoad()
Dcopy_prop_arrays.cpp240 CopyPropagateArrays::BuildMemoryObjectFromLoad(Instruction* load_inst) { in BuildMemoryObjectFromLoad() argument
245 load_inst->GetSingleWordInOperand(kLoadPointerInOperand)); in BuildMemoryObjectFromLoad()
Dinstrument_pass.cpp251 Instruction* load_inst = builder->AddLoad(type_id, var_id); in GenVarLoad() local
252 return load_inst->result_id(); in GenVarLoad()
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/opt/
Dinterp_fixup_pass.cpp45 Instruction* load_inst = ctx->get_def_use_mgr()->GetDef(op1_id); in ReplaceInternalInterpolate() local
46 if (load_inst->opcode() != spv::Op::OpLoad) return false; in ReplaceInternalInterpolate()
48 Instruction* base_inst = load_inst->GetBaseAddress(); in ReplaceInternalInterpolate()
54 uint32_t ptr_id = load_inst->GetSingleWordInOperand(0); in ReplaceInternalInterpolate()
Dssa_rewrite_pass.cpp582 Instruction* load_inst = in ApplyReplacements() local
587 << load_inst->PrettyPrint( in ApplyReplacements()
598 pass_->context()->KillInst(load_inst); in ApplyReplacements()
Dcopy_prop_arrays.h192 Instruction* load_inst);
Dinterface_var_sroa.cpp649 Instruction* load_inst = load.get(); in CreateLoad() local
650 context()->get_def_use_mgr()->AnalyzeInstDefUse(load_inst); in CreateLoad()
652 return load_inst; in CreateLoad()
Dcopy_prop_arrays.cpp240 CopyPropagateArrays::BuildMemoryObjectFromLoad(Instruction* load_inst) { in BuildMemoryObjectFromLoad() argument
245 load_inst->GetSingleWordInOperand(kLoadPointerInOperand)); in BuildMemoryObjectFromLoad()
Dinstrument_pass.cpp220 Instruction* load_inst = builder->AddLoad(type_id, var_id); in GenVarLoad() local
221 return load_inst->result_id(); in GenVarLoad()
/external/python/cpython2/Lib/
Dpickle.py1072 def load_inst(self): member in Unpickler
1077 dispatch[INST] = load_inst
/external/python/cpython3/Lib/
Dpickle.py1497 def load_inst(self): member in _Unpickler
1502 dispatch[INST[0]] = load_inst
/external/python/cpython2/Modules/
DcPickle.c3939 load_inst(Unpicklerobject *self) in load_inst() function
4866 if (load_inst(self) < 0) in load()
/external/python/cpython3/Modules/
D_pickle.c5857 load_inst(UnpicklerObject *self) in load_inst() function
6911 OP(INST, load_inst) in load()