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

数学计算

开发平台:

Unix_Linux

  1. #! /bin/sh
  2. #
  3. # Copyright 2000 Free Software Foundation, Inc.
  4. #
  5. # This file is part of the GNU MP Library.
  6. #
  7. # The GNU MP Library is free software; you can redistribute it and/or modify
  8. # it under the terms of the GNU Lesser General Public License as published
  9. # by the Free Software Foundation; either version 3 of the License, or (at
  10. # your option) any later version.
  11. #
  12. # The GNU MP Library is distributed in the hope that it will be useful, but
  13. # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  14. # or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  15. # License for more details.
  16. #
  17. # You should have received a copy of the GNU Lesser General Public License
  18. # along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
  19. # Usage: cd $(builddir)/mpn
  20. #        $(srcdir)/x86/t-zdisp.sh
  21. #
  22. # Run the Zdisp() macro instructions through the assembler to check
  23. # the encodings used.  Mismatches are printed, no output means all ok.
  24. #
  25. # This program is only meant for use during development.  It can be
  26. # run in the mpn build directory of any x86 configuration.
  27. #
  28. # For this test the assembler needs to generate byte sized 0
  29. # displacements when given something like 0(%eax).  Recent versions of
  30. # gas are suitable (eg. 2.9.x or 2.10.x).
  31. set -e
  32. cat >tmp-zdisptest.asm <<EOF
  33. include(`../config.m4')
  34. dnl  Redefine Zdisp_match to output its pattern and encoding.
  35. define(`Zdisp_match',
  36. `define(`Zdisp_found',1)dnl
  37. ifelse(`$2',0,` $1 $2$3, $4')`'dnl
  38. ifelse(`$3',0,` $1 $2, $3$4')`'dnl
  39. .byte $5
  40. ')
  41. .text
  42. Zdisp()
  43. EOF
  44. m4 tmp-zdisptest.asm >tmp-zdisptest.s
  45. as -o tmp-zdisptest.o tmp-zdisptest.s
  46. # Demand duplicates from the instruction patterns and byte encodings.
  47. objdump -d tmp-zdisptest.o | awk '
  48. /^ *[a-z0-9]+:/ {
  49. sub(/^ *[a-z0-9]+:/,"")
  50.         print
  51. }' | sort | uniq -u