Remove la_get_string member
[deliverable/binutils-gdb.git] / gdb / c-lang.c
CommitLineData
c906108c 1/* C language support routines for GDB, the GNU debugger.
ce27fb25 2
42a4f53d 3 Copyright (C) 1992-2019 Free Software Foundation, Inc.
c906108c 4
c5aa993b 5 This file is part of GDB.
c906108c 6
c5aa993b
JM
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
c5aa993b 10 (at your option) any later version.
c906108c 11
c5aa993b
JM
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
c906108c 16
c5aa993b 17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
19
20#include "defs.h"
4de283e4
TT
21#include "symtab.h"
22#include "gdbtypes.h"
23#include "expression.h"
24#include "parser-defs.h"
25#include "language.h"
26#include "varobj.h"
c906108c 27#include "c-lang.h"
b1b60145 28#include "c-support.h"
4de283e4
TT
29#include "valprint.h"
30#include "macroscope.h"
234b45d4 31#include "charset.h"
4de283e4 32#include "demangle.h"
b18be20d 33#include "cp-abi.h"
1fcb5155 34#include "cp-support.h"
6c7a06a3 35#include "gdb_obstack.h"
4de283e4 36#include <ctype.h>
578d3588 37#include "gdbcore.h"
0d12e84c 38#include "gdbarch.h"
c906108c 39
6c7a06a3
TT
40/* Given a C string type, STR_TYPE, return the corresponding target
41 character set name. */
42
43static const char *
0c801b96 44charset_for_string_type (c_string_type str_type, struct gdbarch *gdbarch)
6c7a06a3
TT
45{
46 switch (str_type & ~C_CHAR)
47 {
48 case C_STRING:
f870a310 49 return target_charset (gdbarch);
6c7a06a3 50 case C_WIDE_STRING:
f870a310 51 return target_wide_charset (gdbarch);
6c7a06a3 52 case C_STRING_16:
b8899f2b 53 /* FIXME: UTF-16 is not always correct. */
f870a310 54 if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
b8899f2b 55 return "UTF-16BE";
6c7a06a3 56 else
b8899f2b 57 return "UTF-16LE";
6c7a06a3 58 case C_STRING_32:
b8899f2b 59 /* FIXME: UTF-32 is not always correct. */
f870a310 60 if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
b8899f2b 61 return "UTF-32BE";
6c7a06a3 62 else
b8899f2b 63 return "UTF-32LE";
6c7a06a3 64 }
9b20d036 65 internal_error (__FILE__, __LINE__, _("unhandled c_string_type"));
6c7a06a3
TT
66}
67
68/* Classify ELTTYPE according to what kind of character it is. Return
69 the enum constant representing the character type. Also set
70 *ENCODING to the name of the character set to use when converting
aff410f1
MS
71 characters of this type in target BYTE_ORDER to the host character
72 set. */
6c7a06a3 73
0c801b96 74static c_string_type
f870a310 75classify_type (struct type *elttype, struct gdbarch *gdbarch,
e17a4113 76 const char **encoding)
6c7a06a3 77{
0c801b96 78 c_string_type result;
6c7a06a3 79
85e306ed
TT
80 /* We loop because ELTTYPE may be a typedef, and we want to
81 successively peel each typedef until we reach a type we
82 understand. We don't use CHECK_TYPEDEF because that will strip
83 all typedefs at once -- but in C, wchar_t is itself a typedef, so
84 that would do the wrong thing. */
85 while (elttype)
6c7a06a3 86 {
0d5cff50 87 const char *name = TYPE_NAME (elttype);
6c7a06a3
TT
88
89 if (TYPE_CODE (elttype) == TYPE_CODE_CHAR || !name)
90 {
91 result = C_CHAR;
92 goto done;
93 }
94
95 if (!strcmp (name, "wchar_t"))
96 {
97 result = C_WIDE_CHAR;
98 goto done;
99 }
100
101 if (!strcmp (name, "char16_t"))
102 {
103 result = C_CHAR_16;
104 goto done;
105 }
106
107 if (!strcmp (name, "char32_t"))
108 {
109 result = C_CHAR_32;
110 goto done;
111 }
112
85e306ed
TT
113 if (TYPE_CODE (elttype) != TYPE_CODE_TYPEDEF)
114 break;
115
116 /* Call for side effects. */
117 check_typedef (elttype);
118
119 if (TYPE_TARGET_TYPE (elttype))
120 elttype = TYPE_TARGET_TYPE (elttype);
121 else
122 {
123 /* Perhaps check_typedef did not update the target type. In
124 this case, force the lookup again and hope it works out.
125 It never will for C, but it might for C++. */
f168693b 126 elttype = check_typedef (elttype);
85e306ed 127 }
6c7a06a3 128 }
6c7a06a3
TT
129
130 /* Punt. */
131 result = C_CHAR;
132
133 done:
e17a4113 134 if (encoding)
f870a310 135 *encoding = charset_for_string_type (result, gdbarch);
e17a4113 136
6c7a06a3
TT
137 return result;
138}
139
aff410f1
MS
140/* Print the character C on STREAM as part of the contents of a
141 literal string whose delimiter is QUOTER. Note that that format
142 for printing characters and strings is language specific. */
c906108c 143
6aecb9c2
JB
144void
145c_emit_char (int c, struct type *type,
146 struct ui_file *stream, int quoter)
c906108c 147{
6c7a06a3 148 const char *encoding;
234b45d4 149
f870a310 150 classify_type (type, get_type_arch (type), &encoding);
3b2b8fea 151 generic_emit_char (c, type, stream, quoter, encoding);
c906108c
SS
152}
153
154void
6c7a06a3 155c_printchar (int c, struct type *type, struct ui_file *stream)
c906108c 156{
0c801b96 157 c_string_type str_type;
6c7a06a3 158
f870a310 159 str_type = classify_type (type, get_type_arch (type), NULL);
6c7a06a3
TT
160 switch (str_type)
161 {
162 case C_CHAR:
163 break;
164 case C_WIDE_CHAR:
165 fputc_filtered ('L', stream);
166 break;
167 case C_CHAR_16:
168 fputc_filtered ('u', stream);
169 break;
170 case C_CHAR_32:
171 fputc_filtered ('U', stream);
172 break;
173 }
174
c906108c 175 fputc_filtered ('\'', stream);
6c7a06a3 176 LA_EMIT_CHAR (c, type, stream, '\'');
c906108c
SS
177 fputc_filtered ('\'', stream);
178}
179
aff410f1
MS
180/* Print the character string STRING, printing at most LENGTH
181 characters. LENGTH is -1 if the string is nul terminated. Each
182 character is WIDTH bytes long. Printing stops early if the number
183 hits print_max; repeat counts are printed as appropriate. Print
184 ellipses at the end if we had to stop before printing LENGTH
185 characters, or if FORCE_ELLIPSES. */
c906108c
SS
186
187void
aff410f1
MS
188c_printstr (struct ui_file *stream, struct type *type,
189 const gdb_byte *string, unsigned int length,
190 const char *user_encoding, int force_ellipses,
79a45b7d 191 const struct value_print_options *options)
c906108c 192{
0c801b96 193 c_string_type str_type;
3b2b8fea
TT
194 const char *type_encoding;
195 const char *encoding;
196
f870a310
TT
197 str_type = (classify_type (type, get_type_arch (type), &type_encoding)
198 & ~C_CHAR);
6c7a06a3
TT
199 switch (str_type)
200 {
201 case C_STRING:
202 break;
203 case C_WIDE_STRING:
204 fputs_filtered ("L", stream);
205 break;
206 case C_STRING_16:
207 fputs_filtered ("u", stream);
208 break;
209 case C_STRING_32:
210 fputs_filtered ("U", stream);
211 break;
212 }
213
3b2b8fea 214 encoding = (user_encoding && *user_encoding) ? user_encoding : type_encoding;
6c7a06a3 215
3b2b8fea
TT
216 generic_printstr (stream, type, string, length, encoding, force_ellipses,
217 '"', 1, options);
c906108c 218}
ae6a3a4c
TJB
219
220/* Obtain a C string from the inferior storing it in a newly allocated
aff410f1
MS
221 buffer in BUFFER, which should be freed by the caller. If the in-
222 and out-parameter *LENGTH is specified at -1, the string is read
fbb8f299 223 until a null character of the appropriate width is found, otherwise
aff410f1
MS
224 the string is read to the length of characters specified. The size
225 of a character is determined by the length of the target type of
0987cf35
DE
226 the pointer or array.
227
228 If VALUE is an array with a known length, and *LENGTH is -1,
229 the function will not read past the end of the array. However, any
230 declared size of the array is ignored if *LENGTH > 0.
231
232 On completion, *LENGTH will be set to the size of the string read in
fbb8f299
PM
233 characters. (If a length of -1 is specified, the length returned
234 will not include the null character). CHARSET is always set to the
235 target charset. */
ae6a3a4c
TJB
236
237void
b4be9fad 238c_get_string (struct value *value, gdb::unique_xmalloc_ptr<gdb_byte> *buffer,
aff410f1
MS
239 int *length, struct type **char_type,
240 const char **charset)
ae6a3a4c
TJB
241{
242 int err, width;
243 unsigned int fetchlimit;
244 struct type *type = check_typedef (value_type (value));
245 struct type *element_type = TYPE_TARGET_TYPE (type);
fbb8f299 246 int req_length = *length;
aff410f1
MS
247 enum bfd_endian byte_order
248 = gdbarch_byte_order (get_type_arch (type));
ae6a3a4c
TJB
249
250 if (element_type == NULL)
251 goto error;
252
253 if (TYPE_CODE (type) == TYPE_CODE_ARRAY)
254 {
aff410f1
MS
255 /* If we know the size of the array, we can use it as a limit on
256 the number of characters to be fetched. */
ae6a3a4c
TJB
257 if (TYPE_NFIELDS (type) == 1
258 && TYPE_CODE (TYPE_FIELD_TYPE (type, 0)) == TYPE_CODE_RANGE)
259 {
260 LONGEST low_bound, high_bound;
261
262 get_discrete_bounds (TYPE_FIELD_TYPE (type, 0),
263 &low_bound, &high_bound);
264 fetchlimit = high_bound - low_bound + 1;
265 }
266 else
267 fetchlimit = UINT_MAX;
268 }
269 else if (TYPE_CODE (type) == TYPE_CODE_PTR)
270 fetchlimit = UINT_MAX;
271 else
272 /* We work only with arrays and pointers. */
273 goto error;
274
96c07c5b 275 if (! c_textual_element_type (element_type, 0))
ae6a3a4c 276 goto error;
df54f8eb 277 classify_type (element_type, get_type_arch (element_type), charset);
ae6a3a4c
TJB
278 width = TYPE_LENGTH (element_type);
279
aff410f1
MS
280 /* If the string lives in GDB's memory instead of the inferior's,
281 then we just need to copy it to BUFFER. Also, since such strings
282 are arrays with known size, FETCHLIMIT will hold the size of the
80e55b13
TT
283 array.
284
285 An array is assumed to live in GDB's memory, so we take this path
286 here.
287
288 However, it's possible for the caller to request more array
289 elements than apparently exist -- this can happen when using the
290 C struct hack. So, only do this if either no length was
291 specified, or the length is within the existing bounds. This
292 avoids running off the end of the value's contents. */
ae6a3a4c 293 if ((VALUE_LVAL (value) == not_lval
80e55b13
TT
294 || VALUE_LVAL (value) == lval_internalvar
295 || TYPE_CODE (type) == TYPE_CODE_ARRAY)
296 && fetchlimit != UINT_MAX
297 && (*length < 0 || *length <= fetchlimit))
ae6a3a4c
TJB
298 {
299 int i;
300 const gdb_byte *contents = value_contents (value);
301
fbb8f299
PM
302 /* If a length is specified, use that. */
303 if (*length >= 0)
304 i = *length;
305 else
306 /* Otherwise, look for a null character. */
307 for (i = 0; i < fetchlimit; i++)
aff410f1
MS
308 if (extract_unsigned_integer (contents + i * width,
309 width, byte_order) == 0)
fbb8f299
PM
310 break;
311
312 /* I is now either a user-defined length, the number of non-null
313 characters, or FETCHLIMIT. */
ae6a3a4c 314 *length = i * width;
b4be9fad
TT
315 buffer->reset ((gdb_byte *) xmalloc (*length));
316 memcpy (buffer->get (), contents, *length);
ae6a3a4c
TJB
317 err = 0;
318 }
319 else
320 {
80e55b13
TT
321 /* value_as_address does not return an address for an array when
322 c_style_arrays is false, so we handle that specially
323 here. */
324 CORE_ADDR addr;
325 if (TYPE_CODE (type) == TYPE_CODE_ARRAY)
326 {
327 if (VALUE_LVAL (value) != lval_memory)
328 error (_("Attempt to take address of value "
329 "not located in memory."));
330 addr = value_address (value);
331 }
332 else
333 addr = value_as_address (value);
621c8364 334
0987cf35
DE
335 /* Prior to the fix for PR 16196 read_string would ignore fetchlimit
336 if length > 0. The old "broken" behaviour is the behaviour we want:
337 The caller may want to fetch 100 bytes from a variable length array
338 implemented using the common idiom of having an array of length 1 at
339 the end of a struct. In this case we want to ignore the declared
340 size of the array. However, it's counterintuitive to implement that
341 behaviour in read_string: what does fetchlimit otherwise mean if
342 length > 0. Therefore we implement the behaviour we want here:
343 If *length > 0, don't specify a fetchlimit. This preserves the
344 previous behaviour. We could move this check above where we know
345 whether the array is declared with a fixed size, but we only want
346 to apply this behaviour when calling read_string. PR 16286. */
347 if (*length > 0)
348 fetchlimit = UINT_MAX;
349
621c8364
TT
350 err = read_string (addr, *length, width, fetchlimit,
351 byte_order, buffer, length);
d09f2c3f 352 if (err != 0)
b4be9fad 353 memory_error (TARGET_XFER_E_IO, addr);
ae6a3a4c
TJB
354 }
355
fbb8f299
PM
356 /* If the LENGTH is specified at -1, we want to return the string
357 length up to the terminating null character. If an actual length
358 was specified, we want to return the length of exactly what was
359 read. */
360 if (req_length == -1)
361 /* If the last character is null, subtract it from LENGTH. */
362 if (*length > 0
b4be9fad 363 && extract_unsigned_integer (buffer->get () + *length - width,
aff410f1 364 width, byte_order) == 0)
fbb8f299
PM
365 *length -= width;
366
367 /* The read_string function will return the number of bytes read.
368 If length returned from read_string was > 0, return the number of
369 characters read by dividing the number of bytes by width. */
370 if (*length != 0)
371 *length = *length / width;
ae6a3a4c 372
96c07c5b 373 *char_type = element_type;
ae6a3a4c
TJB
374
375 return;
376
377 error:
378 {
2f408ecb
PA
379 std::string type_str = type_to_string (type);
380 if (!type_str.empty ())
ae6a3a4c 381 {
ae6a3a4c 382 error (_("Trying to read string with inappropriate type `%s'."),
2f408ecb 383 type_str.c_str ());
ae6a3a4c
TJB
384 }
385 else
386 error (_("Trying to read string with inappropriate type."));
387 }
388}
389
c906108c 390\f
6c7a06a3
TT
391/* Evaluating C and C++ expressions. */
392
393/* Convert a UCN. The digits of the UCN start at P and extend no
394 farther than LIMIT. DEST_CHARSET is the name of the character set
395 into which the UCN should be converted. The results are written to
396 OUTPUT. LENGTH is the maximum length of the UCN, either 4 or 8.
397 Returns a pointer to just after the final digit of the UCN. */
398
399static char *
400convert_ucn (char *p, char *limit, const char *dest_charset,
401 struct obstack *output, int length)
402{
403 unsigned long result = 0;
404 gdb_byte data[4];
405 int i;
406
b1b60145 407 for (i = 0; i < length && p < limit && ISXDIGIT (*p); ++i, ++p)
6c7a06a3
TT
408 result = (result << 4) + host_hex_value (*p);
409
410 for (i = 3; i >= 0; --i)
411 {
412 data[i] = result & 0xff;
413 result >>= 8;
414 }
415
aff410f1
MS
416 convert_between_encodings ("UTF-32BE", dest_charset, data,
417 4, 4, output, translit_none);
6c7a06a3
TT
418
419 return p;
420}
421
422/* Emit a character, VALUE, which was specified numerically, to
423 OUTPUT. TYPE is the target character type. */
424
425static void
426emit_numeric_character (struct type *type, unsigned long value,
427 struct obstack *output)
428{
429 gdb_byte *buffer;
430
224c3ddb 431 buffer = (gdb_byte *) alloca (TYPE_LENGTH (type));
6c7a06a3
TT
432 pack_long (buffer, type, value);
433 obstack_grow (output, buffer, TYPE_LENGTH (type));
434}
435
436/* Convert an octal escape sequence. TYPE is the target character
437 type. The digits of the escape sequence begin at P and extend no
438 farther than LIMIT. The result is written to OUTPUT. Returns a
439 pointer to just after the final digit of the escape sequence. */
440
441static char *
aff410f1
MS
442convert_octal (struct type *type, char *p,
443 char *limit, struct obstack *output)
6c7a06a3 444{
30b66ecc 445 int i;
6c7a06a3
TT
446 unsigned long value = 0;
447
30b66ecc 448 for (i = 0;
b1b60145 449 i < 3 && p < limit && ISDIGIT (*p) && *p != '8' && *p != '9';
30b66ecc 450 ++i)
6c7a06a3
TT
451 {
452 value = 8 * value + host_hex_value (*p);
453 ++p;
454 }
455
456 emit_numeric_character (type, value, output);
457
458 return p;
459}
460
461/* Convert a hex escape sequence. TYPE is the target character type.
462 The digits of the escape sequence begin at P and extend no farther
463 than LIMIT. The result is written to OUTPUT. Returns a pointer to
464 just after the final digit of the escape sequence. */
465
466static char *
aff410f1
MS
467convert_hex (struct type *type, char *p,
468 char *limit, struct obstack *output)
6c7a06a3
TT
469{
470 unsigned long value = 0;
471
b1b60145 472 while (p < limit && ISXDIGIT (*p))
6c7a06a3
TT
473 {
474 value = 16 * value + host_hex_value (*p);
475 ++p;
476 }
477
478 emit_numeric_character (type, value, output);
479
480 return p;
481}
482
483#define ADVANCE \
484 do { \
485 ++p; \
486 if (p == limit) \
487 error (_("Malformed escape sequence")); \
488 } while (0)
489
490/* Convert an escape sequence to a target format. TYPE is the target
491 character type to use, and DEST_CHARSET is the name of the target
492 character set. The backslash of the escape sequence is at *P, and
493 the escape sequence will not extend past LIMIT. The results are
494 written to OUTPUT. Returns a pointer to just past the final
495 character of the escape sequence. */
496
497static char *
498convert_escape (struct type *type, const char *dest_charset,
499 char *p, char *limit, struct obstack *output)
500{
501 /* Skip the backslash. */
502 ADVANCE;
503
504 switch (*p)
505 {
506 case '\\':
507 obstack_1grow (output, '\\');
508 ++p;
509 break;
510
511 case 'x':
512 ADVANCE;
b1b60145 513 if (!ISXDIGIT (*p))
6c7a06a3
TT
514 error (_("\\x used with no following hex digits."));
515 p = convert_hex (type, p, limit, output);
516 break;
517
518 case '0':
519 case '1':
520 case '2':
521 case '3':
522 case '4':
523 case '5':
524 case '6':
525 case '7':
526 p = convert_octal (type, p, limit, output);
527 break;
528
529 case 'u':
530 case 'U':
531 {
532 int length = *p == 'u' ? 4 : 8;
c5504eaf 533
6c7a06a3 534 ADVANCE;
b1b60145 535 if (!ISXDIGIT (*p))
6c7a06a3
TT
536 error (_("\\u used with no following hex digits"));
537 p = convert_ucn (p, limit, dest_charset, output, length);
538 }
539 }
540
541 return p;
542}
543
544/* Given a single string from a (C-specific) OP_STRING list, convert
545 it to a target string, handling escape sequences specially. The
546 output is written to OUTPUT. DATA is the input string, which has
547 length LEN. DEST_CHARSET is the name of the target character set,
548 and TYPE is the type of target character to use. */
549
550static void
551parse_one_string (struct obstack *output, char *data, int len,
552 const char *dest_charset, struct type *type)
553{
554 char *limit;
555
556 limit = data + len;
557
558 while (data < limit)
559 {
560 char *p = data;
c5504eaf 561
6c7a06a3
TT
562 /* Look for next escape, or the end of the input. */
563 while (p < limit && *p != '\\')
564 ++p;
565 /* If we saw a run of characters, convert them all. */
566 if (p > data)
567 convert_between_encodings (host_charset (), dest_charset,
ac91cd70 568 (gdb_byte *) data, p - data, 1,
aff410f1 569 output, translit_none);
6c7a06a3
TT
570 /* If we saw an escape, convert it. */
571 if (p < limit)
572 p = convert_escape (type, dest_charset, p, limit, output);
573 data = p;
574 }
575}
576
577/* Expression evaluator for the C language family. Most operations
578 are delegated to evaluate_subexp_standard; see that function for a
579 description of the arguments. */
580
f4b8a18d 581struct value *
6c7a06a3
TT
582evaluate_subexp_c (struct type *expect_type, struct expression *exp,
583 int *pos, enum noside noside)
584{
585 enum exp_opcode op = exp->elts[*pos].opcode;
586
587 switch (op)
588 {
589 case OP_STRING:
590 {
591 int oplen, limit;
592 struct type *type;
6c7a06a3 593 struct value *result;
0c801b96 594 c_string_type dest_type;
6c7a06a3 595 const char *dest_charset;
c50491a7 596 int satisfy_expected = 0;
6c7a06a3 597
8268c778 598 auto_obstack output;
6c7a06a3
TT
599
600 ++*pos;
601 oplen = longest_to_int (exp->elts[*pos].longconst);
602
603 ++*pos;
604 limit = *pos + BYTES_TO_EXP_ELEM (oplen + 1);
0c801b96
SM
605 dest_type = ((enum c_string_type_values)
606 longest_to_int (exp->elts[*pos].longconst));
6c7a06a3
TT
607 switch (dest_type & ~C_CHAR)
608 {
609 case C_STRING:
d80b854b
UW
610 type = language_string_char_type (exp->language_defn,
611 exp->gdbarch);
6c7a06a3
TT
612 break;
613 case C_WIDE_STRING:
e6c014f2
UW
614 type = lookup_typename (exp->language_defn, exp->gdbarch,
615 "wchar_t", NULL, 0);
6c7a06a3
TT
616 break;
617 case C_STRING_16:
e6c014f2
UW
618 type = lookup_typename (exp->language_defn, exp->gdbarch,
619 "char16_t", NULL, 0);
6c7a06a3
TT
620 break;
621 case C_STRING_32:
e6c014f2
UW
622 type = lookup_typename (exp->language_defn, exp->gdbarch,
623 "char32_t", NULL, 0);
6c7a06a3
TT
624 break;
625 default:
9b20d036 626 internal_error (__FILE__, __LINE__, _("unhandled c_string_type"));
6c7a06a3 627 }
546e879e
TT
628
629 /* Ensure TYPE_LENGTH is valid for TYPE. */
630 check_typedef (type);
631
c50491a7
TT
632 /* If the caller expects an array of some integral type,
633 satisfy them. If something odder is expected, rely on the
634 caller to cast. */
635 if (expect_type && TYPE_CODE (expect_type) == TYPE_CODE_ARRAY)
636 {
637 struct type *element_type
638 = check_typedef (TYPE_TARGET_TYPE (expect_type));
639
640 if (TYPE_CODE (element_type) == TYPE_CODE_INT
641 || TYPE_CODE (element_type) == TYPE_CODE_CHAR)
642 {
643 type = element_type;
644 satisfy_expected = 1;
645 }
646 }
647
f870a310 648 dest_charset = charset_for_string_type (dest_type, exp->gdbarch);
6c7a06a3
TT
649
650 ++*pos;
651 while (*pos < limit)
652 {
653 int len;
654
655 len = longest_to_int (exp->elts[*pos].longconst);
656
657 ++*pos;
658 if (noside != EVAL_SKIP)
659 parse_one_string (&output, &exp->elts[*pos].string, len,
660 dest_charset, type);
661 *pos += BYTES_TO_EXP_ELEM (len);
662 }
663
664 /* Skip the trailing length and opcode. */
665 *pos += 2;
666
667 if (noside == EVAL_SKIP)
334cc82d
TT
668 {
669 /* Return a dummy value of the appropriate type. */
c50491a7
TT
670 if (expect_type != NULL)
671 result = allocate_value (expect_type);
672 else if ((dest_type & C_CHAR) != 0)
334cc82d
TT
673 result = allocate_value (type);
674 else
3b7538c0 675 result = value_cstring ("", 0, type);
334cc82d
TT
676 return result;
677 }
6c7a06a3
TT
678
679 if ((dest_type & C_CHAR) != 0)
680 {
681 LONGEST value;
682
683 if (obstack_object_size (&output) != TYPE_LENGTH (type))
3e43a32a
MS
684 error (_("Could not convert character "
685 "constant to target character set"));
51a5cd90 686 value = unpack_long (type, (gdb_byte *) obstack_base (&output));
6c7a06a3
TT
687 result = value_from_longest (type, value);
688 }
689 else
690 {
691 int i;
c5504eaf 692
6c7a06a3
TT
693 /* Write the terminating character. */
694 for (i = 0; i < TYPE_LENGTH (type); ++i)
695 obstack_1grow (&output, 0);
c50491a7
TT
696
697 if (satisfy_expected)
698 {
699 LONGEST low_bound, high_bound;
700 int element_size = TYPE_LENGTH (type);
701
702 if (get_discrete_bounds (TYPE_INDEX_TYPE (expect_type),
703 &low_bound, &high_bound) < 0)
704 {
705 low_bound = 0;
706 high_bound = (TYPE_LENGTH (expect_type) / element_size) - 1;
707 }
708 if (obstack_object_size (&output) / element_size
709 > (high_bound - low_bound + 1))
710 error (_("Too many array elements"));
711
712 result = allocate_value (expect_type);
713 memcpy (value_contents_raw (result), obstack_base (&output),
714 obstack_object_size (&output));
715 }
716 else
79f33898 717 result = value_cstring ((const char *) obstack_base (&output),
c50491a7
TT
718 obstack_object_size (&output),
719 type);
6c7a06a3 720 }
6c7a06a3
TT
721 return result;
722 }
723 break;
724
725 default:
726 break;
727 }
728 return evaluate_subexp_standard (expect_type, exp, pos, noside);
729}
43cc5389
TT
730\f
731/* la_watch_location_expression for C. */
c5aa993b 732
43cc5389
TT
733gdb::unique_xmalloc_ptr<char>
734c_watch_location_expression (struct type *type, CORE_ADDR addr)
735{
736 type = check_typedef (TYPE_TARGET_TYPE (check_typedef (type)));
737 std::string name = type_to_string (type);
738 return gdb::unique_xmalloc_ptr<char>
739 (xstrprintf ("* (%s *) %s", name.c_str (), core_addr_to_string (addr)));
740}
84f0252a 741
4be290b2
AB
742/* See c-lang.h. */
743
744bool
745c_is_string_type_p (struct type *type)
746{
747 type = check_typedef (type);
748 while (TYPE_CODE (type) == TYPE_CODE_REF)
749 {
750 type = TYPE_TARGET_TYPE (type);
751 type = check_typedef (type);
752 }
753
754 switch (TYPE_CODE (type))
755 {
756 case TYPE_CODE_ARRAY:
757 {
758 /* See if target type looks like a string. */
759 struct type *array_target_type = TYPE_TARGET_TYPE (type);
760 return (TYPE_LENGTH (type) > 0
761 && TYPE_LENGTH (array_target_type) > 0
762 && c_textual_element_type (array_target_type, 0));
763 }
764 case TYPE_CODE_STRING:
765 return true;
766 case TYPE_CODE_PTR:
767 {
768 struct type *element_type = TYPE_TARGET_TYPE (type);
769 return c_textual_element_type (element_type, 0);
770 }
771 default:
772 break;
773 }
774
775 return false;
776}
777
84f0252a 778\f
c906108c
SS
779/* Table mapping opcodes into strings for printing operators
780 and precedences of the operators. */
781
782const struct op_print c_op_print_tab[] =
c5aa993b
JM
783{
784 {",", BINOP_COMMA, PREC_COMMA, 0},
785 {"=", BINOP_ASSIGN, PREC_ASSIGN, 1},
786 {"||", BINOP_LOGICAL_OR, PREC_LOGICAL_OR, 0},
787 {"&&", BINOP_LOGICAL_AND, PREC_LOGICAL_AND, 0},
788 {"|", BINOP_BITWISE_IOR, PREC_BITWISE_IOR, 0},
789 {"^", BINOP_BITWISE_XOR, PREC_BITWISE_XOR, 0},
790 {"&", BINOP_BITWISE_AND, PREC_BITWISE_AND, 0},
791 {"==", BINOP_EQUAL, PREC_EQUAL, 0},
792 {"!=", BINOP_NOTEQUAL, PREC_EQUAL, 0},
793 {"<=", BINOP_LEQ, PREC_ORDER, 0},
794 {">=", BINOP_GEQ, PREC_ORDER, 0},
795 {">", BINOP_GTR, PREC_ORDER, 0},
796 {"<", BINOP_LESS, PREC_ORDER, 0},
797 {">>", BINOP_RSH, PREC_SHIFT, 0},
798 {"<<", BINOP_LSH, PREC_SHIFT, 0},
799 {"+", BINOP_ADD, PREC_ADD, 0},
800 {"-", BINOP_SUB, PREC_ADD, 0},
801 {"*", BINOP_MUL, PREC_MUL, 0},
802 {"/", BINOP_DIV, PREC_MUL, 0},
803 {"%", BINOP_REM, PREC_MUL, 0},
804 {"@", BINOP_REPEAT, PREC_REPEAT, 0},
a016fc87 805 {"+", UNOP_PLUS, PREC_PREFIX, 0},
c5aa993b
JM
806 {"-", UNOP_NEG, PREC_PREFIX, 0},
807 {"!", UNOP_LOGICAL_NOT, PREC_PREFIX, 0},
808 {"~", UNOP_COMPLEMENT, PREC_PREFIX, 0},
809 {"*", UNOP_IND, PREC_PREFIX, 0},
810 {"&", UNOP_ADDR, PREC_PREFIX, 0},
811 {"sizeof ", UNOP_SIZEOF, PREC_PREFIX, 0},
007e1530 812 {"alignof ", UNOP_ALIGNOF, PREC_PREFIX, 0},
c5aa993b
JM
813 {"++", UNOP_PREINCREMENT, PREC_PREFIX, 0},
814 {"--", UNOP_PREDECREMENT, PREC_PREFIX, 0},
f486487f 815 {NULL, OP_NULL, PREC_PREFIX, 0}
c906108c
SS
816};
817\f
685419e2
AC
818enum c_primitive_types {
819 c_primitive_type_int,
820 c_primitive_type_long,
821 c_primitive_type_short,
822 c_primitive_type_char,
823 c_primitive_type_float,
824 c_primitive_type_double,
825 c_primitive_type_void,
826 c_primitive_type_long_long,
827 c_primitive_type_signed_char,
828 c_primitive_type_unsigned_char,
829 c_primitive_type_unsigned_short,
830 c_primitive_type_unsigned_int,
831 c_primitive_type_unsigned_long,
832 c_primitive_type_unsigned_long_long,
833 c_primitive_type_long_double,
834 c_primitive_type_complex,
835 c_primitive_type_double_complex,
213e4dc2
TJB
836 c_primitive_type_decfloat,
837 c_primitive_type_decdouble,
838 c_primitive_type_declong,
685419e2
AC
839 nr_c_primitive_types
840};
841
e9667a65 842void
685419e2
AC
843c_language_arch_info (struct gdbarch *gdbarch,
844 struct language_arch_info *lai)
845{
846 const struct builtin_type *builtin = builtin_type (gdbarch);
c5504eaf 847
e9667a65 848 lai->string_char_type = builtin->builtin_char;
685419e2
AC
849 lai->primitive_type_vector
850 = GDBARCH_OBSTACK_CALLOC (gdbarch, nr_c_primitive_types + 1,
851 struct type *);
852 lai->primitive_type_vector [c_primitive_type_int] = builtin->builtin_int;
853 lai->primitive_type_vector [c_primitive_type_long] = builtin->builtin_long;
854 lai->primitive_type_vector [c_primitive_type_short] = builtin->builtin_short;
855 lai->primitive_type_vector [c_primitive_type_char] = builtin->builtin_char;
856 lai->primitive_type_vector [c_primitive_type_float] = builtin->builtin_float;
857 lai->primitive_type_vector [c_primitive_type_double] = builtin->builtin_double;
858 lai->primitive_type_vector [c_primitive_type_void] = builtin->builtin_void;
859 lai->primitive_type_vector [c_primitive_type_long_long] = builtin->builtin_long_long;
860 lai->primitive_type_vector [c_primitive_type_signed_char] = builtin->builtin_signed_char;
861 lai->primitive_type_vector [c_primitive_type_unsigned_char] = builtin->builtin_unsigned_char;
862 lai->primitive_type_vector [c_primitive_type_unsigned_short] = builtin->builtin_unsigned_short;
863 lai->primitive_type_vector [c_primitive_type_unsigned_int] = builtin->builtin_unsigned_int;
864 lai->primitive_type_vector [c_primitive_type_unsigned_long] = builtin->builtin_unsigned_long;
865 lai->primitive_type_vector [c_primitive_type_unsigned_long_long] = builtin->builtin_unsigned_long_long;
866 lai->primitive_type_vector [c_primitive_type_long_double] = builtin->builtin_long_double;
867 lai->primitive_type_vector [c_primitive_type_complex] = builtin->builtin_complex;
868 lai->primitive_type_vector [c_primitive_type_double_complex] = builtin->builtin_double_complex;
213e4dc2
TJB
869 lai->primitive_type_vector [c_primitive_type_decfloat] = builtin->builtin_decfloat;
870 lai->primitive_type_vector [c_primitive_type_decdouble] = builtin->builtin_decdouble;
871 lai->primitive_type_vector [c_primitive_type_declong] = builtin->builtin_declong;
fbb06eb1
UW
872
873 lai->bool_type_default = builtin->builtin_int;
cad351d1 874}
685419e2 875
6aecb9c2 876const struct exp_descriptor exp_descriptor_c =
6c7a06a3
TT
877{
878 print_subexp_standard,
879 operator_length_standard,
c0201579 880 operator_check_standard,
6c7a06a3
TT
881 op_name_standard,
882 dump_subexp_body_standard,
883 evaluate_subexp_c
884};
885
56618e20
TT
886static const char *c_extensions[] =
887{
888 ".c", NULL
889};
890
47e77640 891extern const struct language_defn c_language_defn =
c5aa993b 892{
c906108c 893 "c", /* Language name */
6abde28f 894 "C",
c906108c 895 language_c,
c906108c 896 range_check_off,
63872f9d 897 case_sensitive_on,
7ca2d3a3 898 array_row_major,
9a044a89 899 macro_expansion_c,
56618e20 900 c_extensions,
6c7a06a3 901 &exp_descriptor_c,
7c8adf68 902 c_parse,
e85c3284 903 null_post_parser,
c906108c
SS
904 c_printchar, /* Print a character constant */
905 c_printstr, /* Function to print string constant */
906 c_emit_char, /* Print a single char */
c906108c 907 c_print_type, /* Print a type using appropriate syntax */
5c6ce71d 908 c_print_typedef, /* Print a typedef using appropriate syntax */
c906108c
SS
909 c_val_print, /* Print a value using appropriate syntax */
910 c_value_print, /* Print a top-level value */
a5ee536b 911 default_read_var_value, /* la_read_var_value */
f636b87d 912 NULL, /* Language specific skip_trampoline */
2b2d9e11 913 NULL, /* name_of_this */
59cc4834 914 true, /* la_store_sym_names_in_linkage_form_p */
5f9a71c3 915 basic_lookup_symbol_nonlocal, /* lookup_symbol_nonlocal */
b368761e 916 basic_lookup_transparent_type,/* lookup_transparent_type */
9a3d7dfd 917 NULL, /* Language specific symbol demangler */
8b302db8 918 NULL,
aff410f1
MS
919 NULL, /* Language specific
920 class_name_from_physname */
c906108c
SS
921 c_op_print_tab, /* expression operators for printing */
922 1, /* c-style arrays */
923 0, /* String lower bound */
6084f43a 924 default_word_break_characters,
eb3ff9a5 925 default_collect_symbol_completion_matches,
685419e2 926 c_language_arch_info,
e79af960 927 default_print_array_index,
41f1b697 928 default_pass_by_reference,
43cc5389 929 c_watch_location_expression,
b5ec771e 930 NULL, /* la_get_symbol_name_matcher */
f8eba3c6 931 iterate_over_symbols,
5ffa0793 932 default_search_name_hash,
a53b64ea 933 &c_varobj_ops,
bb2ec1b3 934 c_get_compile_context,
721b08c6 935 c_compute_program,
4be290b2 936 c_is_string_type_p,
721b08c6 937 "{...}" /* la_struct_too_deep_ellipsis */
c906108c
SS
938};
939
cad351d1
UW
940enum cplus_primitive_types {
941 cplus_primitive_type_int,
942 cplus_primitive_type_long,
943 cplus_primitive_type_short,
944 cplus_primitive_type_char,
945 cplus_primitive_type_float,
946 cplus_primitive_type_double,
947 cplus_primitive_type_void,
948 cplus_primitive_type_long_long,
949 cplus_primitive_type_signed_char,
950 cplus_primitive_type_unsigned_char,
951 cplus_primitive_type_unsigned_short,
952 cplus_primitive_type_unsigned_int,
953 cplus_primitive_type_unsigned_long,
954 cplus_primitive_type_unsigned_long_long,
955 cplus_primitive_type_long_double,
956 cplus_primitive_type_complex,
957 cplus_primitive_type_double_complex,
958 cplus_primitive_type_bool,
213e4dc2
TJB
959 cplus_primitive_type_decfloat,
960 cplus_primitive_type_decdouble,
961 cplus_primitive_type_declong,
53e710ac
PA
962 cplus_primitive_type_char16_t,
963 cplus_primitive_type_char32_t,
53375380 964 cplus_primitive_type_wchar_t,
cad351d1 965 nr_cplus_primitive_types
c906108c
SS
966};
967
cad351d1
UW
968static void
969cplus_language_arch_info (struct gdbarch *gdbarch,
970 struct language_arch_info *lai)
971{
972 const struct builtin_type *builtin = builtin_type (gdbarch);
c5504eaf 973
cad351d1
UW
974 lai->string_char_type = builtin->builtin_char;
975 lai->primitive_type_vector
976 = GDBARCH_OBSTACK_CALLOC (gdbarch, nr_cplus_primitive_types + 1,
977 struct type *);
978 lai->primitive_type_vector [cplus_primitive_type_int]
979 = builtin->builtin_int;
980 lai->primitive_type_vector [cplus_primitive_type_long]
981 = builtin->builtin_long;
982 lai->primitive_type_vector [cplus_primitive_type_short]
983 = builtin->builtin_short;
984 lai->primitive_type_vector [cplus_primitive_type_char]
985 = builtin->builtin_char;
986 lai->primitive_type_vector [cplus_primitive_type_float]
987 = builtin->builtin_float;
988 lai->primitive_type_vector [cplus_primitive_type_double]
989 = builtin->builtin_double;
990 lai->primitive_type_vector [cplus_primitive_type_void]
991 = builtin->builtin_void;
992 lai->primitive_type_vector [cplus_primitive_type_long_long]
993 = builtin->builtin_long_long;
994 lai->primitive_type_vector [cplus_primitive_type_signed_char]
995 = builtin->builtin_signed_char;
996 lai->primitive_type_vector [cplus_primitive_type_unsigned_char]
997 = builtin->builtin_unsigned_char;
998 lai->primitive_type_vector [cplus_primitive_type_unsigned_short]
999 = builtin->builtin_unsigned_short;
1000 lai->primitive_type_vector [cplus_primitive_type_unsigned_int]
1001 = builtin->builtin_unsigned_int;
1002 lai->primitive_type_vector [cplus_primitive_type_unsigned_long]
1003 = builtin->builtin_unsigned_long;
1004 lai->primitive_type_vector [cplus_primitive_type_unsigned_long_long]
1005 = builtin->builtin_unsigned_long_long;
1006 lai->primitive_type_vector [cplus_primitive_type_long_double]
1007 = builtin->builtin_long_double;
1008 lai->primitive_type_vector [cplus_primitive_type_complex]
1009 = builtin->builtin_complex;
1010 lai->primitive_type_vector [cplus_primitive_type_double_complex]
1011 = builtin->builtin_double_complex;
1012 lai->primitive_type_vector [cplus_primitive_type_bool]
1013 = builtin->builtin_bool;
213e4dc2
TJB
1014 lai->primitive_type_vector [cplus_primitive_type_decfloat]
1015 = builtin->builtin_decfloat;
1016 lai->primitive_type_vector [cplus_primitive_type_decdouble]
1017 = builtin->builtin_decdouble;
1018 lai->primitive_type_vector [cplus_primitive_type_declong]
1019 = builtin->builtin_declong;
53e710ac
PA
1020 lai->primitive_type_vector [cplus_primitive_type_char16_t]
1021 = builtin->builtin_char16;
1022 lai->primitive_type_vector [cplus_primitive_type_char32_t]
1023 = builtin->builtin_char32;
53375380
PA
1024 lai->primitive_type_vector [cplus_primitive_type_wchar_t]
1025 = builtin->builtin_wchar;
fbb06eb1
UW
1026
1027 lai->bool_type_symbol = "bool";
1028 lai->bool_type_default = builtin->builtin_bool;
cad351d1
UW
1029}
1030
56618e20
TT
1031static const char *cplus_extensions[] =
1032{
1033 ".C", ".cc", ".cp", ".cpp", ".cxx", ".c++", NULL
1034};
1035
47e77640 1036extern const struct language_defn cplus_language_defn =
c5aa993b
JM
1037{
1038 "c++", /* Language name */
6abde28f 1039 "C++",
c906108c 1040 language_cplus,
c906108c 1041 range_check_off,
63872f9d 1042 case_sensitive_on,
7ca2d3a3 1043 array_row_major,
9a044a89 1044 macro_expansion_c,
56618e20 1045 cplus_extensions,
6c7a06a3 1046 &exp_descriptor_c,
7c8adf68 1047 c_parse,
e85c3284 1048 null_post_parser,
c906108c
SS
1049 c_printchar, /* Print a character constant */
1050 c_printstr, /* Function to print string constant */
1051 c_emit_char, /* Print a single char */
c906108c 1052 c_print_type, /* Print a type using appropriate syntax */
5c6ce71d 1053 c_print_typedef, /* Print a typedef using appropriate syntax */
c906108c
SS
1054 c_val_print, /* Print a value using appropriate syntax */
1055 c_value_print, /* Print a top-level value */
a5ee536b 1056 default_read_var_value, /* la_read_var_value */
b18be20d 1057 cplus_skip_trampoline, /* Language specific skip_trampoline */
2b2d9e11 1058 "this", /* name_of_this */
59cc4834 1059 false, /* la_store_sym_names_in_linkage_form_p */
1fcb5155 1060 cp_lookup_symbol_nonlocal, /* lookup_symbol_nonlocal */
b368761e 1061 cp_lookup_transparent_type, /* lookup_transparent_type */
8de20a37 1062 gdb_demangle, /* Language specific symbol demangler */
8b302db8 1063 gdb_sniff_from_mangled_name,
aff410f1
MS
1064 cp_class_name_from_physname, /* Language specific
1065 class_name_from_physname */
c906108c
SS
1066 c_op_print_tab, /* expression operators for printing */
1067 1, /* c-style arrays */
1068 0, /* String lower bound */
6084f43a 1069 default_word_break_characters,
eb3ff9a5 1070 default_collect_symbol_completion_matches,
cad351d1 1071 cplus_language_arch_info,
e79af960 1072 default_print_array_index,
41f1b697 1073 cp_pass_by_reference,
43cc5389 1074 c_watch_location_expression,
b5ec771e 1075 cp_get_symbol_name_matcher,
f8eba3c6 1076 iterate_over_symbols,
a20714ff 1077 cp_search_name_hash,
a53b64ea 1078 &cplus_varobj_ops,
078a0207 1079 cplus_get_compile_context,
721b08c6 1080 cplus_compute_program,
4be290b2 1081 c_is_string_type_p,
721b08c6 1082 "{...}" /* la_struct_too_deep_ellipsis */
c906108c
SS
1083};
1084
56618e20
TT
1085static const char *asm_extensions[] =
1086{
1087 ".s", ".sx", ".S", NULL
1088};
1089
47e77640 1090extern const struct language_defn asm_language_defn =
c5aa993b 1091{
c906108c 1092 "asm", /* Language name */
6abde28f 1093 "assembly",
c906108c 1094 language_asm,
c906108c 1095 range_check_off,
63872f9d 1096 case_sensitive_on,
7ca2d3a3 1097 array_row_major,
9a044a89 1098 macro_expansion_c,
56618e20 1099 asm_extensions,
6c7a06a3 1100 &exp_descriptor_c,
7c8adf68 1101 c_parse,
e85c3284 1102 null_post_parser,
c906108c
SS
1103 c_printchar, /* Print a character constant */
1104 c_printstr, /* Function to print string constant */
1105 c_emit_char, /* Print a single char */
c906108c 1106 c_print_type, /* Print a type using appropriate syntax */
5c6ce71d 1107 c_print_typedef, /* Print a typedef using appropriate syntax */
c906108c
SS
1108 c_val_print, /* Print a value using appropriate syntax */
1109 c_value_print, /* Print a top-level value */
a5ee536b 1110 default_read_var_value, /* la_read_var_value */
f636b87d 1111 NULL, /* Language specific skip_trampoline */
2b2d9e11 1112 NULL, /* name_of_this */
59cc4834 1113 true, /* la_store_sym_names_in_linkage_form_p */
5f9a71c3 1114 basic_lookup_symbol_nonlocal, /* lookup_symbol_nonlocal */
b368761e 1115 basic_lookup_transparent_type,/* lookup_transparent_type */
9a3d7dfd 1116 NULL, /* Language specific symbol demangler */
8b302db8 1117 NULL,
aff410f1
MS
1118 NULL, /* Language specific
1119 class_name_from_physname */
c906108c
SS
1120 c_op_print_tab, /* expression operators for printing */
1121 1, /* c-style arrays */
1122 0, /* String lower bound */
6084f43a 1123 default_word_break_characters,
eb3ff9a5 1124 default_collect_symbol_completion_matches,
aff410f1 1125 c_language_arch_info, /* FIXME: la_language_arch_info. */
e79af960 1126 default_print_array_index,
41f1b697 1127 default_pass_by_reference,
43cc5389 1128 c_watch_location_expression,
b5ec771e 1129 NULL, /* la_get_symbol_name_matcher */
f8eba3c6 1130 iterate_over_symbols,
5ffa0793 1131 default_search_name_hash,
a53b64ea 1132 &default_varobj_ops,
bb2ec1b3 1133 NULL,
721b08c6 1134 NULL,
4be290b2 1135 c_is_string_type_p,
721b08c6 1136 "{...}" /* la_struct_too_deep_ellipsis */
c906108c
SS
1137};
1138
20a0e81d
JB
1139/* The following language_defn does not represent a real language.
1140 It just provides a minimal support a-la-C that should allow users
1141 to do some simple operations when debugging applications that use
1142 a language currently not supported by GDB. */
1143
47e77640 1144extern const struct language_defn minimal_language_defn =
20a0e81d
JB
1145{
1146 "minimal", /* Language name */
6abde28f 1147 "Minimal",
20a0e81d 1148 language_minimal,
20a0e81d 1149 range_check_off,
20a0e81d 1150 case_sensitive_on,
7ca2d3a3 1151 array_row_major,
9a044a89 1152 macro_expansion_c,
56618e20 1153 NULL,
6c7a06a3 1154 &exp_descriptor_c,
7c8adf68 1155 c_parse,
e85c3284 1156 null_post_parser,
20a0e81d
JB
1157 c_printchar, /* Print a character constant */
1158 c_printstr, /* Function to print string constant */
1159 c_emit_char, /* Print a single char */
20a0e81d 1160 c_print_type, /* Print a type using appropriate syntax */
5c6ce71d 1161 c_print_typedef, /* Print a typedef using appropriate syntax */
20a0e81d
JB
1162 c_val_print, /* Print a value using appropriate syntax */
1163 c_value_print, /* Print a top-level value */
a5ee536b 1164 default_read_var_value, /* la_read_var_value */
20a0e81d 1165 NULL, /* Language specific skip_trampoline */
2b2d9e11 1166 NULL, /* name_of_this */
59cc4834 1167 true, /* la_store_sym_names_in_linkage_form_p */
5f9a71c3 1168 basic_lookup_symbol_nonlocal, /* lookup_symbol_nonlocal */
b368761e 1169 basic_lookup_transparent_type,/* lookup_transparent_type */
20a0e81d 1170 NULL, /* Language specific symbol demangler */
8b302db8 1171 NULL,
aff410f1
MS
1172 NULL, /* Language specific
1173 class_name_from_physname */
20a0e81d
JB
1174 c_op_print_tab, /* expression operators for printing */
1175 1, /* c-style arrays */
1176 0, /* String lower bound */
6084f43a 1177 default_word_break_characters,
eb3ff9a5 1178 default_collect_symbol_completion_matches,
e9667a65 1179 c_language_arch_info,
e79af960 1180 default_print_array_index,
41f1b697 1181 default_pass_by_reference,
43cc5389 1182 c_watch_location_expression,
b5ec771e 1183 NULL, /* la_get_symbol_name_matcher */
f8eba3c6 1184 iterate_over_symbols,
5ffa0793 1185 default_search_name_hash,
a53b64ea 1186 &default_varobj_ops,
bb2ec1b3 1187 NULL,
721b08c6 1188 NULL,
4be290b2 1189 c_is_string_type_p,
721b08c6 1190 "{...}" /* la_struct_too_deep_ellipsis */
20a0e81d 1191};
This page took 1.467747 seconds and 4 git commands to generate.