Changes in kernel/arch/sparc64/src/sun4u/asm.S [a52e2f4:9d58539] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/src/sun4u/asm.S
ra52e2f4 r9d58539 27 27 # 28 28 29 #include <abi/asmtool.h>30 29 #include <arch/arch.h> 31 30 #include <arch/stack.h> … … 56 55 .endm 57 56 58 FUNCTION_BEGIN(write_to_ag_g6) 57 .global write_to_ag_g6 58 write_to_ag_g6: 59 59 WRITE_ALTERNATE_REGISTER %g6, PSTATE_AG_BIT 60 FUNCTION_END(write_to_ag_g6)61 60 62 FUNCTION_BEGIN(write_to_ag_g7) 61 .global write_to_ag_g7 62 write_to_ag_g7: 63 63 WRITE_ALTERNATE_REGISTER %g7, PSTATE_AG_BIT 64 FUNCTION_END(write_to_ag_g7)65 64 66 FUNCTION_BEGIN(write_to_ig_g6) 65 .global write_to_ig_g6 66 write_to_ig_g6: 67 67 WRITE_ALTERNATE_REGISTER %g6, PSTATE_IG_BIT 68 FUNCTION_END(write_to_ig_g6)69 68 70 FUNCTION_BEGIN(read_from_ag_g6) 69 .global read_from_ag_g6 70 read_from_ag_g6: 71 71 READ_ALTERNATE_REGISTER %g6, PSTATE_AG_BIT 72 FUNCTION_END(read_from_ag_g6)73 72 74 FUNCTION_BEGIN(read_from_ag_g7) 73 .global read_from_ag_g7 74 read_from_ag_g7: 75 75 READ_ALTERNATE_REGISTER %g7, PSTATE_AG_BIT 76 FUNCTION_END(read_from_ag_g7)77 76 78 77 /** Switch to userspace. … … 82 81 * %o2 Userspace address of uarg structure. 83 82 */ 84 FUNCTION_BEGIN(switch_to_userspace) 83 .global switch_to_userspace 84 switch_to_userspace: 85 85 save %o1, -(STACK_WINDOW_SAVE_AREA_SIZE + STACK_ARG_SAVE_AREA_SIZE), %sp 86 86 flushw … … 119 119 120 120 done ! jump to userspace 121 FUNCTION_END(switch_to_userspace)122 121
Note:
See TracChangeset
for help on using the changeset viewer.