Searched refs:fetch_opcode (Results 1 – 3 of 3) sorted by relevance
411 unsigned fetch_opcode = dw0 & 0x1F; in decode_fetch() local413 if (fetch_opcode == 2) { // MEM_INST_MEM in decode_fetch()417 fetch_opcode = mem_op == 0 ? FETCH_OP_READ_SCRATCH : FETCH_OP_READ_MEM; in decode_fetch()421 fetch_opcode = FETCH_OP_GDS_ADD_RET + gds_op; in decode_fetch()423 fetch_opcode = FETCH_OP_GDS_ADD + gds_op; in decode_fetch()425 fetch_opcode = FETCH_OP_TF_WRITE; in decode_fetch()426 bc.set_op(fetch_opcode); in decode_fetch()428 bc.set_op(r600_isa_fetch_by_opcode(ctx.isa, fetch_opcode)); in decode_fetch()
514 .TEX_INST(ctx.fetch_opcode(bc.op)); in build_fetch_tex()524 .TEX_INST(ctx.fetch_opcode(bc.op)); in build_fetch_tex()536 .TEX_INST(ctx.fetch_opcode(bc.op)); in build_fetch_tex()568 unsigned gds_op = (ctx.fetch_opcode(bc.op) >> 8) & 0x3f; in build_fetch_gds()620 .VC_INST(ctx.fetch_opcode(bc.op)); in build_fetch_vtx()634 .VC_INST(ctx.fetch_opcode(bc.op)); in build_fetch_vtx()
768 unsigned fetch_opcode(unsigned op) { in fetch_opcode() function