xref: /dragonfly/contrib/gdb-7/gdb/p-lang.h (revision 2020c8fe)
1 /* Pascal language support definitions for GDB, the GNU debugger.
2 
3    Copyright (C) 2000, 2005, 2006, 2007, 2008, 2009, 2010, 2011
4    Free Software Foundation, Inc.
5 
6    This file is part of GDB.
7 
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 3 of the License, or
11    (at your option) any later version.
12 
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17 
18    You should have received a copy of the GNU General Public License
19    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
20 
21 /* This file is derived from c-lang.h */
22 
23 struct value;
24 
25 /* Defined in p-lang.c */
26 extern const char *pascal_main_name (void);
27 
28 extern int pascal_parse (void);	/* Defined in p-exp.y */
29 
30 extern void pascal_error (char *);	/* Defined in p-exp.y */
31 
32 /* Defined in p-typeprint.c */
33 extern void pascal_print_type (struct type *, const char *, struct ui_file *,
34 			       int, int);
35 
36 extern void pascal_print_typedef (struct type *, struct symbol *,
37 				  struct ui_file *);
38 
39 extern int pascal_val_print (struct type *, const gdb_byte *, int,
40 			     CORE_ADDR, struct ui_file *, int,
41 			     const struct value *,
42 			     const struct value_print_options *);
43 
44 extern int pascal_value_print (struct value *, struct ui_file *,
45 			       const struct value_print_options *);
46 
47 extern void pascal_type_print_method_args (char *, char *,
48 					   struct ui_file *);
49 
50 /* These are in p-lang.c: */
51 
52 extern int
53   is_pascal_string_type (struct type *, int *, int *, int *,
54 			 struct type **, char **);
55 
56 extern void pascal_printchar (int, struct type *, struct ui_file *);
57 
58 extern void pascal_printstr (struct ui_file *, struct type *, const gdb_byte *,
59 			     unsigned int, const char *, int,
60 			     const struct value_print_options *);
61 
62 extern struct type **const (pascal_builtin_types[]);
63 
64 /* These are in p-typeprint.c: */
65 
66 extern void
67   pascal_type_print_base (struct type *, struct ui_file *, int, int);
68 
69 extern void
70   pascal_type_print_varspec_prefix (struct type *, struct ui_file *, int, int);
71 
72 extern void pascal_object_print_value_fields (struct type *, const gdb_byte *,
73 					      int,
74 					      CORE_ADDR, struct ui_file *,
75 					      int,
76 					      const struct value *,
77 					      const struct value_print_options *,
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 *);
83