1 2007-02-05 Keith Seitz <keiths@redhat.com>
3 * gnu/classpath/jdwp/natVMVirtualMachine.cc
4 (registerEvent): Implement EVENT_BREAKPOINT.
5 (unregisterEvent): Likewise.
6 (get_request_location): New function.
8 2007-02-05 Matthias Klose <doko@debian.org>
10 testsuite/Makefile.am (compile-tests): Fix typo.
11 testsuite/Makefile.in: Regenerate.
13 2007-02-02 Kyle Galloway <kgallowa@redhat.com>
15 * gnu/classpath/jdwp/natVMVirtualMachine.cc (getFrameCount):
18 2007-02-02 Jakub Jelinek <jakub@redhat.com>
20 * configure.ac (libjava_cv_anon_version_script): New test.
21 (ANONVERSCRIPT): New AM_CONDITIONAL.
23 * Makefile.am (extra_ldflags_libjava): Link with -Wl,--version-script
25 * Makefile.in: Rebuilt.
26 (libgcj_la_DEPENDENCIES): Depend on libgcj.ver.
27 * libgcj.ver: New file.
29 2007-02-01 David Daney <ddaney@avtrex.com>
31 * scripts/makemake.tcl: Replace gnu/xml build with build of all
33 * sources.am: Regenerate.
34 * Makefile.in: Regenerate.
36 2007-02-01 Tom Tromey <tromey@redhat.com>
38 * java/lang/ClassLoader.java (getResources): No longer final.
40 2007-02-01 Tom Tromey <tromey@redhat.com>
42 * java/util/logging/LogManager.java (loggers): Genericized.
44 (findAncestor): Likewise.
45 (getLogger): Likewise.
46 (getLoggerNames): Genericized.
48 (getLevelProperty): Likewise.
49 * java/lang/reflect/Method.java (getDeclaringClass): Genericized.
50 * java/lang/reflect/Constructor.java (getParameterTypes):
52 (getExceptionTypes): Likewise.
53 (newInstance): Likewise.
54 * java/lang/reflect/Array.java (newInstance): Genericized.
55 * java/lang/Object.java (getClass): Genericized.
56 * java/nio/charset/spi/CharsetProvider.java (charsets):
58 * java/text/Collator.java: Implement Comparable<Object>.
60 2007-02-01 Tom Tromey <tromey@redhat.com>
62 * java/util/Calendar.java: Implement Comparable<Calendar>. Update
64 (clear): Call complete.
65 (setTimeZone): Call computeTime, computeFields.
66 (compareTo): New method.
67 * java/nio/charset/Charset.java: Implement Comparable<Charset>.
68 (availableCharsets): Genericized.
70 (compareTo): Changed argument type.
71 * java/lang/ClassLoader.java (loadClass): Genericized.
72 (findClass): Likewise.
73 (defineClass): Likewise.
74 (resolveClass): Likewise.
75 (findSystemClass): Likewise.
76 (setSigners): Likewise.
77 (findLoadedClass): Likewise.
78 (getResources): Likewise.
79 (findResources): Likewise.
80 (getSystemResources): Likewise.
81 (checkInitialized): New method.
82 * java/lang/Class.java (getCanonicalName): New method.
84 2007-01-31 Keith Seitz <keiths@redhat.com>
86 * include/jvmti-int.h (JVMTI): Declare member "enabled".
87 * jvmti.cc (JVMTI): Add member "enabled".
88 (_Jv_GetJVMTIEnv): Mark JVMTI enabled.
89 * interpret.cc (_Jv_InterpMethod::ncode): Use JVMTI::enabled
90 instead of gnu::classpath::jdwp::Jdwp::isDebugging.
91 (_Jv_CompileMethod): If JVMTI is enabled, use run_debug
92 instead of run to compile the method.
94 * interpret-run.cc [DEBUG] (NEXT_INSN): Add JVMTI single step
97 2007-01-31 Andreas Tobler <a.tobler@schweiz.org>
99 * testsuite/libjava.jvmti/jvmti-interp.exp (gij_jvmti_test_one): Add
100 -shared-libgcc to the cxxflaglist for Darwin.
102 2007-01-31 Tom Tromey <tromey@redhat.com>
104 * scripts.am, Makefile.in: Rebuilt.
105 * scripts/makemake.tcl (gnu/javax/swing/text/html/parser): Build
107 (emit_ordinary_rule): New proc.
109 2007-01-31 Keith Seitz <keiths@redhat.com>
111 * testsuite/libjava.jvmti/getmethodname.h: New file.
112 * testsuite/libjava.jvmti/getmethodname.jar: New file.
114 2007-01-31 Andrew Haley <aph@redhat.com>
116 * prims.cc (_Jv_Abort): fflush (stderr).
117 * java/lang/natClassLoader.cc (_Jv_CheckABIVersion): Abort.
119 2007-01-31 Tom Tromey <tromey@redhat.com>
121 * configure, Makefile.in: Rebuilt.
122 * configure.ac (JAR): Check for -@ feature.
123 * Makefile.am (libgcj-$(gcc_version).jar): Use find -prune.
125 2007-01-31 Tom Tromey <tromey@redhat.com>
128 * configure, include/config.h.in: Rebuilt.
129 * configure.ac: Check for magic_t in magic.h.
130 * java/net/natVMURLConnection.cc: Use HAVE_MAGIC_T.
132 2007-01-30 Tom Tromey <tromey@redhat.com>
134 * Makefile.in: Rebuilt.
135 * Makefile.am (libgcj-$(gcc_version).jar): Rewrote.
137 2007-01-30 Andreas Tobler <a.tobler@schweiz.org>
139 * testsuite/libjava.jvmti/natevents.cc (FieldModificationCB): Use a
140 cast to print it right.
142 2007-01-29 Kaloian Doganov <kaloian@doganov.org>
145 * gnu/gcj/convert/BytesToCharsetAdaptor.java (read): Fix call to
148 2007-01-29 Kyle Galloway <kgallowa@redhat.com>
150 * include/java-interp.h: Added _Jv_Frame class and its two
151 subclasses _Jv_InterpFrame and _Jv_NativeFrame. Also moved
152 _Jv_FrameType from java-stack.h.
153 * include/java-stack.h: Removed _Jv_FrameType.
154 * java/lang/Thread.java: Added frame member to hold new
155 composite frame stack.
156 * java/lang/Thread.h: Regenerated.
157 * java/lang/Thread.class: Rebuilt.
158 * jni.cc (_Jv_JNIMethod::call): Push a frame onto the stack when
159 calling a JNI method.
160 * jvmti.cc (_Jv_JVMTI_GetStackTrace): New Method.
161 (_Jv_JVMTI_GetFrameCount): New method.
162 * stacktrace.cc (UnwindTraceFn): Modified to use new _Jv_Frame
164 * testsuite/libjava.jvmti/interp/getstacktrace.jar: New test.
165 * testsuite/libjava.jvmti/interp/natgetstacktrace.cc: New test.
166 * testsuite/libjava.jvmti/interp/getstacktrace.h: New test.
167 * testsuite/libjava.jvmti/interp/getstacktrace.jar: New test.
168 * testsuite/libjava.jvmti/interp/getstacktrace.out: Output file
171 2007-01-29 Tom Tromey <tromey@redhat.com>
173 * interpret.cc (run_debug): Remove comment.
180 (run_normal_debug): Likewise.
181 (run_synch_object_debug): Likewise.
182 (run_class_debug): Likewise.
183 (run_synch_class_debug): Likewise.
188 (NULLARRAYCHECK): Likewise.
189 (ARRAYBOUNDSCHECK): Likewise.
190 * interpret-run.cc (insn_target) <breakpoint>: Tidy.
192 2007-01-29 Tom Tromey <tromey@redhat.com>
194 * configure, Makefile.in: Rebuilt.
195 * Makefile.am (bin_SCRIPTS): Never install scripts/jar.
196 * configure.ac (BASH_JAR): Removed conditional.
197 (JAR): Prefer the jar found by AC_CHECK_PROGS.
199 2007-01-29 Tom Tromey <tromey@redhat.com>
201 * Makefile.in: Rebuilt.
202 * Makefile.am (interpret.lo): New target. Add -fwrap to
205 2007-01-29 Keith Seitz <keiths@redhat.com>
207 * include/jvmti_md.h (_CLASSPATH_VM_JVMTI_TYPES_DEFINED):
209 [__GCJ_JNI_IMPL__]: Define our own JVMTI types when building
210 gcj. All jvmti object types now are defined to be their
211 corresponding java classes.
212 * jvmti.cc (_Jv_JVMTI_SuspendThread): Remove casting from
214 (_Jv_JVMTI_ResumeThread): Likewise.
215 (_Jv_JVMTI_InterruptThread): Likewise.
216 (_Jv_JVMTI_SetEventNotificationMode): Likewise.
217 * gnu/classpath/jdwp/natVMVirtualMachine.cc
218 (jdwpClassPrepareCB): Likewise.
219 (jdwpThreadEndCB): Likewise.
220 (jdwpThreadStartCB): Likewise.
221 (jdwpVMInitCB): Likewise.
223 2007-01-28 Michele Sandri <gpointorama@gmail.com>
225 * gnu/java/nio/channels/natFileChannelWin32.cc
227 (unlock): Implemented.
229 2007-01-27 Andreas Tobler <a.tobler@schweiz.org>
232 * configure.host: Add forgottten sysdep_dir to sparc. Add a flag to
233 libgcj_flags to undefine 'sun' at compile time.
234 * sysdep/sparc/locks.h (read_barrier): New functions for 32 and 64 bit
236 (write_barrier): Likewise.
238 2007-01-27 Keith Seitz <keiths@redhat.com>
240 * gnu/classpath/jdwp/natVMVirtualMachine.cc
241 (getAllClassMethods): Move error handling to ...
242 (throw_jvmti_error): ... here.
243 (jdwpClassPrepareCB): New function.
244 (jdwpThreadEndCB): New function.
245 (jdwpThreadStartCB): New function.
246 (jdwpVMDeathCB): New function.
247 (jdwpVMInitCB): Define and enable callbacks for
248 ClassPrepare, ThreadEnd, ThreadStart, and VMDeath.
250 2007-01-27 Jakub Jelinek <jakub@redhat.com>
252 * Makefile.am (generic_header_files): Add $(inner_nat_headers).
253 * testsuite/Makefile.am (check-dejaGNU): Depend on compile-tests.
254 (MYGCJH): New variable.
255 (compile-tests): New goal.
256 * Makefile.in: Rebuilt.
257 * testsuite/Makefile.in: Rebuilt.
259 2007-01-26 Andrew Haley <aph@redhat.com>
261 * java/lang/natClass.cc (initializeClass): Re-throw
263 * java/lang/natVMClassLoader.cc (loadClass): checkPackageAccess.
264 * java/lang/ClassLoader.java: (loadClass): Likewise.
266 2007-01-26 Tom Tromey <tromey@redhat.com>
270 2007-01-25 Tom Tromey <tromey@redhat.com>
273 * gnu/gcj/convert/Convert.java (main): Correctly handle missing
274 input or output encodings. Removed unused local variables.
276 2007-01-25 Keith Seitz <keiths@redhat.com>
278 * include/jvmti-int.h (_Jv_GetJDWP_JVMTIEnv): Declare.
279 * gnu/classpath/jdwp/natVMVirtualMachine.cc
280 (_Jv_GetJDWP_JVMTIEnv): New function.
281 * gnu/classpath/jdwp/natVMMethod.cc (getName): Implement.
282 (getSignature): Implement.
283 (getModifiers): Implement.
285 2007-01-25 Andrew Haley <aph@redhat.com>
287 * configure, Makefile.in, include/config.h.in: Rebuilt.
288 * Makefile.am (libgcj_la_LIBADD): Removed $(LIBMAGIC).
289 * configure.ac: Don't check for libmagic.
290 * java/net/natVMURLConnection.cc (p_magic_open, p_magic_load,
291 p_magic_close, p_magic_buffer): New globals.
292 (init): Look up 'magic' functions.
293 (guessContentTypeFromBuffer): Updated.
295 2007-01-25 Keith Seitz <keiths@redhat.com>
297 * jvmti.cc (_Jv_JVMTI_GetMethodName): New function.
298 (_Jv_JVMTI_Interface): Define GetMethodName.
299 * testsuite/libjava.jvmti/getmethodname.java: New file.
300 * testsuite/libjava.jvmti/natgetmethodname.cc: New file.
301 * testsuite/libjava.jvmti/getmethodname.out: New file.
303 2007-01-24 Kyle Galloway <kgallowa@redhat.com>
305 * libjava/testsuite/libjava.jvmti/jvmti-interp.exp: New file.
306 * libjava/testsuite/libjava.jvmti/interp: New folder.
307 * libjava/testsuite/lib/libjava.exp (exec_gij): New Method.
309 2007-01-24 Keith Seitz <keiths@redhat.com>
311 * link.cc (_Jv_Linker::wait_for_state): Add JVMTI
312 CLASS_PREPARE notification.
314 2007-01-24 Keith Seitz <keiths@redhat.com>
316 * interpret.cc: Include gnu/gcj/jvmti/Breakpoint.h,
317 gnu/gcj/jvmti/BreakpointManager.h, jvmti.h, and jvmti-int.h
318 * interpret-run.cc: Implement insn_breakpoint.
320 2007-01-24 Keith Seitz <keiths@redhat.com>
322 * prims.cc (_Jv_RunMain): Send JVMTI event notifications
323 for VM_INIT and VM_DEATH instead of the JDWP notifications.
325 2007-01-24 Keith Seitz <keiths@redhat.com>
327 * gnu/classpath/jdwp/natVMVirtualMachine.cc
328 (getAllClassMethods): Implement.
330 2007-01-24 Andrew Haley <aph@redhat.com>
332 * gnu/classpath/natVMStackWalker.cc: Call InitClass everywhere.
333 (getClassContext) Add a barrier to prevent GetStackWalkerStack()
334 from being sibcalled.
336 2007-01-24 Andrew Haley <aph@redhat.com>
338 * scripts/makemake.tcl (emit_bc_rule): Set the source filename.
339 * sources.am: Rebuild.
341 2007-01-24 Andreas Krebbel <krebbel1@de.ibm.com>
343 * exception.cc (parse_lsda_header, PERSONALITY_FUNCTION): Replaced
344 _Unwind_Word with _uleb128_t and _Unwind_SWord with _sleb128_t.
346 2007-01-23 H.J. Lu <hongjiu.lu@intel.com>
349 * Makefile.am (ecjx_DEPENDENCIES): Add libgcj_bc.la if needed.
350 * Makefile.in: Regenerated.
352 2007-01-22 Keith Seitz <keiths@redhat.com>
354 * gnu/classpath/jdwp/natVMVirtualMachine.cc
355 (getClassMethod): Implement.
357 2007-01-22 Keith Seitz <keiths@redhat.com>
359 * java/lang/Class.h (_Jv_GetClassStatus): Declare.
360 * java/lang/natClass.cc (_Jv_GetClassStatus): New function.
361 * jvmti.cc (_Jv_JVMTI_GetClassStatus): New function.
362 (_Jv_JVMTI_Interface): Define GetClassStatus.
364 2007-01-22 Tom Tromey <tromey@redhat.com>
366 * configure: Rebuilt.
367 * configure.ac (GCJ): Reverted patch of 2006-12-20.
369 2007-01-22 Tom Tromey <tromey@redhat.com>
372 * testsuite/libjava.jni/pr29812.java: New file.
373 * testsuite/libjava.jni/pr29812_injar.java: New file.
374 * testsuite/libjava.jni/pr29812_injar.jar: New file.
375 * testsuite/libjava.jni/pr29812.out: New file.
376 * testsuite/libjava.jni/pr29812_injar.c: New file.
377 * testsuite/libjava.jni/pr29812_injar.h: New file.
378 * testsuite/libjava.jni/pr29812.jar: New file.
379 * testsuite/libjava.jni/pr29812.c: New file.
380 * testsuite/libjava.jni/pr29812.h: New file.
381 * testsuite/libjava.jni/jni.exp (gcj_jni_get_cxxflags_invocation):
383 (gcj_jni_invocation_test_one): Use it.
384 (gcj_jni_pr29812): New proc.
385 (gcj_jni_run): Use it.
386 * java/lang/natRuntime.cc (_load): Push a new system frame before
388 * include/jvm.h (_Jv_JNI_PopSystemFrame): Declare.
389 (_Jv_GetJNIEnvNewFrameWithLoader): Likewise.
390 * jni.cc (struct _Jv_JNI_LocalFrame) <marker>: Now unsigned char.
391 <allocated_p>: Now bool.
393 (_Jv_JNI_EnsureLocalCapacity): Updated.
394 (_Jv_JNI_NewLocalRef): Likewise.
395 (_Jv_JNI_NewLocalRef): Likewise.
396 (_Jv_JNI_PopLocalFrame): Likewise.
397 (_Jv_JNI_FindClass): Likewise.
398 (_Jv_GetJNIEnvNewFrame): Likewise.
399 (_Jv_JNI_AttachCurrentThread): Likewise.
400 (_Jv_GetJNIEnvNewFrameWithLoader): New function.
401 (_Jv_GetJNIEnvNewFrame): Use it.
402 * include/jni_md.h (_CLASSPATH_JNIENV_CONTENTS): Removed 'klass'.
404 2007-01-22 Tom Tromey <tromey@redhat.com>
406 * libtool-version: Bump current to 9.
408 2007-01-22 Andrew Haley <aph@redhat.com>
410 * sysdep/alpha/locks.h (write_barrier): New.
412 2007-01-21 Matthias Klose <doko@debian.org>
414 * Makefile.am (install-exec-hook): Use transformed name.
415 * Makefile.in: Regenerate.
417 2007-01-19 Keith Seitz <keiths@redhat.com>
419 * gnu/classpath/jdwp/natVMVirtualMachine.cc: Mark unused parameters
420 in methods and reformat.
422 * gnu/classpath/jdwp/natVMFrame.cc: Mark unused parameters with
425 2007-01-18 Keith Seitz <keiths@redhat.com>
427 From Macro Trudel <mtrudel@gmx.ch>:
428 * gnu/classpath/jdwp/natVMVirtualMachine.cc (jdwpVMInitCB):
431 2007-01-18 Marco Trudel <mtrudel@gmx.ch>
433 * jni.cc (_Jv_JNI_FindClass): Initialize class.
434 * testsuite/libjava.jni/findclass2.jar: New file.
435 * testsuite/libjava.jni/findclass2.h: New file.
436 * testsuite/libjava.jni/findclass2.java: New file
437 * testsuite/libjava.jni/findclass2.c: New file.
438 * testsuite/libjava.jni/findclass2.out: New file.
440 2007-01-18 Tom Tromey <tromey@redhat.com>
442 * configure: Rebuilt.
443 * configure.ac: Use multi_basedir instead of libgcj_basedir.
445 2007-01-18 Gary Benson <gbenson@redhat.com>
447 * gnu/java/nio/natVMPipeEcos.cc:
448 Renamed from gnu/java/nio/natPipeImplEcos.cc.
449 * gnu/java/nio/natVMPipePosix.cc:
450 Renamed from gnu/java/nio/natPipeImplPosix.cc.
451 * gnu/java/nio/natVMPipeWin32.cc:
452 Renamed from gnu/java/nio/natPipeImplWin32.cc.
453 * gnu/java/nio/natVMSelectorEcos.cc:
454 Renamed from gnu/java/nio/natSelectorImplEcos.cc.
455 * gnu/java/nio/natVMSelectorPosix.cc:
456 Renamed from gnu/java/nio/natSelectorImplPosix.cc.
457 * gnu/java/nio/natVMSelectorWin32.cc:
458 Renamed from gnu/java/nio/natSelectorImplWin32.cc.
459 * java/io/natVMObjectInputStream.cc:
460 Renamed from java/io/natObjectInputStream.cc.
461 * java/lang/natVMDouble.cc:
462 Renamed from java/lang/natDouble.cc.
463 * java/lang/natVMFloat.cc:
464 Renamed from java/lang/natFloat.cc.
465 * Makefile.am, configure.ac: Reflect the above.
466 * Makefile.in, configure: Rebuilt.
468 2007-01-17 Andrew Haley <aph@redhat.com>
470 * Makefile.in: Rebuilt.
471 * Makefile.am (ecjx_LDFLAGS): Pass -fbootclasspath.
473 2007-01-17 Keith Seitz <keiths@redhat.com>
475 * java/lang/natThread.cc (finish_): Add JVMTI ThreadEnd notification.
476 (_Jv_NotifyThreadStart): Add JVMTI ThreadStart notification.
478 2007-01-16 Jack Howarth <howarth@bromo.med.uc.edu>
480 * configure.ac: Use multi.m4 from aclocal rather than custom
481 code. Use multi_basedir instead libgcj_basedir. Test for
482 /proc/self/exe when not cross-compiling.
483 * aclocal.m4: Regenerate.
484 * configure: Regenerate.
485 * Makefile.in: Regenerate.
487 2007-01-17 Gary Benson <gbenson@redhat.com>
489 * java/nio/natVMDirectByteBufferImpl.cc:
490 Renamed from java/nio/natDirectByteBufferImpl.cc.
491 * Makefile.am: Reflect the above.
492 * Makefile.in: Rebuilt.
494 2007-01-17 Marco Trudel <mtrudel@gmx.ch>
496 * jvmti.cc (_Jv_JVMTI_GetAllThreads): Now static. Use JNICALL.
497 Fixed indentation. Removed unused variable.
499 2007-01-16 Tom Tromey <tromey@redhat.com>
501 * java/lang/natThread.cc (finalize_native): Remove cast.
502 (_Jv_GetCurrentJNIEnv): Likewise.
503 * include/jvm.h (struct natThread) <jni_env>: Declare as
506 2007-01-16 Keith Seitz <keiths@redhat.com>
508 * testsuite/libjava.jvmti/natevents.cc (FieldModificationCB): Use
509 %#llx instead of %d for new_value.
510 * testsuite/libjava.jvmti/events.out: Update expected output.
511 * testsuite/libjava.jvmti/events.jar: Regenerate.
513 2007-01-16 Keith Seitz <keiths@redhat.com>
515 * gnu/classpath/jdwp/natVMVirtualMachine.cc (DEFINE_CALLBACK):
517 (ENABLE_EVENT): New macro.
518 (initialize): Define and enable JVMTI VM_INIT callback.
519 (jdwpVMInitCB): New function.
521 2007-01-16 Kyle Galloway <kgallowa@redhat.com>
523 * jvmti.cc (_Jv_JVMTI_GetAllThreads): New function.
524 * testsuite/libjava.jvmti/getallthreads.java: New test.
525 * testsuite/libjava.jvmti/natgetallthreads.cc: Ditto.
526 * testsuite/libjava.jvmti/getallthreads.out: Ditto.
527 * testsuite/libjava.jvmti/getallthreads.h: Ditto.
528 * testsuite/libjava.jvmti/getallthreads.jar: Ditto.
530 2007-01-15 Keith Seitz <keiths@redhat.com>
532 * gnu/classpath/jdwp/natVMVirtualMachine.cc (suspendThread): Use
533 java.lang.StringBuilder instead of java.lang.StringBuffer.
534 (resumeThread): Likewise.
536 2007-01-15 Gary Benson <gbenson@redhat.com>
538 * java/nio/MappedByteBuffer.java: Removed.
539 * sources.am, Makefile.in: Rebuilt.
541 2007-01-15 Gary Benson <gbenson@redhat.com>
543 * java/net/URLClassLoader.java: Removed.
544 * gnu/java/net/loader/Load_gcjlib.java: New file.
545 * gnu/gcj/runtime/BootClassLoader.java: Ensure core
546 URL handler is present in static executables.
547 * sources.am, Makefile.in: Rebuilt.
549 2007-01-14 H.J. Lu <hongjiu.lu@intel.com>
551 * Makefile.am (libgcj_la_LDFLAGS): Add
552 $(LIBGCJ_LD_SYMBOLIC_FUNCTIONS).
553 (libgcj_tools_la_LDFLAGS): Likewise.
554 (libgcj_bc_la_LDFLAGS): Likewise.
555 * Makefile.in: Regenerated.
557 * configure.ac: Use ACX_PROG_LD_GNU_SYMBOLIC. Set
558 LIBGCJ_LD_SYMBOLIC_FUNCTIONS to $SYMBOLIC_LDFLAGS. Set
559 libgcj_ld_symbolic to $SYMBOLIC_LDFLAGS if it isn't set.
560 Substitute LIBGCJ_LD_SYMBOLIC_FUNCTIONS.
561 * configure: Regenerated.
562 * aclocal.m4: Likewise.
563 * gcj/Makefile.in: Likewise.
564 * include/Makefile.in: Likewise.
565 * testsuite/Makefile.in: Likewise.
567 2007-01-12 Kaz Kojima <kkojima@gcc.gnu.org>
569 * sysdep/sh/locks.h (read_barrier): New.
570 (write_barrier): Likewise.
572 2007-01-12 Andrew Haley <aph@redhat.com>
574 * include/i386-signal.h: Rewrite to use rt_sigaction.
576 2007-01-11 Andrew Haley <aph@redhat.com>
578 * prims.cc (jdwpOptions) Fix deprecated cast from char[] constant
580 * include/x86_64-signal.h (HANDLE_DIVIDE_OVERFLOW): Rewrite to fix
583 2007-01-10 Tom Tromey <tromey@redhat.com>
585 * gnu/gcj/xlib/*.h: New files.
586 * gnu/awt/xlib/*.h: Likewise.
587 * classpath/lib/gnu/gcj/xlib: New class files.
588 * classpath/lib/gnu/awt/xlib: Likewise.
590 2007-01-10 Tom Tromey <tromey@redhat.com>
592 * HACKING: Various updates.
594 2007-01-10 Tom Tromey <tromey@redhat.com>
596 * java/lang/natDouble.cc (toString): Added parens.
597 * gnu/gcj/io/shs.h (PROTO): Define.
598 * link.cc (resolve_pool_entry): Added missing braces.
600 2007-01-10 H.J. Lu <hongjiu.lu@intel.com>
603 * sysdep/ia64/locks.h (read_barrier): New.
604 (write_barrier): New.
606 2007-01-10 Gary Benson <gbenson@redhat.com>
608 * java/net/URL.java: Removed.
609 * sources.am, Makefile.in: Rebuilt.
611 2007-01-10 Matthias Klose <doko@debian.org>
613 * Makefile.am (install-exec-hook): Support $(DESTDIR).
614 * Makefile.in: Regenerated.
616 2007-01-05 Tom Tromey <tromey@redhat.com>
618 * testsuite/libjava.loader/loader.exp (gcj_loader_run): Find
619 dummy.class in srcdir.
621 2007-01-03 Tom Tromey <tromey@redhat.com>
623 * testsuite/libjava.cni/cni.exp (gcj_cni_compile_cxx_to_o): Add -I
626 2007-01-03 Tom Tromey <tromey@redhat.com>
628 * testsuite/*: Added many .jar and .h files.
629 * testsuite/libjava.special/special.exp
630 (gcj_special_try_compiler): New proc.
631 * testsuite/libjava.loader/loader.exp (gcj_loader_run): Don't
632 bytecompile source. Search for .jar files.
633 (gcj_loader_test_one): Don't look for MyLoader.java.
634 * testsuite/libjava.jvmti/jvmti.exp (gcj_jvmti_test_one): Don't
635 bytecompile sources or build headers.
636 (gcj_jvmti_run): Look for .jar files.
637 * testsuite/libjava.jni/jni.exp (gcj_jni_run): Compile .jar
639 (gcj_jni_test_one): Don't bytecompile sources or build headers.
640 Set classpath when invoking gij.
641 (gcj_jni_invocation_test_one): Likewise.
642 * testsuite/libjava.cni/cni.exp (gcj_cni_test_one): Don't build
643 headers or bytecompile sources.
644 (gcj_cni_run): Use .jar files, not .java files.
645 * testsuite/libjava.lang/lang.exp: Compile .jar files.
647 2007-01-02 Tom Tromey <tromey@redhat.com>
649 * configure: Rebuilt.
650 * configure.ac: Check for gjar.
652 2007-01-02 Tom Tromey <tromey@redhat.com>
654 * testsuite/libjava.jacks/jacks.exp: Removed.
655 * testsuite/libjava.jacks/jacks.xfail: Removed.