Commit | Line | Data |
---|---|---|
373a8247 | 1 | /* Pascal language support definitions for GDB, the GNU debugger. |
5bcca90b | 2 | |
28e7fd62 | 3 | Copyright (C) 2000-2013 Free Software Foundation, Inc. |
373a8247 PM |
4 | |
5 | This file is part of GDB. | |
6 | ||
7 | This program is free software; you can redistribute it and/or modify | |
8 | it under the terms of the GNU General Public License as published by | |
a9762ec7 | 9 | the Free Software Foundation; either version 3 of the License, or |
373a8247 PM |
10 | (at your option) any later version. |
11 | ||
12 | This program is distributed in the hope that it will be useful, | |
13 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 | GNU General Public License for more details. | |
16 | ||
17 | You should have received a copy of the GNU General Public License | |
a9762ec7 | 18 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
373a8247 PM |
19 | |
20 | /* This file is derived from c-lang.h */ | |
21 | ||
373a8247 | 22 | struct value; |
373a8247 | 23 | |
cd6c7346 PM |
24 | /* Defined in p-lang.c */ |
25 | extern const char *pascal_main_name (void); | |
26 | ||
373a8247 PM |
27 | extern int pascal_parse (void); /* Defined in p-exp.y */ |
28 | ||
29 | extern void pascal_error (char *); /* Defined in p-exp.y */ | |
30 | ||
31 | /* Defined in p-typeprint.c */ | |
25b524e8 | 32 | extern void pascal_print_type (struct type *, const char *, struct ui_file *, |
79d43c61 | 33 | int, int, const struct type_print_options *); |
373a8247 | 34 | |
5c6ce71d TT |
35 | extern void pascal_print_typedef (struct type *, struct symbol *, |
36 | struct ui_file *); | |
37 | ||
d3eab38a TT |
38 | extern void pascal_val_print (struct type *, const gdb_byte *, int, |
39 | CORE_ADDR, struct ui_file *, int, | |
40 | const struct value *, | |
41 | const struct value_print_options *); | |
373a8247 | 42 | |
8e069a98 TT |
43 | extern void pascal_value_print (struct value *, struct ui_file *, |
44 | const struct value_print_options *); | |
373a8247 | 45 | |
1d06ead6 | 46 | extern void pascal_type_print_method_args (const char *, const char *, |
373a8247 PM |
47 | struct ui_file *); |
48 | ||
49 | /* These are in p-lang.c: */ | |
50 | ||
6ced1581 | 51 | extern int |
6c7a06a3 | 52 | is_pascal_string_type (struct type *, int *, int *, int *, |
0d5cff50 | 53 | struct type **, const char **); |
5598ce11 | 54 | |
6c7a06a3 | 55 | extern void pascal_printchar (int, struct type *, struct ui_file *); |
373a8247 | 56 | |
6c7a06a3 | 57 | extern void pascal_printstr (struct ui_file *, struct type *, const gdb_byte *, |
be759fcf | 58 | unsigned int, const char *, int, |
79a45b7d | 59 | const struct value_print_options *); |
373a8247 | 60 | |
373a8247 PM |
61 | extern struct type **const (pascal_builtin_types[]); |
62 | ||
63 | /* These are in p-typeprint.c: */ | |
64 | ||
65 | extern void | |
79d43c61 TT |
66 | pascal_type_print_base (struct type *, struct ui_file *, int, int, |
67 | const struct type_print_options *); | |
373a8247 PM |
68 | |
69 | extern void | |
79d43c61 TT |
70 | pascal_type_print_varspec_prefix (struct type *, struct ui_file *, int, int, |
71 | const struct type_print_options *); | |
373a8247 | 72 | |
fc1a4b47 | 73 | extern void pascal_object_print_value_fields (struct type *, const gdb_byte *, |
490f124f | 74 | int, |
a2bd3dcd | 75 | CORE_ADDR, struct ui_file *, |
79a45b7d | 76 | int, |
0e03807e | 77 | const struct value *, |
79a45b7d | 78 | const struct value_print_options *, |
373a8247 PM |
79 | struct type **, int); |
80 | ||
81 | extern int pascal_object_is_vtbl_ptr_type (struct type *); | |
82 | ||
83 | extern int pascal_object_is_vtbl_member (struct type *); |