Home | History | Annotate | Download | only in runtime
      1 // Copyright 2013 The Go Authors.  All rights reserved.
      2 // Use of this source code is governed by a BSD-style
      3 // license that can be found in the LICENSE file.
      4 
      5 package runtime
      6 
      7 import "unsafe"
      8 
      9 type sigctxt struct {
     10 	info *siginfo
     11 	ctxt unsafe.Pointer
     12 }
     13 
     14 func (c *sigctxt) regs() *mcontextt {
     15 	return (*mcontextt)(unsafe.Pointer(&(*ucontextt)(c.ctxt).uc_mcontext))
     16 }
     17 func (c *sigctxt) rax() uint64     { return c.regs().__gregs[_REG_RAX] }
     18 func (c *sigctxt) rbx() uint64     { return c.regs().__gregs[_REG_RBX] }
     19 func (c *sigctxt) rcx() uint64     { return c.regs().__gregs[_REG_RCX] }
     20 func (c *sigctxt) rdx() uint64     { return c.regs().__gregs[_REG_RDX] }
     21 func (c *sigctxt) rdi() uint64     { return c.regs().__gregs[_REG_RDI] }
     22 func (c *sigctxt) rsi() uint64     { return c.regs().__gregs[_REG_RSI] }
     23 func (c *sigctxt) rbp() uint64     { return c.regs().__gregs[_REG_RBP] }
     24 func (c *sigctxt) rsp() uint64     { return c.regs().__gregs[_REG_RSP] }
     25 func (c *sigctxt) r8() uint64      { return c.regs().__gregs[_REG_R8] }
     26 func (c *sigctxt) r9() uint64      { return c.regs().__gregs[_REG_R8] }
     27 func (c *sigctxt) r10() uint64     { return c.regs().__gregs[_REG_R10] }
     28 func (c *sigctxt) r11() uint64     { return c.regs().__gregs[_REG_R11] }
     29 func (c *sigctxt) r12() uint64     { return c.regs().__gregs[_REG_R12] }
     30 func (c *sigctxt) r13() uint64     { return c.regs().__gregs[_REG_R13] }
     31 func (c *sigctxt) r14() uint64     { return c.regs().__gregs[_REG_R14] }
     32 func (c *sigctxt) r15() uint64     { return c.regs().__gregs[_REG_R15] }
     33 func (c *sigctxt) rip() uint64     { return c.regs().__gregs[_REG_RIP] }
     34 func (c *sigctxt) rflags() uint64  { return c.regs().__gregs[_REG_RFLAGS] }
     35 func (c *sigctxt) cs() uint64      { return c.regs().__gregs[_REG_CS] }
     36 func (c *sigctxt) fs() uint64      { return c.regs().__gregs[_REG_FS] }
     37 func (c *sigctxt) gs() uint64      { return c.regs().__gregs[_REG_GS] }
     38 func (c *sigctxt) sigcode() uint64 { return uint64(c.info._code) }
     39 func (c *sigctxt) sigaddr() uint64 {
     40 	return uint64(*(*uint64)(unsafe.Pointer(&c.info._reason[0])))
     41 }
     42 
     43 func (c *sigctxt) set_rip(x uint64)     { c.regs().__gregs[_REG_RIP] = x }
     44 func (c *sigctxt) set_rsp(x uint64)     { c.regs().__gregs[_REG_RSP] = x }
     45 func (c *sigctxt) set_sigcode(x uint64) { c.info._code = int32(x) }
     46 func (c *sigctxt) set_sigaddr(x uint64) {
     47 	*(*uint64)(unsafe.Pointer(&c.info._reason[0])) = x
     48 }
     49