-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathexceptioncodes.json
173 lines (173 loc) · 4.54 KB
/
exceptioncodes.json
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
[
{
"Start": 0,
"Name": "IllegalInstructionCause",
"Description": "Illegal instruction",
"RequiredOption": "Exception"
},
{
"Start": 1,
"Name": "SyscallCause",
"Description": "SYSCALL instruction",
"RequiredOption": "Exception"
},
{
"Start": 2,
"Name": "InstructionFetchErrorCause",
"Description": "Processor internal physical address or data error during instruction fetch",
"RequiredOption": "Exception"
},
{
"Start": 3,
"Name": "LoadStoreErrorCause",
"Description": "Processor internal physical address or data error during load or store",
"RequiredOption": "Exception"
},
{
"Start": 4,
"Name": "Level1InterruptCause",
"Description": "Level-1 interrupt as indicated by set level-1 bits in the INTERRUPT register",
"RequiredOption": "Interrupt"
},
{
"Start": 5,
"Name": "AllocaCause",
"Description": "MOVSP instruction, if caller?s registers are not in the register file",
"RequiredOption": "Windowed Register"
},
{
"Start": 6,
"Name": "IntegerDivideByZeroCause",
"Description": "QUOS, QUOU, REMS, or REMU divisor operand is zero",
"RequiredOption": "32-bit Integer Divide"
},
{
"Start": 7,
"Name": "Reserved for Tensilica"
},
{
"Start": 8,
"Name": "PrivilegedCause",
"Description": "Attempt to execute a privileged operation when CRING ? 0",
"RequiredOption": "MMU"
},
{
"Start": 9,
"Name": "LoadStoreAlignmentCause",
"Description": "Load or store to an unaligned address",
"RequiredOption": "Unaligned Exception"
},
{
"Start": 10,
"Ende" : 11,
"Name": "Reserved for Tensilica"
},
{
"Start": 12,
"Name": "InstrPIFDataErrorCause",
"Description": "PIF data error during instruction fetch",
"RequiredOption": "Processor Interface"
},
{
"Start": 13,
"Name": "LoadStorePIFDataErrorCause",
"Description": "Synchronous PIF data error during LoadStore access",
"RequiredOption": "Processor Interface"
},
{
"Start": 14,
"Name": "InstrPIFAddrErrorCause",
"Description": "PIF address error during instruction fetch",
"RequiredOption": "Processor Interface"
},
{
"Start": 15,
"Name": "LoadStorePIFAddrErrorCause",
"Description": "Synchronous PIF address error during LoadStore access",
"RequiredOption": "Processor Interface"
},
{
"Start": 16,
"Name": "InstTLBMissCause",
"Description": "Error during Instruction TLB refill",
"RequiredOption": "MMU"
},
{
"Start": 17,
"Name": "InstTLBMultiHitCause",
"Description": "Multiple instruction TLB entries matched",
"RequiredOption": "MMU"
},
{
"Start": 18,
"Name": "InstFetchPrivilegeCause",
"Description": "An instruction fetch referenced a virtual address at a ring level less than CRING",
"RequiredOption": "MMU"
},
{
"Start": 19,
"Name": "Reserved for Tensilica"
},
{
"Start": 20,
"Name": "InstFetchProhibitedCause",
"Description": "An instruction fetch referenced a page mapped with an attribute that does not permit instruction fetch",
"RequiredOption": "Region Protection or MMU"
},
{
"Start": 21,
"Ende" : 23,
"Name": "Reserved for Tensilica"
},
{
"Start": 24,
"Name": "LoadStoreTLBMissCause",
"Description": "Error during TLB refill for a load or store",
"RequiredOption": "MMU"
},
{
"Start": 25,
"Name": "LoadStoreTLBMultiHitCause",
"Description": "Multiple TLB entries matched for a load or store",
"RequiredOption": "MMU"
},
{
"Start": 26,
"Name": "LoadStorePrivilegeCause",
"Description": "A load or store referenced a virtual address at a ring level less than CRING",
"RequiredOption": "MMU"
},
{
"Start": 27,
"Name": "Reserved for Tensilica"
},
{
"Start": 28,
"Name": "LoadProhibitedCause",
"Description": "A load referenced a page mapped with an attribute that does not permit loads",
"RequiredOption": "Region Protection or MMU"
},
{
"Start": 29,
"Name": "StoreProhibitedCause",
"Description": "A store referenced a page mapped with an attribute that does not permit stores",
"RequiredOption": "Region Protection or MMU"
},
{
"Start": 30,
"Ende" : 31,
"Name": "Reserved for Tensilica"
},
{
"Start": 32,
"Ende" : 39,
"Name": "CoprocessornDisabled",
"Description": "Coprocessor n instruction when cpn disabled. n varies 0..7 as the cause varies 32..39",
"RequiredOption": "Coprocessor"
},
{
"Start": 40,
"Ende" : 63,
"Name": "Reserved"
}
]