Lines Matching full:psr
3489 /* Return the mask of PSR bits set by a MSR instruction. */
3522 /* Returns nonzero if access to the PSR is not permitted. Marks t0 as dead. */
3544 /* Returns nonzero if access to the PSR is not permitted. */
6706 /* PSR = reg */
6712 /* reg = PSR */
9860 uint32_t psr;
9869 psr = cpsr_read(env);
9870 cpu_fprintf(f, "PSR=%08x %c%c%c%c %c %s%d\n",
9871 psr,
9872 psr & (1 << 31) ? 'N' : '-',
9873 psr & (1 << 30) ? 'Z' : '-',
9874 psr & (1 << 29) ? 'C' : '-',
9875 psr & (1 << 28) ? 'V' : '-',
9876 psr & CPSR_T ? 'T' : 'A',
9877 cpu_mode_names[psr & 0xf], (psr & 0x10) ? 32 : 26);