1 /* Java language support definitions for GDB, the GNU debugger.
2 Copyright 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
4 This file is part of GDB.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
26 extern int java_parse (void); /* Defined in jv-exp.y */
28 extern void java_error (char *); /* Defined in jv-exp.y */
30 /* sizeof (struct Object) */
31 #define JAVA_OBJECT_SIZE (get_java_object_header_size ())
33 extern struct type
*java_int_type
;
34 extern struct type
*java_byte_type
;
35 extern struct type
*java_short_type
;
36 extern struct type
*java_long_type
;
37 extern struct type
*java_boolean_type
;
38 extern struct type
*java_char_type
;
39 extern struct type
*java_float_type
;
40 extern struct type
*java_double_type
;
41 extern struct type
*java_void_type
;
43 extern int java_val_print (struct type
*, char *, int, CORE_ADDR
,
44 struct ui_file
*, int, int, int,
45 enum val_prettyprint
);
47 extern int java_value_print (struct value
*, struct ui_file
*, int,
48 enum val_prettyprint
);
50 extern struct value
*java_class_from_object (struct value
*);
52 extern struct type
*type_from_class (struct value
*);
54 extern struct type
*java_primitive_type (int signature
);
56 extern struct type
*java_primitive_type_from_name (char *, int);
58 extern struct type
*java_array_type (struct type
*, int);
60 extern struct type
*get_java_object_type (void);
61 extern int get_java_object_header_size (void);
63 extern struct type
*java_lookup_class (char *);
65 extern int is_object_type (struct type
*);
67 /* Defined in jv-typeprint.c */
68 extern void java_print_type (struct type
*, char *, struct ui_file
*, int,
71 extern char *java_demangle_type_signature (char *);
This page took 0.031308 seconds and 4 git commands to generate.