Home
last modified time | relevance | path

Searched refs:opcode_desc (Results 1 – 19 of 19) sorted by relevance

/third_party/mesa3d/src/intel/compiler/
Dbrw_isa_info.h33 struct opcode_desc;
39 const struct opcode_desc *ir_to_descs[NUM_BRW_OPCODES];
42 const struct opcode_desc *hw_to_descs[128];
48 struct opcode_desc { struct
57 const struct opcode_desc * argument
60 const struct opcode_desc *
72 const struct opcode_desc *desc = brw_opcode_desc_from_hw(isa, hw); in brw_opcode_decode()
79 const struct opcode_desc *desc = brw_opcode_desc(isa, opcode); in is_3src()
Dbrw_eu.c597 static const struct opcode_desc opcode_descs[] = {
735 const struct opcode_desc *
745 const struct opcode_desc *
Dbrw_eu_validate.c229 const struct opcode_desc *desc = in num_sources_from_inst()
677 const struct opcode_desc *desc = brw_opcode_desc(isa, opcode); in is_mixed_float()
735 const struct opcode_desc *desc = in general_restrictions_based_on_operand_types()
1020 const struct opcode_desc *desc = in general_restrictions_on_region_parameters()
1463 const struct opcode_desc *desc = in region_alignment_rules()
Dbrw_disasm.c822 const struct opcode_desc *desc = brw_opcode_desc(isa, id); in print_opcode()
1898 const struct opcode_desc *desc = brw_opcode_desc(isa, opcode); in brw_disassemble_inst()
/third_party/flutter/skia/third_party/externals/spirv-tools/source/
Dbinary.cpp295 spv_opcode_desc opcode_desc; in parseInstruction() local
296 if (grammar_.lookupOpcode(static_cast<SpvOp>(inst.opcode), &opcode_desc)) in parseInstruction()
312 for (auto i = 0; i < opcode_desc->numTypes; i++) in parseInstruction()
313 _.expected_operands.push_back(opcode_desc->operandTypes[opcode_desc->numTypes - i - 1]); in parseInstruction()
318 return diagnostic() << "Invalid instruction Op" << opcode_desc->name in parseInstruction()
338 << opcode_desc->name << " starting at word " in parseInstruction()
344 return diagnostic() << "Invalid word count: Op" << opcode_desc->name in parseInstruction()
Dvalidate_instruction.cpp130 spv_opcode_desc opcode_desc; in CapabilityCheck() local
132 if (SPV_SUCCESS == _.grammar().lookupOpcode(opcode, &opcode_desc) && in CapabilityCheck()
133 !_.HasAnyOfCapabilities(opcode_desc->capabilities)) in CapabilityCheck()
137 << ToString(opcode_desc->capabilities, _.grammar()); in CapabilityCheck()
Ddisassemble.cpp224 spv_opcode_desc opcode_desc; in EmitOperand() local
225 if (grammar_.lookupOpcode(SpvOp(word), &opcode_desc)) in EmitOperand()
228 stream_ << opcode_desc->name; in EmitOperand()
/third_party/mesa3d/src/broadcom/qpu/
Dqpu_pack.c451 struct opcode_desc { struct
468 static const struct opcode_desc add_ops[] = { argument
572 static const struct opcode_desc mul_ops[] = {
592 const struct opcode_desc *op_desc) in opcode_invalid_in_version()
598 static const struct opcode_desc *
600 const struct opcode_desc *opcodes, in lookup_opcode_from_packed()
605 const struct opcode_desc *op_desc = &opcodes[i]; in lookup_opcode_from_packed()
757 const struct opcode_desc *desc = in v3d_qpu_add_unpack()
903 const struct opcode_desc *desc = in v3d_qpu_mul_unpack()
967 static const struct opcode_desc *
[all …]
/third_party/skia/third_party/externals/spirv-tools/source/
Dbinary.cpp310 spv_opcode_desc opcode_desc; in parseInstruction() local
311 if (grammar_.lookupOpcode(static_cast<SpvOp>(inst.opcode), &opcode_desc)) in parseInstruction()
327 for (auto i = 0; i < opcode_desc->numTypes; i++) in parseInstruction()
329 opcode_desc->operandTypes[opcode_desc->numTypes - i - 1]); in parseInstruction()
334 return diagnostic() << "Invalid instruction Op" << opcode_desc->name in parseInstruction()
355 << opcode_desc->name << " starting at word " in parseInstruction()
361 return diagnostic() << "Invalid word count: Op" << opcode_desc->name in parseInstruction()
Ddisassemble.cpp271 spv_opcode_desc opcode_desc; in EmitOperand() local
272 if (grammar_.lookupOpcode(SpvOp(word), &opcode_desc)) in EmitOperand()
275 stream_ << opcode_desc->name; in EmitOperand()
/third_party/spirv-tools/source/
Dbinary.cpp310 spv_opcode_desc opcode_desc; in parseInstruction() local
311 if (grammar_.lookupOpcode(static_cast<SpvOp>(inst.opcode), &opcode_desc)) in parseInstruction()
327 for (auto i = 0; i < opcode_desc->numTypes; i++) in parseInstruction()
329 opcode_desc->operandTypes[opcode_desc->numTypes - i - 1]); in parseInstruction()
334 return diagnostic() << "Invalid instruction Op" << opcode_desc->name in parseInstruction()
355 << opcode_desc->name << " starting at word " in parseInstruction()
361 return diagnostic() << "Invalid word count: Op" << opcode_desc->name in parseInstruction()
Ddisassemble.cpp271 spv_opcode_desc opcode_desc; in EmitOperand() local
272 if (grammar_.lookupOpcode(SpvOp(word), &opcode_desc)) in EmitOperand()
275 stream_ << opcode_desc->name; in EmitOperand()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/
Dbinary.cpp310 spv_opcode_desc opcode_desc; in parseInstruction() local
311 if (grammar_.lookupOpcode(static_cast<SpvOp>(inst.opcode), &opcode_desc)) in parseInstruction()
327 for (auto i = 0; i < opcode_desc->numTypes; i++) in parseInstruction()
329 opcode_desc->operandTypes[opcode_desc->numTypes - i - 1]); in parseInstruction()
334 return diagnostic() << "Invalid instruction Op" << opcode_desc->name in parseInstruction()
355 << opcode_desc->name << " starting at word " in parseInstruction()
361 return diagnostic() << "Invalid word count: Op" << opcode_desc->name in parseInstruction()
Ddisassemble.cpp271 spv_opcode_desc opcode_desc; in EmitOperand() local
272 if (grammar_.lookupOpcode(SpvOp(word), &opcode_desc)) in EmitOperand()
275 stream_ << opcode_desc->name; in EmitOperand()
/third_party/spirv-tools/source/val/
Dvalidate_instruction.cpp81 spv_opcode_desc opcode_desc = {}; in EnablingCapabilitiesForOp() local
82 if (SPV_SUCCESS == state.grammar().lookupOpcode(opcode, &opcode_desc)) { in EnablingCapabilitiesForOp()
84 opcode_desc->capabilities, opcode_desc->numCapabilities); in EnablingCapabilitiesForOp()
/third_party/skia/third_party/externals/spirv-tools/source/val/
Dvalidate_instruction.cpp81 spv_opcode_desc opcode_desc = {}; in EnablingCapabilitiesForOp() local
82 if (SPV_SUCCESS == state.grammar().lookupOpcode(opcode, &opcode_desc)) { in EnablingCapabilitiesForOp()
84 opcode_desc->capabilities, opcode_desc->numCapabilities); in EnablingCapabilitiesForOp()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/
Dvalidate_instruction.cpp81 spv_opcode_desc opcode_desc = {}; in EnablingCapabilitiesForOp() local
82 if (SPV_SUCCESS == state.grammar().lookupOpcode(opcode, &opcode_desc)) { in EnablingCapabilitiesForOp()
84 opcode_desc->capabilities, opcode_desc->numCapabilities); in EnablingCapabilitiesForOp()
/third_party/flutter/skia/third_party/externals/spirv-tools/source/comp/
Dmarkv_codec.cpp1322 spv_opcode_desc opcode_desc; in DecodeInstruction() local
1323 if (grammar_.lookupOpcode(opcode, &opcode_desc) in DecodeInstruction()
1329 expected_operands.reserve(opcode_desc->numTypes); in DecodeInstruction()
1330 for (auto i = 0; i < opcode_desc->numTypes; i++) in DecodeInstruction()
1331 expected_operands.push_back(opcode_desc->operandTypes[opcode_desc->numTypes - i - 1]); in DecodeInstruction()
/third_party/mesa3d/docs/relnotes/
D22.2.0.rst3414 - intel/compiler: Move opcode_desc handling to a separate header