aboutsummaryrefslogtreecommitdiff
path: root/lib/thread_create.s
blob: 2aeb75877632b8a02237d9927f10680a22455ea4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# Copyright (c) 2020 Johannes Stoelp

# SysV AMD64 ABI
# int/ptr args : rdi, rsi, rdx, rcx, r8, r9
# int/ptr ret  : rax

    .intel_syntax noprefix
    .section .text, "ax", @progbits


     # extern "C" void thread_create();
    .global thread_create
    .type   thread_create, @function
thread_create:
    .cfi_startproc
    mov rdi, qword ptr [rsp+0x8]
    mov rsi, qword ptr [rsp]

    call rsi

    # FIXME: no return from thread after user fn finished.
1:
    jmp 1b
    .cfi_endproc
    .size thread_create, .-thread_create


    # extern "C" void yield(const void* new_stack, void* const* old_stack);
    #                                   ^^^^^^^^^               ^^^^^^^^^
    #                                   rdi                     rsi
    .global yield
    .type   yield, @function
yield:
    .cfi_startproc
    // prologue
    push rbp
    mov rbp, rsp

    // push callee saved registers
    push rbx
    push rbp
    push r12
    push r13
    push r14
    push r15

    // arg0: rdi holds new stack
    // arg1: rsi holds addr to location current stack must be saved
    mov [rsi], rsp  # save current stack ptr
    mov rsp, rdi    # switch to new stack ptr

    // pop callee saved registers
    pop r15
    pop r14
    pop r13
    pop r12
    pop rbp
    pop rbx

    // epilogue
    mov rsp, rbp
    pop rbp

    ret
    .cfi_endproc
    .size yield, .-yield