1 /* Java language support routines for GDB, the GNU debugger.
3 Copyright (C) 1997-2013 Free Software Foundation, Inc.
5 This file is part of GDB.
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.
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.
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/>. */
23 #include "expression.h"
24 #include "parser-defs.h"
30 #include "gdb_string.h"
38 #include "dictionary.h"
40 #include "gdb_assert.h"
43 #include "cp-support.h"
47 extern void _initialize_java_language (void);
49 static int java_demangled_signature_length (const char *);
50 static void java_demangled_signature_copy (char *, const char *);
52 static struct symtab
*get_java_class_symtab (struct gdbarch
*gdbarch
);
53 static char *get_java_utf8_name (struct obstack
*obstack
, struct value
*name
);
54 static int java_class_is_primitive (struct value
*clas
);
55 static struct value
*java_value_string (char *ptr
, int len
);
57 static void java_emit_char (int c
, struct type
*type
,
58 struct ui_file
* stream
, int quoter
);
60 static char *java_class_name_from_physname (const char *physname
);
62 static const struct objfile_data
*jv_dynamics_objfile_data_key
;
64 /* The dynamic objfile is kept per-program-space. This key lets us
65 associate the objfile with the program space. */
67 static const struct program_space_data
*jv_dynamics_progspace_key
;
69 static struct type
*java_link_class_type (struct gdbarch
*,
70 struct type
*, struct value
*);
72 /* An instance of this structure is used to store some data that must
75 struct jv_per_objfile_data
77 /* The expandable dictionary we use. */
78 struct dictionary
*dict
;
81 /* A function called when the dynamics_objfile is freed. We use this
82 to clean up some internal state. */
84 jv_per_objfile_free (struct objfile
*objfile
, void *data
)
86 struct jv_per_objfile_data
*jv_data
= data
;
87 struct objfile
*dynamics_objfile
;
89 dynamics_objfile
= program_space_data (current_program_space
,
90 jv_dynamics_progspace_key
);
91 gdb_assert (objfile
== dynamics_objfile
);
94 dict_free (jv_data
->dict
);
97 set_program_space_data (current_program_space
,
98 jv_dynamics_progspace_key
,
102 /* FIXME: carlton/2003-02-04: This is the main or only caller of
103 allocate_objfile with first argument NULL; as a result, this code
104 breaks every so often. Somebody should write a test case that
105 exercises GDB in various ways (e.g. something involving loading a
106 dynamic library) after this code has been called. */
108 static struct objfile
*
109 get_dynamics_objfile (struct gdbarch
*gdbarch
)
111 struct objfile
*dynamics_objfile
;
113 dynamics_objfile
= program_space_data (current_program_space
,
114 jv_dynamics_progspace_key
);
116 if (dynamics_objfile
== NULL
)
118 struct jv_per_objfile_data
*data
;
120 /* Mark it as shared so that it is cleared when the inferior is
122 dynamics_objfile
= allocate_objfile (NULL
, NULL
,
123 OBJF_SHARED
| OBJF_NOT_FILENAME
);
124 dynamics_objfile
->per_bfd
->gdbarch
= gdbarch
;
126 data
= XCNEW (struct jv_per_objfile_data
);
127 set_objfile_data (dynamics_objfile
, jv_dynamics_objfile_data_key
, data
);
129 set_program_space_data (current_program_space
,
130 jv_dynamics_progspace_key
,
133 return dynamics_objfile
;
136 static struct symtab
*
137 get_java_class_symtab (struct gdbarch
*gdbarch
)
139 struct objfile
*objfile
= get_dynamics_objfile (gdbarch
);
140 struct symtab
*class_symtab
= objfile
->symtabs
;
142 if (class_symtab
== NULL
)
144 struct blockvector
*bv
;
146 struct jv_per_objfile_data
*jv_data
;
148 class_symtab
= allocate_symtab ("<java-classes>", objfile
);
149 class_symtab
->language
= language_java
;
150 bv
= (struct blockvector
*)
151 obstack_alloc (&objfile
->objfile_obstack
,
152 sizeof (struct blockvector
) + sizeof (struct block
*));
153 BLOCKVECTOR_NBLOCKS (bv
) = 1;
154 BLOCKVECTOR (class_symtab
) = bv
;
156 /* Allocate dummy STATIC_BLOCK. */
157 bl
= allocate_block (&objfile
->objfile_obstack
);
158 BLOCK_DICT (bl
) = dict_create_linear (&objfile
->objfile_obstack
,
160 BLOCKVECTOR_BLOCK (bv
, STATIC_BLOCK
) = bl
;
162 /* Allocate GLOBAL_BLOCK. */
163 bl
= allocate_global_block (&objfile
->objfile_obstack
);
164 BLOCK_DICT (bl
) = dict_create_hashed_expandable ();
165 set_block_symtab (bl
, class_symtab
);
166 BLOCKVECTOR_BLOCK (bv
, GLOBAL_BLOCK
) = bl
;
168 /* Arrange to free the dict. */
169 jv_data
= objfile_data (objfile
, jv_dynamics_objfile_data_key
);
170 jv_data
->dict
= BLOCK_DICT (bl
);
176 add_class_symtab_symbol (struct symbol
*sym
)
178 struct symtab
*symtab
179 = get_java_class_symtab (get_objfile_arch (SYMBOL_SYMTAB (sym
)->objfile
));
180 struct blockvector
*bv
= BLOCKVECTOR (symtab
);
182 dict_add_symbol (BLOCK_DICT (BLOCKVECTOR_BLOCK (bv
, GLOBAL_BLOCK
)), sym
);
185 static struct symbol
*
186 add_class_symbol (struct type
*type
, CORE_ADDR addr
)
189 struct objfile
*objfile
= get_dynamics_objfile (get_type_arch (type
));
191 sym
= allocate_symbol (objfile
);
192 SYMBOL_SET_LANGUAGE (sym
, language_java
, &objfile
->objfile_obstack
);
193 SYMBOL_SET_LINKAGE_NAME (sym
, TYPE_TAG_NAME (type
));
194 SYMBOL_ACLASS_INDEX (sym
) = LOC_TYPEDEF
;
195 /* SYMBOL_VALUE (sym) = valu; */
196 SYMBOL_TYPE (sym
) = type
;
197 SYMBOL_DOMAIN (sym
) = STRUCT_DOMAIN
;
198 SYMBOL_VALUE_ADDRESS (sym
) = addr
;
203 java_lookup_class (char *name
)
207 sym
= lookup_symbol (name
, expression_context_block
, STRUCT_DOMAIN
, NULL
);
209 return SYMBOL_TYPE (sym
);
210 /* FIXME - should search inferior's symbol table. */
214 /* Return a nul-terminated string (allocated on OBSTACK) for
215 a name given by NAME (which has type Utf8Const*). */
218 get_java_utf8_name (struct obstack
*obstack
, struct value
*name
)
221 struct value
*temp
= name
;
225 temp
= value_struct_elt (&temp
, NULL
, "length", NULL
, "structure");
226 name_length
= (int) value_as_long (temp
);
227 data_addr
= value_address (temp
) + TYPE_LENGTH (value_type (temp
));
228 chrs
= obstack_alloc (obstack
, name_length
+ 1);
229 chrs
[name_length
] = '\0';
230 read_memory (data_addr
, (gdb_byte
*) chrs
, name_length
);
235 java_class_from_object (struct value
*obj_val
)
237 /* This is all rather inefficient, since the offsets of vtable and
238 class are fixed. FIXME */
239 struct value
*vtable_val
;
241 if (TYPE_CODE (value_type (obj_val
)) == TYPE_CODE_PTR
242 && TYPE_LENGTH (TYPE_TARGET_TYPE (value_type (obj_val
))) == 0)
243 obj_val
= value_at (get_java_object_type (),
244 value_as_address (obj_val
));
246 vtable_val
= value_struct_elt (&obj_val
, NULL
, "vtable", NULL
, "structure");
247 return value_struct_elt (&vtable_val
, NULL
, "class", NULL
, "structure");
250 /* Check if CLASS_IS_PRIMITIVE(value of clas): */
252 java_class_is_primitive (struct value
*clas
)
254 struct value
*vtable
= value_struct_elt (&clas
, NULL
, "vtable",
256 CORE_ADDR i
= value_as_address (vtable
);
258 return (int) (i
& 0x7fffffff) == (int) 0x7fffffff;
261 /* Read a GCJ Class object, and generated a gdb (TYPE_CODE_STRUCT) type. */
264 type_from_class (struct gdbarch
*gdbarch
, struct value
*clas
)
269 struct objfile
*objfile
;
270 struct value
*utf8_name
;
274 type
= check_typedef (value_type (clas
));
275 if (TYPE_CODE (type
) == TYPE_CODE_PTR
)
277 if (value_logical_not (clas
))
279 clas
= value_ind (clas
);
281 addr
= value_address (clas
);
283 objfile
= get_dynamics_objfile (gdbarch
);
284 if (java_class_is_primitive (clas
))
289 sig
= value_struct_elt (&temp
, NULL
, "method_count", NULL
, "structure");
290 return java_primitive_type (gdbarch
, value_as_long (sig
));
293 /* Get Class name. */
294 /* If clasloader non-null, prepend loader address. FIXME */
296 utf8_name
= value_struct_elt (&temp
, NULL
, "name", NULL
, "structure");
297 name
= get_java_utf8_name (&objfile
->objfile_obstack
, utf8_name
);
298 for (nptr
= name
; *nptr
!= 0; nptr
++)
304 type
= java_lookup_class (name
);
308 type
= alloc_type (objfile
);
309 TYPE_CODE (type
) = TYPE_CODE_STRUCT
;
310 INIT_CPLUS_SPECIFIC (type
);
314 char *signature
= name
;
315 int namelen
= java_demangled_signature_length (signature
);
317 if (namelen
> strlen (name
))
318 name
= obstack_alloc (&objfile
->objfile_obstack
, namelen
+ 1);
319 java_demangled_signature_copy (name
, signature
);
320 name
[namelen
] = '\0';
322 /* Set array element type. */
323 temp
= value_struct_elt (&temp
, NULL
, "methods", NULL
, "structure");
324 deprecated_set_value_type (temp
,
325 lookup_pointer_type (value_type (clas
)));
326 TYPE_TARGET_TYPE (type
) = type_from_class (gdbarch
, temp
);
329 ALLOCATE_CPLUS_STRUCT_TYPE (type
);
330 TYPE_TAG_NAME (type
) = name
;
332 add_class_symtab_symbol (add_class_symbol (type
, addr
));
333 return java_link_class_type (gdbarch
, type
, clas
);
336 /* Fill in class TYPE with data from the CLAS value. */
339 java_link_class_type (struct gdbarch
*gdbarch
,
340 struct type
*type
, struct value
*clas
)
343 const char *unqualified_name
;
344 const char *name
= TYPE_TAG_NAME (type
);
345 int ninterfaces
, nfields
, nmethods
;
346 int type_is_object
= 0;
347 struct fn_field
*fn_fields
;
348 struct fn_fieldlist
*fn_fieldlists
;
349 struct value
*fields
;
350 struct value
*methods
;
351 struct value
*method
= NULL
;
352 struct value
*field
= NULL
;
354 struct objfile
*objfile
= get_dynamics_objfile (gdbarch
);
357 gdb_assert (name
!= NULL
);
358 unqualified_name
= strrchr (name
, '.');
359 if (unqualified_name
== NULL
)
360 unqualified_name
= name
;
363 temp
= value_struct_elt (&temp
, NULL
, "superclass", NULL
, "structure");
364 if (strcmp (name
, "java.lang.Object") == 0)
366 tsuper
= get_java_object_type ();
367 if (tsuper
&& TYPE_CODE (tsuper
) == TYPE_CODE_PTR
)
368 tsuper
= TYPE_TARGET_TYPE (tsuper
);
372 tsuper
= type_from_class (gdbarch
, temp
);
378 ninterfaces
= value_as_long (value_struct_elt (&temp
, NULL
, "interface_len",
381 TYPE_N_BASECLASSES (type
) = (tsuper
== NULL
? 0 : 1) + ninterfaces
;
383 nfields
= value_as_long (value_struct_elt (&temp
, NULL
, "field_count",
385 nfields
+= TYPE_N_BASECLASSES (type
);
386 nfields
++; /* Add one for dummy "class" field. */
387 TYPE_NFIELDS (type
) = nfields
;
388 TYPE_FIELDS (type
) = (struct field
*)
389 TYPE_ALLOC (type
, sizeof (struct field
) * nfields
);
391 memset (TYPE_FIELDS (type
), 0, sizeof (struct field
) * nfields
);
393 TYPE_FIELD_PRIVATE_BITS (type
) =
394 (B_TYPE
*) TYPE_ALLOC (type
, B_BYTES (nfields
));
395 B_CLRALL (TYPE_FIELD_PRIVATE_BITS (type
), nfields
);
397 TYPE_FIELD_PROTECTED_BITS (type
) =
398 (B_TYPE
*) TYPE_ALLOC (type
, B_BYTES (nfields
));
399 B_CLRALL (TYPE_FIELD_PROTECTED_BITS (type
), nfields
);
401 TYPE_FIELD_IGNORE_BITS (type
) =
402 (B_TYPE
*) TYPE_ALLOC (type
, B_BYTES (nfields
));
403 B_CLRALL (TYPE_FIELD_IGNORE_BITS (type
), nfields
);
405 TYPE_FIELD_VIRTUAL_BITS (type
) = (B_TYPE
*)
406 TYPE_ALLOC (type
, B_BYTES (TYPE_N_BASECLASSES (type
)));
407 B_CLRALL (TYPE_FIELD_VIRTUAL_BITS (type
), TYPE_N_BASECLASSES (type
));
411 TYPE_BASECLASS (type
, 0) = tsuper
;
413 SET_TYPE_FIELD_PRIVATE (type
, 0);
417 if (i
> 2 && name
[i
- 1] == ']' && tsuper
!= NULL
)
420 TYPE_LENGTH (type
) = TYPE_LENGTH (tsuper
) + 4; /* size with "length" */
425 temp
= value_struct_elt (&temp
, NULL
, "size_in_bytes",
427 TYPE_LENGTH (type
) = value_as_long (temp
);
431 nfields
--; /* First set up dummy "class" field. */
432 SET_FIELD_PHYSADDR (TYPE_FIELD (type
, nfields
), value_address (clas
));
433 TYPE_FIELD_NAME (type
, nfields
) = "class";
434 TYPE_FIELD_TYPE (type
, nfields
) = value_type (clas
);
435 SET_TYPE_FIELD_PRIVATE (type
, nfields
);
437 for (i
= TYPE_N_BASECLASSES (type
); i
< nfields
; i
++)
445 fields
= value_struct_elt (&temp
, NULL
, "fields", NULL
, "structure");
446 field
= value_ind (fields
);
449 { /* Re-use field value for next field. */
451 = value_address (field
) + TYPE_LENGTH (value_type (field
));
453 set_value_address (field
, addr
);
454 set_value_lazy (field
, 1);
457 temp
= value_struct_elt (&temp
, NULL
, "name", NULL
, "structure");
458 TYPE_FIELD_NAME (type
, i
) =
459 get_java_utf8_name (&objfile
->objfile_obstack
, temp
);
461 accflags
= value_as_long (value_struct_elt (&temp
, NULL
, "accflags",
464 temp
= value_struct_elt (&temp
, NULL
, "info", NULL
, "structure");
465 boffset
= value_as_long (value_struct_elt (&temp
, NULL
, "boffset",
467 if (accflags
& 0x0001) /* public access */
471 if (accflags
& 0x0002) /* private access */
473 SET_TYPE_FIELD_PRIVATE (type
, i
);
475 if (accflags
& 0x0004) /* protected access */
477 SET_TYPE_FIELD_PROTECTED (type
, i
);
479 if (accflags
& 0x0008) /* ACC_STATIC */
480 SET_FIELD_PHYSADDR (TYPE_FIELD (type
, i
), boffset
);
482 SET_FIELD_BITPOS (TYPE_FIELD (type
, i
), 8 * boffset
);
483 if (accflags
& 0x8000) /* FIELD_UNRESOLVED_FLAG */
485 TYPE_FIELD_TYPE (type
, i
) = get_java_object_type (); /* FIXME */
492 temp
= value_struct_elt (&temp
, NULL
, "type", NULL
, "structure");
493 ftype
= type_from_class (gdbarch
, temp
);
494 if (TYPE_CODE (ftype
) == TYPE_CODE_STRUCT
)
495 ftype
= lookup_pointer_type (ftype
);
496 TYPE_FIELD_TYPE (type
, i
) = ftype
;
501 nmethods
= value_as_long (value_struct_elt (&temp
, NULL
, "method_count",
503 j
= nmethods
* sizeof (struct fn_field
);
504 fn_fields
= (struct fn_field
*)
505 obstack_alloc (&objfile
->objfile_obstack
, j
);
506 memset (fn_fields
, 0, j
);
507 fn_fieldlists
= (struct fn_fieldlist
*)
508 alloca (nmethods
* sizeof (struct fn_fieldlist
));
511 for (i
= 0; i
< nmethods
; i
++)
519 methods
= value_struct_elt (&temp
, NULL
, "methods",
521 method
= value_ind (methods
);
524 { /* Re-use method value for next method. */
526 = value_address (method
) + TYPE_LENGTH (value_type (method
));
528 set_value_address (method
, addr
);
529 set_value_lazy (method
, 1);
532 /* Get method name. */
534 temp
= value_struct_elt (&temp
, NULL
, "name", NULL
, "structure");
535 mname
= get_java_utf8_name (&objfile
->objfile_obstack
, temp
);
536 if (strcmp (mname
, "<init>") == 0)
537 mname
= unqualified_name
;
539 /* Check for an existing method with the same name.
540 * This makes building the fn_fieldslists an O(nmethods**2)
541 * operation. That could be using hashing, but I doubt it
542 * is worth it. Note that we do maintain the order of methods
543 * in the inferior's Method table (as long as that is grouped
544 * by method name), which I think is desirable. --PB */
545 for (k
= 0, j
= TYPE_NFN_FIELDS (type
);;)
548 { /* No match - new method name. */
549 j
= TYPE_NFN_FIELDS (type
)++;
550 fn_fieldlists
[j
].name
= mname
;
551 fn_fieldlists
[j
].length
= 1;
552 fn_fieldlists
[j
].fn_fields
= &fn_fields
[i
];
556 if (strcmp (mname
, fn_fieldlists
[j
].name
) == 0)
557 { /* Found an existing method with the same name. */
560 if (mname
!= unqualified_name
)
561 obstack_free (&objfile
->objfile_obstack
, mname
);
562 mname
= fn_fieldlists
[j
].name
;
563 fn_fieldlists
[j
].length
++;
564 k
= i
- k
; /* Index of new slot. */
565 /* Shift intervening fn_fields (between k and i) down. */
566 for (l
= i
; l
> k
; l
--)
567 fn_fields
[l
] = fn_fields
[l
- 1];
568 for (l
= TYPE_NFN_FIELDS (type
); --l
> j
;)
569 fn_fieldlists
[l
].fn_fields
++;
572 k
+= fn_fieldlists
[j
].length
;
574 fn_fields
[k
].physname
= "";
575 fn_fields
[k
].is_stub
= 1;
577 fn_fields
[k
].type
= lookup_function_type
578 (builtin_java_type (gdbarch
)->builtin_void
);
579 TYPE_CODE (fn_fields
[k
].type
) = TYPE_CODE_METHOD
;
582 j
= TYPE_NFN_FIELDS (type
) * sizeof (struct fn_fieldlist
);
583 TYPE_FN_FIELDLISTS (type
) = (struct fn_fieldlist
*)
584 obstack_alloc (&objfile
->objfile_obstack
, j
);
585 memcpy (TYPE_FN_FIELDLISTS (type
), fn_fieldlists
, j
);
591 get_java_object_type (void)
595 sym
= lookup_symbol ("java.lang.Object", NULL
, STRUCT_DOMAIN
, NULL
);
597 error (_("cannot find java.lang.Object"));
598 return SYMBOL_TYPE (sym
);
602 get_java_object_header_size (struct gdbarch
*gdbarch
)
604 struct type
*objtype
= get_java_object_type ();
607 return (2 * gdbarch_ptr_bit (gdbarch
) / TARGET_CHAR_BIT
);
609 return TYPE_LENGTH (objtype
);
613 is_object_type (struct type
*type
)
615 CHECK_TYPEDEF (type
);
616 if (TYPE_CODE (type
) == TYPE_CODE_PTR
)
618 struct type
*ttype
= check_typedef (TYPE_TARGET_TYPE (type
));
620 if (TYPE_CODE (ttype
) != TYPE_CODE_STRUCT
)
622 while (TYPE_N_BASECLASSES (ttype
) > 0)
623 ttype
= TYPE_BASECLASS (ttype
, 0);
624 name
= TYPE_TAG_NAME (ttype
);
625 if (name
!= NULL
&& strcmp (name
, "java.lang.Object") == 0)
628 = TYPE_NFIELDS (ttype
) > 0 ? TYPE_FIELD_NAME (ttype
, 0) : (char *) 0;
629 if (name
!= NULL
&& strcmp (name
, "vtable") == 0)
636 java_primitive_type (struct gdbarch
*gdbarch
, int signature
)
638 const struct builtin_java_type
*builtin
= builtin_java_type (gdbarch
);
643 return builtin
->builtin_byte
;
645 return builtin
->builtin_short
;
647 return builtin
->builtin_int
;
649 return builtin
->builtin_long
;
651 return builtin
->builtin_boolean
;
653 return builtin
->builtin_char
;
655 return builtin
->builtin_float
;
657 return builtin
->builtin_double
;
659 return builtin
->builtin_void
;
661 error (_("unknown signature '%c' for primitive type"), (char) signature
);
664 /* If name[0 .. namelen-1] is the name of a primitive Java type,
665 return that type. Otherwise, return NULL. */
668 java_primitive_type_from_name (struct gdbarch
*gdbarch
,
669 const char *name
, int namelen
)
671 const struct builtin_java_type
*builtin
= builtin_java_type (gdbarch
);
676 if (namelen
== 4 && memcmp (name
, "byte", 4) == 0)
677 return builtin
->builtin_byte
;
678 if (namelen
== 7 && memcmp (name
, "boolean", 7) == 0)
679 return builtin
->builtin_boolean
;
682 if (namelen
== 4 && memcmp (name
, "char", 4) == 0)
683 return builtin
->builtin_char
;
686 if (namelen
== 6 && memcmp (name
, "double", 6) == 0)
687 return builtin
->builtin_double
;
690 if (namelen
== 5 && memcmp (name
, "float", 5) == 0)
691 return builtin
->builtin_float
;
694 if (namelen
== 3 && memcmp (name
, "int", 3) == 0)
695 return builtin
->builtin_int
;
698 if (namelen
== 4 && memcmp (name
, "long", 4) == 0)
699 return builtin
->builtin_long
;
702 if (namelen
== 5 && memcmp (name
, "short", 5) == 0)
703 return builtin
->builtin_short
;
706 if (namelen
== 4 && memcmp (name
, "void", 4) == 0)
707 return builtin
->builtin_void
;
714 java_primitive_type_name (int signature
)
737 error (_("unknown signature '%c' for primitive type"), (char) signature
);
740 /* Return the length (in bytes) of demangled name of the Java type
741 signature string SIGNATURE. */
744 java_demangled_signature_length (const char *signature
)
748 for (; *signature
== '['; signature
++)
749 array
+= 2; /* Two chars for "[]". */
750 switch (signature
[0])
753 /* Subtract 2 for 'L' and ';'. */
754 return strlen (signature
) - 2 + array
;
756 return strlen (java_primitive_type_name (signature
[0])) + array
;
760 /* Demangle the Java type signature SIGNATURE, leaving the result in
764 java_demangled_signature_copy (char *result
, const char *signature
)
770 while (*signature
== '[')
775 switch (signature
[0])
778 /* Subtract 2 for 'L' and ';', but add 1 for final nul. */
781 for (; *signature
!= ';' && *signature
!= '\0'; signature
++)
783 if (*signature
== '/')
790 ptr
= java_primitive_type_name (signature
[0]);
792 strcpy (result
, ptr
);
803 /* Return the demangled name of the Java type signature string SIGNATURE,
804 as a freshly allocated copy. */
807 java_demangle_type_signature (const char *signature
)
809 int length
= java_demangled_signature_length (signature
);
810 char *result
= xmalloc (length
+ 1);
812 java_demangled_signature_copy (result
, signature
);
813 result
[length
] = '\0';
817 /* Return the type of TYPE followed by DIMS pairs of [ ].
818 If DIMS == 0, TYPE is returned. */
821 java_array_type (struct type
*type
, int dims
)
825 /* FIXME This is bogus! Java arrays are not gdb arrays! */
826 type
= lookup_array_range_type (type
, 0, 0);
832 /* Create a Java string in the inferior from a (Utf8) literal. */
834 static struct value
*
835 java_value_string (char *ptr
, int len
)
837 error (_("not implemented - java_value_string")); /* FIXME */
840 /* Return the encoding that should be used for the character type
844 java_get_encoding (struct type
*type
)
846 struct gdbarch
*arch
= get_type_arch (type
);
847 const char *encoding
;
849 if (type
== builtin_java_type (arch
)->builtin_char
)
851 if (gdbarch_byte_order (arch
) == BFD_ENDIAN_BIG
)
852 encoding
= "UTF-16BE";
854 encoding
= "UTF-16LE";
857 encoding
= target_charset (arch
);
862 /* Print the character C on STREAM as part of the contents of a literal
863 string whose delimiter is QUOTER. Note that that format for printing
864 characters and strings is language specific. */
867 java_emit_char (int c
, struct type
*type
, struct ui_file
*stream
, int quoter
)
869 const char *encoding
= java_get_encoding (type
);
871 generic_emit_char (c
, type
, stream
, quoter
, encoding
);
874 /* Implementation of la_printchar method. */
877 java_printchar (int c
, struct type
*type
, struct ui_file
*stream
)
879 fputs_filtered ("'", stream
);
880 LA_EMIT_CHAR (c
, type
, stream
, '\'');
881 fputs_filtered ("'", stream
);
884 /* Implementation of la_printstr method. */
887 java_printstr (struct ui_file
*stream
, struct type
*type
,
888 const gdb_byte
*string
,
889 unsigned int length
, const char *encoding
, int force_ellipses
,
890 const struct value_print_options
*options
)
892 const char *type_encoding
= java_get_encoding (type
);
894 if (!encoding
|| !*encoding
)
895 encoding
= type_encoding
;
897 generic_printstr (stream
, type
, string
, length
, encoding
,
898 force_ellipses
, '"', 0, options
);
901 static struct value
*
902 evaluate_subexp_java (struct type
*expect_type
, struct expression
*exp
,
903 int *pos
, enum noside noside
)
908 enum exp_opcode op
= exp
->elts
[*pos
].opcode
;
916 if (noside
== EVAL_SKIP
)
919 arg1
= evaluate_subexp_java (NULL_TYPE
, exp
, pos
, EVAL_NORMAL
);
920 if (is_object_type (value_type (arg1
)))
924 type
= type_from_class (exp
->gdbarch
, java_class_from_object (arg1
));
925 arg1
= value_cast (lookup_pointer_type (type
), arg1
);
927 return value_ind (arg1
);
929 case BINOP_SUBSCRIPT
:
931 arg1
= evaluate_subexp_with_coercion (exp
, pos
, noside
);
932 arg2
= evaluate_subexp_with_coercion (exp
, pos
, noside
);
933 if (noside
== EVAL_SKIP
)
935 /* If the user attempts to subscript something that is not an
936 array or pointer type (like a plain int variable for example),
937 then report this as an error. */
939 arg1
= coerce_ref (arg1
);
940 type
= check_typedef (value_type (arg1
));
941 if (TYPE_CODE (type
) == TYPE_CODE_PTR
)
942 type
= check_typedef (TYPE_TARGET_TYPE (type
));
943 name
= TYPE_NAME (type
);
945 name
= TYPE_TAG_NAME (type
);
946 i
= name
== NULL
? 0 : strlen (name
);
947 if (TYPE_CODE (type
) == TYPE_CODE_STRUCT
948 && i
> 2 && name
[i
- 1] == ']')
950 enum bfd_endian byte_order
= gdbarch_byte_order (exp
->gdbarch
);
953 struct type
*el_type
;
956 struct value
*clas
= java_class_from_object (arg1
);
957 struct value
*temp
= clas
;
958 /* Get CLASS_ELEMENT_TYPE of the array type. */
959 temp
= value_struct_elt (&temp
, NULL
, "methods",
961 deprecated_set_value_type (temp
, value_type (clas
));
962 el_type
= type_from_class (exp
->gdbarch
, temp
);
963 if (TYPE_CODE (el_type
) == TYPE_CODE_STRUCT
)
964 el_type
= lookup_pointer_type (el_type
);
966 if (noside
== EVAL_AVOID_SIDE_EFFECTS
)
967 return value_zero (el_type
, VALUE_LVAL (arg1
));
968 address
= value_as_address (arg1
);
969 address
+= get_java_object_header_size (exp
->gdbarch
);
970 read_memory (address
, buf4
, 4);
971 length
= (long) extract_signed_integer (buf4
, 4, byte_order
);
972 index
= (long) value_as_long (arg2
);
973 if (index
>= length
|| index
< 0)
974 error (_("array index (%ld) out of bounds (length: %ld)"),
976 address
= (address
+ 4) + index
* TYPE_LENGTH (el_type
);
977 return value_at (el_type
, address
);
979 else if (TYPE_CODE (type
) == TYPE_CODE_ARRAY
)
981 if (noside
== EVAL_AVOID_SIDE_EFFECTS
)
982 return value_zero (TYPE_TARGET_TYPE (type
), VALUE_LVAL (arg1
));
984 return value_subscript (arg1
, value_as_long (arg2
));
987 error (_("cannot subscript something of type `%s'"), name
);
989 error (_("cannot subscript requested type"));
993 i
= longest_to_int (exp
->elts
[pc
+ 1].longconst
);
994 (*pos
) += 3 + BYTES_TO_EXP_ELEM (i
+ 1);
995 if (noside
== EVAL_SKIP
)
997 return java_value_string (&exp
->elts
[pc
+ 2].string
, i
);
1000 arg1
= evaluate_subexp_standard (expect_type
, exp
, pos
, noside
);
1001 /* Convert object field (such as TYPE.class) to reference. */
1002 if (TYPE_CODE (value_type (arg1
)) == TYPE_CODE_STRUCT
)
1003 arg1
= value_addr (arg1
);
1009 return evaluate_subexp_standard (expect_type
, exp
, pos
, noside
);
1011 return value_from_longest (builtin_type (exp
->gdbarch
)->builtin_int
, 1);
1014 static char *java_demangle (const char *mangled
, int options
)
1016 return gdb_demangle (mangled
, options
| DMGL_JAVA
);
1019 /* Find the member function name of the demangled name NAME. NAME
1020 must be a method name including arguments, in order to correctly
1021 locate the last component.
1023 This function return a pointer to the first dot before the
1024 member function name, or NULL if the name was not of the
1028 java_find_last_component (const char *name
)
1032 /* Find argument list. */
1033 p
= strchr (name
, '(');
1038 /* Back up and find first dot prior to argument list. */
1039 while (p
> name
&& *p
!= '.')
1048 /* Return the name of the class containing method PHYSNAME. */
1051 java_class_name_from_physname (const char *physname
)
1055 char *demangled_name
= java_demangle (physname
, DMGL_PARAMS
| DMGL_ANSI
);
1057 if (demangled_name
== NULL
)
1060 end
= java_find_last_component (demangled_name
);
1063 ret
= xmalloc (end
- demangled_name
+ 1);
1064 memcpy (ret
, demangled_name
, end
- demangled_name
);
1065 ret
[end
- demangled_name
] = '\0';
1068 xfree (demangled_name
);
1072 /* Table mapping opcodes into strings for printing operators
1073 and precedences of the operators. */
1075 const struct op_print java_op_print_tab
[] =
1077 {",", BINOP_COMMA
, PREC_COMMA
, 0},
1078 {"=", BINOP_ASSIGN
, PREC_ASSIGN
, 1},
1079 {"||", BINOP_LOGICAL_OR
, PREC_LOGICAL_OR
, 0},
1080 {"&&", BINOP_LOGICAL_AND
, PREC_LOGICAL_AND
, 0},
1081 {"|", BINOP_BITWISE_IOR
, PREC_BITWISE_IOR
, 0},
1082 {"^", BINOP_BITWISE_XOR
, PREC_BITWISE_XOR
, 0},
1083 {"&", BINOP_BITWISE_AND
, PREC_BITWISE_AND
, 0},
1084 {"==", BINOP_EQUAL
, PREC_EQUAL
, 0},
1085 {"!=", BINOP_NOTEQUAL
, PREC_EQUAL
, 0},
1086 {"<=", BINOP_LEQ
, PREC_ORDER
, 0},
1087 {">=", BINOP_GEQ
, PREC_ORDER
, 0},
1088 {">", BINOP_GTR
, PREC_ORDER
, 0},
1089 {"<", BINOP_LESS
, PREC_ORDER
, 0},
1090 {">>", BINOP_RSH
, PREC_SHIFT
, 0},
1091 {"<<", BINOP_LSH
, PREC_SHIFT
, 0},
1092 {"+", BINOP_ADD
, PREC_ADD
, 0},
1093 {"-", BINOP_SUB
, PREC_ADD
, 0},
1094 {"*", BINOP_MUL
, PREC_MUL
, 0},
1095 {"/", BINOP_DIV
, PREC_MUL
, 0},
1096 {"%", BINOP_REM
, PREC_MUL
, 0},
1097 {"-", UNOP_NEG
, PREC_PREFIX
, 0},
1098 {"!", UNOP_LOGICAL_NOT
, PREC_PREFIX
, 0},
1099 {"~", UNOP_COMPLEMENT
, PREC_PREFIX
, 0},
1100 {"*", UNOP_IND
, PREC_PREFIX
, 0},
1101 {"++", UNOP_PREINCREMENT
, PREC_PREFIX
, 0},
1102 {"--", UNOP_PREDECREMENT
, PREC_PREFIX
, 0},
1106 enum java_primitive_types
1108 java_primitive_type_int
,
1109 java_primitive_type_short
,
1110 java_primitive_type_long
,
1111 java_primitive_type_byte
,
1112 java_primitive_type_boolean
,
1113 java_primitive_type_char
,
1114 java_primitive_type_float
,
1115 java_primitive_type_double
,
1116 java_primitive_type_void
,
1117 nr_java_primitive_types
1121 java_language_arch_info (struct gdbarch
*gdbarch
,
1122 struct language_arch_info
*lai
)
1124 const struct builtin_java_type
*builtin
= builtin_java_type (gdbarch
);
1126 lai
->string_char_type
= builtin
->builtin_char
;
1127 lai
->primitive_type_vector
1128 = GDBARCH_OBSTACK_CALLOC (gdbarch
, nr_java_primitive_types
+ 1,
1130 lai
->primitive_type_vector
[java_primitive_type_int
]
1131 = builtin
->builtin_int
;
1132 lai
->primitive_type_vector
[java_primitive_type_short
]
1133 = builtin
->builtin_short
;
1134 lai
->primitive_type_vector
[java_primitive_type_long
]
1135 = builtin
->builtin_long
;
1136 lai
->primitive_type_vector
[java_primitive_type_byte
]
1137 = builtin
->builtin_byte
;
1138 lai
->primitive_type_vector
[java_primitive_type_boolean
]
1139 = builtin
->builtin_boolean
;
1140 lai
->primitive_type_vector
[java_primitive_type_char
]
1141 = builtin
->builtin_char
;
1142 lai
->primitive_type_vector
[java_primitive_type_float
]
1143 = builtin
->builtin_float
;
1144 lai
->primitive_type_vector
[java_primitive_type_double
]
1145 = builtin
->builtin_double
;
1146 lai
->primitive_type_vector
[java_primitive_type_void
]
1147 = builtin
->builtin_void
;
1149 lai
->bool_type_symbol
= "boolean";
1150 lai
->bool_type_default
= builtin
->builtin_boolean
;
1153 const struct exp_descriptor exp_descriptor_java
=
1155 print_subexp_standard
,
1156 operator_length_standard
,
1157 operator_check_standard
,
1159 dump_subexp_body_standard
,
1160 evaluate_subexp_java
1163 const struct language_defn java_language_defn
=
1165 "java", /* Language name */
1172 &exp_descriptor_java
,
1176 java_printchar
, /* Print a character constant */
1177 java_printstr
, /* Function to print string constant */
1178 java_emit_char
, /* Function to print a single character */
1179 java_print_type
, /* Print a type using appropriate syntax */
1180 default_print_typedef
, /* Print a typedef using appropriate syntax */
1181 java_val_print
, /* Print a value using appropriate syntax */
1182 java_value_print
, /* Print a top-level value */
1183 default_read_var_value
, /* la_read_var_value */
1184 NULL
, /* Language specific skip_trampoline */
1185 "this", /* name_of_this */
1186 basic_lookup_symbol_nonlocal
, /* lookup_symbol_nonlocal */
1187 basic_lookup_transparent_type
,/* lookup_transparent_type */
1188 java_demangle
, /* Language specific symbol demangler */
1189 java_class_name_from_physname
,/* Language specific class name */
1190 java_op_print_tab
, /* expression operators for printing */
1191 0, /* not c-style arrays */
1192 0, /* String lower bound */
1193 default_word_break_characters
,
1194 default_make_symbol_completion_list
,
1195 java_language_arch_info
,
1196 default_print_array_index
,
1197 default_pass_by_reference
,
1199 NULL
, /* la_get_symbol_name_cmp */
1200 iterate_over_symbols
,
1206 build_java_types (struct gdbarch
*gdbarch
)
1208 struct builtin_java_type
*builtin_java_type
1209 = GDBARCH_OBSTACK_ZALLOC (gdbarch
, struct builtin_java_type
);
1211 builtin_java_type
->builtin_int
1212 = arch_integer_type (gdbarch
, 32, 0, "int");
1213 builtin_java_type
->builtin_short
1214 = arch_integer_type (gdbarch
, 16, 0, "short");
1215 builtin_java_type
->builtin_long
1216 = arch_integer_type (gdbarch
, 64, 0, "long");
1217 builtin_java_type
->builtin_byte
1218 = arch_integer_type (gdbarch
, 8, 0, "byte");
1219 builtin_java_type
->builtin_boolean
1220 = arch_boolean_type (gdbarch
, 8, 0, "boolean");
1221 builtin_java_type
->builtin_char
1222 = arch_character_type (gdbarch
, 16, 1, "char");
1223 builtin_java_type
->builtin_float
1224 = arch_float_type (gdbarch
, 32, "float", NULL
);
1225 builtin_java_type
->builtin_double
1226 = arch_float_type (gdbarch
, 64, "double", NULL
);
1227 builtin_java_type
->builtin_void
1228 = arch_type (gdbarch
, TYPE_CODE_VOID
, 1, "void");
1230 return builtin_java_type
;
1233 static struct gdbarch_data
*java_type_data
;
1235 const struct builtin_java_type
*
1236 builtin_java_type (struct gdbarch
*gdbarch
)
1238 return gdbarch_data (gdbarch
, java_type_data
);
1242 _initialize_java_language (void)
1244 jv_dynamics_objfile_data_key
1245 = register_objfile_data_with_cleanup (NULL
, jv_per_objfile_free
);
1246 jv_dynamics_progspace_key
= register_program_space_data ();
1248 java_type_data
= gdbarch_data_register_post_init (build_java_types
);
1250 add_language (&java_language_defn
);