Blame mpn/s390_64/bdiv_dbm1c.asm

Packit 5c3484
dnl  S/390-64 mpn_bdiv_dbm1c
Packit 5c3484
Packit 5c3484
dnl  Copyright 2011 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
include(`../config.m4')
Packit 5c3484
Packit 5c3484
C            cycles/limb
Packit 5c3484
C z900		29
Packit 5c3484
C z990		22
Packit 5c3484
C z9		 ?
Packit 5c3484
C z10		19
Packit 5c3484
C z196		 ?
Packit 5c3484
Packit 5c3484
C INPUT PARAMETERS
Packit 5c3484
define(`qp',	  `%r2')
Packit 5c3484
define(`up',	  `%r3')
Packit 5c3484
define(`n',	  `%r4')
Packit 5c3484
define(`bd',	  `%r5')
Packit 5c3484
define(`cy',	  `%r6')
Packit 5c3484
Packit 5c3484
ASM_START()
Packit 5c3484
	TEXT
Packit 5c3484
	ALIGN(16)
Packit 5c3484
PROLOGUE(mpn_bdiv_dbm1c)
Packit 5c3484
	stmg	%r6, %r7, 48(%r15)
Packit 5c3484
	lghi	%r7, 0			C zero index register
Packit 5c3484
Packit 5c3484
L(top):	lg	%r1, 0(%r7,up)
Packit 5c3484
	mlgr	%r0, bd
Packit 5c3484
	slgr	%r6, %r1
Packit 5c3484
	stg	%r6, 0(%r7,qp)
Packit 5c3484
	la	%r7, 8(%r7)
Packit 5c3484
	slbgr	%r6, %r0
Packit 5c3484
	brctg	n, L(top)
Packit 5c3484
Packit 5c3484
	lgr	%r2, %r6
Packit 5c3484
	lmg	%r6, %r7, 48(%r15)
Packit 5c3484
	br	%r14
Packit 5c3484
EPILOGUE()