1 2007-02-02 Kyle Galloway <kgallowa@redhat.com>
3 * gnu/classpath/jdwp/natVMVirtualMachine.cc (getFrameCount): Implment.
5 2007-02-02 Jakub Jelinek <jakub@redhat.com>
7 * configure.ac (libjava_cv_anon_version_script): New test.
8 (ANONVERSCRIPT): New AM_CONDITIONAL.
10 * Makefile.am (extra_ldflags_libjava): Link with -Wl,--version-script
12 * Makefile.in: Rebuilt.
13 (libgcj_la_DEPENDENCIES): Depend on libgcj.ver.
14 * libgcj.ver: New file.
16 2007-02-01 David Daney <ddaney@avtrex.com>
18 * scripts/makemake.tcl: Replace gnu/xml build with build of all
20 * sources.am: Regenerate.
21 * Makefile.in: Regenerate.
23 2007-02-01 Tom Tromey <tromey@redhat.com>
25 * java/lang/ClassLoader.java (getResources): No longer final.
27 2007-02-01 Tom Tromey <tromey@redhat.com>
29 * java/util/logging/LogManager.java (loggers): Genericized.
31 (findAncestor): Likewise.
32 (getLogger): Likewise.
33 (getLoggerNames): Genericized.
35 (getLevelProperty): Likewise.
36 * java/lang/reflect/Method.java (getDeclaringClass): Genericized.
37 * java/lang/reflect/Constructor.java (getParameterTypes):
39 (getExceptionTypes): Likewise.
40 (newInstance): Likewise.
41 * java/lang/reflect/Array.java (newInstance): Genericized.
42 * java/lang/Object.java (getClass): Genericized.
43 * java/nio/charset/spi/CharsetProvider.java (charsets):
45 * java/text/Collator.java: Implement Comparable<Object>.
47 2007-02-01 Tom Tromey <tromey@redhat.com>
49 * java/util/Calendar.java: Implement Comparable<Calendar>. Update
51 (clear): Call complete.
52 (setTimeZone): Call computeTime, computeFields.
53 (compareTo): New method.
54 * java/nio/charset/Charset.java: Implement Comparable<Charset>.
55 (availableCharsets): Genericized.
57 (compareTo): Changed argument type.
58 * java/lang/ClassLoader.java (loadClass): Genericized.
59 (findClass): Likewise.
60 (defineClass): Likewise.
61 (resolveClass): Likewise.
62 (findSystemClass): Likewise.
63 (setSigners): Likewise.
64 (findLoadedClass): Likewise.
65 (getResources): Likewise.
66 (findResources): Likewise.
67 (getSystemResources): Likewise.
68 (checkInitialized): New method.
69 * java/lang/Class.java (getCanonicalName): New method.
71 2007-01-31 Keith Seitz <keiths@redhat.com>
73 * include/jvmti-int.h (JVMTI): Declare member "enabled".
74 * jvmti.cc (JVMTI): Add member "enabled".
75 (_Jv_GetJVMTIEnv): Mark JVMTI enabled.
76 * interpret.cc (_Jv_InterpMethod::ncode): Use JVMTI::enabled
77 instead of gnu::classpath::jdwp::Jdwp::isDebugging.
78 (_Jv_CompileMethod): If JVMTI is enabled, use run_debug
79 instead of run to compile the method.
81 * interpret-run.cc [DEBUG] (NEXT_INSN): Add JVMTI single step
84 2007-01-31 Andreas Tobler <a.tobler@schweiz.org>
86 * testsuite/libjava.jvmti/jvmti-interp.exp (gij_jvmti_test_one): Add
87 -shared-libgcc to the cxxflaglist for Darwin.
89 2007-01-31 Tom Tromey <tromey@redhat.com>
91 * scripts.am, Makefile.in: Rebuilt.
92 * scripts/makemake.tcl (gnu/javax/swing/text/html/parser): Build
94 (emit_ordinary_rule): New proc.
96 2007-01-31 Keith Seitz <keiths@redhat.com>
98 * testsuite/libjava.jvmti/getmethodname.h: New file.
99 * testsuite/libjava.jvmti/getmethodname.jar: New file.
101 2007-01-31 Andrew Haley <aph@redhat.com>
103 * prims.cc (_Jv_Abort): fflush (stderr).
104 * java/lang/natClassLoader.cc (_Jv_CheckABIVersion): Abort.
106 2007-01-31 Tom Tromey <tromey@redhat.com>
108 * configure, Makefile.in: Rebuilt.
109 * configure.ac (JAR): Check for -@ feature.
110 * Makefile.am (libgcj-$(gcc_version).jar): Use find -prune.
112 2007-01-31 Tom Tromey <tromey@redhat.com>
115 * configure, include/config.h.in: Rebuilt.
116 * configure.ac: Check for magic_t in magic.h.
117 * java/net/natVMURLConnection.cc: Use HAVE_MAGIC_T.
119 2007-01-30 Tom Tromey <tromey@redhat.com>
121 * Makefile.in: Rebuilt.
122 * Makefile.am (libgcj-$(gcc_version).jar): Rewrote.
124 2007-01-30 Andreas Tobler <a.tobler@schweiz.org>
126 * testsuite/libjava.jvmti/natevents.cc (FieldModificationCB): Use a
127 cast to print it right.
129 2007-01-29 Kaloian Doganov <kaloian@doganov.org>
132 * gnu/gcj/convert/BytesToCharsetAdaptor.java (read): Fix call to
135 2007-01-29 Kyle Galloway <kgallowa@redhat.com>
137 * include/java-interp.h: Added _Jv_Frame class and its two
138 subclasses _Jv_InterpFrame and _Jv_NativeFrame. Also moved
139 _Jv_FrameType from java-stack.h.
140 * include/java-stack.h: Removed _Jv_FrameType.
141 * java/lang/Thread.java: Added frame member to hold new
142 composite frame stack.
143 * java/lang/Thread.h: Regenerated.
144 * java/lang/Thread.class: Rebuilt.
145 * jni.cc (_Jv_JNIMethod::call): Push a frame onto the stack when
146 calling a JNI method.
147 * jvmti.cc (_Jv_JVMTI_GetStackTrace): New Method.
148 (_Jv_JVMTI_GetFrameCount): New method.
149 * stacktrace.cc (UnwindTraceFn): Modified to use new _Jv_Frame
151 * testsuite/libjava.jvmti/interp/getstacktrace.jar: New test.
152 * testsuite/libjava.jvmti/interp/natgetstacktrace.cc: New test.
153 * testsuite/libjava.jvmti/interp/getstacktrace.h: New test.
154 * testsuite/libjava.jvmti/interp/getstacktrace.jar: New test.
155 * testsuite/libjava.jvmti/interp/getstacktrace.out: Output file
158 2007-01-29 Tom Tromey <tromey@redhat.com>
160 * interpret.cc (run_debug): Remove comment.
167 (run_normal_debug): Likewise.
168 (run_synch_object_debug): Likewise.
169 (run_class_debug): Likewise.
170 (run_synch_class_debug): Likewise.
175 (NULLARRAYCHECK): Likewise.
176 (ARRAYBOUNDSCHECK): Likewise.
177 * interpret-run.cc (insn_target) <breakpoint>: Tidy.
179 2007-01-29 Tom Tromey <tromey@redhat.com>
181 * configure, Makefile.in: Rebuilt.
182 * Makefile.am (bin_SCRIPTS): Never install scripts/jar.
183 * configure.ac (BASH_JAR): Removed conditional.
184 (JAR): Prefer the jar found by AC_CHECK_PROGS.
186 2007-01-29 Tom Tromey <tromey@redhat.com>
188 * Makefile.in: Rebuilt.
189 * Makefile.am (interpret.lo): New target. Add -fwrap to
192 2007-01-29 Keith Seitz <keiths@redhat.com>
194 * include/jvmti_md.h (_CLASSPATH_VM_JVMTI_TYPES_DEFINED):
196 [__GCJ_JNI_IMPL__]: Define our own JVMTI types when building
197 gcj. All jvmti object types now are defined to be their
198 corresponding java classes.
199 * jvmti.cc (_Jv_JVMTI_SuspendThread): Remove casting from
201 (_Jv_JVMTI_ResumeThread): Likewise.
202 (_Jv_JVMTI_InterruptThread): Likewise.
203 (_Jv_JVMTI_SetEventNotificationMode): Likewise.
204 * gnu/classpath/jdwp/natVMVirtualMachine.cc
205 (jdwpClassPrepareCB): Likewise.
206 (jdwpThreadEndCB): Likewise.
207 (jdwpThreadStartCB): Likewise.
208 (jdwpVMInitCB): Likewise.
210 2007-01-28 Michele Sandri <gpointorama@gmail.com>
212 * gnu/java/nio/channels/natFileChannelWin32.cc
214 (unlock): Implemented.
216 2007-01-27 Andreas Tobler <a.tobler@schweiz.org>
219 * configure.host: Add forgottten sysdep_dir to sparc. Add a flag to
220 libgcj_flags to undefine 'sun' at compile time.
221 * sysdep/sparc/locks.h (read_barrier): New functions for 32 and 64 bit
223 (write_barrier): Likewise.
225 2007-01-27 Keith Seitz <keiths@redhat.com>
227 * gnu/classpath/jdwp/natVMVirtualMachine.cc
228 (getAllClassMethods): Move error handling to ...
229 (throw_jvmti_error): ... here.
230 (jdwpClassPrepareCB): New function.
231 (jdwpThreadEndCB): New function.
232 (jdwpThreadStartCB): New function.
233 (jdwpVMDeathCB): New function.
234 (jdwpVMInitCB): Define and enable callbacks for
235 ClassPrepare, ThreadEnd, ThreadStart, and VMDeath.
237 2007-01-27 Jakub Jelinek <jakub@redhat.com>
239 * Makefile.am (generic_header_files): Add $(inner_nat_headers).
240 * testsuite/Makefile.am (check-dejaGNU): Depend on compile-tests.
241 (MYGCJH): New variable.
242 (compile-tests): New goal.
243 * Makefile.in: Rebuilt.
244 * testsuite/Makefile.in: Rebuilt.
246 2007-01-26 Tom Tromey <tromey@redhat.com>
250 2007-01-25 Tom Tromey <tromey@redhat.com>
253 * gnu/gcj/convert/Convert.java (main): Correctly handle missing
254 input or output encodings. Removed unused local variables.
256 2007-01-25 Keith Seitz <keiths@redhat.com>
258 * include/jvmti-int.h (_Jv_GetJDWP_JVMTIEnv): Declare.
259 * gnu/classpath/jdwp/natVMVirtualMachine.cc
260 (_Jv_GetJDWP_JVMTIEnv): New function.
261 * gnu/classpath/jdwp/natVMMethod.cc (getName): Implement.
262 (getSignature): Implement.
263 (getModifiers): Implement.
265 2007-01-25 Andrew Haley <aph@redhat.com>
267 * configure, Makefile.in, include/config.h.in: Rebuilt.
268 * Makefile.am (libgcj_la_LIBADD): Removed $(LIBMAGIC).
269 * configure.ac: Don't check for libmagic.
270 * java/net/natVMURLConnection.cc (p_magic_open, p_magic_load,
271 p_magic_close, p_magic_buffer): New globals.
272 (init): Look up 'magic' functions.
273 (guessContentTypeFromBuffer): Updated.
275 2007-01-25 Keith Seitz <keiths@redhat.com>
277 * jvmti.cc (_Jv_JVMTI_GetMethodName): New function.
278 (_Jv_JVMTI_Interface): Define GetMethodName.
279 * testsuite/libjava.jvmti/getmethodname.java: New file.
280 * testsuite/libjava.jvmti/natgetmethodname.cc: New file.
281 * testsuite/libjava.jvmti/getmethodname.out: New file.
283 2007-01-24 Kyle Galloway <kgallowa@redhat.com>
285 * libjava/testsuite/libjava.jvmti/jvmti-interp.exp: New file.
286 * libjava/testsuite/libjava.jvmti/interp: New folder.
287 * libjava/testsuite/lib/libjava.exp (exec_gij): New Method.
289 2007-01-24 Keith Seitz <keiths@redhat.com>
291 * link.cc (_Jv_Linker::wait_for_state): Add JVMTI
292 CLASS_PREPARE notification.
294 2007-01-24 Keith Seitz <keiths@redhat.com>
296 * interpret.cc: Include gnu/gcj/jvmti/Breakpoint.h,
297 gnu/gcj/jvmti/BreakpointManager.h, jvmti.h, and jvmti-int.h
298 * interpret-run.cc: Implement insn_breakpoint.
300 2007-01-24 Keith Seitz <keiths@redhat.com>
302 * prims.cc (_Jv_RunMain): Send JVMTI event notifications
303 for VM_INIT and VM_DEATH instead of the JDWP notifications.
305 2007-01-24 Keith Seitz <keiths@redhat.com>
307 * gnu/classpath/jdwp/natVMVirtualMachine.cc
308 (getAllClassMethods): Implement.
310 2007-01-24 Andrew Haley <aph@redhat.com>
312 * gnu/classpath/natVMStackWalker.cc: Call InitClass everywhere.
313 (getClassContext) Add a barrier to prevent GetStackWalkerStack()
314 from being sibcalled.
316 2007-01-24 Andrew Haley <aph@redhat.com>
318 * scripts/makemake.tcl (emit_bc_rule): Set the source filename.
319 * sources.am: Rebuild.
321 2007-01-24 Andreas Krebbel <krebbel1@de.ibm.com>
323 * exception.cc (parse_lsda_header, PERSONALITY_FUNCTION): Replaced
324 _Unwind_Word with _uleb128_t and _Unwind_SWord with _sleb128_t.
326 2007-01-23 H.J. Lu <hongjiu.lu@intel.com>
329 * Makefile.am (ecjx_DEPENDENCIES): Add libgcj_bc.la if needed.
330 * Makefile.in: Regenerated.
332 2007-01-22 Keith Seitz <keiths@redhat.com>
334 * gnu/classpath/jdwp/natVMVirtualMachine.cc
335 (getClassMethod): Implement.
337 2007-01-22 Keith Seitz <keiths@redhat.com>
339 * java/lang/Class.h (_Jv_GetClassStatus): Declare.
340 * java/lang/natClass.cc (_Jv_GetClassStatus): New function.
341 * jvmti.cc (_Jv_JVMTI_GetClassStatus): New function.
342 (_Jv_JVMTI_Interface): Define GetClassStatus.
344 2007-01-22 Tom Tromey <tromey@redhat.com>
346 * configure: Rebuilt.
347 * configure.ac (GCJ): Reverted patch of 2006-12-20.
349 2007-01-22 Tom Tromey <tromey@redhat.com>
352 * testsuite/libjava.jni/pr29812.java: New file.
353 * testsuite/libjava.jni/pr29812_injar.java: New file.
354 * testsuite/libjava.jni/pr29812_injar.jar: New file.
355 * testsuite/libjava.jni/pr29812.out: New file.
356 * testsuite/libjava.jni/pr29812_injar.c: New file.
357 * testsuite/libjava.jni/pr29812_injar.h: New file.
358 * testsuite/libjava.jni/pr29812.jar: New file.
359 * testsuite/libjava.jni/pr29812.c: New file.
360 * testsuite/libjava.jni/pr29812.h: New file.
361 * testsuite/libjava.jni/jni.exp (gcj_jni_get_cxxflags_invocation):
363 (gcj_jni_invocation_test_one): Use it.
364 (gcj_jni_pr29812): New proc.
365 (gcj_jni_run): Use it.
366 * java/lang/natRuntime.cc (_load): Push a new system frame before
368 * include/jvm.h (_Jv_JNI_PopSystemFrame): Declare.
369 (_Jv_GetJNIEnvNewFrameWithLoader): Likewise.
370 * jni.cc (struct _Jv_JNI_LocalFrame) <marker>: Now unsigned char.
371 <allocated_p>: Now bool.
373 (_Jv_JNI_EnsureLocalCapacity): Updated.
374 (_Jv_JNI_NewLocalRef): Likewise.
375 (_Jv_JNI_NewLocalRef): Likewise.
376 (_Jv_JNI_PopLocalFrame): Likewise.
377 (_Jv_JNI_FindClass): Likewise.
378 (_Jv_GetJNIEnvNewFrame): Likewise.
379 (_Jv_JNI_AttachCurrentThread): Likewise.
380 (_Jv_GetJNIEnvNewFrameWithLoader): New function.
381 (_Jv_GetJNIEnvNewFrame): Use it.
382 * include/jni_md.h (_CLASSPATH_JNIENV_CONTENTS): Removed 'klass'.
384 2007-01-22 Tom Tromey <tromey@redhat.com>
386 * libtool-version: Bump current to 9.
388 2007-01-22 Andrew Haley <aph@redhat.com>
390 * sysdep/alpha/locks.h (write_barrier): New.
392 2007-01-21 Matthias Klose <doko@debian.org>
394 * Makefile.am (install-exec-hook): Use transformed name.
395 * Makefile.in: Regenerate.
397 2007-01-19 Keith Seitz <keiths@redhat.com>
399 * gnu/classpath/jdwp/natVMVirtualMachine.cc: Mark unused parameters
400 in methods and reformat.
402 * gnu/classpath/jdwp/natVMFrame.cc: Mark unused parameters with
405 2007-01-18 Keith Seitz <keiths@redhat.com>
407 From Macro Trudel <mtrudel@gmx.ch>:
408 * gnu/classpath/jdwp/natVMVirtualMachine.cc (jdwpVMInitCB):
411 2007-01-18 Marco Trudel <mtrudel@gmx.ch>
413 * jni.cc (_Jv_JNI_FindClass): Initialize class.
414 * testsuite/libjava.jni/findclass2.jar: New file.
415 * testsuite/libjava.jni/findclass2.h: New file.
416 * testsuite/libjava.jni/findclass2.java: New file
417 * testsuite/libjava.jni/findclass2.c: New file.
418 * testsuite/libjava.jni/findclass2.out: New file.
420 2007-01-18 Tom Tromey <tromey@redhat.com>
422 * configure: Rebuilt.
423 * configure.ac: Use multi_basedir instead of libgcj_basedir.
425 2007-01-18 Gary Benson <gbenson@redhat.com>
427 * gnu/java/nio/natVMPipeEcos.cc:
428 Renamed from gnu/java/nio/natPipeImplEcos.cc.
429 * gnu/java/nio/natVMPipePosix.cc:
430 Renamed from gnu/java/nio/natPipeImplPosix.cc.
431 * gnu/java/nio/natVMPipeWin32.cc:
432 Renamed from gnu/java/nio/natPipeImplWin32.cc.
433 * gnu/java/nio/natVMSelectorEcos.cc:
434 Renamed from gnu/java/nio/natSelectorImplEcos.cc.
435 * gnu/java/nio/natVMSelectorPosix.cc:
436 Renamed from gnu/java/nio/natSelectorImplPosix.cc.
437 * gnu/java/nio/natVMSelectorWin32.cc:
438 Renamed from gnu/java/nio/natSelectorImplWin32.cc.
439 * java/io/natVMObjectInputStream.cc:
440 Renamed from java/io/natObjectInputStream.cc.
441 * java/lang/natVMDouble.cc:
442 Renamed from java/lang/natDouble.cc.
443 * java/lang/natVMFloat.cc:
444 Renamed from java/lang/natFloat.cc.
445 * Makefile.am, configure.ac: Reflect the above.
446 * Makefile.in, configure: Rebuilt.
448 2007-01-17 Andrew Haley <aph@redhat.com>
450 * Makefile.in: Rebuilt.
451 * Makefile.am (ecjx_LDFLAGS): Pass -fbootclasspath.
453 2007-01-17 Keith Seitz <keiths@redhat.com>
455 * java/lang/natThread.cc (finish_): Add JVMTI ThreadEnd notification.
456 (_Jv_NotifyThreadStart): Add JVMTI ThreadStart notification.
458 2007-01-16 Jack Howarth <howarth@bromo.med.uc.edu>
460 * configure.ac: Use multi.m4 from aclocal rather than custom
461 code. Use multi_basedir instead libgcj_basedir. Test for
462 /proc/self/exe when not cross-compiling.
463 * aclocal.m4: Regenerate.
464 * configure: Regenerate.
465 * Makefile.in: Regenerate.
467 2007-01-17 Gary Benson <gbenson@redhat.com>
469 * java/nio/natVMDirectByteBufferImpl.cc:
470 Renamed from java/nio/natDirectByteBufferImpl.cc.
471 * Makefile.am: Reflect the above.
472 * Makefile.in: Rebuilt.
474 2007-01-17 Marco Trudel <mtrudel@gmx.ch>
476 * jvmti.cc (_Jv_JVMTI_GetAllThreads): Now static. Use JNICALL.
477 Fixed indentation. Removed unused variable.
479 2007-01-16 Tom Tromey <tromey@redhat.com>
481 * java/lang/natThread.cc (finalize_native): Remove cast.
482 (_Jv_GetCurrentJNIEnv): Likewise.
483 * include/jvm.h (struct natThread) <jni_env>: Declare as
486 2007-01-16 Keith Seitz <keiths@redhat.com>
488 * testsuite/libjava.jvmti/natevents.cc (FieldModificationCB): Use
489 %#llx instead of %d for new_value.
490 * testsuite/libjava.jvmti/events.out: Update expected output.
491 * testsuite/libjava.jvmti/events.jar: Regenerate.
493 2007-01-16 Keith Seitz <keiths@redhat.com>
495 * gnu/classpath/jdwp/natVMVirtualMachine.cc (DEFINE_CALLBACK):
497 (ENABLE_EVENT): New macro.
498 (initialize): Define and enable JVMTI VM_INIT callback.
499 (jdwpVMInitCB): New function.
501 2007-01-16 Kyle Galloway <kgallowa@redhat.com>
503 * jvmti.cc (_Jv_JVMTI_GetAllThreads): New function.
504 * testsuite/libjava.jvmti/getallthreads.java: New test.
505 * testsuite/libjava.jvmti/natgetallthreads.cc: Ditto.
506 * testsuite/libjava.jvmti/getallthreads.out: Ditto.
507 * testsuite/libjava.jvmti/getallthreads.h: Ditto.
508 * testsuite/libjava.jvmti/getallthreads.jar: Ditto.
510 2007-01-15 Keith Seitz <keiths@redhat.com>
512 * gnu/classpath/jdwp/natVMVirtualMachine.cc (suspendThread): Use
513 java.lang.StringBuilder instead of java.lang.StringBuffer.
514 (resumeThread): Likewise.
516 2007-01-15 Gary Benson <gbenson@redhat.com>
518 * java/nio/MappedByteBuffer.java: Removed.
519 * sources.am, Makefile.in: Rebuilt.
521 2007-01-15 Gary Benson <gbenson@redhat.com>
523 * java/net/URLClassLoader.java: Removed.
524 * gnu/java/net/loader/Load_gcjlib.java: New file.
525 * gnu/gcj/runtime/BootClassLoader.java: Ensure core
526 URL handler is present in static executables.
527 * sources.am, Makefile.in: Rebuilt.
529 2007-01-14 H.J. Lu <hongjiu.lu@intel.com>
531 * Makefile.am (libgcj_la_LDFLAGS): Add
532 $(LIBGCJ_LD_SYMBOLIC_FUNCTIONS).
533 (libgcj_tools_la_LDFLAGS): Likewise.
534 (libgcj_bc_la_LDFLAGS): Likewise.
535 * Makefile.in: Regenerated.
537 * configure.ac: Use ACX_PROG_LD_GNU_SYMBOLIC. Set
538 LIBGCJ_LD_SYMBOLIC_FUNCTIONS to $SYMBOLIC_LDFLAGS. Set
539 libgcj_ld_symbolic to $SYMBOLIC_LDFLAGS if it isn't set.
540 Substitute LIBGCJ_LD_SYMBOLIC_FUNCTIONS.
541 * configure: Regenerated.
542 * aclocal.m4: Likewise.
543 * gcj/Makefile.in: Likewise.
544 * include/Makefile.in: Likewise.
545 * testsuite/Makefile.in: Likewise.
547 2007-01-12 Kaz Kojima <kkojima@gcc.gnu.org>
549 * sysdep/sh/locks.h (read_barrier): New.
550 (write_barrier): Likewise.
552 2007-01-12 Andrew Haley <aph@redhat.com>
554 * include/i386-signal.h: Rewrite to use rt_sigaction.
556 2007-01-11 Andrew Haley <aph@redhat.com>
558 * prims.cc (jdwpOptions) Fix deprecated cast from char[] constant
560 * include/x86_64-signal.h (HANDLE_DIVIDE_OVERFLOW): Rewrite to fix
563 2007-01-10 Tom Tromey <tromey@redhat.com>
565 * gnu/gcj/xlib/*.h: New files.
566 * gnu/awt/xlib/*.h: Likewise.
567 * classpath/lib/gnu/gcj/xlib: New class files.
568 * classpath/lib/gnu/awt/xlib: Likewise.
570 2007-01-10 Tom Tromey <tromey@redhat.com>
572 * HACKING: Various updates.
574 2007-01-10 Tom Tromey <tromey@redhat.com>
576 * java/lang/natDouble.cc (toString): Added parens.
577 * gnu/gcj/io/shs.h (PROTO): Define.
578 * link.cc (resolve_pool_entry): Added missing braces.
580 2007-01-10 H.J. Lu <hongjiu.lu@intel.com>
583 * sysdep/ia64/locks.h (read_barrier): New.
584 (write_barrier): New.
586 2007-01-10 Gary Benson <gbenson@redhat.com>
588 * java/net/URL.java: Removed.
589 * sources.am, Makefile.in: Rebuilt.
591 2007-01-10 Matthias Klose <doko@debian.org>
593 * Makefile.am (install-exec-hook): Support $(DESTDIR).
594 * Makefile.in: Regenerated.
596 2007-01-05 Tom Tromey <tromey@redhat.com>
598 * testsuite/libjava.loader/loader.exp (gcj_loader_run): Find
599 dummy.class in srcdir.
601 2007-01-03 Tom Tromey <tromey@redhat.com>
603 * testsuite/libjava.cni/cni.exp (gcj_cni_compile_cxx_to_o): Add -I
606 2007-01-03 Tom Tromey <tromey@redhat.com>
608 * testsuite/*: Added many .jar and .h files.
609 * testsuite/libjava.special/special.exp
610 (gcj_special_try_compiler): New proc.
611 * testsuite/libjava.loader/loader.exp (gcj_loader_run): Don't
612 bytecompile source. Search for .jar files.
613 (gcj_loader_test_one): Don't look for MyLoader.java.
614 * testsuite/libjava.jvmti/jvmti.exp (gcj_jvmti_test_one): Don't
615 bytecompile sources or build headers.
616 (gcj_jvmti_run): Look for .jar files.
617 * testsuite/libjava.jni/jni.exp (gcj_jni_run): Compile .jar
619 (gcj_jni_test_one): Don't bytecompile sources or build headers.
620 Set classpath when invoking gij.
621 (gcj_jni_invocation_test_one): Likewise.
622 * testsuite/libjava.cni/cni.exp (gcj_cni_test_one): Don't build
623 headers or bytecompile sources.
624 (gcj_cni_run): Use .jar files, not .java files.
625 * testsuite/libjava.lang/lang.exp: Compile .jar files.
627 2007-01-02 Tom Tromey <tromey@redhat.com>
629 * configure: Rebuilt.
630 * configure.ac: Check for gjar.
632 2007-01-02 Tom Tromey <tromey@redhat.com>
634 * testsuite/libjava.jacks/jacks.exp: Removed.
635 * testsuite/libjava.jacks/jacks.xfail: Removed.