16fc729afSOlivier Houchard /* $NetBSD: asm.h,v 1.5 2003/08/07 16:26:53 agc Exp $ */ 26fc729afSOlivier Houchard 3d8315c79SWarner Losh /*- 451369649SPedro F. Giffuni * SPDX-License-Identifier: BSD-3-Clause 551369649SPedro F. Giffuni * 66fc729afSOlivier Houchard * Copyright (c) 1990 The Regents of the University of California. 76fc729afSOlivier Houchard * All rights reserved. 86fc729afSOlivier Houchard * 96fc729afSOlivier Houchard * This code is derived from software contributed to Berkeley by 106fc729afSOlivier Houchard * William Jolitz. 116fc729afSOlivier Houchard * 126fc729afSOlivier Houchard * Redistribution and use in source and binary forms, with or without 136fc729afSOlivier Houchard * modification, are permitted provided that the following conditions 146fc729afSOlivier Houchard * are met: 156fc729afSOlivier Houchard * 1. Redistributions of source code must retain the above copyright 166fc729afSOlivier Houchard * notice, this list of conditions and the following disclaimer. 176fc729afSOlivier Houchard * 2. Redistributions in binary form must reproduce the above copyright 186fc729afSOlivier Houchard * notice, this list of conditions and the following disclaimer in the 196fc729afSOlivier Houchard * documentation and/or other materials provided with the distribution. 206fc729afSOlivier Houchard * 3. Neither the name of the University nor the names of its contributors 216fc729afSOlivier Houchard * may be used to endorse or promote products derived from this software 226fc729afSOlivier Houchard * without specific prior written permission. 236fc729afSOlivier Houchard * 246fc729afSOlivier Houchard * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 256fc729afSOlivier Houchard * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 266fc729afSOlivier Houchard * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 276fc729afSOlivier Houchard * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 286fc729afSOlivier Houchard * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 296fc729afSOlivier Houchard * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 306fc729afSOlivier Houchard * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 316fc729afSOlivier Houchard * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 326fc729afSOlivier Houchard * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 336fc729afSOlivier Houchard * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 346fc729afSOlivier Houchard * SUCH DAMAGE. 356fc729afSOlivier Houchard */ 366fc729afSOlivier Houchard 376fc729afSOlivier Houchard #ifndef _MACHINE_ASM_H_ 386fc729afSOlivier Houchard #define _MACHINE_ASM_H_ 396fc729afSOlivier Houchard #include <sys/cdefs.h> 406fc729afSOlivier Houchard 416fc729afSOlivier Houchard #define _C_LABEL(x) x 426fc729afSOlivier Houchard #define _ASM_LABEL(x) x 436fc729afSOlivier Houchard 446fc729afSOlivier Houchard #ifndef _ALIGN_TEXT 45301e1601SIan Lepore # define _ALIGN_TEXT .align 2 466fc729afSOlivier Houchard #endif 476fc729afSOlivier Houchard 48ae160b23SAndrew Turner #ifndef _STANDALONE 49573447b6SAndrew Turner #define STOP_UNWINDING .cantunwind 50573447b6SAndrew Turner #define _FNSTART .fnstart 51573447b6SAndrew Turner #define _FNEND .fnend 52ba2f5f5eSRobert Watson #define _SAVE(...) .save __VA_ARGS__ 53573447b6SAndrew Turner #else 54573447b6SAndrew Turner #define STOP_UNWINDING 55573447b6SAndrew Turner #define _FNSTART 56573447b6SAndrew Turner #define _FNEND 57ba2f5f5eSRobert Watson #define _SAVE(...) 58573447b6SAndrew Turner #endif 59573447b6SAndrew Turner 606fc729afSOlivier Houchard /* 61de064ce4SIan Lepore * gas/arm uses @ as a single comment character and thus cannot be used here. 62de064ce4SIan Lepore * It recognises the # instead of an @ symbol in .type directives. 63de064ce4SIan Lepore */ 64de064ce4SIan Lepore #define _ASM_TYPE_FUNCTION #function 65de064ce4SIan Lepore #define _ASM_TYPE_OBJECT #object 66de064ce4SIan Lepore 67de064ce4SIan Lepore /* 6825166187SIan Lepore * EENTRY()/EEND() mark "extra" entry/exit points from a function. 69cef367e6SEitan Adler * LEENTRY()/LEEND() are the same for local symbols. 7025166187SIan Lepore * The unwind info cannot handle the concept of a nested function, or a function 7125166187SIan Lepore * with multiple .fnstart directives, but some of our assembler code is written 7225166187SIan Lepore * with multiple labels to allow entry at several points. The EENTRY() macro 7325166187SIan Lepore * defines such an extra entry point without a new .fnstart, so that it's 7425166187SIan Lepore * basically just a label that you can jump to. The EEND() macro does nothing 7525166187SIan Lepore * at all, except document the exit point associated with the same-named entry. 7625166187SIan Lepore */ 7771442935SIan Lepore #define GLOBAL(x) .global x 7871442935SIan Lepore 798465de8eSAndrew Turner #ifdef __thumb__ 808465de8eSAndrew Turner #define _FUNC_MODE .code 16; .thumb_func 818465de8eSAndrew Turner #else 828465de8eSAndrew Turner #define _FUNC_MODE .code 32 838465de8eSAndrew Turner #endif 848465de8eSAndrew Turner 858465de8eSAndrew Turner #define _LEENTRY(x) .type x,_ASM_TYPE_FUNCTION; _FUNC_MODE; x: 86b05d247eSIan Lepore #define _LEEND(x) /* nothing */ 87b05d247eSIan Lepore #define _EENTRY(x) GLOBAL(x); _LEENTRY(x) 88b05d247eSIan Lepore #define _EEND(x) _LEEND(x) 8925166187SIan Lepore 90b05d247eSIan Lepore #define _LENTRY(x) .text; _ALIGN_TEXT; _LEENTRY(x); _FNSTART 91b05d247eSIan Lepore #define _LEND(x) .size x, . - x; _FNEND 92b05d247eSIan Lepore #define _ENTRY(x) .text; _ALIGN_TEXT; _EENTRY(x); _FNSTART 93b05d247eSIan Lepore #define _END(x) _LEND(x) 94b643b934SAndrew Turner 95*c3f1a139SMateusz Guzik #define ENTRY(y) _ENTRY(_C_LABEL(y)); 96be483be8SIan Lepore #define EENTRY(y) _EENTRY(_C_LABEL(y)); 976fc729afSOlivier Houchard #define ENTRY_NP(y) _ENTRY(_C_LABEL(y)) 9825166187SIan Lepore #define EENTRY_NP(y) _EENTRY(_C_LABEL(y)) 990a794529SAndrew Turner #define END(y) _END(_C_LABEL(y)) 100be483be8SIan Lepore #define EEND(y) _EEND(_C_LABEL(y)) 101*c3f1a139SMateusz Guzik #define ASENTRY(y) _ENTRY(_ASM_LABEL(y)); 102*c3f1a139SMateusz Guzik #define ASLENTRY(y) _LENTRY(_ASM_LABEL(y)); 103be483be8SIan Lepore #define ASEENTRY(y) _EENTRY(_ASM_LABEL(y)); 104b05d247eSIan Lepore #define ASLEENTRY(y) _LEENTRY(_ASM_LABEL(y)); 1056fc729afSOlivier Houchard #define ASENTRY_NP(y) _ENTRY(_ASM_LABEL(y)) 106b05d247eSIan Lepore #define ASLENTRY_NP(y) _LENTRY(_ASM_LABEL(y)) 10725166187SIan Lepore #define ASEENTRY_NP(y) _EENTRY(_ASM_LABEL(y)) 108b05d247eSIan Lepore #define ASLEENTRY_NP(y) _LEENTRY(_ASM_LABEL(y)) 1090a794529SAndrew Turner #define ASEND(y) _END(_ASM_LABEL(y)) 110b05d247eSIan Lepore #define ASLEND(y) _LEND(_ASM_LABEL(y)) 111be483be8SIan Lepore #define ASEEND(y) _EEND(_ASM_LABEL(y)) 112b05d247eSIan Lepore #define ASLEEND(y) _LEEND(_ASM_LABEL(y)) 1136fc729afSOlivier Houchard 1146fc729afSOlivier Houchard #define ASMSTR .asciz 1156fc729afSOlivier Houchard 116294246bbSEd Maste #if defined(PIC) 1170a794529SAndrew Turner #define PLT_SYM(x) PIC_SYM(x, PLT) 1180a794529SAndrew Turner #define GOT_SYM(x) PIC_SYM(x, GOT) 1190a794529SAndrew Turner #define GOT_GET(x,got,sym) \ 1200a794529SAndrew Turner ldr x, sym; \ 1210a794529SAndrew Turner ldr x, [x, got] 1220a794529SAndrew Turner #define GOT_INIT(got,gotsym,pclabel) \ 1230a794529SAndrew Turner ldr got, gotsym; \ 124827422e3SAndrew Turner pclabel: add got, pc 1257f9b314fSAndrew Turner #ifdef __thumb__ 1260a794529SAndrew Turner #define GOT_INITSYM(gotsym,pclabel) \ 127301e1601SIan Lepore .align 2; \ 1287f9b314fSAndrew Turner gotsym: .word _C_LABEL(_GLOBAL_OFFSET_TABLE_) - (pclabel+4) 1297f9b314fSAndrew Turner #else 1307f9b314fSAndrew Turner #define GOT_INITSYM(gotsym,pclabel) \ 131301e1601SIan Lepore .align 2; \ 1327f9b314fSAndrew Turner gotsym: .word _C_LABEL(_GLOBAL_OFFSET_TABLE_) - (pclabel+8) 1337f9b314fSAndrew Turner #endif 1340a794529SAndrew Turner 1356fc729afSOlivier Houchard #ifdef __STDC__ 1366fc729afSOlivier Houchard #define PIC_SYM(x,y) x ## ( ## y ## ) 1376fc729afSOlivier Houchard #else 1386fc729afSOlivier Houchard #define PIC_SYM(x,y) x/**/(/**/y/**/) 1396fc729afSOlivier Houchard #endif 1400a794529SAndrew Turner 1416fc729afSOlivier Houchard #else 1420a794529SAndrew Turner #define PLT_SYM(x) x 1430a794529SAndrew Turner #define GOT_SYM(x) x 1440a794529SAndrew Turner #define GOT_GET(x,got,sym) \ 1450a794529SAndrew Turner ldr x, sym; 1460a794529SAndrew Turner #define GOT_INIT(got,gotsym,pclabel) 1470a794529SAndrew Turner #define GOT_INITSYM(gotsym,pclabel) 1486fc729afSOlivier Houchard #define PIC_SYM(x,y) x 149294246bbSEd Maste #endif /* PIC */ 1506fc729afSOlivier Houchard 1516fc729afSOlivier Houchard #undef __FBSDID 1526fc729afSOlivier Houchard #if !defined(lint) && !defined(STRIP_FBSDID) 1536fc729afSOlivier Houchard #define __FBSDID(s) .ident s 1546fc729afSOlivier Houchard #else 1556fc729afSOlivier Houchard #define __FBSDID(s) /* nothing */ 1566fc729afSOlivier Houchard #endif 1576fc729afSOlivier Houchard 1586fc729afSOlivier Houchard #define WEAK_ALIAS(alias,sym) \ 1596fc729afSOlivier Houchard .weak alias; \ 1606fc729afSOlivier Houchard alias = sym 1616fc729afSOlivier Houchard 1626fc729afSOlivier Houchard #ifdef __STDC__ 1636fc729afSOlivier Houchard #define WARN_REFERENCES(sym,msg) \ 1646fc729afSOlivier Houchard .stabs msg ## ,30,0,0,0 ; \ 1656fc729afSOlivier Houchard .stabs __STRING(_C_LABEL(sym)) ## ,1,0,0,0 1666fc729afSOlivier Houchard #else 1676fc729afSOlivier Houchard #define WARN_REFERENCES(sym,msg) \ 1686fc729afSOlivier Houchard .stabs msg,30,0,0,0 ; \ 1690a794529SAndrew Turner .stabs __STRING(sym),1,0,0,0 1706fc729afSOlivier Houchard #endif /* __STDC__ */ 1716fc729afSOlivier Houchard 1725f2c6402SOlivier Houchard # define RET bx lr 1735f2c6402SOlivier Houchard # define RETeq bxeq lr 1745f2c6402SOlivier Houchard # define RETne bxne lr 1755f2c6402SOlivier Houchard # define RETc(c) bx##c lr 1765f2c6402SOlivier Houchard 177eb4585bcSIan Lepore #define ISB isb 178eb4585bcSIan Lepore #define DSB dsb 179eb4585bcSIan Lepore #define DMB dmb 18054f9ec88SIan Lepore #define WFI wfi 181e336138cSAndrew Turner 182e336138cSAndrew Turner #if defined(__ARM_ARCH_7VE__) || defined(__clang__) 183e336138cSAndrew Turner #define MSR_ELR_HYP(regnum) msr elr_hyp, lr 184e336138cSAndrew Turner #define ERET eret 185e336138cSAndrew Turner #else 186e336138cSAndrew Turner #define MSR_ELR_HYP(regnum) .word (0xe12ef300 | regnum) 187e336138cSAndrew Turner #define ERET .word 0xe160006e 188e336138cSAndrew Turner #endif 189e336138cSAndrew Turner 190eb4585bcSIan Lepore 1916fc729afSOlivier Houchard #endif /* !_MACHINE_ASM_H_ */ 192