* eval.c (evaluate_subexp): Clean up handling of
[deliverable/binutils-gdb.git] / gdb / language.h
CommitLineData
c8023e66 1/* Source-language-related definitions for GDB.
75af490b 2 Copyright 1991, 1992 Free Software Foundation, Inc.
c8023e66
JG
3 Contributed by the Department of Computer Science at the State University
4 of New York at Buffalo.
5
6This file is part of GDB.
7
8This program is free software; you can redistribute it and/or modify
9it under the terms of the GNU General Public License as published by
10the Free Software Foundation; either version 2 of the License, or
11(at your option) any later version.
12
13This program is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU General Public License for more details.
17
18You should have received a copy of the GNU General Public License
19along with this program; if not, write to the Free Software
20Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
21
75af490b
JG
22#if !defined (LANGUAGE_H)
23#define LANGUAGE_H 1
24
f9e3b3cc 25#ifdef __STDC__ /* Forward decls for prototypes */
75af490b 26struct value;
22e39759 27struct objfile;
f9e3b3cc 28/* enum exp_opcode; ANSI's `wisdom' didn't include forward enum decls. */
75af490b
JG
29#endif
30
c8023e66
JG
31/* This used to be included to configure GDB for one or more specific
32 languages. Now it is shortcutted to configure for all of them. FIXME. */
33/* #include "lang_def.h" */
34#define _LANG_c
35#define _LANG_m2
e58de8a2 36#define _LANG_chill
a91a6192
SS
37#define _LANG_fortran
38
39#define MAX_FORTRAN_DIMS 7 /* Maximum number of F77 array dims */
c8023e66
JG
40
41/* range_mode ==
42 range_mode_auto: range_check set automatically to default of language.
43 range_mode_manual: range_check set manually by user. */
44
45extern enum range_mode {range_mode_auto, range_mode_manual} range_mode;
46
47/* range_check ==
48 range_check_on: Ranges are checked in GDB expressions, producing errors.
49 range_check_warn: Ranges are checked, producing warnings.
50 range_check_off: Ranges are not checked in GDB expressions. */
51
52extern enum range_check
53 {range_check_off, range_check_warn, range_check_on} range_check;
54
55/* type_mode ==
56 type_mode_auto: type_check set automatically to default of language
57 type_mode_manual: type_check set manually by user. */
58
59extern enum type_mode {type_mode_auto, type_mode_manual} type_mode;
60
61/* type_check ==
62 type_check_on: Types are checked in GDB expressions, producing errors.
63 type_check_warn: Types are checked, producing warnings.
64 type_check_off: Types are not checked in GDB expressions. */
65
66extern enum type_check
67 {type_check_off, type_check_warn, type_check_on} type_check;
68\f
2e66cf7d
FF
69/* Information for doing language dependent formatting of printed values. */
70
71struct language_format_info
72{
73 /* The format that can be passed directly to standard C printf functions
74 to generate a completely formatted value in the format appropriate for
75 the language. */
76
77 char *la_format;
78
79 /* The prefix to be used when directly printing a value, or constructing
80 a standard C printf format. This generally is everything up to the
81 conversion specification (the part introduced by the '%' character
82 and terminated by the conversion specifier character). */
83
84 char *la_format_prefix;
85
86 /* The conversion specifier. This is generally everything after the
87 field width and precision, typically only a single character such
88 as 'o' for octal format or 'x' for hexadecimal format. */
89
90 char *la_format_specifier;
91
92 /* The suffix to be used when directly printing a value, or constructing
93 a standard C printf format. This generally is everything after the
94 conversion specification (the part introduced by the '%' character
95 and terminated by the conversion specifier character). */
96
97 char *la_format_suffix; /* Suffix for custom format string */
98};
99
c8023e66
JG
100/* Structure tying together assorted information about a language. */
101
a8a69e63
FF
102struct language_defn
103{
104 /* Name of the language */
105
106 char *la_name;
107
108 /* its symtab language-enum (defs.h) */
109
110 enum language la_language;
111
61932a8e
JK
112 /* Its builtin types. This is a vector ended by a NULL pointer. These
113 types can be specified by name in parsing types in expressions,
114 regardless of whether the program being debugged actually defines
115 such a type. */
a8a69e63
FF
116
117 struct type ** const *la_builtin_type_vector;
118
119 /* Default range checking */
120
121 enum range_check la_range_check;
122
123 /* Default type checking */
124
125 enum type_check la_type_check;
126
127 /* Parser function. */
128
129 int (*la_parser) PARAMS((void));
130
131 /* Parser error function */
132
133 void (*la_error) PARAMS ((char *));
134
199b2450 135 void (*la_printchar) PARAMS ((int, GDB_FILE *));
a8a69e63 136
199b2450 137 void (*la_printstr) PARAMS ((GDB_FILE *, char *, unsigned int, int));
a8a69e63
FF
138
139 struct type *(*la_fund_type) PARAMS ((struct objfile *, int));
140
141 /* Print a type using syntax appropriate for this language. */
142
199b2450 143 void (*la_print_type) PARAMS ((struct type *, char *, GDB_FILE *, int, int));
a8a69e63
FF
144
145 /* Print a value using syntax appropriate for this language. */
146
199b2450 147 int (*la_val_print) PARAMS ((struct type *, char *, CORE_ADDR, GDB_FILE *,
a8a69e63
FF
148 int, int, int, enum val_prettyprint));
149
e10cfcaa
PB
150 /* Print a top-level value using syntax appropriate for this language. */
151
152 int (*la_value_print) PARAMS ((struct value *, GDB_FILE *,
153 int, enum val_prettyprint));
154
a8a69e63
FF
155 /* Base 2 (binary) formats. */
156
157 struct language_format_info la_binary_format;
158
159 /* Base 8 (octal) formats. */
160
161 struct language_format_info la_octal_format;
162
163 /* Base 10 (decimal) formats */
164
165 struct language_format_info la_decimal_format;
166
167 /* Base 16 (hexadecimal) formats */
168
169 struct language_format_info la_hex_format;
170
a8a69e63
FF
171 /* Table for printing expressions */
172
173 const struct op_print *la_op_print_tab;
174
acc4efde
PB
175 /* Zero if the language has first-class arrays. True if there are no
176 array values, and array objects decay to pointers, as in C. */
177
178 char c_style_arrays;
179
ead95f8a
PB
180 /* Index to use for extracting the first element of a string. */
181 char string_lower_bound;
182
183 /* Type of elements of strings. */
184 struct type **string_char_type;
185
a8a69e63
FF
186 /* Add fields above this point, so the magic number is always last. */
187 /* Magic number for compat checking */
188
189 long la_magic;
190
c8023e66
JG
191};
192
193#define LANG_MAGIC 910823L
194
195/* Pointer to the language_defn for our current language. This pointer
196 always points to *some* valid struct; it can be used without checking
a3178c64
JK
197 it for validity.
198
199 The current language affects expression parsing and evaluation
200 (FIXME: it might be cleaner to make the evaluation-related stuff
201 separate exp_opcodes for each different set of semantics. We
202 should at least think this through more clearly with respect to
203 what happens if the language is changed between parsing and
204 evaluation) and printing of things like types and arrays. It does
205 *not* affect symbol-reading-- each source file in a symbol-file has
206 its own language and we should keep track of that regardless of the
207 language when symbols are read. If we want some manual setting for
208 the language of symbol files (e.g. detecting when ".c" files are
209 C++), it should be a seprate setting from the current_language. */
c8023e66 210
0c6efbcc 211extern const struct language_defn *current_language;
c8023e66 212
b5af69c3
JG
213/* Pointer to the language_defn expected by the user, e.g. the language
214 of main(), or the language we last mentioned in a message, or C. */
215
216extern const struct language_defn *expected_language;
217
c8023e66
JG
218/* language_mode ==
219 language_mode_auto: current_language automatically set upon selection
220 of scope (e.g. stack frame)
221 language_mode_manual: current_language set only by user. */
222
223extern enum language_mode
224 {language_mode_auto, language_mode_manual} language_mode;
225\f
226/* These macros define the behaviour of the expression
227 evaluator. */
228
229/* Should we strictly type check expressions? */
1a5a8f2a 230#define STRICT_TYPE (type_check != type_check_off)
c8023e66
JG
231
232/* Should we range check values against the domain of their type? */
1a5a8f2a 233#define RANGE_CHECK (range_check != range_check_off)
c8023e66
JG
234
235/* "cast" really means conversion */
236/* FIXME -- should be a setting in language_defn */
f77ad505
FF
237#define CAST_IS_CONVERSION (current_language->la_language == language_c || \
238 current_language->la_language == language_cplus)
c8023e66 239
75af490b
JG
240extern void
241language_info PARAMS ((int));
242
243extern void
244set_language PARAMS ((enum language));
245
c8023e66
JG
246\f
247/* This page contains functions that return things that are
248 specific to languages. Each of these functions is based on
249 the current setting of working_lang, which the user sets
250 with the "set language" command. */
251
bf229b4e
FF
252#define create_fundamental_type(objfile,typeid) \
253 (current_language->la_fund_type(objfile, typeid))
254
a8a69e63
FF
255#define LA_PRINT_TYPE(type,varstring,stream,show,level) \
256 (current_language->la_print_type(type,varstring,stream,show,level))
257
258#define LA_VAL_PRINT(type,valaddr,addr,stream,fmt,deref,recurse,pretty) \
259 (current_language->la_val_print(type,valaddr,addr,stream,fmt,deref, \
260 recurse,pretty))
e10cfcaa
PB
261#define LA_VALUE_PRINT(val,stream,fmt,pretty) \
262 (current_language->la_value_print(val,stream,fmt,pretty))
a8a69e63 263
2e66cf7d
FF
264/* Return a format string for printf that will print a number in one of
265 the local (language-specific) formats. Result is static and is
266 overwritten by the next call. Takes printf options like "08" or "l"
267 (to produce e.g. %08x or %lx). */
268
269#define local_binary_format() \
270 (current_language->la_binary_format.la_format)
271#define local_binary_format_prefix() \
272 (current_language->la_binary_format.la_format_prefix)
273#define local_binary_format_specifier() \
274 (current_language->la_binary_format.la_format_specifier)
275#define local_binary_format_suffix() \
276 (current_language->la_binary_format.la_format_suffix)
277
278#define local_octal_format() \
279 (current_language->la_octal_format.la_format)
280#define local_octal_format_prefix() \
281 (current_language->la_octal_format.la_format_prefix)
282#define local_octal_format_specifier() \
283 (current_language->la_octal_format.la_format_specifier)
284#define local_octal_format_suffix() \
285 (current_language->la_octal_format.la_format_suffix)
286
287#define local_decimal_format() \
288 (current_language->la_decimal_format.la_format)
289#define local_decimal_format_prefix() \
290 (current_language->la_decimal_format.la_format_prefix)
291#define local_decimal_format_specifier() \
292 (current_language->la_decimal_format.la_format_specifier)
293#define local_decimal_format_suffix() \
294 (current_language->la_decimal_format.la_format_suffix)
295
296#define local_hex_format() \
297 (current_language->la_hex_format.la_format)
298#define local_hex_format_prefix() \
299 (current_language->la_hex_format.la_format_prefix)
300#define local_hex_format_specifier() \
301 (current_language->la_hex_format.la_format_specifier)
302#define local_hex_format_suffix() \
303 (current_language->la_hex_format.la_format_suffix)
304
a8a69e63 305#define LA_PRINT_CHAR(ch, stream) \
5d074aa9 306 (current_language->la_printchar(ch, stream))
a8a69e63 307#define LA_PRINT_STRING(stream, string, length, force_ellipses) \
5d074aa9
FF
308 (current_language->la_printstr(stream, string, length, force_ellipses))
309
5707ea9f
FF
310/* Test a character to decide whether it can be printed in literal form
311 or needs to be printed in another representation. For example,
312 in C the literal form of the character with octal value 141 is 'a'
313 and the "other representation" is '\141'. The "other representation"
314 is program language dependent. */
315
316#define PRINT_LITERAL_FORM(c) \
317 ((c)>=0x20 && ((c)<0x7F || (c)>=0xA0) && (!sevenbit_strings || (c)<0x80))
318
2e66cf7d
FF
319/* Return a format string for printf that will print a number in one of
320 the local (language-specific) formats. Result is static and is
321 overwritten by the next call. Takes printf options like "08" or "l"
322 (to produce e.g. %08x or %lx). */
c8023e66 323
58a66e24
FF
324extern char *
325local_decimal_format_custom PARAMS ((char *)); /* language.c */
326
2e66cf7d
FF
327extern char *
328local_octal_format_custom PARAMS ((char *)); /* language.c */
329
330extern char *
331local_hex_format_custom PARAMS ((char *)); /* language.c */
c8023e66 332
2e66cf7d
FF
333/* Return a string that contains a number formatted in one of the local
334 (language-specific) formats. Result is static and is overwritten by
335 the next call. Takes printf options like "08" or "l". */
336
337extern char *
5573d7d4 338local_hex_string PARAMS ((unsigned long)); /* language.c */
2e66cf7d
FF
339
340extern char *
5573d7d4 341local_hex_string_custom PARAMS ((unsigned long, char *)); /* language.c */
c8023e66
JG
342
343/* Type predicates */
75af490b
JG
344
345extern int
346simple_type PARAMS ((struct type *));
347
348extern int
349ordered_type PARAMS ((struct type *));
350
351extern int
352same_type PARAMS ((struct type *, struct type *));
353
354extern int
355integral_type PARAMS ((struct type *));
356
357extern int
358numeric_type PARAMS ((struct type *));
359
360extern int
361character_type PARAMS ((struct type *));
362
363extern int
364boolean_type PARAMS ((struct type *));
365
366extern int
367float_type PARAMS ((struct type *));
368
369extern int
370pointer_type PARAMS ((struct type *));
371
372extern int
373structured_type PARAMS ((struct type *));
c8023e66
JG
374
375/* Checks Binary and Unary operations for semantic type correctness */
75af490b 376/* FIXME: Does not appear to be used */
c8023e66
JG
377#define unop_type_check(v,o) binop_type_check((v),NULL,(o))
378
75af490b
JG
379extern void
380binop_type_check PARAMS ((struct value *, struct value *, int));
381
c8023e66 382/* Error messages */
75af490b
JG
383
384extern void
385op_error PARAMS ((char *fmt, enum exp_opcode, int));
386
c8023e66
JG
387#define type_op_error(f,o) \
388 op_error((f),(o),type_check==type_check_on ? 1 : 0)
389#define range_op_error(f,o) \
390 op_error((f),(o),range_check==range_check_on ? 1 : 0)
75af490b
JG
391
392extern void
393type_error ();
394
395void
396range_error ();
c8023e66
JG
397
398/* Data: Does this value represent "truth" to the current language? */
75af490b
JG
399
400extern int
401value_true PARAMS ((struct value *));
c8023e66
JG
402
403/* Misc: The string representing a particular enum language. */
75af490b 404
bf229b4e
FF
405extern const struct language_defn *
406language_def PARAMS ((enum language));
407
75af490b
JG
408extern char *
409language_str PARAMS ((enum language));
c8023e66
JG
410
411/* Add a language to the set known by GDB (at initialization time). */
d8ce1326 412
75af490b
JG
413extern void
414add_language PARAMS ((const struct language_defn *));
415
416extern enum language
417get_frame_language PARAMS ((void)); /* In stack.c */
418
419#endif /* defined (LANGUAGE_H) */
This page took 0.192188 seconds and 4 git commands to generate.