* mn10300.igen (OP_F0F4): Need to load contents of register AN0
[platform/upstream/binutils.git] / gdb / jv-lang.h
1 /* Java language support definitions for GDB, the GNU debugger.
2    Copyright 1997 Free Software Foundation, Inc.
3
4 This file is part of GDB.
5
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.
10
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.
15
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, Boston, MA 02111-1307, USA.  */
19
20 extern int
21 java_parse PARAMS ((void));     /* Defined in jv-exp.y */
22
23 extern void
24 java_error PARAMS ((char *));   /* Defined in jv-exp.y */
25
26 #define JAVA_OBJECT_SIZE (1 * 4)  /* sizeof (struct Object) FIXME ! */
27
28 extern struct type *java_int_type;
29 extern struct type *java_byte_type;
30 extern struct type *java_short_type;
31 extern struct type *java_long_type;
32 extern struct type *java_boolean_type;
33 extern struct type *java_char_type;
34 extern struct type *java_float_type;
35 extern struct type *java_double_type;
36 extern struct type *java_void_type;
37
38 /* This objfile contains symtabs that have been dynamically created
39    to record dynamically loaded Java classes and dynamically
40    compiled java methods. */
41 extern struct objfile *dynamics_objfile;
42
43 extern int
44 java_val_print PARAMS ((struct type *, char *, CORE_ADDR, GDB_FILE *, int, int,
45                         int, enum val_prettyprint));
46
47 extern int
48 java_value_print PARAMS ((struct value *, GDB_FILE *, int,
49                           enum val_prettyprint));
50
51 extern value_ptr java_class_from_object PARAMS ((value_ptr));
52
53 extern struct type *type_from_class PARAMS ((struct value*));
54
55 extern struct type *java_primitive_type PARAMS ((int));
56
57 extern struct type *java_array_type PARAMS ((struct type*, int));
58
59 extern struct type *get_java_object_type ();
60
61 extern struct type * java_lookup_class PARAMS((char *));
62
63 extern int is_object_type PARAMS ((struct type*));
64
65 extern void                     /* Defined in jv-typeprint.c */
66 java_print_type PARAMS ((struct type *, char *, GDB_FILE *, int, int));
67
68 extern char * java_demangle_type_signature PARAMS ((char *));