1 /* Modula 2 language support routines for GDB, the GNU debugger.
3 Copyright (C) 1992-1996, 1998, 2000, 2002-2005, 2007-2012 Free
4 Software Foundation, Inc.
6 This file is part of GDB.
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
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
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.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
24 #include "expression.h"
25 #include "parser-defs.h"
31 extern void _initialize_m2_language (void);
32 static void m2_printchar (int, struct type
*, struct ui_file
*);
33 static void m2_emit_char (int, struct type
*, struct ui_file
*, int);
35 /* Print the character C on STREAM as part of the contents of a literal
36 string whose delimiter is QUOTER. Note that that format for printing
37 characters and strings is language specific.
38 FIXME: This is a copy of the same function from c-exp.y. It should
39 be replaced with a true Modula version. */
42 m2_emit_char (int c
, struct type
*type
, struct ui_file
*stream
, int quoter
)
45 c
&= 0xFF; /* Avoid sign bit follies. */
47 if (PRINT_LITERAL_FORM (c
))
49 if (c
== '\\' || c
== quoter
)
51 fputs_filtered ("\\", stream
);
53 fprintf_filtered (stream
, "%c", c
);
60 fputs_filtered ("\\n", stream
);
63 fputs_filtered ("\\b", stream
);
66 fputs_filtered ("\\t", stream
);
69 fputs_filtered ("\\f", stream
);
72 fputs_filtered ("\\r", stream
);
75 fputs_filtered ("\\e", stream
);
78 fputs_filtered ("\\a", stream
);
81 fprintf_filtered (stream
, "\\%.3o", (unsigned int) c
);
87 /* FIXME: This is a copy of the same function from c-exp.y. It should
88 be replaced with a true Modula version. */
91 m2_printchar (int c
, struct type
*type
, struct ui_file
*stream
)
93 fputs_filtered ("'", stream
);
94 LA_EMIT_CHAR (c
, type
, stream
, '\'');
95 fputs_filtered ("'", stream
);
98 /* Print the character string STRING, printing at most LENGTH characters.
99 Printing stops early if the number hits print_max; repeat counts
100 are printed as appropriate. Print ellipses at the end if we
101 had to stop before printing LENGTH characters, or if FORCE_ELLIPSES.
102 FIXME: This is a copy of the same function from c-exp.y. It should
103 be replaced with a true Modula version. */
106 m2_printstr (struct ui_file
*stream
, struct type
*type
, const gdb_byte
*string
,
107 unsigned int length
, const char *encoding
, int force_ellipses
,
108 const struct value_print_options
*options
)
111 unsigned int things_printed
= 0;
117 fputs_filtered ("\"\"", gdb_stdout
);
121 for (i
= 0; i
< length
&& things_printed
< options
->print_max
; ++i
)
123 /* Position of the character we are examining
124 to see whether it is repeated. */
126 /* Number of repetitions we have detected so far. */
133 fputs_filtered (", ", stream
);
139 while (rep1
< length
&& string
[rep1
] == string
[i
])
145 if (reps
> options
->repeat_count_threshold
)
149 if (options
->inspect_it
)
150 fputs_filtered ("\\\", ", stream
);
152 fputs_filtered ("\", ", stream
);
155 m2_printchar (string
[i
], type
, stream
);
156 fprintf_filtered (stream
, " <repeats %u times>", reps
);
158 things_printed
+= options
->repeat_count_threshold
;
165 if (options
->inspect_it
)
166 fputs_filtered ("\\\"", stream
);
168 fputs_filtered ("\"", stream
);
171 LA_EMIT_CHAR (string
[i
], type
, stream
, '"');
176 /* Terminate the quotes if necessary. */
179 if (options
->inspect_it
)
180 fputs_filtered ("\\\"", stream
);
182 fputs_filtered ("\"", stream
);
185 if (force_ellipses
|| i
< length
)
186 fputs_filtered ("...", stream
);
189 static struct value
*
190 evaluate_subexp_modula2 (struct type
*expect_type
, struct expression
*exp
,
191 int *pos
, enum noside noside
)
193 enum exp_opcode op
= exp
->elts
[*pos
].opcode
;
202 arg1
= evaluate_subexp_with_coercion (exp
, pos
, noside
);
204 if (noside
== EVAL_SKIP
|| noside
== EVAL_AVOID_SIDE_EFFECTS
)
208 arg1
= coerce_ref (arg1
);
209 type
= check_typedef (value_type (arg1
));
211 if (m2_is_unbounded_array (type
))
213 struct value
*temp
= arg1
;
215 type
= TYPE_FIELD_TYPE (type
, 1);
216 /* i18n: Do not translate the "_m2_high" part! */
217 arg1
= value_struct_elt (&temp
, NULL
, "_m2_high", NULL
,
218 _("unbounded structure "
219 "missing _m2_high field"));
221 if (value_type (arg1
) != type
)
222 arg1
= value_cast (type
, arg1
);
227 case BINOP_SUBSCRIPT
:
229 arg1
= evaluate_subexp_with_coercion (exp
, pos
, noside
);
230 arg2
= evaluate_subexp_with_coercion (exp
, pos
, noside
);
231 if (noside
== EVAL_SKIP
)
233 /* If the user attempts to subscript something that is not an
234 array or pointer type (like a plain int variable for example),
235 then report this as an error. */
237 arg1
= coerce_ref (arg1
);
238 type
= check_typedef (value_type (arg1
));
240 if (m2_is_unbounded_array (type
))
242 struct value
*temp
= arg1
;
243 type
= TYPE_FIELD_TYPE (type
, 0);
244 if (type
== NULL
|| (TYPE_CODE (type
) != TYPE_CODE_PTR
))
246 warning (_("internal error: unbounded "
247 "array structure is unknown"));
248 return evaluate_subexp_standard (expect_type
, exp
, pos
, noside
);
250 /* i18n: Do not translate the "_m2_contents" part! */
251 arg1
= value_struct_elt (&temp
, NULL
, "_m2_contents", NULL
,
252 _("unbounded structure "
253 "missing _m2_contents field"));
255 if (value_type (arg1
) != type
)
256 arg1
= value_cast (type
, arg1
);
258 check_typedef (value_type (arg1
));
259 return value_ind (value_ptradd (arg1
, value_as_long (arg2
)));
262 if (TYPE_CODE (type
) != TYPE_CODE_ARRAY
)
264 if (TYPE_NAME (type
))
265 error (_("cannot subscript something of type `%s'"),
268 error (_("cannot subscript requested type"));
271 if (noside
== EVAL_AVOID_SIDE_EFFECTS
)
272 return value_zero (TYPE_TARGET_TYPE (type
), VALUE_LVAL (arg1
));
274 return value_subscript (arg1
, value_as_long (arg2
));
277 return evaluate_subexp_standard (expect_type
, exp
, pos
, noside
);
281 return value_from_longest (builtin_type (exp
->gdbarch
)->builtin_int
, 1);
285 /* Table of operators and their precedences for printing expressions. */
287 static const struct op_print m2_op_print_tab
[] =
289 {"+", BINOP_ADD
, PREC_ADD
, 0},
290 {"+", UNOP_PLUS
, PREC_PREFIX
, 0},
291 {"-", BINOP_SUB
, PREC_ADD
, 0},
292 {"-", UNOP_NEG
, PREC_PREFIX
, 0},
293 {"*", BINOP_MUL
, PREC_MUL
, 0},
294 {"/", BINOP_DIV
, PREC_MUL
, 0},
295 {"DIV", BINOP_INTDIV
, PREC_MUL
, 0},
296 {"MOD", BINOP_REM
, PREC_MUL
, 0},
297 {":=", BINOP_ASSIGN
, PREC_ASSIGN
, 1},
298 {"OR", BINOP_LOGICAL_OR
, PREC_LOGICAL_OR
, 0},
299 {"AND", BINOP_LOGICAL_AND
, PREC_LOGICAL_AND
, 0},
300 {"NOT", UNOP_LOGICAL_NOT
, PREC_PREFIX
, 0},
301 {"=", BINOP_EQUAL
, PREC_EQUAL
, 0},
302 {"<>", BINOP_NOTEQUAL
, PREC_EQUAL
, 0},
303 {"<=", BINOP_LEQ
, PREC_ORDER
, 0},
304 {">=", BINOP_GEQ
, PREC_ORDER
, 0},
305 {">", BINOP_GTR
, PREC_ORDER
, 0},
306 {"<", BINOP_LESS
, PREC_ORDER
, 0},
307 {"^", UNOP_IND
, PREC_PREFIX
, 0},
308 {"@", BINOP_REPEAT
, PREC_REPEAT
, 0},
309 {"CAP", UNOP_CAP
, PREC_BUILTIN_FUNCTION
, 0},
310 {"CHR", UNOP_CHR
, PREC_BUILTIN_FUNCTION
, 0},
311 {"ORD", UNOP_ORD
, PREC_BUILTIN_FUNCTION
, 0},
312 {"FLOAT", UNOP_FLOAT
, PREC_BUILTIN_FUNCTION
, 0},
313 {"HIGH", UNOP_HIGH
, PREC_BUILTIN_FUNCTION
, 0},
314 {"MAX", UNOP_MAX
, PREC_BUILTIN_FUNCTION
, 0},
315 {"MIN", UNOP_MIN
, PREC_BUILTIN_FUNCTION
, 0},
316 {"ODD", UNOP_ODD
, PREC_BUILTIN_FUNCTION
, 0},
317 {"TRUNC", UNOP_TRUNC
, PREC_BUILTIN_FUNCTION
, 0},
321 /* The built-in types of Modula-2. */
323 enum m2_primitive_types
{
324 m2_primitive_type_char
,
325 m2_primitive_type_int
,
326 m2_primitive_type_card
,
327 m2_primitive_type_real
,
328 m2_primitive_type_bool
,
329 nr_m2_primitive_types
333 m2_language_arch_info (struct gdbarch
*gdbarch
,
334 struct language_arch_info
*lai
)
336 const struct builtin_m2_type
*builtin
= builtin_m2_type (gdbarch
);
338 lai
->string_char_type
= builtin
->builtin_char
;
339 lai
->primitive_type_vector
340 = GDBARCH_OBSTACK_CALLOC (gdbarch
, nr_m2_primitive_types
+ 1,
343 lai
->primitive_type_vector
[m2_primitive_type_char
]
344 = builtin
->builtin_char
;
345 lai
->primitive_type_vector
[m2_primitive_type_int
]
346 = builtin
->builtin_int
;
347 lai
->primitive_type_vector
[m2_primitive_type_card
]
348 = builtin
->builtin_card
;
349 lai
->primitive_type_vector
[m2_primitive_type_real
]
350 = builtin
->builtin_real
;
351 lai
->primitive_type_vector
[m2_primitive_type_bool
]
352 = builtin
->builtin_bool
;
354 lai
->bool_type_symbol
= "BOOLEAN";
355 lai
->bool_type_default
= builtin
->builtin_bool
;
358 const struct exp_descriptor exp_descriptor_modula2
=
360 print_subexp_standard
,
361 operator_length_standard
,
362 operator_check_standard
,
364 dump_subexp_body_standard
,
365 evaluate_subexp_modula2
368 const struct language_defn m2_language_defn
=
377 &exp_descriptor_modula2
,
378 m2_parse
, /* parser */
379 m2_error
, /* parser error function */
381 m2_printchar
, /* Print character constant */
382 m2_printstr
, /* function to print string constant */
383 m2_emit_char
, /* Function to print a single character */
384 m2_print_type
, /* Print a type using appropriate syntax */
385 m2_print_typedef
, /* Print a typedef using appropriate syntax */
386 m2_val_print
, /* Print a value using appropriate syntax */
387 c_value_print
, /* Print a top-level value */
388 default_read_var_value
, /* la_read_var_value */
389 NULL
, /* Language specific skip_trampoline */
390 NULL
, /* name_of_this */
391 basic_lookup_symbol_nonlocal
, /* lookup_symbol_nonlocal */
392 basic_lookup_transparent_type
,/* lookup_transparent_type */
393 NULL
, /* Language specific symbol demangler */
394 NULL
, /* Language specific
395 class_name_from_physname */
396 m2_op_print_tab
, /* expression operators for printing */
397 0, /* arrays are first-class (not c-style) */
398 0, /* String lower bound */
399 default_word_break_characters
,
400 default_make_symbol_completion_list
,
401 m2_language_arch_info
,
402 default_print_array_index
,
403 default_pass_by_reference
,
405 NULL
, /* la_get_symbol_name_cmp */
406 iterate_over_symbols
,
411 build_m2_types (struct gdbarch
*gdbarch
)
413 struct builtin_m2_type
*builtin_m2_type
414 = GDBARCH_OBSTACK_ZALLOC (gdbarch
, struct builtin_m2_type
);
416 /* Modula-2 "pervasive" types. NOTE: these can be redefined!!! */
417 builtin_m2_type
->builtin_int
418 = arch_integer_type (gdbarch
, gdbarch_int_bit (gdbarch
), 0, "INTEGER");
419 builtin_m2_type
->builtin_card
420 = arch_integer_type (gdbarch
, gdbarch_int_bit (gdbarch
), 1, "CARDINAL");
421 builtin_m2_type
->builtin_real
422 = arch_float_type (gdbarch
, gdbarch_float_bit (gdbarch
), "REAL", NULL
);
423 builtin_m2_type
->builtin_char
424 = arch_character_type (gdbarch
, TARGET_CHAR_BIT
, 1, "CHAR");
425 builtin_m2_type
->builtin_bool
426 = arch_boolean_type (gdbarch
, gdbarch_int_bit (gdbarch
), 1, "BOOLEAN");
428 return builtin_m2_type
;
431 static struct gdbarch_data
*m2_type_data
;
433 const struct builtin_m2_type
*
434 builtin_m2_type (struct gdbarch
*gdbarch
)
436 return gdbarch_data (gdbarch
, m2_type_data
);
440 /* Initialization for Modula-2 */
443 _initialize_m2_language (void)
445 m2_type_data
= gdbarch_data_register_post_init (build_m2_types
);
447 add_language (&m2_language_defn
);