Home | History | Annotate | Download | only in arm64

Lines Matching refs:nzcv

87     case NZCV:
410 nzcv_ = SimSystemRegister::DefaultValueFor(NZCV);
902 nzcv().SetN(CalcNFlag(result));
903 nzcv().SetZ(CalcZFlag(result));
907 nzcv().SetC((left > max_uint_2op) || ((max_uint_2op - left) < right));
915 nzcv().SetV((left_sign == right_sign) && (left_sign != result_sign));
917 LogSystemRegister(NZCV);
938 nzcv().C());
1035 nzcv().SetRawValue(FPUnorderedFlag);
1037 nzcv().SetRawValue(FPLessThanFlag);
1039 nzcv().SetRawValue(FPGreaterThanFlag);
1041 nzcv().SetRawValue(FPEqualFlag);
1045 LogSystemRegister(NZCV);
1113 PrintSystemRegister(NZCV);
1181 case NZCV:
1184 nzcv().N(), nzcv().Z(), nzcv().C(), nzcv().V(),
1539 nzcv().SetN(CalcNFlag(result));
1540 nzcv().SetZ(CalcZFlag(result));
1541 nzcv().SetC(0);
1542 nzcv().SetV(0);
1543 LogSystemRegister(NZCV);
1585 // If the condition fails, set the status flags to the nzcv immediate.
1586 nzcv().SetFlags(instr->Nzcv());
1587 LogSystemRegister(NZCV);
2458 // If the condition fails, set the status flags to the nzcv immediate.
2459 nzcv().SetFlags(instr->Nzcv());
2460 LogSystemRegister(NZCV);
3248 case NZCV: set_xreg(instr->Rt(), nzcv().RawValue()); break;
3256 case NZCV:
3257 nzcv().SetRawValue(wreg(instr->Rt()));
3258 LogSystemRegister(NZCV);
3643 " Print all system registers (including NZCV).\n");