Lines Matching refs:arg1
927 static void tcg_out_ld (TCGContext *s, TCGType type, int ret, int arg1,
931 tcg_out_ldst (s, ret, arg1, arg2, LWZ, LWZX);
933 tcg_out_ldsta (s, ret, arg1, arg2, LD, LDX);
936 static void tcg_out_st (TCGContext *s, TCGType type, int arg, int arg1,
940 tcg_out_ldst (s, arg, arg1, arg2, STW, STWX);
942 tcg_out_ldsta (s, arg, arg1, arg2, STD, STDX);
976 static void tcg_out_cmp (TCGContext *s, int cond, TCGArg arg1, TCGArg arg2,
1037 tcg_out32 (s, op | RA (arg1) | (arg2 & 0xffff));
1041 tcg_out32 (s, op | RA (arg1) | RB (0));
1044 tcg_out32 (s, op | RA (arg1) | RB (arg2));
1050 TCGArg arg0, TCGArg arg1, TCGArg arg2,
1059 arg = arg1;
1064 tcg_out32 (s, XORI | RS (arg1) | RA (0) | arg2);
1068 tcg_out32 (s, XOR | SAB (arg1, 0, 0));
1074 tcg_out32 (s, XOR | SAB (arg1, 0, arg2));
1097 arg = arg1;
1102 tcg_out32 (s, XORI | RS (arg1) | RA (0) | arg2);
1106 tcg_out32 (s, XOR | SAB (arg1, 0, 0));
1112 tcg_out32 (s, XOR | SAB (arg1, 0, arg2));
1115 if (arg == arg1 && arg1 == arg0) {
1148 tcg_out_cmp (s, cond, arg1, arg2, const_arg2, 7, type == TCG_TYPE_I64);
1182 TCGArg arg1, TCGArg arg2, int const_arg2,
1185 tcg_out_cmp (s, cond, arg1, arg2, const_arg2, 7, arch64);