USERMODE
#define USERMODE(c) (ISPL(c) == SEL_UPL)
#define USERMODE(pc) ((((register_t)pc) & HPPA_PC_PRIV_MASK) != HPPA_PC_PRIV_KERN)
#define USERMODE(c) (ISPL(c) == SEL_UPL)
#define USERMODE(ps) (((ps) & PSL_S) == 0)
# define USERMODE(ps) (CPUISMIPS3 ? MIPS3_USERMODE(ps) : MIPS1_USERMODE(ps))
# define USERMODE(ps) MIPS3_USERMODE(ps)
# define USERMODE(ps) MIPS1_USERMODE(ps)