Home | History | Annotate | Line # | Download | only in include
asm.h revision 1.7
      1 /*	$NetBSD: asm.h,v 1.7 2005/12/11 12:16:46 christos Exp $	*/
      2 
      3 /*
      4  * Copyright (c) 1990 The Regents of the University of California.
      5  * All rights reserved.
      6  *
      7  * This code is derived from software contributed to Berkeley by
      8  * William Jolitz.
      9  *
     10  * Redistribution and use in source and binary forms, with or without
     11  * modification, are permitted provided that the following conditions
     12  * are met:
     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.
     21  *
     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
     32  * SUCH DAMAGE.
     33  *
     34  *	from: @(#)asm.h	5.5 (Berkeley) 5/7/91
     35  */
     36 
     37 #ifndef _ARM32_ASM_H_
     38 #define _ARM32_ASM_H_
     39 
     40 #ifdef __ELF__
     41 # define _C_LABEL(x)	x
     42 #else
     43 # ifdef __STDC__
     44 #  define _C_LABEL(x)	_ ## x
     45 # else
     46 #  define _C_LABEL(x)	_/**/x
     47 # endif
     48 #endif
     49 #define	_ASM_LABEL(x)	x
     50 
     51 #ifdef __STDC__
     52 # define __CONCAT(x,y)	x ## y
     53 # define __STRING(x)	#x
     54 #else
     55 # define __CONCAT(x,y)	x/**/y
     56 # define __STRING(x)	"x"
     57 #endif
     58 
     59 #ifndef _ALIGN_TEXT
     60 # define _ALIGN_TEXT .align 0
     61 #endif
     62 
     63 /*
     64  * gas/arm uses @ as a single comment character and thus cannot be used here
     65  * Instead it recognised the # instead of an @ symbols in .type directives
     66  * We define a couple of macros so that assembly code will not be dependant
     67  * on one or the other.
     68  */
     69 #define _ASM_TYPE_FUNCTION	#function
     70 #define _ASM_TYPE_OBJECT	#object
     71 #define _ENTRY(x) \
     72 	.text; _ALIGN_TEXT; .globl x; .type x,_ASM_TYPE_FUNCTION; x:
     73 
     74 #ifdef GPROF
     75 # ifdef __ELF__
     76 #  define _PROF_PROLOGUE	\
     77 	mov ip, lr; bl __mcount
     78 # else
     79 #  define _PROF_PROLOGUE	\
     80 	mov ip,lr; bl mcount
     81 # endif
     82 #else
     83 # define _PROF_PROLOGUE
     84 #endif
     85 
     86 #define	ENTRY(y)	_ENTRY(_C_LABEL(y)); _PROF_PROLOGUE
     87 #define	ENTRY_NP(y)	_ENTRY(_C_LABEL(y))
     88 #define	ASENTRY(y)	_ENTRY(_ASM_LABEL(y)); _PROF_PROLOGUE
     89 #define	ASENTRY_NP(y)	_ENTRY(_ASM_LABEL(y))
     90 
     91 #define	ASMSTR		.asciz
     92 
     93 #if defined(__ELF__) && defined(PIC)
     94 #ifdef __STDC__
     95 #define	PIC_SYM(x,y)	x ## ( ## y ## )
     96 #else
     97 #define	PIC_SYM(x,y)	x/**/(/**/y/**/)
     98 #endif
     99 #else
    100 #define	PIC_SYM(x,y)	x
    101 #endif
    102 
    103 #ifdef __ELF__
    104 #define RCSID(x)	.section ".ident"; .asciz x
    105 #else
    106 #define RCSID(x)	.text; .asciz x
    107 #endif
    108 
    109 #ifdef __ELF__
    110 #define	WEAK_ALIAS(alias,sym)						\
    111 	.weak alias;							\
    112 	alias = sym
    113 #endif
    114 
    115 #ifdef __STDC__
    116 #define	WARN_REFERENCES(sym,msg)					\
    117 	.stabs msg ## ,30,0,0,0 ;					\
    118 	.stabs __STRING(_C_LABEL(sym)) ## ,1,0,0,0
    119 #elif defined(__ELF__)
    120 #define	WARN_REFERENCES(sym,msg)					\
    121 	.stabs msg,30,0,0,0 ;						\
    122 	.stabs __STRING(sym),1,0,0,0
    123 #else
    124 #define	WARN_REFERENCES(sym,msg)					\
    125 	.stabs msg,30,0,0,0 ;						\
    126 	.stabs __STRING(_/**/sym),1,0,0,0
    127 #endif /* __STDC__ */
    128 
    129 #if defined (__ARM_ARCH_6__) || defined (__ARM_ARCH_6J__)
    130 #define _ARM_ARCH_6
    131 #endif
    132 
    133 #if defined (_ARM_ARCH_6) || defined (__ARM_ARCH_5__) || \
    134     defined (__ARM_ARCH_5T__) || defined (__ARM_ARCH_5TE__) || \
    135     defined (__ARM_ARCH_5TEJ__)
    136 #define _ARM_ARCH_5
    137 #endif
    138 
    139 #if defined (_ARM_ARCH_5) || defined (__ARM_ARCH_4T__)
    140 #define _ARM_ARCH_4T
    141 #endif
    142 
    143 
    144 #if defined (_ARM_ARCH_4T)
    145 # define RET	bx	lr
    146 # ifdef __STDC__
    147 #  define RETc(c) bx##c	lr
    148 # else
    149 #  define RETc(c) bx/**/c	lr
    150 # endif
    151 #else
    152 # define RET	mov	pc, lr
    153 # ifdef __STDC__
    154 #  define RETc(c) mov##c	pc, lr
    155 # else
    156 #  define RETc(c) mov/**/c	pc, lr
    157 # endif
    158 #endif
    159 
    160 #endif /* !_ARM_ASM_H_ */
    161