18d7e7a98SRuslan Bukin /*- 28d7e7a98SRuslan Bukin * Copyright (c) 2015 Ruslan Bukin <br@bsdpad.com> 38d7e7a98SRuslan Bukin * All rights reserved. 48d7e7a98SRuslan Bukin * 58d7e7a98SRuslan Bukin * Portions of this software were developed by SRI International and the 68d7e7a98SRuslan Bukin * University of Cambridge Computer Laboratory under DARPA/AFRL contract 78d7e7a98SRuslan Bukin * FA8750-10-C-0237 ("CTSRD"), as part of the DARPA CRASH research programme. 88d7e7a98SRuslan Bukin * 98d7e7a98SRuslan Bukin * Portions of this software were developed by the University of Cambridge 108d7e7a98SRuslan Bukin * Computer Laboratory as part of the CTSRD Project, with support from the 118d7e7a98SRuslan Bukin * UK Higher Education Innovation Fund (HEIF). 128d7e7a98SRuslan Bukin * 138d7e7a98SRuslan Bukin * Redistribution and use in source and binary forms, with or without 148d7e7a98SRuslan Bukin * modification, are permitted provided that the following conditions 158d7e7a98SRuslan Bukin * are met: 168d7e7a98SRuslan Bukin * 1. Redistributions of source code must retain the above copyright 178d7e7a98SRuslan Bukin * notice, this list of conditions and the following disclaimer. 188d7e7a98SRuslan Bukin * 2. Redistributions in binary form must reproduce the above copyright 198d7e7a98SRuslan Bukin * notice, this list of conditions and the following disclaimer in the 208d7e7a98SRuslan Bukin * documentation and/or other materials provided with the distribution. 218d7e7a98SRuslan Bukin * 228d7e7a98SRuslan Bukin * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 238d7e7a98SRuslan Bukin * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 248d7e7a98SRuslan Bukin * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 258d7e7a98SRuslan Bukin * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 268d7e7a98SRuslan Bukin * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 278d7e7a98SRuslan Bukin * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 288d7e7a98SRuslan Bukin * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 298d7e7a98SRuslan Bukin * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 308d7e7a98SRuslan Bukin * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 318d7e7a98SRuslan Bukin * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 328d7e7a98SRuslan Bukin * SUCH DAMAGE. 338d7e7a98SRuslan Bukin */ 348d7e7a98SRuslan Bukin 358d7e7a98SRuslan Bukin #ifndef _MACHINE_FRAME_H_ 368d7e7a98SRuslan Bukin #define _MACHINE_FRAME_H_ 378d7e7a98SRuslan Bukin 388d7e7a98SRuslan Bukin #ifndef LOCORE 398d7e7a98SRuslan Bukin 408d7e7a98SRuslan Bukin #include <sys/signal.h> 418d7e7a98SRuslan Bukin #include <sys/ucontext.h> 428d7e7a98SRuslan Bukin 438d7e7a98SRuslan Bukin /* 448d7e7a98SRuslan Bukin * NOTE: keep this structure in sync with struct reg and struct mcontext. 458d7e7a98SRuslan Bukin */ 468d7e7a98SRuslan Bukin struct trapframe { 478d7e7a98SRuslan Bukin uint64_t tf_ra; 488d7e7a98SRuslan Bukin uint64_t tf_sp; 498d7e7a98SRuslan Bukin uint64_t tf_gp; 508d7e7a98SRuslan Bukin uint64_t tf_tp; 518d7e7a98SRuslan Bukin uint64_t tf_t[7]; 528d7e7a98SRuslan Bukin uint64_t tf_s[12]; 538d7e7a98SRuslan Bukin uint64_t tf_a[8]; 548d7e7a98SRuslan Bukin uint64_t tf_sepc; 558d7e7a98SRuslan Bukin uint64_t tf_sstatus; 5653941c0aSMark Johnston uint64_t tf_stval; 578d7e7a98SRuslan Bukin uint64_t tf_scause; 588d7e7a98SRuslan Bukin }; 598d7e7a98SRuslan Bukin 60*21c534b9SJessica Clarke #ifdef _KERNEL 61*21c534b9SJessica Clarke #define TF_SIZE (roundup2(sizeof(struct trapframe), STACKALIGNBYTES + 1)) 62*21c534b9SJessica Clarke #endif 63*21c534b9SJessica Clarke 648d7e7a98SRuslan Bukin /* 658d7e7a98SRuslan Bukin * Signal frame. Pushed onto user stack before calling sigcode. 668d7e7a98SRuslan Bukin */ 678d7e7a98SRuslan Bukin struct sigframe { 688d7e7a98SRuslan Bukin siginfo_t sf_si; /* actual saved siginfo */ 698d7e7a98SRuslan Bukin ucontext_t sf_uc; /* actual saved ucontext */ 708d7e7a98SRuslan Bukin }; 718d7e7a98SRuslan Bukin 72*21c534b9SJessica Clarke #ifdef _KERNEL 73*21c534b9SJessica Clarke /* 74*21c534b9SJessica Clarke * Kernel frame. Reserved near the top of kernel stacks for saving kernel 75*21c534b9SJessica Clarke * state while in userspace. 76*21c534b9SJessica Clarke */ 77*21c534b9SJessica Clarke struct kernframe { 78*21c534b9SJessica Clarke register_t kf_tp; 79*21c534b9SJessica Clarke }; 80*21c534b9SJessica Clarke #endif 81*21c534b9SJessica Clarke 828d7e7a98SRuslan Bukin #endif /* !LOCORE */ 838d7e7a98SRuslan Bukin 848ff21c23SLi-Wen Hsu /* Definitions for syscalls */ 858ff21c23SLi-Wen Hsu #define NARGREG 8 /* 8 args in regs */ 868ff21c23SLi-Wen Hsu 878d7e7a98SRuslan Bukin #endif /* !_MACHINE_FRAME_H_ */ 88