Lines Matching refs:arg2
395 int arg1, tcg_target_long arg2)
398 tcg_out_modrm_offset(s, 0x8b, ret, arg1, arg2); /* movl */
400 tcg_out_modrm_offset(s, 0x8b | P_REXW, ret, arg1, arg2); /* movq */
404 int arg1, tcg_target_long arg2)
407 tcg_out_modrm_offset(s, 0x89, arg, arg1, arg2); /* movl */
409 tcg_out_modrm_offset(s, 0x89 | P_REXW, arg, arg1, arg2); /* movq */
502 static void tcg_out_cmp(TCGContext *s, TCGArg arg1, TCGArg arg2,
506 if (arg2 == 0) {
511 tgen_arithi64(s, ARITH_CMP, arg1, arg2);
513 tgen_arithi32(s, ARITH_CMP, arg1, arg2);
517 tcg_out_modrm(s, 0x01 | (ARITH_CMP << 3) | rexw, arg2, arg1);
522 TCGArg arg1, TCGArg arg2, int const_arg2,
525 tcg_out_cmp(s, arg1, arg2, const_arg2, rexw);
530 TCGArg arg1, TCGArg arg2, int const_arg2, int rexw)
532 tcg_out_cmp(s, arg1, arg2, const_arg2, rexw);