Commit | Line | Data |
---|---|---|
c906108c | 1 | /* Java language support definitions for GDB, the GNU debugger. |
a2bd3dcd | 2 | |
32d0add0 | 3 | Copyright (C) 1997-2015 Free Software Foundation, Inc. |
c906108c | 4 | |
c5aa993b | 5 | This file is part of GDB. |
c906108c | 6 | |
c5aa993b JM |
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 | |
a9762ec7 | 9 | the Free Software Foundation; either version 3 of the License, or |
c5aa993b | 10 | (at your option) any later version. |
c906108c | 11 | |
c5aa993b JM |
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. | |
c906108c | 16 | |
c5aa993b | 17 | You should have received a copy of the GNU General Public License |
a9762ec7 | 18 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
c906108c | 19 | |
75c9979e AC |
20 | #ifndef JV_LANG_H |
21 | #define JV_LANG_H | |
22 | ||
23 | struct value; | |
79d43c61 | 24 | struct type_print_options; |
410a0ff2 | 25 | struct parser_state; |
75c9979e | 26 | |
410a0ff2 | 27 | extern int java_parse (struct parser_state *); /* Defined in jv-exp.y */ |
c906108c | 28 | |
a14ed312 | 29 | extern void java_error (char *); /* Defined in jv-exp.y */ |
c906108c | 30 | |
0daa2b63 UW |
31 | struct builtin_java_type |
32 | { | |
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; | |
42 | }; | |
43 | ||
44 | extern const struct builtin_java_type *builtin_java_type (struct gdbarch *); | |
c906108c | 45 | |
d3eab38a TT |
46 | extern void java_val_print (struct type *, const gdb_byte *, int, CORE_ADDR, |
47 | struct ui_file *, int, | |
48 | const struct value *, | |
49 | const struct value_print_options *); | |
c906108c | 50 | |
8e069a98 TT |
51 | extern void java_value_print (struct value *, struct ui_file *, |
52 | const struct value_print_options *); | |
c906108c | 53 | |
75c9979e | 54 | extern struct value *java_class_from_object (struct value *); |
c906108c | 55 | |
0daa2b63 | 56 | extern struct type *type_from_class (struct gdbarch *, struct value *); |
c906108c | 57 | |
0daa2b63 | 58 | extern struct type *java_primitive_type (struct gdbarch *, int signature); |
c906108c | 59 | |
0daa2b63 | 60 | extern struct type *java_primitive_type_from_name (struct gdbarch *, |
0d5cff50 | 61 | const char *, int); |
c906108c | 62 | |
a14ed312 | 63 | extern struct type *java_array_type (struct type *, int); |
c906108c | 64 | |
a14ed312 | 65 | extern struct type *get_java_object_type (void); |
45d5d5ca | 66 | extern int get_java_object_header_size (struct gdbarch *); |
c906108c | 67 | |
a14ed312 | 68 | extern struct type *java_lookup_class (char *); |
c906108c | 69 | |
a14ed312 | 70 | extern int is_object_type (struct type *); |
c906108c | 71 | |
d9fcf2fb | 72 | /* Defined in jv-typeprint.c */ |
1777feb0 | 73 | extern void java_print_type (struct type *, const char *, |
79d43c61 TT |
74 | struct ui_file *, int, int, |
75 | const struct type_print_options *); | |
c906108c | 76 | |
0d5cff50 | 77 | extern char *java_demangle_type_signature (const char *); |
75c9979e AC |
78 | |
79 | #endif |