Symbol: __FPU_FPSCR
arch/powerpc/include/asm/sfp-machine.h
111
(__FPU_FPSCR >> 2) & 0x1f; \
arch/powerpc/include/asm/sfp-machine.h
135
(__FPU_FPSCR >> 3) & 0x1f; \
arch/powerpc/include/asm/sfp-machine.h
198
__FPU_FPSCR & 0x3; \
arch/powerpc/math-emu/fcmpo.c
37
__FPU_FPSCR &= ~(0x1f000);
arch/powerpc/math-emu/fcmpo.c
38
__FPU_FPSCR |= (cmp << 12);
arch/powerpc/math-emu/fcmpu.c
34
__FPU_FPSCR &= ~(0x1f000);
arch/powerpc/math-emu/fcmpu.c
35
__FPU_FPSCR |= (cmp << 12);
arch/powerpc/math-emu/fctiwz.c
18
fpscr = __FPU_FPSCR;
arch/powerpc/math-emu/fctiwz.c
19
__FPU_FPSCR &= ~(3);
arch/powerpc/math-emu/fctiwz.c
20
__FPU_FPSCR |= FP_RND_ZERO;
arch/powerpc/math-emu/fctiwz.c
26
__FPU_FPSCR = fpscr;
arch/powerpc/math-emu/math.c
172
fpscr = __FPU_FPSCR;
arch/powerpc/math-emu/math.c
220
__FPU_FPSCR = fpscr;
arch/powerpc/math-emu/math.c
439
regs->ccr |= (__FPU_FPSCR >> 4) & 0x0f000000;
arch/powerpc/math-emu/math_efp.c
207
__FPU_FPSCR = mfspr(SPRN_SPEFSCR);
arch/powerpc/math-emu/math_efp.c
209
pr_debug("speinsn:%08lx spefscr:%08lx\n", speinsn, __FPU_FPSCR);
arch/powerpc/math-emu/math_efp.c
679
__FPU_FPSCR
arch/powerpc/math-emu/math_efp.c
681
__FPU_FPSCR |= (FP_CUR_EXCEPTIONS & FP_EX_MASK);
arch/powerpc/math-emu/math_efp.c
682
mtspr(SPRN_SPEFSCR, __FPU_FPSCR);
arch/powerpc/math-emu/math_efp.c
683
current->thread.spefscr_last = __FPU_FPSCR;
arch/powerpc/math-emu/math_efp.c
690
FP_CUR_EXCEPTIONS, __FPU_FPSCR);
arch/powerpc/math-emu/math_efp.c
743
__FPU_FPSCR = mfspr(SPRN_SPEFSCR);
arch/powerpc/math-emu/math_efp.c
744
pr_debug("speinsn:%08lx spefscr:%08lx\n", speinsn, __FPU_FPSCR);
arch/powerpc/math-emu/math_efp.c
749
lo_inexact = __FPU_FPSCR & (SPEFSCR_FG | SPEFSCR_FX);
arch/powerpc/math-emu/math_efp.c
750
hi_inexact = __FPU_FPSCR & (SPEFSCR_FGH | SPEFSCR_FXH);
arch/powerpc/math-emu/mcrfs.c
22
value = (__FPU_FPSCR >> ((7 - crfS) << 2)) & 15;
arch/powerpc/math-emu/mcrfs.c
23
__FPU_FPSCR &= ~(clear);
arch/powerpc/math-emu/mffs.c
12
frD[1] = __FPU_FPSCR;
arch/powerpc/math-emu/mtfsb0.c
13
__FPU_FPSCR &= ~(1 << (31 - crbD));
arch/powerpc/math-emu/mtfsb0.c
16
printk("%s: %d %08lx\n", __func__, crbD, __FPU_FPSCR);
arch/powerpc/math-emu/mtfsb1.c
13
__FPU_FPSCR |= (1 << (31 - crbD));
arch/powerpc/math-emu/mtfsb1.c
16
printk("%s: %d %08lx\n", __func__, crbD, __FPU_FPSCR);
arch/powerpc/math-emu/mtfsf.c
30
fpscr = ((__FPU_FPSCR & ~mask) | (frB[1] & mask)) &
arch/powerpc/math-emu/mtfsf.c
45
__FPU_FPSCR = fpscr;
arch/powerpc/math-emu/mtfsf.c
48
printk("%s: %02x %p: %08lx\n", __func__, FM, frB, __FPU_FPSCR);
arch/powerpc/math-emu/mtfsfi.c
17
__FPU_FPSCR &= ~(mask << ((7 - crfD) << 2));
arch/powerpc/math-emu/mtfsfi.c
18
__FPU_FPSCR |= (IMM & 0xf) << ((7 - crfD) << 2);
arch/powerpc/math-emu/mtfsfi.c
21
printk("%s: %d %x: %08lx\n", __func__, crfD, IMM, __FPU_FPSCR);