Ignore:
Timestamp:
2008-03-15T10:22:07Z (16 years ago)
Author:
Josef Cejka <malyzelenyhnus@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8476a8d
Parents:
baac911
Message:

Unified context handling code for amd64.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/libc/arch/amd64/src/fibril.S

    rbaac911 r1dbfe98  
    3232.global context_restore
    3333
    34 #include <libarch/context_offset.h>
     34#include <kernel/arch/context_offset.h>
    3535
    3636## Save current CPU context
     
    4141context_save:
    4242        movq (%rsp), %rdx     # the caller's return %eip
     43       
    4344        # In %edi is passed 1st argument
    44         movq %rdx, OFFSET_PC(%rdi)
    45         movq %rsp, OFFSET_SP(%rdi)
     45        CONTEXT_SAVE_ARCH_CORE %rdi %rdx
    4646       
    47         movq %rbx, OFFSET_RBX(%rdi)
    48         movq %rbp, OFFSET_RBP(%rdi)
    49         movq %r12, OFFSET_R12(%rdi)
    50         movq %r13, OFFSET_R13(%rdi)
    51         movq %r14, OFFSET_R14(%rdi)
    52         movq %r15, OFFSET_R15(%rdi)
    53 
    5447        # Save TLS
    5548        movq %fs:0, %rax
     
    6760#
    6861context_restore:
    69         movq OFFSET_R15(%rdi), %r15
    70         movq OFFSET_R14(%rdi), %r14
    71         movq OFFSET_R13(%rdi), %r13
    72         movq OFFSET_R12(%rdi), %r12
    73         movq OFFSET_RBP(%rdi), %rbp
    74         movq OFFSET_RBX(%rdi), %rbx     
    7562       
    76         movq OFFSET_SP(%rdi), %rsp   # ctx->sp -> %rsp
     63        CONTEXT_RESTORE_ARCH_CORE %rdi %rdx
    7764       
    78         movq OFFSET_PC(%rdi), %rdx
    7965        movq %rdx,(%rsp)
    8066
Note: See TracChangeset for help on using the changeset viewer.