xref: /dragonfly/contrib/gdb-7/gdb/c-lang.h (revision 0ca59c34)
1 /* C language support definitions for GDB, the GNU debugger.
2 
3    Copyright (C) 1992-2013 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 
21 #if !defined (C_LANG_H)
22 #define C_LANG_H 1
23 
24 struct ui_file;
25 struct language_arch_info;
26 struct type_print_options;
27 
28 #include "value.h"
29 #include "macroexp.h"
30 #include "parser-defs.h"
31 
32 
33 /* The various kinds of C string and character.  Note that these
34    values are chosen so that they may be or'd together in certain
35    ways.  */
36 enum c_string_type
37   {
38     /* An ordinary string: "value".  */
39     C_STRING = 0,
40     /* A wide string: L"value".  */
41     C_WIDE_STRING = 1,
42     /* A 16-bit Unicode string: u"value".  */
43     C_STRING_16 = 2,
44     /* A 32-bit Unicode string: U"value".  */
45     C_STRING_32 = 3,
46     /* An ordinary char: 'v'.  This can also be or'd with one of the
47        above to form the corresponding CHAR value from a STRING
48        value.  */
49     C_CHAR = 4,
50     /* A wide char: L'v'.  */
51     C_WIDE_CHAR = 5,
52     /* A 16-bit Unicode char: u'v'.  */
53     C_CHAR_16 = 6,
54     /* A 32-bit Unicode char: U'v'.  */
55     C_CHAR_32 = 7
56   };
57 
58 /* Defined in c-exp.y.  */
59 
60 extern int c_parse (void);
61 
62 extern void c_error (char *);
63 
64 extern int c_parse_escape (char **, struct obstack *);
65 
66 /* Defined in c-typeprint.c */
67 extern void c_print_type (struct type *, const char *,
68 			  struct ui_file *, int, int,
69 			  const struct type_print_options *);
70 
71 extern void c_print_typedef (struct type *,
72 			     struct symbol *,
73 			     struct ui_file *);
74 
75 extern void c_val_print (struct type *, const gdb_byte *,
76 			 int, CORE_ADDR,
77 			 struct ui_file *, int,
78 			 const struct value *,
79 			 const struct value_print_options *);
80 
81 extern void c_value_print (struct value *, struct ui_file *,
82 			   const struct value_print_options *);
83 
84 /* These are in c-lang.c: */
85 
86 extern struct value *evaluate_subexp_c (struct type *expect_type,
87 					struct expression *exp,
88 					int *pos,
89 					enum noside noside);
90 
91 extern void c_printchar (int, struct type *, struct ui_file *);
92 
93 extern void c_printstr (struct ui_file * stream,
94 			struct type *elttype,
95 			const gdb_byte *string,
96 			unsigned int length,
97 			const char *user_encoding,
98 			int force_ellipses,
99 			const struct value_print_options *options);
100 
101 extern void c_language_arch_info (struct gdbarch *gdbarch,
102 				  struct language_arch_info *lai);
103 
104 extern const struct exp_descriptor exp_descriptor_c;
105 
106 extern void c_emit_char (int c, struct type *type,
107 			 struct ui_file *stream, int quoter);
108 
109 extern const struct op_print c_op_print_tab[];
110 
111 /* These are in c-typeprint.c: */
112 
113 extern void c_type_print_base (struct type *, struct ui_file *,
114 			       int, int, const struct type_print_options *);
115 
116 /* These are in cp-valprint.c */
117 
118 extern void cp_print_class_member (const gdb_byte *, struct type *,
119 				   struct ui_file *, char *);
120 
121 extern void cp_print_value_fields (struct type *, struct type *,
122 				   const gdb_byte *, int, CORE_ADDR,
123 				   struct ui_file *, int,
124 				   const struct value *,
125 				   const struct value_print_options *,
126 				   struct type **, int);
127 
128 extern void cp_print_value_fields_rtti (struct type *,
129 					const gdb_byte *, int, CORE_ADDR,
130 					struct ui_file *, int,
131 					const struct value *,
132 					const struct value_print_options *,
133 					struct type **, int);
134 
135 extern int cp_is_vtbl_ptr_type (struct type *);
136 
137 extern int cp_is_vtbl_member (struct type *);
138 
139 /* These are in c-valprint.c.  */
140 
141 extern int c_textual_element_type (struct type *, char);
142 
143 
144 #endif /* !defined (C_LANG_H) */
145