]>
Commit | Line | Data |
---|---|---|
c906108c | 1 | /* Multiple source language support for GDB. |
6c6ea35e | 2 | Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002 |
b6ba6518 | 3 | Free Software Foundation, Inc. |
c906108c SS |
4 | Contributed by the Department of Computer Science at the State University |
5 | of New York at Buffalo. | |
6 | ||
c5aa993b | 7 | This file is part of GDB. |
c906108c | 8 | |
c5aa993b JM |
9 | This program is free software; you can redistribute it and/or modify |
10 | it under the terms of the GNU General Public License as published by | |
11 | the Free Software Foundation; either version 2 of the License, or | |
12 | (at your option) any later version. | |
c906108c | 13 | |
c5aa993b JM |
14 | This program is distributed in the hope that it will be useful, |
15 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 | GNU General Public License for more details. | |
c906108c | 18 | |
c5aa993b JM |
19 | You should have received a copy of the GNU General Public License |
20 | along with this program; if not, write to the Free Software | |
21 | Foundation, Inc., 59 Temple Place - Suite 330, | |
22 | Boston, MA 02111-1307, USA. */ | |
c906108c SS |
23 | |
24 | /* This file contains functions that return things that are specific | |
25 | to languages. Each function should examine current_language if necessary, | |
26 | and return the appropriate result. */ | |
27 | ||
28 | /* FIXME: Most of these would be better organized as macros which | |
29 | return data out of a "language-specific" struct pointer that is set | |
30 | whenever the working language changes. That would be a lot faster. */ | |
31 | ||
32 | #include "defs.h" | |
33 | #include <ctype.h> | |
34 | #include "gdb_string.h" | |
35 | ||
36 | #include "symtab.h" | |
37 | #include "gdbtypes.h" | |
38 | #include "value.h" | |
39 | #include "gdbcmd.h" | |
c906108c SS |
40 | #include "expression.h" |
41 | #include "language.h" | |
42 | #include "target.h" | |
43 | #include "parser-defs.h" | |
8caabe69 | 44 | #include "jv-lang.h" |
c906108c | 45 | |
a14ed312 | 46 | extern void _initialize_language (void); |
392a587b | 47 | |
a14ed312 | 48 | static void show_language_command (char *, int); |
c906108c | 49 | |
a14ed312 | 50 | static void set_language_command (char *, int); |
c906108c | 51 | |
a14ed312 | 52 | static void show_type_command (char *, int); |
c906108c | 53 | |
a14ed312 | 54 | static void set_type_command (char *, int); |
c906108c | 55 | |
a14ed312 | 56 | static void show_range_command (char *, int); |
c906108c | 57 | |
a14ed312 | 58 | static void set_range_command (char *, int); |
c906108c | 59 | |
63872f9d JG |
60 | static void show_case_command (char *, int); |
61 | ||
62 | static void set_case_command (char *, int); | |
63 | ||
64 | static void set_case_str (void); | |
65 | ||
a14ed312 | 66 | static void set_range_str (void); |
c906108c | 67 | |
a14ed312 | 68 | static void set_type_str (void); |
c906108c | 69 | |
a14ed312 | 70 | static void set_lang_str (void); |
c906108c | 71 | |
a14ed312 | 72 | static void unk_lang_error (char *); |
c906108c | 73 | |
a14ed312 | 74 | static int unk_lang_parser (void); |
c906108c | 75 | |
a14ed312 | 76 | static void show_check (char *, int); |
c906108c | 77 | |
a14ed312 | 78 | static void set_check (char *, int); |
c906108c | 79 | |
63872f9d | 80 | static void set_type_range_case (void); |
c906108c | 81 | |
d9fcf2fb | 82 | static void unk_lang_emit_char (int c, struct ui_file *stream, int quoter); |
c906108c | 83 | |
d9fcf2fb | 84 | static void unk_lang_printchar (int c, struct ui_file *stream); |
c906108c | 85 | |
d9fcf2fb JM |
86 | static void unk_lang_printstr (struct ui_file * stream, char *string, |
87 | unsigned int length, int width, | |
88 | int force_ellipses); | |
c906108c | 89 | |
a14ed312 | 90 | static struct type *unk_lang_create_fundamental_type (struct objfile *, int); |
c906108c | 91 | |
d9fcf2fb JM |
92 | static void unk_lang_print_type (struct type *, char *, struct ui_file *, |
93 | int, int); | |
c906108c | 94 | |
d9fcf2fb JM |
95 | static int unk_lang_val_print (struct type *, char *, int, CORE_ADDR, |
96 | struct ui_file *, int, int, int, | |
97 | enum val_prettyprint); | |
c906108c | 98 | |
3d6d86c6 | 99 | static int unk_lang_value_print (struct value *, struct ui_file *, int, enum val_prettyprint); |
c906108c SS |
100 | |
101 | /* Forward declaration */ | |
102 | extern const struct language_defn unknown_language_defn; | |
c5aa993b | 103 | |
c906108c | 104 | /* The current (default at startup) state of type and range checking. |
c5aa993b JM |
105 | (If the modes are set to "auto", though, these are changed based |
106 | on the default language at startup, and then again based on the | |
107 | language of the first source file. */ | |
c906108c SS |
108 | |
109 | enum range_mode range_mode = range_mode_auto; | |
110 | enum range_check range_check = range_check_off; | |
111 | enum type_mode type_mode = type_mode_auto; | |
112 | enum type_check type_check = type_check_off; | |
63872f9d JG |
113 | enum case_mode case_mode = case_mode_auto; |
114 | enum case_sensitivity case_sensitivity = case_sensitive_on; | |
c906108c SS |
115 | |
116 | /* The current language and language_mode (see language.h) */ | |
117 | ||
118 | const struct language_defn *current_language = &unknown_language_defn; | |
119 | enum language_mode language_mode = language_mode_auto; | |
120 | ||
121 | /* The language that the user expects to be typing in (the language | |
122 | of main(), or the last language we notified them about, or C). */ | |
123 | ||
124 | const struct language_defn *expected_language; | |
125 | ||
126 | /* The list of supported languages. The list itself is malloc'd. */ | |
127 | ||
128 | static const struct language_defn **languages; | |
129 | static unsigned languages_size; | |
130 | static unsigned languages_allocsize; | |
131 | #define DEFAULT_ALLOCSIZE 4 | |
132 | ||
133 | /* The "set language/type/range" commands all put stuff in these | |
134 | buffers. This is to make them work as set/show commands. The | |
135 | user's string is copied here, then the set_* commands look at | |
136 | them and update them to something that looks nice when it is | |
137 | printed out. */ | |
138 | ||
139 | static char *language; | |
140 | static char *type; | |
141 | static char *range; | |
63872f9d | 142 | static char *case_sensitive; |
c906108c SS |
143 | |
144 | /* Warning issued when current_language and the language of the current | |
145 | frame do not match. */ | |
146 | char lang_frame_mismatch_warn[] = | |
c5aa993b | 147 | "Warning: the current language does not match this frame."; |
c906108c | 148 | \f |
c5aa993b | 149 | |
c906108c SS |
150 | /* This page contains the functions corresponding to GDB commands |
151 | and their helpers. */ | |
152 | ||
153 | /* Show command. Display a warning if the language set | |
154 | does not match the frame. */ | |
155 | static void | |
fba45db2 | 156 | show_language_command (char *ignore, int from_tty) |
c906108c | 157 | { |
c5aa993b | 158 | enum language flang; /* The language of the current frame */ |
c906108c | 159 | |
c5aa993b JM |
160 | flang = get_frame_language (); |
161 | if (flang != language_unknown && | |
162 | language_mode == language_mode_manual && | |
163 | current_language->la_language != flang) | |
164 | printf_filtered ("%s\n", lang_frame_mismatch_warn); | |
c906108c SS |
165 | } |
166 | ||
167 | /* Set command. Change the current working language. */ | |
168 | static void | |
fba45db2 | 169 | set_language_command (char *ignore, int from_tty) |
c906108c SS |
170 | { |
171 | int i; | |
172 | enum language flang; | |
173 | char *err_lang; | |
174 | ||
175 | if (!language || !language[0]) | |
176 | { | |
c5aa993b | 177 | printf_unfiltered ("The currently understood settings are:\n\n"); |
c906108c SS |
178 | printf_unfiltered ("local or auto Automatic setting based on source file\n"); |
179 | ||
180 | for (i = 0; i < languages_size; ++i) | |
181 | { | |
182 | /* Already dealt with these above. */ | |
183 | if (languages[i]->la_language == language_unknown | |
184 | || languages[i]->la_language == language_auto) | |
185 | continue; | |
186 | ||
187 | /* FIXME for now assume that the human-readable name is just | |
188 | a capitalization of the internal name. */ | |
189 | printf_unfiltered ("%-16s Use the %c%s language\n", | |
190 | languages[i]->la_name, | |
c5aa993b JM |
191 | /* Capitalize first letter of language |
192 | name. */ | |
c906108c SS |
193 | toupper (languages[i]->la_name[0]), |
194 | languages[i]->la_name + 1); | |
195 | } | |
196 | /* Restore the silly string. */ | |
c5aa993b | 197 | set_language (current_language->la_language); |
c906108c SS |
198 | return; |
199 | } | |
200 | ||
201 | /* Search the list of languages for a match. */ | |
c5aa993b JM |
202 | for (i = 0; i < languages_size; i++) |
203 | { | |
204 | if (STREQ (languages[i]->la_name, language)) | |
205 | { | |
206 | /* Found it! Go into manual mode, and use this language. */ | |
207 | if (languages[i]->la_language == language_auto) | |
208 | { | |
209 | /* Enter auto mode. Set to the current frame's language, if known. */ | |
210 | language_mode = language_mode_auto; | |
211 | flang = get_frame_language (); | |
212 | if (flang != language_unknown) | |
213 | set_language (flang); | |
214 | expected_language = current_language; | |
215 | return; | |
216 | } | |
217 | else | |
218 | { | |
219 | /* Enter manual mode. Set the specified language. */ | |
220 | language_mode = language_mode_manual; | |
221 | current_language = languages[i]; | |
63872f9d | 222 | set_type_range_case (); |
c5aa993b JM |
223 | set_lang_str (); |
224 | expected_language = current_language; | |
225 | return; | |
226 | } | |
227 | } | |
c906108c | 228 | } |
c906108c SS |
229 | |
230 | /* Reset the language (esp. the global string "language") to the | |
231 | correct values. */ | |
c5aa993b | 232 | err_lang = savestring (language, strlen (language)); |
b8c9b27d | 233 | make_cleanup (xfree, err_lang); /* Free it after error */ |
c5aa993b JM |
234 | set_language (current_language->la_language); |
235 | error ("Unknown language `%s'.", err_lang); | |
c906108c SS |
236 | } |
237 | ||
238 | /* Show command. Display a warning if the type setting does | |
239 | not match the current language. */ | |
240 | static void | |
fba45db2 | 241 | show_type_command (char *ignore, int from_tty) |
c906108c | 242 | { |
c5aa993b JM |
243 | if (type_check != current_language->la_type_check) |
244 | printf_unfiltered ( | |
245 | "Warning: the current type check setting does not match the language.\n"); | |
c906108c SS |
246 | } |
247 | ||
248 | /* Set command. Change the setting for type checking. */ | |
249 | static void | |
fba45db2 | 250 | set_type_command (char *ignore, int from_tty) |
c906108c | 251 | { |
c5aa993b JM |
252 | if (STREQ (type, "on")) |
253 | { | |
c906108c SS |
254 | type_check = type_check_on; |
255 | type_mode = type_mode_manual; | |
c5aa993b JM |
256 | } |
257 | else if (STREQ (type, "warn")) | |
258 | { | |
c906108c SS |
259 | type_check = type_check_warn; |
260 | type_mode = type_mode_manual; | |
c5aa993b JM |
261 | } |
262 | else if (STREQ (type, "off")) | |
263 | { | |
c906108c SS |
264 | type_check = type_check_off; |
265 | type_mode = type_mode_manual; | |
c5aa993b JM |
266 | } |
267 | else if (STREQ (type, "auto")) | |
268 | { | |
c906108c | 269 | type_mode = type_mode_auto; |
63872f9d | 270 | set_type_range_case (); |
c906108c | 271 | /* Avoid hitting the set_type_str call below. We |
63872f9d | 272 | did it in set_type_range_case. */ |
c906108c | 273 | return; |
c5aa993b | 274 | } |
c4093a6a JM |
275 | else |
276 | { | |
277 | warning ("Unrecognized type check setting: \"%s\"", type); | |
278 | } | |
c5aa993b JM |
279 | set_type_str (); |
280 | show_type_command ((char *) NULL, from_tty); | |
c906108c SS |
281 | } |
282 | ||
283 | /* Show command. Display a warning if the range setting does | |
284 | not match the current language. */ | |
285 | static void | |
fba45db2 | 286 | show_range_command (char *ignore, int from_tty) |
c906108c SS |
287 | { |
288 | ||
c5aa993b JM |
289 | if (range_check != current_language->la_range_check) |
290 | printf_unfiltered ( | |
291 | "Warning: the current range check setting does not match the language.\n"); | |
c906108c SS |
292 | } |
293 | ||
294 | /* Set command. Change the setting for range checking. */ | |
295 | static void | |
fba45db2 | 296 | set_range_command (char *ignore, int from_tty) |
c906108c | 297 | { |
c5aa993b JM |
298 | if (STREQ (range, "on")) |
299 | { | |
c906108c SS |
300 | range_check = range_check_on; |
301 | range_mode = range_mode_manual; | |
c5aa993b JM |
302 | } |
303 | else if (STREQ (range, "warn")) | |
304 | { | |
c906108c SS |
305 | range_check = range_check_warn; |
306 | range_mode = range_mode_manual; | |
c5aa993b JM |
307 | } |
308 | else if (STREQ (range, "off")) | |
309 | { | |
c906108c SS |
310 | range_check = range_check_off; |
311 | range_mode = range_mode_manual; | |
c5aa993b JM |
312 | } |
313 | else if (STREQ (range, "auto")) | |
314 | { | |
c906108c | 315 | range_mode = range_mode_auto; |
63872f9d | 316 | set_type_range_case (); |
c906108c | 317 | /* Avoid hitting the set_range_str call below. We |
63872f9d | 318 | did it in set_type_range_case. */ |
c906108c | 319 | return; |
c5aa993b | 320 | } |
c4093a6a JM |
321 | else |
322 | { | |
323 | warning ("Unrecognized range check setting: \"%s\"", range); | |
324 | } | |
c5aa993b JM |
325 | set_range_str (); |
326 | show_range_command ((char *) 0, from_tty); | |
c906108c SS |
327 | } |
328 | ||
63872f9d JG |
329 | /* Show command. Display a warning if the case sensitivity setting does |
330 | not match the current language. */ | |
331 | static void | |
ad525611 | 332 | show_case_command (char *ignore, int from_tty) |
63872f9d JG |
333 | { |
334 | if (case_sensitivity != current_language->la_case_sensitivity) | |
335 | printf_unfiltered( | |
336 | "Warning: the current case sensitivity setting does not match the language.\n"); | |
337 | } | |
338 | ||
339 | /* Set command. Change the setting for case sensitivity. */ | |
340 | static void | |
ad525611 | 341 | set_case_command (char *ignore, int from_tty) |
63872f9d JG |
342 | { |
343 | if (STREQ (case_sensitive, "on")) | |
344 | { | |
345 | case_sensitivity = case_sensitive_on; | |
346 | case_mode = case_mode_manual; | |
347 | } | |
348 | else if (STREQ (case_sensitive, "off")) | |
349 | { | |
350 | case_sensitivity = case_sensitive_off; | |
351 | case_mode = case_mode_manual; | |
352 | } | |
353 | else if (STREQ (case_sensitive, "auto")) | |
354 | { | |
355 | case_mode = case_mode_auto; | |
356 | set_type_range_case (); | |
357 | /* Avoid hitting the set_case_str call below. We | |
358 | did it in set_type_range_case. */ | |
359 | return; | |
360 | } | |
361 | else | |
362 | { | |
363 | warning ("Unrecognized case-sensitive setting: \"%s\"", case_sensitive); | |
364 | } | |
365 | set_case_str(); | |
366 | show_case_command ((char *) NULL, from_tty); | |
367 | } | |
368 | ||
369 | /* Set the status of range and type checking and case sensitivity based on | |
c906108c SS |
370 | the current modes and the current language. |
371 | If SHOW is non-zero, then print out the current language, | |
372 | type and range checking status. */ | |
373 | static void | |
63872f9d | 374 | set_type_range_case (void) |
c906108c SS |
375 | { |
376 | ||
377 | if (range_mode == range_mode_auto) | |
378 | range_check = current_language->la_range_check; | |
379 | ||
380 | if (type_mode == type_mode_auto) | |
381 | type_check = current_language->la_type_check; | |
382 | ||
63872f9d JG |
383 | if (case_mode == case_mode_auto) |
384 | case_sensitivity = current_language->la_case_sensitivity; | |
385 | ||
c5aa993b JM |
386 | set_type_str (); |
387 | set_range_str (); | |
63872f9d | 388 | set_case_str (); |
c906108c SS |
389 | } |
390 | ||
391 | /* Set current language to (enum language) LANG. Returns previous language. */ | |
392 | ||
393 | enum language | |
fba45db2 | 394 | set_language (enum language lang) |
c906108c SS |
395 | { |
396 | int i; | |
397 | enum language prev_language; | |
398 | ||
399 | prev_language = current_language->la_language; | |
400 | ||
c5aa993b JM |
401 | for (i = 0; i < languages_size; i++) |
402 | { | |
403 | if (languages[i]->la_language == lang) | |
404 | { | |
405 | current_language = languages[i]; | |
63872f9d | 406 | set_type_range_case (); |
c5aa993b JM |
407 | set_lang_str (); |
408 | break; | |
409 | } | |
c906108c | 410 | } |
c906108c SS |
411 | |
412 | return prev_language; | |
413 | } | |
414 | \f | |
415 | /* This page contains functions that update the global vars | |
416 | language, type and range. */ | |
417 | static void | |
fba45db2 | 418 | set_lang_str (void) |
c906108c | 419 | { |
c5aa993b | 420 | char *prefix = ""; |
c906108c | 421 | |
ccdaf797 | 422 | if (language) |
b8c9b27d | 423 | xfree (language); |
c5aa993b JM |
424 | if (language_mode == language_mode_auto) |
425 | prefix = "auto; currently "; | |
c906108c | 426 | |
c5aa993b | 427 | language = concat (prefix, current_language->la_name, NULL); |
c906108c SS |
428 | } |
429 | ||
430 | static void | |
fba45db2 | 431 | set_type_str (void) |
c906108c | 432 | { |
c4093a6a | 433 | char *tmp = NULL, *prefix = ""; |
c906108c | 434 | |
ccdaf797 | 435 | if (type) |
b8c9b27d | 436 | xfree (type); |
c5aa993b JM |
437 | if (type_mode == type_mode_auto) |
438 | prefix = "auto; currently "; | |
c906108c | 439 | |
c5aa993b JM |
440 | switch (type_check) |
441 | { | |
442 | case type_check_on: | |
c906108c SS |
443 | tmp = "on"; |
444 | break; | |
c5aa993b | 445 | case type_check_off: |
c906108c SS |
446 | tmp = "off"; |
447 | break; | |
c5aa993b | 448 | case type_check_warn: |
c906108c SS |
449 | tmp = "warn"; |
450 | break; | |
c5aa993b | 451 | default: |
c906108c | 452 | error ("Unrecognized type check setting."); |
c5aa993b | 453 | } |
c906108c | 454 | |
c5aa993b | 455 | type = concat (prefix, tmp, NULL); |
c906108c SS |
456 | } |
457 | ||
458 | static void | |
fba45db2 | 459 | set_range_str (void) |
c906108c | 460 | { |
c5aa993b | 461 | char *tmp, *pref = ""; |
c906108c | 462 | |
c5aa993b JM |
463 | if (range_mode == range_mode_auto) |
464 | pref = "auto; currently "; | |
c906108c | 465 | |
c5aa993b JM |
466 | switch (range_check) |
467 | { | |
468 | case range_check_on: | |
c906108c SS |
469 | tmp = "on"; |
470 | break; | |
c5aa993b | 471 | case range_check_off: |
c906108c SS |
472 | tmp = "off"; |
473 | break; | |
c5aa993b | 474 | case range_check_warn: |
c906108c SS |
475 | tmp = "warn"; |
476 | break; | |
c5aa993b | 477 | default: |
c906108c | 478 | error ("Unrecognized range check setting."); |
c5aa993b | 479 | } |
c906108c | 480 | |
ccdaf797 | 481 | if (range) |
b8c9b27d | 482 | xfree (range); |
c5aa993b | 483 | range = concat (pref, tmp, NULL); |
c906108c SS |
484 | } |
485 | ||
63872f9d JG |
486 | static void |
487 | set_case_str() | |
488 | { | |
489 | char *tmp = NULL, *prefix = ""; | |
490 | ||
491 | if (case_mode==case_mode_auto) | |
492 | prefix = "auto; currently "; | |
493 | ||
494 | switch (case_sensitivity) | |
495 | { | |
496 | case case_sensitive_on: | |
497 | tmp = "on"; | |
498 | break; | |
499 | case case_sensitive_off: | |
500 | tmp = "off"; | |
501 | break; | |
502 | default: | |
503 | error ("Unrecognized case-sensitive setting."); | |
504 | } | |
505 | ||
b8c9b27d | 506 | xfree (case_sensitive); |
63872f9d JG |
507 | case_sensitive = concat (prefix, tmp, NULL); |
508 | } | |
c906108c SS |
509 | |
510 | /* Print out the current language settings: language, range and | |
511 | type checking. If QUIETLY, print only what has changed. */ | |
512 | ||
513 | void | |
fba45db2 | 514 | language_info (int quietly) |
c906108c SS |
515 | { |
516 | if (quietly && expected_language == current_language) | |
517 | return; | |
518 | ||
519 | expected_language = current_language; | |
c5aa993b JM |
520 | printf_unfiltered ("Current language: %s\n", language); |
521 | show_language_command ((char *) 0, 1); | |
c906108c SS |
522 | |
523 | if (!quietly) | |
524 | { | |
c5aa993b JM |
525 | printf_unfiltered ("Type checking: %s\n", type); |
526 | show_type_command ((char *) 0, 1); | |
527 | printf_unfiltered ("Range checking: %s\n", range); | |
528 | show_range_command ((char *) 0, 1); | |
63872f9d JG |
529 | printf_unfiltered ("Case sensitivity: %s\n", case_sensitive); |
530 | show_case_command ((char *) 0, 1); | |
c906108c SS |
531 | } |
532 | } | |
533 | \f | |
534 | /* Return the result of a binary operation. */ | |
535 | ||
c5aa993b | 536 | #if 0 /* Currently unused */ |
c906108c SS |
537 | |
538 | struct type * | |
3d6d86c6 | 539 | binop_result_type (struct value *v1, struct value *v2) |
c906108c | 540 | { |
c5aa993b JM |
541 | int size, uns; |
542 | struct type *t1 = check_typedef (VALUE_TYPE (v1)); | |
543 | struct type *t2 = check_typedef (VALUE_TYPE (v2)); | |
544 | ||
545 | int l1 = TYPE_LENGTH (t1); | |
546 | int l2 = TYPE_LENGTH (t2); | |
547 | ||
548 | switch (current_language->la_language) | |
549 | { | |
550 | case language_c: | |
551 | case language_cplus: | |
552 | if (TYPE_CODE (t1) == TYPE_CODE_FLT) | |
553 | return TYPE_CODE (t2) == TYPE_CODE_FLT && l2 > l1 ? | |
554 | VALUE_TYPE (v2) : VALUE_TYPE (v1); | |
555 | else if (TYPE_CODE (t2) == TYPE_CODE_FLT) | |
556 | return TYPE_CODE (t1) == TYPE_CODE_FLT && l1 > l2 ? | |
557 | VALUE_TYPE (v1) : VALUE_TYPE (v2); | |
558 | else if (TYPE_UNSIGNED (t1) && l1 > l2) | |
559 | return VALUE_TYPE (v1); | |
560 | else if (TYPE_UNSIGNED (t2) && l2 > l1) | |
561 | return VALUE_TYPE (v2); | |
562 | else /* Both are signed. Result is the longer type */ | |
563 | return l1 > l2 ? VALUE_TYPE (v1) : VALUE_TYPE (v2); | |
c906108c | 564 | break; |
c5aa993b | 565 | case language_m2: |
c906108c | 566 | /* If we are doing type-checking, l1 should equal l2, so this is |
c5aa993b JM |
567 | not needed. */ |
568 | return l1 > l2 ? VALUE_TYPE (v1) : VALUE_TYPE (v2); | |
c906108c | 569 | break; |
c5aa993b JM |
570 | case language_chill: |
571 | error ("Missing Chill support in function binop_result_check."); /*FIXME */ | |
572 | } | |
e1e9e218 | 573 | internal_error (__FILE__, __LINE__, "failed internal consistency check"); |
c5aa993b | 574 | return (struct type *) 0; /* For lint */ |
c906108c SS |
575 | } |
576 | ||
c5aa993b | 577 | #endif /* 0 */ |
c906108c | 578 | \f |
c5aa993b | 579 | |
c906108c SS |
580 | /* This page contains functions that return format strings for |
581 | printf for printing out numbers in different formats */ | |
582 | ||
583 | /* Returns the appropriate printf format for hexadecimal | |
584 | numbers. */ | |
585 | char * | |
fba45db2 | 586 | local_hex_format_custom (char *pre) |
c906108c | 587 | { |
c5aa993b JM |
588 | static char form[50]; |
589 | ||
590 | strcpy (form, local_hex_format_prefix ()); | |
591 | strcat (form, "%"); | |
592 | strcat (form, pre); | |
593 | strcat (form, local_hex_format_specifier ()); | |
594 | strcat (form, local_hex_format_suffix ()); | |
595 | return form; | |
c906108c SS |
596 | } |
597 | ||
14a5e767 | 598 | /* Converts a LONGEST to custom hexadecimal and stores it in a static |
c906108c SS |
599 | string. Returns a pointer to this string. */ |
600 | char * | |
14a5e767 | 601 | local_hex_string (LONGEST num) |
c906108c | 602 | { |
14a5e767 | 603 | return local_hex_string_custom (num, "l"); |
c906108c SS |
604 | } |
605 | ||
c4093a6a JM |
606 | /* Converts a LONGEST number to custom hexadecimal and stores it in a static |
607 | string. Returns a pointer to this string. Note that the width parameter | |
608 | should end with "l", e.g. "08l" as with calls to local_hex_string_custom */ | |
609 | ||
610 | char * | |
14a5e767 | 611 | local_hex_string_custom (LONGEST num, char *width) |
c4093a6a JM |
612 | { |
613 | #define RESULT_BUF_LEN 50 | |
614 | static char res2[RESULT_BUF_LEN]; | |
615 | char format[RESULT_BUF_LEN]; | |
c4093a6a JM |
616 | int field_width; |
617 | int num_len; | |
618 | int num_pad_chars; | |
619 | char *pad_char; /* string with one character */ | |
620 | int pad_on_left; | |
621 | char *parse_ptr; | |
622 | char temp_nbr_buf[RESULT_BUF_LEN]; | |
14a5e767 | 623 | |
17df2af6 | 624 | /* Use phex_nz to print the number into a string, then |
c4093a6a JM |
625 | build the result string from local_hex_format_prefix, padding and |
626 | the hex representation as indicated by "width". */ | |
17df2af6 | 627 | strcpy (temp_nbr_buf, phex_nz (num, sizeof (num))); |
c4093a6a JM |
628 | /* parse width */ |
629 | parse_ptr = width; | |
630 | pad_on_left = 1; | |
631 | pad_char = " "; | |
632 | if (*parse_ptr == '-') | |
633 | { | |
634 | parse_ptr++; | |
635 | pad_on_left = 0; | |
636 | } | |
637 | if (*parse_ptr == '0') | |
638 | { | |
639 | parse_ptr++; | |
640 | if (pad_on_left) | |
641 | pad_char = "0"; /* If padding is on the right, it is blank */ | |
642 | } | |
643 | field_width = atoi (parse_ptr); | |
644 | num_len = strlen (temp_nbr_buf); | |
645 | num_pad_chars = field_width - strlen (temp_nbr_buf); /* possibly negative */ | |
646 | ||
647 | if (strlen (local_hex_format_prefix ()) + num_len + num_pad_chars | |
7aedc9f8 | 648 | >= RESULT_BUF_LEN) /* paranoia */ |
8e65ff28 | 649 | internal_error (__FILE__, __LINE__, |
14a5e767 | 650 | "local_hex_string_custom: insufficient space to store result"); |
c4093a6a JM |
651 | |
652 | strcpy (res2, local_hex_format_prefix ()); | |
653 | if (pad_on_left) | |
654 | { | |
655 | while (num_pad_chars > 0) | |
656 | { | |
657 | strcat (res2, pad_char); | |
658 | num_pad_chars--; | |
659 | } | |
660 | } | |
661 | strcat (res2, temp_nbr_buf); | |
662 | if (!pad_on_left) | |
663 | { | |
664 | while (num_pad_chars > 0) | |
665 | { | |
666 | strcat (res2, pad_char); | |
667 | num_pad_chars--; | |
668 | } | |
669 | } | |
670 | return res2; | |
c4093a6a | 671 | |
14a5e767 | 672 | } /* local_hex_string_custom */ |
c4093a6a | 673 | |
c906108c SS |
674 | /* Returns the appropriate printf format for octal |
675 | numbers. */ | |
676 | char * | |
fba45db2 | 677 | local_octal_format_custom (char *pre) |
c906108c | 678 | { |
c5aa993b JM |
679 | static char form[50]; |
680 | ||
681 | strcpy (form, local_octal_format_prefix ()); | |
682 | strcat (form, "%"); | |
683 | strcat (form, pre); | |
684 | strcat (form, local_octal_format_specifier ()); | |
685 | strcat (form, local_octal_format_suffix ()); | |
686 | return form; | |
c906108c SS |
687 | } |
688 | ||
689 | /* Returns the appropriate printf format for decimal numbers. */ | |
690 | char * | |
fba45db2 | 691 | local_decimal_format_custom (char *pre) |
c906108c | 692 | { |
c5aa993b JM |
693 | static char form[50]; |
694 | ||
695 | strcpy (form, local_decimal_format_prefix ()); | |
696 | strcat (form, "%"); | |
697 | strcat (form, pre); | |
698 | strcat (form, local_decimal_format_specifier ()); | |
699 | strcat (form, local_decimal_format_suffix ()); | |
700 | return form; | |
c906108c SS |
701 | } |
702 | \f | |
703 | #if 0 | |
704 | /* This page contains functions that are used in type/range checking. | |
705 | They all return zero if the type/range check fails. | |
706 | ||
707 | It is hoped that these will make extending GDB to parse different | |
708 | languages a little easier. These are primarily used in eval.c when | |
709 | evaluating expressions and making sure that their types are correct. | |
710 | Instead of having a mess of conjucted/disjuncted expressions in an "if", | |
711 | the ideas of type can be wrapped up in the following functions. | |
712 | ||
713 | Note that some of them are not currently dependent upon which language | |
714 | is currently being parsed. For example, floats are the same in | |
715 | C and Modula-2 (ie. the only floating point type has TYPE_CODE of | |
716 | TYPE_CODE_FLT), while booleans are different. */ | |
717 | ||
718 | /* Returns non-zero if its argument is a simple type. This is the same for | |
719 | both Modula-2 and for C. In the C case, TYPE_CODE_CHAR will never occur, | |
720 | and thus will never cause the failure of the test. */ | |
721 | int | |
fba45db2 | 722 | simple_type (struct type *type) |
c906108c SS |
723 | { |
724 | CHECK_TYPEDEF (type); | |
c5aa993b JM |
725 | switch (TYPE_CODE (type)) |
726 | { | |
727 | case TYPE_CODE_INT: | |
728 | case TYPE_CODE_CHAR: | |
729 | case TYPE_CODE_ENUM: | |
730 | case TYPE_CODE_FLT: | |
731 | case TYPE_CODE_RANGE: | |
732 | case TYPE_CODE_BOOL: | |
733 | return 1; | |
c906108c | 734 | |
c5aa993b JM |
735 | default: |
736 | return 0; | |
737 | } | |
c906108c SS |
738 | } |
739 | ||
740 | /* Returns non-zero if its argument is of an ordered type. | |
741 | An ordered type is one in which the elements can be tested for the | |
742 | properties of "greater than", "less than", etc, or for which the | |
743 | operations "increment" or "decrement" make sense. */ | |
744 | int | |
fba45db2 | 745 | ordered_type (struct type *type) |
c906108c SS |
746 | { |
747 | CHECK_TYPEDEF (type); | |
c5aa993b JM |
748 | switch (TYPE_CODE (type)) |
749 | { | |
750 | case TYPE_CODE_INT: | |
751 | case TYPE_CODE_CHAR: | |
752 | case TYPE_CODE_ENUM: | |
753 | case TYPE_CODE_FLT: | |
754 | case TYPE_CODE_RANGE: | |
755 | return 1; | |
c906108c | 756 | |
c5aa993b JM |
757 | default: |
758 | return 0; | |
759 | } | |
c906108c SS |
760 | } |
761 | ||
762 | /* Returns non-zero if the two types are the same */ | |
763 | int | |
fba45db2 | 764 | same_type (struct type *arg1, struct type *arg2) |
c906108c SS |
765 | { |
766 | CHECK_TYPEDEF (type); | |
c5aa993b JM |
767 | if (structured_type (arg1) ? !structured_type (arg2) : structured_type (arg2)) |
768 | /* One is structured and one isn't */ | |
769 | return 0; | |
770 | else if (structured_type (arg1) && structured_type (arg2)) | |
771 | return arg1 == arg2; | |
772 | else if (numeric_type (arg1) && numeric_type (arg2)) | |
773 | return (TYPE_CODE (arg2) == TYPE_CODE (arg1)) && | |
774 | (TYPE_UNSIGNED (arg1) == TYPE_UNSIGNED (arg2)) | |
775 | ? 1 : 0; | |
776 | else | |
777 | return arg1 == arg2; | |
c906108c SS |
778 | } |
779 | ||
780 | /* Returns non-zero if the type is integral */ | |
781 | int | |
fba45db2 | 782 | integral_type (struct type *type) |
c906108c SS |
783 | { |
784 | CHECK_TYPEDEF (type); | |
c5aa993b JM |
785 | switch (current_language->la_language) |
786 | { | |
787 | case language_c: | |
788 | case language_cplus: | |
789 | return (TYPE_CODE (type) != TYPE_CODE_INT) && | |
790 | (TYPE_CODE (type) != TYPE_CODE_ENUM) ? 0 : 1; | |
791 | case language_m2: | |
750ba382 | 792 | case language_pascal: |
c5aa993b JM |
793 | return TYPE_CODE (type) != TYPE_CODE_INT ? 0 : 1; |
794 | case language_chill: | |
795 | error ("Missing Chill support in function integral_type."); /*FIXME */ | |
796 | default: | |
c906108c | 797 | error ("Language not supported."); |
c5aa993b | 798 | } |
c906108c SS |
799 | } |
800 | ||
801 | /* Returns non-zero if the value is numeric */ | |
802 | int | |
fba45db2 | 803 | numeric_type (struct type *type) |
c906108c SS |
804 | { |
805 | CHECK_TYPEDEF (type); | |
c5aa993b JM |
806 | switch (TYPE_CODE (type)) |
807 | { | |
808 | case TYPE_CODE_INT: | |
809 | case TYPE_CODE_FLT: | |
810 | return 1; | |
c906108c | 811 | |
c5aa993b JM |
812 | default: |
813 | return 0; | |
814 | } | |
c906108c SS |
815 | } |
816 | ||
817 | /* Returns non-zero if the value is a character type */ | |
818 | int | |
fba45db2 | 819 | character_type (struct type *type) |
c906108c SS |
820 | { |
821 | CHECK_TYPEDEF (type); | |
c5aa993b JM |
822 | switch (current_language->la_language) |
823 | { | |
824 | case language_chill: | |
825 | case language_m2: | |
750ba382 | 826 | case language_pascal: |
c5aa993b JM |
827 | return TYPE_CODE (type) != TYPE_CODE_CHAR ? 0 : 1; |
828 | ||
829 | case language_c: | |
830 | case language_cplus: | |
831 | return (TYPE_CODE (type) == TYPE_CODE_INT) && | |
832 | TYPE_LENGTH (type) == sizeof (char) | |
833 | ? 1 : 0; | |
834 | default: | |
c906108c | 835 | return (0); |
c5aa993b | 836 | } |
c906108c SS |
837 | } |
838 | ||
839 | /* Returns non-zero if the value is a string type */ | |
840 | int | |
fba45db2 | 841 | string_type (struct type *type) |
c906108c SS |
842 | { |
843 | CHECK_TYPEDEF (type); | |
c5aa993b JM |
844 | switch (current_language->la_language) |
845 | { | |
846 | case language_chill: | |
847 | case language_m2: | |
750ba382 | 848 | case language_pascal: |
c5aa993b JM |
849 | return TYPE_CODE (type) != TYPE_CODE_STRING ? 0 : 1; |
850 | ||
851 | case language_c: | |
852 | case language_cplus: | |
c906108c SS |
853 | /* C does not have distinct string type. */ |
854 | return (0); | |
c5aa993b | 855 | default: |
c906108c | 856 | return (0); |
c5aa993b | 857 | } |
c906108c SS |
858 | } |
859 | ||
860 | /* Returns non-zero if the value is a boolean type */ | |
861 | int | |
fba45db2 | 862 | boolean_type (struct type *type) |
c906108c SS |
863 | { |
864 | CHECK_TYPEDEF (type); | |
865 | if (TYPE_CODE (type) == TYPE_CODE_BOOL) | |
866 | return 1; | |
c5aa993b | 867 | switch (current_language->la_language) |
c906108c SS |
868 | { |
869 | case language_c: | |
870 | case language_cplus: | |
871 | /* Might be more cleanly handled by having a TYPE_CODE_INT_NOT_BOOL | |
c5aa993b | 872 | for CHILL and such languages, or a TYPE_CODE_INT_OR_BOOL for C. */ |
c906108c SS |
873 | if (TYPE_CODE (type) == TYPE_CODE_INT) |
874 | return 1; | |
c5aa993b | 875 | default: |
c906108c | 876 | break; |
c5aa993b | 877 | } |
c906108c SS |
878 | return 0; |
879 | } | |
880 | ||
881 | /* Returns non-zero if the value is a floating-point type */ | |
882 | int | |
fba45db2 | 883 | float_type (struct type *type) |
c906108c SS |
884 | { |
885 | CHECK_TYPEDEF (type); | |
c5aa993b | 886 | return TYPE_CODE (type) == TYPE_CODE_FLT; |
c906108c SS |
887 | } |
888 | ||
889 | /* Returns non-zero if the value is a pointer type */ | |
890 | int | |
fba45db2 | 891 | pointer_type (struct type *type) |
c906108c | 892 | { |
c5aa993b JM |
893 | return TYPE_CODE (type) == TYPE_CODE_PTR || |
894 | TYPE_CODE (type) == TYPE_CODE_REF; | |
c906108c SS |
895 | } |
896 | ||
897 | /* Returns non-zero if the value is a structured type */ | |
898 | int | |
fba45db2 | 899 | structured_type (struct type *type) |
c906108c SS |
900 | { |
901 | CHECK_TYPEDEF (type); | |
c5aa993b JM |
902 | switch (current_language->la_language) |
903 | { | |
904 | case language_c: | |
905 | case language_cplus: | |
906 | return (TYPE_CODE (type) == TYPE_CODE_STRUCT) || | |
907 | (TYPE_CODE (type) == TYPE_CODE_UNION) || | |
908 | (TYPE_CODE (type) == TYPE_CODE_ARRAY); | |
750ba382 PM |
909 | case language_pascal: |
910 | return (TYPE_CODE(type) == TYPE_CODE_STRUCT) || | |
911 | (TYPE_CODE(type) == TYPE_CODE_UNION) || | |
912 | (TYPE_CODE(type) == TYPE_CODE_SET) || | |
913 | (TYPE_CODE(type) == TYPE_CODE_ARRAY); | |
c5aa993b JM |
914 | case language_m2: |
915 | return (TYPE_CODE (type) == TYPE_CODE_STRUCT) || | |
916 | (TYPE_CODE (type) == TYPE_CODE_SET) || | |
917 | (TYPE_CODE (type) == TYPE_CODE_ARRAY); | |
918 | case language_chill: | |
919 | error ("Missing Chill support in function structured_type."); /*FIXME */ | |
920 | default: | |
c906108c | 921 | return (0); |
c5aa993b | 922 | } |
c906108c SS |
923 | } |
924 | #endif | |
925 | \f | |
926 | struct type * | |
fba45db2 | 927 | lang_bool_type (void) |
c906108c SS |
928 | { |
929 | struct symbol *sym; | |
930 | struct type *type; | |
c5aa993b | 931 | switch (current_language->la_language) |
c906108c SS |
932 | { |
933 | case language_chill: | |
934 | return builtin_type_chill_bool; | |
935 | case language_fortran: | |
936 | sym = lookup_symbol ("logical", NULL, VAR_NAMESPACE, NULL, NULL); | |
937 | if (sym) | |
938 | { | |
939 | type = SYMBOL_TYPE (sym); | |
940 | if (type && TYPE_CODE (type) == TYPE_CODE_BOOL) | |
941 | return type; | |
942 | } | |
943 | return builtin_type_f_logical_s2; | |
944 | case language_cplus: | |
750ba382 PM |
945 | case language_pascal: |
946 | if (current_language->la_language==language_cplus) | |
947 | {sym = lookup_symbol ("bool", NULL, VAR_NAMESPACE, NULL, NULL);} | |
948 | else | |
949 | {sym = lookup_symbol ("boolean", NULL, VAR_NAMESPACE, NULL, NULL);} | |
c906108c SS |
950 | if (sym) |
951 | { | |
952 | type = SYMBOL_TYPE (sym); | |
953 | if (type && TYPE_CODE (type) == TYPE_CODE_BOOL) | |
954 | return type; | |
955 | } | |
956 | return builtin_type_bool; | |
8caabe69 AG |
957 | case language_java: |
958 | sym = lookup_symbol ("boolean", NULL, VAR_NAMESPACE, NULL, NULL); | |
959 | if (sym) | |
960 | { | |
961 | type = SYMBOL_TYPE (sym); | |
962 | if (type && TYPE_CODE (type) == TYPE_CODE_BOOL) | |
963 | return type; | |
964 | } | |
965 | return java_boolean_type; | |
c906108c SS |
966 | default: |
967 | return builtin_type_int; | |
968 | } | |
969 | } | |
970 | \f | |
971 | /* This page contains functions that return info about | |
972 | (struct value) values used in GDB. */ | |
973 | ||
974 | /* Returns non-zero if the value VAL represents a true value. */ | |
975 | int | |
3d6d86c6 | 976 | value_true (struct value *val) |
c906108c SS |
977 | { |
978 | /* It is possible that we should have some sort of error if a non-boolean | |
979 | value is used in this context. Possibly dependent on some kind of | |
980 | "boolean-checking" option like range checking. But it should probably | |
981 | not depend on the language except insofar as is necessary to identify | |
982 | a "boolean" value (i.e. in C using a float, pointer, etc., as a boolean | |
983 | should be an error, probably). */ | |
984 | return !value_logical_not (val); | |
985 | } | |
986 | \f | |
987 | /* Returns non-zero if the operator OP is defined on | |
988 | the values ARG1 and ARG2. */ | |
989 | ||
c5aa993b | 990 | #if 0 /* Currently unused */ |
c906108c SS |
991 | |
992 | void | |
3d6d86c6 | 993 | binop_type_check (struct value *arg1, struct value *arg2, int op) |
c906108c | 994 | { |
c5aa993b | 995 | struct type *t1, *t2; |
c906108c | 996 | |
c5aa993b JM |
997 | /* If we're not checking types, always return success. */ |
998 | if (!STRICT_TYPE) | |
999 | return; | |
1000 | ||
1001 | t1 = VALUE_TYPE (arg1); | |
1002 | if (arg2 != NULL) | |
1003 | t2 = VALUE_TYPE (arg2); | |
1004 | else | |
1005 | t2 = NULL; | |
c906108c | 1006 | |
c5aa993b JM |
1007 | switch (op) |
1008 | { | |
1009 | case BINOP_ADD: | |
1010 | case BINOP_SUB: | |
1011 | if ((numeric_type (t1) && pointer_type (t2)) || | |
1012 | (pointer_type (t1) && numeric_type (t2))) | |
1013 | { | |
1014 | warning ("combining pointer and integer.\n"); | |
1015 | break; | |
1016 | } | |
1017 | case BINOP_MUL: | |
1018 | case BINOP_LSH: | |
1019 | case BINOP_RSH: | |
1020 | if (!numeric_type (t1) || !numeric_type (t2)) | |
1021 | type_op_error ("Arguments to %s must be numbers.", op); | |
1022 | else if (!same_type (t1, t2)) | |
1023 | type_op_error ("Arguments to %s must be of the same type.", op); | |
c906108c SS |
1024 | break; |
1025 | ||
c5aa993b JM |
1026 | case BINOP_LOGICAL_AND: |
1027 | case BINOP_LOGICAL_OR: | |
1028 | if (!boolean_type (t1) || !boolean_type (t2)) | |
1029 | type_op_error ("Arguments to %s must be of boolean type.", op); | |
c906108c SS |
1030 | break; |
1031 | ||
c5aa993b JM |
1032 | case BINOP_EQUAL: |
1033 | if ((pointer_type (t1) && !(pointer_type (t2) || integral_type (t2))) || | |
1034 | (pointer_type (t2) && !(pointer_type (t1) || integral_type (t1)))) | |
1035 | type_op_error ("A pointer can only be compared to an integer or pointer.", op); | |
1036 | else if ((pointer_type (t1) && integral_type (t2)) || | |
1037 | (integral_type (t1) && pointer_type (t2))) | |
1038 | { | |
1039 | warning ("combining integer and pointer.\n"); | |
1040 | break; | |
1041 | } | |
1042 | else if (!simple_type (t1) || !simple_type (t2)) | |
1043 | type_op_error ("Arguments to %s must be of simple type.", op); | |
1044 | else if (!same_type (t1, t2)) | |
1045 | type_op_error ("Arguments to %s must be of the same type.", op); | |
c906108c SS |
1046 | break; |
1047 | ||
c5aa993b JM |
1048 | case BINOP_REM: |
1049 | case BINOP_MOD: | |
1050 | if (!integral_type (t1) || !integral_type (t2)) | |
1051 | type_op_error ("Arguments to %s must be of integral type.", op); | |
c906108c SS |
1052 | break; |
1053 | ||
c5aa993b JM |
1054 | case BINOP_LESS: |
1055 | case BINOP_GTR: | |
1056 | case BINOP_LEQ: | |
1057 | case BINOP_GEQ: | |
1058 | if (!ordered_type (t1) || !ordered_type (t2)) | |
1059 | type_op_error ("Arguments to %s must be of ordered type.", op); | |
1060 | else if (!same_type (t1, t2)) | |
1061 | type_op_error ("Arguments to %s must be of the same type.", op); | |
c906108c SS |
1062 | break; |
1063 | ||
c5aa993b JM |
1064 | case BINOP_ASSIGN: |
1065 | if (pointer_type (t1) && !integral_type (t2)) | |
1066 | type_op_error ("A pointer can only be assigned an integer.", op); | |
1067 | else if (pointer_type (t1) && integral_type (t2)) | |
1068 | { | |
1069 | warning ("combining integer and pointer."); | |
1070 | break; | |
1071 | } | |
1072 | else if (!simple_type (t1) || !simple_type (t2)) | |
1073 | type_op_error ("Arguments to %s must be of simple type.", op); | |
1074 | else if (!same_type (t1, t2)) | |
1075 | type_op_error ("Arguments to %s must be of the same type.", op); | |
c906108c SS |
1076 | break; |
1077 | ||
1078 | case BINOP_CONCAT: | |
1079 | /* FIXME: Needs to handle bitstrings as well. */ | |
c5aa993b JM |
1080 | if (!(string_type (t1) || character_type (t1) || integral_type (t1)) |
1081 | || !(string_type (t2) || character_type (t2) || integral_type (t2))) | |
1082 | type_op_error ("Arguments to %s must be strings or characters.", op); | |
c906108c SS |
1083 | break; |
1084 | ||
c5aa993b | 1085 | /* Unary checks -- arg2 is null */ |
c906108c | 1086 | |
c5aa993b JM |
1087 | case UNOP_LOGICAL_NOT: |
1088 | if (!boolean_type (t1)) | |
1089 | type_op_error ("Argument to %s must be of boolean type.", op); | |
c906108c SS |
1090 | break; |
1091 | ||
c5aa993b JM |
1092 | case UNOP_PLUS: |
1093 | case UNOP_NEG: | |
1094 | if (!numeric_type (t1)) | |
1095 | type_op_error ("Argument to %s must be of numeric type.", op); | |
c906108c SS |
1096 | break; |
1097 | ||
c5aa993b JM |
1098 | case UNOP_IND: |
1099 | if (integral_type (t1)) | |
1100 | { | |
1101 | warning ("combining pointer and integer.\n"); | |
1102 | break; | |
1103 | } | |
1104 | else if (!pointer_type (t1)) | |
1105 | type_op_error ("Argument to %s must be a pointer.", op); | |
c906108c SS |
1106 | break; |
1107 | ||
c5aa993b JM |
1108 | case UNOP_PREINCREMENT: |
1109 | case UNOP_POSTINCREMENT: | |
1110 | case UNOP_PREDECREMENT: | |
1111 | case UNOP_POSTDECREMENT: | |
1112 | if (!ordered_type (t1)) | |
1113 | type_op_error ("Argument to %s must be of an ordered type.", op); | |
c906108c SS |
1114 | break; |
1115 | ||
c5aa993b | 1116 | default: |
c906108c | 1117 | /* Ok. The following operators have different meanings in |
c5aa993b JM |
1118 | different languages. */ |
1119 | switch (current_language->la_language) | |
1120 | { | |
c906108c | 1121 | #ifdef _LANG_c |
c5aa993b JM |
1122 | case language_c: |
1123 | case language_cplus: | |
1124 | switch (op) | |
1125 | { | |
1126 | case BINOP_DIV: | |
1127 | if (!numeric_type (t1) || !numeric_type (t2)) | |
1128 | type_op_error ("Arguments to %s must be numbers.", op); | |
1129 | break; | |
1130 | } | |
1131 | break; | |
c906108c SS |
1132 | #endif |
1133 | ||
1134 | #ifdef _LANG_m2 | |
c5aa993b JM |
1135 | case language_m2: |
1136 | switch (op) | |
1137 | { | |
1138 | case BINOP_DIV: | |
1139 | if (!float_type (t1) || !float_type (t2)) | |
1140 | type_op_error ("Arguments to %s must be floating point numbers.", op); | |
1141 | break; | |
1142 | case BINOP_INTDIV: | |
1143 | if (!integral_type (t1) || !integral_type (t2)) | |
1144 | type_op_error ("Arguments to %s must be of integral type.", op); | |
1145 | break; | |
1146 | } | |
c906108c SS |
1147 | #endif |
1148 | ||
750ba382 PM |
1149 | #ifdef _LANG_pascal |
1150 | case language_pascal: | |
1151 | switch(op) | |
1152 | { | |
1153 | case BINOP_DIV: | |
1154 | if (!float_type(t1) && !float_type(t2)) | |
1155 | type_op_error ("Arguments to %s must be floating point numbers.",op); | |
1156 | break; | |
1157 | case BINOP_INTDIV: | |
1158 | if (!integral_type(t1) || !integral_type(t2)) | |
1159 | type_op_error ("Arguments to %s must be of integral type.",op); | |
1160 | break; | |
1161 | } | |
1162 | #endif | |
1163 | ||
c906108c | 1164 | #ifdef _LANG_chill |
c5aa993b JM |
1165 | case language_chill: |
1166 | error ("Missing Chill support in function binop_type_check."); /*FIXME */ | |
c906108c SS |
1167 | #endif |
1168 | ||
c5aa993b JM |
1169 | } |
1170 | } | |
c906108c SS |
1171 | } |
1172 | ||
c5aa993b | 1173 | #endif /* 0 */ |
c906108c | 1174 | \f |
c5aa993b | 1175 | |
c906108c SS |
1176 | /* This page contains functions for the printing out of |
1177 | error messages that occur during type- and range- | |
1178 | checking. */ | |
1179 | ||
1180 | /* Prints the format string FMT with the operator as a string | |
1181 | corresponding to the opcode OP. If FATAL is non-zero, then | |
1182 | this is an error and error () is called. Otherwise, it is | |
1183 | a warning and printf() is called. */ | |
1184 | void | |
fba45db2 | 1185 | op_error (char *fmt, enum exp_opcode op, int fatal) |
c906108c | 1186 | { |
c5aa993b JM |
1187 | if (fatal) |
1188 | error (fmt, op_string (op)); | |
1189 | else | |
1190 | { | |
1191 | warning (fmt, op_string (op)); | |
1192 | } | |
c906108c SS |
1193 | } |
1194 | ||
ddfe3c15 AC |
1195 | /* These are called when a language fails a type- or range-check. The |
1196 | first argument should be a printf()-style format string, and the | |
1197 | rest of the arguments should be its arguments. If | |
1198 | [type|range]_check is [type|range]_check_on, an error is printed; | |
1199 | if [type|range]_check_warn, a warning; otherwise just the | |
1200 | message. */ | |
c906108c SS |
1201 | |
1202 | void | |
ddfe3c15 | 1203 | type_error (const char *string,...) |
c906108c | 1204 | { |
c5aa993b | 1205 | va_list args; |
c5aa993b | 1206 | va_start (args, string); |
c906108c | 1207 | |
ddfe3c15 AC |
1208 | switch (type_check) |
1209 | { | |
1210 | case type_check_warn: | |
1211 | vwarning (string, args); | |
1212 | break; | |
1213 | case type_check_on: | |
1214 | verror (string, args); | |
1215 | break; | |
1216 | case type_check_off: | |
1217 | /* FIXME: cagney/2002-01-30: Should this function print anything | |
1218 | when type error is off? */ | |
1219 | vfprintf_filtered (gdb_stderr, string, args); | |
1220 | fprintf_filtered (gdb_stderr, "\n"); | |
1221 | break; | |
1222 | default: | |
1223 | internal_error (__FILE__, __LINE__, "bad switch"); | |
1224 | } | |
c5aa993b | 1225 | va_end (args); |
c906108c SS |
1226 | } |
1227 | ||
1228 | void | |
ddfe3c15 | 1229 | range_error (const char *string,...) |
c906108c | 1230 | { |
c5aa993b | 1231 | va_list args; |
c5aa993b | 1232 | va_start (args, string); |
c906108c | 1233 | |
ddfe3c15 AC |
1234 | switch (range_check) |
1235 | { | |
1236 | case range_check_warn: | |
1237 | vwarning (string, args); | |
1238 | break; | |
1239 | case range_check_on: | |
1240 | verror (string, args); | |
1241 | break; | |
1242 | case range_check_off: | |
1243 | /* FIXME: cagney/2002-01-30: Should this function print anything | |
1244 | when range error is off? */ | |
1245 | vfprintf_filtered (gdb_stderr, string, args); | |
1246 | fprintf_filtered (gdb_stderr, "\n"); | |
1247 | break; | |
1248 | default: | |
1249 | internal_error (__FILE__, __LINE__, "bad switch"); | |
1250 | } | |
c5aa993b | 1251 | va_end (args); |
c906108c | 1252 | } |
c906108c | 1253 | \f |
c5aa993b | 1254 | |
c906108c SS |
1255 | /* This page contains miscellaneous functions */ |
1256 | ||
1257 | /* Return the language enum for a given language string. */ | |
1258 | ||
1259 | enum language | |
fba45db2 | 1260 | language_enum (char *str) |
c906108c SS |
1261 | { |
1262 | int i; | |
1263 | ||
c5aa993b | 1264 | for (i = 0; i < languages_size; i++) |
c906108c SS |
1265 | if (STREQ (languages[i]->la_name, str)) |
1266 | return languages[i]->la_language; | |
1267 | ||
1268 | return language_unknown; | |
1269 | } | |
1270 | ||
1271 | /* Return the language struct for a given language enum. */ | |
1272 | ||
1273 | const struct language_defn * | |
fba45db2 | 1274 | language_def (enum language lang) |
c906108c SS |
1275 | { |
1276 | int i; | |
1277 | ||
c5aa993b JM |
1278 | for (i = 0; i < languages_size; i++) |
1279 | { | |
1280 | if (languages[i]->la_language == lang) | |
1281 | { | |
1282 | return languages[i]; | |
1283 | } | |
c906108c | 1284 | } |
c906108c SS |
1285 | return NULL; |
1286 | } | |
1287 | ||
1288 | /* Return the language as a string */ | |
1289 | char * | |
fba45db2 | 1290 | language_str (enum language lang) |
c906108c SS |
1291 | { |
1292 | int i; | |
1293 | ||
c5aa993b JM |
1294 | for (i = 0; i < languages_size; i++) |
1295 | { | |
1296 | if (languages[i]->la_language == lang) | |
1297 | { | |
1298 | return languages[i]->la_name; | |
1299 | } | |
c906108c | 1300 | } |
c906108c SS |
1301 | return "Unknown"; |
1302 | } | |
1303 | ||
1304 | static void | |
fba45db2 | 1305 | set_check (char *ignore, int from_tty) |
c906108c | 1306 | { |
c5aa993b JM |
1307 | printf_unfiltered ( |
1308 | "\"set check\" must be followed by the name of a check subcommand.\n"); | |
1309 | help_list (setchecklist, "set check ", -1, gdb_stdout); | |
c906108c SS |
1310 | } |
1311 | ||
1312 | static void | |
fba45db2 | 1313 | show_check (char *ignore, int from_tty) |
c906108c | 1314 | { |
c5aa993b | 1315 | cmd_show_list (showchecklist, from_tty, ""); |
c906108c SS |
1316 | } |
1317 | \f | |
1318 | /* Add a language to the set of known languages. */ | |
1319 | ||
1320 | void | |
fba45db2 | 1321 | add_language (const struct language_defn *lang) |
c906108c SS |
1322 | { |
1323 | if (lang->la_magic != LANG_MAGIC) | |
1324 | { | |
c5aa993b JM |
1325 | fprintf_unfiltered (gdb_stderr, "Magic number of %s language struct wrong\n", |
1326 | lang->la_name); | |
e1e9e218 | 1327 | internal_error (__FILE__, __LINE__, "failed internal consistency check"); |
c906108c SS |
1328 | } |
1329 | ||
1330 | if (!languages) | |
1331 | { | |
1332 | languages_allocsize = DEFAULT_ALLOCSIZE; | |
1333 | languages = (const struct language_defn **) xmalloc | |
1334 | (languages_allocsize * sizeof (*languages)); | |
1335 | } | |
1336 | if (languages_size >= languages_allocsize) | |
1337 | { | |
1338 | languages_allocsize *= 2; | |
1339 | languages = (const struct language_defn **) xrealloc ((char *) languages, | |
c5aa993b | 1340 | languages_allocsize * sizeof (*languages)); |
c906108c SS |
1341 | } |
1342 | languages[languages_size++] = lang; | |
1343 | } | |
1344 | ||
1345 | /* Define the language that is no language. */ | |
1346 | ||
1347 | static int | |
fba45db2 | 1348 | unk_lang_parser (void) |
c906108c SS |
1349 | { |
1350 | return 1; | |
1351 | } | |
1352 | ||
1353 | static void | |
fba45db2 | 1354 | unk_lang_error (char *msg) |
c906108c SS |
1355 | { |
1356 | error ("Attempted to parse an expression with unknown language"); | |
1357 | } | |
1358 | ||
1359 | static void | |
fba45db2 | 1360 | unk_lang_emit_char (register int c, struct ui_file *stream, int quoter) |
c906108c SS |
1361 | { |
1362 | error ("internal error - unimplemented function unk_lang_emit_char called."); | |
1363 | } | |
1364 | ||
1365 | static void | |
fba45db2 | 1366 | unk_lang_printchar (register int c, struct ui_file *stream) |
c906108c SS |
1367 | { |
1368 | error ("internal error - unimplemented function unk_lang_printchar called."); | |
1369 | } | |
1370 | ||
1371 | static void | |
fba45db2 KB |
1372 | unk_lang_printstr (struct ui_file *stream, char *string, unsigned int length, |
1373 | int width, int force_ellipses) | |
c906108c SS |
1374 | { |
1375 | error ("internal error - unimplemented function unk_lang_printstr called."); | |
1376 | } | |
1377 | ||
1378 | static struct type * | |
fba45db2 | 1379 | unk_lang_create_fundamental_type (struct objfile *objfile, int typeid) |
c906108c SS |
1380 | { |
1381 | error ("internal error - unimplemented function unk_lang_create_fundamental_type called."); | |
1382 | } | |
1383 | ||
1384 | static void | |
fba45db2 KB |
1385 | unk_lang_print_type (struct type *type, char *varstring, struct ui_file *stream, |
1386 | int show, int level) | |
c906108c SS |
1387 | { |
1388 | error ("internal error - unimplemented function unk_lang_print_type called."); | |
1389 | } | |
1390 | ||
1391 | static int | |
fba45db2 KB |
1392 | unk_lang_val_print (struct type *type, char *valaddr, int embedded_offset, |
1393 | CORE_ADDR address, struct ui_file *stream, int format, | |
1394 | int deref_ref, int recurse, enum val_prettyprint pretty) | |
c906108c SS |
1395 | { |
1396 | error ("internal error - unimplemented function unk_lang_val_print called."); | |
1397 | } | |
1398 | ||
1399 | static int | |
3d6d86c6 | 1400 | unk_lang_value_print (struct value *val, struct ui_file *stream, int format, |
fba45db2 | 1401 | enum val_prettyprint pretty) |
c906108c SS |
1402 | { |
1403 | error ("internal error - unimplemented function unk_lang_value_print called."); | |
1404 | } | |
1405 | ||
6c6ea35e | 1406 | static struct type **const (unknown_builtin_types[]) = |
c5aa993b JM |
1407 | { |
1408 | 0 | |
1409 | }; | |
1410 | static const struct op_print unk_op_print_tab[] = | |
1411 | { | |
1412 | {NULL, OP_NULL, PREC_NULL, 0} | |
c906108c SS |
1413 | }; |
1414 | ||
c5aa993b JM |
1415 | const struct language_defn unknown_language_defn = |
1416 | { | |
c906108c SS |
1417 | "unknown", |
1418 | language_unknown, | |
1419 | &unknown_builtin_types[0], | |
1420 | range_check_off, | |
1421 | type_check_off, | |
63872f9d | 1422 | case_sensitive_on, |
c906108c SS |
1423 | unk_lang_parser, |
1424 | unk_lang_error, | |
1425 | evaluate_subexp_standard, | |
1426 | unk_lang_printchar, /* Print character constant */ | |
1427 | unk_lang_printstr, | |
1428 | unk_lang_emit_char, | |
1429 | unk_lang_create_fundamental_type, | |
1430 | unk_lang_print_type, /* Print a type using appropriate syntax */ | |
1431 | unk_lang_val_print, /* Print a value using appropriate syntax */ | |
1432 | unk_lang_value_print, /* Print a top-level value */ | |
c5aa993b JM |
1433 | {"", "", "", ""}, /* Binary format info */ |
1434 | {"0%lo", "0", "o", ""}, /* Octal format info */ | |
1435 | {"%ld", "", "d", ""}, /* Decimal format info */ | |
1436 | {"0x%lx", "0x", "x", ""}, /* Hex format info */ | |
c906108c SS |
1437 | unk_op_print_tab, /* expression operators for printing */ |
1438 | 1, /* c-style arrays */ | |
1439 | 0, /* String lower bound */ | |
c5aa993b | 1440 | &builtin_type_char, /* Type of string elements */ |
c906108c SS |
1441 | LANG_MAGIC |
1442 | }; | |
1443 | ||
1444 | /* These two structs define fake entries for the "local" and "auto" options. */ | |
c5aa993b JM |
1445 | const struct language_defn auto_language_defn = |
1446 | { | |
c906108c SS |
1447 | "auto", |
1448 | language_auto, | |
1449 | &unknown_builtin_types[0], | |
1450 | range_check_off, | |
1451 | type_check_off, | |
63872f9d | 1452 | case_sensitive_on, |
c906108c SS |
1453 | unk_lang_parser, |
1454 | unk_lang_error, | |
1455 | evaluate_subexp_standard, | |
1456 | unk_lang_printchar, /* Print character constant */ | |
1457 | unk_lang_printstr, | |
1458 | unk_lang_emit_char, | |
1459 | unk_lang_create_fundamental_type, | |
1460 | unk_lang_print_type, /* Print a type using appropriate syntax */ | |
1461 | unk_lang_val_print, /* Print a value using appropriate syntax */ | |
1462 | unk_lang_value_print, /* Print a top-level value */ | |
c5aa993b JM |
1463 | {"", "", "", ""}, /* Binary format info */ |
1464 | {"0%lo", "0", "o", ""}, /* Octal format info */ | |
1465 | {"%ld", "", "d", ""}, /* Decimal format info */ | |
1466 | {"0x%lx", "0x", "x", ""}, /* Hex format info */ | |
c906108c SS |
1467 | unk_op_print_tab, /* expression operators for printing */ |
1468 | 1, /* c-style arrays */ | |
1469 | 0, /* String lower bound */ | |
c5aa993b | 1470 | &builtin_type_char, /* Type of string elements */ |
c906108c SS |
1471 | LANG_MAGIC |
1472 | }; | |
1473 | ||
c5aa993b JM |
1474 | const struct language_defn local_language_defn = |
1475 | { | |
c906108c SS |
1476 | "local", |
1477 | language_auto, | |
1478 | &unknown_builtin_types[0], | |
1479 | range_check_off, | |
1480 | type_check_off, | |
63872f9d | 1481 | case_sensitive_on, |
c906108c SS |
1482 | unk_lang_parser, |
1483 | unk_lang_error, | |
1484 | evaluate_subexp_standard, | |
1485 | unk_lang_printchar, /* Print character constant */ | |
1486 | unk_lang_printstr, | |
1487 | unk_lang_emit_char, | |
1488 | unk_lang_create_fundamental_type, | |
1489 | unk_lang_print_type, /* Print a type using appropriate syntax */ | |
1490 | unk_lang_val_print, /* Print a value using appropriate syntax */ | |
1491 | unk_lang_value_print, /* Print a top-level value */ | |
c5aa993b JM |
1492 | {"", "", "", ""}, /* Binary format info */ |
1493 | {"0%lo", "0", "o", ""}, /* Octal format info */ | |
1494 | {"%ld", "", "d", ""}, /* Decimal format info */ | |
1495 | {"0x%lx", "0x", "x", ""}, /* Hex format info */ | |
c906108c SS |
1496 | unk_op_print_tab, /* expression operators for printing */ |
1497 | 1, /* c-style arrays */ | |
1498 | 0, /* String lower bound */ | |
c5aa993b | 1499 | &builtin_type_char, /* Type of string elements */ |
c906108c SS |
1500 | LANG_MAGIC |
1501 | }; | |
1502 | \f | |
1503 | /* Initialize the language routines */ | |
1504 | ||
1505 | void | |
fba45db2 | 1506 | _initialize_language (void) |
c906108c | 1507 | { |
c5aa993b JM |
1508 | struct cmd_list_element *set, *show; |
1509 | ||
1510 | /* GDB commands for language specific stuff */ | |
1511 | ||
1512 | set = add_set_cmd ("language", class_support, var_string_noescape, | |
1513 | (char *) &language, | |
1514 | "Set the current source language.", | |
1515 | &setlist); | |
1516 | show = add_show_from_set (set, &showlist); | |
9f60d481 AC |
1517 | set_cmd_cfunc (set, set_language_command); |
1518 | set_cmd_cfunc (show, show_language_command); | |
c5aa993b JM |
1519 | |
1520 | add_prefix_cmd ("check", no_class, set_check, | |
d4654627 | 1521 | "Set the status of the type/range checker.", |
c5aa993b JM |
1522 | &setchecklist, "set check ", 0, &setlist); |
1523 | add_alias_cmd ("c", "check", no_class, 1, &setlist); | |
1524 | add_alias_cmd ("ch", "check", no_class, 1, &setlist); | |
1525 | ||
1526 | add_prefix_cmd ("check", no_class, show_check, | |
d4654627 | 1527 | "Show the status of the type/range checker.", |
c5aa993b JM |
1528 | &showchecklist, "show check ", 0, &showlist); |
1529 | add_alias_cmd ("c", "check", no_class, 1, &showlist); | |
1530 | add_alias_cmd ("ch", "check", no_class, 1, &showlist); | |
1531 | ||
1532 | set = add_set_cmd ("type", class_support, var_string_noescape, | |
1533 | (char *) &type, | |
1534 | "Set type checking. (on/warn/off/auto)", | |
1535 | &setchecklist); | |
1536 | show = add_show_from_set (set, &showchecklist); | |
9f60d481 AC |
1537 | set_cmd_cfunc (set, set_type_command); |
1538 | set_cmd_cfunc (show, show_type_command); | |
c5aa993b JM |
1539 | |
1540 | set = add_set_cmd ("range", class_support, var_string_noescape, | |
1541 | (char *) &range, | |
1542 | "Set range checking. (on/warn/off/auto)", | |
1543 | &setchecklist); | |
1544 | show = add_show_from_set (set, &showchecklist); | |
9f60d481 AC |
1545 | set_cmd_cfunc (set, set_range_command); |
1546 | set_cmd_cfunc (show, show_range_command); | |
c5aa993b | 1547 | |
63872f9d JG |
1548 | set = add_set_cmd ("case-sensitive", class_support, var_string_noescape, |
1549 | (char *) &case_sensitive, | |
1550 | "Set case sensitivity in name search. (on/off/auto)\n\ | |
1551 | For Fortran the default is off; for other languages the default is on.", | |
1552 | &setlist); | |
1553 | show = add_show_from_set (set, &showlist); | |
9f60d481 AC |
1554 | set_cmd_cfunc (set, set_case_command); |
1555 | set_cmd_cfunc (show, show_case_command); | |
63872f9d | 1556 | |
c5aa993b JM |
1557 | add_language (&unknown_language_defn); |
1558 | add_language (&local_language_defn); | |
1559 | add_language (&auto_language_defn); | |
1560 | ||
1561 | language = savestring ("auto", strlen ("auto")); | |
ed9a39eb | 1562 | type = savestring ("auto", strlen ("auto")); |
ed9a39eb | 1563 | range = savestring ("auto", strlen ("auto")); |
63872f9d JG |
1564 | case_sensitive = savestring ("auto",strlen ("auto")); |
1565 | ||
1566 | /* Have the above take effect */ | |
1567 | set_language (language_auto); | |
c906108c | 1568 | } |