| // Copyright 2013 The Go Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style |
| // license that can be found in the LICENSE file. |
| |
| #define SIG_REGS(ctxt) (*(Sigcontext*)(ctxt)) |
| |
| #define SIG_RAX(info, ctxt) (SIG_REGS(ctxt).sc_rax) |
| #define SIG_RBX(info, ctxt) (SIG_REGS(ctxt).sc_rbx) |
| #define SIG_RCX(info, ctxt) (SIG_REGS(ctxt).sc_rcx) |
| #define SIG_RDX(info, ctxt) (SIG_REGS(ctxt).sc_rdx) |
| #define SIG_RDI(info, ctxt) (SIG_REGS(ctxt).sc_rdi) |
| #define SIG_RSI(info, ctxt) (SIG_REGS(ctxt).sc_rsi) |
| #define SIG_RBP(info, ctxt) (SIG_REGS(ctxt).sc_rbp) |
| #define SIG_RSP(info, ctxt) (SIG_REGS(ctxt).sc_rsp) |
| #define SIG_R8(info, ctxt) (SIG_REGS(ctxt).sc_r8) |
| #define SIG_R9(info, ctxt) (SIG_REGS(ctxt).sc_r9) |
| #define SIG_R10(info, ctxt) (SIG_REGS(ctxt).sc_r10) |
| #define SIG_R11(info, ctxt) (SIG_REGS(ctxt).sc_r11) |
| #define SIG_R12(info, ctxt) (SIG_REGS(ctxt).sc_r12) |
| #define SIG_R13(info, ctxt) (SIG_REGS(ctxt).sc_r13) |
| #define SIG_R14(info, ctxt) (SIG_REGS(ctxt).sc_r14) |
| #define SIG_R15(info, ctxt) (SIG_REGS(ctxt).sc_r15) |
| #define SIG_RIP(info, ctxt) (SIG_REGS(ctxt).sc_rip) |
| #define SIG_RFLAGS(info, ctxt) (SIG_REGS(ctxt).sc_rflags) |
| |
| #define SIG_CS(info, ctxt) (SIG_REGS(ctxt).sc_cs) |
| #define SIG_FS(info, ctxt) (SIG_REGS(ctxt).sc_fs) |
| #define SIG_GS(info, ctxt) (SIG_REGS(ctxt).sc_gs) |
| |
| #define SIG_CODE0(info, ctxt) ((info)->si_code) |
| #define SIG_CODE1(info, ctxt) (*(uintptr*)((byte*)(info) + 16)) |