Changeset 0242621 in mainline
- Timestamp:
- 2010-05-21T22:57:52Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 71d0d737, 7c8e1e1
- Parents:
- 819a768
- Location:
- kernel/arch/sparc64/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/src/sun4v/start.S
r819a768 r0242621 219 219 ! on APs skip executing the following code 220 220 cmp %l7, 0 221 be 1f221 be %xcc, 1f 222 222 nop 223 223 … … 260 260 261 261 0: 262 ba 0b262 ba %xcc, 0b 263 263 nop 264 264 … … 295 295 /* Not reached. */ 296 296 0: 297 ba 0b297 ba %xcc, 0b 298 298 nop 299 299 … … 314 314 before_ap_boots: 315 315 setx 0x80400000, %g0, %o0 316 ba kernel_image_start316 ba %xcc, kernel_image_start 317 317 nop 318 318 -
kernel/arch/sparc64/src/trap/sun4v/trap_table.S
r819a768 r0242621 71 71 .org trap_table + TT_INSTRUCTION_ACCESS_MMU_MISS*ENTRY_SIZE 72 72 .global instruction_access_mmu_miss_handler_tl0 73 ba fast_instruction_access_mmu_miss_handler_tl073 ba %xcc, fast_instruction_access_mmu_miss_handler_tl0 74 74 nop 75 75 … … 187 187 .global data_access_mmu_miss_tl0 188 188 data_access_mmu_miss_tl0: 189 ba fast_data_access_mmu_miss_handler_tl0189 ba %xcc, fast_data_access_mmu_miss_handler_tl0 190 190 nop 191 191 … … 394 394 .global trap_instruction_\cur\()_tl0 395 395 trap_instruction_\cur\()_tl0: 396 ba trap_instruction_handler396 ba %xcc, trap_instruction_handler 397 397 mov \cur, %g2 398 398 .endr … … 414 414 .global instruction_access_mmu_miss_handler_tl1 415 415 wrpr %g0, 1, %tl 416 ba fast_instruction_access_mmu_miss_handler_tl0416 ba %xcc, fast_instruction_access_mmu_miss_handler_tl0 417 417 nop 418 418 … … 498 498 .global data_access_mmu_miss_tl1 499 499 data_access_mmu_miss_tl1: 500 ba fast_data_access_mmu_miss_handler_tl1500 ba %xcc, fast_data_access_mmu_miss_handler_tl1 501 501 nop 502 502 … … 787 787 be 1f 788 788 nop 789 0: ba 0b! this is for debugging, if we ever get here789 0: ba %xcc, 0b ! this is for debugging, if we ever get here 790 790 nop ! it will be easy to find 791 791 … … 982 982 wrpr %g3, 0, %cwp ! switch to the preceeding window 983 983 984 ba 5b984 ba %xcc, 5b 985 985 inc %g4 986 986 … … 1066 1066 1067 1067 PREEMPTIBLE_HANDLER_KERNEL 1068 ba 101f1068 ba %xcc, 101f 1069 1069 nop 1070 1070
Note:
See TracChangeset
for help on using the changeset viewer.