| /xsrc/external/mit/MesaLib/dist/src/asahi/compiler/ |
| H A D | agx_builder.h.py | 37 % for opcode in opcodes: 39 op = opcodes[opcode] 178 from agx_opcodes import opcodes 180 print(Template(template).render(opcodes=opcodes))
|
| H A D | agx_opcodes.c.py | 35 % for opcode in opcodes: 37 op = opcodes[opcode] 54 from agx_opcodes import opcodes 56 print(Template(template).render(opcodes=opcodes))
|
| H A D | agx_opcodes.h.py | 30 /* Listing of opcodes */ 33 % for op in opcodes: 80 from agx_opcodes import opcodes, immediates, enums 82 print(Template(template).render(opcodes=opcodes, immediates=immediates,
|
| /xsrc/external/mit/MesaLib/dist/src/compiler/nir/ |
| H A D | nir_opcodes_c.py | 26 from nir_opcodes import opcodes, type_sizes 106 % for name, opcode in sorted(opcodes.items()): 128 print(template.render(opcodes=opcodes, type_sizes=type_sizes))
|
| H A D | nir_opcodes_h.py | 30 <% opcode_names = sorted(opcodes.keys()) %> 42 from nir_opcodes import opcodes 45 print(Template(template).render(opcodes=opcodes))
|
| H A D | nir_builder_opcodes_h.py | 38 % for name, opcode in sorted(opcodes.items()): 154 from nir_opcodes import opcodes 158 print(Template(template).render(opcodes=opcodes, INTR_OPCODES=INTR_OPCODES))
|
| H A D | nir_constant_expressions.py | 2 from nir_opcodes import opcodes 457 % for name, op in sorted(opcodes.items()): 500 % for name in sorted(opcodes.keys()): 512 print(Template(template).render(opcodes=opcodes, type_sizes=type_sizes,
|
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/ |
| H A D | nir_opcodes_h.py | 32 <% opcode_names = sorted(opcodes.keys()) %> 44 from nir_opcodes import opcodes 47 print(Template(template).render(opcodes=opcodes))
|
| H A D | nir_builder_opcodes_h.py | 37 % for name, opcode in sorted(opcodes.items()): 96 from nir_opcodes import opcodes 100 print(Template(template).render(opcodes=opcodes, INTR_OPCODES=INTR_OPCODES))
|
| H A D | nir_opcodes_c.py | 28 from nir_opcodes import opcodes, type_sizes 108 % for name, opcode in sorted(opcodes.items()): 130 print(template.render(opcodes=opcodes, type_sizes=type_sizes))
|
| H A D | nir_constant_expressions.py | 4 from nir_opcodes import opcodes 384 % for name, op in sorted(opcodes.items()): 415 % for name in sorted(opcodes.keys()): 427 print(Template(template).render(opcodes=opcodes, type_sizes=type_sizes,
|
| /xsrc/external/mit/MesaLib/dist/src/amd/compiler/ |
| H A D | aco_builder_h.py | 606 from aco_opcodes import opcodes, Format 609 print(Template(template).render(opcodes=opcodes, Format=Format))
|
| H A D | aco_opcodes_cpp.py | 33 opcode_names = sorted(opcodes.keys()) 34 can_use_input_modifiers = "".join([opcodes[name].input_mod for name in reversed(opcode_names)]) 35 can_use_output_modifiers = "".join([opcodes[name].output_mod for name in reversed(opcode_names)]) 36 is_atomic = "".join([opcodes[name].is_atomic for name in reversed(opcode_names)]) 42 ${opcodes[name].opcode_gfx7}, 47 ${opcodes[name].opcode_gfx9}, 52 ${opcodes[name].opcode_gfx10}, 65 aco::Format::${str(opcodes[name].format.name)}, 70 ${opcodes[name].operand_size}, 75 (instr_class)${opcodes[nam [all...] |
| H A D | aco_opcodes_h.py | 33 <% opcode_names = sorted(opcodes.keys()) %> 45 from aco_opcodes import opcodes 48 print(Template(template).render(opcodes=opcodes))
|
| /xsrc/external/mit/MesaLib/dist/src/compiler/spirv/ |
| H A D | vtn_gather_types_c.py | 83 % for opcode in opcodes: 115 opcodes = list(find_result_types(spirv_info)) variable 119 f.write(TEMPLATE.render(opcodes=opcodes))
|
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/spirv/ |
| H A D | vtn_gather_types_c.py | 77 % for opcode in opcodes: 109 opcodes = list(find_result_types(spirv_info)) variable 113 f.write(TEMPLATE.render(opcodes=opcodes))
|
| /xsrc/external/mit/xf86-video-intel/dist/src/sna/ |
| H A D | kgem_debug.c | 138 } opcodes[] = { local in function:decode_mi 164 for (op = 0; op < ARRAY_SIZE(opcodes); op++) { 165 if ((data[0] & 0x1f800000) >> 23 == opcodes[op].opcode) { 168 kgem_debug_print(data, offset, 0, "%s\n", opcodes[op].name); 169 if (opcodes[op].max_len > 1) { 170 len = (data[0] & opcodes[op].len_mask) + 2; 171 if (len < opcodes[op].min_len || 172 len > opcodes[op].max_len) 175 len, opcodes[op].name, 176 opcodes[o 202 } opcodes[] = { local in function:__decode_2d 380 } opcodes[] = { local in function:__decode_2d_gen8 [all...] |
| H A D | kgem_debug_gen4.c | 425 } opcodes[] = { local in function:kgem_gen4_decode_3d 665 for (i = 0; i < ARRAY_SIZE(opcodes); i++) 666 if (op == opcodes[i].opcode) 669 assert(i < ARRAY_SIZE(opcodes)); 672 kgem_debug_print(data, offset, 0, "%s\n", opcodes[i].name); 673 if (opcodes[i].max_len > 1) { 675 assert(len >= opcodes[i].min_len && 676 len <= opcodes[i].max_len);
|
| H A D | kgem_debug_gen5.c | 399 } opcodes[] = { local in function:kgem_gen5_decode_3d 640 for (i = 0; i < ARRAY_SIZE(opcodes); i++) 641 if (op == opcodes[i].opcode) 644 assert(i < ARRAY_SIZE(opcodes)); 647 kgem_debug_print(data, offset, 0, "%s\n", opcodes[i].name); 648 if (opcodes[i].max_len > 1) { 650 assert(len >= opcodes[i].min_len && 651 len <= opcodes[i].max_len);
|
| /xsrc/external/mit/xf86-video-intel-2014/dist/src/sna/ |
| H A D | kgem_debug.c | 138 } opcodes[] = { local in function:decode_mi 164 for (op = 0; op < ARRAY_SIZE(opcodes); op++) { 165 if ((data[0] & 0x1f800000) >> 23 == opcodes[op].opcode) { 168 kgem_debug_print(data, offset, 0, "%s\n", opcodes[op].name); 169 if (opcodes[op].max_len > 1) { 170 len = (data[0] & opcodes[op].len_mask) + 2; 171 if (len < opcodes[op].min_len || 172 len > opcodes[op].max_len) 175 len, opcodes[op].name, 176 opcodes[o 202 } opcodes[] = { local in function:__decode_2d 380 } opcodes[] = { local in function:__decode_2d_gen8 [all...] |
| /xsrc/external/mit/xf86-video-mga/dist/util/ |
| H A D | stormdwg.c | 5 const char *opcodes[] = { variable in typeref:typename:const char * [] 111 printf("opcode: %s\n", opcodes[tmp]);
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i915/ |
| H A D | i915_debug_fp.c | 34 static const char *opcodes[0x20] = { variable in typeref:typename:const char * [0x20] 252 printf("%s ", opcodes[opcode]); 280 printf("%s ", opcodes[opcode]); 293 printf("%s ", opcodes[opcode]);
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i915/ |
| H A D | i915_debug_fp.c | 37 static const char *opcodes[0x20] = { variable in typeref:typename:const char * [0x20] 255 printf("%s ", opcodes[opcode]); 283 printf("%s ", opcodes[opcode]); 296 printf("%s ", opcodes[opcode]);
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/i915/ |
| H A D | i915_debug_fp.c | 49 static const char *opcodes[0x20] = { variable in typeref:typename:const char * [0x20] 268 PRINTF(stream, "%s ", opcodes[opcode]); 297 PRINTF(stream, "%s ", opcodes[opcode]); 325 PRINTF(stream, "%s ", opcodes[opcode]);
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/i915/ |
| H A D | i915_debug_fp.c | 37 static const char *opcodes[0x20] = { variable in typeref:typename:const char * [0x20] 202 PRINTF(stream, "%s ", opcodes[opcode]); 224 PRINTF(stream, "%s ", opcodes[opcode]); 248 PRINTF(stream, "%s ", opcodes[opcode]);
|