Lines Matching defs:arg2
634 int arg1, tcg_target_long arg2)
637 tcg_out_modrm_offset(s, opc, ret, arg1, arg2);
641 int arg1, tcg_target_long arg2)
644 tcg_out_modrm_offset(s, opc, arg, arg1, arg2);
840 static void tcg_out_cmp(TCGContext *s, TCGArg arg1, TCGArg arg2,
844 if (arg2 == 0) {
848 tgen_arithi(s, ARITH_CMP + rexw, arg1, arg2, 0);
851 tgen_arithr(s, ARITH_CMP + rexw, arg1, arg2);
856 TCGArg arg1, TCGArg arg2, int const_arg2,
859 tcg_out_cmp(s, arg1, arg2, const_arg2, 0);
865 TCGArg arg1, TCGArg arg2, int const_arg2,
868 tcg_out_cmp(s, arg1, arg2, const_arg2, P_REXW);
956 TCGArg arg1, TCGArg arg2, int const_arg2)
958 tcg_out_cmp(s, arg1, arg2, const_arg2, 0);
965 TCGArg arg1, TCGArg arg2, int const_arg2)
967 tcg_out_cmp(s, arg1, arg2, const_arg2, P_REXW);