asm.h revision 1.40.38.2 1 /* $NetBSD: asm.h,v 1.40.38.2 2009/08/18 14:44:20 uebayasi Exp $ */
2
3 /*
4 * Copyright (c) 1992, 1993
5 * The Regents of the University of California. All rights reserved.
6 *
7 * This code is derived from software contributed to Berkeley by
8 * Ralph Campbell.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
21 *
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
34 * @(#)machAsmDefs.h 8.1 (Berkeley) 6/10/93
35 */
36
37 /*
38 * machAsmDefs.h --
39 *
40 * Macros used when writing assembler programs.
41 *
42 * Copyright (C) 1989 Digital Equipment Corporation.
43 * Permission to use, copy, modify, and distribute this software and
44 * its documentation for any purpose and without fee is hereby granted,
45 * provided that the above copyright notice appears in all copies.
46 * Digital Equipment Corporation makes no representations about the
47 * suitability of this software for any purpose. It is provided "as is"
48 * without express or implied warranty.
49 *
50 * from: Header: /sprite/src/kernel/mach/ds3100.md/RCS/machAsmDefs.h,
51 * v 1.2 89/08/15 18:28:24 rab Exp SPRITE (DECWRL)
52 */
53
54 #ifndef _MIPS_ASM_H
55 #define _MIPS_ASM_H
56
57 #include <machine/cdefs.h> /* for API selection */
58 #include <mips/regdef.h>
59
60 /*
61 * Define -pg profile entry code.
62 * Must always be noreorder, must never use a macro instruction
63 * Final addiu to t9 must always equal the size of this _KERN_MCOUNT
64 */
65 #define _KERN_MCOUNT \
66 .set push; \
67 .set noreorder; \
68 .set noat; \
69 subu sp,sp,16; \
70 sw t9,12(sp); \
71 move AT,ra; \
72 lui t9,%hi(_mcount); \
73 addiu t9,t9,%lo(_mcount); \
74 jalr t9; \
75 nop; \
76 lw t9,4(sp); \
77 addiu sp,sp,8; \
78 addiu t9,t9,40; \
79 .set pop;
80
81 #ifdef GPROF
82 #define MCOUNT _KERN_MCOUNT
83 #else
84 #define MCOUNT
85 #endif
86
87 #ifdef __NO_LEADING_UNDERSCORES__
88 # define _C_LABEL(x) x
89 #else
90 # ifdef __STDC__
91 # define _C_LABEL(x) _ ## x
92 # else
93 # define _C_LABEL(x) _/**/x
94 # endif
95 #endif
96
97 #ifdef USE_AENT
98 #define AENT(x) \
99 .aent x, 0
100 #else
101 #define AENT(x)
102 #endif
103
104 /*
105 * WEAK_ALIAS: create a weak alias.
106 */
107 #define WEAK_ALIAS(alias,sym) \
108 .weak alias; \
109 alias = sym
110 /*
111 * STRONG_ALIAS: create a strong alias.
112 */
113 #define STRONG_ALIAS(alias,sym) \
114 .globl alias; \
115 alias = sym
116
117 /*
118 * WARN_REFERENCES: create a warning if the specified symbol is referenced.
119 */
120 #ifdef __STDC__
121 #define WARN_REFERENCES(_sym,_msg) \
122 .section .gnu.warning. ## _sym ; .ascii _msg ; .text
123 #else
124 #define WARN_REFERENCES(_sym,_msg) \
125 .section .gnu.warning./**/_sym ; .ascii _msg ; .text
126 #endif /* __STDC__ */
127
128 /*
129 * LEAF
130 * A leaf routine does
131 * - call no other function,
132 * - never use any register that callee-saved (S0-S8), and
133 * - not use any local stack storage.
134 */
135 #define LEAF(x) \
136 .globl _C_LABEL(x); \
137 .ent _C_LABEL(x), 0; \
138 _C_LABEL(x): ; \
139 .frame sp, 0, ra; \
140 MCOUNT
141
142 /*
143 * LEAF_NOPROFILE
144 * No profilable leaf routine.
145 */
146 #define LEAF_NOPROFILE(x) \
147 .globl _C_LABEL(x); \
148 .ent _C_LABEL(x), 0; \
149 _C_LABEL(x): ; \
150 .frame sp, 0, ra
151
152 /*
153 * STATIC_LEAF
154 * Declare a local leaf function.
155 */
156 #define STATIC_LEAF(x) \
157 .ent _C_LABEL(x), 0; \
158 _C_LABEL(x): ; \
159 .frame sp, 0, ra; \
160 MCOUNT
161
162 /*
163 * XLEAF
164 * declare alternate entry to leaf routine
165 */
166 #define XLEAF(x) \
167 .globl _C_LABEL(x); \
168 AENT (_C_LABEL(x)); \
169 _C_LABEL(x):
170
171 /*
172 * STATIC_XLEAF
173 * declare alternate entry to a static leaf routine
174 */
175 #define STATIC_XLEAF(x) \
176 AENT (_C_LABEL(x)); \
177 _C_LABEL(x):
178
179 /*
180 * NESTED
181 * A function calls other functions and needs
182 * therefore stack space to save/restore registers.
183 */
184 #define NESTED(x, fsize, retpc) \
185 .globl _C_LABEL(x); \
186 .ent _C_LABEL(x), 0; \
187 _C_LABEL(x): ; \
188 .frame sp, fsize, retpc; \
189 MCOUNT
190
191 /*
192 * NESTED_NOPROFILE(x)
193 * No profilable nested routine.
194 */
195 #define NESTED_NOPROFILE(x, fsize, retpc) \
196 .globl _C_LABEL(x); \
197 .ent _C_LABEL(x), 0; \
198 _C_LABEL(x): ; \
199 .frame sp, fsize, retpc
200
201 /*
202 * XNESTED
203 * declare alternate entry point to nested routine.
204 */
205 #define XNESTED(x) \
206 .globl _C_LABEL(x); \
207 AENT (_C_LABEL(x)); \
208 _C_LABEL(x):
209
210 /*
211 * END
212 * Mark end of a procedure.
213 */
214 #define END(x) \
215 .end _C_LABEL(x); \
216 .size _C_LABEL(x), . - _C_LABEL(x)
217
218 /*
219 * IMPORT -- import external symbol
220 */
221 #define IMPORT(sym, size) \
222 .extern _C_LABEL(sym),size
223
224 /*
225 * EXPORT -- export definition of symbol
226 */
227 #define EXPORT(x) \
228 .globl _C_LABEL(x); \
229 _C_LABEL(x):
230
231 /*
232 * VECTOR
233 * exception vector entrypoint
234 * XXX: regmask should be used to generate .mask
235 */
236 #define VECTOR(x, regmask) \
237 .ent _C_LABEL(x),0; \
238 EXPORT(x); \
239
240 #ifdef __STDC__
241 #define VECTOR_END(x) \
242 EXPORT(x ## End); \
243 END(x)
244 #else
245 #define VECTOR_END(x) \
246 EXPORT(x/**/End); \
247 END(x)
248 #endif
249
250 /*
251 * Macros to panic and printf from assembly language.
252 */
253 #define PANIC(msg) \
254 la a0, 9f; \
255 jal _C_LABEL(panic); \
256 nop; \
257 MSG(msg)
258
259 #define PRINTF(msg) \
260 la a0, 9f; \
261 jal _C_LABEL(printf); \
262 nop; \
263 MSG(msg)
264
265 #define MSG(msg) \
266 .rdata; \
267 9: .asciiz msg; \
268 .text
269
270 #define ASMSTR(str) \
271 .asciiz str; \
272 .align 3
273
274 #define RCSID(name) .pushsection ".ident"; .asciz name; .popsection
275
276 /*
277 * XXX retain dialects XXX
278 */
279 #define ALEAF(x) XLEAF(x)
280 #define NLEAF(x) LEAF_NOPROFILE(x)
281 #define NON_LEAF(x, fsize, retpc) NESTED(x, fsize, retpc)
282 #define NNON_LEAF(x, fsize, retpc) NESTED_NOPROFILE(x, fsize, retpc)
283
284 #if defined(__mips_o32)
285 #define SZREG 4
286 #else
287 #define SZREG 8
288 #endif
289
290 #if defined(__mips_o32) || defined(__mips_o64)
291 #define ALSK 7 /* stack alignment */
292 #define ALMASK -7 /* stack alignment */
293 #define SZFPREG 4
294 #define FPLD lwc1
295 #define FPST swc1
296 #else
297 #define ALSK 15 /* stack alignment */
298 #define ALMASK -15 /* stack alignment */
299 #define SZFPREG 8
300 #define FPLD ldc1
301 #define FPST sdc1
302 #endif
303 #define FP_L FPLD
304 #define FP_S FPST
305
306 /*
307 * standard callframe {
308 * register_t cf_pad[N]; o32 (N=2), n32/n64=(N=1)
309 * register_t cf_args[4]; arg0 - arg3 (only on o32 and o64)
310 * register_t cf_gp; global pointer (only on n32 and n64)
311 * register_t cf_sp; frame pointer
312 * register_t cf_ra; return address
313 * };
314 */
315 #if defined(__mips_o32)
316 #define CALLFRAME_SIZ (SZREG * (4 + 4))
317 #elif defined(__mips_o64)
318 #define CALLFRAME_SIZ (SZREG * (4 + 4))
319 #elif defined(__mips_n32) || defined(__mips_n64)
320 #define CALLFRAME_SIZ (SZREG * 4)
321 #endif
322 #define CALLFRAME_S0 (CALLFRAME_SIZ - 4 * SZREG)
323 #define CALLFRAME_GP (CALLFRAME_SIZ - 3 * SZREG)
324 #define CALLFRAME_SP (CALLFRAME_SIZ - 2 * SZREG)
325 #define CALLFRAME_RA (CALLFRAME_SIZ - 1 * SZREG)
326
327 /*
328 * While it would be nice to be compatible with the SGI
329 * REG_L and REG_S macros, because they do not take parameters, it
330 * is impossible to use them with the _MIPS_SIM_ABIX32 model.
331 *
332 * These macros hide the use of mips3 instructions from the
333 * assembler to prevent the assembler from generating 64-bit style
334 * ABI calls.
335 */
336 #if defined(__mips_o32)
337 #define PTR_ADD add
338 #define PTR_ADDI addi
339 #define PTR_ADDU addu
340 #define PTR_ADDIU addiu
341 #define PTR_SUB add
342 #define PTR_SUBI subi
343 #define PTR_SUBU subu
344 #define PTR_SUBIU subu
345 #define PTR_L lw
346 #define PTR_LA la
347 #define PTR_S sw
348 #define PTR_SLL sll
349 #define PTR_SLLV sllv
350 #define PTR_SRL srl
351 #define PTR_SRLV srlv
352 #define PTR_SRA sra
353 #define PTR_SRAV srav
354 #define PTR_LL ll
355 #define PTR_SC sc
356 #define PTR_WORD .word
357 #define PTR_SCALESHIFT 2
358 #endif /* __mips_o32 */
359
360 #if defined(__mips_n32)
361 #define PTR_ADD add
362 #define PTR_ADDI addi
363 #define PTR_ADDU add /* no u */
364 #define PTR_ADDIU addi /* no u */
365 #define PTR_SUB sub
366 #define PTR_SUBI subi
367 #define PTR_SUBU sub /* no u */
368 #define PTR_SUBIU sub /* no u */
369 #define PTR_L lw
370 #define PTR_LA la
371 #define PTR_S sw
372 #define PTR_SLL sll
373 #define PTR_SLLV sllv
374 #define PTR_SRL srl
375 #define PTR_SRLV srlv
376 #define PTR_SRA sra
377 #define PTR_SRAV srav
378 #define PTR_LL ll
379 #define PTR_SC sc
380 #define PTR_WORD .word
381 #define PTR_SCALESHIFT 2
382 #endif /* __mips_n32 */
383
384 #if defined(__mips_n64) || defined(__mips_o64)
385 #define PTR_ADD dadd
386 #define PTR_ADDI daddi
387 #define PTR_ADDU daddu
388 #define PTR_ADDIU daddiu
389 #define PTR_SUB dadd
390 #define PTR_SUBI dsubi
391 #define PTR_SUBU dsubu
392 #define PTR_SUBIU dsubu
393 #define PTR_L ld
394 #define PTR_LA dla
395 #define PTR_S sd
396 #define PTR_SLL dsll
397 #define PTR_SLLV dsllv
398 #define PTR_SRL dsrl
399 #define PTR_SRLV dsrlv
400 #define PTR_SRA dsra
401 #define PTR_SRAV dsrav
402 #define PTR_LL lld
403 #define PTR_SC scd
404 #define PTR_WORD .dword
405 #define PTR_SCALESHIFT 3
406 #endif /* __mips_n64 || __mips_o64 */
407
408 #if _MIPS_SZINT == 32
409 #define INT_ADD add
410 #define INT_ADDI addi
411 #define INT_ADDU addu
412 #define INT_ADDIU addiu
413 #define INT_SUB add
414 #define INT_SUBI subi
415 #define INT_SUBU subu
416 #define INT_SUBIU subu
417 #define INT_L lw
418 #define INT_LA la
419 #define INT_S sw
420 #define INT_SLL sll
421 #define INT_SLLV sllv
422 #define INT_SRL srl
423 #define INT_SRLV srlv
424 #define INT_SRA sra
425 #define INT_SRAV srav
426 #define INT_LL ll
427 #define INT_SC sc
428 #else
429 #define INT_ADD dadd
430 #define INT_ADDI daddi
431 #define INT_ADDU daddu
432 #define INT_ADDIU daddiu
433 #define INT_SUB dadd
434 #define INT_SUBI dsubi
435 #define INT_SUBU dsubu
436 #define INT_SUBIU dsubu
437 #define INT_L ld
438 #define INT_LA dla
439 #define INT_S sd
440 #define INT_SLL dsll
441 #define INT_SLLV dsllv
442 #define INT_SRL dsrl
443 #define INT_SRLV dsrlv
444 #define INT_SRA dsra
445 #define INT_SRAV dsrav
446 #define INT_LL lld
447 #define INT_SC scd
448 #endif
449
450 #if _MIPS_SZLONG == 32
451 #define LONG_ADD add
452 #define LONG_ADDI addi
453 #define LONG_ADDU addu
454 #define LONG_ADDIU addiu
455 #define LONG_SUB add
456 #define LONG_SUBI subi
457 #define LONG_SUBU subu
458 #define LONG_SUBIU subu
459 #define LONG_L lw
460 #define LONG_LA la
461 #define LONG_S sw
462 #define LONG_SLL sll
463 #define LONG_SLLV sllv
464 #define LONG_SRL srl
465 #define LONG_SRLV srlv
466 #define LONG_SRA sra
467 #define LONG_SRAV srav
468 #define LONG_LL ll
469 #define LONG_SC sc
470 #else
471 #define LONG_ADD dadd
472 #define LONG_ADDI daddi
473 #define LONG_ADDU daddu
474 #define LONG_ADDIU daddiu
475 #define LONG_SUB dadd
476 #define LONG_SUBI dsubi
477 #define LONG_SUBU dsubu
478 #define LONG_SUBIU dsubu
479 #define LONG_L ld
480 #define LONG_LA dla
481 #define LONG_S sd
482 #define LONG_SLL dsll
483 #define LONG_SLLV dsllv
484 #define LONG_SRL dsrl
485 #define LONG_SRLV dsrlv
486 #define LONG_SRA dsra
487 #define LONG_SRAV dsrav
488 #define LONG_LL lld
489 #define LONG_SC scd
490 #endif
491
492 #if SZREG == 4
493 #define REG_L lw
494 #define REG_S sw
495 #define REG_LI li
496 #define REG_SLL sll
497 #define REG_SLLV sllv
498 #define REG_SRL srl
499 #define REG_SRLV srlv
500 #define REG_SRA sra
501 #define REG_SRAV srav
502 #else
503 #define REG_L ld
504 #define REG_S sd
505 #define REG_LI dli
506 #define REG_SLL dsll
507 #define REG_SLLV dsllv
508 #define REG_SRL dsrl
509 #define REG_SRLV dsrlv
510 #define REG_SRA dsra
511 #define REG_SRAV dsrav
512 #endif
513
514 #define REG_PROLOGUE .set push
515 #define REG_EPILOGUE .set pop
516
517 #if _MIPS_ISA == _MIPS_ISA_MIPS1 || _MIPS_ISA == _MIPS_ISA_MIPS2 || \
518 _MIPS_ISA == _MIPS_ISA_MIPS32 || _MIPS_ISA == _MIPS_ISA_MIPS32R2
519 #define MFC0 mfc0
520 #define MTC0 mtc0
521 #endif
522 #if _MIPS_ISA == _MIPS_ISA_MIPS3 || _MIPS_ISA == _MIPS_ISA_MIPS4 || \
523 _MIPS_ISA == _MIPS_ISA_MIPS5 || _MIPS_ISA == _MIPS_ISA_MIPS64 || \
524 _MIPS_ISA == _MIPS_ISA_MIPS64R2
525 #define MFC0 dmfc0
526 #define MTC0 dmtc0
527 #endif
528
529 #if defined(__mips_o32) || defined(__mips_o64)
530
531 #ifdef __ABICALLS__
532 #define CPRESTORE(r) .cprestore r
533 #define CPLOAD(r) .cpload r
534 #else
535 #define CPRESTORE(r) /* not needed */
536 #define CPLOAD(r) /* not needed */
537 #endif
538
539 #define SETUP_GP \
540 .set noreorder; \
541 .cpload t9; \
542 .set reorder
543 #define SETUP_GPX(r) \
544 .set noreorder; \
545 move r,ra; /* save old ra */ \
546 bal 7f; \
547 nop; \
548 7: .cpload ra; \
549 move ra,r; \
550 .set reorder
551 #define SETUP_GPX_L(r,lbl) \
552 .set noreorder; \
553 move r,ra; /* save old ra */ \
554 bal lbl; \
555 nop; \
556 lbl: .cpload ra; \
557 move ra,r; \
558 .set reorder
559 #define SAVE_GP(x) .cprestore x
560
561 #define SETUP_GP64(a,b) /* n32/n64 specific */
562 #define SETUP_GP64_R(a,b) /* n32/n64 specific */
563 #define SETUP_GPX64(a,b) /* n32/n64 specific */
564 #define SETUP_GPX64_L(a,b,c) /* n32/n64 specific */
565 #define RESTORE_GP64 /* n32/n64 specific */
566 #define USE_ALT_CP(a) /* n32/n64 specific */
567 #endif /* __mips_o32 || __mips_o64 */
568
569 #if defined(__mips_n32) || defined(__mips_n64)
570 #define REG_PROLOGUE .set push ; .set mips3
571 #define REG_EPILOGUE .set pop
572 #endif
573
574 #if defined(__mips_n32) || defined(__mips_n64)
575 #define SETUP_GP /* o32 specific */
576 #define SETUP_GPX(r) /* o32 specific */
577 #define SETUP_GPX_L(r,lbl) /* o32 specific */
578 #define SAVE_GP(x) /* o32 specific */
579 #define SETUP_GP64(a,b) .cpsetup $t9, a, b
580 #define SETUP_GPX64(a,b) \
581 move b,ra; \
582 .set noreorder; \
583 bal 7f; \
584 nop; \
585 7: .set reorder; \
586 .cpsetup ra, a, 7b; \
587 move ra,b
588 #define SETUP_GPX64_L(a,b,c) \
589 move b,ra; \
590 .set noreorder; \
591 bal c; \
592 nop; \
593 c: .set reorder; \
594 .cpsetup ra, a, c; \
595 move ra,b
596 #define RESTORE_GP64 .cpreturn
597 #define USE_ALT_CP(a) .cplocal a
598 #endif /* __mips_n32 || __mips_n64 */
599
600 /*
601 * The DYNAMIC_STATUS_MASK option adds an additional masking operation
602 * when updating the hardware interrupt mask in the status register.
603 *
604 * This is useful for platforms that need to at run-time mask
605 * interrupts based on motherboard configuration or to handle
606 * slowly clearing interrupts.
607 *
608 * XXX this is only currently implemented for mips3.
609 */
610 #ifdef MIPS_DYNAMIC_STATUS_MASK
611 #define DYNAMIC_STATUS_MASK(sr,scratch) \
612 lw scratch, mips_dynamic_status_mask; \
613 and sr, sr, scratch
614
615 #define DYNAMIC_STATUS_MASK_TOUSER(sr,scratch1) \
616 ori sr, (MIPS_INT_MASK | MIPS_SR_INT_IE); \
617 DYNAMIC_STATUS_MASK(sr,scratch1)
618 #else
619 #define DYNAMIC_STATUS_MASK(sr,scratch)
620 #define DYNAMIC_STATUS_MASK_TOUSER(sr,scratch1)
621 #endif
622
623 /* See lock_stubs.S. */
624 #define MIPS_LOCK_RAS_SIZE 128
625
626 #define CPUVAR(off) _C_LABEL(cpu_info_store)+__CONCAT(CPU_INFO_,off)
627
628 #endif /* _MIPS_ASM_H */
629