]> gcc.gnu.org Git - gcc.git/blobdiff - libjava/ChangeLog
Character.java: Re-merged with Classpath.
[gcc.git] / libjava / ChangeLog
index e351f65efb7b0bd6480501e3ffa4f5312cc8da05..6de135a543edaf95f0160121b26efc6a6e7c5a02 100644 (file)
@@ -1,3 +1,238 @@
+2007-03-05  Mark Wielaard  <mark@klomp.org>
+
+       * java/lang/Character.java: Re-merged with Classpath.
+       * java/lang/natString.cc (nativeCompareTo): Renamed from
+       compareTo.
+       * java/lang/StringBuilder.java: Re-merged with Classpath.
+       * java/lang/String.java: Re-merged with Classpath.
+       (nativeCompareTo): Renamed from compareTo.
+       * java/lang/StringBuffer.java: Re-merged with Classpath.
+       * jni.cc (_Jv_JNI_GetAnyMethodID): Split calls to append.
+
+2007-03-05  Andrew Haley  <aph@redhat.com>
+
+       * java/lang/reflect/natVMProxy.cc (ncode_closure.meth): Delete.
+       (generateProxyClass): Don't pass method to ncode.
+       (run_proxy): Call _Jv_GetReflectedMethod to find the proxy method.
+       * java/lang/reflect/Method.h: Rebuild.
+       * java/lang/reflect/Method.java (internalGetParameterTypes,
+       internalGetExceptionTypes): New methods.
+       * headers.txt (class java/lang/reflect/Method): Declare
+       _Jv_GetReflectedMethod.  Be its friend.
+       * java/lang/natClass.cc (_Jv_GetReflectedMethod): New method.
+       * java/lang/Class.h: Declare it.  Be its friend.
+
+2007-03-05  Tom Tromey  <tromey@redhat.com>
+
+       * sources.am, Makefile.in: Rebuilt.
+       * scripts/makemake.tcl (emit_package_rule): Don't omit
+       VMProcess.java.
+       * Makefile.am (nat_source_files): Added natVMProcess.cc.
+       (inner_nat_headers): Added ImmediateEOFInputStream.h.
+       * gcj/javaprims.h: Regenerated.
+       * java/lang/System.java (EnvironmentMap): Now package-private.
+       (EnvironmentMap(Map)): New constructor.
+       (EnvironmentMap.put): New method.
+       * java/lang/natWin32Process.cc (startProcess): Update.
+       * java/lang/Win32Process.java (Win32Process): Added 'redirect'
+       argument.
+       (startProcess): Likewise.
+       * java/lang/EcosProcess.java (EcosProcess): Added 'redirect'
+       argument.
+       * java/lang/natPosixProcess.cc (nativeSpawn): Handle redirection.
+       * java/lang/PosixProcess.java (redirect): New field.
+       (PosixProcess): Added 'redirect' argument.
+       * java/lang/natRuntime.cc (execInternal): Added 'redirect'
+       argument to Process creation.
+       * java/lang/natVMProcess.cc: New file.
+       * java/lang/ProcessBuilder.java: Removed.
+       * java/lang/VMProcess.java: New file.
+
+2007-03-03  Andrew Haley  <aph@redhat.com>
+
+       * java/lang/natClass.cc (parseAnnotationElement): Correct long
+       annotations to read JV_CONSTANT_Long, not JV_CONSTANT_Double.
+
+2007-03-02  Andrew Haley  <aph@redhat.com>
+
+       * sun/reflect/annotation/AnnotationInvocationHandler.java:
+       Generify in a few places.
+       (equals): Rewrite to use invoke on local proxy.
+       (deepToString): Remove most of it.
+       (toString): Make nonstatic.
+       (arrayClone): Delete.
+       (coerce): New method.
+       (invoke): Rewrite to handle gcj's structures correctly.
+       * java/lang/natClass.cc (getDeclaredAnnotations): Fix test for
+       null loader.
+       * sources.am: Regenerate.
+       * Makefile.am: Likewise.        
+
+2007-03-02  Andrew Haley  <aph@redhat.com>
+
+       * sun/reflect/annotation/AnnotationInvocationHandler.java:
+       Whitespace only changes.
+
+2007-03-02  Andrew Haley  <aph@redhat.com>
+
+       * sun/reflect/annotation/AnnotationInvocationHandler.java: Moved
+       from Classpath to libgcj local.
+
+2007-03-01  Brooks Moses  <brooks.moses@codesourcery.com>
+
+       * Makefile.am: Add dummy install-pdf target.
+       * Makefile.in: Regenerate
+       * include/Makefile.in: Regenerate
+       * testsuite/Makefile.in: Regenerate
+       * gcj/Makefile.in: Regenerate
+
+2007-02-23  Gary Benson  <gbenson@redhat.com>
+
+       * gnu/gcj/tools/gcj_dbtool/Main.java: Updated copyright year.
+
+2007-02-23  Gary Benson  <gbenson@redhat.com>
+
+       * java/lang/VMCompiler.java
+       (compileClass): Don't lose zeros from within the digest.
+
+2007-02-22  Jakub Jelinek  <jakub@redhat.com>
+
+       PR libgcj/17002
+       PR classpath/28550
+       * java/util/VMTimeZone.java (getDefaultTimeZoneId): To read
+       /etc/localtime, use ZoneInfo.readTZFile instead of
+       VMTimeZone.readtzFile.  Get better timezone name for /etc/localtime,
+       either if it is a symlink or through /etc/sysconfig/clock.
+       (readSysconfigClockFile): New static method.
+       (readtzFile): Removed.
+       * java/lang/System.java: Add gnu.java.util.zoneinfo.dir to comments.
+       * posix.cc (_Jv_platform_initProperties): Set
+       gnu.java.util.zoneinfo.dir.
+       * sources.am (gnu_java_util_source_files): Add
+       classpath/gnu/java/util/ZoneInfo.java.
+       * Makefile.in: Regenerated.
+       * java/util/VMTimeZone.h: Regenerated.
+       * java/util/TimeZone.h: Regenerated.
+       * gnu/java/util/ZoneInfo.h: Generated.
+
+2007-02-22  Mohan Embar  <gnustuff@thisiscool.com>
+
+       * include/win32-threads.h: Added #undef OUT.
+
+2007-02-21  Kyle Galloway  <kgallowa@redhat.com>
+
+       * jvmti.cc (_Jv_JVMTI_GetArgumentsSize): New function.
+       * testsuite/libjava.jvmti/interp/getargssize.java: New test.
+       * testsuite/libjava.jvmti/interp/getargssize.h: Ditto.
+       * testsuite/libjava.jvmti/interp/getargssize.jar: Ditto.
+       * testsuite/libjava.jvmti/interp/getargssize.out: Ditto.
+       * testsuite/libjava.jvmti/interp/natgetargssize.cc: Ditto.
+
+2007-02-21  Gary Benson  <gbenson@redhat.com>
+
+       * java/util/GregorianCalendar.java: Removed.
+       * sources.am, Makefile.in: Rebuilt.
+
+2007-02-20  Keith Seitz  <keiths@redhat.com>
+
+       * gnu/classpath/jdwp/natVMVirtualMachine.cc
+       (jdwpClassPrepareCB): Move class status stuff to ...
+       (getClassStatus): ... here.
+
+2007-02-20  Gary Benson  <gbenson@redhat.com>
+
+       * gnu/awt/xlib/XEventLoop.h: Regenerated.
+       * gnu/java/awt/peer/gtk/GThreadMutex.h: Likewise.
+       * gnu/java/rmi/server/ConnectionRunnerPool$ConnectionRunner.h:
+       Likewise.
+       * gnu/java/rmi/server/UnicastConnectionManager.h: Likewise.
+       * java/lang/SecurityManager.h: Likewise.
+       * java/lang/Thread.h: Likewise.
+       * java/security/VMSecureRandom$Spinner.h: Likewise.
+       * java/util/concurrent/atomic/AtomicBoolean.h: Likewise.
+       * java/util/concurrent/atomic/AtomicInteger.h: Likewise.
+       * java/util/concurrent/atomic/AtomicLong.h: Likewise.
+       * java/util/concurrent/atomic/AtomicReference.h: Likewise.
+       * java/util/concurrent/ConcurrentHashMap$HashEntry.h: Likewise.
+       * java/util/concurrent/ConcurrentHashMap$Segment.h: Likewise.
+       * java/util/concurrent/ConcurrentLinkedQueue.h: Likewise.
+       * java/util/concurrent/ConcurrentLinkedQueue$Node.h: Likewise.
+       * java/util/concurrent/ConcurrentSkipListMap.h: Likewise.
+       * java/util/concurrent/ConcurrentSkipListMap$Index.h: Likewise.
+       * java/util/concurrent/ConcurrentSkipListMap$Node.h: Likewise.
+       * java/util/concurrent/Exchanger.h: Likewise.
+       * java/util/concurrent/Exchanger$Node.h: Likewise.
+       * java/util/concurrent/FutureTask$Sync.h: Likewise.
+       * java/util/concurrent/LinkedBlockingQueue$Node.h: Likewise.
+       * java/util/concurrent/locks/AbstractQueuedLongSynchronizer.h:
+       Likewise.
+       * java/util/concurrent/locks/AbstractQueuedLongSynchronizer$Node.h: 
+       Likewise.
+       * java/util/concurrent/locks/AbstractQueuedSynchronizer.h: Likewise.
+       * java/util/concurrent/locks/AbstractQueuedSynchronizer$Node.h:
+       Likewise.
+       * java/util/concurrent/ScheduledThreadPoolExecutor.h: Likewise.
+       * java/util/concurrent/SynchronousQueue.h: Likewise.
+       * java/util/concurrent/SynchronousQueue$TransferQueue.h: Likewise.
+       * java/util/concurrent/SynchronousQueue$TransferQueue$QNode.h:
+       Likewise.
+       * java/util/concurrent/SynchronousQueue$TransferStack.h: Likewise.
+       * java/util/concurrent/SynchronousQueue$TransferStack$SNode.h:
+       Likewise.
+       * java/util/concurrent/ThreadPoolExecutor.h: Likewise.
+       * java/util/concurrent/ThreadPoolExecutor$Worker.h: Likewise.
+       * java/util/logging/ErrorManager.h: Likewise.
+       * javax/swing/plaf/basic/BasicSpinnerUI$2.h: Likewise.
+       * javax/swing/plaf/basic/BasicSpinnerUI$4.h: Likewise.
+
+2007-02-16  Keith Seitz  <keiths@redhat.com>
+
+       * gnu/classpath/jdwp/natVMVirtualMachine.cc
+       (get_line_table): New function.
+       (handle_single_step): New function.
+       (jdwpSingleStepCB): New function.
+       (jdwpVMInitCB): Define a JVMTI single step
+       callback, but don't enable it until needed.
+
+2007-02-16  David Daney  <ddaney@avtrex.com>
+
+       * java/lang/Thread.java (Thread(ThreadGroup, Runnable, String)): Pass
+       new parameter constructor.
+       (Thread(ThreadGroup, Runnable, String, long)): Same.
+       (Thread(String, boolean)): New constructor.
+       (Thread(Thread, ThreadGroup, Runnable, String): Add parameter
+       noInheritableThreadLocal, don't call
+       InheritableThreadLocal.newChildThread if set.
+       * java/lang/PosixProcess.java(ProcessManager()): Set
+       noInheritableThreadLocal in super.
+       * java/lang/natThread.cc (_Jv_AttachCurrentThread): Pass new
+       parameter to Thread constructor.
+       (_Jv_AttachCurrentThreadAsDaemon): Same.
+       * java/lang/Thread.h: Regenerate.
+       * classpath/lib/java/lang/Thread.class: Same.
+       * classpath/lib/java/lang/PosixProcess$EOFInputStream.class: Same.
+       * classpath/lib/java/lang/PosixProcess.class: Same.
+       * classpath/lib/java/lang/Thread$State.class: Same.
+       * classpath/lib/java/lang/PosixProcess$ProcessManager.class: Same.
+
+2007-02-16  Kyle Galloway  <kgallowa@redhat.com>
+
+       * interpret.cc: Add extra DEBUG_LOCALS_INSN calls for multi-slot
+       variables to maintain type info.
+       * interpret-run.cc: Add local variable info to frame in the debug
+       interpreter.
+       * jvmti.cc (getLocalFrame): New method.
+       (_Jv_JVMTI_GetLocalObject): New method.
+       (_Jv_JVMTI_GetLocallInt): New method.
+       (_Jv_JVMTI_GetLocalFloat): New method.
+       (_Jv_JVMTI_GetLocalLong): New method.
+       (_Jv_JVMTI_GetLocalDouble): New method.
+       (_Jv_JVMTI_SetLocalObject): New method.
+       (_Jv_JVMTI_SetLocalInt): New method.
+       (_Jv_JVMTI_SetLocalFloat): New method.
+       (_Jv_JVMTI_SetLocalLong): New method.
+       (_Jv_JVMTI_SetLocalDouble): New method.
+
 2007-02-16  Gary Benson  <gbenson@redhat.com>
 
        * gnu/gcj/tools/gcj_dbtool/Main.java
 2007-02-15  Kyle Galloway  <kgallowa@redhat.com>
        
        * interpret.cc (_Jv_InterpMethod::check_handler): New method.
-    * interpret-run.cc: Change the catch section to report exception
-    events and to use the new check_handler method.
-    * include/java-interp.h (_Jv_InterpMethod): Add check_handler.
-    * gnu/gcj/jvmti/ExceptionEvent.java: New file.
-    * gnu/gcj/jvmti/ExceptionEvent.h: New file.
-    * gnu/gcj/jvmti/natExceptionEvent.cc: New file.
-    * libjava/classpath/lib/gnu/gcj/jvmti/ExceptionEvent.class: New
-    file.
-    * sources.am: Added ExceptionEvent.java.
-    * Makefile.am: Added natExceptionEvent.cc
-    * Makefile.in: Regenerated.
-    * include/Makefile.in: Regenerated.
-    * gcj/Makefile.in: Regenerated.
+       * interpret-run.cc: Change the catch section to report exception
+       events and to use the new check_handler method.
+       * include/java-interp.h (_Jv_InterpMethod): Add check_handler.
+       * gnu/gcj/jvmti/ExceptionEvent.java: New file.
+       * gnu/gcj/jvmti/ExceptionEvent.h: New file.
+       * gnu/gcj/jvmti/natExceptionEvent.cc: New file.
+       * libjava/classpath/lib/gnu/gcj/jvmti/ExceptionEvent.class: New
+       file.
+       * sources.am: Added ExceptionEvent.java.
+       * Makefile.am: Added natExceptionEvent.cc
+       * Makefile.in: Regenerated.
+       * include/Makefile.in: Regenerated.
+       * gcj/Makefile.in: Regenerated.
 
 2007-02-15  Johannes Schmidt  <jschmidt@avtrex.com>
        David Daney  <ddaney@avtrex.com>
This page took 0.033366 seconds and 5 git commands to generate.