Blame mpn/powerpc32/elf.m4

Packit 5c3484
divert(-1)
Packit 5c3484
dnl  m4 macros for powerpc32 GNU/Linux assembly.
Packit 5c3484
Packit 5c3484
dnl  Copyright 2003, 2005, 2006 Free Software Foundation, Inc.
Packit 5c3484
Packit 5c3484
dnl  This file is part of the GNU MP Library.
Packit 5c3484
dnl
Packit 5c3484
dnl  The GNU MP Library is free software; you can redistribute it and/or modify
Packit 5c3484
dnl  it under the terms of either:
Packit 5c3484
dnl
Packit 5c3484
dnl    * the GNU Lesser General Public License as published by the Free
Packit 5c3484
dnl      Software Foundation; either version 3 of the License, or (at your
Packit 5c3484
dnl      option) any later version.
Packit 5c3484
dnl
Packit 5c3484
dnl  or
Packit 5c3484
dnl
Packit 5c3484
dnl    * the GNU General Public License as published by the Free Software
Packit 5c3484
dnl      Foundation; either version 2 of the License, or (at your option) any
Packit 5c3484
dnl      later version.
Packit 5c3484
dnl
Packit 5c3484
dnl  or both in parallel, as here.
Packit 5c3484
dnl
Packit 5c3484
dnl  The GNU MP Library is distributed in the hope that it will be useful, but
Packit 5c3484
dnl  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
Packit 5c3484
dnl  or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
Packit 5c3484
dnl  for more details.
Packit 5c3484
dnl
Packit 5c3484
dnl  You should have received copies of the GNU General Public License and the
Packit 5c3484
dnl  GNU Lesser General Public License along with the GNU MP Library.  If not,
Packit 5c3484
dnl  see https://www.gnu.org/licenses/.
Packit 5c3484
Packit 5c3484
define(`ASM_START',`')
Packit 5c3484
Packit 5c3484
dnl  Called: PROLOGUE_cpu(GSYM_PREFIX`'foo[,toc])
Packit 5c3484
dnl          EPILOGUE_cpu(GSYM_PREFIX`'foo)
Packit 5c3484
dnl
Packit 5c3484
Packit 5c3484
define(`PROLOGUE_cpu',
Packit 5c3484
m4_assert_numargs_range(1,2)
Packit 5c3484
`ifelse(`$2',toc,,
Packit 5c3484
`ifelse(`$2',,,`m4_error(`Unrecognised PROLOGUE parameter')')')dnl
Packit 5c3484
	.section	".text"
Packit 5c3484
	.align	3
Packit 5c3484
	.globl	$1
Packit 5c3484
	.type	$1, @function
Packit 5c3484
$1:')
Packit 5c3484
Packit 5c3484
define(`EPILOGUE_cpu',
Packit 5c3484
m4_assert_numargs(1)
Packit 5c3484
`	.size	$1, .-$1')
Packit 5c3484
Packit 5c3484
define(`LEA',
Packit 5c3484
m4_assert_numargs(2)
Packit 5c3484
`ifdef(`PIC',`
Packit 5c3484
	mflr	r0
Packit 5c3484
	bcl	20, 31, 1f
Packit 5c3484
1:	mflr	$1
Packit 5c3484
	addis	$1, $1, (_GLOBAL_OFFSET_TABLE_-1b)@ha
Packit 5c3484
	addi	$1, $1, (_GLOBAL_OFFSET_TABLE_-1b)@l
Packit 5c3484
	mtlr	r0
Packit 5c3484
	lwz	$1, $2@got($1)
Packit 5c3484
',`
Packit 5c3484
	lis	$1, $2@ha
Packit 5c3484
	la	$1, $2@l($1)
Packit 5c3484
')')
Packit 5c3484
Packit 5c3484
Packit 5c3484
define(`LEAL',
Packit 5c3484
m4_assert_numargs(2)
Packit 5c3484
`LEA($1,$2)')
Packit 5c3484
Packit 5c3484
Packit 5c3484
define(`EXTERN',
Packit 5c3484
m4_assert_numargs(1)
Packit 5c3484
`dnl')
Packit 5c3484
Packit 5c3484
define(`DEF_OBJECT',
Packit 5c3484
m4_assert_numargs_range(1,2)
Packit 5c3484
`
Packit 5c3484
	.section	.rodata
Packit 5c3484
	ALIGN(ifelse($#,1,2,$2))
Packit 5c3484
	.type	$1, @object
Packit 5c3484
$1:
Packit 5c3484
')
Packit 5c3484
Packit 5c3484
define(`END_OBJECT',
Packit 5c3484
m4_assert_numargs(1)
Packit 5c3484
`	.size	$1, .-$1')
Packit 5c3484
Packit 5c3484
define(`ASM_END', `dnl')
Packit 5c3484
Packit 5c3484
ifdef(`PIC',`
Packit 5c3484
define(`PIC_SLOW')')
Packit 5c3484
Packit 5c3484
dnl  64-bit "long long" parameters are put in an even-odd pair, skipping an
Packit 5c3484
dnl  even register if that was in turn.  I wish somebody could explain why that
Packit 5c3484
dnl  is a good idea.
Packit 5c3484
define(`BROKEN_LONGLONG_PARAM')
Packit 5c3484
Packit 5c3484
divert