1 /* $NetBSD: asm.h,v 1.16 2012/09/01 14:46:25 matt Exp $ */
4 * Copyright (c) 1990 The Regents of the University of California.
7 * This code is derived from software contributed to Berkeley by
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * from: @(#)asm.h 5.5 (Berkeley) 5/7/91
40 #include <arm/cdefs.h>
42 #define __BIT(n) (1 << (n))
43 #define __BITS(hi,lo) ((~((~0)<<((hi)+1)))&((~0)<<(lo)))
46 #define _ASM_LABEL(x) x
49 # define __CONCAT(x,y) x ## y
50 # define __STRING(x) #x
52 # define __CONCAT(x,y) x/**/y
53 # define __STRING(x) "x"
57 # define _ALIGN_TEXT .align 0
61 * gas/arm uses @ as a single comment character and thus cannot be used here
62 * Instead it recognised the # instead of an @ symbols in .type directives
63 * We define a couple of macros so that assembly code will not be dependent
64 * on one or the other.
66 #define _ASM_TYPE_FUNCTION %function
67 #define _ASM_TYPE_OBJECT %object
70 .text; _ALIGN_TEXT; .globl x; .type x,_ASM_TYPE_FUNCTION; .thumb_func; x:
73 .text; _ALIGN_TEXT; .globl x; .type x,_ASM_TYPE_FUNCTION; x:
75 #define _END(x) .size x,.-x
78 # define _PROF_PROLOGUE \
79 mov ip, lr; bl __mcount
81 # define _PROF_PROLOGUE
84 #define ENTRY(y) _ENTRY(_C_LABEL(y)); _PROF_PROLOGUE
85 #define ENTRY_NP(y) _ENTRY(_C_LABEL(y))
86 #define END(y) _END(_C_LABEL(y))
87 #define ASENTRY(y) _ENTRY(_ASM_LABEL(y)); _PROF_PROLOGUE
88 #define ASENTRY_NP(y) _ENTRY(_ASM_LABEL(y))
89 #define ASEND(y) _END(_ASM_LABEL(y))
94 #define LABEL(y) _LABEL(_C_LABEL(y))
96 #endif /* defined(__minix) */
102 #define GOT_SYM(x) PIC_SYM(x, GOTOFF)
103 #define GOT_GET(x,got,sym) \
108 #define PLT_SYM(x) PIC_SYM(x, PLT)
109 #define GOT_SYM(x) PIC_SYM(x, GOT)
110 #define GOT_GET(x,got,sym) \
113 #endif /* __thumb__ */
115 #define GOT_INIT(got,gotsym,pclabel) \
119 #define GOT_INITSYM(gotsym,pclabel) \
120 gotsym: .word _C_LABEL(_GLOBAL_OFFSET_TABLE_) + (. - (pclabel+4))
123 #define PIC_SYM(x,y) x ## ( ## y ## )
125 #define PIC_SYM(x,y) x/**/(/**/y/**/)
131 #define GOT_GET(x,got,sym) \
133 #define GOT_INIT(got,gotsym,pclabel)
134 #define GOT_INITSYM(gotsym,pclabel)
135 #define PIC_SYM(x,y) x
138 #define RCSID(x) .pushsection ".ident"; .asciz x; .popsection
140 #define WEAK_ALIAS(alias,sym) \
145 * STRONG_ALIAS: create a strong alias.
147 #define STRONG_ALIAS(alias,sym) \
152 #define WARN_REFERENCES(sym,msg) \
153 .pushsection .gnu.warning. ## sym; \
157 #define WARN_REFERENCES(sym,msg) \
158 .pushsection .gnu.warning./**/sym; \
161 #endif /* __STDC__ */
166 # define XPOPRET pop {pc}
168 # define XPUSH stmfd sp!,
169 # define XPOP ldmfd sp!,
171 # define XPOPRET ldmfd sp!, {pc}
173 # define XPOPRET ldmfd sp!, {lr}; mov pc, lr
177 #if defined (_ARM_ARCH_4T)
179 # define RETc(c) __CONCAT(bx,c) lr
181 # define RET mov pc, lr
182 # define RETc(c) __CONCAT(mov,c) pc, lr
186 #define IMPORT(sym) \
187 .extern _C_LABEL(sym)
190 #endif /* !_ARM_ASM_H_ */