Home | History | Annotate | Line # | Download | only in include
asm.h revision 1.21.2.2
      1  1.21.2.2  thorpej /*	$NetBSD: asm.h,v 1.21.2.2 2002/05/31 18:07:32 thorpej Exp $	*/
      2  1.21.2.2  thorpej 
      3  1.21.2.2  thorpej /*-
      4  1.21.2.2  thorpej  * Copyright (c) 1990 The Regents of the University of California.
      5  1.21.2.2  thorpej  * All rights reserved.
      6  1.21.2.2  thorpej  *
      7  1.21.2.2  thorpej  * This code is derived from software contributed to Berkeley by
      8  1.21.2.2  thorpej  * William Jolitz.
      9  1.21.2.2  thorpej  *
     10  1.21.2.2  thorpej  * Redistribution and use in source and binary forms, with or without
     11  1.21.2.2  thorpej  * modification, are permitted provided that the following conditions
     12  1.21.2.2  thorpej  * are met:
     13  1.21.2.2  thorpej  * 1. Redistributions of source code must retain the above copyright
     14  1.21.2.2  thorpej  *    notice, this list of conditions and the following disclaimer.
     15  1.21.2.2  thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     16  1.21.2.2  thorpej  *    notice, this list of conditions and the following disclaimer in the
     17  1.21.2.2  thorpej  *    documentation and/or other materials provided with the distribution.
     18  1.21.2.2  thorpej  * 3. All advertising materials mentioning features or use of this software
     19  1.21.2.2  thorpej  *    must display the following acknowledgement:
     20  1.21.2.2  thorpej  *	This product includes software developed by the University of
     21  1.21.2.2  thorpej  *	California, Berkeley and its contributors.
     22  1.21.2.2  thorpej  * 4. Neither the name of the University nor the names of its contributors
     23  1.21.2.2  thorpej  *    may be used to endorse or promote products derived from this software
     24  1.21.2.2  thorpej  *    without specific prior written permission.
     25  1.21.2.2  thorpej  *
     26  1.21.2.2  thorpej  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     27  1.21.2.2  thorpej  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     28  1.21.2.2  thorpej  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     29  1.21.2.2  thorpej  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     30  1.21.2.2  thorpej  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     31  1.21.2.2  thorpej  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     32  1.21.2.2  thorpej  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     33  1.21.2.2  thorpej  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     34  1.21.2.2  thorpej  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     35  1.21.2.2  thorpej  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     36  1.21.2.2  thorpej  * SUCH DAMAGE.
     37  1.21.2.2  thorpej  *
     38  1.21.2.2  thorpej  *	@(#)asm.h	5.5 (Berkeley) 5/7/91
     39  1.21.2.2  thorpej  */
     40  1.21.2.2  thorpej 
     41  1.21.2.2  thorpej #ifndef _I386_ASM_H_
     42  1.21.2.2  thorpej #define _I386_ASM_H_
     43  1.21.2.2  thorpej 
     44  1.21.2.2  thorpej #ifdef PIC
     45  1.21.2.2  thorpej #define PIC_PROLOGUE	\
     46  1.21.2.2  thorpej 	pushl	%ebx;	\
     47  1.21.2.2  thorpej 	call	1f;	\
     48  1.21.2.2  thorpej 1:			\
     49  1.21.2.2  thorpej 	popl	%ebx;	\
     50  1.21.2.2  thorpej 	addl	$_GLOBAL_OFFSET_TABLE_+[.-1b], %ebx
     51  1.21.2.2  thorpej #define PIC_EPILOGUE	\
     52  1.21.2.2  thorpej 	popl	%ebx
     53  1.21.2.2  thorpej #define PIC_PLT(x)	x@PLT
     54  1.21.2.2  thorpej #define PIC_GOT(x)	x@GOT(%ebx)
     55  1.21.2.2  thorpej #define PIC_GOTOFF(x)	x@GOTOFF(%ebx)
     56  1.21.2.2  thorpej #else
     57  1.21.2.2  thorpej #define PIC_PROLOGUE
     58  1.21.2.2  thorpej #define PIC_EPILOGUE
     59  1.21.2.2  thorpej #define PIC_PLT(x)	x
     60  1.21.2.2  thorpej #define PIC_GOT(x)	x
     61  1.21.2.2  thorpej #define PIC_GOTOFF(x)	x
     62  1.21.2.2  thorpej #endif
     63  1.21.2.2  thorpej 
     64  1.21.2.2  thorpej #ifdef __ELF__
     65  1.21.2.2  thorpej # define _C_LABEL(x)	x
     66  1.21.2.2  thorpej #else
     67  1.21.2.2  thorpej # ifdef __STDC__
     68  1.21.2.2  thorpej #  define _C_LABEL(x)	_ ## x
     69  1.21.2.2  thorpej # else
     70  1.21.2.2  thorpej #  define _C_LABEL(x)	_/**/x
     71  1.21.2.2  thorpej # endif
     72  1.21.2.2  thorpej #endif
     73  1.21.2.2  thorpej #define	_ASM_LABEL(x)	x
     74  1.21.2.2  thorpej 
     75  1.21.2.2  thorpej #ifdef __STDC__
     76  1.21.2.2  thorpej # define __CONCAT(x,y)	x ## y
     77  1.21.2.2  thorpej # define __STRING(x)	#x
     78  1.21.2.2  thorpej #else
     79  1.21.2.2  thorpej # define __CONCAT(x,y)	x/**/y
     80  1.21.2.2  thorpej # define __STRING(x)	"x"
     81  1.21.2.2  thorpej #endif
     82  1.21.2.2  thorpej 
     83  1.21.2.2  thorpej /* let kernels and others override entrypoint alignment */
     84  1.21.2.2  thorpej #ifndef _ALIGN_TEXT
     85  1.21.2.2  thorpej # ifdef __ELF__
     86  1.21.2.2  thorpej #  define _ALIGN_TEXT .align 4
     87  1.21.2.2  thorpej # else
     88  1.21.2.2  thorpej #  define _ALIGN_TEXT .align 2
     89  1.21.2.2  thorpej # endif
     90  1.21.2.2  thorpej #endif
     91  1.21.2.2  thorpej 
     92  1.21.2.2  thorpej #define _ENTRY(x) \
     93  1.21.2.2  thorpej 	.text; _ALIGN_TEXT; .globl x; .type x,@function; x:
     94  1.21.2.2  thorpej 
     95  1.21.2.2  thorpej #ifdef _KERNEL
     96  1.21.2.2  thorpej /* XXX Can't use __CONCAT() here, as it would be evaluated incorrectly. */
     97  1.21.2.2  thorpej #ifdef __ELF__
     98  1.21.2.2  thorpej #ifdef __STDC__
     99  1.21.2.2  thorpej #define	IDTVEC(name)	ALIGN_TEXT; .globl X ## name; X ## name:
    100  1.21.2.2  thorpej #else
    101  1.21.2.2  thorpej #define	IDTVEC(name)	ALIGN_TEXT; .globl X/**/name; X/**/name:
    102  1.21.2.2  thorpej #endif /* __STDC__ */
    103  1.21.2.2  thorpej #else
    104  1.21.2.2  thorpej #ifdef __STDC__
    105  1.21.2.2  thorpej #define	IDTVEC(name)	ALIGN_TEXT; .globl _X ## name; _X ## name:
    106  1.21.2.2  thorpej #else
    107  1.21.2.2  thorpej #define	IDTVEC(name)	ALIGN_TEXT; .globl _X/**/name; _X/**/name:
    108  1.21.2.2  thorpej #endif /* __STDC__ */
    109  1.21.2.2  thorpej #endif /* __ELF__ */
    110  1.21.2.2  thorpej #endif /* _KERNEL */
    111  1.21.2.2  thorpej 
    112  1.21.2.2  thorpej #ifdef GPROF
    113  1.21.2.2  thorpej # ifdef __ELF__
    114  1.21.2.2  thorpej #  define _PROF_PROLOGUE	\
    115  1.21.2.2  thorpej 	pushl %ebp; movl %esp,%ebp; call PIC_PLT(__mcount); popl %ebp
    116  1.21.2.2  thorpej # else
    117  1.21.2.2  thorpej #  define _PROF_PROLOGUE	\
    118  1.21.2.2  thorpej 	pushl %ebp; movl %esp,%ebp; call PIC_PLT(mcount); popl %ebp
    119  1.21.2.2  thorpej # endif
    120  1.21.2.2  thorpej #else
    121  1.21.2.2  thorpej # define _PROF_PROLOGUE
    122  1.21.2.2  thorpej #endif
    123  1.21.2.2  thorpej 
    124  1.21.2.2  thorpej #define	ENTRY(y)	_ENTRY(_C_LABEL(y)); _PROF_PROLOGUE
    125  1.21.2.2  thorpej #define	NENTRY(y)	_ENTRY(_C_LABEL(y))
    126  1.21.2.2  thorpej #define	ASENTRY(y)	_ENTRY(_ASM_LABEL(y)); _PROF_PROLOGUE
    127  1.21.2.2  thorpej 
    128  1.21.2.2  thorpej #define	ASMSTR		.asciz
    129  1.21.2.2  thorpej 
    130  1.21.2.2  thorpej #ifdef __ELF__
    131  1.21.2.2  thorpej #define RCSID(x)	.section ".ident"; .asciz x
    132  1.21.2.2  thorpej #else
    133  1.21.2.2  thorpej #define RCSID(x)	.text; .asciz x
    134  1.21.2.2  thorpej #endif
    135  1.21.2.2  thorpej 
    136  1.21.2.2  thorpej #ifdef NO_KERNEL_RCSIDS
    137  1.21.2.2  thorpej #define	__KERNEL_RCSID(_n, _s)	/* nothing */
    138  1.21.2.2  thorpej #else
    139  1.21.2.2  thorpej #define	__KERNEL_RCSID(_n, _s)	RCSID(_s)
    140  1.21.2.2  thorpej #endif
    141  1.21.2.2  thorpej 
    142  1.21.2.2  thorpej #ifdef __ELF__
    143  1.21.2.2  thorpej #define	WEAK_ALIAS(alias,sym)						\
    144  1.21.2.2  thorpej 	.weak alias;							\
    145  1.21.2.2  thorpej 	alias = sym
    146  1.21.2.2  thorpej #endif
    147  1.21.2.2  thorpej 
    148  1.21.2.2  thorpej #ifdef __STDC__
    149  1.21.2.2  thorpej #define	WARN_REFERENCES(sym,msg)					\
    150  1.21.2.2  thorpej 	.stabs msg ## ,30,0,0,0 ;					\
    151  1.21.2.2  thorpej 	.stabs __STRING(_C_LABEL(sym)) ## ,1,0,0,0
    152  1.21.2.2  thorpej #elif defined(__ELF__)
    153  1.21.2.2  thorpej #define	WARN_REFERENCES(sym,msg)					\
    154  1.21.2.2  thorpej 	.stabs msg,30,0,0,0 ;						\
    155  1.21.2.2  thorpej 	.stabs __STRING(sym),1,0,0,0
    156  1.21.2.2  thorpej #else
    157  1.21.2.2  thorpej #define	WARN_REFERENCES(sym,msg)					\
    158  1.21.2.2  thorpej 	.stabs msg,30,0,0,0 ;						\
    159  1.21.2.2  thorpej 	.stabs __STRING(_/**/sym),1,0,0,0
    160  1.21.2.2  thorpej #endif /* __STDC__ */
    161  1.21.2.2  thorpej 
    162  1.21.2.2  thorpej #endif /* !_I386_ASM_H_ */
    163