Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/drivers/r300/compiler/
Dradeon_variable.c316 struct rc_pair_sub_instruction * sub_inst) in get_variable_pair_helper() argument
323 if (sub_inst->Opcode == RC_OPCODE_NOP) { in get_variable_pair_helper()
327 rc_get_readers_sub(c, inst, sub_inst, &reader_data, NULL, NULL, NULL); in get_variable_pair_helper()
333 if (sub_inst->WriteMask) { in get_variable_pair_helper()
335 writemask = sub_inst->WriteMask; in get_variable_pair_helper()
336 } else if (sub_inst->OutputWriteMask) { in get_variable_pair_helper()
338 writemask = sub_inst->OutputWriteMask; in get_variable_pair_helper()
343 new_var = rc_variable(c, file, sub_inst->DestIndex, writemask, in get_variable_pair_helper()
/external/angle/third_party/vulkan-deps/spirv-tools/src/test/opt/
Dir_loader_test.cpp277 [&opcodes](spvtools::opt::Instruction* sub_inst) { in TEST() argument
278 opcodes.push_back(sub_inst->opcode()); in TEST()
324 [&opcodes](spvtools::opt::Instruction* sub_inst) { in TEST() argument
325 opcodes.push_back(sub_inst->opcode()); in TEST()
/external/swiftshader/third_party/SPIRV-Tools/test/opt/
Dir_loader_test.cpp277 [&opcodes](spvtools::opt::Instruction* sub_inst) { in TEST() argument
278 opcodes.push_back(sub_inst->opcode()); in TEST()
324 [&opcodes](spvtools::opt::Instruction* sub_inst) { in TEST() argument
325 opcodes.push_back(sub_inst->opcode()); in TEST()
/external/deqp-deps/SPIRV-Tools/test/opt/
Dir_loader_test.cpp277 [&opcodes](spvtools::opt::Instruction* sub_inst) { in TEST() argument
278 opcodes.push_back(sub_inst->opcode()); in TEST()
324 [&opcodes](spvtools::opt::Instruction* sub_inst) { in TEST() argument
325 opcodes.push_back(sub_inst->opcode()); in TEST()
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dfolding_rules.cpp1286 Instruction* sub_inst = def_use_mgr->GetDef(sub); in MergeGenericAddendSub() local
1287 if (sub_inst->opcode() != SpvOpFSub && sub_inst->opcode() != SpvOpISub) in MergeGenericAddendSub()
1289 if (sub_inst->opcode() == SpvOpFSub && in MergeGenericAddendSub()
1290 !sub_inst->IsFloatingPointFoldingAllowed()) in MergeGenericAddendSub()
1292 if (addend != sub_inst->GetSingleWordInOperand(1)) return false; in MergeGenericAddendSub()
1295 {{SPV_OPERAND_TYPE_ID, {sub_inst->GetSingleWordInOperand(0)}}}); in MergeGenericAddendSub()
/external/deqp-deps/SPIRV-Tools/source/opt/
Dfolding_rules.cpp1286 Instruction* sub_inst = def_use_mgr->GetDef(sub); in MergeGenericAddendSub() local
1287 if (sub_inst->opcode() != SpvOpFSub && sub_inst->opcode() != SpvOpISub) in MergeGenericAddendSub()
1289 if (sub_inst->opcode() == SpvOpFSub && in MergeGenericAddendSub()
1290 !sub_inst->IsFloatingPointFoldingAllowed()) in MergeGenericAddendSub()
1292 if (addend != sub_inst->GetSingleWordInOperand(1)) return false; in MergeGenericAddendSub()
1295 {{SPV_OPERAND_TYPE_ID, {sub_inst->GetSingleWordInOperand(0)}}}); in MergeGenericAddendSub()
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/opt/
Dfolding_rules.cpp1339 Instruction* sub_inst = def_use_mgr->GetDef(sub); in MergeGenericAddendSub() local
1340 if (sub_inst->opcode() != SpvOpFSub && sub_inst->opcode() != SpvOpISub) in MergeGenericAddendSub()
1342 if (sub_inst->opcode() == SpvOpFSub && in MergeGenericAddendSub()
1343 !sub_inst->IsFloatingPointFoldingAllowed()) in MergeGenericAddendSub()
1345 if (addend != sub_inst->GetSingleWordInOperand(1)) return false; in MergeGenericAddendSub()
1348 {{SPV_OPERAND_TYPE_ID, {sub_inst->GetSingleWordInOperand(0)}}}); in MergeGenericAddendSub()
/external/rust/crates/bindgen/src/ir/
Dcontext.rs1686 let sub_inst = TemplateInstantiation::new( in instantiate_template() localVariable
1693 TypeKind::TemplateInstantiation(sub_inst); in instantiate_template()