Changes in kernel/arch/ppc32/src/exception.S [8c7d5ad:b66cc97] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ppc32/src/exception.S
r8c7d5ad rb66cc97 27 27 # 28 28 29 #include <abi/asmtool.h> 29 30 #include <arch/asm/regname.h> 30 31 #include <arch/msr.h> … … 126 127 127 128 .org 0x100 128 .global exc_system_reset 129 exc_system_reset: 129 SYMBOL(exc_system_reset) 130 130 CONTEXT_STORE 131 131 … … 134 134 135 135 .org 0x200 136 .global exc_machine_check 137 exc_machine_check: 136 SYMBOL(exc_machine_check) 138 137 CONTEXT_STORE 139 138 … … 142 141 143 142 .org 0x300 144 .global exc_data_storage 145 exc_data_storage: 143 SYMBOL(exc_data_storage) 146 144 CONTEXT_STORE 147 145 … … 150 148 151 149 .org 0x400 152 .global exc_instruction_storage 153 exc_instruction_storage: 150 SYMBOL(exc_instruction_storage) 154 151 CONTEXT_STORE 155 152 … … 158 155 159 156 .org 0x500 160 .global exc_external 161 exc_external: 157 SYMBOL(exc_external) 162 158 CONTEXT_STORE 163 159 … … 166 162 167 163 .org 0x600 168 .global exc_alignment 169 exc_alignment: 164 SYMBOL(exc_alignment) 170 165 CONTEXT_STORE 171 166 … … 174 169 175 170 .org 0x700 176 .global exc_program 177 exc_program: 171 SYMBOL(exc_program) 178 172 CONTEXT_STORE 179 173 … … 182 176 183 177 .org 0x800 184 .global exc_fp_unavailable 185 exc_fp_unavailable: 178 SYMBOL(exc_fp_unavailable) 186 179 CONTEXT_STORE 187 180 … … 190 183 191 184 .org 0x900 192 .global exc_decrementer 193 exc_decrementer: 185 SYMBOL(exc_decrementer) 194 186 CONTEXT_STORE 195 187 … … 198 190 199 191 .org 0xa00 200 .global exc_reserved0 201 exc_reserved0: 192 SYMBOL(exc_reserved0) 202 193 CONTEXT_STORE 203 194 … … 206 197 207 198 .org 0xb00 208 .global exc_reserved1 209 exc_reserved1: 199 SYMBOL(exc_reserved1) 210 200 CONTEXT_STORE 211 201 … … 214 204 215 205 .org 0xc00 216 .global exc_syscall 217 exc_syscall: 206 SYMBOL(exc_syscall) 218 207 CONTEXT_STORE 219 208 … … 221 210 222 211 .org 0xd00 223 .global exc_trace 224 exc_trace: 212 SYMBOL(exc_trace) 225 213 CONTEXT_STORE 226 214 … … 229 217 230 218 .org 0x1000 231 .global exc_itlb_miss 232 exc_itlb_miss: 219 SYMBOL(exc_itlb_miss) 233 220 CONTEXT_STORE 234 221 … … 237 224 238 225 .org 0x1100 239 .global exc_dtlb_miss_load 240 exc_dtlb_miss_load: 226 SYMBOL(exc_dtlb_miss_load) 241 227 CONTEXT_STORE 242 228 … … 245 231 246 232 .org 0x1200 247 .global exc_dtlb_miss_store 248 exc_dtlb_miss_store: 233 SYMBOL(exc_dtlb_miss_store) 249 234 CONTEXT_STORE 250 235
Note:
See TracChangeset
for help on using the changeset viewer.