defineclass.cc (handleMethodsEnd): Precompute code for static method.

* defineclass.cc (handleMethodsEnd): Precompute code for static
	method.
	(handleCodeAttribute): Likewise.
	* resolve.cc (ncode): Use run_class for unsynchronized static
	methods.
	* include/java-interp.h (class _Jv_InterpMethod): Declare
	run_class.
	* interpret.cc (run_synch_class): Initialize class.
	(run) [insn_invokestatic]: Don't initialize class.
	[insn_anewarray]: Likewise.
	[insn_multianewarray]: Likewise.
	(run_class): New function.

From-SVN: r61727
This commit is contained in:
Tom Tromey 2003-01-24 19:58:21 +00:00 committed by Tom Tromey
parent d291503a67
commit 4c98b1b078
5 changed files with 73 additions and 21 deletions

View file

@ -1,6 +1,6 @@
// resolve.cc - Code for linking and resolving classes and pool entries.
/* Copyright (C) 1999, 2000, 2001 , 2002 Free Software Foundation
/* Copyright (C) 1999, 2000, 2001, 2002, 2003 Free Software Foundation
This file is part of libgcj.
@ -947,7 +947,10 @@ _Jv_InterpMethod::ncode ()
}
else
{
fun = (ffi_closure_fun)&_Jv_InterpMethod::run_normal;
if (staticp)
fun = (ffi_closure_fun)&_Jv_InterpMethod::run_class;
else
fun = (ffi_closure_fun)&_Jv_InterpMethod::run_normal;
}
FFI_PREP_RAW_CLOSURE (&closure->closure,
@ -959,7 +962,6 @@ _Jv_InterpMethod::ncode ()
return self->ncode;
}
void *
_Jv_JNIMethod::ncode ()
{