Upload Tizen:Base source
[external/gmp.git] / mpn / mips32 / mips-defs.m4
1 divert(-1)
2
3 dnl  m4 macros for MIPS assembly code (both 32-bit and 64-bit).
4
5
6 dnl  Copyright 2000, 2001, 2002 Free Software Foundation, Inc.
7 dnl
8 dnl  This file is part of the GNU MP Library.
9 dnl
10 dnl  The GNU MP Library is free software; you can redistribute it and/or modify
11 dnl  it under the terms of the GNU Lesser General Public License as published
12 dnl  by the Free Software Foundation; either version 3 of the License, or (at
13 dnl  your option) any later version.
14 dnl
15 dnl  The GNU MP Library is distributed in the hope that it will be useful, but
16 dnl  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
17 dnl  or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
18 dnl  License for more details.
19 dnl
20 dnl  You should have received a copy of the GNU Lesser General Public License
21 dnl  along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
22
23
24 dnl  Usage: ASM_START()
25 define(`ASM_START',
26 m4_assert_numargs(0)
27 `       .set noreorder
28         .set nomacro')
29
30 dnl  Usage: X(value)
31 define(`X',
32 m4_assert_numargs(1)
33 `0x$1')
34
35 dnl  Called: PROLOGUE_cpu(GSYM_PREFIX`'foo)
36 dnl          EPILOGUE_cpu(GSYM_PREFIX`'foo)
37
38 define(`PROLOGUE_cpu',
39 m4_assert_numargs(1)
40 `       .text
41         .align  4
42         .globl  $1
43         .ent    $1
44 $1:')
45
46 define(`EPILOGUE_cpu',
47 m4_assert_numargs(1)
48 `       .end    $1')
49
50
51 dnl  Usage: r0 ... r31
52 dnl         f0 ... f31
53 dnl
54 dnl  Map register names r0 to $0, and f0 to $f0, etc.
55 dnl
56 dnl  defreg() is used to protect the $ in $0 (otherwise it would represent a
57 dnl  macro argument).  Double quoting is used to protect the f0 in $f0
58 dnl  (otherwise it would be an infinite recursion).
59
60 forloop(i,0,31,`defreg(`r'i,$i)')
61 forloop(i,0,31,`deflit(`f'i,``$f''i)')
62
63
64 dnl  Usage: ASM_END()
65 define(`ASM_END',
66 m4_assert_numargs(0)
67 )
68
69 divert