Symbol: Fpustatus_register
sys/arch/hppa/spmath/float.h
417
#define Rounding_mode() Roundingmode(Fpustatus_register)
sys/arch/hppa/spmath/float.h
419
(Roundingmode(Fpustatus_register) == rmode)
sys/arch/hppa/spmath/float.h
421
Bitfield_deposit(value,21,2,Fpustatus_register)
sys/arch/hppa/spmath/float.h
424
#define Is_invalidtrap_enabled() Invalidtrap(Fpustatus_register)
sys/arch/hppa/spmath/float.h
425
#define Is_divisionbyzerotrap_enabled() Divisionbyzerotrap(Fpustatus_register)
sys/arch/hppa/spmath/float.h
426
#define Is_overflowtrap_enabled() Overflowtrap(Fpustatus_register)
sys/arch/hppa/spmath/float.h
427
#define Is_underflowtrap_enabled() Underflowtrap(Fpustatus_register)
sys/arch/hppa/spmath/float.h
428
#define Is_inexacttrap_enabled() Inexacttrap(Fpustatus_register)
sys/arch/hppa/spmath/float.h
431
#define Set_invalidflag() Bitfield_deposit(1,0,1,Fpustatus_register)
sys/arch/hppa/spmath/float.h
432
#define Set_divisionbyzeroflag() Bitfield_deposit(1,1,1,Fpustatus_register)
sys/arch/hppa/spmath/float.h
433
#define Set_overflowflag() Bitfield_deposit(1,2,1,Fpustatus_register)
sys/arch/hppa/spmath/float.h
434
#define Set_underflowflag() Bitfield_deposit(1,3,1,Fpustatus_register)
sys/arch/hppa/spmath/float.h
435
#define Set_inexactflag() Bitfield_deposit(1,4,1,Fpustatus_register)
sys/arch/hppa/spmath/float.h
437
#define Clear_all_flags() Bitfield_deposit(0,0,5,Fpustatus_register)
sys/arch/hppa/spmath/float.h
440
#define Set_tbit() Bitfield_deposit(1,25,1,Fpustatus_register)
sys/arch/hppa/spmath/float.h
441
#define Clear_tbit() Bitfield_deposit(0,25,1,Fpustatus_register)
sys/arch/hppa/spmath/float.h
442
#define Is_tbit_set() Tbit(Fpustatus_register)
sys/arch/hppa/spmath/float.h
443
#define Is_cbit_set() Cbit(Fpustatus_register)
sys/arch/hppa/spmath/float.h
447
Bitfield_deposit(Bitfield_extract(10,10,Fpustatus_register),11,10,Fpustatus_register); \
sys/arch/hppa/spmath/float.h
448
Bitfield_deposit(Bitfield_extract(5,1,Fpustatus_register),10,1,Fpustatus_register); \
sys/arch/hppa/spmath/float.h
449
Bitfield_deposit(value,5,1,Fpustatus_register)
sys/arch/hppa/spmath/float.h
451
#define Set_status_cbit(value) Bitfield_deposit(value,5,1,Fpustatus_register)