Home | History | Annotate | Download | only in a64

Lines Matching refs:NZCV

51     case NZCV:
97 nzcv_ = SimSystemRegister::DefaultValueFor(NZCV);
286 nzcv().SetN(N);
287 nzcv().SetZ(Z);
288 nzcv().SetC(C);
289 nzcv().SetV(V);
380 nzcv().SetRawValue(FPUnorderedFlag);
382 nzcv().SetRawValue(FPLessThanFlag);
384 nzcv().SetRawValue(FPGreaterThanFlag);
386 nzcv().SetRawValue(FPEqualFlag);
397 if (print_all || first_run || (last_nzcv.RawValue() != nzcv().RawValue())) {
404 last_nzcv = nzcv();
700 nzcv().SetN(CalcNFlag(result, reg_size));
701 nzcv().SetZ(CalcZFlag(result));
702 nzcv().SetC(0);
703 nzcv().SetV(0);
735 // If the condition fails, set the status flags to the nzcv immediate.
736 nzcv().SetFlags(instr->Nzcv());
1551 // If the condition fails, set the status flags to the nzcv immediate.
1552 nzcv().SetFlags(instr->Nzcv());
2340 case NZCV: set_xreg(instr->Rt(), nzcv().RawValue()); break;
2348 case NZCV: nzcv().SetRawValue(xreg(instr->Rt())); break;