Changeset 4e1d008 in mainline


Ignore:
Timestamp:
2005-05-08T15:13:43Z (20 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c4a5207f
Parents:
ca90d65
Message:

Big indentation update.

Add Jakub Vana to AUTHORS.

Minor fixes.

Files:
7 edited

Legend:

Unmodified
Added
Removed
  • arch/ia32/src/context.s

    rca90d65 r4e1d008  
    3131.global context_save
    3232.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
    3437
    3538#
     
    7780
    7881
    79 .global fpu_context_save
    8082fpu_context_save:
    8183        ret
    82 .global fpu_context_restore
     84
    8385fpu_context_restore:
    8486        ret
    8587
    86 .global fpu_lazy_context_save
    8788fpu_lazy_context_save:
    88         mov 4(%esp),%eax;
     89        pushl %eax
     90        mov 8(%esp),%eax
    8991        fxsave (%eax)
    90         xor %eax,%eax;
    91         ret;
    92 .global fpu_lazy_context_restore
     92        popl %eax
     93        ret
     94
    9395fpu_lazy_context_restore:
    94         mov 4(%esp),%eax;
     96        pushl %eax
     97        mov 8(%esp),%eax
    9598        fxrstor (%eax)
    96         xor %eax,%eax;
    97        ret;
     99        popl %eax
     100        ret
    98101
  • arch/ia64/boot/boot.s

    rca90d65 r4e1d008  
    3131.global start
    3232start:
    33     brl 0x0000000000001000
     33        brl 0x0000000000001000
  • arch/mips/boot/boot.s

    rca90d65 r4e1d008  
    3434
    3535start:
    36     # move 0x80000000 to reg $8
    37     lui $8, 0x8000
     36        # move 0x80000000 to reg $8
     37        lui $8, 0x8000
    3838   
    39     # prepare stack
    40     lui $29, 0x8100
     39        # prepare stack
     40        lui $29, 0x8100
    4141   
    42     j $8
    43     nop
     42        j $8
     43        nop
  • arch/mips/src/asm.s

    rca90d65 r4e1d008  
    3030
    3131.macro cp0_read reg
    32     mfc0 $2,\reg
    33     j $31
    34     nop
     32        mfc0 $2,\reg
     33        j $31
     34        nop
    3535.endm
    3636
    3737.macro cp0_write reg
    38     mtc0 $4,\reg
    39     j $31
    40     nop
     38        mtc0 $4,\reg
     39        j $31
     40        nop
    4141.endm
    4242
  • arch/mips/src/fake.s

    rca90d65 r4e1d008  
    3939calibrate_delay_loop:
    4040asm_delay_loop:
    41     j $31
    42     nop
     41        j $31
     42        nop
  • arch/mips/src/start.S

    rca90d65 r4e1d008  
    4545kernel_image_start:
    4646tlb_refill_entry:
    47     j tlb_refill_handler
    48     nop
     47        j tlb_refill_handler
     48        nop
    4949
    5050.org 0x100
    5151cache_error_entry:
    52     j cache_error_handler
    53     nop
     52        j cache_error_handler
     53        nop
    5454   
    5555.org 0x180
    5656exception_entry:
    5757exception_handler:
    58     sub $29, STACK_SPACE
    59     REGISTERS_STORE $29
     58        sub $29, STACK_SPACE
     59        REGISTERS_STORE $29
    6060   
    61     jal exception
    62     nop
     61        jal exception
     62        nop
    6363   
    64     REGISTERS_LOAD $29
    65     add $29, STACK_SPACE
     64        REGISTERS_LOAD $29
     65        add $29, STACK_SPACE
    6666
    67     eret
     67        eret
    6868
    6969tlb_refill_handler:
    70     sub $29, STACK_SPACE
    71     REGISTERS_STORE $29
     70        sub $29, STACK_SPACE
     71        REGISTERS_STORE $29
    7272   
    73     jal tlb_refill
    74     nop
     73        jal tlb_refill
     74        nop
    7575   
    76     REGISTERS_LOAD $29
    77     add $29, STACK_SPACE
     76        REGISTERS_LOAD $29
     77        add $29, STACK_SPACE
    7878   
    79     eret
     79        eret
    8080
    8181cache_error_handler:
    82     sub $29, STACK_SPACE
    83     REGISTERS_STORE $29
     82        sub $29, STACK_SPACE
     83        REGISTERS_STORE $29
    8484
    85     jal cache_error
    86     nop
     85        jal cache_error
     86        nop
    8787   
    88     REGISTERS_LOAD $29
    89     add $29, STACK_SPACE
     88        REGISTERS_LOAD $29
     89        add $29, STACK_SPACE
    9090
    91     eret
     91        eret
  • doc/AUTHORS

    rca90d65 r4e1d008  
    11Jakub Jermar
     2Jakub Vana
Note: See TracChangeset for help on using the changeset viewer.