Commit | Line | Data |
---|---|---|
373a8247 | 1 | /* Pascal language support definitions for GDB, the GNU debugger. |
5bcca90b AC |
2 | |
3 | Copyright 2000, 2005 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 | |
9 | the Free Software Foundation; either version 2 of the License, or | |
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 | |
18 | along with this program; if not, write to the Free Software | |
19 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ | |
20 | ||
21 | /* This file is derived from c-lang.h */ | |
22 | ||
373a8247 | 23 | struct value; |
373a8247 PM |
24 | |
25 | extern int pascal_parse (void); /* Defined in p-exp.y */ | |
26 | ||
27 | extern void pascal_error (char *); /* Defined in p-exp.y */ | |
28 | ||
29 | /* Defined in p-typeprint.c */ | |
30 | extern void pascal_print_type (struct type *, char *, struct ui_file *, int, int); | |
31 | ||
a2bd3dcd AC |
32 | extern int pascal_val_print (struct type *, const bfd_byte *, int, |
33 | CORE_ADDR, struct ui_file *, int, int, | |
373a8247 PM |
34 | int, enum val_prettyprint); |
35 | ||
36 | extern int pascal_value_print (struct value *, struct ui_file *, int, enum val_prettyprint); | |
37 | ||
38 | extern void pascal_type_print_method_args (char *, char *, | |
39 | struct ui_file *); | |
40 | ||
41 | /* These are in p-lang.c: */ | |
42 | ||
e2625b33 PM |
43 | extern int |
44 | is_pascal_string_type (struct type *, int *, int *, int *, int *, char **); | |
5598ce11 | 45 | |
373a8247 PM |
46 | extern void pascal_printchar (int, struct ui_file *); |
47 | ||
ce27fb25 AC |
48 | extern void pascal_printstr (struct ui_file *, const bfd_byte *, |
49 | unsigned int, int, int); | |
373a8247 PM |
50 | |
51 | extern struct type *pascal_create_fundamental_type (struct objfile *, int); | |
52 | ||
53 | extern struct type **const (pascal_builtin_types[]); | |
54 | ||
55 | /* These are in p-typeprint.c: */ | |
56 | ||
57 | extern void | |
58 | pascal_type_print_base (struct type *, struct ui_file *, int, int); | |
59 | ||
60 | extern void | |
61 | pascal_type_print_varspec_prefix (struct type *, struct ui_file *, int, int); | |
62 | ||
63 | /* These are in cp-valprint.c */ | |
64 | ||
65 | extern int vtblprint; /* Controls printing of vtbl's */ | |
66 | ||
67 | extern int static_field_print; | |
68 | ||
5bcca90b AC |
69 | extern void pascal_object_print_class_member (const bfd_byte *, struct type *, |
70 | struct ui_file *, char *); | |
373a8247 | 71 | |
5bcca90b AC |
72 | extern void pascal_object_print_class_method (const bfd_byte *, struct type *, |
73 | struct ui_file *); | |
373a8247 | 74 | |
a2bd3dcd AC |
75 | extern void pascal_object_print_value_fields (struct type *, const bfd_byte *, |
76 | CORE_ADDR, struct ui_file *, | |
77 | int, int, enum val_prettyprint, | |
373a8247 PM |
78 | struct type **, int); |
79 | ||
80 | extern int pascal_object_is_vtbl_ptr_type (struct type *); | |
81 | ||
82 | extern int pascal_object_is_vtbl_member (struct type *); |