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

数学计算

开发平台:

Unix_Linux

  1. /* AMD64 calling conventions checking.
  2. Copyright 2000, 2001, 2004, 2007 Free Software Foundation, Inc.
  3. This file is part of the GNU MP Library.
  4. The GNU MP Library is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU Lesser General Public License as published by
  6. the Free Software Foundation; either version 3 of the License, or (at your
  7. option) any later version.
  8. The GNU MP Library is distributed in the hope that it will be useful, but
  9. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  11. License for more details.
  12. You should have received a copy of the GNU Lesser General Public License
  13. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  14. #include <stdio.h>
  15. #include "gmp.h"
  16. #include "gmp-impl.h"
  17. #include "tests.h"
  18. /* Vector if constants and register values.  We use one vector to allow access
  19.    via a base pointer, very beneficial for the PIC-enabled amd64call.asm.  */
  20. mp_limb_t calling_conventions_values[23] =
  21. {
  22.   CNST_LIMB(0x1234567887654321), /* want_rbx */
  23.   CNST_LIMB(0x89ABCDEFFEDCBA98), /* want_rbp */
  24.   CNST_LIMB(0xDEADBEEFBADECAFE), /* want_r12 */
  25.   CNST_LIMB(0xFFEEDDCCBBAA9988), /* want_r13 */
  26.   CNST_LIMB(0x0011223344556677), /* want_r14 */
  27.   CNST_LIMB(0x1234432156788765), /* want_r15 */
  28.   CNST_LIMB(0xFEEDABBACAAFBEED), /* JUNK_RAX */
  29.   CNST_LIMB(0xAB78DE89FF5125BB), /* JUNK_R10 */
  30.   CNST_LIMB(0x1238901890189031) /* JUNK_R11 */
  31.   /* rest of array used for dynamic values.  */
  32. };
  33. /* Index starts for various regions in above vector.  */
  34. #define WANT 0
  35. #define JUNK 6
  36. #define SAVE 9
  37. #define RETADDR 15
  38. #define VAL 16
  39. #define RFLAGS 22
  40. /* values to check */
  41. struct {
  42.   int  control;
  43.   int  status;
  44.   int  tag;
  45.   int  other[4];
  46. } calling_conventions_fenv;
  47. char *regname[6] = {"rbx", "rbp", "r12", "r13", "r14", "r15"};
  48. #define DIR_BIT(rflags)   (((rflags) & (1<<10)) != 0)
  49. /* Return 1 if ok, 0 if not */
  50. int
  51. calling_conventions_check (void)
  52. {
  53.   const char  *header = "Violated calling conventions:n";
  54.   int  ret = 1;
  55.   int i;
  56. #define CHECK(callreg, regstr, value)
  57.   if (callreg != value)
  58.     {
  59.       printf ("%s   %s got 0x%016lX want 0x%016lXn",
  60.       header, regstr, callreg, value);
  61.       header = "";
  62.       ret = 0;
  63.     }
  64.   for (i = 0; i < 6; i++)
  65.     {
  66.       CHECK (calling_conventions_values[VAL+i], regname[i], calling_conventions_values[WANT+i]);
  67.     }
  68.   if (DIR_BIT (calling_conventions_values[RFLAGS]) != 0)
  69.     {
  70.       printf ("%s   rflags dir bit  got %d want 0n",
  71.       header, DIR_BIT (calling_conventions_values[RFLAGS]));
  72.       header = "";
  73.       ret = 0;
  74.     }
  75.   if ((calling_conventions_fenv.tag & 0xFFFF) != 0xFFFF)
  76.     {
  77.       printf ("%s   fpu tags  got 0x%X want 0xFFFFn",
  78.       header, calling_conventions_fenv.tag & 0xFFFF);
  79.       header = "";
  80.       ret = 0;
  81.     }
  82.   return ret;
  83. }