Changeset 4e1d008 in mainline
- Timestamp:
- 2005-05-08T15:13:43Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c4a5207f
- Parents:
- ca90d65
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ia32/src/context.s
rca90d65 r4e1d008 31 31 .global context_save 32 32 .global context_restore 33 33 .global fpu_context_save 34 .global fpu_context_restore 35 .global fpu_lazy_context_save 36 .global fpu_lazy_context_restore 34 37 35 38 # … … 77 80 78 81 79 .global fpu_context_save80 82 fpu_context_save: 81 83 ret 82 .global fpu_context_restore 84 83 85 fpu_context_restore: 84 86 ret 85 87 86 .global fpu_lazy_context_save87 88 fpu_lazy_context_save: 88 mov 4(%esp),%eax; 89 pushl %eax 90 mov 8(%esp),%eax 89 91 fxsave (%eax) 90 xor %eax,%eax;91 ret ;92 .global fpu_lazy_context_restore 92 popl %eax 93 ret 94 93 95 fpu_lazy_context_restore: 94 mov 4(%esp),%eax; 96 pushl %eax 97 mov 8(%esp),%eax 95 98 fxrstor (%eax) 96 xor %eax,%eax;97 ret;99 popl %eax 100 ret 98 101 -
arch/ia64/boot/boot.s
rca90d65 r4e1d008 31 31 .global start 32 32 start: 33 33 brl 0x0000000000001000 -
arch/mips/boot/boot.s
rca90d65 r4e1d008 34 34 35 35 start: 36 37 36 # move 0x80000000 to reg $8 37 lui $8, 0x8000 38 38 39 40 39 # prepare stack 40 lui $29, 0x8100 41 41 42 43 42 j $8 43 nop -
arch/mips/src/asm.s
rca90d65 r4e1d008 30 30 31 31 .macro cp0_read reg 32 33 34 32 mfc0 $2,\reg 33 j $31 34 nop 35 35 .endm 36 36 37 37 .macro cp0_write reg 38 39 40 38 mtc0 $4,\reg 39 j $31 40 nop 41 41 .endm 42 42 -
arch/mips/src/fake.s
rca90d65 r4e1d008 39 39 calibrate_delay_loop: 40 40 asm_delay_loop: 41 42 41 j $31 42 nop -
arch/mips/src/start.S
rca90d65 r4e1d008 45 45 kernel_image_start: 46 46 tlb_refill_entry: 47 48 47 j tlb_refill_handler 48 nop 49 49 50 50 .org 0x100 51 51 cache_error_entry: 52 53 52 j cache_error_handler 53 nop 54 54 55 55 .org 0x180 56 56 exception_entry: 57 57 exception_handler: 58 59 58 sub $29, STACK_SPACE 59 REGISTERS_STORE $29 60 60 61 62 61 jal exception 62 nop 63 63 64 65 64 REGISTERS_LOAD $29 65 add $29, STACK_SPACE 66 66 67 67 eret 68 68 69 69 tlb_refill_handler: 70 71 70 sub $29, STACK_SPACE 71 REGISTERS_STORE $29 72 72 73 74 73 jal tlb_refill 74 nop 75 75 76 77 76 REGISTERS_LOAD $29 77 add $29, STACK_SPACE 78 78 79 79 eret 80 80 81 81 cache_error_handler: 82 83 82 sub $29, STACK_SPACE 83 REGISTERS_STORE $29 84 84 85 86 85 jal cache_error 86 nop 87 87 88 89 88 REGISTERS_LOAD $29 89 add $29, STACK_SPACE 90 90 91 91 eret -
doc/AUTHORS
rca90d65 r4e1d008 1 1 Jakub Jermar 2 Jakub Vana
Note:
See TracChangeset
for help on using the changeset viewer.