2007-01-24 Jim Blandy <jimb@codesourcery.com>
[deliverable/binutils-gdb.git] / gdb / p-lang.h
CommitLineData
373a8247 1/* Pascal language support definitions for GDB, the GNU debugger.
5bcca90b 2
6aba47ca 3 Copyright (C) 2000, 2005, 2006, 2007 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
197e01b6
EZ
19 Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. */
373a8247
PM
21
22/* This file is derived from c-lang.h */
23
373a8247 24struct value;
373a8247
PM
25
26extern int pascal_parse (void); /* Defined in p-exp.y */
27
28extern void pascal_error (char *); /* Defined in p-exp.y */
29
30/* Defined in p-typeprint.c */
31extern void pascal_print_type (struct type *, char *, struct ui_file *, int, int);
32
fc1a4b47 33extern int pascal_val_print (struct type *, const gdb_byte *, int,
a2bd3dcd 34 CORE_ADDR, struct ui_file *, int, int,
373a8247
PM
35 int, enum val_prettyprint);
36
37extern int pascal_value_print (struct value *, struct ui_file *, int, enum val_prettyprint);
38
39extern void pascal_type_print_method_args (char *, char *,
40 struct ui_file *);
41
42/* These are in p-lang.c: */
43
e2625b33
PM
44extern int
45 is_pascal_string_type (struct type *, int *, int *, int *, int *, char **);
5598ce11 46
373a8247
PM
47extern void pascal_printchar (int, struct ui_file *);
48
fc1a4b47 49extern void pascal_printstr (struct ui_file *, const gdb_byte *,
ce27fb25 50 unsigned int, int, int);
373a8247
PM
51
52extern struct type *pascal_create_fundamental_type (struct objfile *, int);
53
54extern struct type **const (pascal_builtin_types[]);
55
56/* These are in p-typeprint.c: */
57
58extern void
59 pascal_type_print_base (struct type *, struct ui_file *, int, int);
60
61extern void
62 pascal_type_print_varspec_prefix (struct type *, struct ui_file *, int, int);
63
64/* These are in cp-valprint.c */
65
66extern int vtblprint; /* Controls printing of vtbl's */
67
68extern int static_field_print;
69
fc1a4b47 70extern void pascal_object_print_value_fields (struct type *, const gdb_byte *,
a2bd3dcd
AC
71 CORE_ADDR, struct ui_file *,
72 int, int, enum val_prettyprint,
373a8247
PM
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 *);
This page took 0.518073 seconds and 4 git commands to generate.