Home
last modified time | relevance | path

Searched refs:fetch_opcode (Results 1 – 3 of 3) sorted by relevance

/external/mesa3d/src/gallium/drivers/r600/sb/
Dsb_bc_decoder.cpp411 unsigned fetch_opcode = dw0 & 0x1F; in decode_fetch() local
413 if (fetch_opcode == 2) { // MEM_INST_MEM in decode_fetch()
418 fetch_opcode = FETCH_OP_GDS_ADD + gds_op; in decode_fetch()
420 fetch_opcode = FETCH_OP_TF_WRITE; in decode_fetch()
421 bc.set_op(fetch_opcode); in decode_fetch()
423 bc.set_op(r600_isa_fetch_by_opcode(ctx.isa, fetch_opcode)); in decode_fetch()
Dsb_bc_builder.cpp510 .TEX_INST(ctx.fetch_opcode(bc.op)); in build_fetch_tex()
520 .TEX_INST(ctx.fetch_opcode(bc.op)); in build_fetch_tex()
532 .TEX_INST(ctx.fetch_opcode(bc.op)); in build_fetch_tex()
576 .VC_INST(ctx.fetch_opcode(bc.op)); in build_fetch_vtx()
590 .VC_INST(ctx.fetch_opcode(bc.op)); in build_fetch_vtx()
Dsb_bc.h711 unsigned fetch_opcode(unsigned op) { in fetch_opcode() function