xref: /netbsd-src/external/gpl3/gdb.old/dist/gdb/p-lang.h (revision 82d56013d7b633d116a93943de88e08335357a7c)
1 /* Pascal language support definitions for GDB, the GNU debugger.
2 
3    Copyright (C) 2000-2019 Free Software Foundation, Inc.
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 3 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, see <http://www.gnu.org/licenses/>.  */
19 
20 #ifndef P_LANG_H
21 #define P_LANG_H
22 
23 /* This file is derived from c-lang.h */
24 
25 struct value;
26 struct parser_state;
27 
28 /* Defined in p-lang.c */
29 extern const char *pascal_main_name (void);
30 
31 extern int pascal_parse (struct parser_state *); /* Defined in p-exp.y */
32 
33 /* Defined in p-typeprint.c */
34 extern void pascal_print_type (struct type *, const char *, struct ui_file *,
35 			       int, int, const struct type_print_options *);
36 
37 extern void pascal_print_typedef (struct type *, struct symbol *,
38 				  struct ui_file *);
39 
40 extern void pascal_val_print (struct type *, int,
41 			      CORE_ADDR, struct ui_file *, int,
42 			      struct value *,
43 			      const struct value_print_options *);
44 
45 extern void pascal_value_print (struct value *, struct ui_file *,
46 				const struct value_print_options *);
47 
48 extern void pascal_type_print_method_args (const char *, const char *,
49 					   struct ui_file *);
50 
51 /* These are in p-lang.c: */
52 
53 extern int
54   is_pascal_string_type (struct type *, int *, int *, int *,
55 			 struct type **, const char **);
56 
57 extern void pascal_printchar (int, struct type *, struct ui_file *);
58 
59 extern void pascal_printstr (struct ui_file *, struct type *, const gdb_byte *,
60 			     unsigned int, const char *, int,
61 			     const struct value_print_options *);
62 
63 extern struct type **const pascal_builtin_types[];
64 
65 /* These are in p-typeprint.c: */
66 
67 extern void
68   pascal_type_print_base (struct type *, struct ui_file *, int, int,
69 			  const struct type_print_options *);
70 
71 extern void
72   pascal_type_print_varspec_prefix (struct type *, struct ui_file *, int, int,
73 				    const struct type_print_options *);
74 
75 extern void pascal_object_print_value_fields (struct type *, const gdb_byte *,
76 					      LONGEST,
77 					      CORE_ADDR, struct ui_file *,
78 					      int,
79 					      struct value *,
80 					      const struct value_print_options *,
81 					      struct type **, int);
82 
83 extern int pascal_object_is_vtbl_ptr_type (struct type *);
84 
85 extern int pascal_object_is_vtbl_member (struct type *);
86 
87 #endif /* P_LANG_H */
88