* sysdeps/m68k/bits/byteswap.h (__bswap_32): Add cast to avoid
[glibc/pb-stable.git] / sysdeps / sh / sysdep.h
blobb0e791ef3f238c31dc0f6299c04ff54ad4ef924e
1 /* Assembler macros for SH.
2 Copyright (C) 1999, 2000 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details.
15 You should have received a copy of the GNU Library General Public
16 License along with the GNU C Library; see the file COPYING.LIB. If not,
17 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
20 #include <sysdeps/generic/sysdep.h>
22 #ifdef __ASSEMBLER__
24 /* Syntactic details of assembler. */
26 #ifdef HAVE_ELF
28 #define ALIGNARG(log2) log2
29 /* For ELF we need the `.type' directive to make shared libs work right. */
30 #define ASM_TYPE_DIRECTIVE(name,typearg) .type name,@##typearg;
31 #define ASM_SIZE_DIRECTIVE(name) .size name,.-name
33 #ifdef SHARED
34 #define PLTJMP(_x) _x##@PLT
35 #else
36 #define PLTJMP(_x) _x
37 #endif
39 #else
41 #define ALIGNARG(log2) log2
42 #define ASM_TYPE_DIRECTIVE(name,type) /* Nothing is specified. */
43 #define ASM_SIZE_DIRECTIVE(name) /* Nothing is specified. */
45 #define PLTJMP(_x) _x
47 #endif
49 /* Define an entry point visible from C. */
50 #define ENTRY(name) \
51 ASM_GLOBAL_DIRECTIVE C_SYMBOL_NAME(name); \
52 ASM_TYPE_DIRECTIVE (C_SYMBOL_NAME(name),function) \
53 .align ALIGNARG(5); \
54 C_LABEL(name) \
55 CALL_MCOUNT
57 #undef END
58 #define END(name) \
59 ASM_SIZE_DIRECTIVE(C_SYMBOL_NAME(name))
61 /* If compiled for profiling, call `mcount' at the start of each function. */
62 #ifdef PROF
63 #define CALL_MCOUNT /* NOTYET */
64 #else
65 #define CALL_MCOUNT /* Do nothing. */
66 #endif
68 #ifdef NO_UNDERSCORES
69 /* Since C identifiers are not normally prefixed with an underscore
70 on this system, the asm identifier `syscall_error' intrudes on the
71 C name space. Make sure we use an innocuous name. */
72 #define syscall_error __syscall_error
73 #define mcount _mcount
74 #endif
76 #endif /* __ASSEMBLER__ */