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

数学计算

开发平台:

Unix_Linux

  1. dnl  x86 pentium time stamp counter access routine.
  2. dnl  Copyright 1999, 2000, 2003, 2004, 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 p[2]);
  20. C
  21. C Get the pentium rdtsc cycle counter, storing the least significant word in
  22. C p[0] and the most significant in p[1].
  23. C
  24. C cpuid is used to serialize execution.  On big measurements this won't be
  25. C significant but it may help make small single measurements more accurate.
  26. PROLOGUE(speed_cyclecounter)
  27. C rdi p
  28. movq %rbx, %r10
  29. xorl %eax, %eax
  30. cpuid
  31. rdtsc
  32. movl %eax, (%rdi)
  33. movl %edx, 4(%rdi)
  34. movq %r10, %rbx
  35. ret
  36. EPILOGUE()