Update
[gdb.git] / gdb / p-lang.h
blobb840041a865e37aec062d694a590f1917a9a5755
1 /* Pascal language support definitions for GDB, the GNU debugger.
3 Copyright (C) 2000, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
5 This file is part of GDB.
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 3 of the License, or
10 (at your option) any later version.
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.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20 /* This file is derived from c-lang.h */
22 struct value;
24 /* Defined in p-lang.c */
25 extern const char *pascal_main_name (void);
27 extern int pascal_parse (void); /* Defined in p-exp.y */
29 extern void pascal_error (char *); /* Defined in p-exp.y */
31 /* Defined in p-typeprint.c */
32 extern void pascal_print_type (struct type *, char *, struct ui_file *, int, int);
34 extern int pascal_val_print (struct type *, const gdb_byte *, int,
35 CORE_ADDR, struct ui_file *, int, int,
36 int, enum val_prettyprint);
38 extern int pascal_value_print (struct value *, struct ui_file *, int, enum val_prettyprint);
40 extern void pascal_type_print_method_args (char *, char *,
41 struct ui_file *);
43 /* These are in p-lang.c: */
45 extern int
46 is_pascal_string_type (struct type *, int *, int *, int *, int *, char **);
48 extern void pascal_printchar (int, struct ui_file *);
50 extern void pascal_printstr (struct ui_file *, const gdb_byte *,
51 unsigned int, int, int);
53 extern struct type **const (pascal_builtin_types[]);
55 /* These are in p-typeprint.c: */
57 extern void
58 pascal_type_print_base (struct type *, struct ui_file *, int, int);
60 extern void
61 pascal_type_print_varspec_prefix (struct type *, struct ui_file *, int, int);
63 /* These are in cp-valprint.c */
65 extern int vtblprint; /* Controls printing of vtbl's */
67 extern int static_field_print;
69 extern void pascal_object_print_value_fields (struct type *, const gdb_byte *,
70 CORE_ADDR, struct ui_file *,
71 int, int, enum val_prettyprint,
72 struct type **, int);
74 extern int pascal_object_is_vtbl_ptr_type (struct type *);
76 extern int pascal_object_is_vtbl_member (struct type *);