This commit was generated by cvs2svn to track changes on a CVS vendor
[binutils-gdb.git] / gdb / c-lang.c
1 /* C language support routines for GDB, the GNU debugger.
2 Copyright 1992, 1993, 1994 Free Software Foundation, Inc.
3
4 This file is part of GDB.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
19
20 #include "defs.h"
21 #include "symtab.h"
22 #include "gdbtypes.h"
23 #include "expression.h"
24 #include "parser-defs.h"
25 #include "language.h"
26 #include "c-lang.h"
27
28 static void c_emit_char PARAMS ((int c, GDB_FILE *stream, int quoter));
29
30 /* Print the character C on STREAM as part of the contents of a literal
31 string whose delimiter is QUOTER. Note that that format for printing
32 characters and strings is language specific. */
33
34 static void
35 c_emit_char (c, stream, quoter)
36 register int c;
37 GDB_FILE *stream;
38 int quoter;
39 {
40 c &= 0xFF; /* Avoid sign bit follies */
41
42 if (PRINT_LITERAL_FORM (c))
43 {
44 if (c == '\\' || c == quoter)
45 {
46 fputs_filtered ("\\", stream);
47 }
48 fprintf_filtered (stream, "%c", c);
49 }
50 else
51 {
52 switch (c)
53 {
54 case '\n':
55 fputs_filtered ("\\n", stream);
56 break;
57 case '\b':
58 fputs_filtered ("\\b", stream);
59 break;
60 case '\t':
61 fputs_filtered ("\\t", stream);
62 break;
63 case '\f':
64 fputs_filtered ("\\f", stream);
65 break;
66 case '\r':
67 fputs_filtered ("\\r", stream);
68 break;
69 case '\033':
70 fputs_filtered ("\\e", stream);
71 break;
72 case '\007':
73 fputs_filtered ("\\a", stream);
74 break;
75 default:
76 fprintf_filtered (stream, "\\%.3o", (unsigned int) c);
77 break;
78 }
79 }
80 }
81
82 void
83 c_printchar (c, stream)
84 int c;
85 GDB_FILE *stream;
86 {
87 fputc_filtered ('\'', stream);
88 LA_EMIT_CHAR (c, stream, '\'');
89 fputc_filtered ('\'', stream);
90 }
91
92 /* Print the character string STRING, printing at most LENGTH characters.
93 LENGTH is -1 if the string is nul terminated. Each character is WIDTH bytes
94 long. Printing stops early if the number hits print_max; repeat counts are
95 printed as appropriate. Print ellipses at the end if we had to stop before
96 printing LENGTH characters, or if FORCE_ELLIPSES. */
97
98 void
99 c_printstr (stream, string, length, width, force_ellipses)
100 GDB_FILE *stream;
101 char *string;
102 unsigned int length;
103 int width;
104 int force_ellipses;
105 {
106 register unsigned int i;
107 unsigned int things_printed = 0;
108 int in_quotes = 0;
109 int need_comma = 0;
110 extern int inspect_it;
111 extern int repeat_count_threshold;
112 extern int print_max;
113
114 /* If the string was not truncated due to `set print elements', and
115 the last byte of it is a null, we don't print that, in traditional C
116 style. */
117 if (!force_ellipses
118 && length > 0
119 && extract_unsigned_integer (string + (length - 1) * width, width) == '\0')
120 length--;
121
122 if (length == 0)
123 {
124 fputs_filtered ("\"\"", stream);
125 return;
126 }
127
128 for (i = 0; i < length && things_printed < print_max; ++i)
129 {
130 /* Position of the character we are examining
131 to see whether it is repeated. */
132 unsigned int rep1;
133 /* Number of repetitions we have detected so far. */
134 unsigned int reps;
135 unsigned long current_char;
136
137 QUIT;
138
139 if (need_comma)
140 {
141 fputs_filtered (", ", stream);
142 need_comma = 0;
143 }
144
145 current_char = extract_unsigned_integer (string + i * width, width);
146
147 rep1 = i + 1;
148 reps = 1;
149 while (rep1 < length
150 && extract_unsigned_integer (string + rep1 * width, width)
151 == current_char)
152 {
153 ++rep1;
154 ++reps;
155 }
156
157 if (reps > repeat_count_threshold)
158 {
159 if (in_quotes)
160 {
161 if (inspect_it)
162 fputs_filtered ("\\\", ", stream);
163 else
164 fputs_filtered ("\", ", stream);
165 in_quotes = 0;
166 }
167 LA_PRINT_CHAR (current_char, stream);
168 fprintf_filtered (stream, " <repeats %u times>", reps);
169 i = rep1 - 1;
170 things_printed += repeat_count_threshold;
171 need_comma = 1;
172 }
173 else
174 {
175 if (!in_quotes)
176 {
177 if (inspect_it)
178 fputs_filtered ("\\\"", stream);
179 else
180 fputs_filtered ("\"", stream);
181 in_quotes = 1;
182 }
183 LA_EMIT_CHAR (current_char, stream, '"');
184 ++things_printed;
185 }
186 }
187
188 /* Terminate the quotes if necessary. */
189 if (in_quotes)
190 {
191 if (inspect_it)
192 fputs_filtered ("\\\"", stream);
193 else
194 fputs_filtered ("\"", stream);
195 }
196
197 if (force_ellipses || i < length)
198 fputs_filtered ("...", stream);
199 }
200
201 /* Create a fundamental C type using default reasonable for the current
202 target machine.
203
204 Some object/debugging file formats (DWARF version 1, COFF, etc) do not
205 define fundamental types such as "int" or "double". Others (stabs or
206 DWARF version 2, etc) do define fundamental types. For the formats which
207 don't provide fundamental types, gdb can create such types using this
208 function.
209
210 FIXME: Some compilers distinguish explicitly signed integral types
211 (signed short, signed int, signed long) from "regular" integral types
212 (short, int, long) in the debugging information. There is some dis-
213 agreement as to how useful this feature is. In particular, gcc does
214 not support this. Also, only some debugging formats allow the
215 distinction to be passed on to a debugger. For now, we always just
216 use "short", "int", or "long" as the type name, for both the implicit
217 and explicitly signed types. This also makes life easier for the
218 gdb test suite since we don't have to account for the differences
219 in output depending upon what the compiler and debugging format
220 support. We will probably have to re-examine the issue when gdb
221 starts taking it's fundamental type information directly from the
222 debugging information supplied by the compiler. fnf@cygnus.com */
223
224 struct type *
225 c_create_fundamental_type (objfile, typeid)
226 struct objfile *objfile;
227 int typeid;
228 {
229 register struct type *type = NULL;
230
231 switch (typeid)
232 {
233 default:
234 /* FIXME: For now, if we are asked to produce a type not in this
235 language, create the equivalent of a C integer type with the
236 name "<?type?>". When all the dust settles from the type
237 reconstruction work, this should probably become an error. */
238 type = init_type (TYPE_CODE_INT,
239 TARGET_INT_BIT / TARGET_CHAR_BIT,
240 0, "<?type?>", objfile);
241 warning ("internal error: no C/C++ fundamental type %d", typeid);
242 break;
243 case FT_VOID:
244 type = init_type (TYPE_CODE_VOID,
245 TARGET_CHAR_BIT / TARGET_CHAR_BIT,
246 0, "void", objfile);
247 break;
248 case FT_CHAR:
249 type = init_type (TYPE_CODE_INT,
250 TARGET_CHAR_BIT / TARGET_CHAR_BIT,
251 0, "char", objfile);
252 break;
253 case FT_SIGNED_CHAR:
254 type = init_type (TYPE_CODE_INT,
255 TARGET_CHAR_BIT / TARGET_CHAR_BIT,
256 0, "signed char", objfile);
257 break;
258 case FT_UNSIGNED_CHAR:
259 type = init_type (TYPE_CODE_INT,
260 TARGET_CHAR_BIT / TARGET_CHAR_BIT,
261 TYPE_FLAG_UNSIGNED, "unsigned char", objfile);
262 break;
263 case FT_SHORT:
264 type = init_type (TYPE_CODE_INT,
265 TARGET_SHORT_BIT / TARGET_CHAR_BIT,
266 0, "short", objfile);
267 break;
268 case FT_SIGNED_SHORT:
269 type = init_type (TYPE_CODE_INT,
270 TARGET_SHORT_BIT / TARGET_CHAR_BIT,
271 0, "short", objfile); /* FIXME-fnf */
272 break;
273 case FT_UNSIGNED_SHORT:
274 type = init_type (TYPE_CODE_INT,
275 TARGET_SHORT_BIT / TARGET_CHAR_BIT,
276 TYPE_FLAG_UNSIGNED, "unsigned short", objfile);
277 break;
278 case FT_INTEGER:
279 type = init_type (TYPE_CODE_INT,
280 TARGET_INT_BIT / TARGET_CHAR_BIT,
281 0, "int", objfile);
282 break;
283 case FT_SIGNED_INTEGER:
284 type = init_type (TYPE_CODE_INT,
285 TARGET_INT_BIT / TARGET_CHAR_BIT,
286 0, "int", objfile); /* FIXME -fnf */
287 break;
288 case FT_UNSIGNED_INTEGER:
289 type = init_type (TYPE_CODE_INT,
290 TARGET_INT_BIT / TARGET_CHAR_BIT,
291 TYPE_FLAG_UNSIGNED, "unsigned int", objfile);
292 break;
293 case FT_LONG:
294 type = init_type (TYPE_CODE_INT,
295 TARGET_LONG_BIT / TARGET_CHAR_BIT,
296 0, "long", objfile);
297 break;
298 case FT_SIGNED_LONG:
299 type = init_type (TYPE_CODE_INT,
300 TARGET_LONG_BIT / TARGET_CHAR_BIT,
301 0, "long", objfile); /* FIXME -fnf */
302 break;
303 case FT_UNSIGNED_LONG:
304 type = init_type (TYPE_CODE_INT,
305 TARGET_LONG_BIT / TARGET_CHAR_BIT,
306 TYPE_FLAG_UNSIGNED, "unsigned long", objfile);
307 break;
308 case FT_LONG_LONG:
309 type = init_type (TYPE_CODE_INT,
310 TARGET_LONG_LONG_BIT / TARGET_CHAR_BIT,
311 0, "long long", objfile);
312 break;
313 case FT_SIGNED_LONG_LONG:
314 type = init_type (TYPE_CODE_INT,
315 TARGET_LONG_LONG_BIT / TARGET_CHAR_BIT,
316 0, "signed long long", objfile);
317 break;
318 case FT_UNSIGNED_LONG_LONG:
319 type = init_type (TYPE_CODE_INT,
320 TARGET_LONG_LONG_BIT / TARGET_CHAR_BIT,
321 TYPE_FLAG_UNSIGNED, "unsigned long long", objfile);
322 break;
323 case FT_FLOAT:
324 type = init_type (TYPE_CODE_FLT,
325 TARGET_FLOAT_BIT / TARGET_CHAR_BIT,
326 0, "float", objfile);
327 break;
328 case FT_DBL_PREC_FLOAT:
329 type = init_type (TYPE_CODE_FLT,
330 TARGET_DOUBLE_BIT / TARGET_CHAR_BIT,
331 0, "double", objfile);
332 break;
333 case FT_EXT_PREC_FLOAT:
334 type = init_type (TYPE_CODE_FLT,
335 TARGET_LONG_DOUBLE_BIT / TARGET_CHAR_BIT,
336 0, "long double", objfile);
337 break;
338 }
339 return (type);
340 }
341
342 \f
343 /* Table mapping opcodes into strings for printing operators
344 and precedences of the operators. */
345
346 const struct op_print c_op_print_tab[] =
347 {
348 {",", BINOP_COMMA, PREC_COMMA, 0},
349 {"=", BINOP_ASSIGN, PREC_ASSIGN, 1},
350 {"||", BINOP_LOGICAL_OR, PREC_LOGICAL_OR, 0},
351 {"&&", BINOP_LOGICAL_AND, PREC_LOGICAL_AND, 0},
352 {"|", BINOP_BITWISE_IOR, PREC_BITWISE_IOR, 0},
353 {"^", BINOP_BITWISE_XOR, PREC_BITWISE_XOR, 0},
354 {"&", BINOP_BITWISE_AND, PREC_BITWISE_AND, 0},
355 {"==", BINOP_EQUAL, PREC_EQUAL, 0},
356 {"!=", BINOP_NOTEQUAL, PREC_EQUAL, 0},
357 {"<=", BINOP_LEQ, PREC_ORDER, 0},
358 {">=", BINOP_GEQ, PREC_ORDER, 0},
359 {">", BINOP_GTR, PREC_ORDER, 0},
360 {"<", BINOP_LESS, PREC_ORDER, 0},
361 {">>", BINOP_RSH, PREC_SHIFT, 0},
362 {"<<", BINOP_LSH, PREC_SHIFT, 0},
363 {"+", BINOP_ADD, PREC_ADD, 0},
364 {"-", BINOP_SUB, PREC_ADD, 0},
365 {"*", BINOP_MUL, PREC_MUL, 0},
366 {"/", BINOP_DIV, PREC_MUL, 0},
367 {"%", BINOP_REM, PREC_MUL, 0},
368 {"@", BINOP_REPEAT, PREC_REPEAT, 0},
369 {"-", UNOP_NEG, PREC_PREFIX, 0},
370 {"!", UNOP_LOGICAL_NOT, PREC_PREFIX, 0},
371 {"~", UNOP_COMPLEMENT, PREC_PREFIX, 0},
372 {"*", UNOP_IND, PREC_PREFIX, 0},
373 {"&", UNOP_ADDR, PREC_PREFIX, 0},
374 {"sizeof ", UNOP_SIZEOF, PREC_PREFIX, 0},
375 {"++", UNOP_PREINCREMENT, PREC_PREFIX, 0},
376 {"--", UNOP_PREDECREMENT, PREC_PREFIX, 0},
377 /* C++ */
378 {"::", BINOP_SCOPE, PREC_PREFIX, 0},
379 {NULL, 0, 0, 0}
380 };
381 \f
382 struct type ** CONST_PTR (c_builtin_types[]) =
383 {
384 &builtin_type_int,
385 &builtin_type_long,
386 &builtin_type_short,
387 &builtin_type_char,
388 &builtin_type_float,
389 &builtin_type_double,
390 &builtin_type_void,
391 &builtin_type_long_long,
392 &builtin_type_signed_char,
393 &builtin_type_unsigned_char,
394 &builtin_type_unsigned_short,
395 &builtin_type_unsigned_int,
396 &builtin_type_unsigned_long,
397 &builtin_type_unsigned_long_long,
398 &builtin_type_long_double,
399 &builtin_type_complex,
400 &builtin_type_double_complex,
401 0
402 };
403
404 const struct language_defn c_language_defn = {
405 "c", /* Language name */
406 language_c,
407 c_builtin_types,
408 range_check_off,
409 type_check_off,
410 c_parse,
411 c_error,
412 evaluate_subexp_standard,
413 c_printchar, /* Print a character constant */
414 c_printstr, /* Function to print string constant */
415 c_emit_char, /* Print a single char */
416 c_create_fundamental_type, /* Create fundamental type in this language */
417 c_print_type, /* Print a type using appropriate syntax */
418 c_val_print, /* Print a value using appropriate syntax */
419 c_value_print, /* Print a top-level value */
420 {"", "", "", ""}, /* Binary format info */
421 {"0%lo", "0", "o", ""}, /* Octal format info */
422 {"%ld", "", "d", ""}, /* Decimal format info */
423 {"0x%lx", "0x", "x", ""}, /* Hex format info */
424 c_op_print_tab, /* expression operators for printing */
425 1, /* c-style arrays */
426 0, /* String lower bound */
427 &builtin_type_char, /* Type of string elements */
428 LANG_MAGIC
429 };
430
431 const struct language_defn cplus_language_defn = {
432 "c++", /* Language name */
433 language_cplus,
434 c_builtin_types,
435 range_check_off,
436 type_check_off,
437 c_parse,
438 c_error,
439 evaluate_subexp_standard,
440 c_printchar, /* Print a character constant */
441 c_printstr, /* Function to print string constant */
442 c_emit_char, /* Print a single char */
443 c_create_fundamental_type, /* Create fundamental type in this language */
444 c_print_type, /* Print a type using appropriate syntax */
445 c_val_print, /* Print a value using appropriate syntax */
446 c_value_print, /* Print a top-level value */
447 {"", "", "", ""}, /* Binary format info */
448 {"0%lo", "0", "o", ""}, /* Octal format info */
449 {"%ld", "", "d", ""}, /* Decimal format info */
450 {"0x%lx", "0x", "x", ""}, /* Hex format info */
451 c_op_print_tab, /* expression operators for printing */
452 1, /* c-style arrays */
453 0, /* String lower bound */
454 &builtin_type_char, /* Type of string elements */
455 LANG_MAGIC
456 };
457
458 const struct language_defn asm_language_defn = {
459 "asm", /* Language name */
460 language_asm,
461 c_builtin_types,
462 range_check_off,
463 type_check_off,
464 c_parse,
465 c_error,
466 evaluate_subexp_standard,
467 c_printchar, /* Print a character constant */
468 c_printstr, /* Function to print string constant */
469 c_emit_char, /* Print a single char */
470 c_create_fundamental_type, /* Create fundamental type in this language */
471 c_print_type, /* Print a type using appropriate syntax */
472 c_val_print, /* Print a value using appropriate syntax */
473 c_value_print, /* Print a top-level value */
474 {"", "", "", ""}, /* Binary format info */
475 {"0%lo", "0", "o", ""}, /* Octal format info */
476 {"%ld", "", "d", ""}, /* Decimal format info */
477 {"0x%lx", "0x", "x", ""}, /* Hex format info */
478 c_op_print_tab, /* expression operators for printing */
479 1, /* c-style arrays */
480 0, /* String lower bound */
481 &builtin_type_char, /* Type of string elements */
482 LANG_MAGIC
483 };
484
485 void
486 _initialize_c_language ()
487 {
488 add_language (&c_language_defn);
489 add_language (&cplus_language_defn);
490 add_language (&asm_language_defn);
491 }