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