Home
last modified time | relevance | path

Searched refs:mtbuf (Results 1 – 4 of 4) sorted by relevance

/external/mesa3d/src/amd/compiler/
Daco_print_ir.cpp521 const MTBUF_instruction* mtbuf = static_cast<const MTBUF_instruction*>(instr); in print_instr_format_specific() local
523 switch (mtbuf->dfmt) { in print_instr_format_specific()
541 switch (mtbuf->nfmt) { in print_instr_format_specific()
551 if (mtbuf->offset) in print_instr_format_specific()
552 fprintf(output, " offset:%u", mtbuf->offset); in print_instr_format_specific()
553 if (mtbuf->offen) in print_instr_format_specific()
555 if (mtbuf->idxen) in print_instr_format_specific()
557 if (mtbuf->glc) in print_instr_format_specific()
559 if (mtbuf->dlc) in print_instr_format_specific()
561 if (mtbuf->slc) in print_instr_format_specific()
[all …]
Daco_assembler.cpp393 MTBUF_instruction* mtbuf = static_cast<MTBUF_instruction*>(instr); in emit_instruction() local
395 uint32_t img_format = ac_get_tbuffer_format(ctx.chip_class, mtbuf->dfmt, mtbuf->nfmt); in emit_instruction()
398 assert(!mtbuf->dlc || ctx.chip_class >= GFX10); in emit_instruction()
399 encoding |= (mtbuf->dlc ? 1 : 0) << 15; /* DLC bit replaces one bit of the OPCODE on GFX10 */ in emit_instruction()
400 encoding |= (mtbuf->glc ? 1 : 0) << 14; in emit_instruction()
401 encoding |= (mtbuf->idxen ? 1 : 0) << 13; in emit_instruction()
402 encoding |= (mtbuf->offen ? 1 : 0) << 12; in emit_instruction()
403 encoding |= 0x0FFF & mtbuf->offset; in emit_instruction()
416 encoding |= (mtbuf->tfe ? 1 : 0) << 23; in emit_instruction()
417 encoding |= (mtbuf->slc ? 1 : 0) << 22; in emit_instruction()
Daco_insert_exec_mask.cpp140 MTBUF_instruction *mtbuf = static_cast<MTBUF_instruction *>(instr.get()); in needs_exact() local
141 return mtbuf->disable_wqm; in needs_exact()
Daco_instruction_selection.cpp4807 bld.mtbuf(opcode, in visit_load_input()
7102 …aco_ptr<MTBUF_instruction> mtbuf{create_instruction<MTBUF_instruction>(aco_opcode::tbuffer_store_f… in visit_emit_vertex_with_counter() local
7103 mtbuf->operands[0] = Operand(gsvs_ring); in visit_emit_vertex_with_counter()
7104 mtbuf->operands[1] = vaddr_offset; in visit_emit_vertex_with_counter()
7105 mtbuf->operands[2] = Operand(get_arg(ctx, ctx->args->gs2vs_offset)); in visit_emit_vertex_with_counter()
7106 mtbuf->operands[3] = Operand(ctx->outputs.temps[i * 4u + j]); in visit_emit_vertex_with_counter()
7107 mtbuf->offen = !vaddr_offset.isUndefined(); in visit_emit_vertex_with_counter()
7108 mtbuf->dfmt = V_008F0C_BUF_DATA_FORMAT_32; in visit_emit_vertex_with_counter()
7109 mtbuf->nfmt = V_008F0C_BUF_NUM_FORMAT_UINT; in visit_emit_vertex_with_counter()
7110 mtbuf->offset = const_offset; in visit_emit_vertex_with_counter()
[all …]