Copyright updates for 2007.
[external/binutils.git] / gdb / testsuite / gdb.base / callfuncs.c
1 /* This testcase is part of GDB, the GNU debugger.
2
3    Copyright 1993, 1994, 1995, 1998, 1999, 2000, 2001, 2004, 2007
4    Free Software Foundation, Inc.
5
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.
10
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.
15  
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.
19
20    Please email any bugs, comments, and/or additions to this file to:
21    bug-gdb@prep.ai.mit.edu  */
22
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. */
26
27 #ifdef NO_PROTOTYPES
28 #define PARAMS(paramlist) ()
29 #else
30 #define PARAMS(paramlist) paramlist
31 #endif
32
33 # include <stdlib.h>
34 # include <string.h>
35
36 char char_val1 = 'a';
37 char char_val2 = 'b';
38
39 short short_val1 = 10;
40 short short_val2 = -23;
41
42 int int_val1 = 87;
43 int int_val2 = -26;
44
45 long long_val1 = 789;
46 long long_val2 = -321;
47
48 float float_val1 = 3.14159;
49 float float_val2 = -2.3765;
50
51 double double_val1 = 45.654;
52 double double_val2 = -67.66;
53
54 #define DELTA (0.001)
55
56 char *string_val1 = (char *)"string 1";
57 char *string_val2 = (char *)"string 2";
58
59 char char_array_val1[] = "carray 1";
60 char char_array_val2[] = "carray 2";
61
62 struct struct1 {
63   char c;
64   short s;
65   int i;
66   long l;
67   float f;
68   double d;
69   char a[4];
70 } struct_val1 = { 'x', 87, 76, 51, 2.1234, 9.876, "foo" };
71
72 /* Some functions that can be passed as arguments to other test
73    functions, or called directly. */
74 #ifdef PROTOTYPES
75 int add (int a, int b)
76 #else
77 int add (a, b) int a, b;
78 #endif
79 {
80   return (a + b);
81 }
82
83 #ifdef PROTOTYPES
84 int doubleit (int a)
85 #else
86 int doubleit (a) int a;
87 #endif
88 {
89   return (a + a);
90 }
91
92 int (*func_val1) PARAMS((int,int)) = add;
93 int (*func_val2) PARAMS((int)) = doubleit;
94
95 /* An enumeration and functions that test for specific values. */
96
97 enum enumtype { enumval1, enumval2, enumval3 };
98 enum enumtype enum_val1 = enumval1;
99 enum enumtype enum_val2 = enumval2;
100 enum enumtype enum_val3 = enumval3;
101
102 #ifdef PROTOTYPES
103 int t_enum_value1 (enum enumtype enum_arg)
104 #else
105 int t_enum_value1 (enum_arg) enum enumtype enum_arg;
106 #endif
107 {
108   return (enum_arg == enum_val1);
109 }
110
111 #ifdef PROTOTYPES
112 int t_enum_value2 (enum enumtype enum_arg)
113 #else
114 int t_enum_value2 (enum_arg) enum enumtype enum_arg;
115 #endif
116 {
117   return (enum_arg == enum_val2);
118 }
119
120 #ifdef PROTOTYPES
121 int t_enum_value3 (enum enumtype enum_arg)
122 #else
123 int t_enum_value3 (enum_arg) enum enumtype enum_arg;
124 #endif
125 {
126   return (enum_arg == enum_val3);
127 }
128
129 /* A function that takes a vector of integers (along with an explicit
130    count) and returns their sum. */
131
132 #ifdef PROTOTYPES
133 int sum_args (int argc, int argv[])
134 #else
135 int sum_args (argc, argv) int argc; int argv[];
136 #endif
137 {
138   int sumval = 0;
139   int idx;
140
141   for (idx = 0; idx < argc; idx++)
142     {
143       sumval += argv[idx];
144     }
145   return (sumval);
146 }
147
148 /* Test that we can call functions that take structs and return
149    members from that struct */
150
151 #ifdef PROTOTYPES
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)
159 {
160   static char buf[8];
161   strcpy (buf, tstruct.a);
162   return buf;
163 }
164 #else
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;
172 {
173   static char buf[8];
174   strcpy (buf, tstruct.a);
175   return buf;
176 }
177 #endif
178
179 /* Test that calling functions works if there are a lot of arguments.  */
180 #ifdef PROTOTYPES
181 int
182 sum10 (int i0, int i1, int i2, int i3, int i4, int i5, int i6, int i7, int i8, int i9)
183 #else
184 int
185 sum10 (i0, i1, i2, i3, i4, i5, i6, i7, i8, i9)
186      int i0, i1, i2, i3, i4, i5, i6, i7, i8, i9;
187 #endif
188 {
189   return i0 + i1 + i2 + i3 + i4 + i5 + i6 + i7 + i8 + i9;
190 }
191
192 /* Test that args are passed in the right order. */
193 #ifdef PROTOTYPES
194 int
195 cmp10 (int i0, int i1, int i2, int i3, int i4, int i5, int i6, int i7, int i8, int i9)
196 #else
197 int
198 cmp10 (i0, i1, i2, i3, i4, i5, i6, i7, i8, i9)
199   int i0, i1, i2, i3, i4, i5, i6, i7, i8, i9;
200 #endif
201 {
202   return
203     (i0 == 0) && (i1 == 1) && (i2 == 2) && (i3 == 3) && (i4 == 4) &&
204     (i5 == 5) && (i6 == 6) && (i7 == 7) && (i8 == 8) && (i9 == 9);
205 }
206
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. */
210
211 #ifdef PROTOTYPES
212 int t_char_values (char char_arg1, char char_arg2)
213 #else
214 int t_char_values (char_arg1, char_arg2)
215 char char_arg1, char_arg2;
216 #endif
217 {
218   return ((char_arg1 == char_val1) && (char_arg2 == char_val2));
219 }
220
221 int
222 #ifdef PROTOTYPES
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)
225 #else
226 t_small_values (arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10)
227      char arg1;
228      short arg2;
229      int arg3;
230      char arg4;
231      short arg5;
232      char arg6;
233      short arg7;
234      int arg8;
235      short arg9;
236      short arg10;
237 #endif
238 {
239   return arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10;
240 }
241
242 #ifdef PROTOTYPES
243 int t_short_values (short short_arg1, short short_arg2)
244 #else
245 int t_short_values (short_arg1, short_arg2)
246      short short_arg1, short_arg2;
247 #endif
248 {
249   return ((short_arg1 == short_val1) && (short_arg2 == short_val2));
250 }
251
252 #ifdef PROTOTYPES
253 int t_int_values (int int_arg1, int int_arg2)
254 #else
255 int t_int_values (int_arg1, int_arg2)
256 int int_arg1, int_arg2;
257 #endif
258 {
259   return ((int_arg1 == int_val1) && (int_arg2 == int_val2));
260 }
261
262 #ifdef PROTOTYPES
263 int t_long_values (long long_arg1, long long_arg2)
264 #else
265 int t_long_values (long_arg1, long_arg2)
266 long long_arg1, long_arg2;
267 #endif
268 {
269   return ((long_arg1 == long_val1) && (long_arg2 == long_val2));
270 }
271
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.  */
276    
277 int t_float_values (float_arg1, float_arg2)
278 float float_arg1, float_arg2;
279 {
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);
284 }
285
286 int
287 #ifdef NO_PROTOTYPES
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;
292 #else
293 t_float_values2 (float float_arg1, float float_arg2)
294 #endif
295 {
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);
300 }
301
302 #ifdef PROTOTYPES
303 int t_double_values (double double_arg1, double double_arg2)
304 #else
305 int t_double_values (double_arg1, double_arg2)
306 double double_arg1, double_arg2;
307 #endif
308 {
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);
313 }
314
315 #ifdef PROTOTYPES
316 int t_string_values (char *string_arg1, char *string_arg2)
317 #else
318 int t_string_values (string_arg1, string_arg2)
319 char *string_arg1, *string_arg2;
320 #endif
321 {
322   return (!strcmp (string_arg1, string_val1) &&
323           !strcmp (string_arg2, string_val2));
324 }
325
326 #ifdef PROTOTYPES
327 int t_char_array_values (char char_array_arg1[], char char_array_arg2[])
328 #else
329 int t_char_array_values (char_array_arg1, char_array_arg2)
330 char char_array_arg1[], char_array_arg2[];
331 #endif
332 {
333   return (!strcmp (char_array_arg1, char_array_val1) &&
334           !strcmp (char_array_arg2, char_array_val2));
335 }
336
337
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.
342
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
345    be passed.
346
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.
350
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
354    on the HPPA.  */
355
356 #ifdef PROTOTYPES
357 int t_func_values (int (*func_arg1)(int, int), int (*func_arg2)(int))
358 #else
359 int t_func_values (func_arg1, func_arg2)
360 int (*func_arg1) PARAMS ((int, int));
361 int (*func_arg2) PARAMS ((int));
362 #endif
363 {
364   return ((*func_arg1) (5,5)  == (*func_val1) (5,5)
365           && (*func_arg2) (6) == (*func_val2) (6));
366 }
367
368 #ifdef PROTOTYPES
369 int t_call_add (int (*func_arg1)(int, int), int a, int b)
370 #else
371 int t_call_add (func_arg1, a, b)
372 int (*func_arg1) PARAMS ((int, int));
373 int a, b;
374 #endif
375 {
376   return ((*func_arg1)(a, b));
377 }
378
379
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. */
382
383 int main ()
384 {
385 #ifdef usestubs
386   set_debug_traps();
387   breakpoint();
388 #endif
389   malloc(1);
390   t_double_values(double_val1, double_val2);
391   t_structs_c(struct_val1);
392   return 0 ;
393 }