* gdb.texinfo (Target Commands): Fix typo.
[deliverable/binutils-gdb.git] / gdb / f-lang.h
CommitLineData
c906108c 1/* Fortran language support definitions for GDB, the GNU debugger.
a2bd3dcd 2
28e7fd62 3 Copyright (C) 1992-2013 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).
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 22
79d43c61
TT
23struct type_print_options;
24
a14ed312 25extern int f_parse (void);
c906108c 26
a14ed312 27extern void f_error (char *); /* Defined in f-exp.y */
c906108c 28
25b524e8 29extern void f_print_type (struct type *, const char *, struct ui_file *, int,
79d43c61 30 int, const struct type_print_options *);
c906108c 31
d3eab38a
TT
32extern void f_val_print (struct type *, const gdb_byte *, int, CORE_ADDR,
33 struct ui_file *, int,
34 const struct value *,
35 const struct value_print_options *);
c906108c 36
c5aa993b 37/* Language-specific data structures */
c906108c 38
0b4e1325
WZ
39/* In F90 subrange expression, either bound could be empty, indicating that
40 its value is by default that of the corresponding bound of the array or
41 string. So we have four sorts of subrange in F90. This enumeration type
42 is to identify this. */
43
44enum f90_range_type
45 {
46 BOTH_BOUND_DEFAULT, /* "(:)" */
47 LOW_BOUND_DEFAULT, /* "(:high)" */
48 HIGH_BOUND_DEFAULT, /* "(low:)" */
49 NONE_BOUND_DEFAULT /* "(low:high)" */
50 };
51
4357ac6c 52/* A common block. */
c906108c 53
4357ac6c
TT
54struct common_block
55{
56 /* The number of entries in the block. */
57 size_t n_entries;
c906108c 58
4357ac6c
TT
59 /* The contents of the block, allocated using the struct hack. All
60 pointers in the array are non-NULL. */
61 struct symbol *contents[1];
62};
c906108c 63
d78df370 64extern int f77_get_upperbound (struct type *);
c906108c 65
d78df370 66extern int f77_get_lowerbound (struct type *);
c906108c 67
a14ed312 68extern void f77_get_dynamic_array_length (struct type *);
c906108c 69
a14ed312 70extern int calc_f77_array_dims (struct type *);
4cca3ac9
UW
71
72
73/* Fortran (F77) types */
74
75struct builtin_f_type
76{
77 struct type *builtin_character;
78 struct type *builtin_integer;
79 struct type *builtin_integer_s2;
80 struct type *builtin_logical;
81 struct type *builtin_logical_s1;
82 struct type *builtin_logical_s2;
ce4b0682 83 struct type *builtin_logical_s8;
4cca3ac9
UW
84 struct type *builtin_real;
85 struct type *builtin_real_s8;
86 struct type *builtin_real_s16;
87 struct type *builtin_complex_s8;
88 struct type *builtin_complex_s16;
89 struct type *builtin_complex_s32;
90 struct type *builtin_void;
91};
92
93/* Return the Fortran type table for the specified architecture. */
94extern const struct builtin_f_type *builtin_f_type (struct gdbarch *gdbarch);
95
This page took 0.87415 seconds and 4 git commands to generate.