/external/igt-gpu-tools/assembler/ |
D | brw_context.h | 64 struct opcode_desc { struct 70 extern const struct opcode_desc opcode_descs[128]; argument
|
D | brw_disasm.c | 34 const struct opcode_desc opcode_descs[128] = { 89 static const struct opcode_desc *opcode = opcode_descs;
|
D | gen8_disasm.c | 34 static const struct opcode_desc *m_opcode = opcode_descs;
|
/external/mesa3d/src/intel/compiler/ |
D | brw_eu.cpp | 591 static const struct opcode_desc opcode_descs[] = { 709 static const opcode_desc * 711 const opcode_desc **index_descs, in lookup_opcode_desc() 713 unsigned opcode_desc::*key, in lookup_opcode_desc() 742 const struct opcode_desc * 746 static __thread const opcode_desc *index_descs[NUM_BRW_OPCODES]; in brw_opcode_desc() 748 &opcode_desc::ir, devinfo, opcode); in brw_opcode_desc() 755 const struct opcode_desc * 759 static __thread const opcode_desc *index_descs[128]; in brw_opcode_desc_from_hw() 761 &opcode_desc::hw, devinfo, hw); in brw_opcode_desc_from_hw()
|
D | brw_eu.h | 1373 struct opcode_desc { struct 1382 const struct opcode_desc * argument 1385 const struct opcode_desc * 1397 const struct opcode_desc *desc = brw_opcode_desc_from_hw(devinfo, hw); in brw_opcode_decode() 1417 const struct opcode_desc *desc = brw_opcode_desc(devinfo, opcode); in is_3src()
|
D | brw_eu_validate.c | 220 const struct opcode_desc *desc = in num_sources_from_inst() 639 const struct opcode_desc *desc = brw_opcode_desc(devinfo, opcode); in is_mixed_float() 693 const struct opcode_desc *desc = in general_restrictions_based_on_operand_types() 925 const struct opcode_desc *desc = in general_restrictions_on_region_parameters() 1365 const struct opcode_desc *desc = in region_alignment_rules()
|
D | brw_disasm.c | 677 const struct opcode_desc *desc = brw_opcode_desc(devinfo, id); in print_opcode() 1687 const struct opcode_desc *desc = brw_opcode_desc(devinfo, opcode); in brw_disassemble_inst()
|
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/ |
D | binary.cpp | 310 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()
|
D | disassemble.cpp | 271 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()
|
/external/deqp-deps/SPIRV-Tools/source/ |
D | binary.cpp | 310 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()
|
D | disassemble.cpp | 271 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()
|
/external/swiftshader/third_party/SPIRV-Tools/source/ |
D | binary.cpp | 310 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()
|
D | disassemble.cpp | 271 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()
|
/external/mesa3d/src/broadcom/qpu/ |
D | qpu_pack.c | 453 struct opcode_desc { struct 463 static const struct opcode_desc add_ops[] = { argument 565 static const struct opcode_desc mul_ops[] = { 579 static const struct opcode_desc * 580 lookup_opcode(const struct opcode_desc *opcodes, size_t num_opcodes, in lookup_opcode() 584 const struct opcode_desc *op_desc = &opcodes[i]; in lookup_opcode() 733 const struct opcode_desc *desc = in v3d_qpu_add_unpack() 878 const struct opcode_desc *desc = in v3d_qpu_mul_unpack() 949 const struct opcode_desc *desc; in v3d_qpu_add_pack() 1165 const struct opcode_desc *desc; in v3d_qpu_mul_pack()
|
/external/swiftshader/third_party/SPIRV-Tools/source/val/ |
D | validate_instruction.cpp | 81 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()
|
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/val/ |
D | validate_instruction.cpp | 81 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()
|
/external/deqp-deps/SPIRV-Tools/source/val/ |
D | validate_instruction.cpp | 81 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()
|