1 /* This testcase is part of GDB, the GNU debugger.
3 Copyright 1993, 1994, 1995, 1998, 1999, 2000, 2001, 2004
4 Free Software Foundation, Inc.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 Please email any bugs, comments, and/or additions to this file to:
21 bug-gdb@prep.ai.mit.edu */
23 /* Support program for testing gdb's ability to call functions
24 in the inferior, pass appropriate arguments to those functions,
25 and get the returned result. */
28 #define PARAMS(paramlist) ()
30 #define PARAMS(paramlist) paramlist
39 short short_val1
= 10;
40 short short_val2
= -23;
46 long long_val2
= -321;
48 float float_val1
= 3.14159;
49 float float_val2
= -2.3765;
51 double double_val1
= 45.654;
52 double double_val2
= -67.66;
56 char *string_val1
= (char *)"string 1";
57 char *string_val2
= (char *)"string 2";
59 char char_array_val1
[] = "carray 1";
60 char char_array_val2
[] = "carray 2";
70 } struct_val1
= { 'x', 87, 76, 51, 2.1234, 9.876, "foo" };
72 /* Some functions that can be passed as arguments to other test
73 functions, or called directly. */
75 int add (int a
, int b
)
77 int add (a
, b
) int a
, b
;
86 int doubleit (a
) int a
;
92 int (*func_val1
) PARAMS((int,int)) = add
;
93 int (*func_val2
) PARAMS((int)) = doubleit
;
95 /* An enumeration and functions that test for specific values. */
97 enum enumtype
{ enumval1
, enumval2
, enumval3
};
98 enum enumtype enum_val1
= enumval1
;
99 enum enumtype enum_val2
= enumval2
;
100 enum enumtype enum_val3
= enumval3
;
103 int t_enum_value1 (enum enumtype enum_arg
)
105 int t_enum_value1 (enum_arg
) enum enumtype enum_arg
;
108 return (enum_arg
== enum_val1
);
112 int t_enum_value2 (enum enumtype enum_arg
)
114 int t_enum_value2 (enum_arg
) enum enumtype enum_arg
;
117 return (enum_arg
== enum_val2
);
121 int t_enum_value3 (enum enumtype enum_arg
)
123 int t_enum_value3 (enum_arg
) enum enumtype enum_arg
;
126 return (enum_arg
== enum_val3
);
129 /* A function that takes a vector of integers (along with an explicit
130 count) and returns their sum. */
133 int sum_args (int argc
, int argv
[])
135 int sum_args (argc
, argv
) int argc
; int argv
[];
141 for (idx
= 0; idx
< argc
; idx
++)
148 /* Test that we can call functions that take structs and return
149 members from that struct */
152 char t_structs_c (struct struct1 tstruct
) { return (tstruct
.c
); }
153 short t_structs_s (struct struct1 tstruct
) { return (tstruct
.s
); }
154 int t_structs_i (struct struct1 tstruct
) { return (tstruct
.i
); }
155 long t_structs_l (struct struct1 tstruct
) { return (tstruct
.l
); }
156 float t_structs_f (struct struct1 tstruct
) { return (tstruct
.f
); }
157 double t_structs_d (struct struct1 tstruct
) { return (tstruct
.d
); }
158 char *t_structs_a (struct struct1 tstruct
)
161 strcpy (buf
, tstruct
.a
);
165 char t_structs_c (tstruct
) struct struct1 tstruct
; { return (tstruct
.c
); }
166 short t_structs_s (tstruct
) struct struct1 tstruct
; { return (tstruct
.s
); }
167 int t_structs_i (tstruct
) struct struct1 tstruct
; { return (tstruct
.i
); }
168 long t_structs_l (tstruct
) struct struct1 tstruct
; { return (tstruct
.l
); }
169 float t_structs_f (tstruct
) struct struct1 tstruct
; { return (tstruct
.f
); }
170 double t_structs_d (tstruct
) struct struct1 tstruct
; { return (tstruct
.d
); }
171 char *t_structs_a (tstruct
) struct struct1 tstruct
;
174 strcpy (buf
, tstruct
.a
);
179 /* Test that calling functions works if there are a lot of arguments. */
182 sum10 (int i0
, int i1
, int i2
, int i3
, int i4
, int i5
, int i6
, int i7
, int i8
, int i9
)
185 sum10 (i0
, i1
, i2
, i3
, i4
, i5
, i6
, i7
, i8
, i9
)
186 int i0
, i1
, i2
, i3
, i4
, i5
, i6
, i7
, i8
, i9
;
189 return i0
+ i1
+ i2
+ i3
+ i4
+ i5
+ i6
+ i7
+ i8
+ i9
;
192 /* Test that args are passed in the right order. */
195 cmp10 (int i0
, int i1
, int i2
, int i3
, int i4
, int i5
, int i6
, int i7
, int i8
, int i9
)
198 cmp10 (i0
, i1
, i2
, i3
, i4
, i5
, i6
, i7
, i8
, i9
)
199 int i0
, i1
, i2
, i3
, i4
, i5
, i6
, i7
, i8
, i9
;
203 (i0
== 0) && (i1
== 1) && (i2
== 2) && (i3
== 3) && (i4
== 4) &&
204 (i5
== 5) && (i6
== 6) && (i7
== 7) && (i8
== 8) && (i9
== 9);
207 /* Functions that expect specific values to be passed and return
208 either 0 or 1, depending upon whether the values were
209 passed incorrectly or correctly, respectively. */
212 int t_char_values (char char_arg1
, char char_arg2
)
214 int t_char_values (char_arg1
, char_arg2
)
215 char char_arg1
, char_arg2
;
218 return ((char_arg1
== char_val1
) && (char_arg2
== char_val2
));
223 t_small_values (char arg1
, short arg2
, int arg3
, char arg4
, short arg5
,
224 char arg6
, short arg7
, int arg8
, short arg9
, short arg10
)
226 t_small_values (arg1
, arg2
, arg3
, arg4
, arg5
, arg6
, arg7
, arg8
, arg9
, arg10
)
239 return arg1
+ arg2
+ arg3
+ arg4
+ arg5
+ arg6
+ arg7
+ arg8
+ arg9
+ arg10
;
243 int t_short_values (short short_arg1
, short short_arg2
)
245 int t_short_values (short_arg1
, short_arg2
)
246 short short_arg1
, short_arg2
;
249 return ((short_arg1
== short_val1
) && (short_arg2
== short_val2
));
253 int t_int_values (int int_arg1
, int int_arg2
)
255 int t_int_values (int_arg1
, int_arg2
)
256 int int_arg1
, int_arg2
;
259 return ((int_arg1
== int_val1
) && (int_arg2
== int_val2
));
263 int t_long_values (long long_arg1
, long long_arg2
)
265 int t_long_values (long_arg1
, long_arg2
)
266 long long_arg1
, long_arg2
;
269 return ((long_arg1
== long_val1
) && (long_arg2
== long_val2
));
272 /* NOTE: THIS FUNCTION MUST NOT BE PROTOTYPED!!!!!
273 There must be one version of "t_float_values" (this one)
274 that is not prototyped, and one (if supported) that is (following).
275 That way GDB can be tested against both cases. */
277 int t_float_values (float_arg1
, float_arg2
)
278 float float_arg1
, float_arg2
;
280 return ((float_arg1
- float_val1
) < DELTA
281 && (float_arg1
- float_val1
) > -DELTA
282 && (float_arg2
- float_val2
) < DELTA
283 && (float_arg2
- float_val2
) > -DELTA
);
288 /* In this case we are just duplicating t_float_values, but that is the
289 easiest way to deal with either ANSI or non-ANSI. */
290 t_float_values2 (float_arg1
, float_arg2
)
291 float float_arg1
, float_arg2
;
293 t_float_values2 (float float_arg1
, float float_arg2
)
296 return ((float_arg1
- float_val1
) < DELTA
297 && (float_arg1
- float_val1
) > -DELTA
298 && (float_arg2
- float_val2
) < DELTA
299 && (float_arg2
- float_val2
) > -DELTA
);
303 int t_double_values (double double_arg1
, double double_arg2
)
305 int t_double_values (double_arg1
, double_arg2
)
306 double double_arg1
, double_arg2
;
309 return ((double_arg1
- double_val1
) < DELTA
310 && (double_arg1
- double_val1
) > -DELTA
311 && (double_arg2
- double_val2
) < DELTA
312 && (double_arg2
- double_val2
) > -DELTA
);
316 int t_string_values (char *string_arg1
, char *string_arg2
)
318 int t_string_values (string_arg1
, string_arg2
)
319 char *string_arg1
, *string_arg2
;
322 return (!strcmp (string_arg1
, string_val1
) &&
323 !strcmp (string_arg2
, string_val2
));
327 int t_char_array_values (char char_array_arg1
[], char char_array_arg2
[])
329 int t_char_array_values (char_array_arg1
, char_array_arg2
)
330 char char_array_arg1
[], char_array_arg2
[];
333 return (!strcmp (char_array_arg1
, char_array_val1
) &&
334 !strcmp (char_array_arg2
, char_array_val2
));
338 /* This used to simply compare the function pointer arguments with
339 known values for func_val1 and func_val2. Doing so is valid ANSI
340 code, but on some machines (RS6000, HPPA, others?) it may fail when
341 called directly by GDB.
343 In a nutshell, it's not possible for GDB to determine when the address
344 of a function or the address of the function's stub/trampoline should
347 So, to avoid GDB lossage in the common case, we perform calls through the
348 various function pointers and compare the return values. For the HPPA
349 at least, this allows the common case to work.
351 If one wants to try something more complicated, pass the address of
352 a function accepting a "double" as one of its first 4 arguments. Call
353 that function indirectly through the function pointer. This would fail
357 int t_func_values (int (*func_arg1
)(int, int), int (*func_arg2
)(int))
359 int t_func_values (func_arg1
, func_arg2
)
360 int (*func_arg1
) PARAMS ((int, int));
361 int (*func_arg2
) PARAMS ((int));
364 return ((*func_arg1
) (5,5) == (*func_val1
) (5,5)
365 && (*func_arg2
) (6) == (*func_val2
) (6));
369 int t_call_add (int (*func_arg1
)(int, int), int a
, int b
)
371 int t_call_add (func_arg1
, a
, b
)
372 int (*func_arg1
) PARAMS ((int, int));
376 return ((*func_arg1
)(a
, b
));
380 /* Gotta have a main to be able to generate a linked, runnable
381 executable, and also provide a useful place to set a breakpoint. */
390 t_double_values(double_val1
, double_val2
);
391 t_structs_c(struct_val1
);