1 /* Copyright (C) 1997, 1998, 2002, 2003, 2004, 2005
2 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Ralf Baechle <ralf@gnu.org>.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
28 # define __CAT(str1,str2) str1##str2
30 # define __CAT(str1,str2) str1/**/str2
32 # define CAT(str1,str2) __CAT(str1,str2)
36 * Macros to handle different pointer/register sizes for 32/64-bit code
38 * 64 bit address space isn't used yet, so we may use the R3000 32 bit
41 #if _MIPS_SIM == _ABIO32 || _MIPS_SIM == _ABIN32
45 #elif _MIPS_SIM == _ABI64
52 * PIC specific declarations
54 #if _MIPS_SIM == _ABIO32
56 # define CPRESTORE(register) \
58 # define CPLOAD(register) \
61 # define CPRESTORE(register)
62 # define CPLOAD(register)
65 # define CPADD(register) \
69 * Set gp when at 1st instruction
75 /* Set gp when not at 1st instruction */
76 # define SETUP_GPX(r) \
78 move r, $31; /* Save old ra. */ \
79 bal 10f; /* Find addr of cpload. */ \
85 # define SETUP_GPX_L(r, l) \
87 move r, $31; /* Save old ra. */ \
88 bal l; /* Find addr of cpload. */ \
95 .cprestore x /* Save gp trigger t9/jalr conversion. */
96 # define SETUP_GP64(a, b)
97 # define SETUP_GPX64(a, b)
98 # define SETUP_GPX64_L(cp_reg, ra_save, l)
100 # define USE_ALT_CP(a)
101 #else /* _MIPS_SIM == _ABI64 || _MIPS_SIM == _ABIN32 */
103 * For callee-saved gp calling convention:
106 # define SETUP_GPX(r)
107 # define SETUP_GPX_L(r, l)
110 # define SETUP_GP64(gpoffset, proc) \
111 .cpsetup $25, gpoffset, proc
112 # define SETUP_GPX64(cp_reg, ra_save) \
113 move ra_save, $31; /* Save old ra. */ \
115 bal 10f; /* Find addr of .cpsetup. */ \
119 .cpsetup $31, cp_reg, 10b; \
121 # define SETUP_GPX64_L(cp_reg, ra_save, l) \
122 move ra_save, $31; /* Save old ra. */ \
124 bal l; /* Find addr of .cpsetup. */ \
128 .cpsetup $31, cp_reg, l; \
130 # define RESTORE_GP64 \
132 /* Use alternate register for context pointer. */
133 # define USE_ALT_CP(reg) \
135 #endif /* _MIPS_SIM != _ABIO32 */
138 * Stack Frame Definitions
140 #if _MIPS_SIM == _ABIO32
141 # define NARGSAVE 4 /* Space for 4 argument registers must be allocated. */
143 #if _MIPS_SIM == _ABI64 || _MIPS_SIM == _ABIN32
144 # define NARGSAVE 0 /* No caller responsibilities. */
149 * LEAF - declare leaf routine
151 #define LEAF(symbol) \
154 .type symbol,@function; \
156 symbol: .frame sp,0,ra
159 * NESTED - declare nested routine entry point
161 #define NESTED(symbol, framesize, rpc) \
164 .type symbol,@function; \
166 symbol: .frame sp, framesize, rpc
169 * END - mark end of function
172 # define END(function) \
174 .size function,.-function
178 * EXPORT - export definition of symbol
180 #define EXPORT(symbol) \
185 * ABS - export absolute symbol
187 #define ABS(symbol,value) \
201 * Print formated string
203 #define PRINT(string) \
219 #define TTABLE(string) \
228 * MIPS IV pref instruction.
229 * Use with .set noreorder only!
231 * MIPS IV implementations are free to treat this as a nop. The R5000
232 * is one of them. So we should have an option not to use this instruction.
234 #if (_MIPS_ISA == _MIPS_ISA_MIPS4) || (_MIPS_ISA == _MIPS_ISA_MIPS5) || \
235 (_MIPS_ISA == _MIPS_ISA_MIPS32) || (_MIPS_ISA == _MIPS_ISA_MIPS64)
236 # define PREF(hint,addr) \
238 # define PREFX(hint,addr) \
246 * MIPS ISA IV/V movn/movz instructions and equivalents for older CPUs.
248 #if _MIPS_ISA == _MIPS_ISA_MIPS1
249 # define MOVN(rd,rs,rt) \
256 # define MOVZ(rd,rs,rt) \
263 #endif /* _MIPS_ISA == _MIPS_ISA_MIPS1 */
264 #if (_MIPS_ISA == _MIPS_ISA_MIPS2) || (_MIPS_ISA == _MIPS_ISA_MIPS3)
265 # define MOVN(rd,rs,rt) \
272 # define MOVZ(rd,rs,rt) \
279 #endif /* (_MIPS_ISA == _MIPS_ISA_MIPS2) || (_MIPS_ISA == _MIPS_ISA_MIPS3) */
280 #if (_MIPS_ISA == _MIPS_ISA_MIPS4) || (_MIPS_ISA == _MIPS_ISA_MIPS5) || \
281 (_MIPS_ISA == _MIPS_ISA_MIPS32) || (_MIPS_ISA == _MIPS_ISA_MIPS64)
282 # define MOVN(rd,rs,rt) \
284 # define MOVZ(rd,rs,rt) \
286 #endif /* (_MIPS_ISA == _MIPS_ISA_MIPS4) || (_MIPS_ISA == _MIPS_ISA_MIPS5) */
291 #if _MIPS_SIM == _ABI64 || _MIPS_SIM == _ABIN32
302 #if _MIPS_SIM == _ABI64 || _MIPS_SIM == _ABIN32
309 * Use the following macros in assemblercode to load/store registers,
321 * How to add/sub/load/store/shift C int variables.
323 #if (_MIPS_SZINT == 32)
325 # define INT_ADDI addi
326 # define INT_ADDU addu
327 # define INT_ADDIU addiu
329 # define INT_SUBI subi
330 # define INT_SUBU subu
331 # define INT_SUBIU subu
336 #if (_MIPS_SZINT == 64)
337 # define INT_ADD dadd
338 # define INT_ADDI daddi
339 # define INT_ADDU daddu
340 # define INT_ADDIU daddiu
341 # define INT_SUB dadd
342 # define INT_SUBI dsubi
343 # define INT_SUBU dsubu
344 # define INT_SUBIU dsubu
350 * How to add/sub/load/store/shift C long variables.
352 #if (_MIPS_SZLONG == 32)
353 # define LONG_ADD add
354 # define LONG_ADDI addi
355 # define LONG_ADDU addu
356 # define LONG_ADDIU addiu
357 # define LONG_SUB add
358 # define LONG_SUBI subi
359 # define LONG_SUBU subu
360 # define LONG_SUBIU subu
363 # define LONG_SLL sll
364 # define LONG_SLLV sllv
365 # define LONG_SRL srl
366 # define LONG_SRLV srlv
367 # define LONG_SRA sra
368 # define LONG_SRAV srav
371 #if (_MIPS_SZLONG == 64)
372 # define LONG_ADD dadd
373 # define LONG_ADDI daddi
374 # define LONG_ADDU daddu
375 # define LONG_ADDIU daddiu
376 # define LONG_SUB dadd
377 # define LONG_SUBI dsubi
378 # define LONG_SUBU dsubu
379 # define LONG_SUBIU dsubu
382 # define LONG_SLL dsll
383 # define LONG_SLLV dsllv
384 # define LONG_SRL dsrl
385 # define LONG_SRLV dsrlv
386 # define LONG_SRA dsra
387 # define LONG_SRAV dsrav
391 * How to add/sub/load/store/shift pointers.
393 #if (_MIPS_SIM == _ABIO32 && _MIPS_SZPTR == 32)
395 # define PTR_ADDI addi
396 # define PTR_ADDU addu
397 # define PTR_ADDIU addiu
399 # define PTR_SUBI subi
400 # define PTR_SUBU subu
401 # define PTR_SUBIU subu
406 # define PTR_SLLV sllv
408 # define PTR_SRLV srlv
410 # define PTR_SRAV srav
412 # define PTR_SCALESHIFT 2
415 #if _MIPS_SIM == _ABIN32
417 # define PTR_ADDI addi
418 # define PTR_ADDU add /* no u */
419 # define PTR_ADDIU addi /* no u */
421 # define PTR_SUBI subi
422 # define PTR_SUBU sub /* no u */
423 # define PTR_SUBIU sub /* no u */
428 # define PTR_SLLV sllv
430 # define PTR_SRLV srlv
432 # define PTR_SRAV srav
434 # define PTR_SCALESHIFT 2
437 #if (_MIPS_SIM == _ABIO32 && _MIPS_SZPTR == 64 /* o64??? */) \
438 || _MIPS_SIM == _ABI64
439 # define PTR_ADD dadd
440 # define PTR_ADDI daddi
441 # define PTR_ADDU daddu
442 # define PTR_ADDIU daddiu
443 # define PTR_SUB dadd
444 # define PTR_SUBI dsubi
445 # define PTR_SUBU dsubu
446 # define PTR_SUBIU dsubu
450 # define PTR_SLL dsll
451 # define PTR_SLLV dsllv
452 # define PTR_SRL dsrl
453 # define PTR_SRLV dsrlv
454 # define PTR_SRA dsra
455 # define PTR_SRAV dsrav
457 # define PTR_SCALESHIFT 3
461 * Some cp0 registers were extended to 64bit for MIPS III.
463 #if (_MIPS_ISA == _MIPS_ISA_MIPS1) || (_MIPS_ISA == _MIPS_ISA_MIPS2) || \
464 (_MIPS_ISA == _MIPS_ISA_MIPS32)
468 #if (_MIPS_ISA == _MIPS_ISA_MIPS3) || (_MIPS_ISA == _MIPS_ISA_MIPS4) || \
469 (_MIPS_ISA == _MIPS_ISA_MIPS5) || (_MIPS_ISA == _MIPS_ISA_MIPS64)
474 /* The MIPS archtectures do not have a uniform memory model. Particular
475 platforms may provide additional guarantees - for instance, the R4000
476 LL and SC instructions implicitly perform a SYNC, and the 4K promises
479 However, in the absence of those guarantees, we must assume weak ordering
480 and SYNC explicitly where necessary.
482 Some obsolete MIPS processors may not support the SYNC instruction. This
483 applies to "true" MIPS I processors; most of the processors which compile
484 using MIPS I implement parts of MIPS II. */
487 # define MIPS_SYNC sync
490 #endif /* sys/asm.h */