Commit | Line | Data |
---|---|---|
c906108c | 1 | /* Support for printing Fortran values for GDB, the GNU debugger. |
a2bd3dcd | 2 | |
ecd75fc8 | 3 | Copyright (C) 1993-2014 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" | |
0e9f083f | 24 | #include <string.h> |
c906108c SS |
25 | #include "symtab.h" |
26 | #include "gdbtypes.h" | |
27 | #include "expression.h" | |
28 | #include "value.h" | |
c906108c SS |
29 | #include "valprint.h" |
30 | #include "language.h" | |
c5aa993b | 31 | #include "f-lang.h" |
c906108c SS |
32 | #include "frame.h" |
33 | #include "gdbcore.h" | |
34 | #include "command.h" | |
fe898f56 | 35 | #include "block.h" |
4357ac6c TT |
36 | #include "dictionary.h" |
37 | #include "gdb_assert.h" | |
38 | #include "exceptions.h" | |
c906108c | 39 | |
a14ed312 KB |
40 | extern void _initialize_f_valprint (void); |
41 | static void info_common_command (char *, int); | |
d9fcf2fb JM |
42 | static void f77_create_arrayprint_offset_tbl (struct type *, |
43 | struct ui_file *); | |
a14ed312 | 44 | static void f77_get_dynamic_length_of_aggregate (struct type *); |
c906108c | 45 | |
c5aa993b | 46 | int f77_array_offset_tbl[MAX_FORTRAN_DIMS + 1][2]; |
c906108c SS |
47 | |
48 | /* Array which holds offsets to be applied to get a row's elements | |
0963b4bd | 49 | for a given array. Array also holds the size of each subarray. */ |
c906108c SS |
50 | |
51 | /* The following macro gives us the size of the nth dimension, Where | |
0963b4bd | 52 | n is 1 based. */ |
c906108c SS |
53 | |
54 | #define F77_DIM_SIZE(n) (f77_array_offset_tbl[n][1]) | |
55 | ||
0963b4bd | 56 | /* The following gives us the offset for row n where n is 1-based. */ |
c906108c SS |
57 | |
58 | #define F77_DIM_OFFSET(n) (f77_array_offset_tbl[n][0]) | |
59 | ||
c5aa993b | 60 | int |
d78df370 | 61 | f77_get_lowerbound (struct type *type) |
c906108c | 62 | { |
d78df370 JK |
63 | if (TYPE_ARRAY_LOWER_BOUND_IS_UNDEFINED (type)) |
64 | error (_("Lower bound may not be '*' in F77")); | |
c5aa993b | 65 | |
d78df370 | 66 | return TYPE_ARRAY_LOWER_BOUND_VALUE (type); |
c906108c SS |
67 | } |
68 | ||
c5aa993b | 69 | int |
d78df370 | 70 | f77_get_upperbound (struct type *type) |
c906108c | 71 | { |
d78df370 | 72 | if (TYPE_ARRAY_UPPER_BOUND_IS_UNDEFINED (type)) |
c906108c | 73 | { |
d78df370 JK |
74 | /* We have an assumed size array on our hands. Assume that |
75 | upper_bound == lower_bound so that we show at least 1 element. | |
76 | If the user wants to see more elements, let him manually ask for 'em | |
77 | and we'll subscript the array and show him. */ | |
78 | ||
79 | return f77_get_lowerbound (type); | |
c906108c | 80 | } |
d78df370 JK |
81 | |
82 | return TYPE_ARRAY_UPPER_BOUND_VALUE (type); | |
c906108c SS |
83 | } |
84 | ||
0963b4bd | 85 | /* Obtain F77 adjustable array dimensions. */ |
c906108c SS |
86 | |
87 | static void | |
fba45db2 | 88 | f77_get_dynamic_length_of_aggregate (struct type *type) |
c906108c SS |
89 | { |
90 | int upper_bound = -1; | |
c5aa993b | 91 | int lower_bound = 1; |
c5aa993b | 92 | |
c906108c SS |
93 | /* Recursively go all the way down into a possibly multi-dimensional |
94 | F77 array and get the bounds. For simple arrays, this is pretty | |
95 | easy but when the bounds are dynamic, we must be very careful | |
96 | to add up all the lengths correctly. Not doing this right | |
97 | will lead to horrendous-looking arrays in parameter lists. | |
c5aa993b | 98 | |
c906108c | 99 | This function also works for strings which behave very |
c5aa993b JM |
100 | similarly to arrays. */ |
101 | ||
102 | if (TYPE_CODE (TYPE_TARGET_TYPE (type)) == TYPE_CODE_ARRAY | |
103 | || TYPE_CODE (TYPE_TARGET_TYPE (type)) == TYPE_CODE_STRING) | |
c906108c | 104 | f77_get_dynamic_length_of_aggregate (TYPE_TARGET_TYPE (type)); |
c5aa993b JM |
105 | |
106 | /* Recursion ends here, start setting up lengths. */ | |
d78df370 JK |
107 | lower_bound = f77_get_lowerbound (type); |
108 | upper_bound = f77_get_upperbound (type); | |
c5aa993b | 109 | |
0963b4bd | 110 | /* Patch in a valid length value. */ |
c5aa993b | 111 | |
c906108c | 112 | TYPE_LENGTH (type) = |
3e43a32a MS |
113 | (upper_bound - lower_bound + 1) |
114 | * TYPE_LENGTH (check_typedef (TYPE_TARGET_TYPE (type))); | |
c5aa993b | 115 | } |
c906108c SS |
116 | |
117 | /* Function that sets up the array offset,size table for the array | |
c5aa993b | 118 | type "type". */ |
c906108c | 119 | |
c5aa993b | 120 | static void |
fba45db2 | 121 | f77_create_arrayprint_offset_tbl (struct type *type, struct ui_file *stream) |
c906108c SS |
122 | { |
123 | struct type *tmp_type; | |
124 | int eltlen; | |
125 | int ndimen = 1; | |
9216103f | 126 | int upper, lower; |
c5aa993b JM |
127 | |
128 | tmp_type = type; | |
129 | ||
9c16be9a | 130 | while (TYPE_CODE (tmp_type) == TYPE_CODE_ARRAY) |
c906108c | 131 | { |
d78df370 JK |
132 | upper = f77_get_upperbound (tmp_type); |
133 | lower = f77_get_lowerbound (tmp_type); | |
c5aa993b | 134 | |
c906108c | 135 | F77_DIM_SIZE (ndimen) = upper - lower + 1; |
c5aa993b | 136 | |
c906108c | 137 | tmp_type = TYPE_TARGET_TYPE (tmp_type); |
c5aa993b | 138 | ndimen++; |
c906108c | 139 | } |
c5aa993b | 140 | |
c906108c SS |
141 | /* Now we multiply eltlen by all the offsets, so that later we |
142 | can print out array elements correctly. Up till now we | |
143 | know an offset to apply to get the item but we also | |
0963b4bd | 144 | have to know how much to add to get to the next item. */ |
c5aa993b | 145 | |
c906108c | 146 | ndimen--; |
c5aa993b | 147 | eltlen = TYPE_LENGTH (tmp_type); |
c906108c SS |
148 | F77_DIM_OFFSET (ndimen) = eltlen; |
149 | while (--ndimen > 0) | |
150 | { | |
151 | eltlen *= F77_DIM_SIZE (ndimen + 1); | |
152 | F77_DIM_OFFSET (ndimen) = eltlen; | |
153 | } | |
154 | } | |
155 | ||
b3cacbee DL |
156 | |
157 | ||
c906108c SS |
158 | /* Actual function which prints out F77 arrays, Valaddr == address in |
159 | the superior. Address == the address in the inferior. */ | |
7b0090c3 | 160 | |
c5aa993b | 161 | static void |
a2bd3dcd | 162 | f77_print_array_1 (int nss, int ndimensions, struct type *type, |
490f124f PA |
163 | const gdb_byte *valaddr, |
164 | int embedded_offset, CORE_ADDR address, | |
79a45b7d | 165 | struct ui_file *stream, int recurse, |
0e03807e | 166 | const struct value *val, |
79a45b7d | 167 | const struct value_print_options *options, |
b3cacbee | 168 | int *elts) |
c906108c SS |
169 | { |
170 | int i; | |
c5aa993b | 171 | |
c906108c SS |
172 | if (nss != ndimensions) |
173 | { | |
3e43a32a MS |
174 | for (i = 0; |
175 | (i < F77_DIM_SIZE (nss) && (*elts) < options->print_max); | |
176 | i++) | |
c906108c SS |
177 | { |
178 | fprintf_filtered (stream, "( "); | |
179 | f77_print_array_1 (nss + 1, ndimensions, TYPE_TARGET_TYPE (type), | |
490f124f PA |
180 | valaddr, |
181 | embedded_offset + i * F77_DIM_OFFSET (nss), | |
182 | address, | |
0e03807e | 183 | stream, recurse, val, options, elts); |
c906108c SS |
184 | fprintf_filtered (stream, ") "); |
185 | } | |
79a45b7d | 186 | if (*elts >= options->print_max && i < F77_DIM_SIZE (nss)) |
b3cacbee | 187 | fprintf_filtered (stream, "..."); |
c906108c SS |
188 | } |
189 | else | |
190 | { | |
79a45b7d | 191 | for (i = 0; i < F77_DIM_SIZE (nss) && (*elts) < options->print_max; |
7b0090c3 | 192 | i++, (*elts)++) |
c906108c SS |
193 | { |
194 | val_print (TYPE_TARGET_TYPE (type), | |
490f124f PA |
195 | valaddr, |
196 | embedded_offset + i * F77_DIM_OFFSET (ndimensions), | |
197 | address, stream, recurse, | |
198 | val, options, current_language); | |
c906108c SS |
199 | |
200 | if (i != (F77_DIM_SIZE (nss) - 1)) | |
c5aa993b JM |
201 | fprintf_filtered (stream, ", "); |
202 | ||
79a45b7d TT |
203 | if ((*elts == options->print_max - 1) |
204 | && (i != (F77_DIM_SIZE (nss) - 1))) | |
c906108c SS |
205 | fprintf_filtered (stream, "..."); |
206 | } | |
207 | } | |
208 | } | |
209 | ||
210 | /* This function gets called to print an F77 array, we set up some | |
0963b4bd | 211 | stuff and then immediately call f77_print_array_1(). */ |
c906108c | 212 | |
c5aa993b | 213 | static void |
fc1a4b47 | 214 | f77_print_array (struct type *type, const gdb_byte *valaddr, |
490f124f | 215 | int embedded_offset, |
a2bd3dcd | 216 | CORE_ADDR address, struct ui_file *stream, |
0e03807e TT |
217 | int recurse, |
218 | const struct value *val, | |
219 | const struct value_print_options *options) | |
c906108c | 220 | { |
c5aa993b | 221 | int ndimensions; |
b3cacbee | 222 | int elts = 0; |
c5aa993b JM |
223 | |
224 | ndimensions = calc_f77_array_dims (type); | |
225 | ||
c906108c | 226 | if (ndimensions > MAX_FORTRAN_DIMS || ndimensions < 0) |
3e43a32a MS |
227 | error (_("\ |
228 | Type node corrupt! F77 arrays cannot have %d subscripts (%d Max)"), | |
c906108c | 229 | ndimensions, MAX_FORTRAN_DIMS); |
c5aa993b | 230 | |
c906108c | 231 | /* Since F77 arrays are stored column-major, we set up an |
0963b4bd MS |
232 | offset table to get at the various row's elements. The |
233 | offset table contains entries for both offset and subarray size. */ | |
c906108c | 234 | |
c5aa993b JM |
235 | f77_create_arrayprint_offset_tbl (type, stream); |
236 | ||
490f124f PA |
237 | f77_print_array_1 (1, ndimensions, type, valaddr, embedded_offset, |
238 | address, stream, recurse, val, options, &elts); | |
c5aa993b | 239 | } |
c906108c | 240 | \f |
c5aa993b | 241 | |
e88acd96 TT |
242 | /* Decorations for Fortran. */ |
243 | ||
244 | static const struct generic_val_print_decorations f_decorations = | |
245 | { | |
246 | "(", | |
247 | ",", | |
248 | ")", | |
249 | ".TRUE.", | |
250 | ".FALSE.", | |
251 | "VOID", | |
252 | }; | |
253 | ||
32b72a42 | 254 | /* See val_print for a description of the various parameters of this |
d3eab38a | 255 | function; they are identical. */ |
c906108c | 256 | |
d3eab38a | 257 | void |
fc1a4b47 | 258 | f_val_print (struct type *type, const gdb_byte *valaddr, int embedded_offset, |
79a45b7d | 259 | CORE_ADDR address, struct ui_file *stream, int recurse, |
0e03807e | 260 | const struct value *original_value, |
79a45b7d | 261 | const struct value_print_options *options) |
c906108c | 262 | { |
50810684 | 263 | struct gdbarch *gdbarch = get_type_arch (type); |
e17a4113 | 264 | enum bfd_endian byte_order = gdbarch_byte_order (gdbarch); |
0963b4bd | 265 | unsigned int i = 0; /* Number of characters printed. */ |
c906108c | 266 | struct type *elttype; |
c906108c | 267 | CORE_ADDR addr; |
2a5e440c | 268 | int index; |
c5aa993b | 269 | |
c906108c SS |
270 | CHECK_TYPEDEF (type); |
271 | switch (TYPE_CODE (type)) | |
272 | { | |
c5aa993b | 273 | case TYPE_CODE_STRING: |
c906108c | 274 | f77_get_dynamic_length_of_aggregate (type); |
50810684 | 275 | LA_PRINT_STRING (stream, builtin_type (gdbarch)->builtin_char, |
490f124f PA |
276 | valaddr + embedded_offset, |
277 | TYPE_LENGTH (type), NULL, 0, options); | |
c906108c | 278 | break; |
c5aa993b | 279 | |
c906108c | 280 | case TYPE_CODE_ARRAY: |
3b2b8fea TT |
281 | if (TYPE_CODE (TYPE_TARGET_TYPE (type)) != TYPE_CODE_CHAR) |
282 | { | |
283 | fprintf_filtered (stream, "("); | |
284 | f77_print_array (type, valaddr, embedded_offset, | |
285 | address, stream, recurse, original_value, options); | |
286 | fprintf_filtered (stream, ")"); | |
287 | } | |
288 | else | |
289 | { | |
290 | struct type *ch_type = TYPE_TARGET_TYPE (type); | |
291 | ||
292 | f77_get_dynamic_length_of_aggregate (type); | |
293 | LA_PRINT_STRING (stream, ch_type, | |
294 | valaddr + embedded_offset, | |
295 | TYPE_LENGTH (type) / TYPE_LENGTH (ch_type), | |
296 | NULL, 0, options); | |
297 | } | |
c906108c | 298 | break; |
7e86466e | 299 | |
c906108c | 300 | case TYPE_CODE_PTR: |
79a45b7d | 301 | if (options->format && options->format != 's') |
c906108c | 302 | { |
ab2188aa PA |
303 | val_print_scalar_formatted (type, valaddr, embedded_offset, |
304 | original_value, options, 0, stream); | |
c906108c SS |
305 | break; |
306 | } | |
307 | else | |
308 | { | |
b012acdd TT |
309 | int want_space = 0; |
310 | ||
490f124f | 311 | addr = unpack_pointer (type, valaddr + embedded_offset); |
c906108c | 312 | elttype = check_typedef (TYPE_TARGET_TYPE (type)); |
c5aa993b | 313 | |
c906108c SS |
314 | if (TYPE_CODE (elttype) == TYPE_CODE_FUNC) |
315 | { | |
316 | /* Try to print what function it points to. */ | |
edf0c1b7 | 317 | print_function_pointer_address (options, gdbarch, addr, stream); |
d3eab38a | 318 | return; |
c906108c | 319 | } |
c5aa993b | 320 | |
9cb709b6 TT |
321 | if (options->symbol_print) |
322 | want_space = print_address_demangle (options, gdbarch, addr, | |
323 | stream, demangle); | |
324 | else if (options->addressprint && options->format != 's') | |
b012acdd TT |
325 | { |
326 | fputs_filtered (paddress (gdbarch, addr), stream); | |
327 | want_space = 1; | |
328 | } | |
c5aa993b | 329 | |
c906108c SS |
330 | /* For a pointer to char or unsigned char, also print the string |
331 | pointed to, unless pointer is null. */ | |
332 | if (TYPE_LENGTH (elttype) == 1 | |
333 | && TYPE_CODE (elttype) == TYPE_CODE_INT | |
79a45b7d | 334 | && (options->format == 0 || options->format == 's') |
c906108c | 335 | && addr != 0) |
b012acdd TT |
336 | { |
337 | if (want_space) | |
338 | fputs_filtered (" ", stream); | |
339 | i = val_print_string (TYPE_TARGET_TYPE (type), NULL, addr, -1, | |
340 | stream, options); | |
341 | } | |
d3eab38a | 342 | return; |
7e86466e RH |
343 | } |
344 | break; | |
345 | ||
c906108c | 346 | case TYPE_CODE_INT: |
79a45b7d TT |
347 | if (options->format || options->output_format) |
348 | { | |
349 | struct value_print_options opts = *options; | |
bb9bcb69 | 350 | |
79a45b7d TT |
351 | opts.format = (options->format ? options->format |
352 | : options->output_format); | |
ab2188aa PA |
353 | val_print_scalar_formatted (type, valaddr, embedded_offset, |
354 | original_value, options, 0, stream); | |
79a45b7d | 355 | } |
c906108c SS |
356 | else |
357 | { | |
490f124f | 358 | val_print_type_code_int (type, valaddr + embedded_offset, stream); |
c906108c SS |
359 | /* C and C++ has no single byte int type, char is used instead. |
360 | Since we don't know whether the value is really intended to | |
361 | be used as an integer or a character, print the character | |
0963b4bd | 362 | equivalent as well. */ |
e88acd96 | 363 | if (TYPE_LENGTH (type) == 1) |
c906108c | 364 | { |
490f124f PA |
365 | LONGEST c; |
366 | ||
c906108c | 367 | fputs_filtered (" ", stream); |
490f124f PA |
368 | c = unpack_long (type, valaddr + embedded_offset); |
369 | LA_PRINT_CHAR ((unsigned char) c, type, stream); | |
c906108c SS |
370 | } |
371 | } | |
372 | break; | |
c5aa993b | 373 | |
2a5e440c | 374 | case TYPE_CODE_STRUCT: |
9eec4d1e | 375 | case TYPE_CODE_UNION: |
2a5e440c WZ |
376 | /* Starting from the Fortran 90 standard, Fortran supports derived |
377 | types. */ | |
9eec4d1e | 378 | fprintf_filtered (stream, "( "); |
2a5e440c WZ |
379 | for (index = 0; index < TYPE_NFIELDS (type); index++) |
380 | { | |
381 | int offset = TYPE_FIELD_BITPOS (type, index) / 8; | |
bb9bcb69 | 382 | |
490f124f PA |
383 | val_print (TYPE_FIELD_TYPE (type, index), valaddr, |
384 | embedded_offset + offset, | |
385 | address, stream, recurse + 1, | |
0e03807e | 386 | original_value, options, current_language); |
2a5e440c WZ |
387 | if (index != TYPE_NFIELDS (type) - 1) |
388 | fputs_filtered (", ", stream); | |
389 | } | |
9eec4d1e | 390 | fprintf_filtered (stream, " )"); |
2a5e440c WZ |
391 | break; |
392 | ||
e88acd96 TT |
393 | case TYPE_CODE_REF: |
394 | case TYPE_CODE_FUNC: | |
395 | case TYPE_CODE_FLAGS: | |
396 | case TYPE_CODE_FLT: | |
397 | case TYPE_CODE_VOID: | |
398 | case TYPE_CODE_ERROR: | |
399 | case TYPE_CODE_RANGE: | |
400 | case TYPE_CODE_UNDEF: | |
401 | case TYPE_CODE_COMPLEX: | |
402 | case TYPE_CODE_BOOL: | |
403 | case TYPE_CODE_CHAR: | |
c906108c | 404 | default: |
e88acd96 TT |
405 | generic_val_print (type, valaddr, embedded_offset, address, |
406 | stream, recurse, original_value, options, | |
407 | &f_decorations); | |
408 | break; | |
c906108c SS |
409 | } |
410 | gdb_flush (stream); | |
c906108c SS |
411 | } |
412 | ||
413 | static void | |
4357ac6c TT |
414 | info_common_command_for_block (struct block *block, const char *comname, |
415 | int *any_printed) | |
c906108c | 416 | { |
4357ac6c TT |
417 | struct block_iterator iter; |
418 | struct symbol *sym; | |
419 | const char *name; | |
420 | struct value_print_options opts; | |
421 | ||
422 | get_user_print_options (&opts); | |
423 | ||
424 | ALL_BLOCK_SYMBOLS (block, iter, sym) | |
425 | if (SYMBOL_DOMAIN (sym) == COMMON_BLOCK_DOMAIN) | |
426 | { | |
427 | struct common_block *common = SYMBOL_VALUE_COMMON_BLOCK (sym); | |
428 | size_t index; | |
429 | ||
5a352474 | 430 | gdb_assert (SYMBOL_CLASS (sym) == LOC_COMMON_BLOCK); |
4357ac6c TT |
431 | |
432 | if (comname && (!SYMBOL_LINKAGE_NAME (sym) | |
433 | || strcmp (comname, SYMBOL_LINKAGE_NAME (sym)) != 0)) | |
434 | continue; | |
435 | ||
436 | if (*any_printed) | |
437 | putchar_filtered ('\n'); | |
438 | else | |
439 | *any_printed = 1; | |
440 | if (SYMBOL_PRINT_NAME (sym)) | |
441 | printf_filtered (_("Contents of F77 COMMON block '%s':\n"), | |
442 | SYMBOL_PRINT_NAME (sym)); | |
443 | else | |
444 | printf_filtered (_("Contents of blank COMMON block:\n")); | |
445 | ||
446 | for (index = 0; index < common->n_entries; index++) | |
447 | { | |
448 | struct value *val = NULL; | |
449 | volatile struct gdb_exception except; | |
450 | ||
451 | printf_filtered ("%s = ", | |
452 | SYMBOL_PRINT_NAME (common->contents[index])); | |
453 | ||
454 | TRY_CATCH (except, RETURN_MASK_ERROR) | |
455 | { | |
456 | val = value_of_variable (common->contents[index], block); | |
457 | value_print (val, gdb_stdout, &opts); | |
458 | } | |
459 | ||
460 | if (except.reason < 0) | |
461 | printf_filtered ("<error reading variable: %s>", except.message); | |
462 | putchar_filtered ('\n'); | |
463 | } | |
464 | } | |
c906108c SS |
465 | } |
466 | ||
467 | /* This function is used to print out the values in a given COMMON | |
0963b4bd MS |
468 | block. It will always use the most local common block of the |
469 | given name. */ | |
c906108c | 470 | |
c5aa993b | 471 | static void |
fba45db2 | 472 | info_common_command (char *comname, int from_tty) |
c906108c | 473 | { |
c906108c | 474 | struct frame_info *fi; |
4357ac6c TT |
475 | struct block *block; |
476 | int values_printed = 0; | |
c5aa993b | 477 | |
c906108c SS |
478 | /* We have been told to display the contents of F77 COMMON |
479 | block supposedly visible in this function. Let us | |
480 | first make sure that it is visible and if so, let | |
0963b4bd | 481 | us display its contents. */ |
c5aa993b | 482 | |
206415a3 | 483 | fi = get_selected_frame (_("No frame selected")); |
c5aa993b | 484 | |
c906108c | 485 | /* The following is generally ripped off from stack.c's routine |
0963b4bd | 486 | print_frame_info(). */ |
c5aa993b | 487 | |
4357ac6c TT |
488 | block = get_frame_block (fi, 0); |
489 | if (block == NULL) | |
c906108c | 490 | { |
4357ac6c TT |
491 | printf_filtered (_("No symbol table info available.\n")); |
492 | return; | |
c906108c | 493 | } |
c5aa993b | 494 | |
4357ac6c | 495 | while (block) |
c906108c | 496 | { |
4357ac6c TT |
497 | info_common_command_for_block (block, comname, &values_printed); |
498 | /* After handling the function's top-level block, stop. Don't | |
499 | continue to its superblock, the block of per-file symbols. */ | |
500 | if (BLOCK_FUNCTION (block)) | |
501 | break; | |
502 | block = BLOCK_SUPERBLOCK (block); | |
c906108c | 503 | } |
c5aa993b | 504 | |
4357ac6c | 505 | if (!values_printed) |
c906108c | 506 | { |
4357ac6c TT |
507 | if (comname) |
508 | printf_filtered (_("No common block '%s'.\n"), comname); | |
c5aa993b | 509 | else |
4357ac6c | 510 | printf_filtered (_("No common blocks.\n")); |
c906108c | 511 | } |
c906108c SS |
512 | } |
513 | ||
c906108c | 514 | void |
fba45db2 | 515 | _initialize_f_valprint (void) |
c906108c SS |
516 | { |
517 | add_info ("common", info_common_command, | |
1bedd215 | 518 | _("Print out the values contained in a Fortran COMMON block.")); |
c906108c | 519 | if (xdb_commands) |
c5aa993b | 520 | add_com ("lc", class_info, info_common_command, |
1bedd215 | 521 | _("Print out the values contained in a Fortran COMMON block.")); |
c906108c | 522 | } |