ff05e76047658c160417c422358b8d39301bf94a
[platform/upstream/glibc.git] / sysdeps / powerpc / powerpc32 / sysdep.h
1 /* Assembly macros for 32-bit PowerPC.
2    Copyright (C) 1999-2015 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, see
17    <http://www.gnu.org/licenses/>.  */
18
19 #include <sysdeps/powerpc/sysdep.h>
20
21 #ifdef __ASSEMBLER__
22
23 /* If compiled for profiling, call `_mcount' at the start of each
24    function.  */
25 #ifdef  PROF
26 /* The mcount code relies on a the return address being on the stack
27    to locate our caller and so it can restore it; so store one just
28    for its benefit.  */
29 # define CALL_MCOUNT                                                          \
30   mflr  r0;                                                                   \
31   stw   r0,4(r1);                                                             \
32   cfi_offset (lr, 4);                                                         \
33   bl    JUMPTARGET(_mcount);
34 #else  /* PROF */
35 # define CALL_MCOUNT            /* Do nothing.  */
36 #endif /* PROF */
37
38 #define ENTRY(name)                                                           \
39   .globl C_SYMBOL_NAME(name);                                                 \
40   .type C_SYMBOL_NAME(name),@function;                                        \
41   .align ALIGNARG(2);                                                         \
42   C_LABEL(name)                                                               \
43   cfi_startproc;                                                              \
44   CALL_MCOUNT
45
46 /* helper macro for accessing the 32-bit powerpc GOT. */
47
48 #define SETUP_GOT_ACCESS(regname,GOT_LABEL)                                   \
49         bcl     20,31,GOT_LABEL ;                                             \
50 GOT_LABEL:                      ;                                             \
51         mflr    (regname)
52
53 #define EALIGN_W_0  /* No words to insert.  */
54 #define EALIGN_W_1  nop
55 #define EALIGN_W_2  nop;nop
56 #define EALIGN_W_3  nop;nop;nop
57 #define EALIGN_W_4  EALIGN_W_3;nop
58 #define EALIGN_W_5  EALIGN_W_4;nop
59 #define EALIGN_W_6  EALIGN_W_5;nop
60 #define EALIGN_W_7  EALIGN_W_6;nop
61
62 /* EALIGN is like ENTRY, but does alignment to 'words'*4 bytes
63    past a 2^align boundary.  */
64 #ifdef PROF
65 # define EALIGN(name, alignt, words)                                          \
66   .globl C_SYMBOL_NAME(name);                                                 \
67   .type C_SYMBOL_NAME(name),@function;                                        \
68   .align ALIGNARG(2);                                                         \
69   C_LABEL(name)                                                               \
70   cfi_startproc;                                                              \
71   CALL_MCOUNT                                                                 \
72   b 0f;                                                                       \
73   .align ALIGNARG(alignt);                                                    \
74   EALIGN_W_##words;                                                           \
75   0:
76 #else /* PROF */
77 # define EALIGN(name, alignt, words)                                          \
78   .globl C_SYMBOL_NAME(name);                                                 \
79   .type C_SYMBOL_NAME(name),@function;                                        \
80   .align ALIGNARG(alignt);                                                    \
81   EALIGN_W_##words;                                                           \
82   C_LABEL(name)                                                               \
83   cfi_startproc;
84 #endif
85
86 #undef  END
87 #define END(name)                                                             \
88   cfi_endproc;                                                                \
89   ASM_SIZE_DIRECTIVE(name)
90
91 #define DO_CALL(syscall)                                                      \
92     li 0,syscall;                                                             \
93     sc
94
95 #undef JUMPTARGET
96 #ifdef PIC
97 # define JUMPTARGET(name) name##@plt
98 #else
99 # define JUMPTARGET(name) name
100 #endif
101
102 #if defined SHARED && defined PIC && !defined NO_HIDDEN
103 # undef HIDDEN_JUMPTARGET
104 # define HIDDEN_JUMPTARGET(name) __GI_##name##@local
105 #endif
106
107 #define PSEUDO(name, syscall_name, args)                                      \
108   .section ".text";                                                           \
109   ENTRY (name)                                                                \
110     DO_CALL (SYS_ify (syscall_name));
111
112 #define PSEUDO_RET                                                            \
113     bnslr+;                                                                   \
114     b __syscall_error@local
115 #define ret PSEUDO_RET
116
117 #undef  PSEUDO_END
118 #define PSEUDO_END(name)                                                      \
119   END (name)
120
121 #define PSEUDO_NOERRNO(name, syscall_name, args)                              \
122   .section ".text";                                                           \
123   ENTRY (name)                                                                \
124     DO_CALL (SYS_ify (syscall_name));
125
126 #define PSEUDO_RET_NOERRNO                                                    \
127     blr
128 #define ret_NOERRNO PSEUDO_RET_NOERRNO
129
130 #undef  PSEUDO_END_NOERRNO
131 #define PSEUDO_END_NOERRNO(name)                                              \
132   END (name)
133
134 #define PSEUDO_ERRVAL(name, syscall_name, args)                               \
135   .section ".text";                                                           \
136   ENTRY (name)                                                                \
137     DO_CALL (SYS_ify (syscall_name));
138
139 #define PSEUDO_RET_ERRVAL                                                     \
140     blr
141 #define ret_ERRVAL PSEUDO_RET_ERRVAL
142
143 #undef  PSEUDO_END_ERRVAL
144 #define PSEUDO_END_ERRVAL(name)                                               \
145   END (name)
146
147 /* Local labels stripped out by the linker.  */
148 #undef L
149 #define L(x) .L##x
150
151 #define XGLUE(a,b) a##b
152 #define GLUE(a,b) XGLUE (a,b)
153 #define GENERATE_GOT_LABEL(name) GLUE (.got_label, name)
154
155 /* Label in text section.  */
156 #define C_TEXT(name) name
157
158 #endif  /* __ASSEMBLER__ */