X-Git-Url: http://git.sourceforge.jp/view?a=blobdiff_plain;f=libjava%2FChangeLog;h=e18d7caf2a08f6f036cadcf6e319923b2310ff2a;hb=0f7e35c0e762e7d96b14f89be7f0df0005b74c88;hp=9436ff9093a3df22feea43ca6286fcbae240f9ce;hpb=05a849e5563535b30fbbd0bb50fa47eed2e016a6;p=pf3gnuchains%2Fgcc-fork.git diff --git a/libjava/ChangeLog b/libjava/ChangeLog index 9436ff9093a..e18d7caf2a0 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -1,3 +1,578 @@ +2006-10-25 Andreas Tobler + + * testsuite/libjava.jvmti/natevents.cc (do_callback_arg_tests): Replace + formatting modifiers %p with %#llx and cast the arguments. + +2006-10-20 Tom Tromey + + * testsuite/libjava.jvmti/natevents.cc (do_callback_arg_tests): + Correctly pass jvalues. + +2006-10-18 Tom Tromey + Bryce McKinlay + + * testsuite/libjava.jni/register2.java: New file. + * testsuite/libjava.jni/register2.out: New file. + * testsuite/libjava.jni/register2.c: New file. + * java/lang/natClass.cc (_Jv_GetClassNameUtf8): New function. + * java/lang/Class.h (_Jv_GetClassNameUtf8): Declare. + * jni.cc (struct NativeMethodCacheEntry): New struct. + (nathash): Changed type. + (hash): Updated. + (nathash_find_slot): Likewise. + (nathash_find): Likewise. + (natrehash): Likewise. + (nathash_add): Likewise. + (_Jv_JNI_RegisterNatives): Likewise. + (_Jv_LookupJNIMethod): Likewise. + Idea from Juerg Lehni + +2006-10-16 Geoffrey Keating + + * testsuite/libjava.jvmti/natevents.cc (env): Delete. + (ExceptionCB): Fix types for printf arguments. + (ExceptionCatchCB): Likewise. + (SingleStepCB): Likewise. + (BreakpointCB): Likewise. + (FieldAccessCB): Likewise. + (FieldModificationCB): Likewise. + (CompiledMethodLoadCB): Likewise. + +2006-10-14 Keith Seitz + + * include/java-insns.h (enum java_code): Add op_breakpoint. + * include/java-interp.h (_Jv_InterpMethod): Declare breakpoint_insn. + [INTERPRETER]: Declare _Jv_InterpMethod::bp_insn_slot. + [!INTERPRETER]: Declare _Jv_InterpMethod::bp_insn_opcode. + (install_break): Declare. + * interpret.cc (breakpoint_insn): Define breakpoint insn. + (compile): Add op_breakpoint to "can't happen" cases. + [INTERPRETER] Initialize breakpoint insn if necessary. + (install_break): New method. + * interpret-run.cc: Add op_breakpoint to insn_targets. + Add insn_breakpoint label. + * verify.cc (branch_prepass): Add op_breakpoint to unrecognized + opcodes section of switch statement. + (verify_instructions_0): Likewise. + +2006-10-12 Keith Seitz + + * include/jvmti-int.h (JVMTI): Declare all members "extern". + * jvmti.cc (JVMTI): Define. + +2006-10-11 Tom Tromey + + * Makefile.in: Rebuilt. + * Makefile.am (install-data-local): Use mkinstalldirs. + +2006-10-10 Tom Tromey + + * gnu/classpath/natSystemProperties.cc (insertSystemProperties): + Removed obsolete comment. + +2006-10-10 Keith Seitz + + * include/java-interp.h (_Jv_InterpMethod::get_insn): Declare. + (_Jv_InterpMethod::set_insn): Declare. + * interpret.cc (_Jv_InterpMethod::get_insn): New method. + (_Jv_InterpMethod::get_insn): New method. + +2006-10-10 Tom Tromey + + * prims.cc (_Jv_PrependVersionedLibdir): Use + _Jv_platform_path_separator. + +2006-10-10 Tom Tromey + + PR libgcj/29205: + * Makefile.in: Rebuilt. + * Makefile.am (install-data-local): Install the .pc file. + (pkgconfig_DATA): Removed. + +2006-10-03 Gary Benson + + * java/net/InetAddress.java + (): Reorder the static initializers. + +2006-10-02 Gary Benson + + * java/net/InetAddress.java + (checkConnect): Reinstated. + (loopbackAddress): Ensure initialized from non-null object. + +2006-09-30 Keith Seitz + + * include/java-interp.h (prepared): Change type to pc_t. + (insn_index): Define for both DIRECT_THREADED and bytecode interpreters. + * interpret.cc [!DIRECT_THREADED] (POKEI): Fix typo. + (insn_index): Implement for bytecode interpreter. + * interpret-run.cc [!DIRECT_THREADED] (AVAL1U): Add _Jv_Linker class + qualifier to resolve_pool_entry. + [!DIRECT_THREADED] (AVAL2U): Likewise. + [!DIRECT_THREADED] bytecode() cannot be called without an object. + Changed all typos. + [!DIRECT_THREADED] Likewise for defining_class. + +2006-09-26 Jack Howarth + + PR target/26792: + * exception.cc (PERSONALITY_FUNCTION): use _Unwind_GetIP + if HAVE_GETIPINFO not defined. + * stacktrace.cc (_Jv_StackTrace::UnwindTraceFn): Likewise. + (_Jv_StackTrace::getLineNumberForFrame): Likewise. + * configure.ac: use GCC_CHECK_UNWIND_GETIPINFO. + * aclocal.m4, configure, include/config.h.in, Makefile.in: + Rebuilt. + +2006-09-27 Tom Tromey + + https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=201712 + * java/util/Locale.java (hashcode): No longer transient. + (writeObject): Use ObjectOutputStream.PutField and + defaultWriteObject. + (readObject): Use defaultReadObject. + +2006-09-25 Keith Seitz + + * gnu/classpath/jdwp/VMVirtualMachine.java + (_jdwp_suspend_counts): New private variable. + * gnu/classpath/jdwp/natVMVirtualMachine.cc + (initialize): Initialize _jdwp_suspend_counts. + (suspendThread): Implement. + (resumeThread): Implement. + (getSuspendCount): Implement. + +2006-09-22 Marco Trudel + + * jvmti.cc (_Jv_JVMTI_GetErrorName): Now static. Marked JNICALL. + +2006-09-21 Keith Seitz + + * jvmti.cc (_Jv_JVMTI_DisposeEnvironment): Check for enabled + events. + (check_enabled_event): New function. + (check_enabled_events): New function. + (post_event): New function. + (_Jv_JVMTI_SetEventNotificationMode): New function. + (_Jv_JVMTI_SetEventCallbacks): New function. + (_Jv_JVMTI_Interface): Define SetEventNotificationMode and + SetEventCallbacks members. + * include/jvmti-int.h: New file. + * include/jvmti_md.h (EVENT_SLOTS) [__GCJ_JNI_IMP__]: Define. + (_CLASSPATH_JVMTIENV_CONTENTS) [__GCJ_JNI_IMPL__]: Define. + * testsuite/libjava.jvmti/events.java: New file. + * testsuite/libjava.jvmti/events.out: New file. + * testsuite/libjava.jvmti/natevents.cc: New file. + +2006-09-21 Sandro Tolaini + + * configure.ac: Don't use darwin-signal.h as signal handler for + Darwin/i386. + * configure.host: Enable Darwin/i386 as a supported host, with no + signal unwinding. + +2006-09-20 Keith Seitz + + * jvmti.cc (_Jv_JVMTI_CreateRawMonitor): Use _Jv_MallocUnchked + and return JVMTI_ERROR_OUT_OF_MEMORY if necessary. + (_Jv_JVMTI_GetClassMethods): Likewise. + (_Jv_JVMTI_GetClassLoaderClasses): Likewise. + (_Jv_JVMTI_GetJNIFunctionTable): Likewise. + (_Jv_JVMTI_GetSystemProperty): Likewise. + +2006-09-20 Keith Seitz + + * jvmti.cc (_Jv_JVMTI_GetErrorName): New function. + (_Jv_JVMTI_Interface): Define GetErrorName member. + * testsuite/libjava.jvmti/geterrorname.java: New file. + * testsuite/libjava.jvmti/geterrorname.out: New file. + * testsuite/libjava.jvmti/natgeterrorname.cc: New file. + +2006-09-20 Gary Benson + + * java/net/InetAddress.java: Mostly merged with Classpath. + * java/net/VMInetAddress.java: New file. + * sources.am, Makefile.in: Rebuilt. + + * java/net/natVMNetworkInterfacePosix.cc + (getInterfaces): Create InetAddress objects using + InetAddress.getByAddress. + * gnu/java/net/natPlainSocketImplPosix.cc + (accept, getOption): Likewise. + * gnu/java/net/natPlainDatagramSocketImplPosix.cc + (peekData, receive, getLocalAddress): Likewise. + +2006-09-19 Keith Seitz + + * testsuite/libjava.jvmti/jvmti.exp: New file. + +2006-09-19 Keith Seitz + + * jvmti.cc (THREAD_DEFAULT_TO_CURRENT): Clarify parameter list. + (THREAD_CHECK_VALID): Likewise. + (THREAD_CHECK_ALIVE): Likewise. + (_Jv_JVMTI_SuspendThread): Call THREAD_CHECK_VALID on a Thread not + jthread. + (_Jv_JVMTI_ResumeThread): Likewise. + (_Jv_JVMTI_InterruptThread): Likewise. + + (_Jv_JVMTI_DisposeEnvironment): Probably unwise to dereference an object + that was just freed. + +2006-09-19 Mark Wielaard + + Fixes bug #29137 + * java/util/logging/LogManager.java (addLogger): Always check for + existing children of a new Logger. + +2006-09-19 Tom Tromey + + * java/util/logging/LogManager.java: Re-merged with Classpath. + +2006-09-18 Tom Tromey + + * configure: Rebuilt. + +2006-09-18 Petr Salinger + + * configure.host: Handle kfreebsd. + +2006-09-18 Petr Salinger + + * configure: Rebuilt. + * shlibpath.m4: Handle GNU/kFreeBSD. + +2006-09-14 Tom Tromey + + PR boehm-gc/29068: + * boehm.cc (_Jv_GCAttachThread): Disable on Solaris. + (_Jv_GCDetachThread): Likewise. + +2006-09-14 Andreas Schwab + + * posix-threads.cc: Include "posix.h". + +2006-09-13 Geoffrey Keating + + * posix.cc (_Jv_platform_nanotime): Return nanoseconds, not + microseconds; use gettimeofday when available. + * posix-threads.cc (_Jv_CondWait): Improve accuracy and range of + timeout calculation. + * testsuite/libjava.lang/Thread_Sleep_2.java: New. + * testsuite/libjava.lang/Thread_Sleep_2.out: New. + * testsuite/libjava.lang/Thread_Sleep_2.xfail: New. + +2006-09-12 Tom Tromey + + PR java/29013: + * testsuite/libjava.lang/PR29013.out: Likewise. + * testsuite/libjava.lang/PR29013.java: New file. + +2006-09-12 Tom Tromey + + * testsuite/libjava.jacks/jacks.exp (load_gcc_lib): Removed. + +2006-09-07 Matthias Klose + + * Makefile.am (AM_CXXFLAGS): Remove duplicate define. + * Makefile.in: Regenerate. + +2006-09-06 Keith Seitz + + * java/lang/Class.h (_Jv_FindInterpreterMethod): Change return type + to _Jv_MethodBase instead of _Jv_InterpMethod. + * java/lang/natClass.cc (_Jv_FindInterpreterMethod): Likewise. + Do not check access flags. + Fix some minor style anomalies. + +2006-09-01 Geoffrey Keating + + * testsuite/libjava.jni/jni.exp (gcj_jni_invocation_test_one): + Pass -lgcj to linker for C++ files on Darwin. + +2006-09-01 Keith Seitz + + * jvmti.cc (THREAD_DEFAULT_TO_CURRENT): Encapsulate in do..while loop. + (THREAD_CHECK_VALID): Likewise. + (THREAD_CHECK_IS_ALIVE): Likewise. + (NULL_CHECK): Likewise. + (ILLEGAL_ARGUMENT): Likewise. + +2006-09-01 Keith Seitz + + * include/jvm.h (_Jv_JVMTI_Init): Declare. + * jvmti.cc (_Jv_JVMTI_Init): New function. + * prims.cc (_Jv_CreateJavaVM): Initialize JVMTI. + + * jvmti.cc (ILLEGAL_ARGUMENT): New macro. + (_Jv_JVMTI_Allocate): Use ILLEGAL_ARUMENT. + + * jvmti.cc (_jvmtiEnvironments): New linked list of + JVMTI environments. + (FOREACH_ENVIRONMENT): New macro. + (_envListLock): New object to act as synchronization lock + for _jvmtiEnvironments. + (_Jv_JVMTI_DisposeEnvironment): Check for NULL environment. + Remove the environment from the list of known environments. + (_Jv_GetJVMTIEnv): Add the new environment to the list + of known environments. + +2006-09-01 Gary Benson + + * java/net/InetAddress.java (getLocalHost): Refactor to avoid + security check if getLocalHostname() fails and to provide more + meaningful exceptions it the security check fails. + +2006-09-01 Gary Benson + + * java/net/InetAddress.java (getByAddress): Create Inet4Address + objects when passed IPv4-mapped IPv6 addresses. + (getByName, getAllByName): Defer to the above to ensure that the + correct Inet*Address objects are returned. + +2006-09-01 Gary Benson + + * java/net/InetAddress.java (getByName, getAllByName): + Only perform security check when DNS lookups are required. + +2006-08-31 Keith Seitz + + * include/jvmti_md.h: New file. + + * jvmti.cc (_Jv_JVMTI_RawMonitorWait): Add millis parameter. + Pass millis to _Jv_CondWait. + +2006-08-31 Tom Tromey + + PR libgcj/28698: + * libgcj_bc.c (DECLARE_PRIM_TYPE): New macro. Declare primitive + classes. + +2006-08-24 Keith Seitz + + * prims.cc (remoteDebug): New global. + (jdwpOptions): New global. + (parse_x_arg): Add processing for "X" options "debug" and + "runjdwp:" + (_Jv_RunMain): If debugging, start up JDWP backend. + Send VM_INIT and VM_DEATH when appropriate. + +2006-08-23 Keith Seitz + + * gnu/classpath/jdwp/VMVirtualMachine.java + (initialize): Declare. + * gnu/classpath/jdwp/natVMVirtualMachine.cc + (initialize): Get and save JVMTI environment. + +2006-08-22 Thomas Fitzsimmons + + PR libgcj/27890 + * gnu/classpath/natSystemProperties.cc (insertSystemProperties): + Set gnu.classpath.home.url to TOOLEXECLIBDIR. + * configure.ac: Do not add --with-native-libdir to + ac_configure_args. + * java/security/libgcj.security: Remove file. + * java/util/logging/logging.properties: Likewise. + * classpath/m4/acinclude.m4 (CLASSPATH_TOOLEXECLIBDIR): New macro. + * classpath/resource/Makefile.am (loggingdir): Define to + toolexeclibdir. + (securitydir): Likewise. + * classpath/configure.ac: Call CLASSPATH_TOOLEXECLIBDIR. + Set default nativeexeclibdir using toolexeclibdir. + * HACKING: Fix classpath aclocal arguments. + * Makefile.am (secdir): Remove variable. + (propdir): Likewise. + (AM_CXXFLAGS): Replace LIBDIR definition with TOOLEXECLIBDIR + definition. + (all_property_files): Remove variable. + (install-data-local): Do not install libgcj.security or + logging.properties. + * configure, Makefile.in, classpath/configure, + classpath/Makefile.in, classpath/native/jni/java-lang/Makefile.in, + classpath/native/jni/midi-alsa/Makefile.in, + classpath/native/jni/classpath/Makefile.in, + classpath/native/jni/midi-dssi/Makefile.in, + classpath/native/jni/Makefile.in, + classpath/native/jni/java-nio/Makefile.in, + classpath/native/jni/java-net/Makefile.in, + classpath/native/jni/gconf-peer/Makefile.in, + classpath/native/jni/java-io/Makefile.in, + classpath/native/jni/xmlj/Makefile.in, + classpath/native/jni/java-util/Makefile.in, + classpath/native/jni/qt-peer/Makefile.in, + classpath/native/jni/gtk-peer/Makefile.in, + classpath/native/Makefile.in, classpath/native/jawt/Makefile.in, + classpath/native/target/Linux/Makefile.in, + classpath/native/target/Makefile.in, + classpath/native/target/generic/Makefile.in, + classpath/native/fdlibm/Makefile.in, + classpath/native/plugin/Makefile.in, + classpath/resource/Makefile.in, classpath/scripts/Makefile.in, + classpath/tools/Makefile.in, classpath/doc/Makefile.in, + classpath/doc/api/Makefile.in, classpath/lib/Makefile.in, + classpath/external/Makefile.in, + classpath/external/sax/Makefile.in, + classpath/external/w3c_dom/Makefile.in, + classpath/external/relaxngDatatype/Makefile.in, + classpath/include/Makefile.in, classpath/aclocal.m4, + classpath/examples/Makefile.in, aclocal.m4: Regenerate. + +2006-08-21 Bryce McKinlay + + * java/lang/natThread.cc (_Jv_AttachCurrentThread): Attach thread + to GC. + (_Jv_DetachCurrentThread): Detach thread from GC. + * include/boehm-gc.h (_Jv_GCAttachThread, _Jv_GCDetachThread): + Declare. + * boehm.cc (_Jv_GCAttachThread): New function. + (_Jv_GCDetachThread): Likewise. + +2006-08-19 Ranjit Mathew + + * sysdep/i386/backtrace.h (fallback_backtrace): Add "0x55 0x8B 0xEC" + as another sequence that can indicate a "pushl %ebp; movl %esp, %ebp" + function prologue. + +2006-08-17 H.J. Lu + + * Makefile.am (install-exec-hook): Support $(DESTDIR). + * Makefile.in: Regenerated. + +2006-08-16 Tom Tromey + + * libtool-version: Updated. + +2006-08-16 Jakub Jelinek + Bryce McKinlay + + * configure, Makefile.in: Rebuilt. + * Makefile.am (toolexeclib_LTLIBRARIES): Add libgcj_bc.la. + (libgcj_bc_la_SOURCES): New variable. + (libgcj_bc_la_LDFLAGS): Likewise. + (libgcj_bc_la_LIBADD): Likewise. + (libgcj_bc_la_DEPENDENCIES): Likewise. + (libgcj_bc_la_LINK): Likewise. + (libgcj_bc_dummy_LINK): Likewise. + (libgcj_bc.la): New target. + (install-exec-hook): Likewise. + * libgcj.spec.in (*lib): Use LIBGCJ_SPEC. + * libgcj_bc.c: New file. + * configure.ac (LIBGCJ_SPEC): New subst. + * configure.host (use_libgcj_bc): New variable. + +2006-08-15 Kyle Galloway + + * include/java-interp.h (_Jv_InterpMethod::run_debug): New method. + * interpret.cc: Added placeholder for debug variable type info to STORE* + macros. + (_Jv_InterpMethod::run_debug): New method. + (_Jv_InterpMethod::run_sync_object_debug): New method. + (_Jv_InterpMethod::run_sync_class_debug): New method. + (_Jv_InterpMethod::run_normal_debug): New method. + (_Jv_InterpMethod::run_class_debug): New method. + (_Jv_InterpMethod::ncode ()): Changed to select either debug or normal + versions of these functions. + * interpret-run.cc: New file, holds contents of old + _Jv_InterpMethod::run method. + * stacktrace.cc (_Jv_StackTrace::UnwindTraceFn): Changed to select + appropriate function for debug or normal mode. + +2006-08-14 Mark Wielaard + + Imported GNU Classpath 0.92 + * HACKING: Add more importing hints. Update automake version + requirement. + + * configure.ac (gconf-peer): New enable AC argument. + Add --disable-gconf-peer and --enable-default-preferences-peer + to classpath configure when gconf is disabled. + * scripts/makemake.tcl: Set gnu/java/util/prefs/gconf and + gnu/java/awt/dnd/peer/gtk to bc. Classify + gnu/java/security/Configuration.java as generated source file. + + * gnu/java/lang/management/VMGarbageCollectorMXBeanImpl.java, + gnu/java/lang/management/VMMemoryPoolMXBeanImpl.java, + gnu/java/lang/management/VMClassLoadingMXBeanImpl.java, + gnu/java/lang/management/VMRuntimeMXBeanImpl.java, + gnu/java/lang/management/VMMemoryManagerMXBeanImpl.java, + gnu/java/lang/management/VMThreadMXBeanImpl.java, + gnu/java/lang/management/VMMemoryMXBeanImpl.java, + gnu/java/lang/management/VMCompilationMXBeanImpl.java: New VM stub + classes. + * java/lang/management/VMManagementFactory.java: Likewise. + * java/net/VMURLConnection.java: Likewise. + * gnu/java/nio/VMChannel.java: Likewise. + + * java/lang/Thread.java (getState): Add stub implementation. + * java/lang/Class.java (isEnum): Likewise. + * java/lang/Class.h (isEnum): Likewise. + + * gnu/awt/xlib/XToolkit.java (getClasspathTextLayoutPeer): Removed. + + * javax/naming/spi/NamingManager.java: New override for StackWalker + functionality. + + * configure, sources.am, Makefile.in, gcj/Makefile.in, + include/Makefile.in, testsuite/Makefile.in: Regenerated. + +2006-08-14 Gary Benson + + * java/lang/Thread.java (accessControlState): New field. + * java/security/VMAccessControlState.java: New file. + * java/security/natVMAccessControlState.cc: Likewise. + * java/security/VMAccessController.java + (contexts, inGetContext): Removed. + (pushContext, popContext, getContext): Use VMAccessControlState. + * Makefile.am (nat_source_files): Updated. + * sources.am, Makefile.in: Rebuilt. + +2006-08-10 Gary Benson + + * include/java-stack.h (GetAccessControlStack): Change return + type. + * stacktrace.cc (accesscontrol_trace_fn): Record the number of + Java frames encountered. + (GetAccessControlStack): Return a flag indicating whether a call to + doPrivileged was encountered rather than an array of method names. + * java/security/natVMAccessController.cc (getStack): Change return + type. + * java/security/VMAccessController.java (getStack): Likewise. + (getContext): Change to reflect the above. + +2006-08-09 Gary Benson + + * stacktrace.cc (accesscontrol_trace_fn): Skip non-Java frames. + +2006-08-09 Gary Benson + + * java/lang/System.java (setSecurityManager): Javadoc fix. + * java/security/VMAccessController.java (getContext): Comment fix. + +2006-08-09 Gary Benson + + * include/java-stack.h (accesscontrol_trace_fn): Declare. + (GetAccessControlStack): Likewise. + (GetClassMethodStack): Remove. + * stacktrace.cc (accesscontrol_trace_fn): New method. + (GetAccessControlStack): Likewise. + (GetClassMethodStack): Remove. + * java/security/natVMAccessController.cc (getStack): Use + GetAccessControlStack. + +2006-08-07 Gary Benson + + PR libgcj/28340: + * java/lang/ClassLoader.java (clinit): Install a default + security manager if java.security.manager is defined. + (getParent, getSystemClassLoader): Use the correct stack + frame during security checks. + * java/net/URLClassLoader.java (findClass): Avoid calling + this.toString() during VM initialization. + (runtimeInitialized): New method. + * java/net/natURLClassLoader.cc: New file. + * Makefile.am (nat_source_files): Added the above. + * Makefile.in: Rebuilt. + 2006-08-07 Gary Benson Casey Marshall @@ -1189,9 +1764,9 @@ 2006-05-25 John David Anglin - * configure.ac: Add sys/rw_lock.h to AC_CHECK_HEADERS. - * configure: Rebuilt. - * include/config.h.in: Likewise. + * configure.ac: Add sys/rw_lock.h to AC_CHECK_HEADERS. + * configure: Rebuilt. + * include/config.h.in: Likewise. * include/posix.h: If HAVE_SYS_RW_LOCK_H is defined, include . @@ -2149,25 +2724,25 @@ (_Jv_FindClassFromSignatureNoException): New method declaration. * prims.cc: (_Jv_FindClassFromSignatureNoException): New method. - * gcj/javaprims.h: - (_Jv_equalsUtf8Classname): New method declaration. - (_Jv_isPrimitiveOrDerived): Dito. - * prims.cc: + * gcj/javaprims.h: + (_Jv_equalsUtf8Classname): New method declaration. + (_Jv_isPrimitiveOrDerived): Dito. + * prims.cc: (_Jv_equalsUtf8Classnames): New method. - (_Jv_isPrimitiveOrDerived): New method. - * verify.cc: - (ref_intersection::equals): Use new classname comparison method. - (type::compatible): Use new classname comparison method. Added - check whether LHS' type is java.lang.Object . - (type::resolve): Added new optional debug message and simplified - if-expression. - (type::to_array): Added codepath that generates an array type - without resolving the element type. + (_Jv_isPrimitiveOrDerived): New method. + * verify.cc: + (ref_intersection::equals): Use new classname comparison method. + (type::compatible): Use new classname comparison method. Added + check whether LHS' type is java.lang.Object . + (type::resolve): Added new optional debug message and simplified + if-expression. + (type::to_array): Added codepath that generates an array type + without resolving the element type. 2006-01-31 Mark Wielaard - - * NEWS: Add 4.1 updates. - + + * NEWS: Add 4.1 updates. + 2006-01-30 Keith Seitz * include/java-interp.h (insn_index): New declaration. @@ -3340,18 +3915,18 @@ 2005-07-14 Andrew Haley - * gnu/java/net/protocol/file/Connection.java (unquote): New - method. - (connect): Unquote filename. - gnu/java/net/protocol/jar/Connection.java (getInputStream): - Likewise. - (getJarFile): Likewise. + * gnu/java/net/protocol/file/Connection.java (unquote): New + method. + (connect): Unquote filename. + gnu/java/net/protocol/jar/Connection.java (getInputStream): + Likewise. + (getJarFile): Likewise. - * java/net/URLConnection.java (getContentHandler): Guard cast with - instaceof. + * java/net/URLConnection.java (getContentHandler): Guard cast with + instaceof. - * java/net/URL.java (URL): If the file part of a spec is absolute, - ignore the file part of its context. + * java/net/URL.java (URL): If the file part of a spec is absolute, + ignore the file part of its context. 2005-07-14 Aaron Luchko