Changeset 5646813 in mainline
- Timestamp:
- 2009-04-21T20:01:26Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a1a83e5e
- Parents:
- 253d3d0
- Location:
- kernel/arch/sparc64
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/include/atomic.h
r253d3d0 r5646813 124 124 "brz %2, 0b\n" 125 125 "nop\n" 126 "ba 1b\n"126 "ba %xcc, 1b\n" 127 127 "nop\n" 128 128 "2:\n" -
kernel/arch/sparc64/src/start.S
r253d3d0 r5646813 295 295 296 296 0: 297 ba 0b297 ba %xcc, 0b 298 298 nop 299 299 … … 353 353 354 354 0: 355 ba 0b355 ba %xcc, 0b 356 356 nop 357 357 -
kernel/arch/sparc64/src/trap/trap_table.S
r253d3d0 r5646813 342 342 .global trap_instruction_\cur\()_tl0 343 343 trap_instruction_\cur\()_tl0: 344 ba trap_instruction_handler344 ba %xcc, trap_instruction_handler 345 345 mov \cur, %g2 346 346 .endr … … 481 481 be %xcc, 1f 482 482 nop 483 0: ba 0b! this is for debugging, if we ever get here483 0: ba %xcc, 0b ! this is for debugging, if we ever get here 484 484 nop ! it will be easy to find 485 485 … … 546 546 547 547 .if NOT(\is_syscall) 548 ba 1f548 ba %xcc, 1f 549 549 nop 550 550 0: … … 775 775 wrpr %g3, 0, %cwp ! switch to the preceeding window 776 776 777 ba 0b777 ba %xcc, 0b 778 778 inc %g4 779 779
Note:
See TracChangeset
for help on using the changeset viewer.