]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/p-lang.h
2005-01-28 Andrew Cagney <cagney@gnu.org>
[thirdparty/binutils-gdb.git] / gdb / p-lang.h
CommitLineData
373a8247
PM
1/* Pascal language support definitions for GDB, the GNU debugger.
2 Copyright 2000 Free Software Foundation, Inc.
3
4 This file is part of GDB.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
19
20/* This file is derived from c-lang.h */
21
373a8247 22struct value;
373a8247
PM
23
24extern int pascal_parse (void); /* Defined in p-exp.y */
25
26extern void pascal_error (char *); /* Defined in p-exp.y */
27
28/* Defined in p-typeprint.c */
29extern void pascal_print_type (struct type *, char *, struct ui_file *, int, int);
30
31extern int pascal_val_print (struct type *, char *, int, CORE_ADDR, struct ui_file *, int, int,
32 int, enum val_prettyprint);
33
34extern int pascal_value_print (struct value *, struct ui_file *, int, enum val_prettyprint);
35
36extern void pascal_type_print_method_args (char *, char *,
37 struct ui_file *);
38
39/* These are in p-lang.c: */
40
e2625b33
PM
41extern int
42 is_pascal_string_type (struct type *, int *, int *, int *, int *, char **);
5598ce11 43
373a8247
PM
44extern void pascal_printchar (int, struct ui_file *);
45
ce27fb25
AC
46extern void pascal_printstr (struct ui_file *, const bfd_byte *,
47 unsigned int, int, int);
373a8247
PM
48
49extern struct type *pascal_create_fundamental_type (struct objfile *, int);
50
51extern struct type **const (pascal_builtin_types[]);
52
53/* These are in p-typeprint.c: */
54
55extern void
56 pascal_type_print_base (struct type *, struct ui_file *, int, int);
57
58extern void
59 pascal_type_print_varspec_prefix (struct type *, struct ui_file *, int, int);
60
61/* These are in cp-valprint.c */
62
63extern int vtblprint; /* Controls printing of vtbl's */
64
65extern int static_field_print;
66
67extern void pascal_object_print_class_member (char *, struct type *, struct ui_file *, char *);
68
69extern void pascal_object_print_class_method (char *, struct type *, struct ui_file *);
70
71extern void pascal_object_print_value_fields (struct type *, char *, CORE_ADDR,
72 struct ui_file *, int, int, enum val_prettyprint,
73 struct type **, int);
74
75extern int pascal_object_is_vtbl_ptr_type (struct type *);
76
77extern int pascal_object_is_vtbl_member (struct type *);