2007-05-30 H.J. Lu <hongjiu.lu@intel.com>
[official-gcc.git] / libjava / interpret.cc
blob18b4ae0e3e9550ded888af7668456bea17214604
1 // interpret.cc - Code for the interpreter
3 /* Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation
5 This file is part of libgcj.
7 This software is copyrighted work licensed under the terms of the
8 Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
9 details. */
11 /* Author: Kresten Krab Thorup <krab@gnu.org> */
13 #include <config.h>
14 #include <platform.h>
16 #pragma implementation "java-interp.h"
18 #include <jvm.h>
19 #include <java-cpool.h>
20 #include <java-interp.h>
21 #include <java/lang/System.h>
22 #include <java/lang/String.h>
23 #include <java/lang/Integer.h>
24 #include <java/lang/Long.h>
25 #include <java/lang/StringBuffer.h>
26 #include <java/lang/Class.h>
27 #include <java/lang/reflect/Modifier.h>
28 #include <java/lang/InternalError.h>
29 #include <java/lang/NullPointerException.h>
30 #include <java/lang/ArithmeticException.h>
31 #include <java/lang/IncompatibleClassChangeError.h>
32 #include <java/lang/InstantiationException.h>
33 #include <java/lang/Thread.h>
34 #include <java-insns.h>
35 #include <java-signal.h>
36 #include <java/lang/ClassFormatError.h>
37 #include <execution.h>
38 #include <java/lang/reflect/Modifier.h>
40 #include <jvmti.h>
41 #include "jvmti-int.h"
43 #include <gnu/gcj/jvmti/Breakpoint.h>
44 #include <gnu/gcj/jvmti/BreakpointManager.h>
46 #ifdef INTERPRETER
48 // Execution engine for interpreted code.
49 _Jv_InterpreterEngine _Jv_soleInterpreterEngine;
51 #include <stdlib.h>
53 using namespace gcj;
55 static void throw_internal_error (const char *msg)
56 __attribute__ ((__noreturn__));
57 static void throw_incompatible_class_change_error (jstring msg)
58 __attribute__ ((__noreturn__));
59 static void throw_null_pointer_exception ()
60 __attribute__ ((__noreturn__));
62 static void throw_class_format_error (jstring msg)
63 __attribute__ ((__noreturn__));
64 static void throw_class_format_error (const char *msg)
65 __attribute__ ((__noreturn__));
67 static void find_catch_location (jthrowable, jthread, jmethodID *, jlong *);
69 // A macro to facilitate JVMTI exception reporting
70 #define REPORT_EXCEPTION(Jthrowable) \
71 do { \
72 if (JVMTI_REQUESTED_EVENT (Exception)) \
73 _Jv_ReportJVMTIExceptionThrow (Jthrowable); \
74 } \
75 while (0)
77 #ifdef DIRECT_THREADED
78 // Lock to ensure that methods are not compiled concurrently.
79 // We could use a finer-grained lock here, however it is not safe to use
80 // the Class monitor as user code in another thread could hold it.
81 static _Jv_Mutex_t compile_mutex;
83 void
84 _Jv_InitInterpreter()
86 _Jv_MutexInit (&compile_mutex);
88 #else
89 void _Jv_InitInterpreter() {}
90 #endif
92 // The breakpoint instruction. For the direct threaded case,
93 // _Jv_InterpMethod::compile will initialize breakpoint_insn
94 // the first time it is called.
95 #ifdef DIRECT_THREADED
96 insn_slot _Jv_InterpMethod::bp_insn_slot;
97 pc_t _Jv_InterpMethod::breakpoint_insn = NULL;
98 #else
99 unsigned char _Jv_InterpMethod::bp_insn_opcode
100 = static_cast<unsigned char> (op_breakpoint);
101 pc_t _Jv_InterpMethod::breakpoint_insn = &_Jv_InterpMethod::bp_insn_opcode;
102 #endif
104 extern "C" double __ieee754_fmod (double,double);
106 static inline void dupx (_Jv_word *sp, int n, int x)
108 // first "slide" n+x elements n to the right
109 int top = n-1;
110 for (int i = 0; i < n+x; i++)
112 sp[(top-i)] = sp[(top-i)-n];
115 // next, copy the n top elements, n+x down
116 for (int i = 0; i < n; i++)
118 sp[top-(n+x)-i] = sp[top-i];
122 // Used to convert from floating types to integral types.
123 template<typename TO, typename FROM>
124 static inline TO
125 convert (FROM val, TO min, TO max)
127 TO ret;
128 if (val >= (FROM) max)
129 ret = max;
130 else if (val <= (FROM) min)
131 ret = min;
132 else if (val != val)
133 ret = 0;
134 else
135 ret = (TO) val;
136 return ret;
139 #define PUSHA(V) (sp++)->o = (V)
140 #define PUSHI(V) (sp++)->i = (V)
141 #define PUSHF(V) (sp++)->f = (V)
142 #if SIZEOF_VOID_P == 8
143 # define PUSHL(V) (sp->l = (V), sp += 2)
144 # define PUSHD(V) (sp->d = (V), sp += 2)
145 #else
146 # define PUSHL(V) do { _Jv_word2 w2; w2.l=(V); \
147 (sp++)->ia[0] = w2.ia[0]; \
148 (sp++)->ia[0] = w2.ia[1]; } while (0)
149 # define PUSHD(V) do { _Jv_word2 w2; w2.d=(V); \
150 (sp++)->ia[0] = w2.ia[0]; \
151 (sp++)->ia[0] = w2.ia[1]; } while (0)
152 #endif
154 #define POPA() ((--sp)->o)
155 #define POPI() ((jint) (--sp)->i) // cast since it may be promoted
156 #define POPF() ((jfloat) (--sp)->f)
157 #if SIZEOF_VOID_P == 8
158 # define POPL() (sp -= 2, (jlong) sp->l)
159 # define POPD() (sp -= 2, (jdouble) sp->d)
160 #else
161 # define POPL() ({ _Jv_word2 w2; \
162 w2.ia[1] = (--sp)->ia[0]; \
163 w2.ia[0] = (--sp)->ia[0]; w2.l; })
164 # define POPD() ({ _Jv_word2 w2; \
165 w2.ia[1] = (--sp)->ia[0]; \
166 w2.ia[0] = (--sp)->ia[0]; w2.d; })
167 #endif
169 #define LOADA(I) (sp++)->o = locals[I].o
170 #define LOADI(I) (sp++)->i = locals[I].i
171 #define LOADF(I) (sp++)->f = locals[I].f
172 #if SIZEOF_VOID_P == 8
173 # define LOADL(I) (sp->l = locals[I].l, sp += 2)
174 # define LOADD(I) (sp->d = locals[I].d, sp += 2)
175 #else
176 # define LOADL(I) do { jint __idx = (I); \
177 (sp++)->ia[0] = locals[__idx].ia[0]; \
178 (sp++)->ia[0] = locals[__idx+1].ia[0]; \
179 } while (0)
180 # define LOADD(I) LOADL(I)
181 #endif
183 #define STOREA(I) \
184 do \
186 jint __idx = (I); \
187 DEBUG_LOCALS_INSN (__idx, 'o'); \
188 locals[__idx].o = (--sp)->o; \
190 while (0)
191 #define STOREI(I) \
192 do \
194 jint __idx = (I); \
195 DEBUG_LOCALS_INSN (__idx, 'i'); \
196 locals[__idx].i = (--sp)->i; \
197 } while (0)
198 #define STOREF(I) \
199 do \
201 jint __idx = (I); \
202 DEBUG_LOCALS_INSN (__idx, 'f'); \
203 locals[__idx].f = (--sp)->f; \
205 while (0)
206 #if SIZEOF_VOID_P == 8
207 # define STOREL(I) \
208 do \
210 jint __idx = (I); \
211 DEBUG_LOCALS_INSN (__idx, 'l'); \
212 DEBUG_LOCALS_INSN (__idx + 1, 'x'); \
213 (sp -= 2, locals[__idx].l = sp->l); \
215 while (0)
216 # define STORED(I) \
217 do \
219 jint __idx = (I); \
220 DEBUG_LOCALS_INSN (__idx, 'd'); \
221 DEBUG_LOCALS_INSN (__idx + 1, 'x'); \
222 (sp -= 2, locals[__idx].d = sp->d); \
224 while (0)
226 #else
227 # define STOREL(I) \
228 do \
230 jint __idx = (I); \
231 DEBUG_LOCALS_INSN (__idx, 'l'); \
232 DEBUG_LOCALS_INSN (__idx + 1, 'x'); \
233 locals[__idx + 1].ia[0] = (--sp)->ia[0]; \
234 locals[__idx].ia[0] = (--sp)->ia[0]; \
236 while (0)
237 # define STORED(I) \
238 do { \
239 jint __idx = (I); \
240 DEBUG_LOCALS_INSN (__idx, 'd'); \
241 DEBUG_LOCALS_INSN (__idx + 1, 'x'); \
242 locals[__idx + 1].ia[0] = (--sp)->ia[0]; \
243 locals[__idx].ia[0] = (--sp)->ia[0]; \
244 } while (0)
245 #endif
247 #define PEEKI(I) (locals+(I))->i
248 #define PEEKA(I) (locals+(I))->o
250 #define POKEI(I,V) \
251 do \
253 jint __idx = (I); \
254 DEBUG_LOCALS_INSN (__idx, 'i'); \
255 ((locals + __idx)->i = (V)); \
257 while (0)
260 #define BINOPI(OP) { \
261 jint value2 = POPI(); \
262 jint value1 = POPI(); \
263 PUSHI(value1 OP value2); \
266 #define BINOPF(OP) { \
267 jfloat value2 = POPF(); \
268 jfloat value1 = POPF(); \
269 PUSHF(value1 OP value2); \
272 #define BINOPL(OP) { \
273 jlong value2 = POPL(); \
274 jlong value1 = POPL(); \
275 PUSHL(value1 OP value2); \
278 #define BINOPD(OP) { \
279 jdouble value2 = POPD(); \
280 jdouble value1 = POPD(); \
281 PUSHD(value1 OP value2); \
284 static inline jint
285 get1s (unsigned char* loc)
287 return *(signed char*)loc;
290 static inline jint
291 get1u (unsigned char* loc)
293 return *loc;
296 static inline jint
297 get2s(unsigned char* loc)
299 return (((jint)*(signed char*)loc) << 8) | ((jint)*(loc+1));
302 static inline jint
303 get2u (unsigned char* loc)
305 return (((jint)(*loc)) << 8) | ((jint)*(loc+1));
308 static jint
309 get4 (unsigned char* loc)
311 return (((jint)(loc[0])) << 24)
312 | (((jint)(loc[1])) << 16)
313 | (((jint)(loc[2])) << 8)
314 | (((jint)(loc[3])) << 0);
317 #define SAVE_PC() frame_desc.pc = pc
319 // We used to define this conditionally, depending on HANDLE_SEGV.
320 // However, that runs into a problem if a chunk in low memory is
321 // mapped and we try to look at a field near the end of a large
322 // object. See PR 26858 for details. It is, most likely, relatively
323 // inexpensive to simply do this check always.
324 #define NULLCHECK(X) \
325 do { SAVE_PC(); if ((X)==NULL) throw_null_pointer_exception (); } while (0)
327 // Note that we can still conditionally define NULLARRAYCHECK, since
328 // we know that all uses of an array will first reference the length
329 // field, which is first -- and thus will trigger a SEGV.
330 #ifdef HANDLE_SEGV
331 #define NULLARRAYCHECK(X) SAVE_PC()
332 #else
333 #define NULLARRAYCHECK(X) \
334 do \
336 SAVE_PC(); \
337 if ((X) == NULL) { throw_null_pointer_exception (); } \
338 } while (0)
339 #endif
341 #define ARRAYBOUNDSCHECK(array, index) \
342 do \
344 if (((unsigned) index) >= (unsigned) (array->length)) \
345 _Jv_ThrowBadArrayIndex (index); \
346 } while (0)
348 void
349 _Jv_InterpMethod::run_normal (ffi_cif *,
350 void *ret,
351 ffi_raw *args,
352 void *__this)
354 _Jv_InterpMethod *_this = (_Jv_InterpMethod *) __this;
355 run (ret, args, _this);
358 void
359 _Jv_InterpMethod::run_normal_debug (ffi_cif *,
360 void *ret,
361 ffi_raw *args,
362 void *__this)
364 _Jv_InterpMethod *_this = (_Jv_InterpMethod *) __this;
365 run_debug (ret, args, _this);
368 void
369 _Jv_InterpMethod::run_synch_object (ffi_cif *,
370 void *ret,
371 ffi_raw *args,
372 void *__this)
374 _Jv_InterpMethod *_this = (_Jv_InterpMethod *) __this;
376 jobject rcv = (jobject) args[0].ptr;
377 JvSynchronize mutex (rcv);
379 run (ret, args, _this);
382 void
383 _Jv_InterpMethod::run_synch_object_debug (ffi_cif *,
384 void *ret,
385 ffi_raw *args,
386 void *__this)
388 _Jv_InterpMethod *_this = (_Jv_InterpMethod *) __this;
390 jobject rcv = (jobject) args[0].ptr;
391 JvSynchronize mutex (rcv);
393 run_debug (ret, args, _this);
396 void
397 _Jv_InterpMethod::run_class (ffi_cif *,
398 void *ret,
399 ffi_raw *args,
400 void *__this)
402 _Jv_InterpMethod *_this = (_Jv_InterpMethod *) __this;
403 _Jv_InitClass (_this->defining_class);
404 run (ret, args, _this);
407 void
408 _Jv_InterpMethod::run_class_debug (ffi_cif *,
409 void *ret,
410 ffi_raw *args,
411 void *__this)
413 _Jv_InterpMethod *_this = (_Jv_InterpMethod *) __this;
414 _Jv_InitClass (_this->defining_class);
415 run_debug (ret, args, _this);
418 void
419 _Jv_InterpMethod::run_synch_class (ffi_cif *,
420 void *ret,
421 ffi_raw *args,
422 void *__this)
424 _Jv_InterpMethod *_this = (_Jv_InterpMethod *) __this;
426 jclass sync = _this->defining_class;
427 _Jv_InitClass (sync);
428 JvSynchronize mutex (sync);
430 run (ret, args, _this);
433 void
434 _Jv_InterpMethod::run_synch_class_debug (ffi_cif *,
435 void *ret,
436 ffi_raw *args,
437 void *__this)
439 _Jv_InterpMethod *_this = (_Jv_InterpMethod *) __this;
441 jclass sync = _this->defining_class;
442 _Jv_InitClass (sync);
443 JvSynchronize mutex (sync);
445 run_debug (ret, args, _this);
448 #ifdef DIRECT_THREADED
449 // "Compile" a method by turning it from bytecode to direct-threaded
450 // code.
451 void
452 _Jv_InterpMethod::compile (const void * const *insn_targets)
454 insn_slot *insns = NULL;
455 int next = 0;
456 unsigned char *codestart = bytecode ();
457 unsigned char *end = codestart + code_length;
458 _Jv_word *pool_data = defining_class->constants.data;
460 #define SET_ONE(Field, Value) \
461 do \
463 if (first_pass) \
464 ++next; \
465 else \
466 insns[next++].Field = Value; \
468 while (0)
470 #define SET_INSN(Value) SET_ONE (insn, (void *) Value)
471 #define SET_INT(Value) SET_ONE (int_val, Value)
472 #define SET_DATUM(Value) SET_ONE (datum, Value)
474 // Map from bytecode PC to slot in INSNS.
475 int *pc_mapping = (int *) __builtin_alloca (sizeof (int) * code_length);
476 for (int i = 0; i < code_length; ++i)
477 pc_mapping[i] = -1;
479 for (int i = 0; i < 2; ++i)
481 jboolean first_pass = i == 0;
483 if (! first_pass)
485 insns = (insn_slot *) _Jv_AllocBytes (sizeof (insn_slot) * next);
486 number_insn_slots = next;
487 next = 0;
490 unsigned char *pc = codestart;
491 while (pc < end)
493 int base_pc_val = pc - codestart;
494 if (first_pass)
495 pc_mapping[base_pc_val] = next;
497 java_opcode opcode = (java_opcode) *pc++;
498 // Just elide NOPs.
499 if (opcode == op_nop)
500 continue;
501 SET_INSN (insn_targets[opcode]);
503 switch (opcode)
505 case op_nop:
506 case op_aconst_null:
507 case op_iconst_m1:
508 case op_iconst_0:
509 case op_iconst_1:
510 case op_iconst_2:
511 case op_iconst_3:
512 case op_iconst_4:
513 case op_iconst_5:
514 case op_lconst_0:
515 case op_lconst_1:
516 case op_fconst_0:
517 case op_fconst_1:
518 case op_fconst_2:
519 case op_dconst_0:
520 case op_dconst_1:
521 case op_iload_0:
522 case op_iload_1:
523 case op_iload_2:
524 case op_iload_3:
525 case op_lload_0:
526 case op_lload_1:
527 case op_lload_2:
528 case op_lload_3:
529 case op_fload_0:
530 case op_fload_1:
531 case op_fload_2:
532 case op_fload_3:
533 case op_dload_0:
534 case op_dload_1:
535 case op_dload_2:
536 case op_dload_3:
537 case op_aload_0:
538 case op_aload_1:
539 case op_aload_2:
540 case op_aload_3:
541 case op_iaload:
542 case op_laload:
543 case op_faload:
544 case op_daload:
545 case op_aaload:
546 case op_baload:
547 case op_caload:
548 case op_saload:
549 case op_istore_0:
550 case op_istore_1:
551 case op_istore_2:
552 case op_istore_3:
553 case op_lstore_0:
554 case op_lstore_1:
555 case op_lstore_2:
556 case op_lstore_3:
557 case op_fstore_0:
558 case op_fstore_1:
559 case op_fstore_2:
560 case op_fstore_3:
561 case op_dstore_0:
562 case op_dstore_1:
563 case op_dstore_2:
564 case op_dstore_3:
565 case op_astore_0:
566 case op_astore_1:
567 case op_astore_2:
568 case op_astore_3:
569 case op_iastore:
570 case op_lastore:
571 case op_fastore:
572 case op_dastore:
573 case op_aastore:
574 case op_bastore:
575 case op_castore:
576 case op_sastore:
577 case op_pop:
578 case op_pop2:
579 case op_dup:
580 case op_dup_x1:
581 case op_dup_x2:
582 case op_dup2:
583 case op_dup2_x1:
584 case op_dup2_x2:
585 case op_swap:
586 case op_iadd:
587 case op_isub:
588 case op_imul:
589 case op_idiv:
590 case op_irem:
591 case op_ishl:
592 case op_ishr:
593 case op_iushr:
594 case op_iand:
595 case op_ior:
596 case op_ixor:
597 case op_ladd:
598 case op_lsub:
599 case op_lmul:
600 case op_ldiv:
601 case op_lrem:
602 case op_lshl:
603 case op_lshr:
604 case op_lushr:
605 case op_land:
606 case op_lor:
607 case op_lxor:
608 case op_fadd:
609 case op_fsub:
610 case op_fmul:
611 case op_fdiv:
612 case op_frem:
613 case op_dadd:
614 case op_dsub:
615 case op_dmul:
616 case op_ddiv:
617 case op_drem:
618 case op_ineg:
619 case op_i2b:
620 case op_i2c:
621 case op_i2s:
622 case op_lneg:
623 case op_fneg:
624 case op_dneg:
625 case op_i2l:
626 case op_i2f:
627 case op_i2d:
628 case op_l2i:
629 case op_l2f:
630 case op_l2d:
631 case op_f2i:
632 case op_f2l:
633 case op_f2d:
634 case op_d2i:
635 case op_d2l:
636 case op_d2f:
637 case op_lcmp:
638 case op_fcmpl:
639 case op_fcmpg:
640 case op_dcmpl:
641 case op_dcmpg:
642 case op_monitorenter:
643 case op_monitorexit:
644 case op_ireturn:
645 case op_lreturn:
646 case op_freturn:
647 case op_dreturn:
648 case op_areturn:
649 case op_return:
650 case op_athrow:
651 case op_arraylength:
652 // No argument, nothing else to do.
653 break;
655 case op_bipush:
656 SET_INT (get1s (pc));
657 ++pc;
658 break;
660 case op_ldc:
662 int index = get1u (pc);
663 ++pc;
664 // For an unresolved class we want to delay resolution
665 // until execution.
666 if (defining_class->constants.tags[index] == JV_CONSTANT_Class)
668 --next;
669 SET_INSN (insn_targets[int (op_jsr_w) + 1]);
670 SET_INT (index);
672 else
673 SET_DATUM (pool_data[index].o);
675 break;
677 case op_ret:
678 case op_iload:
679 case op_lload:
680 case op_fload:
681 case op_dload:
682 case op_aload:
683 case op_istore:
684 case op_lstore:
685 case op_fstore:
686 case op_dstore:
687 case op_astore:
688 case op_newarray:
689 SET_INT (get1u (pc));
690 ++pc;
691 break;
693 case op_iinc:
694 SET_INT (get1u (pc));
695 SET_INT (get1s (pc + 1));
696 pc += 2;
697 break;
699 case op_ldc_w:
701 int index = get2u (pc);
702 pc += 2;
703 // For an unresolved class we want to delay resolution
704 // until execution.
705 if (defining_class->constants.tags[index] == JV_CONSTANT_Class)
707 --next;
708 SET_INSN (insn_targets[int (op_jsr_w) + 1]);
709 SET_INT (index);
711 else
712 SET_DATUM (pool_data[index].o);
714 break;
716 case op_ldc2_w:
718 int index = get2u (pc);
719 pc += 2;
720 SET_DATUM (&pool_data[index]);
722 break;
724 case op_sipush:
725 SET_INT (get2s (pc));
726 pc += 2;
727 break;
729 case op_new:
730 case op_getstatic:
731 case op_getfield:
732 case op_putfield:
733 case op_putstatic:
734 case op_anewarray:
735 case op_instanceof:
736 case op_checkcast:
737 case op_invokespecial:
738 case op_invokestatic:
739 case op_invokevirtual:
740 SET_INT (get2u (pc));
741 pc += 2;
742 break;
744 case op_multianewarray:
745 SET_INT (get2u (pc));
746 SET_INT (get1u (pc + 2));
747 pc += 3;
748 break;
750 case op_jsr:
751 case op_ifeq:
752 case op_ifne:
753 case op_iflt:
754 case op_ifge:
755 case op_ifgt:
756 case op_ifle:
757 case op_if_icmpeq:
758 case op_if_icmpne:
759 case op_if_icmplt:
760 case op_if_icmpge:
761 case op_if_icmpgt:
762 case op_if_icmple:
763 case op_if_acmpeq:
764 case op_if_acmpne:
765 case op_ifnull:
766 case op_ifnonnull:
767 case op_goto:
769 int offset = get2s (pc);
770 pc += 2;
772 int new_pc = base_pc_val + offset;
774 bool orig_was_goto = opcode == op_goto;
776 // Thread jumps. We limit the loop count; this lets
777 // us avoid infinite loops if the bytecode contains
778 // such. `10' is arbitrary.
779 int count = 10;
780 while (codestart[new_pc] == op_goto && count-- > 0)
781 new_pc += get2s (&codestart[new_pc + 1]);
783 // If the jump takes us to a `return' instruction and
784 // the original branch was an unconditional goto, then
785 // we hoist the return.
786 opcode = (java_opcode) codestart[new_pc];
787 if (orig_was_goto
788 && (opcode == op_ireturn || opcode == op_lreturn
789 || opcode == op_freturn || opcode == op_dreturn
790 || opcode == op_areturn || opcode == op_return))
792 --next;
793 SET_INSN (insn_targets[opcode]);
795 else
796 SET_DATUM (&insns[pc_mapping[new_pc]]);
798 break;
800 case op_tableswitch:
802 while ((pc - codestart) % 4 != 0)
803 ++pc;
805 jint def = get4 (pc);
806 SET_DATUM (&insns[pc_mapping[base_pc_val + def]]);
807 pc += 4;
809 int low = get4 (pc);
810 SET_INT (low);
811 pc += 4;
812 int high = get4 (pc);
813 SET_INT (high);
814 pc += 4;
816 for (int i = low; i <= high; ++i)
818 SET_DATUM (&insns[pc_mapping[base_pc_val + get4 (pc)]]);
819 pc += 4;
822 break;
824 case op_lookupswitch:
826 while ((pc - codestart) % 4 != 0)
827 ++pc;
829 jint def = get4 (pc);
830 SET_DATUM (&insns[pc_mapping[base_pc_val + def]]);
831 pc += 4;
833 jint npairs = get4 (pc);
834 pc += 4;
835 SET_INT (npairs);
837 while (npairs-- > 0)
839 jint match = get4 (pc);
840 jint offset = get4 (pc + 4);
841 SET_INT (match);
842 SET_DATUM (&insns[pc_mapping[base_pc_val + offset]]);
843 pc += 8;
846 break;
848 case op_invokeinterface:
850 jint index = get2u (pc);
851 pc += 2;
852 // We ignore the next two bytes.
853 pc += 2;
854 SET_INT (index);
856 break;
858 case op_wide:
860 opcode = (java_opcode) get1u (pc);
861 pc += 1;
862 jint val = get2u (pc);
863 pc += 2;
865 // We implement narrow and wide instructions using the
866 // same code in the interpreter. So we rewrite the
867 // instruction slot here.
868 if (! first_pass)
869 insns[next - 1].insn = (void *) insn_targets[opcode];
870 SET_INT (val);
872 if (opcode == op_iinc)
874 SET_INT (get2s (pc));
875 pc += 2;
878 break;
880 case op_jsr_w:
881 case op_goto_w:
883 jint offset = get4 (pc);
884 pc += 4;
885 SET_DATUM (&insns[pc_mapping[base_pc_val + offset]]);
887 break;
889 // Some "can't happen" cases that we include for
890 // error-checking purposes.
891 case op_putfield_1:
892 case op_putfield_2:
893 case op_putfield_4:
894 case op_putfield_8:
895 case op_putfield_a:
896 case op_putstatic_1:
897 case op_putstatic_2:
898 case op_putstatic_4:
899 case op_putstatic_8:
900 case op_putstatic_a:
901 case op_getfield_1:
902 case op_getfield_2s:
903 case op_getfield_2u:
904 case op_getfield_4:
905 case op_getfield_8:
906 case op_getfield_a:
907 case op_getstatic_1:
908 case op_getstatic_2s:
909 case op_getstatic_2u:
910 case op_getstatic_4:
911 case op_getstatic_8:
912 case op_getstatic_a:
913 case op_breakpoint:
914 default:
915 // Fail somehow.
916 break;
921 // Now update exceptions.
922 _Jv_InterpException *exc = exceptions ();
923 for (int i = 0; i < exc_count; ++i)
925 exc[i].start_pc.p = &insns[pc_mapping[exc[i].start_pc.i]];
926 exc[i].end_pc.p = &insns[pc_mapping[exc[i].end_pc.i]];
927 exc[i].handler_pc.p = &insns[pc_mapping[exc[i].handler_pc.i]];
928 // FIXME: resolve_pool_entry can throw - we shouldn't be doing this
929 // during compilation.
930 jclass handler
931 = (_Jv_Linker::resolve_pool_entry (defining_class,
932 exc[i].handler_type.i)).clazz;
933 exc[i].handler_type.p = handler;
936 // Translate entries in the LineNumberTable from bytecode PC's to direct
937 // threaded interpreter instruction values.
938 for (int i = 0; i < line_table_len; i++)
940 int byte_pc = line_table[i].bytecode_pc;
941 // It isn't worth throwing an exception if this table is
942 // corrupted, but at the same time we don't want a crash.
943 if (byte_pc < 0 || byte_pc >= code_length)
944 byte_pc = 0;
945 line_table[i].pc = &insns[pc_mapping[byte_pc]];
948 prepared = insns;
950 if (breakpoint_insn == NULL)
952 bp_insn_slot.insn = const_cast<void *> (insn_targets[op_breakpoint]);
953 breakpoint_insn = &bp_insn_slot;
956 #endif /* DIRECT_THREADED */
958 /* Run the given method.
959 When args is NULL, don't run anything -- just compile it. */
960 void
961 _Jv_InterpMethod::run (void *retp, ffi_raw *args, _Jv_InterpMethod *meth)
963 #undef DEBUG
964 #undef DEBUG_LOCALS_INSN
965 #define DEBUG_LOCALS_INSN(s, t) do {} while (0)
967 #include "interpret-run.cc"
970 void
971 _Jv_InterpMethod::run_debug (void *retp, ffi_raw *args, _Jv_InterpMethod *meth)
973 #define DEBUG
974 #undef DEBUG_LOCALS_INSN
975 #define DEBUG_LOCALS_INSN(s, t) \
976 do \
978 frame_desc.locals_type[s] = t; \
980 while (0)
982 #include "interpret-run.cc"
985 static void
986 throw_internal_error (const char *msg)
988 jthrowable t = new java::lang::InternalError (JvNewStringLatin1 (msg));
989 REPORT_EXCEPTION (t);
990 throw t;
993 static void
994 throw_incompatible_class_change_error (jstring msg)
996 jthrowable t = new java::lang::IncompatibleClassChangeError (msg);
997 REPORT_EXCEPTION (t);
998 throw t;
1001 static void
1002 throw_null_pointer_exception ()
1004 jthrowable t = new java::lang::NullPointerException;
1005 REPORT_EXCEPTION (t);
1006 throw t;
1009 /* Look up source code line number for given bytecode (or direct threaded
1010 interpreter) PC. */
1012 _Jv_InterpMethod::get_source_line(pc_t mpc)
1014 int line = line_table_len > 0 ? line_table[0].line : -1;
1015 for (int i = 1; i < line_table_len; i++)
1016 if (line_table[i].pc > mpc)
1017 break;
1018 else
1019 line = line_table[i].line;
1021 return line;
1024 /** Do static initialization for fields with a constant initializer */
1025 void
1026 _Jv_InitField (jobject obj, jclass klass, int index)
1028 using namespace java::lang::reflect;
1030 if (obj != 0 && klass == 0)
1031 klass = obj->getClass ();
1033 if (!_Jv_IsInterpretedClass (klass))
1034 return;
1036 _Jv_InterpClass *iclass = (_Jv_InterpClass*)klass->aux_info;
1038 _Jv_Field * field = (&klass->fields[0]) + index;
1040 if (index > klass->field_count)
1041 throw_internal_error ("field out of range");
1043 int init = iclass->field_initializers[index];
1044 if (init == 0)
1045 return;
1047 _Jv_Constants *pool = &klass->constants;
1048 int tag = pool->tags[init];
1050 if (! field->isResolved ())
1051 throw_internal_error ("initializing unresolved field");
1053 if (obj==0 && ((field->flags & Modifier::STATIC) == 0))
1054 throw_internal_error ("initializing non-static field with no object");
1056 void *addr = 0;
1058 if ((field->flags & Modifier::STATIC) != 0)
1059 addr = (void*) field->u.addr;
1060 else
1061 addr = (void*) (((char*)obj) + field->u.boffset);
1063 switch (tag)
1065 case JV_CONSTANT_String:
1067 jstring str;
1068 str = _Jv_NewStringUtf8Const (pool->data[init].utf8);
1069 pool->data[init].string = str;
1070 pool->tags[init] = JV_CONSTANT_ResolvedString;
1072 /* fall through */
1074 case JV_CONSTANT_ResolvedString:
1075 if (! (field->type == &java::lang::String::class$
1076 || field->type == &java::lang::Class::class$))
1077 throw_class_format_error ("string initialiser to non-string field");
1079 *(jstring*)addr = pool->data[init].string;
1080 break;
1082 case JV_CONSTANT_Integer:
1084 int value = pool->data[init].i;
1086 if (field->type == JvPrimClass (boolean))
1087 *(jboolean*)addr = (jboolean)value;
1089 else if (field->type == JvPrimClass (byte))
1090 *(jbyte*)addr = (jbyte)value;
1092 else if (field->type == JvPrimClass (char))
1093 *(jchar*)addr = (jchar)value;
1095 else if (field->type == JvPrimClass (short))
1096 *(jshort*)addr = (jshort)value;
1098 else if (field->type == JvPrimClass (int))
1099 *(jint*)addr = (jint)value;
1101 else
1102 throw_class_format_error ("erroneous field initializer");
1104 break;
1106 case JV_CONSTANT_Long:
1107 if (field->type != JvPrimClass (long))
1108 throw_class_format_error ("erroneous field initializer");
1110 *(jlong*)addr = _Jv_loadLong (&pool->data[init]);
1111 break;
1113 case JV_CONSTANT_Float:
1114 if (field->type != JvPrimClass (float))
1115 throw_class_format_error ("erroneous field initializer");
1117 *(jfloat*)addr = pool->data[init].f;
1118 break;
1120 case JV_CONSTANT_Double:
1121 if (field->type != JvPrimClass (double))
1122 throw_class_format_error ("erroneous field initializer");
1124 *(jdouble*)addr = _Jv_loadDouble (&pool->data[init]);
1125 break;
1127 default:
1128 throw_class_format_error ("erroneous field initializer");
1132 inline static unsigned char*
1133 skip_one_type (unsigned char* ptr)
1135 int ch = *ptr++;
1137 while (ch == '[')
1139 ch = *ptr++;
1142 if (ch == 'L')
1144 do { ch = *ptr++; } while (ch != ';');
1147 return ptr;
1150 static ffi_type*
1151 get_ffi_type_from_signature (unsigned char* ptr)
1153 switch (*ptr)
1155 case 'L':
1156 case '[':
1157 return &ffi_type_pointer;
1158 break;
1160 case 'Z':
1161 // On some platforms a bool is a byte, on others an int.
1162 if (sizeof (jboolean) == sizeof (jbyte))
1163 return &ffi_type_sint8;
1164 else
1166 JvAssert (sizeof (jbyte) == sizeof (jint));
1167 return &ffi_type_sint32;
1169 break;
1171 case 'B':
1172 return &ffi_type_sint8;
1173 break;
1175 case 'C':
1176 return &ffi_type_uint16;
1177 break;
1179 case 'S':
1180 return &ffi_type_sint16;
1181 break;
1183 case 'I':
1184 return &ffi_type_sint32;
1185 break;
1187 case 'J':
1188 return &ffi_type_sint64;
1189 break;
1191 case 'F':
1192 return &ffi_type_float;
1193 break;
1195 case 'D':
1196 return &ffi_type_double;
1197 break;
1199 case 'V':
1200 return &ffi_type_void;
1201 break;
1204 throw_internal_error ("unknown type in signature");
1207 /* this function yields the number of actual arguments, that is, if the
1208 * function is non-static, then one is added to the number of elements
1209 * found in the signature */
1211 int
1212 _Jv_count_arguments (_Jv_Utf8Const *signature,
1213 jboolean staticp)
1215 unsigned char *ptr = (unsigned char*) signature->chars();
1216 int arg_count = staticp ? 0 : 1;
1218 /* first, count number of arguments */
1220 // skip '('
1221 ptr++;
1223 // count args
1224 while (*ptr != ')')
1226 ptr = skip_one_type (ptr);
1227 arg_count += 1;
1230 return arg_count;
1233 /* This beast will build a cif, given the signature. Memory for
1234 * the cif itself and for the argument types must be allocated by the
1235 * caller.
1238 int
1239 _Jv_init_cif (_Jv_Utf8Const* signature,
1240 int arg_count,
1241 jboolean staticp,
1242 ffi_cif *cif,
1243 ffi_type **arg_types,
1244 ffi_type **rtype_p)
1246 unsigned char *ptr = (unsigned char*) signature->chars();
1248 int arg_index = 0; // arg number
1249 int item_count = 0; // stack-item count
1251 // setup receiver
1252 if (!staticp)
1254 arg_types[arg_index++] = &ffi_type_pointer;
1255 item_count += 1;
1258 // skip '('
1259 ptr++;
1261 // assign arg types
1262 while (*ptr != ')')
1264 arg_types[arg_index++] = get_ffi_type_from_signature (ptr);
1266 if (*ptr == 'J' || *ptr == 'D')
1267 item_count += 2;
1268 else
1269 item_count += 1;
1271 ptr = skip_one_type (ptr);
1274 // skip ')'
1275 ptr++;
1276 ffi_type *rtype = get_ffi_type_from_signature (ptr);
1278 ptr = skip_one_type (ptr);
1279 if (ptr != (unsigned char*)signature->chars() + signature->len())
1280 throw_internal_error ("did not find end of signature");
1282 if (ffi_prep_cif (cif, FFI_DEFAULT_ABI,
1283 arg_count, rtype, arg_types) != FFI_OK)
1284 throw_internal_error ("ffi_prep_cif failed");
1286 if (rtype_p != NULL)
1287 *rtype_p = rtype;
1289 return item_count;
1292 #if FFI_NATIVE_RAW_API
1293 # define FFI_PREP_RAW_CLOSURE ffi_prep_raw_closure_loc
1294 # define FFI_RAW_SIZE ffi_raw_size
1295 #else
1296 # define FFI_PREP_RAW_CLOSURE ffi_prep_java_raw_closure_loc
1297 # define FFI_RAW_SIZE ffi_java_raw_size
1298 #endif
1300 /* we put this one here, and not in interpret.cc because it
1301 * calls the utility routines _Jv_count_arguments
1302 * which are static to this module. The following struct defines the
1303 * layout we use for the stubs, it's only used in the ncode method. */
1305 typedef struct {
1306 ffi_raw_closure closure;
1307 _Jv_ClosureList list;
1308 ffi_cif cif;
1309 ffi_type *arg_types[0];
1310 } ncode_closure;
1312 typedef void (*ffi_closure_fun) (ffi_cif*,void*,ffi_raw*,void*);
1314 void *
1315 _Jv_InterpMethod::ncode (jclass klass)
1317 using namespace java::lang::reflect;
1319 if (self->ncode != 0)
1320 return self->ncode;
1322 jboolean staticp = (self->accflags & Modifier::STATIC) != 0;
1323 int arg_count = _Jv_count_arguments (self->signature, staticp);
1325 void *code;
1326 ncode_closure *closure =
1327 (ncode_closure*)ffi_closure_alloc (sizeof (ncode_closure)
1328 + arg_count * sizeof (ffi_type*),
1329 &code);
1330 closure->list.registerClosure (klass, closure);
1332 _Jv_init_cif (self->signature,
1333 arg_count,
1334 staticp,
1335 &closure->cif,
1336 &closure->arg_types[0],
1337 NULL);
1339 ffi_closure_fun fun;
1341 args_raw_size = FFI_RAW_SIZE (&closure->cif);
1343 JvAssert ((self->accflags & Modifier::NATIVE) == 0);
1345 if ((self->accflags & Modifier::SYNCHRONIZED) != 0)
1347 if (staticp)
1349 if (JVMTI::enabled)
1350 fun = (ffi_closure_fun)&_Jv_InterpMethod::run_synch_class_debug;
1351 else
1352 fun = (ffi_closure_fun)&_Jv_InterpMethod::run_synch_class;
1354 else
1356 if (JVMTI::enabled)
1357 fun = (ffi_closure_fun)&_Jv_InterpMethod::run_synch_object_debug;
1358 else
1359 fun = (ffi_closure_fun)&_Jv_InterpMethod::run_synch_object;
1362 else
1364 if (staticp)
1366 if (JVMTI::enabled)
1367 fun = (ffi_closure_fun)&_Jv_InterpMethod::run_class_debug;
1368 else
1369 fun = (ffi_closure_fun)&_Jv_InterpMethod::run_class;
1371 else
1373 if (JVMTI::enabled)
1374 fun = (ffi_closure_fun)&_Jv_InterpMethod::run_normal_debug;
1375 else
1376 fun = (ffi_closure_fun)&_Jv_InterpMethod::run_normal;
1380 FFI_PREP_RAW_CLOSURE (&closure->closure,
1381 &closure->cif,
1382 fun,
1383 (void*)this,
1384 code);
1386 self->ncode = code;
1388 return self->ncode;
1391 /* Find the index of the given insn in the array of insn slots
1392 for this method. Returns -1 if not found. */
1393 jlong
1394 _Jv_InterpMethod::insn_index (pc_t pc)
1396 jlong left = 0;
1397 #ifdef DIRECT_THREADED
1398 jlong right = number_insn_slots;
1399 pc_t insns = prepared;
1400 #else
1401 jlong right = code_length;
1402 pc_t insns = bytecode ();
1403 #endif
1405 while (right >= 0)
1407 jlong mid = (left + right) / 2;
1408 if (&insns[mid] == pc)
1409 return mid;
1411 if (pc < &insns[mid])
1412 right = mid - 1;
1413 else
1414 left = mid + 1;
1417 return -1;
1420 // Method to check if an exception is caught at some location in a method
1421 // (meth). Returns true if this method (meth) contains a catch block for the
1422 // exception (ex). False otherwise. If there is a catch block, it sets the pc
1423 // to the location of the beginning of the catch block.
1424 jboolean
1425 _Jv_InterpMethod::check_handler (pc_t *pc, _Jv_InterpMethod *meth,
1426 java::lang::Throwable *ex)
1428 #ifdef DIRECT_THREADED
1429 void *logical_pc = (void *) ((insn_slot *) (*pc) - 1);
1430 #else
1431 int logical_pc = (*pc) - 1 - meth->bytecode ();
1432 #endif
1433 _Jv_InterpException *exc = meth->exceptions ();
1434 jclass exc_class = ex->getClass ();
1436 for (int i = 0; i < meth->exc_count; i++)
1438 if (PCVAL (exc[i].start_pc) <= logical_pc
1439 && logical_pc < PCVAL (exc[i].end_pc))
1441 #ifdef DIRECT_THREADED
1442 jclass handler = (jclass) exc[i].handler_type.p;
1443 #else
1444 jclass handler = NULL;
1445 if (exc[i].handler_type.i != 0)
1446 handler
1447 = (_Jv_Linker::resolve_pool_entry (meth->defining_class,
1449 #endif /* DIRECT_THREADED */
1450 if (handler == NULL || handler->isAssignableFrom (exc_class))
1452 #ifdef DIRECT_THREADED
1453 (*pc) = (insn_slot *) exc[i].handler_pc.p;
1454 #else
1455 (*pc) = meth->bytecode () + exc[i].handler_pc.i;
1456 #endif /* DIRECT_THREADED */
1457 return true;
1461 return false;
1465 void
1466 _Jv_InterpMethod::get_line_table (jlong& start, jlong& end,
1467 jintArray& line_numbers,
1468 jlongArray& code_indices)
1470 #ifdef DIRECT_THREADED
1471 /* For the DIRECT_THREADED case, if the method has not yet been
1472 * compiled, the linetable will change to insn slots instead of
1473 * bytecode PCs. It is probably easiest, in this case, to simply
1474 * compile the method and guarantee that we are using insn
1475 * slots.
1477 _Jv_CompileMethod (this);
1479 if (line_table_len > 0)
1481 start = 0;
1482 end = number_insn_slots;
1483 line_numbers = JvNewIntArray (line_table_len);
1484 code_indices = JvNewLongArray (line_table_len);
1486 jint* lines = elements (line_numbers);
1487 jlong* indices = elements (code_indices);
1488 for (int i = 0; i < line_table_len; ++i)
1490 lines[i] = line_table[i].line;
1491 indices[i] = insn_index (line_table[i].pc);
1494 #else // !DIRECT_THREADED
1495 if (line_table_len > 0)
1497 start = 0;
1498 end = code_length;
1499 line_numbers = JvNewIntArray (line_table_len);
1500 code_indices = JvNewLongArray (line_table_len);
1502 jint* lines = elements (line_numbers);
1503 jlong* indices = elements (code_indices);
1504 for (int i = 0; i < line_table_len; ++i)
1506 lines[i] = line_table[i].line;
1507 indices[i] = (jlong) line_table[i].bytecode_pc;
1510 #endif // !DIRECT_THREADED
1513 int
1514 _Jv_InterpMethod::get_local_var_table (char **name, char **sig,
1515 char **generic_sig, jlong *startloc,
1516 jint *length, jint *slot,
1517 int table_slot)
1519 if (local_var_table == NULL)
1520 return -2;
1521 if (table_slot >= local_var_table_len)
1522 return -1;
1523 else
1525 *name = local_var_table[table_slot].name;
1526 *sig = local_var_table[table_slot].descriptor;
1527 *generic_sig = local_var_table[table_slot].descriptor;
1529 *startloc = static_cast<jlong>
1530 (local_var_table[table_slot].bytecode_start_pc);
1531 *length = static_cast<jint> (local_var_table[table_slot].length);
1532 *slot = static_cast<jint> (local_var_table[table_slot].slot);
1534 return local_var_table_len - table_slot -1;
1537 pc_t
1538 _Jv_InterpMethod::install_break (jlong index)
1540 return set_insn (index, breakpoint_insn);
1543 pc_t
1544 _Jv_InterpMethod::get_insn (jlong index)
1546 pc_t code;
1548 #ifdef DIRECT_THREADED
1549 if (index >= number_insn_slots || index < 0)
1550 return NULL;
1552 code = prepared;
1553 #else // !DIRECT_THREADED
1554 if (index >= code_length || index < 0)
1555 return NULL;
1557 code = reinterpret_cast<pc_t> (bytecode ());
1558 #endif // !DIRECT_THREADED
1560 return &code[index];
1563 pc_t
1564 _Jv_InterpMethod::set_insn (jlong index, pc_t insn)
1566 #ifdef DIRECT_THREADED
1567 if (index >= number_insn_slots || index < 0)
1568 return NULL;
1570 pc_t code = prepared;
1571 code[index].insn = insn->insn;
1572 #else // !DIRECT_THREADED
1573 if (index >= code_length || index < 0)
1574 return NULL;
1576 pc_t code = reinterpret_cast<pc_t> (bytecode ());
1577 code[index] = *insn;
1578 #endif // !DIRECT_THREADED
1580 return &code[index];
1583 bool
1584 _Jv_InterpMethod::breakpoint_at (jlong index)
1586 pc_t insn = get_insn (index);
1587 if (insn != NULL)
1589 #ifdef DIRECT_THREADED
1590 return (insn->insn == breakpoint_insn->insn);
1591 #else
1592 pc_t code = reinterpret_cast<pc_t> (bytecode ());
1593 return (code[index] == breakpoint_insn);
1594 #endif
1597 return false;
1600 void *
1601 _Jv_JNIMethod::ncode (jclass klass)
1603 using namespace java::lang::reflect;
1605 if (self->ncode != 0)
1606 return self->ncode;
1608 jboolean staticp = (self->accflags & Modifier::STATIC) != 0;
1609 int arg_count = _Jv_count_arguments (self->signature, staticp);
1611 void *code;
1612 ncode_closure *closure =
1613 (ncode_closure*)ffi_closure_alloc (sizeof (ncode_closure)
1614 + arg_count * sizeof (ffi_type*),
1615 &code);
1616 closure->list.registerClosure (klass, closure);
1618 ffi_type *rtype;
1619 _Jv_init_cif (self->signature,
1620 arg_count,
1621 staticp,
1622 &closure->cif,
1623 &closure->arg_types[0],
1624 &rtype);
1626 ffi_closure_fun fun;
1628 args_raw_size = FFI_RAW_SIZE (&closure->cif);
1630 // Initialize the argument types and CIF that represent the actual
1631 // underlying JNI function.
1632 int extra_args = 1;
1633 if ((self->accflags & Modifier::STATIC))
1634 ++extra_args;
1635 jni_arg_types = (ffi_type **) _Jv_AllocBytes ((extra_args + arg_count)
1636 * sizeof (ffi_type *));
1637 int offset = 0;
1638 jni_arg_types[offset++] = &ffi_type_pointer;
1639 if ((self->accflags & Modifier::STATIC))
1640 jni_arg_types[offset++] = &ffi_type_pointer;
1641 memcpy (&jni_arg_types[offset], &closure->arg_types[0],
1642 arg_count * sizeof (ffi_type *));
1644 if (ffi_prep_cif (&jni_cif, _Jv_platform_ffi_abi,
1645 extra_args + arg_count, rtype,
1646 jni_arg_types) != FFI_OK)
1647 throw_internal_error ("ffi_prep_cif failed for JNI function");
1649 JvAssert ((self->accflags & Modifier::NATIVE) != 0);
1651 // FIXME: for now we assume that all native methods for
1652 // interpreted code use JNI.
1653 fun = (ffi_closure_fun) &_Jv_JNIMethod::call;
1655 FFI_PREP_RAW_CLOSURE (&closure->closure,
1656 &closure->cif,
1657 fun,
1658 (void*) this,
1659 code);
1661 self->ncode = code;
1662 return self->ncode;
1665 static void
1666 throw_class_format_error (jstring msg)
1668 jthrowable t = (msg
1669 ? new java::lang::ClassFormatError (msg)
1670 : new java::lang::ClassFormatError);
1671 REPORT_EXCEPTION (t);
1672 throw t;
1675 static void
1676 throw_class_format_error (const char *msg)
1678 throw_class_format_error (JvNewStringLatin1 (msg));
1681 /* This function finds the method and location where the exception EXC
1682 is caught in the stack frame. On return, it sets CATCH_METHOD and
1683 CATCH_LOCATION with the method and location where the catch will
1684 occur. If the exception is not caught, these are set to 0.
1686 This function should only be used with the DEBUG interpreter. */
1687 static void
1688 find_catch_location (::java::lang::Throwable *exc, jthread thread,
1689 jmethodID *catch_method, jlong *catch_loc)
1691 *catch_method = 0;
1692 *catch_loc = 0;
1694 _Jv_InterpFrame *frame
1695 = reinterpret_cast<_Jv_InterpFrame *> (thread->interp_frame);
1696 while (frame != NULL)
1698 pc_t pc = frame->get_pc ();
1699 _Jv_InterpMethod *imeth
1700 = reinterpret_cast<_Jv_InterpMethod *> (frame->self);
1701 if (imeth->check_handler (&pc, imeth, exc))
1703 // This method handles the exception.
1704 *catch_method = imeth->get_method ();
1705 *catch_loc = imeth->insn_index (pc);
1706 return;
1709 frame = frame->next_interp;
1713 /* This method handles JVMTI notifications of thrown exceptions. It
1714 calls find_catch_location to figure out where the exception is
1715 caught (if it is caught).
1717 Like find_catch_location, this should only be called with the
1718 DEBUG interpreter. Since a few exceptions occur outside the
1719 interpreter proper, it is important to not call this function
1720 without checking JVMTI_REQUESTED_EVENT(Exception) first. */
1721 void
1722 _Jv_ReportJVMTIExceptionThrow (jthrowable ex)
1724 jthread thread = ::java::lang::Thread::currentThread ();
1725 _Jv_Frame *frame = reinterpret_cast<_Jv_Frame *> (thread->frame);
1726 jmethodID throw_meth = frame->self->get_method ();
1727 jlocation throw_loc = -1;
1728 if (frame->frame_type == frame_interpreter)
1730 _Jv_InterpFrame * iframe
1731 = reinterpret_cast<_Jv_InterpFrame *> (frame);
1732 _Jv_InterpMethod *imeth
1733 = reinterpret_cast<_Jv_InterpMethod *> (frame->self);
1734 throw_loc = imeth->insn_index (iframe->get_pc ());
1737 jlong catch_loc;
1738 jmethodID catch_method;
1739 find_catch_location (ex, thread, &catch_method, &catch_loc);
1740 _Jv_JVMTI_PostEvent (JVMTI_EVENT_EXCEPTION, thread,
1741 _Jv_GetCurrentJNIEnv (), throw_meth, throw_loc,
1742 ex, catch_method, catch_loc);
1747 void
1748 _Jv_InterpreterEngine::do_verify (jclass klass)
1750 _Jv_InterpClass *iclass = (_Jv_InterpClass *) klass->aux_info;
1751 for (int i = 0; i < klass->method_count; i++)
1753 using namespace java::lang::reflect;
1754 _Jv_MethodBase *imeth = iclass->interpreted_methods[i];
1755 _Jv_ushort accflags = klass->methods[i].accflags;
1756 if ((accflags & (Modifier::NATIVE | Modifier::ABSTRACT)) == 0)
1758 _Jv_InterpMethod *im = reinterpret_cast<_Jv_InterpMethod *> (imeth);
1759 _Jv_VerifyMethod (im);
1764 void
1765 _Jv_InterpreterEngine::do_create_ncode (jclass klass)
1767 _Jv_InterpClass *iclass = (_Jv_InterpClass *) klass->aux_info;
1768 for (int i = 0; i < klass->method_count; i++)
1770 // Just skip abstract methods. This is particularly important
1771 // because we don't resize the interpreted_methods array when
1772 // miranda methods are added to it.
1773 if ((klass->methods[i].accflags
1774 & java::lang::reflect::Modifier::ABSTRACT)
1775 != 0)
1776 continue;
1778 _Jv_MethodBase *imeth = iclass->interpreted_methods[i];
1780 if ((klass->methods[i].accflags & java::lang::reflect::Modifier::NATIVE)
1781 != 0)
1783 // You might think we could use a virtual `ncode' method in
1784 // the _Jv_MethodBase and unify the native and non-native
1785 // cases. Well, we can't, because we don't allocate these
1786 // objects using `new', and thus they don't get a vtable.
1787 _Jv_JNIMethod *jnim = reinterpret_cast<_Jv_JNIMethod *> (imeth);
1788 klass->methods[i].ncode = jnim->ncode (klass);
1790 else if (imeth != 0) // it could be abstract
1792 _Jv_InterpMethod *im = reinterpret_cast<_Jv_InterpMethod *> (imeth);
1793 klass->methods[i].ncode = im->ncode (klass);
1798 _Jv_ClosureList **
1799 _Jv_InterpreterEngine::do_get_closure_list (jclass klass)
1801 _Jv_InterpClass *iclass = (_Jv_InterpClass *) klass->aux_info;
1803 if (!iclass->closures)
1804 iclass->closures = _Jv_ClosureListFinalizer ();
1806 return iclass->closures;
1809 void
1810 _Jv_InterpreterEngine::do_allocate_static_fields (jclass klass,
1811 int pointer_size,
1812 int other_size)
1814 _Jv_InterpClass *iclass = (_Jv_InterpClass *) klass->aux_info;
1816 // Splitting the allocations here lets us scan reference fields and
1817 // avoid scanning non-reference fields. How reference fields are
1818 // scanned is a bit tricky: we allocate using _Jv_AllocRawObj, which
1819 // means that this memory will be scanned conservatively (same
1820 // difference, since we know all the contents here are pointers).
1821 // Then we put pointers into this memory into the 'fields'
1822 // structure. Most of these are interior pointers, which is ok (but
1823 // even so the pointer to the first reference field will be used and
1824 // that is not an interior pointer). The 'fields' array is also
1825 // allocated with _Jv_AllocRawObj (see defineclass.cc), so it will
1826 // be scanned. A pointer to this array is held by Class and thus
1827 // seen by the collector.
1828 char *reference_fields = (char *) _Jv_AllocRawObj (pointer_size);
1829 char *non_reference_fields = (char *) _Jv_AllocBytes (other_size);
1831 for (int i = 0; i < klass->field_count; i++)
1833 _Jv_Field *field = &klass->fields[i];
1835 if ((field->flags & java::lang::reflect::Modifier::STATIC) == 0)
1836 continue;
1838 char *base = field->isRef() ? reference_fields : non_reference_fields;
1839 field->u.addr = base + field->u.boffset;
1841 if (iclass->field_initializers[i] != 0)
1843 _Jv_Linker::resolve_field (field, klass->loader);
1844 _Jv_InitField (0, klass, i);
1848 // Now we don't need the field_initializers anymore, so let the
1849 // collector get rid of it.
1850 iclass->field_initializers = 0;
1853 _Jv_ResolvedMethod *
1854 _Jv_InterpreterEngine::do_resolve_method (_Jv_Method *method, jclass klass,
1855 jboolean staticp)
1857 int arg_count = _Jv_count_arguments (method->signature, staticp);
1859 _Jv_ResolvedMethod* result = (_Jv_ResolvedMethod*)
1860 _Jv_AllocBytes (sizeof (_Jv_ResolvedMethod)
1861 + arg_count*sizeof (ffi_type*));
1863 result->stack_item_count
1864 = _Jv_init_cif (method->signature,
1865 arg_count,
1866 staticp,
1867 &result->cif,
1868 &result->arg_types[0],
1869 NULL);
1871 result->method = method;
1872 result->klass = klass;
1874 return result;
1877 void
1878 _Jv_InterpreterEngine::do_post_miranda_hook (jclass klass)
1880 _Jv_InterpClass *iclass = (_Jv_InterpClass *) klass->aux_info;
1881 for (int i = 0; i < klass->method_count; i++)
1883 // Just skip abstract methods. This is particularly important
1884 // because we don't resize the interpreted_methods array when
1885 // miranda methods are added to it.
1886 if ((klass->methods[i].accflags
1887 & java::lang::reflect::Modifier::ABSTRACT)
1888 != 0)
1889 continue;
1890 // Miranda method additions mean that the `methods' array moves.
1891 // We cache a pointer into this array, so we have to update.
1892 iclass->interpreted_methods[i]->self = &klass->methods[i];
1896 #ifdef DIRECT_THREADED
1897 void
1898 _Jv_CompileMethod (_Jv_InterpMethod* method)
1900 if (method->prepared == NULL)
1902 if (JVMTI::enabled)
1903 _Jv_InterpMethod::run_debug (NULL, NULL, method);
1904 else
1905 _Jv_InterpMethod::run (NULL, NULL, method);
1908 #endif // DIRECT_THREADED
1910 #endif // INTERPRETER