1 /* Java language support definitions for GDB, the GNU debugger.
3 Copyright (C) 1997-2000, 2005, 2007-2012 Free Software Foundation,
6 This file is part of GDB.
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.
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.
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/>. */
25 struct type_print_options
;
27 extern int java_parse (void); /* Defined in jv-exp.y */
29 extern void java_error (char *); /* Defined in jv-exp.y */
31 struct builtin_java_type
33 struct type
*builtin_int
;
34 struct type
*builtin_byte
;
35 struct type
*builtin_short
;
36 struct type
*builtin_long
;
37 struct type
*builtin_boolean
;
38 struct type
*builtin_char
;
39 struct type
*builtin_float
;
40 struct type
*builtin_double
;
41 struct type
*builtin_void
;
44 extern const struct builtin_java_type
*builtin_java_type (struct gdbarch
*);
46 extern void java_val_print (struct type
*, const gdb_byte
*, int, CORE_ADDR
,
47 struct ui_file
*, int,
49 const struct value_print_options
*);
51 extern void java_value_print (struct value
*, struct ui_file
*,
52 const struct value_print_options
*);
54 extern struct value
*java_class_from_object (struct value
*);
56 extern struct type
*type_from_class (struct gdbarch
*, struct value
*);
58 extern struct type
*java_primitive_type (struct gdbarch
*, int signature
);
60 extern struct type
*java_primitive_type_from_name (struct gdbarch
*,
63 extern struct type
*java_array_type (struct type
*, int);
65 extern struct type
*get_java_object_type (void);
66 extern int get_java_object_header_size (struct gdbarch
*);
68 extern struct type
*java_lookup_class (char *);
70 extern int is_object_type (struct type
*);
72 /* Defined in jv-typeprint.c */
73 extern void java_print_type (struct type
*, const char *,
74 struct ui_file
*, int, int,
75 const struct type_print_options
*);
77 extern char *java_demangle_type_signature (const char *);
This page took 0.031075 seconds and 4 git commands to generate.