Changeset 4b2c872d in mainline for arch/ppc32
- Timestamp:
- 2005-10-18T09:33:02Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8005218
- Parents:
- 22f7769
- Location:
- arch/ppc32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ppc32/include/context.h
r22f7769 r4b2c872d 36 36 struct context { 37 37 __u32 r0; 38 __ u32sp;38 __address sp; 39 39 __u32 r2; 40 40 __u32 r3; … … 67 67 __u32 r30; 68 68 __u32 r31; 69 __ u32pc;69 __address pc; 70 70 ipl_t ipl; 71 71 } __attribute__ ((packed)); -
arch/ppc32/src/context.S
r22f7769 r4b2c872d 31 31 .text 32 32 33 .global context_save 34 .global context_restore 33 .global context_save_arch 34 .global context_restore_arch 35 35 36 context_save :36 context_save_arch: 37 37 REGISTERS_STORE r3 38 38 … … 44 44 blr 45 45 46 context_restore :46 context_restore_arch: 47 47 REGISTERS_LOAD r3 48 48
Note:
See TracChangeset
for help on using the changeset viewer.