asm.h revision 1.39.2.1 1 /* $NetBSD: asm.h,v 1.39.2.1 2013/01/16 05:33:02 yamt Exp $ */
2
3 /*
4 * Copyright (C) 1995, 1996 Wolfgang Solfrank.
5 * Copyright (C) 1995, 1996 TooLs GmbH.
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. All advertising materials mentioning features or use of this software
17 * must display the following acknowledgement:
18 * This product includes software developed by TooLs GmbH.
19 * 4. The name of TooLs GmbH may not be used to endorse or promote products
20 * derived from this software without specific prior written permission.
21 *
22 * THIS SOFTWARE IS PROVIDED BY TOOLS GMBH ``AS IS'' AND ANY EXPRESS OR
23 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25 * IN NO EVENT SHALL TOOLS GMBH BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
27 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
28 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
29 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
30 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
31 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 */
33
34 #ifndef _PPC_ASM_H_
35 #define _PPC_ASM_H_
36
37 #ifdef _LP64
38
39 /* ppc64 is always PIC, r2 is always the TOC */
40
41 # define PIC_PLT(x) .x
42
43 #else
44
45 # ifdef PIC
46 # define PIC_PROLOGUE XXX
47 # define PIC_EPILOGUE XXX
48 # define PIC_PLT(x) x+32768@plt
49 # ifdef __STDC__
50 # define PIC_TOCNAME(name) .LCTOC_##name
51 # else
52 # define PIC_TOCNAME(name) .LCTOC_/**/name
53 # endif /* __STDC __*/
54 # define PIC_TOCSETUP(name, reg) \
55 .pushsection ".got2","aw" ;\
56 PIC_TOCNAME(name) = . + 32768 ;\
57 .popsection ;\
58 bcl 20,31,1001f ;\
59 1001: mflr reg ;\
60 addis reg,reg,PIC_TOCNAME(name)-1001b@ha ;\
61 addi reg,reg,PIC_TOCNAME(name)-1001b@l
62 # define PIC_GOTSETUP(reg) \
63 bcl 20,31,2002f ;\
64 2002: mflr reg ;\
65 addis reg,reg,_GLOBAL_OFFSET_TABLE_-2002b@ha ;\
66 addi reg,reg,_GLOBAL_OFFSET_TABLE_-2002b@l
67 # ifdef __STDC__
68 # define PIC_GOT(x) XXX
69 # define PIC_GOTOFF(x) XXX
70 # else /* not __STDC__ */
71 # define PIC_GOT(x) XXX
72 # define PIC_GOTOFF(x) XXX
73 # endif /* __STDC__ */
74 # else /* !PIC */
75 # define PIC_PROLOGUE
76 # define PIC_EPILOGUE
77 # define PIC_PLT(x) x
78 # define PIC_GOT(x) x
79 # define PIC_GOTOFF(x) x
80 # define PIC_GOTSETUP(r)
81 # define PIC_TOCSETUP(n, r)
82 # endif /* PIC */
83
84 #endif /* __LP64__ */
85
86 #define _C_LABEL(x) x
87 #define _ASM_LABEL(x) x
88
89 #define _GLOBAL(x) \
90 .data; .align 2; .globl x; x:
91
92 #ifdef GPROF
93 # define _PROF_PROLOGUE mflr 0; stw 0,4(1); bl _mcount
94 #else
95 # define _PROF_PROLOGUE
96 #endif
97
98 #ifdef _LP64
99
100 # define SF_HEADER_SZ 48
101 # define SF_PARAM_SZ 64
102 # define SF_SZ (SF_HEADER_SZ + SF_PARAM_SZ)
103
104 # define SF_SP 0
105 # define SF_CR 8
106 # define SF_LR 16
107 # define SF_PARAM SF_HEADER_SZ
108
109 # define _ENTRY(y) \
110 .globl y; \
111 .section ".opd","aw"; \
112 .align 3; \
113 y: .quad .y,.TOC.@tocbase,0; \
114 .previous; \
115 .size y,24; \
116 .type .y,@function; \
117 .globl .y; \
118 .align 3; \
119 .y:
120
121 # define ENTRY(y) _ENTRY(y)
122
123 # define END(y)
124
125 # define CALL(y) \
126 bl .y; \
127 nop
128
129 # define ENTRY_NOPROFILE(y) ENTRY(y)
130 # define ASENTRY(y) ENTRY(y)
131 #else /* !_LP64 */
132
133 # define _ENTRY(x) \
134 .text; .align 2; .globl x; .type x,@function; x:
135
136 # define ENTRY(y) _ENTRY(_C_LABEL(y)); _PROF_PROLOGUE
137
138 # define END(y) .size _C_LABEL(y),.-_C_LABEL(y)
139
140 # define CALL(y) \
141 bl y
142
143 # define ENTRY_NOPROFILE(y) _ENTRY(_C_LABEL(y))
144 # define ASENTRY(y) _ENTRY(_ASM_LABEL(y)); _PROF_PROLOGUE
145 #endif /* __LP64__ */
146
147 #define GLOBAL(y) _GLOBAL(_C_LABEL(y))
148
149 #define ASMSTR .asciz
150
151 #undef __RCSID
152 #define RCSID(x) __RCSID(x)
153 #define __RCSID(x) .pushsection .ident; .asciz x; .popsection
154
155 #ifdef __ELF__
156 # define WEAK_ALIAS(alias,sym) \
157 .weak alias; \
158 alias = sym
159 #endif /* __ELF__ */
160 /*
161 * STRONG_ALIAS: create a strong alias.
162 */
163 #define STRONG_ALIAS(alias,sym) \
164 .globl alias; \
165 alias = sym
166
167 #ifdef __STDC__
168 # define WARN_REFERENCES(sym,msg) \
169 .pushsection .gnu.warning. ## sym; \
170 .ascii msg; \
171 .popsection
172 #else
173 # define WARN_REFERENCES(sym,msg) \
174 .pushsection .gnu.warning./**/sym; \
175 .ascii msg; \
176 .popsection
177 #endif /* __STDC__ */
178
179 #ifdef _KERNEL
180 /*
181 * Get cpu_info pointer for current processor. Always in SPRG0. *ALWAYS*
182 */
183 # define GET_CPUINFO(r) mfsprg r,0
184 /*
185 * IN:
186 * R4[er] = first free byte beyond end/esym.
187 *
188 * OUT:
189 * R1[sp] = new kernel stack
190 * R4[er] = kernelend
191 */
192
193 # ifdef CI_INTSTK
194 # define INIT_CPUINFO_INTSTK(er,tmp1) \
195 addi er,er,INTSTK; \
196 stptr er,CI_INTSTK(tmp1)
197 # else
198 # define INIT_CPUINFO_INTSTK(er,tmp1) /* nothing */
199 # endif /* CI_INTSTK */
200
201 /*
202 * We use lis/ori instead of lis/addi in case tmp2 is r0.
203 */
204 # define INIT_CPUINFO(er,sp,tmp1,tmp2) \
205 li tmp1,PAGE_MASK; \
206 add er,er,tmp1; \
207 andc er,er,tmp1; /* page align */ \
208 lis tmp1,_C_LABEL(cpu_info)@ha; \
209 addi tmp1,tmp1,_C_LABEL(cpu_info)@l; \
210 mtsprg0 tmp1; /* save for later use */ \
211 INIT_CPUINFO_INTSTK(er,tmp1); \
212 lis tmp2,_C_LABEL(emptyidlespin)@h; \
213 ori tmp2,tmp2,_C_LABEL(emptyidlespin)@l; \
214 stptr tmp2,CI_IDLESPIN(tmp1); \
215 li tmp2,-1; \
216 stint tmp2,CI_IDEPTH(tmp1); \
217 li tmp2,0; \
218 lis %r13,_C_LABEL(lwp0)@h; \
219 ori %r13,%r13,_C_LABEL(lwp0)@l; \
220 stptr er,L_PCB(%r13); /* XXXuvm_lwp_getuarea */ \
221 stptr tmp1,L_CPU(%r13); \
222 addi er,er,USPACE; /* stackpointer for lwp0 */ \
223 addi sp,er,-FRAMELEN-CALLFRAMELEN; /* stackpointer for lwp0 */ \
224 stptr sp,L_MD_UTF(%r13); /* save in lwp0.l_md.md_utf */ \
225 /* er = end of mem reserved for kernel */ \
226 li tmp2,0; \
227 stptr tmp2,-CALLFRAMELEN(er); /* end of stack chain */ \
228 stptru tmp2,-CALLFRAMELEN(sp) /* end of stack chain */
229
230 #endif /* _KERNEL */
231
232
233 #if defined(_REGNAMES) && (defined(_KERNEL) || defined(_STANDALONE))
234 /* Condition Register Bit Fields */
235 # define cr0 0
236 # define cr1 1
237 # define cr2 2
238 # define cr3 3
239 # define cr4 4
240 # define cr5 5
241 # define cr6 6
242 # define cr7 7
243 /* General Purpose Registers (GPRs) */
244 # define r0 0
245 # define r1 1
246 # define r2 2
247 # define r3 3
248 # define r4 4
249 # define r5 5
250 # define r6 6
251 # define r7 7
252 # define r8 8
253 # define r9 9
254 # define r10 10
255 # define r11 11
256 # define r12 12
257 # define r13 13
258 # define r14 14
259 # define r15 15
260 # define r16 16
261 # define r17 17
262 # define r18 18
263 # define r19 19
264 # define r20 20
265 # define r21 21
266 # define r22 22
267 # define r23 23
268 # define r24 24
269 # define r25 25
270 # define r26 26
271 # define r27 27
272 # define r28 28
273 # define r29 29
274 # define r30 30
275 # define r31 31
276 /* Floating Point Registers (FPRs) */
277 # define fr0 0
278 # define fr1 1
279 # define fr2 2
280 # define fr3 3
281 # define fr4 4
282 # define fr5 5
283 # define fr6 6
284 # define fr7 7
285 # define fr8 8
286 # define fr9 9
287 # define fr10 10
288 # define fr11 11
289 # define fr12 12
290 # define fr13 13
291 # define fr14 14
292 # define fr15 15
293 # define fr16 16
294 # define fr17 17
295 # define fr18 18
296 # define fr19 19
297 # define fr20 20
298 # define fr21 21
299 # define fr22 22
300 # define fr23 23
301 # define fr24 24
302 # define fr25 25
303 # define fr26 26
304 # define fr27 27
305 # define fr28 28
306 # define fr29 29
307 # define fr30 30
308 # define fr31 31
309 #endif /* _REGNAMES && (_KERNEL || _STANDALONE) */
310
311 /*
312 * Add some psuedo instructions to made sharing of assembly versions of
313 * ILP32 and LP64 code possible.
314 */
315 #define ldint lwz /* not needed but for completeness */
316 #define ldintu lwzu /* not needed but for completeness */
317 #define stint stw /* not needed but for completeness */
318 #define stintu stwu /* not needed but for completeness */
319
320 #ifndef _LP64
321
322 # define ldlong lwz /* load "C" long */
323 # define ldlongu lwzu /* load "C" long with udpate */
324 # define stlong stw /* load "C" long */
325 # define stlongu stwu /* load "C" long with udpate */
326 # define ldptr lwz /* load "C" pointer */
327 # define ldptru lwzu /* load "C" pointer with udpate */
328 # define stptr stw /* load "C" pointer */
329 # define stptru stwu /* load "C" pointer with udpate */
330 # define ldreg lwz /* load PPC general register */
331 # define ldregu lwzu /* load PPC general register with udpate */
332 # define streg stw /* load PPC general register */
333 # define stregu stwu /* load PPC general register with udpate */
334 # define SZREG 4 /* 4 byte registers */
335
336 # define lptrarx lwarx /* load "C" pointer with reservation */
337 # define llongarx lwarx /* load "C" long with reservation */
338 # define lregarx lwarx /* load PPC general register with reservation */
339
340 # define stptrcx stwcx /* store "C" pointer conditional */
341 # define stlongcx stwcx /* store "C" long conditional */
342 # define stregcx stwcx /* store PPC general register conditional */
343
344 # define clrrptri clrrwi /* clear right "C" pointer immediate */
345 # define clrrlongi clrrwi /* clear right "C" long immediate */
346 # define clrrregi clrrwi /* clear right PPC general register immediate */
347
348 #else /* __LP64__ */
349
350 # define ldlong ld /* load "C" long */
351 # define ldlongu ldu /* load "C" long with update */
352 # define stlong std /* store "C" long */
353 # define stlongu stdu /* store "C" long with update */
354 # define ldptr ld /* load "C" pointer */
355 # define ldptru ldu /* load "C" pointer with update */
356 # define stptr std /* store "C" pointer */
357 # define stptru stdu /* store "C" pointer with update */
358 # define ldreg ld /* load PPC general register */
359 # define ldregu ldu /* load PPC general register with update */
360 # define streg std /* store PPC general register */
361 # define stregu stdu /* store PPC general register with update */
362 /* redefined this to force an error on PPC64 to catch their use. */
363 # define lmw lmd /* load multiple PPC general registers */
364 # define stmw stmd /* store multiple PPC general registers */
365 # define SZREG 8 /* 8 byte registers */
366
367 # define lptrarx ldarx /* load "C" pointer with reservation */
368 # define llongarx ldarx /* load "C" long with reservation */
369 # define lregarx ldarx /* load PPC general register with reservation */
370
371 # define stptrcx stdcx /* store "C" pointer conditional */
372 # define stlongcx stdcx /* store "C" long conditional */
373 # define stregax stdcx /* store PPC general register conditional */
374
375 # define clrrptri clrrdi /* clear right "C" pointer immediate */
376 # define clrrlongi clrrdi /* clear right "C" long immediate */
377 # define clrrregi clrrdi /* clear right PPC general register immediate */
378
379 #endif /* __LP64__ */
380
381 #ifdef _LOCORE
382 .macro stmd r,dst
383 i = 0
384 .rept 32-\r
385 std i+\r, i*8+\dst
386 i = i + 1
387 .endr
388 .endm
389
390 .macro lmd r,dst
391 i = 0
392 .rept 32-\r
393 ld i+\r, i*8+\dst
394 i = i + 1
395 .endr
396 .endm
397 #endif /* _LOCORE */
398
399 #endif /* !_PPC_ASM_H_ */
400