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

数学计算

开发平台:

Unix_Linux

  1. dnl  x86 pentium time stamp counter access routine.
  2. dnl  Copyright 1999, 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 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. .text
  27. ALIGN(8)
  28. defframe(PARAM_P,4)
  29. PROLOGUE(speed_cyclecounter)
  30. deflit(`FRAME',0)
  31. pushl %ebx
  32. FRAME_pushl()
  33. xorl %eax, %eax
  34. cpuid
  35. rdtsc
  36. movl PARAM_P, %ebx
  37. movl %eax, (%ebx)
  38. movl %edx, 4(%ebx)
  39. popl %ebx
  40. ret
  41. EPILOGUE()