- 根目录:
- arch
- sparc
- include
- asm
- pstate.h
#ifndef _SPARC64_PSTATE_H
#define _SPARC64_PSTATE_H
#include <linux/const.h>
#define PSTATE_IG _AC(0x0000000000000800,UL)
#define PSTATE_MG _AC(0x0000000000000400,UL)
#define PSTATE_CLE _AC(0x0000000000000200,UL)
#define PSTATE_TLE _AC(0x0000000000000100,UL)
#define PSTATE_MM _AC(0x00000000000000c0,UL)
#define PSTATE_TSO _AC(0x0000000000000000,UL)
#define PSTATE_PSO _AC(0x0000000000000040,UL)
#define PSTATE_RMO _AC(0x0000000000000080,UL)
#define PSTATE_RED _AC(0x0000000000000020,UL)
#define PSTATE_PEF _AC(0x0000000000000010,UL)
#define PSTATE_AM _AC(0x0000000000000008,UL)
#define PSTATE_PRIV _AC(0x0000000000000004,UL)
#define PSTATE_IE _AC(0x0000000000000002,UL)
#define PSTATE_AG _AC(0x0000000000000001,UL)
#define TSTATE_GL _AC(0x0000070000000000,UL)
#define TSTATE_CCR _AC(0x000000ff00000000,UL)
#define TSTATE_XCC _AC(0x000000f000000000,UL)
#define TSTATE_XNEG _AC(0x0000008000000000,UL)
#define TSTATE_XZERO _AC(0x0000004000000000,UL)
#define TSTATE_XOVFL _AC(0x0000002000000000,UL)
#define TSTATE_XCARRY _AC(0x0000001000000000,UL)
#define TSTATE_ICC _AC(0x0000000f00000000,UL)
#define TSTATE_INEG _AC(0x0000000800000000,UL)
#define TSTATE_IZERO _AC(0x0000000400000000,UL)
#define TSTATE_IOVFL _AC(0x0000000200000000,UL)
#define TSTATE_ICARRY _AC(0x0000000100000000,UL)
#define TSTATE_ASI _AC(0x00000000ff000000,UL)
#define TSTATE_PIL _AC(0x0000000000f00000,UL)
#define TSTATE_PSTATE _AC(0x00000000000fff00,UL)
#define TSTATE_IG _AC(0x0000000000080000,UL)
#define TSTATE_MG _AC(0x0000000000040000,UL)
#define TSTATE_CLE _AC(0x0000000000020000,UL)
#define TSTATE_TLE _AC(0x0000000000010000,UL)
#define TSTATE_MM _AC(0x000000000000c000,UL)
#define TSTATE_TSO _AC(0x0000000000000000,UL)
#define TSTATE_PSO _AC(0x0000000000004000,UL)
#define TSTATE_RMO _AC(0x0000000000008000,UL)
#define TSTATE_RED _AC(0x0000000000002000,UL)
#define TSTATE_PEF _AC(0x0000000000001000,UL)
#define TSTATE_AM _AC(0x0000000000000800,UL)
#define TSTATE_PRIV _AC(0x0000000000000400,UL)
#define TSTATE_IE _AC(0x0000000000000200,UL)
#define TSTATE_AG _AC(0x0000000000000100,UL)
#define TSTATE_SYSCALL _AC(0x0000000000000020,UL)
#define TSTATE_CWP _AC(0x000000000000001f,UL)
#define FPRS_FEF _AC(0x0000000000000004,UL)
#define FPRS_DU _AC(0x0000000000000002,UL)
#define FPRS_DL _AC(0x0000000000000001,UL)
#define VERS_MANUF _AC(0xffff000000000000,UL)
#define VERS_IMPL _AC(0x0000ffff00000000,UL)
#define VERS_MASK _AC(0x00000000ff000000,UL)
#define VERS_MAXTL _AC(0x000000000000ff00,UL)
#define VERS_MAXWIN _AC(0x000000000000001f,UL)
#endif
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
- 73
- 74
- 75
- 76
- 77
- 78
- 79
- 80
- 81
- 82
- 83
- 84
- 85
- 86
- 87
- 88
- 89
- 90
- 91