Lines Matching refs:ExceptionCodes
78 class ExceptionCodes(Enum): class
117 ExceptionCodes.ILLEGAL_INSTRUCTION: 4,
118 ExceptionCodes.INSTR_FETCH_ERROR: 7,
119 ExceptionCodes.LOAD_STORE_ERROR: 11,
120 ExceptionCodes.ALLOCA: 7,
121 ExceptionCodes.DIVIDE_BY_ZERO: 8,
122 ExceptionCodes.PRIVILEGED: 11,
123 ExceptionCodes.LOAD_STORE_ALIGNMENT: 7,
124 ExceptionCodes.INSTR_PIF_DATA_ERROR: 7,
125 ExceptionCodes.LOAD_STORE_PIF_DATA_ERROR: 7,
126 ExceptionCodes.INSTR_PIF_ADDR_ERROR: 11,
127 ExceptionCodes.LOAD_STORE_PIF_ADDR_ERROR: 11,
128 ExceptionCodes.INSTR_TLB_MISS: 11,
129 ExceptionCodes.INSTR_TLB_MULTI_HIT: 11,
130 ExceptionCodes.INSTR_FETCH_PRIVILEGE: 11,
131 ExceptionCodes.INST_FETCH_PROHIBITED: 11,
132 ExceptionCodes.LOAD_STORE_TLB_MISS: 11,
133 ExceptionCodes.LOAD_STORE_TLB_MULTI_HIT: 11,
134 ExceptionCodes.LOAD_STORE_PRIVILEGE: 11,
135 ExceptionCodes.LOAD_PROHIBITED: 11,
136 ExceptionCodes.STORE_PROHIBITED: 11,
137 ExceptionCodes.Z_EXCEPT_REASON: 6,
207 code = ExceptionCodes(self.exception_code)
214 elif ExceptionCodes.COPROCESSOR_DISABLED_START.value <= code <= \
215 ExceptionCodes.COPROCESSOR_DISABLED_END.value: