Use common_val_print in f-valprint.c
[deliverable/binutils-gdb.git] / gdb / f-valprint.c
CommitLineData
c906108c 1/* Support for printing Fortran values for GDB, the GNU debugger.
a2bd3dcd 2
b811d2c2 3 Copyright (C) 1993-2020 Free Software Foundation, Inc.
a2bd3dcd 4
c906108c
SS
5 Contributed by Motorola. Adapted from the C definitions by Farooq Butt
6 (fmbutt@engage.sps.mot.com), additionally worked over by Stan Shebs.
7
c5aa993b 8 This file is part of GDB.
c906108c 9
c5aa993b
JM
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
a9762ec7 12 the Free Software Foundation; either version 3 of the License, or
c5aa993b 13 (at your option) any later version.
c906108c 14
c5aa993b
JM
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
c906108c 19
c5aa993b 20 You should have received a copy of the GNU General Public License
a9762ec7 21 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
22
23#include "defs.h"
4de283e4
TT
24#include "symtab.h"
25#include "gdbtypes.h"
c906108c 26#include "expression.h"
4de283e4
TT
27#include "value.h"
28#include "valprint.h"
29#include "language.h"
c5aa993b 30#include "f-lang.h"
c906108c
SS
31#include "frame.h"
32#include "gdbcore.h"
4de283e4
TT
33#include "command.h"
34#include "block.h"
35#include "dictionary.h"
7f6aba03 36#include "cli/cli-style.h"
5bbd8269 37#include "gdbarch.h"
c906108c 38
a14ed312 39static void f77_get_dynamic_length_of_aggregate (struct type *);
c906108c 40
c5aa993b 41int f77_array_offset_tbl[MAX_FORTRAN_DIMS + 1][2];
c906108c
SS
42
43/* Array which holds offsets to be applied to get a row's elements
0963b4bd 44 for a given array. Array also holds the size of each subarray. */
c906108c 45
2880242d 46LONGEST
d78df370 47f77_get_lowerbound (struct type *type)
c906108c 48{
d78df370
JK
49 if (TYPE_ARRAY_LOWER_BOUND_IS_UNDEFINED (type))
50 error (_("Lower bound may not be '*' in F77"));
c5aa993b 51
d78df370 52 return TYPE_ARRAY_LOWER_BOUND_VALUE (type);
c906108c
SS
53}
54
2880242d 55LONGEST
d78df370 56f77_get_upperbound (struct type *type)
c906108c 57{
d78df370 58 if (TYPE_ARRAY_UPPER_BOUND_IS_UNDEFINED (type))
c906108c 59 {
d78df370
JK
60 /* We have an assumed size array on our hands. Assume that
61 upper_bound == lower_bound so that we show at least 1 element.
62 If the user wants to see more elements, let him manually ask for 'em
63 and we'll subscript the array and show him. */
64
65 return f77_get_lowerbound (type);
c906108c 66 }
d78df370
JK
67
68 return TYPE_ARRAY_UPPER_BOUND_VALUE (type);
c906108c
SS
69}
70
0963b4bd 71/* Obtain F77 adjustable array dimensions. */
c906108c
SS
72
73static void
fba45db2 74f77_get_dynamic_length_of_aggregate (struct type *type)
c906108c
SS
75{
76 int upper_bound = -1;
c5aa993b 77 int lower_bound = 1;
c5aa993b 78
c906108c
SS
79 /* Recursively go all the way down into a possibly multi-dimensional
80 F77 array and get the bounds. For simple arrays, this is pretty
81 easy but when the bounds are dynamic, we must be very careful
82 to add up all the lengths correctly. Not doing this right
83 will lead to horrendous-looking arrays in parameter lists.
c5aa993b 84
c906108c 85 This function also works for strings which behave very
c5aa993b
JM
86 similarly to arrays. */
87
88 if (TYPE_CODE (TYPE_TARGET_TYPE (type)) == TYPE_CODE_ARRAY
89 || TYPE_CODE (TYPE_TARGET_TYPE (type)) == TYPE_CODE_STRING)
c906108c 90 f77_get_dynamic_length_of_aggregate (TYPE_TARGET_TYPE (type));
c5aa993b
JM
91
92 /* Recursion ends here, start setting up lengths. */
d78df370
JK
93 lower_bound = f77_get_lowerbound (type);
94 upper_bound = f77_get_upperbound (type);
c5aa993b 95
0963b4bd 96 /* Patch in a valid length value. */
c5aa993b 97
c906108c 98 TYPE_LENGTH (type) =
3e43a32a
MS
99 (upper_bound - lower_bound + 1)
100 * TYPE_LENGTH (check_typedef (TYPE_TARGET_TYPE (type)));
c5aa993b 101}
c906108c 102
c906108c
SS
103/* Actual function which prints out F77 arrays, Valaddr == address in
104 the superior. Address == the address in the inferior. */
7b0090c3 105
c5aa993b 106static void
a2bd3dcd 107f77_print_array_1 (int nss, int ndimensions, struct type *type,
490f124f
PA
108 const gdb_byte *valaddr,
109 int embedded_offset, CORE_ADDR address,
79a45b7d 110 struct ui_file *stream, int recurse,
0e03807e 111 const struct value *val,
79a45b7d 112 const struct value_print_options *options,
b3cacbee 113 int *elts)
c906108c 114{
3e2e34f8
KB
115 struct type *range_type = TYPE_INDEX_TYPE (check_typedef (type));
116 CORE_ADDR addr = address + embedded_offset;
117 LONGEST lowerbound, upperbound;
e409c542 118 LONGEST i;
c5aa993b 119
3e2e34f8
KB
120 get_discrete_bounds (range_type, &lowerbound, &upperbound);
121
c906108c
SS
122 if (nss != ndimensions)
123 {
5bbd8269
AB
124 struct gdbarch *gdbarch = get_type_arch (type);
125 size_t dim_size = type_length_units (TYPE_TARGET_TYPE (type));
126 int unit_size = gdbarch_addressable_memory_unit_size (gdbarch);
127 size_t byte_stride = TYPE_ARRAY_BIT_STRIDE (type) / (unit_size * 8);
128 if (byte_stride == 0)
129 byte_stride = dim_size;
3e2e34f8
KB
130 size_t offs = 0;
131
132 for (i = lowerbound;
133 (i < upperbound + 1 && (*elts) < options->print_max);
3e43a32a 134 i++)
c906108c 135 {
3e2e34f8
KB
136 struct value *subarray = value_from_contents_and_address
137 (TYPE_TARGET_TYPE (type), value_contents_for_printing_const (val)
138 + offs, addr + offs);
139
c906108c 140 fprintf_filtered (stream, "( ");
3e2e34f8
KB
141 f77_print_array_1 (nss + 1, ndimensions, value_type (subarray),
142 value_contents_for_printing (subarray),
143 value_embedded_offset (subarray),
144 value_address (subarray),
145 stream, recurse, subarray, options, elts);
5bbd8269 146 offs += byte_stride;
c906108c
SS
147 fprintf_filtered (stream, ") ");
148 }
3e2e34f8 149 if (*elts >= options->print_max && i < upperbound)
b3cacbee 150 fprintf_filtered (stream, "...");
c906108c
SS
151 }
152 else
153 {
3e2e34f8 154 for (i = lowerbound; i < upperbound + 1 && (*elts) < options->print_max;
7b0090c3 155 i++, (*elts)++)
c906108c 156 {
3e2e34f8
KB
157 struct value *elt = value_subscript ((struct value *)val, i);
158
72a45c93 159 common_val_print (elt, stream, recurse, options, current_language);
c906108c 160
3e2e34f8 161 if (i != upperbound)
c5aa993b
JM
162 fprintf_filtered (stream, ", ");
163
79a45b7d 164 if ((*elts == options->print_max - 1)
3e2e34f8 165 && (i != upperbound))
c906108c
SS
166 fprintf_filtered (stream, "...");
167 }
168 }
169}
170
171/* This function gets called to print an F77 array, we set up some
0963b4bd 172 stuff and then immediately call f77_print_array_1(). */
c906108c 173
c5aa993b 174static void
fc1a4b47 175f77_print_array (struct type *type, const gdb_byte *valaddr,
490f124f 176 int embedded_offset,
a2bd3dcd 177 CORE_ADDR address, struct ui_file *stream,
0e03807e
TT
178 int recurse,
179 const struct value *val,
180 const struct value_print_options *options)
c906108c 181{
c5aa993b 182 int ndimensions;
b3cacbee 183 int elts = 0;
c5aa993b
JM
184
185 ndimensions = calc_f77_array_dims (type);
186
c906108c 187 if (ndimensions > MAX_FORTRAN_DIMS || ndimensions < 0)
3e43a32a
MS
188 error (_("\
189Type node corrupt! F77 arrays cannot have %d subscripts (%d Max)"),
c906108c 190 ndimensions, MAX_FORTRAN_DIMS);
c5aa993b 191
490f124f
PA
192 f77_print_array_1 (1, ndimensions, type, valaddr, embedded_offset,
193 address, stream, recurse, val, options, &elts);
c5aa993b 194}
c906108c 195\f
c5aa993b 196
e88acd96
TT
197/* Decorations for Fortran. */
198
199static const struct generic_val_print_decorations f_decorations =
200{
201 "(",
202 ",",
203 ")",
204 ".TRUE.",
205 ".FALSE.",
bbe75b9d 206 "void",
00272ec4
TT
207 "{",
208 "}"
e88acd96
TT
209};
210
32b72a42 211/* See val_print for a description of the various parameters of this
d3eab38a 212 function; they are identical. */
c906108c 213
d3eab38a 214void
e8b24d9f 215f_val_print (struct type *type, int embedded_offset,
79a45b7d 216 CORE_ADDR address, struct ui_file *stream, int recurse,
e8b24d9f 217 struct value *original_value,
79a45b7d 218 const struct value_print_options *options)
c906108c 219{
50810684 220 struct gdbarch *gdbarch = get_type_arch (type);
04d59df6 221 int printed_field = 0; /* Number of fields printed. */
c906108c 222 struct type *elttype;
c906108c 223 CORE_ADDR addr;
2a5e440c 224 int index;
e8b24d9f 225 const gdb_byte *valaddr =value_contents_for_printing (original_value);
c5aa993b 226
f168693b 227 type = check_typedef (type);
c906108c
SS
228 switch (TYPE_CODE (type))
229 {
c5aa993b 230 case TYPE_CODE_STRING:
c906108c 231 f77_get_dynamic_length_of_aggregate (type);
50810684 232 LA_PRINT_STRING (stream, builtin_type (gdbarch)->builtin_char,
490f124f
PA
233 valaddr + embedded_offset,
234 TYPE_LENGTH (type), NULL, 0, options);
c906108c 235 break;
c5aa993b 236
c906108c 237 case TYPE_CODE_ARRAY:
3b2b8fea
TT
238 if (TYPE_CODE (TYPE_TARGET_TYPE (type)) != TYPE_CODE_CHAR)
239 {
240 fprintf_filtered (stream, "(");
241 f77_print_array (type, valaddr, embedded_offset,
242 address, stream, recurse, original_value, options);
243 fprintf_filtered (stream, ")");
244 }
245 else
246 {
247 struct type *ch_type = TYPE_TARGET_TYPE (type);
248
249 f77_get_dynamic_length_of_aggregate (type);
250 LA_PRINT_STRING (stream, ch_type,
251 valaddr + embedded_offset,
252 TYPE_LENGTH (type) / TYPE_LENGTH (ch_type),
253 NULL, 0, options);
254 }
c906108c 255 break;
7e86466e 256
c906108c 257 case TYPE_CODE_PTR:
79a45b7d 258 if (options->format && options->format != 's')
c906108c 259 {
e8b24d9f 260 val_print_scalar_formatted (type, embedded_offset,
ab2188aa 261 original_value, options, 0, stream);
c906108c
SS
262 break;
263 }
264 else
265 {
b012acdd
TT
266 int want_space = 0;
267
490f124f 268 addr = unpack_pointer (type, valaddr + embedded_offset);
c906108c 269 elttype = check_typedef (TYPE_TARGET_TYPE (type));
c5aa993b 270
c906108c
SS
271 if (TYPE_CODE (elttype) == TYPE_CODE_FUNC)
272 {
273 /* Try to print what function it points to. */
edf0c1b7 274 print_function_pointer_address (options, gdbarch, addr, stream);
d3eab38a 275 return;
c906108c 276 }
c5aa993b 277
9cb709b6
TT
278 if (options->symbol_print)
279 want_space = print_address_demangle (options, gdbarch, addr,
280 stream, demangle);
281 else if (options->addressprint && options->format != 's')
b012acdd
TT
282 {
283 fputs_filtered (paddress (gdbarch, addr), stream);
284 want_space = 1;
285 }
c5aa993b 286
c906108c
SS
287 /* For a pointer to char or unsigned char, also print the string
288 pointed to, unless pointer is null. */
289 if (TYPE_LENGTH (elttype) == 1
290 && TYPE_CODE (elttype) == TYPE_CODE_INT
79a45b7d 291 && (options->format == 0 || options->format == 's')
c906108c 292 && addr != 0)
b012acdd
TT
293 {
294 if (want_space)
295 fputs_filtered (" ", stream);
78cc6c2d
TT
296 val_print_string (TYPE_TARGET_TYPE (type), NULL, addr, -1,
297 stream, options);
b012acdd 298 }
d3eab38a 299 return;
7e86466e
RH
300 }
301 break;
302
c906108c 303 case TYPE_CODE_INT:
79a45b7d
TT
304 if (options->format || options->output_format)
305 {
306 struct value_print_options opts = *options;
bb9bcb69 307
79a45b7d
TT
308 opts.format = (options->format ? options->format
309 : options->output_format);
e8b24d9f 310 val_print_scalar_formatted (type, embedded_offset,
eb0b0463 311 original_value, &opts, 0, stream);
79a45b7d 312 }
c906108c 313 else
469412dd
CW
314 val_print_scalar_formatted (type, embedded_offset,
315 original_value, options, 0, stream);
c906108c 316 break;
c5aa993b 317
2a5e440c 318 case TYPE_CODE_STRUCT:
9eec4d1e 319 case TYPE_CODE_UNION:
2a5e440c
WZ
320 /* Starting from the Fortran 90 standard, Fortran supports derived
321 types. */
9eec4d1e 322 fprintf_filtered (stream, "( ");
2a5e440c
WZ
323 for (index = 0; index < TYPE_NFIELDS (type); index++)
324 {
3e2e34f8
KB
325 struct value *field = value_field
326 ((struct value *)original_value, index);
327
04d59df6 328 struct type *field_type = check_typedef (TYPE_FIELD_TYPE (type, index));
bb9bcb69 329
04d59df6
WT
330
331 if (TYPE_CODE (field_type) != TYPE_CODE_FUNC)
332 {
333 const char *field_name;
334
335 if (printed_field > 0)
336 fputs_filtered (", ", stream);
337
338 field_name = TYPE_FIELD_NAME (type, index);
339 if (field_name != NULL)
340 {
3f0cbb04
TT
341 fputs_styled (field_name, variable_name_style.style (),
342 stream);
04d59df6
WT
343 fputs_filtered (" = ", stream);
344 }
345
72a45c93
TT
346 common_val_print (field, stream, recurse + 1,
347 options, current_language);
04d59df6
WT
348
349 ++printed_field;
350 }
351 }
9eec4d1e 352 fprintf_filtered (stream, " )");
2a5e440c
WZ
353 break;
354
5e5d66b6
AB
355 case TYPE_CODE_BOOL:
356 if (options->format || options->output_format)
357 {
358 struct value_print_options opts = *options;
359 opts.format = (options->format ? options->format
360 : options->output_format);
361 val_print_scalar_formatted (type, embedded_offset,
362 original_value, &opts, 0, stream);
363 }
364 else
365 {
366 int unit_size = gdbarch_addressable_memory_unit_size (gdbarch);
367 LONGEST val
368 = unpack_long (type, valaddr + embedded_offset * unit_size);
369 /* The Fortran standard doesn't specify how logical types are
370 represented. Different compilers use different non zero
371 values to represent logical true. */
372 if (val == 0)
373 fputs_filtered (f_decorations.false_name, stream);
374 else
375 fputs_filtered (f_decorations.true_name, stream);
376 }
377 break;
378
e88acd96
TT
379 case TYPE_CODE_REF:
380 case TYPE_CODE_FUNC:
381 case TYPE_CODE_FLAGS:
382 case TYPE_CODE_FLT:
383 case TYPE_CODE_VOID:
384 case TYPE_CODE_ERROR:
385 case TYPE_CODE_RANGE:
386 case TYPE_CODE_UNDEF:
387 case TYPE_CODE_COMPLEX:
e88acd96 388 case TYPE_CODE_CHAR:
c906108c 389 default:
e8b24d9f 390 generic_val_print (type, embedded_offset, address,
e88acd96
TT
391 stream, recurse, original_value, options,
392 &f_decorations);
393 break;
c906108c 394 }
c906108c
SS
395}
396
397static void
3977b71f 398info_common_command_for_block (const struct block *block, const char *comname,
4357ac6c 399 int *any_printed)
c906108c 400{
4357ac6c
TT
401 struct block_iterator iter;
402 struct symbol *sym;
4357ac6c
TT
403 struct value_print_options opts;
404
405 get_user_print_options (&opts);
406
407 ALL_BLOCK_SYMBOLS (block, iter, sym)
408 if (SYMBOL_DOMAIN (sym) == COMMON_BLOCK_DOMAIN)
409 {
17a40b44 410 const struct common_block *common = SYMBOL_VALUE_COMMON_BLOCK (sym);
4357ac6c
TT
411 size_t index;
412
5a352474 413 gdb_assert (SYMBOL_CLASS (sym) == LOC_COMMON_BLOCK);
4357ac6c 414
987012b8
CB
415 if (comname && (!sym->linkage_name ()
416 || strcmp (comname, sym->linkage_name ()) != 0))
4357ac6c
TT
417 continue;
418
419 if (*any_printed)
420 putchar_filtered ('\n');
421 else
422 *any_printed = 1;
987012b8 423 if (sym->print_name ())
4357ac6c 424 printf_filtered (_("Contents of F77 COMMON block '%s':\n"),
987012b8 425 sym->print_name ());
4357ac6c
TT
426 else
427 printf_filtered (_("Contents of blank COMMON block:\n"));
428
429 for (index = 0; index < common->n_entries; index++)
430 {
431 struct value *val = NULL;
4357ac6c
TT
432
433 printf_filtered ("%s = ",
987012b8 434 common->contents[index]->print_name ());
4357ac6c 435
a70b8144 436 try
4357ac6c
TT
437 {
438 val = value_of_variable (common->contents[index], block);
439 value_print (val, gdb_stdout, &opts);
440 }
441
230d2906 442 catch (const gdb_exception_error &except)
492d29ea 443 {
7f6aba03
TT
444 fprintf_styled (gdb_stdout, metadata_style.style (),
445 "<error reading variable: %s>",
446 except.what ());
492d29ea 447 }
492d29ea 448
4357ac6c
TT
449 putchar_filtered ('\n');
450 }
451 }
c906108c
SS
452}
453
454/* This function is used to print out the values in a given COMMON
0963b4bd
MS
455 block. It will always use the most local common block of the
456 given name. */
c906108c 457
c5aa993b 458static void
1d12d88f 459info_common_command (const char *comname, int from_tty)
c906108c 460{
c906108c 461 struct frame_info *fi;
3977b71f 462 const struct block *block;
4357ac6c 463 int values_printed = 0;
c5aa993b 464
c906108c
SS
465 /* We have been told to display the contents of F77 COMMON
466 block supposedly visible in this function. Let us
467 first make sure that it is visible and if so, let
0963b4bd 468 us display its contents. */
c5aa993b 469
206415a3 470 fi = get_selected_frame (_("No frame selected"));
c5aa993b 471
c906108c 472 /* The following is generally ripped off from stack.c's routine
0963b4bd 473 print_frame_info(). */
c5aa993b 474
4357ac6c
TT
475 block = get_frame_block (fi, 0);
476 if (block == NULL)
c906108c 477 {
4357ac6c
TT
478 printf_filtered (_("No symbol table info available.\n"));
479 return;
c906108c 480 }
c5aa993b 481
4357ac6c 482 while (block)
c906108c 483 {
4357ac6c
TT
484 info_common_command_for_block (block, comname, &values_printed);
485 /* After handling the function's top-level block, stop. Don't
486 continue to its superblock, the block of per-file symbols. */
487 if (BLOCK_FUNCTION (block))
488 break;
489 block = BLOCK_SUPERBLOCK (block);
c906108c 490 }
c5aa993b 491
4357ac6c 492 if (!values_printed)
c906108c 493 {
4357ac6c
TT
494 if (comname)
495 printf_filtered (_("No common block '%s'.\n"), comname);
c5aa993b 496 else
4357ac6c 497 printf_filtered (_("No common blocks.\n"));
c906108c 498 }
c906108c
SS
499}
500
6c265988 501void _initialize_f_valprint ();
c906108c 502void
6c265988 503_initialize_f_valprint ()
c906108c
SS
504{
505 add_info ("common", info_common_command,
1bedd215 506 _("Print out the values contained in a Fortran COMMON block."));
c906108c 507}
This page took 1.441091 seconds and 4 git commands to generate.