Searched refs:reg_file (Results 1 – 6 of 6) sorted by relevance
/external/mesa3d/src/amd/compiler/ |
D | aco_register_allocation.cpp | 255 void print_regs(ra_ctx& ctx, bool vgprs, RegisterFile& reg_file) 275 if (reg_file[i] == 0xFFFF) { 277 } else if (reg_file[i]) { 278 if (reg_file[i] != prev) { 279 prev = reg_file[i]; 296 if (reg_file[i] != prev) { 301 prev = reg_file[i]; 303 … if (ctx.orig_names.count(reg_file[i]) && ctx.orig_names[reg_file[i]].id() != reg_file[i]) 304 …printf("%%%u (was %%%d) = %c[%d", reg_file[i], ctx.orig_names[reg_file[i]].id(), reg_char, i - lb); 306 printf("%%%u = %c[%d", reg_file[i], reg_char, i - lb); [all …]
|
/external/igt-gpu-tools/assembler/ |
D | gen8_disasm.c | 335 reg(FILE *file, unsigned reg_file, unsigned _reg_nr) in reg() argument 339 if (reg_file == BRW_ARCHITECTURE_REGISTER_FILE) { in reg() 377 err |= control(file, "src reg file", m_reg_file, reg_file, NULL); in reg() 424 uint32_t reg_file; 427 reg_file = BRW_MESSAGE_REGISTER_FILE; 429 reg_file = BRW_GENERAL_REGISTER_FILE; 431 err |= reg(file, reg_file, inst->bits1.da3src.dest_reg_nr); 460 src_da1(FILE *file, unsigned type, unsigned reg_file, in src_da1() argument 468 err |= reg(file, reg_file, reg_num); in src_da1() 481 unsigned reg_file, in src_da16() argument [all …]
|
D | brw_disasm.c | 254 static const char * const reg_file[4] = { variable 507 err |= control (file, "src reg file", reg_file, _reg_file, NULL); in reg() 570 uint32_t reg_file; in dest_3src() local 573 reg_file = BRW_MESSAGE_REGISTER_FILE; in dest_3src() 575 reg_file = BRW_GENERAL_REGISTER_FILE; in dest_3src() 577 err |= reg (file, reg_file, inst->bits1.da3src.dest_reg_nr); in dest_3src()
|
/external/mesa3d/src/intel/compiler/ |
D | brw_disasm.c | 260 static const char *const reg_file[4] = { variable 742 err |= control(file, "src reg file", reg_file, _reg_file, NULL); in reg() 833 uint32_t reg_file; in dest_3src() local 841 reg_file = BRW_MESSAGE_REGISTER_FILE; in dest_3src() 843 reg_file = brw_inst_3src_a1_dst_reg_file(devinfo, inst); in dest_3src() 845 reg_file = BRW_ARCHITECTURE_REGISTER_FILE; in dest_3src() 847 reg_file = BRW_GENERAL_REGISTER_FILE; in dest_3src() 849 err |= reg(file, reg_file, brw_inst_3src_dst_reg_nr(devinfo, inst)); in dest_3src()
|
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
D | lp_bld_tgsi_soa.c | 673 unsigned reg_file, unsigned reg_index, in get_indirect_index() argument 686 assert(bld->indirect_files & (1 << reg_file)); in get_indirect_index() 721 if (reg_file != TGSI_FILE_CONSTANT) { in get_indirect_index()
|
/external/mesa3d/docs/relnotes/ |
D | 20.1.0.rst | 1204 - aco: remove unnecessary reg_file.fill() operation in 1245 - aco: make some reg_file helpers private and fix their uses
|