]>
Commit | Line | Data |
---|---|---|
c906108c | 1 | /* Fortran language support definitions for GDB, the GNU debugger. |
a2bd3dcd | 2 | |
0b302171 JB |
3 | Copyright (C) 1992-1995, 1998, 2000, 2005, 2007-2012 Free Software |
4 | Foundation, Inc. | |
a2bd3dcd | 5 | |
c906108c SS |
6 | Contributed by Motorola. Adapted from the C definitions by Farooq Butt |
7 | ([email protected]). | |
8 | ||
c5aa993b | 9 | This file is part of GDB. |
c906108c | 10 | |
c5aa993b JM |
11 | This program is free software; you can redistribute it and/or modify |
12 | it under the terms of the GNU General Public License as published by | |
a9762ec7 | 13 | the Free Software Foundation; either version 3 of the License, or |
c5aa993b | 14 | (at your option) any later version. |
c906108c | 15 | |
c5aa993b JM |
16 | This program is distributed in the hope that it will be useful, |
17 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 | GNU General Public License for more details. | |
c906108c | 20 | |
c5aa993b | 21 | You should have received a copy of the GNU General Public License |
a9762ec7 | 22 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
c906108c | 23 | |
a14ed312 | 24 | extern int f_parse (void); |
c906108c | 25 | |
a14ed312 | 26 | extern void f_error (char *); /* Defined in f-exp.y */ |
c906108c | 27 | |
25b524e8 | 28 | extern void f_print_type (struct type *, const char *, struct ui_file *, int, |
d9fcf2fb | 29 | int); |
c906108c | 30 | |
d3eab38a TT |
31 | extern void f_val_print (struct type *, const gdb_byte *, int, CORE_ADDR, |
32 | struct ui_file *, int, | |
33 | const struct value *, | |
34 | const struct value_print_options *); | |
c906108c | 35 | |
c5aa993b | 36 | /* Language-specific data structures */ |
c906108c | 37 | |
0b4e1325 WZ |
38 | /* In F90 subrange expression, either bound could be empty, indicating that |
39 | its value is by default that of the corresponding bound of the array or | |
40 | string. So we have four sorts of subrange in F90. This enumeration type | |
41 | is to identify this. */ | |
42 | ||
43 | enum f90_range_type | |
44 | { | |
45 | BOTH_BOUND_DEFAULT, /* "(:)" */ | |
46 | LOW_BOUND_DEFAULT, /* "(:high)" */ | |
47 | HIGH_BOUND_DEFAULT, /* "(low:)" */ | |
48 | NONE_BOUND_DEFAULT /* "(low:high)" */ | |
49 | }; | |
50 | ||
4357ac6c | 51 | /* A common block. */ |
c906108c | 52 | |
4357ac6c TT |
53 | struct common_block |
54 | { | |
55 | /* The number of entries in the block. */ | |
56 | size_t n_entries; | |
c906108c | 57 | |
4357ac6c TT |
58 | /* The contents of the block, allocated using the struct hack. All |
59 | pointers in the array are non-NULL. */ | |
60 | struct symbol *contents[1]; | |
61 | }; | |
c906108c | 62 | |
d78df370 | 63 | extern int f77_get_upperbound (struct type *); |
c906108c | 64 | |
d78df370 | 65 | extern int f77_get_lowerbound (struct type *); |
c906108c | 66 | |
a14ed312 | 67 | extern void f77_get_dynamic_array_length (struct type *); |
c906108c | 68 | |
a14ed312 | 69 | extern int calc_f77_array_dims (struct type *); |
4cca3ac9 UW |
70 | |
71 | ||
72 | /* Fortran (F77) types */ | |
73 | ||
74 | struct builtin_f_type | |
75 | { | |
76 | struct type *builtin_character; | |
77 | struct type *builtin_integer; | |
78 | struct type *builtin_integer_s2; | |
79 | struct type *builtin_logical; | |
80 | struct type *builtin_logical_s1; | |
81 | struct type *builtin_logical_s2; | |
ce4b0682 | 82 | struct type *builtin_logical_s8; |
4cca3ac9 UW |
83 | struct type *builtin_real; |
84 | struct type *builtin_real_s8; | |
85 | struct type *builtin_real_s16; | |
86 | struct type *builtin_complex_s8; | |
87 | struct type *builtin_complex_s16; | |
88 | struct type *builtin_complex_s32; | |
89 | struct type *builtin_void; | |
90 | }; | |
91 | ||
92 | /* Return the Fortran type table for the specified architecture. */ | |
93 | extern const struct builtin_f_type *builtin_f_type (struct gdbarch *gdbarch); | |
94 |