OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [gdb-6.8/] [gdb/] [testsuite/] [gdb.base/] [callfuncs.c] - Diff between revs 24 and 157

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 24 Rev 157
/* This testcase is part of GDB, the GNU debugger.
/* This testcase is part of GDB, the GNU debugger.
 
 
   Copyright 1993, 1994, 1995, 1998, 1999, 2000, 2001, 2004, 2007, 2008
   Copyright 1993, 1994, 1995, 1998, 1999, 2000, 2001, 2004, 2007, 2008
   Free Software Foundation, Inc.
   Free Software Foundation, Inc.
 
 
   This program is free software; you can redistribute it and/or modify
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3 of the License, or
   the Free Software Foundation; either version 3 of the License, or
   (at your option) any later version.
   (at your option) any later version.
 
 
   This program is distributed in the hope that it will be useful,
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
   GNU General Public License for more details.
 
 
   You should have received a copy of the GNU General Public License
   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <http://www.gnu.org/licenses/>.
   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
 
   Please email any bugs, comments, and/or additions to this file to:
   Please email any bugs, comments, and/or additions to this file to:
   bug-gdb@prep.ai.mit.edu  */
   bug-gdb@prep.ai.mit.edu  */
 
 
/* Support program for testing gdb's ability to call functions
/* Support program for testing gdb's ability to call functions
   in the inferior, pass appropriate arguments to those functions,
   in the inferior, pass appropriate arguments to those functions,
   and get the returned result. */
   and get the returned result. */
 
 
#ifdef NO_PROTOTYPES
#ifdef NO_PROTOTYPES
#define PARAMS(paramlist) ()
#define PARAMS(paramlist) ()
#else
#else
#define PARAMS(paramlist) paramlist
#define PARAMS(paramlist) paramlist
#endif
#endif
 
 
# include <stdlib.h>
# include <stdlib.h>
# include <string.h>
# include <string.h>
 
 
char char_val1 = 'a';
char char_val1 = 'a';
char char_val2 = 'b';
char char_val2 = 'b';
 
 
short short_val1 = 10;
short short_val1 = 10;
short short_val2 = -23;
short short_val2 = -23;
 
 
int int_val1 = 87;
int int_val1 = 87;
int int_val2 = -26;
int int_val2 = -26;
 
 
long long_val1 = 789;
long long_val1 = 789;
long long_val2 = -321;
long long_val2 = -321;
 
 
float float_val1 = 3.14159;
float float_val1 = 3.14159;
float float_val2 = -2.3765;
float float_val2 = -2.3765;
float float_val3 = 0.25;
float float_val3 = 0.25;
float float_val4 = 1.25;
float float_val4 = 1.25;
float float_val5 = 2.25;
float float_val5 = 2.25;
float float_val6 = 3.25;
float float_val6 = 3.25;
float float_val7 = 4.25;
float float_val7 = 4.25;
float float_val8 = 5.25;
float float_val8 = 5.25;
float float_val9 = 6.25;
float float_val9 = 6.25;
float float_val10 = 7.25;
float float_val10 = 7.25;
float float_val11 = 8.25;
float float_val11 = 8.25;
float float_val12 = 9.25;
float float_val12 = 9.25;
float float_val13 = 10.25;
float float_val13 = 10.25;
float float_val14 = 11.25;
float float_val14 = 11.25;
float float_val15 = 12.25;
float float_val15 = 12.25;
 
 
double double_val1 = 45.654;
double double_val1 = 45.654;
double double_val2 = -67.66;
double double_val2 = -67.66;
double double_val3 = 0.25;
double double_val3 = 0.25;
double double_val4 = 1.25;
double double_val4 = 1.25;
double double_val5 = 2.25;
double double_val5 = 2.25;
double double_val6 = 3.25;
double double_val6 = 3.25;
double double_val7 = 4.25;
double double_val7 = 4.25;
double double_val8 = 5.25;
double double_val8 = 5.25;
double double_val9 = 6.25;
double double_val9 = 6.25;
double double_val10 = 7.25;
double double_val10 = 7.25;
double double_val11 = 8.25;
double double_val11 = 8.25;
double double_val12 = 9.25;
double double_val12 = 9.25;
double double_val13 = 10.25;
double double_val13 = 10.25;
double double_val14 = 11.25;
double double_val14 = 11.25;
double double_val15 = 12.25;
double double_val15 = 12.25;
 
 
#define DELTA (0.001)
#define DELTA (0.001)
 
 
char *string_val1 = (char *)"string 1";
char *string_val1 = (char *)"string 1";
char *string_val2 = (char *)"string 2";
char *string_val2 = (char *)"string 2";
 
 
char char_array_val1[] = "carray 1";
char char_array_val1[] = "carray 1";
char char_array_val2[] = "carray 2";
char char_array_val2[] = "carray 2";
 
 
struct struct1 {
struct struct1 {
  char c;
  char c;
  short s;
  short s;
  int i;
  int i;
  long l;
  long l;
  float f;
  float f;
  double d;
  double d;
  char a[4];
  char a[4];
} struct_val1 = { 'x', 87, 76, 51, 2.1234, 9.876, "foo" };
} struct_val1 = { 'x', 87, 76, 51, 2.1234, 9.876, "foo" };
 
 
/* Some functions that can be passed as arguments to other test
/* Some functions that can be passed as arguments to other test
   functions, or called directly. */
   functions, or called directly. */
#ifdef PROTOTYPES
#ifdef PROTOTYPES
int add (int a, int b)
int add (int a, int b)
#else
#else
int add (a, b) int a, b;
int add (a, b) int a, b;
#endif
#endif
{
{
  return (a + b);
  return (a + b);
}
}
 
 
#ifdef PROTOTYPES
#ifdef PROTOTYPES
int doubleit (int a)
int doubleit (int a)
#else
#else
int doubleit (a) int a;
int doubleit (a) int a;
#endif
#endif
{
{
  return (a + a);
  return (a + a);
}
}
 
 
int (*func_val1) PARAMS((int,int)) = add;
int (*func_val1) PARAMS((int,int)) = add;
int (*func_val2) PARAMS((int)) = doubleit;
int (*func_val2) PARAMS((int)) = doubleit;
 
 
/* An enumeration and functions that test for specific values. */
/* An enumeration and functions that test for specific values. */
 
 
enum enumtype { enumval1, enumval2, enumval3 };
enum enumtype { enumval1, enumval2, enumval3 };
enum enumtype enum_val1 = enumval1;
enum enumtype enum_val1 = enumval1;
enum enumtype enum_val2 = enumval2;
enum enumtype enum_val2 = enumval2;
enum enumtype enum_val3 = enumval3;
enum enumtype enum_val3 = enumval3;
 
 
#ifdef PROTOTYPES
#ifdef PROTOTYPES
int t_enum_value1 (enum enumtype enum_arg)
int t_enum_value1 (enum enumtype enum_arg)
#else
#else
int t_enum_value1 (enum_arg) enum enumtype enum_arg;
int t_enum_value1 (enum_arg) enum enumtype enum_arg;
#endif
#endif
{
{
  return (enum_arg == enum_val1);
  return (enum_arg == enum_val1);
}
}
 
 
#ifdef PROTOTYPES
#ifdef PROTOTYPES
int t_enum_value2 (enum enumtype enum_arg)
int t_enum_value2 (enum enumtype enum_arg)
#else
#else
int t_enum_value2 (enum_arg) enum enumtype enum_arg;
int t_enum_value2 (enum_arg) enum enumtype enum_arg;
#endif
#endif
{
{
  return (enum_arg == enum_val2);
  return (enum_arg == enum_val2);
}
}
 
 
#ifdef PROTOTYPES
#ifdef PROTOTYPES
int t_enum_value3 (enum enumtype enum_arg)
int t_enum_value3 (enum enumtype enum_arg)
#else
#else
int t_enum_value3 (enum_arg) enum enumtype enum_arg;
int t_enum_value3 (enum_arg) enum enumtype enum_arg;
#endif
#endif
{
{
  return (enum_arg == enum_val3);
  return (enum_arg == enum_val3);
}
}
 
 
/* A function that takes a vector of integers (along with an explicit
/* A function that takes a vector of integers (along with an explicit
   count) and returns their sum. */
   count) and returns their sum. */
 
 
#ifdef PROTOTYPES
#ifdef PROTOTYPES
int sum_args (int argc, int argv[])
int sum_args (int argc, int argv[])
#else
#else
int sum_args (argc, argv) int argc; int argv[];
int sum_args (argc, argv) int argc; int argv[];
#endif
#endif
{
{
  int sumval = 0;
  int sumval = 0;
  int idx;
  int idx;
 
 
  for (idx = 0; idx < argc; idx++)
  for (idx = 0; idx < argc; idx++)
    {
    {
      sumval += argv[idx];
      sumval += argv[idx];
    }
    }
  return (sumval);
  return (sumval);
}
}
 
 
/* Test that we can call functions that take structs and return
/* Test that we can call functions that take structs and return
   members from that struct */
   members from that struct */
 
 
#ifdef PROTOTYPES
#ifdef PROTOTYPES
char   t_structs_c (struct struct1 tstruct) { return (tstruct.c); }
char   t_structs_c (struct struct1 tstruct) { return (tstruct.c); }
short  t_structs_s (struct struct1 tstruct) { return (tstruct.s); }
short  t_structs_s (struct struct1 tstruct) { return (tstruct.s); }
int    t_structs_i (struct struct1 tstruct) { return (tstruct.i); }
int    t_structs_i (struct struct1 tstruct) { return (tstruct.i); }
long   t_structs_l (struct struct1 tstruct) { return (tstruct.l); }
long   t_structs_l (struct struct1 tstruct) { return (tstruct.l); }
float  t_structs_f (struct struct1 tstruct) { return (tstruct.f); }
float  t_structs_f (struct struct1 tstruct) { return (tstruct.f); }
double t_structs_d (struct struct1 tstruct) { return (tstruct.d); }
double t_structs_d (struct struct1 tstruct) { return (tstruct.d); }
char  *t_structs_a (struct struct1 tstruct)
char  *t_structs_a (struct struct1 tstruct)
{
{
  static char buf[8];
  static char buf[8];
  strcpy (buf, tstruct.a);
  strcpy (buf, tstruct.a);
  return buf;
  return buf;
}
}
#else
#else
char   t_structs_c (tstruct) struct struct1 tstruct; { return (tstruct.c); }
char   t_structs_c (tstruct) struct struct1 tstruct; { return (tstruct.c); }
short  t_structs_s (tstruct) struct struct1 tstruct; { return (tstruct.s); }
short  t_structs_s (tstruct) struct struct1 tstruct; { return (tstruct.s); }
int    t_structs_i (tstruct) struct struct1 tstruct; { return (tstruct.i); }
int    t_structs_i (tstruct) struct struct1 tstruct; { return (tstruct.i); }
long   t_structs_l (tstruct) struct struct1 tstruct; { return (tstruct.l); }
long   t_structs_l (tstruct) struct struct1 tstruct; { return (tstruct.l); }
float  t_structs_f (tstruct) struct struct1 tstruct; { return (tstruct.f); }
float  t_structs_f (tstruct) struct struct1 tstruct; { return (tstruct.f); }
double t_structs_d (tstruct) struct struct1 tstruct; { return (tstruct.d); }
double t_structs_d (tstruct) struct struct1 tstruct; { return (tstruct.d); }
char  *t_structs_a (tstruct) struct struct1 tstruct;
char  *t_structs_a (tstruct) struct struct1 tstruct;
{
{
  static char buf[8];
  static char buf[8];
  strcpy (buf, tstruct.a);
  strcpy (buf, tstruct.a);
  return buf;
  return buf;
}
}
#endif
#endif
 
 
/* Test that calling functions works if there are a lot of arguments.  */
/* Test that calling functions works if there are a lot of arguments.  */
#ifdef PROTOTYPES
#ifdef PROTOTYPES
int
int
sum10 (int i0, int i1, int i2, int i3, int i4, int i5, int i6, int i7, int i8, int i9)
sum10 (int i0, int i1, int i2, int i3, int i4, int i5, int i6, int i7, int i8, int i9)
#else
#else
int
int
sum10 (i0, i1, i2, i3, i4, i5, i6, i7, i8, i9)
sum10 (i0, i1, i2, i3, i4, i5, i6, i7, i8, i9)
     int i0, i1, i2, i3, i4, i5, i6, i7, i8, i9;
     int i0, i1, i2, i3, i4, i5, i6, i7, i8, i9;
#endif
#endif
{
{
  return i0 + i1 + i2 + i3 + i4 + i5 + i6 + i7 + i8 + i9;
  return i0 + i1 + i2 + i3 + i4 + i5 + i6 + i7 + i8 + i9;
}
}
 
 
/* Test that args are passed in the right order. */
/* Test that args are passed in the right order. */
#ifdef PROTOTYPES
#ifdef PROTOTYPES
int
int
cmp10 (int i0, int i1, int i2, int i3, int i4, int i5, int i6, int i7, int i8, int i9)
cmp10 (int i0, int i1, int i2, int i3, int i4, int i5, int i6, int i7, int i8, int i9)
#else
#else
int
int
cmp10 (i0, i1, i2, i3, i4, i5, i6, i7, i8, i9)
cmp10 (i0, i1, i2, i3, i4, i5, i6, i7, i8, i9)
  int i0, i1, i2, i3, i4, i5, i6, i7, i8, i9;
  int i0, i1, i2, i3, i4, i5, i6, i7, i8, i9;
#endif
#endif
{
{
  return
  return
    (i0 == 0) && (i1 == 1) && (i2 == 2) && (i3 == 3) && (i4 == 4) &&
    (i0 == 0) && (i1 == 1) && (i2 == 2) && (i3 == 3) && (i4 == 4) &&
    (i5 == 5) && (i6 == 6) && (i7 == 7) && (i8 == 8) && (i9 == 9);
    (i5 == 5) && (i6 == 6) && (i7 == 7) && (i8 == 8) && (i9 == 9);
}
}
 
 
/* Functions that expect specific values to be passed and return
/* Functions that expect specific values to be passed and return
   either 0 or 1, depending upon whether the values were
   either 0 or 1, depending upon whether the values were
   passed incorrectly or correctly, respectively. */
   passed incorrectly or correctly, respectively. */
 
 
#ifdef PROTOTYPES
#ifdef PROTOTYPES
int t_char_values (char char_arg1, char char_arg2)
int t_char_values (char char_arg1, char char_arg2)
#else
#else
int t_char_values (char_arg1, char_arg2)
int t_char_values (char_arg1, char_arg2)
char char_arg1, char_arg2;
char char_arg1, char_arg2;
#endif
#endif
{
{
  return ((char_arg1 == char_val1) && (char_arg2 == char_val2));
  return ((char_arg1 == char_val1) && (char_arg2 == char_val2));
}
}
 
 
int
int
#ifdef PROTOTYPES
#ifdef PROTOTYPES
t_small_values (char arg1, short arg2, int arg3, char arg4, short arg5,
t_small_values (char arg1, short arg2, int arg3, char arg4, short arg5,
                char arg6, short arg7, int arg8, short arg9, short arg10)
                char arg6, short arg7, int arg8, short arg9, short arg10)
#else
#else
t_small_values (arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10)
t_small_values (arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10)
     char arg1;
     char arg1;
     short arg2;
     short arg2;
     int arg3;
     int arg3;
     char arg4;
     char arg4;
     short arg5;
     short arg5;
     char arg6;
     char arg6;
     short arg7;
     short arg7;
     int arg8;
     int arg8;
     short arg9;
     short arg9;
     short arg10;
     short arg10;
#endif
#endif
{
{
  return arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10;
  return arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10;
}
}
 
 
#ifdef PROTOTYPES
#ifdef PROTOTYPES
int t_short_values (short short_arg1, short short_arg2)
int t_short_values (short short_arg1, short short_arg2)
#else
#else
int t_short_values (short_arg1, short_arg2)
int t_short_values (short_arg1, short_arg2)
     short short_arg1, short_arg2;
     short short_arg1, short_arg2;
#endif
#endif
{
{
  return ((short_arg1 == short_val1) && (short_arg2 == short_val2));
  return ((short_arg1 == short_val1) && (short_arg2 == short_val2));
}
}
 
 
#ifdef PROTOTYPES
#ifdef PROTOTYPES
int t_int_values (int int_arg1, int int_arg2)
int t_int_values (int int_arg1, int int_arg2)
#else
#else
int t_int_values (int_arg1, int_arg2)
int t_int_values (int_arg1, int_arg2)
int int_arg1, int_arg2;
int int_arg1, int_arg2;
#endif
#endif
{
{
  return ((int_arg1 == int_val1) && (int_arg2 == int_val2));
  return ((int_arg1 == int_val1) && (int_arg2 == int_val2));
}
}
 
 
#ifdef PROTOTYPES
#ifdef PROTOTYPES
int t_long_values (long long_arg1, long long_arg2)
int t_long_values (long long_arg1, long long_arg2)
#else
#else
int t_long_values (long_arg1, long_arg2)
int t_long_values (long_arg1, long_arg2)
long long_arg1, long_arg2;
long long_arg1, long_arg2;
#endif
#endif
{
{
  return ((long_arg1 == long_val1) && (long_arg2 == long_val2));
  return ((long_arg1 == long_val1) && (long_arg2 == long_val2));
}
}
 
 
/* NOTE: THIS FUNCTION MUST NOT BE PROTOTYPED!!!!!
/* NOTE: THIS FUNCTION MUST NOT BE PROTOTYPED!!!!!
   There must be one version of "t_float_values" (this one)
   There must be one version of "t_float_values" (this one)
   that is not prototyped, and one (if supported) that is (following).
   that is not prototyped, and one (if supported) that is (following).
   That way GDB can be tested against both cases.  */
   That way GDB can be tested against both cases.  */
 
 
int t_float_values (float_arg1, float_arg2)
int t_float_values (float_arg1, float_arg2)
float float_arg1, float_arg2;
float float_arg1, float_arg2;
{
{
  return ((float_arg1 - float_val1) < DELTA
  return ((float_arg1 - float_val1) < DELTA
          && (float_arg1 - float_val1) > -DELTA
          && (float_arg1 - float_val1) > -DELTA
          && (float_arg2 - float_val2) < DELTA
          && (float_arg2 - float_val2) < DELTA
          && (float_arg2 - float_val2) > -DELTA);
          && (float_arg2 - float_val2) > -DELTA);
}
}
 
 
int
int
#ifdef NO_PROTOTYPES
#ifdef NO_PROTOTYPES
/* In this case we are just duplicating t_float_values, but that is the
/* In this case we are just duplicating t_float_values, but that is the
   easiest way to deal with either ANSI or non-ANSI.  */
   easiest way to deal with either ANSI or non-ANSI.  */
t_float_values2 (float_arg1, float_arg2)
t_float_values2 (float_arg1, float_arg2)
     float float_arg1, float_arg2;
     float float_arg1, float_arg2;
#else
#else
t_float_values2 (float float_arg1, float float_arg2)
t_float_values2 (float float_arg1, float float_arg2)
#endif
#endif
{
{
  return ((float_arg1 - float_val1) < DELTA
  return ((float_arg1 - float_val1) < DELTA
          && (float_arg1 - float_val1) > -DELTA
          && (float_arg1 - float_val1) > -DELTA
          && (float_arg2 - float_val2) < DELTA
          && (float_arg2 - float_val2) < DELTA
          && (float_arg2 - float_val2) > -DELTA);
          && (float_arg2 - float_val2) > -DELTA);
}
}
 
 
/* This function has many arguments to force some of them to be passed via
/* This function has many arguments to force some of them to be passed via
   the stack instead of registers, to test that GDB can construct correctly
   the stack instead of registers, to test that GDB can construct correctly
   the parameter save area. Note that Linux/ppc32 has 8 float registers to use
   the parameter save area. Note that Linux/ppc32 has 8 float registers to use
   for float parameter passing and Linux/ppc64 has 13, so the number of
   for float parameter passing and Linux/ppc64 has 13, so the number of
   arguments has to be at least 14 to contemplate these platforms.  */
   arguments has to be at least 14 to contemplate these platforms.  */
 
 
float
float
#ifdef NO_PROTOTYPES
#ifdef NO_PROTOTYPES
t_float_many_args (f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13,
t_float_many_args (f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13,
                   f14, f15)
                   f14, f15)
     float f1, float f2, float f3, float f4, float f5, float f6, float f7,
     float f1, float f2, float f3, float f4, float f5, float f6, float f7,
     float f8, float f9, float f10, float f11, float f12, float f13, float f14,
     float f8, float f9, float f10, float f11, float f12, float f13, float f14,
     float f15;
     float f15;
#else
#else
t_float_many_args (float f1, float f2, float f3, float f4, float f5, float f6,
t_float_many_args (float f1, float f2, float f3, float f4, float f5, float f6,
                   float f7, float f8, float f9, float f10, float f11,
                   float f7, float f8, float f9, float f10, float f11,
                   float f12, float f13, float f14, float f15)
                   float f12, float f13, float f14, float f15)
#endif
#endif
{
{
  float sum_args;
  float sum_args;
  float sum_values;
  float sum_values;
 
 
  sum_args = f1 + f2 + f3 + f4 + f5 + f6 + f7 + f8 + f9 + f10 + f11 + f12
  sum_args = f1 + f2 + f3 + f4 + f5 + f6 + f7 + f8 + f9 + f10 + f11 + f12
             + f13 + f14 + f15;
             + f13 + f14 + f15;
  sum_values = float_val1 + float_val2 + float_val3 + float_val4 + float_val5
  sum_values = float_val1 + float_val2 + float_val3 + float_val4 + float_val5
               + float_val6 + float_val7 + float_val8 + float_val9
               + float_val6 + float_val7 + float_val8 + float_val9
               + float_val10 + float_val11 + float_val12 + float_val13
               + float_val10 + float_val11 + float_val12 + float_val13
               + float_val14 + float_val15;
               + float_val14 + float_val15;
 
 
  return ((sum_args - sum_values) < DELTA
  return ((sum_args - sum_values) < DELTA
          && (sum_args - sum_values) > -DELTA);
          && (sum_args - sum_values) > -DELTA);
}
}
 
 
#ifdef PROTOTYPES
#ifdef PROTOTYPES
int t_double_values (double double_arg1, double double_arg2)
int t_double_values (double double_arg1, double double_arg2)
#else
#else
int t_double_values (double_arg1, double_arg2)
int t_double_values (double_arg1, double_arg2)
double double_arg1, double_arg2;
double double_arg1, double_arg2;
#endif
#endif
{
{
  return ((double_arg1 - double_val1) < DELTA
  return ((double_arg1 - double_val1) < DELTA
          && (double_arg1 - double_val1) > -DELTA
          && (double_arg1 - double_val1) > -DELTA
          && (double_arg2 - double_val2) < DELTA
          && (double_arg2 - double_val2) < DELTA
          && (double_arg2 - double_val2) > -DELTA);
          && (double_arg2 - double_val2) > -DELTA);
}
}
 
 
/* This function has many arguments to force some of them to be passed via
/* This function has many arguments to force some of them to be passed via
   the stack instead of registers, to test that GDB can construct correctly
   the stack instead of registers, to test that GDB can construct correctly
   the parameter save area. Note that Linux/ppc32 has 8 float registers to use
   the parameter save area. Note that Linux/ppc32 has 8 float registers to use
   for float parameter passing and Linux/ppc64 has 13, so the number of
   for float parameter passing and Linux/ppc64 has 13, so the number of
   arguments has to be at least 14 to contemplate these platforms.  */
   arguments has to be at least 14 to contemplate these platforms.  */
 
 
double
double
#ifdef NO_PROTOTYPES
#ifdef NO_PROTOTYPES
t_double_many_args (f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13,
t_double_many_args (f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13,
                   f14, f15)
                   f14, f15)
     double f1, double f2, double f3, double f4, double f5, double f6,
     double f1, double f2, double f3, double f4, double f5, double f6,
     double f7, double f8, double f9, double f10, double f11, double f12,
     double f7, double f8, double f9, double f10, double f11, double f12,
     double f13, double f14, double f15;
     double f13, double f14, double f15;
#else
#else
t_double_many_args (double f1, double f2, double f3, double f4, double f5,
t_double_many_args (double f1, double f2, double f3, double f4, double f5,
                    double f6, double f7, double f8, double f9, double f10,
                    double f6, double f7, double f8, double f9, double f10,
                    double f11, double f12, double f13, double f14, double f15)
                    double f11, double f12, double f13, double f14, double f15)
#endif
#endif
{
{
  double sum_args;
  double sum_args;
  double sum_values;
  double sum_values;
 
 
  sum_args = f1 + f2 + f3 + f4 + f5 + f6 + f7 + f8 + f9 + f10 + f11 + f12
  sum_args = f1 + f2 + f3 + f4 + f5 + f6 + f7 + f8 + f9 + f10 + f11 + f12
             + f13 + f14 + f15;
             + f13 + f14 + f15;
  sum_values = double_val1 + double_val2 + double_val3 + double_val4
  sum_values = double_val1 + double_val2 + double_val3 + double_val4
               + double_val5 + double_val6 + double_val7 + double_val8
               + double_val5 + double_val6 + double_val7 + double_val8
               + double_val9 + double_val10 + double_val11 + double_val12
               + double_val9 + double_val10 + double_val11 + double_val12
               + double_val13 + double_val14 + double_val15;
               + double_val13 + double_val14 + double_val15;
 
 
  return ((sum_args - sum_values) < DELTA
  return ((sum_args - sum_values) < DELTA
          && (sum_args - sum_values) > -DELTA);
          && (sum_args - sum_values) > -DELTA);
}
}
 
 
#ifdef PROTOTYPES
#ifdef PROTOTYPES
int t_string_values (char *string_arg1, char *string_arg2)
int t_string_values (char *string_arg1, char *string_arg2)
#else
#else
int t_string_values (string_arg1, string_arg2)
int t_string_values (string_arg1, string_arg2)
char *string_arg1, *string_arg2;
char *string_arg1, *string_arg2;
#endif
#endif
{
{
  return (!strcmp (string_arg1, string_val1) &&
  return (!strcmp (string_arg1, string_val1) &&
          !strcmp (string_arg2, string_val2));
          !strcmp (string_arg2, string_val2));
}
}
 
 
#ifdef PROTOTYPES
#ifdef PROTOTYPES
int t_char_array_values (char char_array_arg1[], char char_array_arg2[])
int t_char_array_values (char char_array_arg1[], char char_array_arg2[])
#else
#else
int t_char_array_values (char_array_arg1, char_array_arg2)
int t_char_array_values (char_array_arg1, char_array_arg2)
char char_array_arg1[], char_array_arg2[];
char char_array_arg1[], char_array_arg2[];
#endif
#endif
{
{
  return (!strcmp (char_array_arg1, char_array_val1) &&
  return (!strcmp (char_array_arg1, char_array_val1) &&
          !strcmp (char_array_arg2, char_array_val2));
          !strcmp (char_array_arg2, char_array_val2));
}
}
 
 
#ifdef PROTOTYPES
#ifdef PROTOTYPES
int t_double_int (double double_arg1, int int_arg2)
int t_double_int (double double_arg1, int int_arg2)
#else
#else
int t_double_int (double_arg1, int_arg2)
int t_double_int (double_arg1, int_arg2)
double double_arg1;
double double_arg1;
int int_arg2;
int int_arg2;
#endif
#endif
{
{
  return ((double_arg1 - int_arg2) < DELTA
  return ((double_arg1 - int_arg2) < DELTA
          && (double_arg1 - int_arg2) > -DELTA);
          && (double_arg1 - int_arg2) > -DELTA);
}
}
 
 
#ifdef PROTOTYPES
#ifdef PROTOTYPES
int t_int_double (int int_arg1, double double_arg2)
int t_int_double (int int_arg1, double double_arg2)
#else
#else
int t_int_double (int_arg1, double_arg2)
int t_int_double (int_arg1, double_arg2)
int int_arg1;
int int_arg1;
double double_arg2;
double double_arg2;
#endif
#endif
{
{
  return ((int_arg1 - double_arg2) < DELTA
  return ((int_arg1 - double_arg2) < DELTA
          && (int_arg1 - double_arg2) > -DELTA);
          && (int_arg1 - double_arg2) > -DELTA);
}
}
 
 
/* This used to simply compare the function pointer arguments with
/* This used to simply compare the function pointer arguments with
   known values for func_val1 and func_val2.  Doing so is valid ANSI
   known values for func_val1 and func_val2.  Doing so is valid ANSI
   code, but on some machines (RS6000, HPPA, others?) it may fail when
   code, but on some machines (RS6000, HPPA, others?) it may fail when
   called directly by GDB.
   called directly by GDB.
 
 
   In a nutshell, it's not possible for GDB to determine when the address
   In a nutshell, it's not possible for GDB to determine when the address
   of a function or the address of the function's stub/trampoline should
   of a function or the address of the function's stub/trampoline should
   be passed.
   be passed.
 
 
   So, to avoid GDB lossage in the common case, we perform calls through the
   So, to avoid GDB lossage in the common case, we perform calls through the
   various function pointers and compare the return values.  For the HPPA
   various function pointers and compare the return values.  For the HPPA
   at least, this allows the common case to work.
   at least, this allows the common case to work.
 
 
   If one wants to try something more complicated, pass the address of
   If one wants to try something more complicated, pass the address of
   a function accepting a "double" as one of its first 4 arguments.  Call
   a function accepting a "double" as one of its first 4 arguments.  Call
   that function indirectly through the function pointer.  This would fail
   that function indirectly through the function pointer.  This would fail
   on the HPPA.  */
   on the HPPA.  */
 
 
#ifdef PROTOTYPES
#ifdef PROTOTYPES
int t_func_values (int (*func_arg1)(int, int), int (*func_arg2)(int))
int t_func_values (int (*func_arg1)(int, int), int (*func_arg2)(int))
#else
#else
int t_func_values (func_arg1, func_arg2)
int t_func_values (func_arg1, func_arg2)
int (*func_arg1) PARAMS ((int, int));
int (*func_arg1) PARAMS ((int, int));
int (*func_arg2) PARAMS ((int));
int (*func_arg2) PARAMS ((int));
#endif
#endif
{
{
  return ((*func_arg1) (5,5)  == (*func_val1) (5,5)
  return ((*func_arg1) (5,5)  == (*func_val1) (5,5)
          && (*func_arg2) (6) == (*func_val2) (6));
          && (*func_arg2) (6) == (*func_val2) (6));
}
}
 
 
#ifdef PROTOTYPES
#ifdef PROTOTYPES
int t_call_add (int (*func_arg1)(int, int), int a, int b)
int t_call_add (int (*func_arg1)(int, int), int a, int b)
#else
#else
int t_call_add (func_arg1, a, b)
int t_call_add (func_arg1, a, b)
int (*func_arg1) PARAMS ((int, int));
int (*func_arg1) PARAMS ((int, int));
int a, b;
int a, b;
#endif
#endif
{
{
  return ((*func_arg1)(a, b));
  return ((*func_arg1)(a, b));
}
}
 
 
 
 
/* Gotta have a main to be able to generate a linked, runnable
/* Gotta have a main to be able to generate a linked, runnable
   executable, and also provide a useful place to set a breakpoint. */
   executable, and also provide a useful place to set a breakpoint. */
 
 
int main ()
int main ()
{
{
#ifdef usestubs
#ifdef usestubs
  set_debug_traps();
  set_debug_traps();
  breakpoint();
  breakpoint();
#endif
#endif
  malloc(1);
  malloc(1);
  t_double_values(double_val1, double_val2);
  t_double_values(double_val1, double_val2);
  t_structs_c(struct_val1);
  t_structs_c(struct_val1);
  return 0 ;
  return 0 ;
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.