Change defn of LOCAL_LABEL_PREFIX to ""
[external/binutils.git] / gdb / jv-lang.c
1 /* Java language support routines for GDB, the GNU debugger.
2    Copyright 1997, 1998, 1999-2000 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,
19    Boston, MA 02111-1307, USA.  */
20
21 #include "defs.h"
22 #include "symtab.h"
23 #include "gdbtypes.h"
24 #include "expression.h"
25 #include "parser-defs.h"
26 #include "language.h"
27 #include "gdbtypes.h"
28 #include "symtab.h"
29 #include "symfile.h"
30 #include "objfiles.h"
31 #include "gdb_string.h"
32 #include "value.h"
33 #include "c-lang.h"
34 #include "jv-lang.h"
35 #include "gdbcore.h"
36 #include <ctype.h>
37
38 struct type *java_int_type;
39 struct type *java_byte_type;
40 struct type *java_short_type;
41 struct type *java_long_type;
42 struct type *java_boolean_type;
43 struct type *java_char_type;
44 struct type *java_float_type;
45 struct type *java_double_type;
46 struct type *java_void_type;
47
48 /* Local functions */
49
50 extern void _initialize_java_language (void);
51
52 static int java_demangled_signature_length (char *);
53 static void java_demangled_signature_copy (char *, char *);
54
55 static struct symtab *get_java_class_symtab (void);
56 static char *get_java_utf8_name (struct obstack *obstack, value_ptr name);
57 static int java_class_is_primitive (value_ptr clas);
58 static struct type *java_lookup_type (char *signature);
59 static value_ptr java_value_string (char *ptr, int len);
60
61 static void java_emit_char (int c, struct ui_file * stream, int quoter);
62
63 /* This objfile contains symtabs that have been dynamically created
64    to record dynamically loaded Java classes and dynamically
65    compiled java methods. */
66
67 static struct objfile *dynamics_objfile = NULL;
68
69 static struct type *java_link_class_type (struct type *, value_ptr);
70
71 static struct objfile *
72 get_dynamics_objfile (void)
73 {
74   if (dynamics_objfile == NULL)
75     {
76       dynamics_objfile = allocate_objfile (NULL, 0);
77     }
78   return dynamics_objfile;
79 }
80
81 #if 1
82 /* symtab contains classes read from the inferior. */
83
84 static struct symtab *class_symtab = NULL;
85
86 /* Maximum number of class in class_symtab before relocation is needed. */
87
88 static int class_symtab_space;
89
90 static struct symtab *
91 get_java_class_symtab (void)
92 {
93   if (class_symtab == NULL)
94     {
95       struct objfile *objfile = get_dynamics_objfile ();
96       struct blockvector *bv;
97       struct block *bl;
98       class_symtab = allocate_symtab ("<java-classes>", objfile);
99       class_symtab->language = language_java;
100       bv = (struct blockvector *)
101         obstack_alloc (&objfile->symbol_obstack, sizeof (struct blockvector));
102       BLOCKVECTOR_NBLOCKS (bv) = 1;
103       BLOCKVECTOR (class_symtab) = bv;
104
105       /* Allocate dummy STATIC_BLOCK. */
106       bl = (struct block *)
107         obstack_alloc (&objfile->symbol_obstack, sizeof (struct block));
108       BLOCK_NSYMS (bl) = 0;
109       BLOCK_START (bl) = 0;
110       BLOCK_END (bl) = 0;
111       BLOCK_FUNCTION (bl) = NULL;
112       BLOCK_SUPERBLOCK (bl) = NULL;
113       BLOCK_GCC_COMPILED (bl) = 0;
114       BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK) = bl;
115
116       /* Allocate GLOBAL_BLOCK.  This has to be relocatable. */
117       class_symtab_space = 128;
118       bl = (struct block *)
119         mmalloc (objfile->md,
120                  sizeof (struct block)
121                  + ((class_symtab_space - 1) * sizeof (struct symbol *)));
122       *bl = *BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
123       BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK) = bl;
124       class_symtab->free_ptr = (char *) bl;
125     }
126   return class_symtab;
127 }
128
129 static void
130 add_class_symtab_symbol (struct symbol *sym)
131 {
132   struct symtab *symtab = get_java_class_symtab ();
133   struct blockvector *bv = BLOCKVECTOR (symtab);
134   struct block *bl = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
135   if (BLOCK_NSYMS (bl) >= class_symtab_space)
136     {
137       /* Need to re-allocate. */
138       class_symtab_space *= 2;
139       bl = (struct block *)
140         mrealloc (symtab->objfile->md, bl,
141                   sizeof (struct block)
142                   + ((class_symtab_space - 1) * sizeof (struct symbol *)));
143       class_symtab->free_ptr = (char *) bl;
144       BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK) = bl;
145     }
146
147   BLOCK_SYM (bl, BLOCK_NSYMS (bl)) = sym;
148   BLOCK_NSYMS (bl) = BLOCK_NSYMS (bl) + 1;
149 }
150
151 static struct symbol *add_class_symbol (struct type *type, CORE_ADDR addr);
152
153 static struct symbol *
154 add_class_symbol (struct type *type, CORE_ADDR addr)
155 {
156   struct symbol *sym;
157   sym = (struct symbol *)
158     obstack_alloc (&dynamics_objfile->symbol_obstack, sizeof (struct symbol));
159   memset (sym, 0, sizeof (struct symbol));
160   SYMBOL_LANGUAGE (sym) = language_java;
161   SYMBOL_NAME (sym) = TYPE_TAG_NAME (type);
162   SYMBOL_CLASS (sym) = LOC_TYPEDEF;
163   /*  SYMBOL_VALUE (sym) = valu; */
164   SYMBOL_TYPE (sym) = type;
165   SYMBOL_NAMESPACE (sym) = STRUCT_NAMESPACE;
166   SYMBOL_VALUE_ADDRESS (sym) = addr;
167   return sym;
168 }
169 #endif
170
171 struct type *
172 java_lookup_class (char *name)
173 {
174   struct symbol *sym;
175   sym = lookup_symbol (name, expression_context_block, STRUCT_NAMESPACE,
176                        (int *) 0, (struct symtab **) NULL);
177   if (sym != NULL)
178     return SYMBOL_TYPE (sym);
179 #if 0
180   CORE_ADDR addr;
181   if (called from parser)
182     {
183       call lookup_class (or similar) in inferior;
184       if not
185       found:
186         return NULL;
187       addr = found in inferior;
188     }
189   else
190     addr = 0;
191   struct type *type;
192   type = alloc_type (objfile);
193   TYPE_CODE (type) = TYPE_CODE_STRUCT;
194   INIT_CPLUS_SPECIFIC (type);
195   TYPE_TAG_NAME (type) = obsavestring (name, strlen (name), &objfile->type_obstack);
196   TYPE_FLAGS (type) |= TYPE_FLAG_STUB;
197   TYPE ? = addr;
198   return type;
199 #else
200   /* FIXME - should search inferior's symbol table. */
201   return NULL;
202 #endif
203 }
204
205 /* Return a nul-terminated string (allocated on OBSTACK) for
206    a name given by NAME (which has type Utf8Const*). */
207
208 char *
209 get_java_utf8_name (struct obstack *obstack, value_ptr name)
210 {
211   char *chrs;
212   value_ptr temp = name;
213   int name_length;
214   CORE_ADDR data_addr;
215   temp = value_struct_elt (&temp, NULL, "length", NULL, "structure");
216   name_length = (int) value_as_long (temp);
217   data_addr = VALUE_ADDRESS (temp) + VALUE_OFFSET (temp)
218     + TYPE_LENGTH (VALUE_TYPE (temp));
219   chrs = obstack_alloc (obstack, name_length + 1);
220   chrs[name_length] = '\0';
221   read_memory (data_addr, chrs, name_length);
222   return chrs;
223 }
224
225 value_ptr
226 java_class_from_object (value_ptr obj_val)
227 {
228   /* This is all rather inefficient, since the offsets of vtable and
229      class are fixed.  FIXME */
230   value_ptr vtable_val;
231
232   if (TYPE_CODE (VALUE_TYPE (obj_val)) == TYPE_CODE_PTR
233       && TYPE_LENGTH (TYPE_TARGET_TYPE (VALUE_TYPE (obj_val))) == 0)
234     obj_val = value_at (get_java_object_type (),
235                         value_as_pointer (obj_val), NULL);
236
237   vtable_val = value_struct_elt (&obj_val, NULL, "vtable", NULL, "structure");
238   return value_struct_elt (&vtable_val, NULL, "class", NULL, "structure");
239 }
240
241 /* Check if CLASS_IS_PRIMITIVE(value of clas): */
242 static int
243 java_class_is_primitive (value_ptr clas)
244 {
245   value_ptr vtable = value_struct_elt (&clas, NULL, "vtable", NULL, "struct");
246   CORE_ADDR i = value_as_pointer (vtable);
247   return (int) (i & 0x7fffffff) == (int) 0x7fffffff;
248 }
249
250 /* Read a GCJ Class object, and generated a gdb (TYPE_CODE_STRUCT) type. */
251
252 struct type *
253 type_from_class (value_ptr clas)
254 {
255   struct type *type;
256   char *name;
257   value_ptr temp;
258   struct objfile *objfile;
259   value_ptr utf8_name;
260   char *nptr;
261   CORE_ADDR addr;
262   struct block *bl;
263   int i;
264   int is_array = 0;
265
266   type = check_typedef (VALUE_TYPE (clas));
267   if (TYPE_CODE (type) == TYPE_CODE_PTR)
268     {
269       if (value_logical_not (clas))
270         return NULL;
271       clas = value_ind (clas);
272     }
273   addr = VALUE_ADDRESS (clas) + VALUE_OFFSET (clas);
274
275 #if 0
276   get_java_class_symtab ();
277   bl = BLOCKVECTOR_BLOCK (BLOCKVECTOR (class_symtab), GLOBAL_BLOCK);
278   for (i = BLOCK_NSYMS (bl); --i >= 0;)
279     {
280       struct symbol *sym = BLOCK_SYM (bl, i);
281       if (SYMBOL_VALUE_ADDRESS (sym) == addr)
282         return SYMBOL_TYPE (sym);
283     }
284 #endif
285
286   objfile = get_dynamics_objfile ();
287   if (java_class_is_primitive (clas))
288     {
289       value_ptr sig;
290       temp = clas;
291       sig = value_struct_elt (&temp, NULL, "method_count", NULL, "structure");
292       return java_primitive_type (value_as_long (sig));
293     }
294
295   /* Get Class name. */
296   /* if clasloader non-null, prepend loader address. FIXME */
297   temp = clas;
298   utf8_name = value_struct_elt (&temp, NULL, "name", NULL, "structure");
299   name = get_java_utf8_name (&objfile->type_obstack, utf8_name);
300   for (nptr = name; *nptr != 0; nptr++)
301     {
302       if (*nptr == '/')
303         *nptr = '.';
304     }
305
306   type = java_lookup_class (name);
307   if (type != NULL)
308     return type;
309
310   type = alloc_type (objfile);
311   TYPE_CODE (type) = TYPE_CODE_STRUCT;
312   INIT_CPLUS_SPECIFIC (type);
313
314   if (name[0] == '[')
315     {
316       char *signature = name;
317       int namelen = java_demangled_signature_length (signature);
318       if (namelen > strlen (name))
319         name = obstack_alloc (&objfile->type_obstack, namelen + 1);
320       java_demangled_signature_copy (name, signature);
321       name[namelen] = '\0';
322       is_array = 1;
323       temp = clas;
324       /* Set array element type. */
325       temp = value_struct_elt (&temp, NULL, "methods", NULL, "structure");
326       VALUE_TYPE (temp) = lookup_pointer_type (VALUE_TYPE (clas));
327       TYPE_TARGET_TYPE (type) = type_from_class (temp);
328     }
329
330   ALLOCATE_CPLUS_STRUCT_TYPE (type);
331   TYPE_TAG_NAME (type) = name;
332
333   add_class_symtab_symbol (add_class_symbol (type, addr));
334   return java_link_class_type (type, clas);
335 }
336
337 /* Fill in class TYPE with data from the CLAS value. */
338
339 struct type *
340 java_link_class_type (struct type *type, value_ptr clas)
341 {
342   value_ptr temp;
343   char *unqualified_name;
344   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   value_ptr fields, field, method, methods;
350   int i, j;
351   struct objfile *objfile = get_dynamics_objfile ();
352   struct type *tsuper;
353
354   unqualified_name = strrchr (name, '.');
355   if (unqualified_name == NULL)
356     unqualified_name = name;
357
358   temp = clas;
359   temp = value_struct_elt (&temp, NULL, "superclass", NULL, "structure");
360   if (name != NULL && strcmp (name, "java.lang.Object") == 0)
361     {
362       tsuper = get_java_object_type ();
363       if (tsuper && TYPE_CODE (tsuper) == TYPE_CODE_PTR)
364         tsuper = TYPE_TARGET_TYPE (tsuper);
365       type_is_object = 1;
366     }
367   else
368     tsuper = type_from_class (temp);
369
370 #if 1
371   ninterfaces = 0;
372 #else
373   temp = clas;
374   ninterfaces = value_as_long (value_struct_elt (&temp, NULL, "interface_len", NULL, "structure"));
375 #endif
376   TYPE_N_BASECLASSES (type) = (tsuper == NULL ? 0 : 1) + ninterfaces;
377   temp = clas;
378   nfields = value_as_long (value_struct_elt (&temp, NULL, "field_count", NULL, "structure"));
379   nfields += TYPE_N_BASECLASSES (type);
380   nfields++;                    /* Add one for dummy "class" field. */
381   TYPE_NFIELDS (type) = nfields;
382   TYPE_FIELDS (type) = (struct field *)
383     TYPE_ALLOC (type, sizeof (struct field) * nfields);
384
385   memset (TYPE_FIELDS (type), 0, sizeof (struct field) * nfields);
386
387   TYPE_FIELD_PRIVATE_BITS (type) =
388     (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
389   B_CLRALL (TYPE_FIELD_PRIVATE_BITS (type), nfields);
390
391   TYPE_FIELD_PROTECTED_BITS (type) =
392     (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
393   B_CLRALL (TYPE_FIELD_PROTECTED_BITS (type), nfields);
394
395   TYPE_FIELD_IGNORE_BITS (type) =
396     (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
397   B_CLRALL (TYPE_FIELD_IGNORE_BITS (type), nfields);
398
399   TYPE_FIELD_VIRTUAL_BITS (type) = (B_TYPE *)
400     TYPE_ALLOC (type, B_BYTES (TYPE_N_BASECLASSES (type)));
401   B_CLRALL (TYPE_FIELD_VIRTUAL_BITS (type), TYPE_N_BASECLASSES (type));
402
403   if (tsuper != NULL)
404     {
405       TYPE_BASECLASS (type, 0) = tsuper;
406       if (type_is_object)
407         SET_TYPE_FIELD_PRIVATE (type, 0);
408     }
409
410   i = strlen (name);
411   if (i > 2 && name[i - 1] == ']' && tsuper != NULL)
412     {
413       /* FIXME */
414       TYPE_LENGTH (type) = TYPE_LENGTH (tsuper) + 4;    /* size with "length" */
415     }
416   else
417     {
418       temp = clas;
419       temp = value_struct_elt (&temp, NULL, "size_in_bytes", NULL, "structure");
420       TYPE_LENGTH (type) = value_as_long (temp);
421     }
422
423   fields = NULL;
424   nfields--;                    /* First set up dummy "class" field. */
425   SET_FIELD_PHYSADDR (TYPE_FIELD (type, nfields),
426                       VALUE_ADDRESS (clas) + VALUE_OFFSET (clas));
427   TYPE_FIELD_NAME (type, nfields) = "class";
428   TYPE_FIELD_TYPE (type, nfields) = VALUE_TYPE (clas);
429   SET_TYPE_FIELD_PRIVATE (type, nfields);
430
431   for (i = TYPE_N_BASECLASSES (type); i < nfields; i++)
432     {
433       int accflags;
434       int boffset;
435       if (fields == NULL)
436         {
437           temp = clas;
438           fields = value_struct_elt (&temp, NULL, "fields", NULL, "structure");
439           field = value_ind (fields);
440         }
441       else
442         {                       /* Re-use field value for next field. */
443           VALUE_ADDRESS (field) += TYPE_LENGTH (VALUE_TYPE (field));
444           VALUE_LAZY (field) = 1;
445         }
446       temp = field;
447       temp = value_struct_elt (&temp, NULL, "name", NULL, "structure");
448       TYPE_FIELD_NAME (type, i) =
449         get_java_utf8_name (&objfile->type_obstack, temp);
450       temp = field;
451       accflags = value_as_long (value_struct_elt (&temp, NULL, "accflags",
452                                                   NULL, "structure"));
453       temp = field;
454       temp = value_struct_elt (&temp, NULL, "info", NULL, "structure");
455       boffset = value_as_long (value_struct_elt (&temp, NULL, "boffset",
456                                                  NULL, "structure"));
457       if (accflags & 0x0001)    /* public access */
458         {
459           /* ??? */
460         }
461       if (accflags & 0x0002)    /* private access */
462         {
463           SET_TYPE_FIELD_PRIVATE (type, i);
464         }
465       if (accflags & 0x0004)    /* protected access */
466         {
467           SET_TYPE_FIELD_PROTECTED (type, i);
468         }
469       if (accflags & 0x0008)    /* ACC_STATIC */
470         SET_FIELD_PHYSADDR (TYPE_FIELD (type, i), boffset);
471       else
472         TYPE_FIELD_BITPOS (type, i) = 8 * boffset;
473       if (accflags & 0x8000)    /* FIELD_UNRESOLVED_FLAG */
474         {
475           TYPE_FIELD_TYPE (type, i) = get_java_object_type ();  /* FIXME */
476         }
477       else
478         {
479           struct type *ftype;
480           temp = field;
481           temp = value_struct_elt (&temp, NULL, "type", NULL, "structure");
482           ftype = type_from_class (temp);
483           if (TYPE_CODE (ftype) == TYPE_CODE_STRUCT)
484             ftype = lookup_pointer_type (ftype);
485           TYPE_FIELD_TYPE (type, i) = ftype;
486         }
487     }
488
489   temp = clas;
490   nmethods = value_as_long (value_struct_elt (&temp, NULL, "method_count",
491                                               NULL, "structure"));
492   TYPE_NFN_FIELDS_TOTAL (type) = nmethods;
493   j = nmethods * sizeof (struct fn_field);
494   fn_fields = (struct fn_field *)
495     obstack_alloc (&dynamics_objfile->symbol_obstack, j);
496   memset (fn_fields, 0, j);
497   fn_fieldlists = (struct fn_fieldlist *)
498     alloca (nmethods * sizeof (struct fn_fieldlist));
499
500   methods = NULL;
501   for (i = 0; i < nmethods; i++)
502     {
503       char *mname;
504       int k;
505       if (methods == NULL)
506         {
507           temp = clas;
508           methods = value_struct_elt (&temp, NULL, "methods", NULL, "structure");
509           method = value_ind (methods);
510         }
511       else
512         {                       /* Re-use method value for next method. */
513           VALUE_ADDRESS (method) += TYPE_LENGTH (VALUE_TYPE (method));
514           VALUE_LAZY (method) = 1;
515         }
516
517       /* Get method name. */
518       temp = method;
519       temp = value_struct_elt (&temp, NULL, "name", NULL, "structure");
520       mname = get_java_utf8_name (&objfile->type_obstack, temp);
521       if (strcmp (mname, "<init>") == 0)
522         mname = unqualified_name;
523
524       /* Check for an existing method with the same name.
525        * This makes building the fn_fieldslists an O(nmethods**2)
526        * operation.  That could be using hashing, but I doubt it
527        * is worth it.  Note that we do maintain the order of methods
528        * in the inferior's Method table (as long as that is grouped
529        * by method name), which I think is desirable.  --PB */
530       for (k = 0, j = TYPE_NFN_FIELDS (type);;)
531         {
532           if (--j < 0)
533             {                   /* No match - new method name. */
534               j = TYPE_NFN_FIELDS (type)++;
535               fn_fieldlists[j].name = mname;
536               fn_fieldlists[j].length = 1;
537               fn_fieldlists[j].fn_fields = &fn_fields[i];
538               k = i;
539               break;
540             }
541           if (strcmp (mname, fn_fieldlists[j].name) == 0)
542             {                   /* Found an existing method with the same name. */
543               int l;
544               if (mname != unqualified_name)
545                 obstack_free (&objfile->type_obstack, mname);
546               mname = fn_fieldlists[j].name;
547               fn_fieldlists[j].length++;
548               k = i - k;        /* Index of new slot. */
549               /* Shift intervening fn_fields (between k and i) down. */
550               for (l = i; l > k; l--)
551                 fn_fields[l] = fn_fields[l - 1];
552               for (l = TYPE_NFN_FIELDS (type); --l > j;)
553                 fn_fieldlists[l].fn_fields++;
554               break;
555             }
556           k += fn_fieldlists[j].length;
557         }
558       fn_fields[k].physname = "";
559       fn_fields[k].is_stub = 1;
560       fn_fields[k].type = make_function_type (java_void_type, NULL);    /* FIXME */
561       TYPE_CODE (fn_fields[k].type) = TYPE_CODE_METHOD;
562     }
563
564   j = TYPE_NFN_FIELDS (type) * sizeof (struct fn_fieldlist);
565   TYPE_FN_FIELDLISTS (type) = (struct fn_fieldlist *)
566     obstack_alloc (&dynamics_objfile->symbol_obstack, j);
567   memcpy (TYPE_FN_FIELDLISTS (type), fn_fieldlists, j);
568
569   return type;
570 }
571
572 static struct type *java_object_type;
573
574 struct type *
575 get_java_object_type (void)
576 {
577   if (java_object_type == NULL)
578     {
579       struct symbol *sym;
580       sym = lookup_symbol ("java.lang.Object", NULL, STRUCT_NAMESPACE,
581                            (int *) 0, (struct symtab **) NULL);
582       if (sym == NULL)
583         error ("cannot find java.lang.Object");
584       java_object_type = SYMBOL_TYPE (sym);
585     }
586   return java_object_type;
587 }
588
589 int
590 get_java_object_header_size (void)
591 {
592   struct type *objtype = get_java_object_type ();
593   if (objtype == NULL)
594     return (2 * TARGET_PTR_BIT / TARGET_CHAR_BIT);
595   else
596     return TYPE_LENGTH (objtype);
597 }
598
599 int
600 is_object_type (struct type *type)
601 {
602   CHECK_TYPEDEF (type);
603   if (TYPE_CODE (type) == TYPE_CODE_PTR)
604     {
605       struct type *ttype = check_typedef (TYPE_TARGET_TYPE (type));
606       char *name;
607       if (TYPE_CODE (ttype) != TYPE_CODE_STRUCT)
608         return 0;
609       while (TYPE_N_BASECLASSES (ttype) > 0)
610         ttype = TYPE_BASECLASS (ttype, 0);
611       name = TYPE_TAG_NAME (ttype);
612       if (name != NULL && strcmp (name, "java.lang.Object") == 0)
613         return 1;
614       name = TYPE_NFIELDS (ttype) > 0 ? TYPE_FIELD_NAME (ttype, 0) : (char *) 0;
615       if (name != NULL && strcmp (name, "vtable") == 0)
616         {
617           if (java_object_type == NULL)
618             java_object_type = type;
619           return 1;
620         }
621     }
622   return 0;
623 }
624
625 struct type *
626 java_primitive_type (int signature)
627 {
628   switch (signature)
629     {
630     case 'B':
631       return java_byte_type;
632     case 'S':
633       return java_short_type;
634     case 'I':
635       return java_int_type;
636     case 'J':
637       return java_long_type;
638     case 'Z':
639       return java_boolean_type;
640     case 'C':
641       return java_char_type;
642     case 'F':
643       return java_float_type;
644     case 'D':
645       return java_double_type;
646     case 'V':
647       return java_void_type;
648     }
649   error ("unknown signature '%c' for primitive type", (char) signature);
650 }
651
652 /* If name[0 .. namelen-1] is the name of a primitive Java type,
653    return that type.  Otherwise, return NULL. */
654
655 struct type *
656 java_primitive_type_from_name (char *name, int namelen)
657 {
658   switch (name[0])
659     {
660     case 'b':
661       if (namelen == 4 && memcmp (name, "byte", 4) == 0)
662         return java_byte_type;
663       if (namelen == 7 && memcmp (name, "boolean", 7) == 0)
664         return java_boolean_type;
665       break;
666     case 'c':
667       if (namelen == 4 && memcmp (name, "char", 4) == 0)
668         return java_char_type;
669     case 'd':
670       if (namelen == 6 && memcmp (name, "double", 6) == 0)
671         return java_double_type;
672       break;
673     case 'f':
674       if (namelen == 5 && memcmp (name, "float", 5) == 0)
675         return java_float_type;
676       break;
677     case 'i':
678       if (namelen == 3 && memcmp (name, "int", 3) == 0)
679         return java_int_type;
680       break;
681     case 'l':
682       if (namelen == 4 && memcmp (name, "long", 4) == 0)
683         return java_long_type;
684       break;
685     case 's':
686       if (namelen == 5 && memcmp (name, "short", 5) == 0)
687         return java_short_type;
688       break;
689     case 'v':
690       if (namelen == 4 && memcmp (name, "void", 4) == 0)
691         return java_void_type;
692       break;
693     }
694   return NULL;
695 }
696
697 /* Return the length (in bytes) of demangled name of the Java type
698    signature string SIGNATURE. */
699
700 static int
701 java_demangled_signature_length (char *signature)
702 {
703   int array = 0;
704   for (; *signature == '['; signature++)
705     array += 2;                 /* Two chars for "[]". */
706   switch (signature[0])
707     {
708     case 'L':
709       /* Subtract 2 for 'L' and ';'. */
710       return strlen (signature) - 2 + array;
711     default:
712       return strlen (TYPE_NAME (java_primitive_type (signature[0]))) + array;
713     }
714 }
715
716 /* Demangle the Java type signature SIGNATURE, leaving the result in RESULT. */
717
718 static void
719 java_demangled_signature_copy (char *result, char *signature)
720 {
721   int array = 0;
722   char *ptr;
723   int i;
724   while (*signature == '[')
725     {
726       array++;
727       signature++;
728     }
729   switch (signature[0])
730     {
731     case 'L':
732       /* Subtract 2 for 'L' and ';', but add 1 for final nul. */
733       signature++;
734       ptr = result;
735       for (; *signature != ';' && *signature != '\0'; signature++)
736         {
737           if (*signature == '/')
738             *ptr++ = '.';
739           else
740             *ptr++ = *signature;
741         }
742       break;
743     default:
744       ptr = TYPE_NAME (java_primitive_type (signature[0]));
745       i = strlen (ptr);
746       strcpy (result, ptr);
747       ptr = result + i;
748       break;
749     }
750   while (--array >= 0)
751     {
752       *ptr++ = '[';
753       *ptr++ = ']';
754     }
755 }
756
757 /* Return the demangled name of the Java type signature string SIGNATURE,
758    as a freshly allocated copy. */
759
760 char *
761 java_demangle_type_signature (char *signature)
762 {
763   int length = java_demangled_signature_length (signature);
764   char *result = xmalloc (length + 1);
765   java_demangled_signature_copy (result, signature);
766   result[length] = '\0';
767   return result;
768 }
769
770 struct type *
771 java_lookup_type (char *signature)
772 {
773   switch (signature[0])
774     {
775     case 'L':
776     case '[':
777       error ("java_lookup_type not fully implemented");
778     default:
779       return java_primitive_type (signature[0]);
780     }
781 }
782
783 /* Return the type of TYPE followed by DIMS pairs of [ ].
784    If DIMS == 0, TYPE is returned. */
785
786 struct type *
787 java_array_type (struct type *type, int dims)
788 {
789   struct type *range_type;
790
791   while (dims-- > 0)
792     {
793       range_type = create_range_type (NULL, builtin_type_int, 0, 0);
794       /* FIXME  This is bogus!  Java arrays are not gdb arrays! */
795       type = create_array_type (NULL, type, range_type);
796     }
797
798   return type;
799 }
800
801 /* Create a Java string in the inferior from a (Utf8) literal. */
802
803 static value_ptr
804 java_value_string (char *ptr, int len)
805 {
806   error ("not implemented - java_value_string");        /* FIXME */
807 }
808
809 /* Print the character C on STREAM as part of the contents of a literal
810    string whose delimiter is QUOTER.  Note that that format for printing
811    characters and strings is language specific. */
812
813 static void
814 java_emit_char (int c, struct ui_file *stream, int quoter)
815 {
816   switch (c)
817     {
818     case '\\':
819     case '\'':
820       fprintf_filtered (stream, "\\%c", c);
821       break;
822     case '\b':
823       fputs_filtered ("\\b", stream);
824       break;
825     case '\t':
826       fputs_filtered ("\\t", stream);
827       break;
828     case '\n':
829       fputs_filtered ("\\n", stream);
830       break;
831     case '\f':
832       fputs_filtered ("\\f", stream);
833       break;
834     case '\r':
835       fputs_filtered ("\\r", stream);
836       break;
837     default:
838       if (isprint (c))
839         fputc_filtered (c, stream);
840       else
841         fprintf_filtered (stream, "\\u%.4x", (unsigned int) c);
842       break;
843     }
844 }
845
846 static value_ptr
847 evaluate_subexp_java (struct type *expect_type, register struct expression *exp,
848                       register int *pos, enum noside noside)
849 {
850   int pc = *pos;
851   int i;
852   char *name;
853   enum exp_opcode op = exp->elts[*pos].opcode;
854   value_ptr arg1, arg2;
855   struct type *type;
856   switch (op)
857     {
858     case UNOP_IND:
859       if (noside == EVAL_SKIP)
860         goto standard;
861       (*pos)++;
862       arg1 = evaluate_subexp_java (NULL_TYPE, exp, pos, EVAL_NORMAL);
863       if (is_object_type (VALUE_TYPE (arg1)))
864         {
865           struct type *type;
866
867           type = type_from_class (java_class_from_object (arg1));
868           arg1 = value_cast (lookup_pointer_type (type), arg1);
869         }
870       if (noside == EVAL_SKIP)
871         goto nosideret;
872       return value_ind (arg1);
873
874     case BINOP_SUBSCRIPT:
875       (*pos)++;
876       arg1 = evaluate_subexp_with_coercion (exp, pos, noside);
877       arg2 = evaluate_subexp_with_coercion (exp, pos, noside);
878       if (noside == EVAL_SKIP)
879         goto nosideret;
880       /* If the user attempts to subscript something that is not an
881          array or pointer type (like a plain int variable for example),
882          then report this as an error. */
883
884       COERCE_REF (arg1);
885       type = check_typedef (VALUE_TYPE (arg1));
886       if (TYPE_CODE (type) == TYPE_CODE_PTR)
887         type = check_typedef (TYPE_TARGET_TYPE (type));
888       name = TYPE_NAME (type);
889       if (name == NULL)
890         name = TYPE_TAG_NAME (type);
891       i = name == NULL ? 0 : strlen (name);
892       if (TYPE_CODE (type) == TYPE_CODE_STRUCT
893           && i > 2 && name[i - 1] == ']')
894         {
895           CORE_ADDR address;
896           long length, index;
897           struct type *el_type;
898           char buf4[4];
899
900           value_ptr clas = java_class_from_object (arg1);
901           value_ptr temp = clas;
902           /* Get CLASS_ELEMENT_TYPE of the array type. */
903           temp = value_struct_elt (&temp, NULL, "methods",
904                                    NULL, "structure");
905           VALUE_TYPE (temp) = VALUE_TYPE (clas);
906           el_type = type_from_class (temp);
907           if (TYPE_CODE (el_type) == TYPE_CODE_STRUCT)
908             el_type = lookup_pointer_type (el_type);
909
910           if (noside == EVAL_AVOID_SIDE_EFFECTS)
911             return value_zero (el_type, VALUE_LVAL (arg1));
912           address = value_as_pointer (arg1);
913           address += JAVA_OBJECT_SIZE;
914           read_memory (address, buf4, 4);
915           length = (long) extract_signed_integer (buf4, 4);
916           index = (long) value_as_long (arg2);
917           if (index >= length || index < 0)
918             error ("array index (%ld) out of bounds (length: %ld)",
919                    index, length);
920           address = (address + 4) + index * TYPE_LENGTH (el_type);
921           return value_at (el_type, address, NULL);
922         }
923       else if (TYPE_CODE (type) == TYPE_CODE_ARRAY)
924         {
925           if (noside == EVAL_AVOID_SIDE_EFFECTS)
926             return value_zero (TYPE_TARGET_TYPE (type), VALUE_LVAL (arg1));
927           else
928             return value_subscript (arg1, arg2);
929         }
930       if (name)
931         error ("cannot subscript something of type `%s'", name);
932       else
933         error ("cannot subscript requested type");
934
935     case OP_STRING:
936       (*pos)++;
937       i = longest_to_int (exp->elts[pc + 1].longconst);
938       (*pos) += 3 + BYTES_TO_EXP_ELEM (i + 1);
939       if (noside == EVAL_SKIP)
940         goto nosideret;
941       return java_value_string (&exp->elts[pc + 2].string, i);
942
943     case STRUCTOP_STRUCT:
944       arg1 = evaluate_subexp_standard (expect_type, exp, pos, noside);
945       /* Convert object field (such as TYPE.class) to reference. */
946       if (TYPE_CODE (VALUE_TYPE (arg1)) == TYPE_CODE_STRUCT)
947         arg1 = value_addr (arg1);
948       return arg1;
949     default:
950       break;
951     }
952 standard:
953   return evaluate_subexp_standard (expect_type, exp, pos, noside);
954 nosideret:
955   return value_from_longest (builtin_type_long, (LONGEST) 1);
956 }
957
958 static struct type *
959 java_create_fundamental_type (struct objfile *objfile, int typeid)
960 {
961   switch (typeid)
962     {
963     case FT_VOID:
964       return java_void_type;
965     case FT_BOOLEAN:
966       return java_boolean_type;
967     case FT_CHAR:
968       return java_char_type;
969     case FT_FLOAT:
970       return java_float_type;
971     case FT_DBL_PREC_FLOAT:
972       return java_double_type;
973     case FT_BYTE:
974     case FT_SIGNED_CHAR:
975       return java_byte_type;
976     case FT_SHORT:
977     case FT_SIGNED_SHORT:
978       return java_short_type;
979     case FT_INTEGER:
980     case FT_SIGNED_INTEGER:
981       return java_int_type;
982     case FT_LONG:
983     case FT_SIGNED_LONG:
984       return java_long_type;
985     }
986   return c_create_fundamental_type (objfile, typeid);
987 }
988
989 /* Table mapping opcodes into strings for printing operators
990    and precedences of the operators.  */
991
992 const struct op_print java_op_print_tab[] =
993 {
994   {",", BINOP_COMMA, PREC_COMMA, 0},
995   {"=", BINOP_ASSIGN, PREC_ASSIGN, 1},
996   {"||", BINOP_LOGICAL_OR, PREC_LOGICAL_OR, 0},
997   {"&&", BINOP_LOGICAL_AND, PREC_LOGICAL_AND, 0},
998   {"|", BINOP_BITWISE_IOR, PREC_BITWISE_IOR, 0},
999   {"^", BINOP_BITWISE_XOR, PREC_BITWISE_XOR, 0},
1000   {"&", BINOP_BITWISE_AND, PREC_BITWISE_AND, 0},
1001   {"==", BINOP_EQUAL, PREC_EQUAL, 0},
1002   {"!=", BINOP_NOTEQUAL, PREC_EQUAL, 0},
1003   {"<=", BINOP_LEQ, PREC_ORDER, 0},
1004   {">=", BINOP_GEQ, PREC_ORDER, 0},
1005   {">", BINOP_GTR, PREC_ORDER, 0},
1006   {"<", BINOP_LESS, PREC_ORDER, 0},
1007   {">>", BINOP_RSH, PREC_SHIFT, 0},
1008   {"<<", BINOP_LSH, PREC_SHIFT, 0},
1009 #if 0
1010   {">>>", BINOP_ ? ? ?, PREC_SHIFT, 0},
1011 #endif
1012   {"+", BINOP_ADD, PREC_ADD, 0},
1013   {"-", BINOP_SUB, PREC_ADD, 0},
1014   {"*", BINOP_MUL, PREC_MUL, 0},
1015   {"/", BINOP_DIV, PREC_MUL, 0},
1016   {"%", BINOP_REM, PREC_MUL, 0},
1017   {"-", UNOP_NEG, PREC_PREFIX, 0},
1018   {"!", UNOP_LOGICAL_NOT, PREC_PREFIX, 0},
1019   {"~", UNOP_COMPLEMENT, PREC_PREFIX, 0},
1020   {"*", UNOP_IND, PREC_PREFIX, 0},
1021 #if 0
1022   {"instanceof", ? ? ?, ? ? ?, 0},
1023 #endif
1024   {"++", UNOP_PREINCREMENT, PREC_PREFIX, 0},
1025   {"--", UNOP_PREDECREMENT, PREC_PREFIX, 0},
1026   {NULL, 0, 0, 0}
1027 };
1028
1029 const struct language_defn java_language_defn =
1030 {
1031   "java",                       /* Language name */
1032   language_java,
1033   c_builtin_types,
1034   range_check_off,
1035   type_check_off,
1036   case_sensitive_on,
1037   java_parse,
1038   java_error,
1039   evaluate_subexp_java,
1040   c_printchar,                  /* Print a character constant */
1041   c_printstr,                   /* Function to print string constant */
1042   java_emit_char,               /* Function to print a single character */
1043   java_create_fundamental_type, /* Create fundamental type in this language */
1044   java_print_type,              /* Print a type using appropriate syntax */
1045   java_val_print,               /* Print a value using appropriate syntax */
1046   java_value_print,             /* Print a top-level value */
1047   {"", "", "", ""},             /* Binary format info */
1048   {"0%lo", "0", "o", ""},       /* Octal format info */
1049   {"%ld", "", "d", ""},         /* Decimal format info */
1050   {"0x%lx", "0x", "x", ""},     /* Hex format info */
1051   java_op_print_tab,            /* expression operators for printing */
1052   0,                            /* not c-style arrays */
1053   0,                            /* String lower bound */
1054   &builtin_type_char,           /* Type of string elements */
1055   LANG_MAGIC
1056 };
1057
1058 void
1059 _initialize_java_language (void)
1060 {
1061
1062   java_int_type = init_type (TYPE_CODE_INT, 4, 0, "int", NULL);
1063   java_short_type = init_type (TYPE_CODE_INT, 2, 0, "short", NULL);
1064   java_long_type = init_type (TYPE_CODE_INT, 8, 0, "long", NULL);
1065   java_byte_type = init_type (TYPE_CODE_INT, 1, 0, "byte", NULL);
1066   java_boolean_type = init_type (TYPE_CODE_BOOL, 1, 0, "boolean", NULL);
1067   java_char_type = init_type (TYPE_CODE_CHAR, 2, TYPE_FLAG_UNSIGNED, "char", NULL);
1068   java_float_type = init_type (TYPE_CODE_FLT, 4, 0, "float", NULL);
1069   java_double_type = init_type (TYPE_CODE_FLT, 8, 0, "double", NULL);
1070   java_void_type = init_type (TYPE_CODE_VOID, 1, 0, "void", NULL);
1071
1072   add_language (&java_language_defn);
1073 }
1074
1075 /* Cleanup code that should be run on every "run".
1076    We should use make_run_cleanup to have this be called.
1077    But will that mess up values in value histry?  FIXME */
1078
1079 extern void java_rerun_cleanup (void);
1080 void
1081 java_rerun_cleanup (void)
1082 {
1083   if (class_symtab != NULL)
1084     {
1085       free_symtab (class_symtab);       /* ??? */
1086       class_symtab = NULL;
1087     }
1088   if (dynamics_objfile != NULL)
1089     {
1090       free_objfile (dynamics_objfile);
1091       dynamics_objfile = NULL;
1092     }
1093
1094   java_object_type = NULL;
1095 }