Changeset 1b20da0 in mainline for kernel/arch/sparc64/src/trap/sun4u


Ignore:
Timestamp:
2018-02-28T17:52:03Z (8 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3061bc1
Parents:
df6ded8
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:26:03)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:52:03)
Message:

style: Remove trailing whitespace on non-empty lines, in certain file types.

Command used: tools/srepl '\([^[:space:]]\)\s\+$' '\1' -- *.c *.h *.py *.sh *.s *.S *.ag

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/sparc64/src/trap/sun4u/trap_table.S

    rdf6ded8 r1b20da0  
    6464        mov TT_INSTRUCTION_ACCESS_EXCEPTION, %g2
    6565        clr %g5
    66         PREEMPTIBLE_HANDLER exc_dispatch 
     66        PREEMPTIBLE_HANDLER exc_dispatch
    6767
    6868/* TT = 0x0a, TL = 0, instruction_access_error */
     
    7171        mov TT_INSTRUCTION_ACCESS_ERROR, %g2
    7272        clr %g5
    73         PREEMPTIBLE_HANDLER exc_dispatch 
     73        PREEMPTIBLE_HANDLER exc_dispatch
    7474
    7575/* TT = 0x10, TL = 0, illegal_instruction */
     
    7878        mov TT_ILLEGAL_INSTRUCTION, %g2
    7979        clr %g5
    80         PREEMPTIBLE_HANDLER exc_dispatch 
     80        PREEMPTIBLE_HANDLER exc_dispatch
    8181
    8282/* TT = 0x11, TL = 0, privileged_opcode */
     
    8585        mov TT_PRIVILEGED_OPCODE, %g2
    8686        clr %g5
    87         PREEMPTIBLE_HANDLER exc_dispatch 
     87        PREEMPTIBLE_HANDLER exc_dispatch
    8888
    8989/* TT = 0x12, TL = 0, unimplemented_LDD */
     
    9292        mov TT_UNIMPLEMENTED_LDD, %g2
    9393        clr %g5
    94         PREEMPTIBLE_HANDLER exc_dispatch 
     94        PREEMPTIBLE_HANDLER exc_dispatch
    9595
    9696/* TT = 0x13, TL = 0, unimplemented_STD */
     
    106106        mov TT_FP_DISABLED, %g2
    107107        clr %g5
    108         PREEMPTIBLE_HANDLER exc_dispatch 
     108        PREEMPTIBLE_HANDLER exc_dispatch
    109109
    110110/* TT = 0x21, TL = 0, fb_exception_ieee_754 handler */
     
    168168        mov TT_LDDF_MEM_ADDRESS_NOT_ALIGNED, %g2
    169169        clr %g5
    170         PREEMPTIBLE_HANDLER exc_dispatch 
     170        PREEMPTIBLE_HANDLER exc_dispatch
    171171
    172172/* TT = 0x36, TL = 0, STDF_mem_address_not_aligned */
     
    382382        mov TT_INSTRUCTION_ACCESS_EXCEPTION, %g2
    383383        clr %g5
    384         PREEMPTIBLE_HANDLER exc_dispatch 
     384        PREEMPTIBLE_HANDLER exc_dispatch
    385385
    386386/* TT = 0x0a, TL > 0, instruction_access_error */
     
    489489 * TL1: preemptible trap handler started after a tick interrupt
    490490 * TL2: preemptible trap handler did SAVE
    491  * TL3: spill handler touched the kernel stack 
     491 * TL3: spill handler touched the kernel stack
    492492 * TL4: hardware or software failure
    493493 *
     
    510510         * trap is resolved. However, because we are in the wrong window from the
    511511         * perspective of the MMU trap, we need to synchronize CWP with CWP from TL=0.
    512          */ 
     512         */
    513513        and %g3, TSTATE_CWP_MASK, %g4
    514514        wrpr %g4, 0, %cwp                       ! resynchronize CWP
     
    566566
    567567        /*
    568          * At this moment, we are using the kernel stack 
     568         * At this moment, we are using the kernel stack
    569569         * and have successfully allocated a register window.
    570570         */
     
    585585.else
    586586        ! store the syscall number on the stack as 7th argument
    587         stx %g2, [%sp + STACK_BIAS + ISTATE_OFFSET_ARG6] 
     587        stx %g2, [%sp + STACK_BIAS + ISTATE_OFFSET_ARG6]
    588588.endif
    589589
Note: See TracChangeset for help on using the changeset viewer.