Blame tune/alpha.asm

Packit 5c3484
dnl  Alpha time stamp counter access routine.
Packit 5c3484
Packit 5c3484
dnl  Copyright 2000, 2005 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
Packit 5c3484
C void speed_cyclecounter (unsigned int p[2]);
Packit 5c3484
C
Packit 5c3484
Packit 5c3484
C The rpcc instruction returns a 64-bit value split into two 32-bit fields.
Packit 5c3484
C The lower 32 bits are set by the hardware, and the upper 32 bits are set
Packit 5c3484
C by the operating system.  The real per-process cycle count is the sum of
Packit 5c3484
C these halves.
Packit 5c3484
Packit 5c3484
C Unfortunately, some operating systems don't get this right.  NetBSD 1.3 is
Packit 5c3484
C known to sometimes put garbage in the upper half.  Whether newer NetBSD
Packit 5c3484
C versions get it right, is unknown to us.
Packit 5c3484
Packit 5c3484
C rpcc measures cycles elapsed in the user program and hence should be very
Packit 5c3484
C accurate even on a busy system.  Losing cache contents due to task
Packit 5c3484
C switching may have an effect though.
Packit 5c3484
Packit 5c3484
ASM_START()
Packit 5c3484
PROLOGUE(speed_cyclecounter)
Packit 5c3484
	rpcc	r0
Packit 5c3484
	srl	r0,32,r1
Packit 5c3484
	addq	r1,r0,r0
Packit 5c3484
	stl	r0,0(r16)
Packit 5c3484
	stl	r31,4(r16)		C zero upper return word
Packit 5c3484
	ret	r31,(r26),1
Packit 5c3484
EPILOGUE(speed_cyclecounter)
Packit 5c3484
ASM_END()