alpha.asm
上传用户:qaz666999
上传日期:2022-08-06
资源大小:2570k
文件大小:2k
源码类别:

数学计算

开发平台:

Unix_Linux

  1. dnl  Alpha time stamp counter access routine.
  2. dnl  Copyright 2000, 2005 Free Software Foundation, Inc.
  3. dnl
  4. dnl  This file is part of the GNU MP Library.
  5. dnl
  6. dnl  The GNU MP Library is free software; you can redistribute it and/or
  7. dnl  modify it under the terms of the GNU Lesser General Public License as
  8. dnl  published by the Free Software Foundation; either version 3 of the
  9. dnl  License, or (at your option) any later version.
  10. dnl
  11. dnl  The GNU MP Library is distributed in the hope that it will be useful,
  12. dnl  but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. dnl  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14. dnl  Lesser General Public License for more details.
  15. dnl
  16. dnl  You should have received a copy of the GNU Lesser General Public License
  17. dnl  along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
  18. include(`../config.m4')
  19. C void speed_cyclecounter (unsigned int p[2]);
  20. C
  21. C The rpcc instruction returns a 64-bit value split into two 32-bit fields.
  22. C The lower 32 bits are set by the hardware, and the upper 32 bits are set
  23. C by the operating system.  The real per-process cycle count is the sum of
  24. C these halves.
  25. C Unfortunately, some operating systems don't get this right.  NetBSD 1.3 is
  26. C known to sometimes put garbage in the upper half.  Whether newer NetBSD
  27. C versions get it right, is unknown to us.
  28. C rpcc measures cycles elapsed in the user program and hence should be very
  29. C accurate even on a busy system.  Losing cache contents due to task
  30. C switching may have an effect though.
  31. ASM_START()
  32. PROLOGUE(speed_cyclecounter)
  33. rpcc r0
  34. srl r0,32,r1
  35. addq r1,r0,r0
  36. stl r0,0(r16)
  37. stl r31,4(r16) C zero upper return word
  38. ret r31,(r26),1
  39. EPILOGUE(speed_cyclecounter)
  40. ASM_END()