Austin Schuh | dace2a6 | 2020-08-18 10:56:48 -0700 | [diff] [blame] | 1 | divert(-1) |
| 2 | dnl m4 macros for Mac OS 32-bit assembly. |
| 3 | |
| 4 | dnl Copyright 2005, 2006 Free Software Foundation, Inc. |
| 5 | |
| 6 | dnl This file is part of the GNU MP Library. |
| 7 | dnl |
| 8 | dnl The GNU MP Library is free software; you can redistribute it and/or modify |
| 9 | dnl it under the terms of either: |
| 10 | dnl |
| 11 | dnl * the GNU Lesser General Public License as published by the Free |
| 12 | dnl Software Foundation; either version 3 of the License, or (at your |
| 13 | dnl option) any later version. |
| 14 | dnl |
| 15 | dnl or |
| 16 | dnl |
| 17 | dnl * the GNU General Public License as published by the Free Software |
| 18 | dnl Foundation; either version 2 of the License, or (at your option) any |
| 19 | dnl later version. |
| 20 | dnl |
| 21 | dnl or both in parallel, as here. |
| 22 | dnl |
| 23 | dnl The GNU MP Library is distributed in the hope that it will be useful, but |
| 24 | dnl WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY |
| 25 | dnl or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
| 26 | dnl for more details. |
| 27 | dnl |
| 28 | dnl You should have received copies of the GNU General Public License and the |
| 29 | dnl GNU Lesser General Public License along with the GNU MP Library. If not, |
| 30 | dnl see https://www.gnu.org/licenses/. |
| 31 | |
| 32 | define(`ASM_START',`') |
| 33 | |
| 34 | dnl Called: PROLOGUE_cpu(GSYM_PREFIX`'foo[,toc]) |
| 35 | dnl EPILOGUE_cpu(GSYM_PREFIX`'foo) |
| 36 | dnl |
| 37 | |
| 38 | define(`PROLOGUE_cpu', |
| 39 | m4_assert_numargs_range(1,2) |
| 40 | `ifelse(`$2',toc,, |
| 41 | `ifelse(`$2',,,`m4_error(`Unrecognised PROLOGUE parameter')')')dnl |
| 42 | .text |
| 43 | .globl $1 |
| 44 | .align 3 |
| 45 | $1:') |
| 46 | |
| 47 | define(`EPILOGUE_cpu', |
| 48 | m4_assert_numargs(1)) |
| 49 | |
| 50 | |
| 51 | dnl LEA -- Load Effective Address. |
| 52 | |
| 53 | define(`LEA', |
| 54 | m4_assert_numargs(2) |
| 55 | `ifdef(`PIC', |
| 56 | ` mflr r0 C save return address |
| 57 | bcl 20, 31, 1f |
| 58 | 1: mflr $1 |
| 59 | addis $1, $1, ha16($2-1b) |
| 60 | la $1, lo16($2-1b)($1) |
| 61 | mtlr r0 C restore return address |
| 62 | ',` |
| 63 | lis $1, ha16($2) |
| 64 | la $1, lo16($2)($1) |
| 65 | ')') |
| 66 | |
| 67 | define(`LEAL', |
| 68 | m4_assert_numargs(2) |
| 69 | `LEA($1,$2)') |
| 70 | |
| 71 | |
| 72 | define(`EXTERN', |
| 73 | m4_assert_numargs(1) |
| 74 | `dnl') |
| 75 | |
| 76 | define(`DEF_OBJECT', |
| 77 | m4_assert_numargs_range(1,2) |
| 78 | ` .const |
| 79 | ALIGN(ifelse($#,1,2,$2)) |
| 80 | $1: |
| 81 | ') |
| 82 | |
| 83 | define(`END_OBJECT', |
| 84 | m4_assert_numargs(1)) |
| 85 | |
| 86 | define(`ASM_END', `dnl') |
| 87 | |
| 88 | ifdef(`PIC',` |
| 89 | define(`PIC_SLOW')') |
| 90 | |
| 91 | divert |