/*-1* Copyright (c) 2015-2018 Ruslan Bukin <[email protected]>2* All rights reserved.3*4* Portions of this software were developed by SRI International and the5* University of Cambridge Computer Laboratory under DARPA/AFRL contract6* FA8750-10-C-0237 ("CTSRD"), as part of the DARPA CRASH research programme.7*8* Portions of this software were developed by the University of Cambridge9* Computer Laboratory as part of the CTSRD Project, with support from the10* UK Higher Education Innovation Fund (HEIF).11*12* Redistribution and use in source and binary forms, with or without13* modification, are permitted provided that the following conditions14* are met:15* 1. Redistributions of source code must retain the above copyright16* notice, this list of conditions and the following disclaimer.17* 2. Redistributions in binary form must reproduce the above copyright18* notice, this list of conditions and the following disclaimer in the19* documentation and/or other materials provided with the distribution.20*21* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND22* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE23* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE24* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE25* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL26* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS27* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)28* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT29* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY30* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF31* SUCH DAMAGE.32*/3334#ifndef _MACHINE_ASM_H_35#define _MACHINE_ASM_H_3637#undef __FBSDID38#if !defined(lint) && !defined(STRIP_FBSDID)39#define __FBSDID(s) .ident s40#else41#define __FBSDID(s) /* nothing */42#endif /* not lint and not STRIP_FBSDID */4344#define _C_LABEL(x) x4546#define ENTRY(sym) \47.text; .globl sym; .type sym,@function; .align 4; sym: .cfi_startproc;48#define END(sym) .cfi_endproc; .size sym, . - sym4950#define EENTRY(sym) \51.globl sym; sym:52#define EEND(sym)5354#define WEAK_REFERENCE(sym, alias) \55.weak alias; \56.set alias,sym5758#define SET_FAULT_HANDLER(handler, tmp) \59ld tmp, PC_CURTHREAD(tp); \60ld tmp, TD_PCB(tmp); /* Load the pcb */ \61sd handler, PCB_ONFAULT(tmp) /* Set the handler */6263#define ENTER_USER_ACCESS(tmp) \64li tmp, SSTATUS_SUM; \65csrs sstatus, tmp6667#define EXIT_USER_ACCESS(tmp) \68li tmp, SSTATUS_SUM; \69csrc sstatus, tmp7071#define SBI_CALL(ext, func) \72li a7, ext; \73li a6, func; \74ecall7576#endif /* _MACHINE_ASM_H_ */777879