Home
last modified time | relevance | path

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

/third_party/mesa3d/src/intel/compiler/
Dbrw_fs_lower_regioning.cpp561 fs_inst sub_inst = *inst; in lower_exec_type() local
566 sub_inst.src[i] = subscript(inst->src[i], raw_type, j); in lower_exec_type()
570 sub_inst.dst = subscript(tmp, raw_type, j); in lower_exec_type()
572 assert(sub_inst.size_written == sub_inst.dst.component_size(sub_inst.exec_size)); in lower_exec_type()
573 assert(!sub_inst.flags_written(v->devinfo) && !sub_inst.saturate); in lower_exec_type()
574 ibld.emit(sub_inst); in lower_exec_type()
/third_party/mesa3d/src/gallium/drivers/r300/compiler/
Dradeon_variable.c297 struct rc_pair_sub_instruction * sub_inst) in get_variable_pair_helper() argument
304 if (sub_inst->Opcode == RC_OPCODE_NOP) { in get_variable_pair_helper()
308 rc_get_readers_sub(c, inst, sub_inst, &reader_data, NULL, NULL, NULL); in get_variable_pair_helper()
314 if (sub_inst->WriteMask) { in get_variable_pair_helper()
316 writemask = sub_inst->WriteMask; in get_variable_pair_helper()
317 } else if (sub_inst->OutputWriteMask) { in get_variable_pair_helper()
319 writemask = sub_inst->OutputWriteMask; in get_variable_pair_helper()
324 new_var = rc_variable(c, file, sub_inst->DestIndex, writemask, in get_variable_pair_helper()
/third_party/skia/third_party/externals/spirv-tools/test/opt/
Dir_loader_test.cpp293 [&opcodes](spvtools::opt::Instruction* sub_inst) { in TEST() argument
294 opcodes.push_back(sub_inst->opcode()); in TEST()
340 [&opcodes](spvtools::opt::Instruction* sub_inst) { in TEST() argument
341 opcodes.push_back(sub_inst->opcode()); in TEST()
/third_party/spirv-tools/test/opt/
Dir_loader_test.cpp293 [&opcodes](spvtools::opt::Instruction* sub_inst) { in TEST() argument
294 opcodes.push_back(sub_inst->opcode()); in TEST()
340 [&opcodes](spvtools::opt::Instruction* sub_inst) { in TEST() argument
341 opcodes.push_back(sub_inst->opcode()); in TEST()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/opt/
Dir_loader_test.cpp293 [&opcodes](spvtools::opt::Instruction* sub_inst) { in TEST() argument
294 opcodes.push_back(sub_inst->opcode()); in TEST()
340 [&opcodes](spvtools::opt::Instruction* sub_inst) { in TEST() argument
341 opcodes.push_back(sub_inst->opcode()); in TEST()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
Dfolding_rules.cpp1327 Instruction* sub_inst = def_use_mgr->GetDef(sub); in MergeGenericAddendSub() local
1328 if (sub_inst->opcode() != SpvOpFSub && sub_inst->opcode() != SpvOpISub) in MergeGenericAddendSub()
1330 if (sub_inst->opcode() == SpvOpFSub && in MergeGenericAddendSub()
1331 !sub_inst->IsFloatingPointFoldingAllowed()) in MergeGenericAddendSub()
1333 if (addend != sub_inst->GetSingleWordInOperand(1)) return false; in MergeGenericAddendSub()
1336 {{SPV_OPERAND_TYPE_ID, {sub_inst->GetSingleWordInOperand(0)}}}); in MergeGenericAddendSub()
/third_party/skia/third_party/externals/spirv-tools/source/opt/
Dfolding_rules.cpp1327 Instruction* sub_inst = def_use_mgr->GetDef(sub); in MergeGenericAddendSub() local
1328 if (sub_inst->opcode() != SpvOpFSub && sub_inst->opcode() != SpvOpISub) in MergeGenericAddendSub()
1330 if (sub_inst->opcode() == SpvOpFSub && in MergeGenericAddendSub()
1331 !sub_inst->IsFloatingPointFoldingAllowed()) in MergeGenericAddendSub()
1333 if (addend != sub_inst->GetSingleWordInOperand(1)) return false; in MergeGenericAddendSub()
1336 {{SPV_OPERAND_TYPE_ID, {sub_inst->GetSingleWordInOperand(0)}}}); in MergeGenericAddendSub()
/third_party/spirv-tools/source/opt/
Dfolding_rules.cpp1335 Instruction* sub_inst = def_use_mgr->GetDef(sub); in MergeGenericAddendSub() local
1336 if (sub_inst->opcode() != SpvOpFSub && sub_inst->opcode() != SpvOpISub) in MergeGenericAddendSub()
1338 if (sub_inst->opcode() == SpvOpFSub && in MergeGenericAddendSub()
1339 !sub_inst->IsFloatingPointFoldingAllowed()) in MergeGenericAddendSub()
1341 if (addend != sub_inst->GetSingleWordInOperand(1)) return false; in MergeGenericAddendSub()
1344 {{SPV_OPERAND_TYPE_ID, {sub_inst->GetSingleWordInOperand(0)}}}); in MergeGenericAddendSub()
/third_party/rust/crates/bindgen/bindgen/ir/
Dcontext.rs1709 let sub_inst = TemplateInstantiation::new( in instantiate_template() localVariable
1716 TypeKind::TemplateInstantiation(sub_inst); in instantiate_template()