Lines Matching refs:tmpflags
923 static void tcg_out_setcond_end(TCGContext *s, TCGReg ret, int tmpflags)
925 if (tmpflags != ret) {
926 TCGReg tmp = tmpflags & ~SETCOND_FLAGS;
928 switch (tmpflags & SETCOND_FLAGS) {
950 int tmpflags = tcg_out_setcond_int(s, cond, ret, arg1, arg2);
951 tcg_out_setcond_end(s, ret, tmpflags);
988 int tmpflags = tcg_out_setcond_int(s, cond, TCG_TMP0, arg1, arg2);
991 arg1 = tmpflags & ~SETCOND_FLAGS;
992 b_opc = tmpflags & SETCOND_INV ? OPC_BEQ : OPC_BNE;
1030 int tmpflags = tcg_out_setcond2_int(s, cond, ret, al, ah, bl, bh);
1031 tcg_out_setcond_end(s, ret, tmpflags);
1037 int tmpflags = tcg_out_setcond2_int(s, cond, TCG_TMP0, al, ah, bl, bh);
1038 TCGReg tmp = tmpflags & ~SETCOND_FLAGS;
1039 MIPSInsn b_opc = tmpflags & SETCOND_INV ? OPC_BEQ : OPC_BNE;
1049 int tmpflags;
1059 tmpflags = tcg_out_setcond_int(s, cond, TCG_TMP0, c1, c2);
1060 c1 = tmpflags & ~SETCOND_FLAGS;
1061 eqz = tmpflags & SETCOND_INV;