Lines Matching refs:operands
413 print_opc_default(struct opc_operands *operands) in print_opc_default() argument
415 print_dst(operands->dst, true); in print_opc_default()
416 print_src(operands->src0, true); in print_opc_default()
417 print_src(operands->src1, true); in print_opc_default()
418 print_src(operands->src2, false); in print_opc_default()
422 print_opc_mov(struct opc_operands *operands) in print_opc_mov() argument
425 printf("a%u", operands->dst->reg); in print_opc_mov()
426 print_components(operands->dst->comps); in print_opc_mov()
429 print_src(operands->src0, true); in print_opc_mov()
430 print_src(operands->src1, true); in print_opc_mov()
431 print_src(operands->src2, false); in print_opc_mov()
435 print_opc_tex(struct opc_operands *operands) in print_opc_tex() argument
437 print_dst(operands->dst, true); in print_opc_tex()
438 print_tex(operands->tex, true); in print_opc_tex()
439 print_src(operands->src0, true); in print_opc_tex()
440 print_src(operands->src1, true); in print_opc_tex()
441 print_src(operands->src2, false); in print_opc_tex()
445 print_opc_imm(struct opc_operands *operands) in print_opc_imm() argument
447 print_dst(operands->dst, true); in print_opc_imm()
448 print_src(operands->src0, true); in print_opc_imm()
449 print_src(operands->src1, true); in print_opc_imm()
450 printf("label_%04d", operands->imm); in print_opc_imm()
457 void (*print)(struct opc_operands *operands);
579 struct opc_operands operands = { in print_instr() local
596 opcs[opc].print(&operands); in print_instr()