Searched refs:dlc (Results 1 - 7 of 7) sorted by relevance

/xsrc/external/mit/MesaLib/dist/src/amd/compiler/
H A Daco_opt_value_numbering.cpp207 return aS.sync == bS.sync && aS.glc == bS.glc && aS.dlc == bS.dlc && aS.nv == bS.nv &&
248 aM.glc == bM.glc && aM.dlc == bM.dlc && aM.slc == bM.slc && aM.tfe == bM.tfe &&
255 aM.idxen == bM.idxen && aM.glc == bM.glc && aM.dlc == bM.dlc && aM.slc == bM.slc &&
H A Daco_assembler.cpp211 assert(!smem.dlc); /* Device-level coherent is not supported on GFX9 and lower */
216 encoding |= smem.dlc ? 1 << 14 : 0;
392 assert(!mubuf.dlc); /* Device-level coherent is not supported on GFX9 and lower */
395 encoding |= (mubuf.dlc ? 1 : 0) << 15;
419 assert(!mtbuf.dlc || ctx.chip_class >= GFX10);
420 encoding |= (mtbuf.dlc ? 1 : 0) << 15; /* DLC bit replaces one bit of the OPCODE on GFX10 */
466 assert(!mimg.dlc); /* Device-level coherent is not supported on GFX9 and lower */
475 encoding |= mimg.dlc ? 1 << 7 : 0;
533 encoding |= flat.dlc ? 1 << 12 : 0;
535 assert(!flat.dlc);
[all...]
H A Daco_print_ir.cpp341 if (smem.dlc)
342 fprintf(output, " dlc");
376 if (mubuf.dlc)
377 fprintf(output, " dlc");
411 if (mimg.dlc)
412 fprintf(output, " dlc");
486 if (flat.dlc)
487 fprintf(output, " dlc");
538 if (mtbuf.dlc)
539 fprintf(output, " dlc");
[all...]
H A Daco_ir.h1363 bool dlc : 1; /* NAVI: device level coherent */ member in struct:aco::SMEM_instruction
1528 bool dlc : 1; /* NAVI: device level coherent */ member in struct:aco::MUBUF_instruction
1556 uint16_t dlc : 1; /* NAVI: device level coherent */ member in struct:aco::MTBUF_instruction
1580 bool dlc : 1; /* NAVI: device level coherent */ member in struct:aco::MIMG_instruction
1607 bool dlc : 1; /* NAVI: device level coherent */ member in struct:aco::FLAT_instruction
H A Daco_instruction_selection.cpp4021 load->dlc = info.glc && bld.program->chip_class >= GFX10;
4069 mubuf->dlc = info.glc && bld.program->chip_class >= GFX10;
4144 mubuf->dlc = false;
4159 flat->dlc = info.glc && bld.program->chip_class >= GFX10;
4571 /* dlc*/ false, /* slc */ slc);
6177 load->dlc = load->glc && ctx->options->chip_class >= GFX10;
6193 load->dlc = load->glc && ctx->options->chip_class >= GFX10;
6254 store->dlc = false;
6274 store->dlc = false;
6388 mubuf->dlc
[all...]
H A Daco_optimizer.cpp1213 new_instr->dlc = smem.dlc;
/xsrc/external/mit/MesaLib/dist/docs/relnotes/
H A D20.0.0.rst2790 - aco: set dlc/glc correctly for image loads

Completed in 33 milliseconds