/*-*- mode:unix-assembly; indent-tabs-mode:t; tab-width:8; coding:utf-8 -*-│ │vi: set et ft=asm ts=8 tw=8 fenc=utf-8 :vi│ ╞══════════════════════════════════════════════════════════════════════════════╡ │ Copyright 2022 Justine Alexandra Roberts Tunney │ │ │ │ Permission to use, copy, modify, and/or distribute this software for │ │ any purpose with or without fee is hereby granted, provided that the │ │ above copyright notice and this permission notice appear in all copies. │ │ │ │ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL │ │ WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED │ │ WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE │ │ AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL │ │ DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR │ │ PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER │ │ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR │ │ PERFORMANCE OF THIS SOFTWARE. │ ╚─────────────────────────────────────────────────────────────────────────────*/ #include "libc/macros.internal.h" // Gets machine state. // // @note please use longerjmp() and setlongerjmp() for fibers // @note currently only gets general registers // @see setcontext() getcontext: mov %r8,40(%rdi) mov %r9,48(%rdi) mov %r10,56(%rdi) mov %r11,64(%rdi) mov %r12,72(%rdi) mov %r13,80(%rdi) mov %r14,88(%rdi) mov %r15,96(%rdi) mov %rdi,104(%rdi) mov %rsi,112(%rdi) mov %rbp,120(%rdi) mov %rbx,128(%rdi) mov %rdx,136(%rdi) mov %rax,144(%rdi) mov %rcx,152(%rdi) lea 8(%rsp),%rax mov %rax,160(%rdi) mov (%rsp),%rax mov %rax,168(%rdi) xor %eax,%eax ret .endfn getcontext,globl .end //////////////////////////////////////////////////////////////////////////////// noasan noubsan noinstrument int getcontext(ucontext_t *uc) { asm volatile("mov\t%%r8,%0" : "=m"(uc->uc_mcontext.r8)); asm volatile("mov\t%%r9,%0" : "=m"(uc->uc_mcontext.r9)); asm volatile("mov\t%%r10,%0" : "=m"(uc->uc_mcontext.r10)); asm volatile("mov\t%%r11,%0" : "=m"(uc->uc_mcontext.r11)); asm volatile("mov\t%%r12,%0" : "=m"(uc->uc_mcontext.r12)); asm volatile("mov\t%%r13,%0" : "=m"(uc->uc_mcontext.r13)); asm volatile("mov\t%%r14,%0" : "=m"(uc->uc_mcontext.r14)); asm volatile("mov\t%%r15,%0" : "=m"(uc->uc_mcontext.r15)); asm volatile("mov\t%%rdi,%0" : "=m"(uc->uc_mcontext.rdi)); asm volatile("mov\t%%rsi,%0" : "=m"(uc->uc_mcontext.rsi)); asm volatile("mov\t%%rbp,%0" : "=m"(uc->uc_mcontext.rbp)); asm volatile("mov\t%%rbx,%0" : "=m"(uc->uc_mcontext.rbx)); asm volatile("mov\t%%rdx,%0" : "=m"(uc->uc_mcontext.rdx)); asm volatile("mov\t%%rax,%0" : "=m"(uc->uc_mcontext.rax)); asm volatile("mov\t%%rcx,%0" : "=m"(uc->uc_mcontext.rcx)); asm volatile("lea\t8(%%rsp),%%rax\n\t" "mov\t%%rax,%0" : "=m"(uc->uc_mcontext.rsp) : /* no inputs */ : "rax"); asm volatile("mov\t(%%rsp),%%rax\n\t" "mov\t%%rax,%0" : "=m"(uc->uc_mcontext.rip) : /* no inputs */ : "rax"); return 0; }