Symbol: Fpustatus_register
arch/parisc/math-emu/float.h
488
#define Rounding_mode() Roundingmode(Fpustatus_register)
arch/parisc/math-emu/float.h
490
(Roundingmode(Fpustatus_register) == rmode)
arch/parisc/math-emu/float.h
492
Bitfield_deposit(value,21,2,Fpustatus_register)
arch/parisc/math-emu/float.h
495
#define Is_invalidtrap_enabled() Invalidtrap(Fpustatus_register)
arch/parisc/math-emu/float.h
496
#define Is_divisionbyzerotrap_enabled() Divisionbyzerotrap(Fpustatus_register)
arch/parisc/math-emu/float.h
497
#define Is_overflowtrap_enabled() Overflowtrap(Fpustatus_register)
arch/parisc/math-emu/float.h
498
#define Is_underflowtrap_enabled() Underflowtrap(Fpustatus_register)
arch/parisc/math-emu/float.h
499
#define Is_inexacttrap_enabled() Inexacttrap(Fpustatus_register)
arch/parisc/math-emu/float.h
502
#define Set_invalidflag() Bitfield_deposit(1,0,1,Fpustatus_register)
arch/parisc/math-emu/float.h
503
#define Set_divisionbyzeroflag() Bitfield_deposit(1,1,1,Fpustatus_register)
arch/parisc/math-emu/float.h
504
#define Set_overflowflag() Bitfield_deposit(1,2,1,Fpustatus_register)
arch/parisc/math-emu/float.h
505
#define Set_underflowflag() Bitfield_deposit(1,3,1,Fpustatus_register)
arch/parisc/math-emu/float.h
506
#define Set_inexactflag() Bitfield_deposit(1,4,1,Fpustatus_register)
arch/parisc/math-emu/float.h
508
#define Clear_all_flags() Bitfield_deposit(0,0,5,Fpustatus_register)
arch/parisc/math-emu/float.h
511
#define Set_tbit() Bitfield_deposit(1,25,1,Fpustatus_register)
arch/parisc/math-emu/float.h
512
#define Clear_tbit() Bitfield_deposit(0,25,1,Fpustatus_register)
arch/parisc/math-emu/float.h
513
#define Is_tbit_set() Tbit(Fpustatus_register)
arch/parisc/math-emu/float.h
514
#define Is_cbit_set() Cbit(Fpustatus_register)
arch/parisc/math-emu/float.h
517
Bitfield_deposit(value,5,1,Fpustatus_register)