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

数学计算

开发平台:

Unix_Linux

  1. /* Test .type directives on assembler functions.
  2. Copyright 2001 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 <stdlib.h>
  16. #include "gmp.h"
  17. #include "gmp-impl.h"
  18. #include "tests.h"
  19. /* This apparently trivial test is designed to detect missing .type and
  20.    .size directives in asm code, per the problem described under
  21.    GMP_ASM_TYPE in acinclude.m4.
  22.    A failure can be provoked in a shared or shared+static build by making
  23.    TYPE and SIZE in config.m4 empty, either by editing it or by configuring
  24.    with
  25.        ./configure gmp_cv_asm_type= gmp_cv_asm_size=
  26.    mpn_add_n is used for the test because normally it's implemented in
  27.    assembler on a CPU that has any asm code.
  28.    Enhancement: As noted with GMP_ASM_TYPE, if .type is wrong but .size is
  29.    right then everything works, but uses code copied down to the mainline
  30.    data area.  Maybe we could detect that if we built a test library with an
  31.    object that had .size deliberately disabled.  */
  32. int
  33. main (void)
  34. {
  35.   static const mp_limb_t x[3]    = { 1, 2, 3 };
  36.   static const mp_limb_t y[3]    = { 4, 5, 6 };
  37.   static const mp_limb_t want[3] = { 5, 7, 9 };
  38.   mp_limb_t  got[3];
  39.   mpn_add_n (got, x, y, (mp_size_t) 3);
  40.   if (refmpn_cmp (got, want, (mp_size_t) 3) != 0)
  41.     {
  42.       printf ("Wrong result from mpn_add_nn");
  43.       abort ();
  44.     }
  45.   exit (0);
  46. }