OSDN Git Service

libpthread/nptl: core of the "Native Posix Threading Library" for uClibc
[uclinux-h8/uClibc.git] / libpthread / nptl / sysdeps / arm / sysdep.h
1 /* Assembler macros for ARM.
2    Copyright (C) 1997, 1998, 2003 Free Software Foundation, Inc.
3    This file is part of the GNU C Library.
4
5    The GNU C Library is free software; you can redistribute it and/or
6    modify it under the terms of the GNU Lesser General Public
7    License as published by the Free Software Foundation; either
8    version 2.1 of the License, or (at your option) any later version.
9
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    Lesser General Public License for more details.
14
15    You should have received a copy of the GNU Lesser General Public
16    License along with the GNU C Library; if not, write to the Free
17    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18    02111-1307 USA.  */
19
20 #include <sysdeps/generic/sysdep.h>
21
22 #ifdef  __ASSEMBLER__
23
24 /* Syntactic details of assembler.  */
25
26 #define ALIGNARG(log2) log2
27 /* For ELF we need the `.type' directive to make shared libs work right.  */
28 #define ASM_TYPE_DIRECTIVE(name,typearg) .type name,%##typearg;
29 #define ASM_SIZE_DIRECTIVE(name) .size name,.-name
30
31 /* In ELF C symbols are asm symbols.  */
32 #undef  NO_UNDERSCORES
33 #define NO_UNDERSCORES
34
35 #define PLTJMP(_x)      _x##(PLT)
36
37 /* APCS-32 doesn't preserve the condition codes across function call. */
38 #ifdef __APCS_32__
39 #define LOADREGS(cond, base, reglist...)\
40         ldm##cond       base,reglist
41 #ifdef __USE_BX__
42 #define RETINSTR(cond, reg)     \
43         bx##cond        reg
44 #define DO_RET(_reg)            \
45         bx _reg
46 #else
47 #define RETINSTR(cond, reg)     \
48         mov##cond       pc, reg
49 #define DO_RET(_reg)            \
50         mov pc, _reg
51 #endif
52 #else  /* APCS-26 */
53 #define LOADREGS(cond, base, reglist...)\
54         ldm##cond       base,reglist^
55 #define RETINSTR(cond, reg)     \
56         mov##cond##s    pc, reg
57 #define DO_RET(_reg)            \
58         movs pc, _reg
59 #endif
60
61 /* Define an entry point visible from C.  */
62 #define ENTRY(name)                                                           \
63   ASM_GLOBAL_DIRECTIVE C_SYMBOL_NAME(name);                                   \
64   ASM_TYPE_DIRECTIVE (C_SYMBOL_NAME(name),function)                           \
65   .align ALIGNARG(4);                                                         \
66   name##:                                                                     \
67   CALL_MCOUNT
68
69 #undef  END
70 #define END(name)                                                             \
71   ASM_SIZE_DIRECTIVE(name)
72
73 /* If compiled for profiling, call `mcount' at the start of each function.  */
74 #ifdef  PROF
75 #define CALL_MCOUNT                     \
76         str     lr,[sp, #-4]!   ;       \
77         bl      PLTJMP(mcount)  ;       \
78         ldr     lr, [sp], #4    ;
79 #else
80 #define CALL_MCOUNT             /* Do nothing.  */
81 #endif
82
83 #ifdef  NO_UNDERSCORES
84 /* Since C identifiers are not normally prefixed with an underscore
85    on this system, the asm identifier `syscall_error' intrudes on the
86    C name space.  Make sure we use an innocuous name.  */
87 #define syscall_error   __syscall_error
88 #define mcount          _mcount
89 #endif
90
91 #endif  /* __ASSEMBLER__ */
92