Symbol: Fpustatus_register
sys/arch/hppa/spmath/float.h
444
#define Rounding_mode() Roundingmode(Fpustatus_register)
sys/arch/hppa/spmath/float.h
446
(Roundingmode(Fpustatus_register) == rmode)
sys/arch/hppa/spmath/float.h
448
Bitfield_deposit(value,21,2,Fpustatus_register)
sys/arch/hppa/spmath/float.h
451
#define Is_invalidtrap_enabled() Invalidtrap(Fpustatus_register)
sys/arch/hppa/spmath/float.h
452
#define Is_divisionbyzerotrap_enabled() Divisionbyzerotrap(Fpustatus_register)
sys/arch/hppa/spmath/float.h
453
#define Is_overflowtrap_enabled() Overflowtrap(Fpustatus_register)
sys/arch/hppa/spmath/float.h
454
#define Is_underflowtrap_enabled() Underflowtrap(Fpustatus_register)
sys/arch/hppa/spmath/float.h
455
#define Is_inexacttrap_enabled() Inexacttrap(Fpustatus_register)
sys/arch/hppa/spmath/float.h
458
#define Set_invalidflag() Bitfield_deposit(1,0,1,Fpustatus_register)
sys/arch/hppa/spmath/float.h
459
#define Set_divisionbyzeroflag() Bitfield_deposit(1,1,1,Fpustatus_register)
sys/arch/hppa/spmath/float.h
460
#define Set_overflowflag() Bitfield_deposit(1,2,1,Fpustatus_register)
sys/arch/hppa/spmath/float.h
461
#define Set_underflowflag() Bitfield_deposit(1,3,1,Fpustatus_register)
sys/arch/hppa/spmath/float.h
462
#define Set_inexactflag() Bitfield_deposit(1,4,1,Fpustatus_register)
sys/arch/hppa/spmath/float.h
464
#define Clear_all_flags() Bitfield_deposit(0,0,5,Fpustatus_register)
sys/arch/hppa/spmath/float.h
467
#define Set_tbit() Bitfield_deposit(1,25,1,Fpustatus_register)
sys/arch/hppa/spmath/float.h
468
#define Clear_tbit() Bitfield_deposit(0,25,1,Fpustatus_register)
sys/arch/hppa/spmath/float.h
469
#define Is_tbit_set() Tbit(Fpustatus_register)
sys/arch/hppa/spmath/float.h
470
#define Is_cbit_set() Cbit(Fpustatus_register)
sys/arch/hppa/spmath/float.h
474
Bitfield_deposit(Bitfield_extract(10,10,Fpustatus_register),11,10,Fpustatus_register); \
sys/arch/hppa/spmath/float.h
475
Bitfield_deposit(Bitfield_extract(5,1,Fpustatus_register),10,1,Fpustatus_register); \
sys/arch/hppa/spmath/float.h
476
Bitfield_deposit(value,5,1,Fpustatus_register)
sys/arch/hppa/spmath/float.h
478
#define Set_status_cbit(value) Bitfield_deposit(value,5,1,Fpustatus_register)