PR 7041
[deliverable/binutils-gdb.git] / gdb / c-lang.c
CommitLineData
c906108c 1/* C language support routines for GDB, the GNU debugger.
ce27fb25 2
6aba47ca 3 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2002, 2003,
9b254dd1 4 2004, 2005, 2007, 2008 Free Software Foundation, Inc.
c906108c 5
c5aa993b 6 This file is part of GDB.
c906108c 7
c5aa993b
JM
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
a9762ec7 10 the Free Software Foundation; either version 3 of the License, or
c5aa993b 11 (at your option) any later version.
c906108c 12
c5aa993b
JM
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
c906108c 17
c5aa993b 18 You should have received a copy of the GNU General Public License
a9762ec7 19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
20
21#include "defs.h"
22#include "symtab.h"
23#include "gdbtypes.h"
24#include "expression.h"
25#include "parser-defs.h"
26#include "language.h"
27#include "c-lang.h"
745b8ca0 28#include "valprint.h"
84f0252a
JB
29#include "macroscope.h"
30#include "gdb_assert.h"
234b45d4 31#include "charset.h"
a15ef5f5 32#include "gdb_string.h"
9a3d7dfd 33#include "demangle.h"
b18be20d 34#include "cp-abi.h"
1fcb5155 35#include "cp-support.h"
c906108c 36
a14ed312 37extern void _initialize_c_language (void);
d9fcf2fb 38static void c_emit_char (int c, struct ui_file * stream, int quoter);
c906108c
SS
39
40/* Print the character C on STREAM as part of the contents of a literal
41 string whose delimiter is QUOTER. Note that that format for printing
42 characters and strings is language specific. */
43
44static void
f86f5ca3 45c_emit_char (int c, struct ui_file *stream, int quoter)
c906108c 46{
234b45d4
KB
47 const char *escape;
48 int host_char;
49
c906108c
SS
50 c &= 0xFF; /* Avoid sign bit follies */
51
234b45d4
KB
52 escape = c_target_char_has_backslash_escape (c);
53 if (escape)
c906108c 54 {
234b45d4
KB
55 if (quoter == '"' && strcmp (escape, "0") == 0)
56 /* Print nulls embedded in double quoted strings as \000 to
57 prevent ambiguity. */
58 fprintf_filtered (stream, "\\000");
59 else
60 fprintf_filtered (stream, "\\%s", escape);
c906108c 61 }
234b45d4
KB
62 else if (target_char_to_host (c, &host_char)
63 && host_char_print_literally (host_char))
c906108c 64 {
234b45d4
KB
65 if (host_char == '\\' || host_char == quoter)
66 fputs_filtered ("\\", stream);
67 fprintf_filtered (stream, "%c", host_char);
c906108c 68 }
234b45d4
KB
69 else
70 fprintf_filtered (stream, "\\%.3o", (unsigned int) c);
c906108c
SS
71}
72
73void
fba45db2 74c_printchar (int c, struct ui_file *stream)
c906108c
SS
75{
76 fputc_filtered ('\'', stream);
77 LA_EMIT_CHAR (c, stream, '\'');
78 fputc_filtered ('\'', stream);
79}
80
81/* Print the character string STRING, printing at most LENGTH characters.
82 LENGTH is -1 if the string is nul terminated. Each character is WIDTH bytes
83 long. Printing stops early if the number hits print_max; repeat counts are
84 printed as appropriate. Print ellipses at the end if we had to stop before
85 printing LENGTH characters, or if FORCE_ELLIPSES. */
86
87void
fc1a4b47 88c_printstr (struct ui_file *stream, const gdb_byte *string,
79a45b7d
TT
89 unsigned int length, int width, int force_ellipses,
90 const struct value_print_options *options)
c906108c 91{
f86f5ca3 92 unsigned int i;
c906108c
SS
93 unsigned int things_printed = 0;
94 int in_quotes = 0;
95 int need_comma = 0;
c906108c
SS
96
97 /* If the string was not truncated due to `set print elements', and
98 the last byte of it is a null, we don't print that, in traditional C
99 style. */
100 if (!force_ellipses
101 && length > 0
78a51202
JB
102 && (extract_unsigned_integer (string + (length - 1) * width, width)
103 == '\0'))
c906108c
SS
104 length--;
105
106 if (length == 0)
107 {
108 fputs_filtered ("\"\"", stream);
109 return;
110 }
111
79a45b7d 112 for (i = 0; i < length && things_printed < options->print_max; ++i)
c906108c
SS
113 {
114 /* Position of the character we are examining
c5aa993b 115 to see whether it is repeated. */
c906108c
SS
116 unsigned int rep1;
117 /* Number of repetitions we have detected so far. */
118 unsigned int reps;
119 unsigned long current_char;
120
121 QUIT;
122
123 if (need_comma)
124 {
125 fputs_filtered (", ", stream);
126 need_comma = 0;
127 }
128
129 current_char = extract_unsigned_integer (string + i * width, width);
130
131 rep1 = i + 1;
132 reps = 1;
133 while (rep1 < length
134 && extract_unsigned_integer (string + rep1 * width, width)
c5aa993b 135 == current_char)
c906108c
SS
136 {
137 ++rep1;
138 ++reps;
139 }
140
79a45b7d 141 if (reps > options->repeat_count_threshold)
c906108c
SS
142 {
143 if (in_quotes)
144 {
79a45b7d 145 if (options->inspect_it)
c906108c
SS
146 fputs_filtered ("\\\", ", stream);
147 else
148 fputs_filtered ("\", ", stream);
149 in_quotes = 0;
150 }
151 LA_PRINT_CHAR (current_char, stream);
3d263c1d 152 fprintf_filtered (stream, _(" <repeats %u times>"), reps);
c906108c 153 i = rep1 - 1;
79a45b7d 154 things_printed += options->repeat_count_threshold;
c906108c
SS
155 need_comma = 1;
156 }
157 else
158 {
159 if (!in_quotes)
160 {
79a45b7d 161 if (options->inspect_it)
c906108c
SS
162 fputs_filtered ("\\\"", stream);
163 else
164 fputs_filtered ("\"", stream);
165 in_quotes = 1;
166 }
167 LA_EMIT_CHAR (current_char, stream, '"');
168 ++things_printed;
169 }
170 }
171
172 /* Terminate the quotes if necessary. */
173 if (in_quotes)
174 {
79a45b7d 175 if (options->inspect_it)
c906108c
SS
176 fputs_filtered ("\\\"", stream);
177 else
178 fputs_filtered ("\"", stream);
179 }
180
181 if (force_ellipses || i < length)
182 fputs_filtered ("...", stream);
183}
c906108c 184\f
84f0252a 185/* Preprocessing and parsing C and C++ expressions. */
c5aa993b 186
84f0252a
JB
187
188/* When we find that lexptr (the global var defined in parse.c) is
189 pointing at a macro invocation, we expand the invocation, and call
190 scan_macro_expansion to save the old lexptr here and point lexptr
191 into the expanded text. When we reach the end of that, we call
192 end_macro_expansion to pop back to the value we saved here. The
193 macro expansion code promises to return only fully-expanded text,
194 so we don't need to "push" more than one level.
195
196 This is disgusting, of course. It would be cleaner to do all macro
197 expansion beforehand, and then hand that to lexptr. But we don't
198 really know where the expression ends. Remember, in a command like
199
200 (gdb) break *ADDRESS if CONDITION
201
202 we evaluate ADDRESS in the scope of the current frame, but we
203 evaluate CONDITION in the scope of the breakpoint's location. So
204 it's simply wrong to try to macro-expand the whole thing at once. */
205static char *macro_original_text;
206static char *macro_expanded_text;
207
208
209void
210scan_macro_expansion (char *expansion)
211{
212 /* We'd better not be trying to push the stack twice. */
213 gdb_assert (! macro_original_text);
214 gdb_assert (! macro_expanded_text);
215
216 /* Save the old lexptr value, so we can return to it when we're done
217 parsing the expanded text. */
218 macro_original_text = lexptr;
219 lexptr = expansion;
220
221 /* Save the expanded text, so we can free it when we're finished. */
222 macro_expanded_text = expansion;
223}
224
225
226int
5ae5f592 227scanning_macro_expansion (void)
84f0252a
JB
228{
229 return macro_original_text != 0;
230}
231
232
233void
5ae5f592 234finished_macro_expansion (void)
84f0252a
JB
235{
236 /* There'd better be something to pop back to, and we better have
237 saved a pointer to the start of the expanded text. */
238 gdb_assert (macro_original_text);
239 gdb_assert (macro_expanded_text);
240
241 /* Pop back to the original text. */
242 lexptr = macro_original_text;
243 macro_original_text = 0;
244
245 /* Free the expanded text. */
246 xfree (macro_expanded_text);
247 macro_expanded_text = 0;
248}
249
250
251static void
252scan_macro_cleanup (void *dummy)
253{
254 if (macro_original_text)
255 finished_macro_expansion ();
256}
257
258
259/* We set these global variables before calling c_parse, to tell it
260 how it to find macro definitions for the expression at hand. */
261macro_lookup_ftype *expression_macro_lookup_func;
262void *expression_macro_lookup_baton;
263
264
84f0252a 265static int
5ae5f592 266c_preprocess_and_parse (void)
84f0252a
JB
267{
268 /* Set up a lookup function for the macro expander. */
269 struct macro_scope *scope = 0;
270 struct cleanup *back_to = make_cleanup (free_current_contents, &scope);
271
272 if (expression_context_block)
273 scope = sal_macro_scope (find_pc_line (expression_context_pc, 0));
274 else
275 scope = default_macro_scope ();
d7d9f01e
TT
276 if (! scope)
277 scope = user_macro_scope ();
84f0252a 278
d7d9f01e
TT
279 expression_macro_lookup_func = standard_macro_lookup;
280 expression_macro_lookup_baton = (void *) scope;
84f0252a
JB
281
282 gdb_assert (! macro_original_text);
283 make_cleanup (scan_macro_cleanup, 0);
284
285 {
286 int result = c_parse ();
287 do_cleanups (back_to);
288 return result;
289 }
290}
291
292
293\f
c906108c
SS
294/* Table mapping opcodes into strings for printing operators
295 and precedences of the operators. */
296
297const struct op_print c_op_print_tab[] =
c5aa993b
JM
298{
299 {",", BINOP_COMMA, PREC_COMMA, 0},
300 {"=", BINOP_ASSIGN, PREC_ASSIGN, 1},
301 {"||", BINOP_LOGICAL_OR, PREC_LOGICAL_OR, 0},
302 {"&&", BINOP_LOGICAL_AND, PREC_LOGICAL_AND, 0},
303 {"|", BINOP_BITWISE_IOR, PREC_BITWISE_IOR, 0},
304 {"^", BINOP_BITWISE_XOR, PREC_BITWISE_XOR, 0},
305 {"&", BINOP_BITWISE_AND, PREC_BITWISE_AND, 0},
306 {"==", BINOP_EQUAL, PREC_EQUAL, 0},
307 {"!=", BINOP_NOTEQUAL, PREC_EQUAL, 0},
308 {"<=", BINOP_LEQ, PREC_ORDER, 0},
309 {">=", BINOP_GEQ, PREC_ORDER, 0},
310 {">", BINOP_GTR, PREC_ORDER, 0},
311 {"<", BINOP_LESS, PREC_ORDER, 0},
312 {">>", BINOP_RSH, PREC_SHIFT, 0},
313 {"<<", BINOP_LSH, PREC_SHIFT, 0},
314 {"+", BINOP_ADD, PREC_ADD, 0},
315 {"-", BINOP_SUB, PREC_ADD, 0},
316 {"*", BINOP_MUL, PREC_MUL, 0},
317 {"/", BINOP_DIV, PREC_MUL, 0},
318 {"%", BINOP_REM, PREC_MUL, 0},
319 {"@", BINOP_REPEAT, PREC_REPEAT, 0},
320 {"-", UNOP_NEG, PREC_PREFIX, 0},
321 {"!", UNOP_LOGICAL_NOT, PREC_PREFIX, 0},
322 {"~", UNOP_COMPLEMENT, PREC_PREFIX, 0},
323 {"*", UNOP_IND, PREC_PREFIX, 0},
324 {"&", UNOP_ADDR, PREC_PREFIX, 0},
325 {"sizeof ", UNOP_SIZEOF, PREC_PREFIX, 0},
326 {"++", UNOP_PREINCREMENT, PREC_PREFIX, 0},
327 {"--", UNOP_PREDECREMENT, PREC_PREFIX, 0},
c5aa993b 328 {NULL, 0, 0, 0}
c906108c
SS
329};
330\f
685419e2
AC
331enum c_primitive_types {
332 c_primitive_type_int,
333 c_primitive_type_long,
334 c_primitive_type_short,
335 c_primitive_type_char,
336 c_primitive_type_float,
337 c_primitive_type_double,
338 c_primitive_type_void,
339 c_primitive_type_long_long,
340 c_primitive_type_signed_char,
341 c_primitive_type_unsigned_char,
342 c_primitive_type_unsigned_short,
343 c_primitive_type_unsigned_int,
344 c_primitive_type_unsigned_long,
345 c_primitive_type_unsigned_long_long,
346 c_primitive_type_long_double,
347 c_primitive_type_complex,
348 c_primitive_type_double_complex,
213e4dc2
TJB
349 c_primitive_type_decfloat,
350 c_primitive_type_decdouble,
351 c_primitive_type_declong,
685419e2
AC
352 nr_c_primitive_types
353};
354
e9667a65 355void
685419e2
AC
356c_language_arch_info (struct gdbarch *gdbarch,
357 struct language_arch_info *lai)
358{
359 const struct builtin_type *builtin = builtin_type (gdbarch);
e9667a65 360 lai->string_char_type = builtin->builtin_char;
685419e2
AC
361 lai->primitive_type_vector
362 = GDBARCH_OBSTACK_CALLOC (gdbarch, nr_c_primitive_types + 1,
363 struct type *);
364 lai->primitive_type_vector [c_primitive_type_int] = builtin->builtin_int;
365 lai->primitive_type_vector [c_primitive_type_long] = builtin->builtin_long;
366 lai->primitive_type_vector [c_primitive_type_short] = builtin->builtin_short;
367 lai->primitive_type_vector [c_primitive_type_char] = builtin->builtin_char;
368 lai->primitive_type_vector [c_primitive_type_float] = builtin->builtin_float;
369 lai->primitive_type_vector [c_primitive_type_double] = builtin->builtin_double;
370 lai->primitive_type_vector [c_primitive_type_void] = builtin->builtin_void;
371 lai->primitive_type_vector [c_primitive_type_long_long] = builtin->builtin_long_long;
372 lai->primitive_type_vector [c_primitive_type_signed_char] = builtin->builtin_signed_char;
373 lai->primitive_type_vector [c_primitive_type_unsigned_char] = builtin->builtin_unsigned_char;
374 lai->primitive_type_vector [c_primitive_type_unsigned_short] = builtin->builtin_unsigned_short;
375 lai->primitive_type_vector [c_primitive_type_unsigned_int] = builtin->builtin_unsigned_int;
376 lai->primitive_type_vector [c_primitive_type_unsigned_long] = builtin->builtin_unsigned_long;
377 lai->primitive_type_vector [c_primitive_type_unsigned_long_long] = builtin->builtin_unsigned_long_long;
378 lai->primitive_type_vector [c_primitive_type_long_double] = builtin->builtin_long_double;
379 lai->primitive_type_vector [c_primitive_type_complex] = builtin->builtin_complex;
380 lai->primitive_type_vector [c_primitive_type_double_complex] = builtin->builtin_double_complex;
213e4dc2
TJB
381 lai->primitive_type_vector [c_primitive_type_decfloat] = builtin->builtin_decfloat;
382 lai->primitive_type_vector [c_primitive_type_decdouble] = builtin->builtin_decdouble;
383 lai->primitive_type_vector [c_primitive_type_declong] = builtin->builtin_declong;
fbb06eb1
UW
384
385 lai->bool_type_default = builtin->builtin_int;
cad351d1 386}
685419e2 387
c5aa993b
JM
388const struct language_defn c_language_defn =
389{
c906108c
SS
390 "c", /* Language name */
391 language_c,
c906108c
SS
392 range_check_off,
393 type_check_off,
63872f9d 394 case_sensitive_on,
7ca2d3a3 395 array_row_major,
9a044a89 396 macro_expansion_c,
5f9769d1 397 &exp_descriptor_standard,
84f0252a 398 c_preprocess_and_parse,
c906108c 399 c_error,
e85c3284 400 null_post_parser,
c906108c
SS
401 c_printchar, /* Print a character constant */
402 c_printstr, /* Function to print string constant */
403 c_emit_char, /* Print a single char */
c906108c 404 c_print_type, /* Print a type using appropriate syntax */
5c6ce71d 405 c_print_typedef, /* Print a typedef using appropriate syntax */
c906108c
SS
406 c_val_print, /* Print a value using appropriate syntax */
407 c_value_print, /* Print a top-level value */
f636b87d 408 NULL, /* Language specific skip_trampoline */
2b2d9e11 409 NULL, /* name_of_this */
5f9a71c3 410 basic_lookup_symbol_nonlocal, /* lookup_symbol_nonlocal */
b368761e 411 basic_lookup_transparent_type,/* lookup_transparent_type */
9a3d7dfd 412 NULL, /* Language specific symbol demangler */
31c27f77 413 NULL, /* Language specific class_name_from_physname */
c906108c
SS
414 c_op_print_tab, /* expression operators for printing */
415 1, /* c-style arrays */
416 0, /* String lower bound */
6084f43a 417 default_word_break_characters,
41d27058 418 default_make_symbol_completion_list,
685419e2 419 c_language_arch_info,
e79af960 420 default_print_array_index,
41f1b697 421 default_pass_by_reference,
c906108c
SS
422 LANG_MAGIC
423};
424
cad351d1
UW
425enum cplus_primitive_types {
426 cplus_primitive_type_int,
427 cplus_primitive_type_long,
428 cplus_primitive_type_short,
429 cplus_primitive_type_char,
430 cplus_primitive_type_float,
431 cplus_primitive_type_double,
432 cplus_primitive_type_void,
433 cplus_primitive_type_long_long,
434 cplus_primitive_type_signed_char,
435 cplus_primitive_type_unsigned_char,
436 cplus_primitive_type_unsigned_short,
437 cplus_primitive_type_unsigned_int,
438 cplus_primitive_type_unsigned_long,
439 cplus_primitive_type_unsigned_long_long,
440 cplus_primitive_type_long_double,
441 cplus_primitive_type_complex,
442 cplus_primitive_type_double_complex,
443 cplus_primitive_type_bool,
213e4dc2
TJB
444 cplus_primitive_type_decfloat,
445 cplus_primitive_type_decdouble,
446 cplus_primitive_type_declong,
cad351d1 447 nr_cplus_primitive_types
c906108c
SS
448};
449
cad351d1
UW
450static void
451cplus_language_arch_info (struct gdbarch *gdbarch,
452 struct language_arch_info *lai)
453{
454 const struct builtin_type *builtin = builtin_type (gdbarch);
455 lai->string_char_type = builtin->builtin_char;
456 lai->primitive_type_vector
457 = GDBARCH_OBSTACK_CALLOC (gdbarch, nr_cplus_primitive_types + 1,
458 struct type *);
459 lai->primitive_type_vector [cplus_primitive_type_int]
460 = builtin->builtin_int;
461 lai->primitive_type_vector [cplus_primitive_type_long]
462 = builtin->builtin_long;
463 lai->primitive_type_vector [cplus_primitive_type_short]
464 = builtin->builtin_short;
465 lai->primitive_type_vector [cplus_primitive_type_char]
466 = builtin->builtin_char;
467 lai->primitive_type_vector [cplus_primitive_type_float]
468 = builtin->builtin_float;
469 lai->primitive_type_vector [cplus_primitive_type_double]
470 = builtin->builtin_double;
471 lai->primitive_type_vector [cplus_primitive_type_void]
472 = builtin->builtin_void;
473 lai->primitive_type_vector [cplus_primitive_type_long_long]
474 = builtin->builtin_long_long;
475 lai->primitive_type_vector [cplus_primitive_type_signed_char]
476 = builtin->builtin_signed_char;
477 lai->primitive_type_vector [cplus_primitive_type_unsigned_char]
478 = builtin->builtin_unsigned_char;
479 lai->primitive_type_vector [cplus_primitive_type_unsigned_short]
480 = builtin->builtin_unsigned_short;
481 lai->primitive_type_vector [cplus_primitive_type_unsigned_int]
482 = builtin->builtin_unsigned_int;
483 lai->primitive_type_vector [cplus_primitive_type_unsigned_long]
484 = builtin->builtin_unsigned_long;
485 lai->primitive_type_vector [cplus_primitive_type_unsigned_long_long]
486 = builtin->builtin_unsigned_long_long;
487 lai->primitive_type_vector [cplus_primitive_type_long_double]
488 = builtin->builtin_long_double;
489 lai->primitive_type_vector [cplus_primitive_type_complex]
490 = builtin->builtin_complex;
491 lai->primitive_type_vector [cplus_primitive_type_double_complex]
492 = builtin->builtin_double_complex;
493 lai->primitive_type_vector [cplus_primitive_type_bool]
494 = builtin->builtin_bool;
213e4dc2
TJB
495 lai->primitive_type_vector [cplus_primitive_type_decfloat]
496 = builtin->builtin_decfloat;
497 lai->primitive_type_vector [cplus_primitive_type_decdouble]
498 = builtin->builtin_decdouble;
499 lai->primitive_type_vector [cplus_primitive_type_declong]
500 = builtin->builtin_declong;
fbb06eb1
UW
501
502 lai->bool_type_symbol = "bool";
503 lai->bool_type_default = builtin->builtin_bool;
cad351d1
UW
504}
505
c5aa993b
JM
506const struct language_defn cplus_language_defn =
507{
508 "c++", /* Language name */
c906108c 509 language_cplus,
c906108c
SS
510 range_check_off,
511 type_check_off,
63872f9d 512 case_sensitive_on,
7ca2d3a3 513 array_row_major,
9a044a89 514 macro_expansion_c,
5f9769d1 515 &exp_descriptor_standard,
84f0252a 516 c_preprocess_and_parse,
c906108c 517 c_error,
e85c3284 518 null_post_parser,
c906108c
SS
519 c_printchar, /* Print a character constant */
520 c_printstr, /* Function to print string constant */
521 c_emit_char, /* Print a single char */
c906108c 522 c_print_type, /* Print a type using appropriate syntax */
5c6ce71d 523 c_print_typedef, /* Print a typedef using appropriate syntax */
c906108c
SS
524 c_val_print, /* Print a value using appropriate syntax */
525 c_value_print, /* Print a top-level value */
b18be20d 526 cplus_skip_trampoline, /* Language specific skip_trampoline */
2b2d9e11 527 "this", /* name_of_this */
1fcb5155 528 cp_lookup_symbol_nonlocal, /* lookup_symbol_nonlocal */
b368761e 529 cp_lookup_transparent_type, /* lookup_transparent_type */
9a3d7dfd 530 cplus_demangle, /* Language specific symbol demangler */
31c27f77 531 cp_class_name_from_physname, /* Language specific class_name_from_physname */
c906108c
SS
532 c_op_print_tab, /* expression operators for printing */
533 1, /* c-style arrays */
534 0, /* String lower bound */
6084f43a 535 default_word_break_characters,
41d27058 536 default_make_symbol_completion_list,
cad351d1 537 cplus_language_arch_info,
e79af960 538 default_print_array_index,
41f1b697 539 cp_pass_by_reference,
c906108c
SS
540 LANG_MAGIC
541};
542
c5aa993b
JM
543const struct language_defn asm_language_defn =
544{
c906108c
SS
545 "asm", /* Language name */
546 language_asm,
c906108c
SS
547 range_check_off,
548 type_check_off,
63872f9d 549 case_sensitive_on,
7ca2d3a3 550 array_row_major,
9a044a89 551 macro_expansion_c,
5f9769d1 552 &exp_descriptor_standard,
84f0252a 553 c_preprocess_and_parse,
c906108c 554 c_error,
e85c3284 555 null_post_parser,
c906108c
SS
556 c_printchar, /* Print a character constant */
557 c_printstr, /* Function to print string constant */
558 c_emit_char, /* Print a single char */
c906108c 559 c_print_type, /* Print a type using appropriate syntax */
5c6ce71d 560 c_print_typedef, /* Print a typedef using appropriate syntax */
c906108c
SS
561 c_val_print, /* Print a value using appropriate syntax */
562 c_value_print, /* Print a top-level value */
f636b87d 563 NULL, /* Language specific skip_trampoline */
2b2d9e11 564 NULL, /* name_of_this */
5f9a71c3 565 basic_lookup_symbol_nonlocal, /* lookup_symbol_nonlocal */
b368761e 566 basic_lookup_transparent_type,/* lookup_transparent_type */
9a3d7dfd 567 NULL, /* Language specific symbol demangler */
31c27f77 568 NULL, /* Language specific class_name_from_physname */
c906108c
SS
569 c_op_print_tab, /* expression operators for printing */
570 1, /* c-style arrays */
571 0, /* String lower bound */
6084f43a 572 default_word_break_characters,
41d27058 573 default_make_symbol_completion_list,
e9667a65 574 c_language_arch_info, /* FIXME: la_language_arch_info. */
e79af960 575 default_print_array_index,
41f1b697 576 default_pass_by_reference,
c906108c
SS
577 LANG_MAGIC
578};
579
20a0e81d
JB
580/* The following language_defn does not represent a real language.
581 It just provides a minimal support a-la-C that should allow users
582 to do some simple operations when debugging applications that use
583 a language currently not supported by GDB. */
584
585const struct language_defn minimal_language_defn =
586{
587 "minimal", /* Language name */
588 language_minimal,
20a0e81d
JB
589 range_check_off,
590 type_check_off,
591 case_sensitive_on,
7ca2d3a3 592 array_row_major,
9a044a89 593 macro_expansion_c,
5f9769d1 594 &exp_descriptor_standard,
20a0e81d
JB
595 c_preprocess_and_parse,
596 c_error,
e85c3284 597 null_post_parser,
20a0e81d
JB
598 c_printchar, /* Print a character constant */
599 c_printstr, /* Function to print string constant */
600 c_emit_char, /* Print a single char */
20a0e81d 601 c_print_type, /* Print a type using appropriate syntax */
5c6ce71d 602 c_print_typedef, /* Print a typedef using appropriate syntax */
20a0e81d
JB
603 c_val_print, /* Print a value using appropriate syntax */
604 c_value_print, /* Print a top-level value */
605 NULL, /* Language specific skip_trampoline */
2b2d9e11 606 NULL, /* name_of_this */
5f9a71c3 607 basic_lookup_symbol_nonlocal, /* lookup_symbol_nonlocal */
b368761e 608 basic_lookup_transparent_type,/* lookup_transparent_type */
20a0e81d 609 NULL, /* Language specific symbol demangler */
31c27f77 610 NULL, /* Language specific class_name_from_physname */
20a0e81d
JB
611 c_op_print_tab, /* expression operators for printing */
612 1, /* c-style arrays */
613 0, /* String lower bound */
6084f43a 614 default_word_break_characters,
41d27058 615 default_make_symbol_completion_list,
e9667a65 616 c_language_arch_info,
e79af960 617 default_print_array_index,
41f1b697 618 default_pass_by_reference,
20a0e81d
JB
619 LANG_MAGIC
620};
621
c906108c 622void
fba45db2 623_initialize_c_language (void)
c906108c
SS
624{
625 add_language (&c_language_defn);
626 add_language (&cplus_language_defn);
627 add_language (&asm_language_defn);
20a0e81d 628 add_language (&minimal_language_defn);
c906108c 629}
This page took 0.62601 seconds and 4 git commands to generate.